Skip to content

Commit 5e76ce9

Browse files
feat(accordion): major accordion refactor merge conflict fix
2 parents 7936e57 + 3d55332 commit 5e76ce9

File tree

75 files changed

+622
-10544
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+622
-10544
lines changed

.prettierignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@
44
*.
55
dist
66
node_modules
7-
coverage
7+
coverage
8+
**/*.mdx

.prettierrc

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
{
2-
"singleQuote": true
2+
"semi": true,
3+
"singleQuote": true,
4+
"trailingComma": "none",
5+
"printWidth": 90
36
}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<p align="center">
22
<br>
3-
<img width="400" src="./apps/website/public/qwik-ui.png" alt="awesome logo of qwik ui">
3+
<img width="400" src="./apps/website/public/images/qwik-ui.png" alt="awesome logo of qwik ui">
44
<br>
55
<br>
66
</p>

apps/website/.eslintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,4 @@ build
2929
dist
3030
tsconfig.tsbuildinfo
3131
vite.config.ts
32+
**/*.mdx
Lines changed: 10 additions & 0 deletions
Loading
-25.2 KB
Binary file not shown.
-66.2 KB
Binary file not shown.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
export interface AppState {
22
mode: 'light' | 'dark';
3+
isSidebarOpened: boolean;
4+
featureFlags?: {
5+
showTailwind?: boolean;
6+
};
37
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
export enum KitName {
2+
HEADLESS = 'healdess',
3+
TAILWIND = 'tailwind',
4+
NO_KIT = 'no-kit'
5+
}

0 commit comments

Comments
 (0)