webcoreui 0.4.1 → 0.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (92) hide show
  1. package/README.md +237 -227
  2. package/astro.d.ts +115 -62
  3. package/astro.js +14 -0
  4. package/components/Avatar/Avatar.astro +9 -2
  5. package/components/Avatar/Avatar.svelte +3 -1
  6. package/components/Avatar/Avatar.tsx +4 -2
  7. package/components/Avatar/avatar.ts +1 -0
  8. package/components/Badge/Badge.astro +4 -0
  9. package/components/Badge/Badge.svelte +5 -1
  10. package/components/Badge/Badge.tsx +4 -0
  11. package/components/Badge/badge.module.scss +8 -0
  12. package/components/Badge/badge.ts +7 -3
  13. package/components/Breadcrumb/Breadcrumb.astro +51 -0
  14. package/components/Breadcrumb/Breadcrumb.svelte +45 -0
  15. package/components/Breadcrumb/Breadcrumb.tsx +51 -0
  16. package/components/Breadcrumb/breadcrumb.module.scss +26 -0
  17. package/components/Breadcrumb/breadcrumb.ts +12 -0
  18. package/components/Button/button.module.scss +6 -1
  19. package/components/Button/button.ts +13 -3
  20. package/components/Carousel/Carousel.astro +198 -0
  21. package/components/Carousel/Carousel.svelte +161 -0
  22. package/components/Carousel/Carousel.tsx +172 -0
  23. package/components/Carousel/carousel.module.scss +58 -0
  24. package/components/Carousel/carousel.ts +26 -0
  25. package/components/Checkbox/checkbox.ts +4 -2
  26. package/components/DataTable/DataTable.astro +332 -0
  27. package/components/DataTable/DataTable.svelte +272 -0
  28. package/components/DataTable/DataTable.tsx +287 -0
  29. package/components/DataTable/datatable.module.scss +102 -0
  30. package/components/DataTable/datatable.ts +41 -0
  31. package/components/Footer/Footer.astro +91 -0
  32. package/components/Footer/Footer.svelte +94 -0
  33. package/components/Footer/Footer.tsx +107 -0
  34. package/components/Footer/footer.module.scss +61 -0
  35. package/components/Footer/footer.ts +29 -0
  36. package/components/Icon/Icon.svelte +1 -1
  37. package/components/Icon/icon.ts +18 -1
  38. package/components/Icon/map.ts +14 -0
  39. package/components/Input/input.module.scss +6 -0
  40. package/components/List/List.astro +1 -1
  41. package/components/List/List.svelte +1 -1
  42. package/components/List/List.tsx +1 -2
  43. package/components/List/list.ts +3 -1
  44. package/components/Masonry/Masonry.astro +54 -0
  45. package/components/Masonry/Masonry.svelte +54 -0
  46. package/components/Masonry/Masonry.tsx +62 -0
  47. package/components/Masonry/masonry.module.scss +18 -0
  48. package/components/Masonry/masonry.ts +36 -0
  49. package/components/Menu/Menu.astro +1 -1
  50. package/components/Menu/Menu.svelte +1 -1
  51. package/components/Menu/Menu.tsx +1 -1
  52. package/components/Menu/menu.ts +4 -2
  53. package/components/Modal/Modal.astro +2 -0
  54. package/components/Modal/Modal.svelte +2 -0
  55. package/components/Modal/Modal.tsx +2 -0
  56. package/components/Modal/modal.module.scss +29 -22
  57. package/components/Modal/modal.ts +1 -0
  58. package/components/Pagination/Pagination.astro +189 -0
  59. package/components/Pagination/Pagination.svelte +144 -0
  60. package/components/Pagination/Pagination.tsx +162 -0
  61. package/components/Pagination/pagination.module.scss +49 -0
  62. package/components/Pagination/pagination.ts +35 -0
  63. package/components/Rating/rating.ts +3 -1
  64. package/components/Select/Select.astro +8 -4
  65. package/components/Select/Select.svelte +15 -6
  66. package/components/Select/Select.tsx +15 -8
  67. package/components/Select/select.ts +7 -2
  68. package/components/Sidebar/Sidebar.astro +61 -0
  69. package/components/Sidebar/Sidebar.svelte +50 -0
  70. package/components/Sidebar/Sidebar.tsx +58 -0
  71. package/components/Sidebar/sidebar.module.scss +43 -0
  72. package/components/Sidebar/sidebar.ts +21 -0
  73. package/components/Switch/switch.ts +4 -2
  74. package/components/Table/Table.svelte +1 -1
  75. package/components/Table/table.ts +1 -1
  76. package/icons/arrow-left.svg +3 -0
  77. package/icons/arrow-right.svg +3 -0
  78. package/icons/circle-close.svg +3 -0
  79. package/icons/components.svg +3 -0
  80. package/icons/file.svg +3 -0
  81. package/icons/home.svg +4 -0
  82. package/icons/order.svg +3 -0
  83. package/icons/sun.svg +1 -1
  84. package/icons.d.ts +7 -0
  85. package/icons.js +7 -0
  86. package/index.d.ts +6 -6
  87. package/package.json +8 -10
  88. package/react.d.ts +115 -62
  89. package/react.js +14 -0
  90. package/scss/resets.scss +27 -1
  91. package/svelte.d.ts +116 -62
  92. package/svelte.js +14 -0
package/README.md CHANGED
@@ -1,227 +1,237 @@
1
- <p>
2
- <a href="https://webcoreui.dev">
3
- <img
4
- alt="Webcore - Frontend components for Astro, Svelte, and React"
5
- src="https://raw.githubusercontent.com/Frontendland/webcoreui/main/public/img/banner.png"
6
- />
7
- </a>
8
- </p>
9
-
10
- <p align="center">
11
- <a href="https://github.com/Frontendland/webcoreui/releases">
12
- <img
13
- src="https://img.shields.io/npm/v/webcoreui.svg?label=Latest%20Release"
14
- alt="Latest Release"
15
- />
16
- </a>
17
- <a href="https://github.com/Frontendland/webcoreui/blob/main/LICENSE">
18
- <img
19
- src="https://img.shields.io/badge/license-MIT-blue"
20
- alt="License"
21
- />
22
- </a>
23
- </p>
24
-
25
- > [!IMPORTANT]
26
- > This library is still in early development. New changes can break existing functionality, and no functionality should be considered final at this stage. The library will be considered stable once it reaches v1.0.
27
-
28
- ---
29
- ## Table of Contents
30
-
31
- - [Table of Contents](#table-of-contents)
32
- - [Documentation](#documentation)
33
- - [Getting started](#getting-started)
34
- - [Prerequisites](#prerequisites)
35
- - [Installation](#installation)
36
- - [Setup](#setup)
37
- - [Using Components](#using-components)
38
- - [Components](#components)
39
-
40
- ## Documentation
41
-
42
- Full documentation available on [webcoreui.dev](https://webcoreui.dev).
43
-
44
- ## Getting Started
45
-
46
- Webcore can be used as a standalone project, or it can be integrated into your existing Astro, Svelte, or React ecosystems. The easiest way to get started is to clone the repository and run `npm run dev` to start building your pages with the components available.
47
-
48
- ### Prerequisites
49
-
50
- > [!NOTE]
51
- > Before getting started, make sure you have a package manager installed, such as <a href="https://nodejs.org/en/" rel="noreferrer">Node</a>.
52
-
53
- Webcore components use Sass for styling. To use the component library, you must have the following packages installed:
54
-
55
- - [Sass](https://www.npmjs.com/package/sass) - `v1.77` and above
56
- - [TypeScript](https://www.npmjs.com/package/typescript) - `v5.4` and above
57
-
58
- Depending on your project setup, you'll also need the following packages:
59
-
60
- - **For Astro projects**
61
- - [Astro](https://www.npmjs.com/package/astro) - `v4.10` and above
62
- - **For Svelte projects**
63
- - [Svelte](https://www.npmjs.com/package/svelte) - `v4.2` and above
64
- - **For React projects**
65
- - [React](https://www.npmjs.com/package/react) - `v18.3` and above
66
- - [React DOM](https://www.npmjs.com/package/react-dom) -`v18.3` and above
67
-
68
- ### Installation
69
-
70
- Install Webcore as a dependency by running one of the following command:
71
-
72
- ```bash
73
- # Using NPM
74
- npm i webcoreui
75
-
76
- # Using Yarn
77
- yarn add webcoreui
78
- ```
79
-
80
- ### Setup
81
-
82
- Create an empty [`webcore.config.scss`](https://webcoreui.dev/docs/css-configuration#webcoreconfigscss) file at the root of your project to setup CSS configurations. Setup default styles and fonts by calling the following in your global SCSS file:
83
-
84
- ```scss
85
- @import 'webcoreui/styles';
86
- @include setup((
87
- // Define paths for your fonts
88
- fontRegular: '/fonts/Inter-Regular.woff2',
89
- fontBold: '/fonts/Inter-Bold.woff2'
90
- ));
91
- ```
92
-
93
- > [!TIP]
94
- > You can download the fonts Webcore uses from the [`public/fonts`](https://github.com/Frontendland/webcoreui/tree/main/public/fonts) directory.
95
-
96
- The `Setup` mixin can also accept the following options:
97
-
98
-
99
- | Property | Default value | Purpose |
100
- |-----------|---------------|---------|
101
- | `includeResets` | `true` | Include reset styles. Set to `false` if you want to use your own CSS resets. |
102
- | `includeUtilities` | `true` | Adds utility classes for CSS. Read more about the available utility classes [here](https://webcoreui.dev/docs/layout). |
103
- | `includeTooltip` | `true` | Adds styles for using tooltips.
104
- | `includeScrollbarStyles` | `true` | Adds styles for scrollbars.
105
-
106
- Default component styles can be changed by overriding the following CSS variables:
107
-
108
- ```scss
109
- html body {
110
- // Avatar component
111
- --w-avatar-border: var(--w-color-primary-70);
112
-
113
- // Checkbox component
114
- --w-checkbox-color: var(--w-color-primary);
115
-
116
- // Collapsible component
117
- --w-collapsible-initial-height: 0;
118
- --w-collapsible-max-height: 100%;
119
-
120
- // Progress component
121
- --w-progress-color: var(--w-color-primary);
122
- --w-progress-background: var(--w-color-primary-50);
123
- --w-progress-stripe-light: var(--w-color-primary);
124
- --w-progress-stripe-dark: var(--w-color-primary-10);
125
-
126
- // Radio component
127
- --w-radio-color: var(--w-color-primary);
128
-
129
- // Rating component
130
- --w-rating-color: var(--w-color-primary);
131
- --w-rating-empty-color: var(--w-color-primary);
132
- --w-rating-empty-background: var(--w-color-primary-70);
133
- --w-rating-size: 18px;
134
-
135
- // Scrollbars
136
- --w-scrollbar-bg: var(--w-color-primary-60);
137
- --w-scrollbar-fg: var(--w-color-primary-50);
138
-
139
- // Slider component
140
- --w-slider-background: var(--w-color-primary-50);
141
- --w-slider-color: var(--w-color-primary);
142
- --w-slider-thumb: var(--w-color-primary-50);
143
-
144
- // Spinner component
145
- --w-spinner-color: var(--w-color-primary);
146
- --w-spinner-width: 2px;
147
- --w-spinner-speed: 2s;
148
- --w-spinner-size: 30px;
149
- --w-spinner-dash: 8;
150
-
151
- // Switch component
152
- --w-switch-off-color: var(--w-color-primary-50);
153
- --w-switch-on-color: var(--w-color-primary);
154
-
155
- // ThemeSwitcher component
156
- --w-theme-switcher-size: 20px;
157
-
158
- // Timeline component
159
- --w-timeline-color: var(--w-color-primary-50);
160
- --w-timeline-text-color: var(--w-color-primary);
161
- --w-timeline-counter: decimal;
162
-
163
- // Tooltips
164
- --w-tooltip-background: var(--w-color-primary);
165
- --w-tooltip-color: var(--w-color-primary-70);
166
-
167
- // Override border-radius
168
- --w-sm-radius: 2px;
169
- --w-md-radius: 5px;
170
- --w-lg-radius: 10px;
171
- --w-xl-radius: 15px;
172
- }
173
- ```
174
-
175
- ### Using Components
176
-
177
- Start using Webcore components in your code by importing them:
178
-
179
- ```astro
180
- ---
181
- // Import the component relevant to your project
182
- // How to import Astro components
183
- import { Accordion } from 'webcoreui/astro'
184
-
185
- // How to import Svelte components
186
- import { Accordion } from 'webcoreui/svelte'
187
-
188
- // How to import React components
189
- import { Accordion } from 'webcoreui/react'
190
- ---
191
-
192
- <Accordion items={[{ ... }]} />
193
- ```
194
-
195
- ## Components
196
-
197
- - [Accordion](https://github.com/Frontendland/webcoreui/tree/main/src/components/Accordion)
198
- - [Alert](https://github.com/Frontendland/webcoreui/tree/main/src/components/Alert)
199
- - [Avatar](https://github.com/Frontendland/webcoreui/tree/main/src/components/Avatar)
200
- - [Badge](https://github.com/Frontendland/webcoreui/tree/main/src/components/Badge)
201
- - [Button](https://github.com/Frontendland/webcoreui/tree/main/src/components/Button)
202
- - [Card](https://github.com/Frontendland/webcoreui/tree/main/src/components/Card)
203
- - [Checkbox](https://github.com/Frontendland/webcoreui/tree/main/src/components/Checkbox)
204
- - [Collapsible](https://github.com/Frontendland/webcoreui/tree/main/src/components/Collapsible)
205
- - [ConditionalWrapper](https://github.com/Frontendland/webcoreui/tree/main/src/components/ConditionalWrapper)
206
- - [Group](https://github.com/Frontendland/webcoreui/tree/main/src/components/Group)
207
- - [Icon](https://github.com/Frontendland/webcoreui/tree/main/src/components/Icon)
208
- - [Input](https://github.com/Frontendland/webcoreui/tree/main/src/components/Input)
209
- - [List](https://github.com/Frontendland/webcoreui/tree/main/src/components/List)
210
- - [Menu](https://github.com/Frontendland/webcoreui/tree/main/src/components/Menu)
211
- - [Modal](https://github.com/Frontendland/webcoreui/tree/main/src/components/Modal)
212
- - [Popover](https://github.com/Frontendland/webcoreui/tree/main/src/components/Popover)
213
- - [Progress](https://github.com/Frontendland/webcoreui/tree/main/src/components/Progress)
214
- - [Radio](https://github.com/Frontendland/webcoreui/tree/main/src/components/Radio)
215
- - [Rating](https://github.com/Frontendland/webcoreui/tree/main/src/components/Rating)
216
- - [Select](https://github.com/Frontendland/webcoreui/tree/main/src/components/Select)
217
- - [Sheet](https://github.com/Frontendland/webcoreui/tree/main/src/components/Sheet)
218
- - [Slider](https://github.com/Frontendland/webcoreui/tree/main/src/components/Slider)
219
- - [Spinner](https://github.com/Frontendland/webcoreui/tree/main/src/components/Spinner)
220
- - [Switch](https://github.com/Frontendland/webcoreui/tree/main/src/components/Switch)
221
- - [Table](https://github.com/Frontendland/webcoreui/tree/main/src/components/Table)
222
- - [Tabs](https://github.com/Frontendland/webcoreui/tree/main/src/components/Tabs)
223
- - [Textarea](https://github.com/Frontendland/webcoreui/tree/main/src/components/Textarea)
224
- - [ThemeSwitcher](https://github.com/Frontendland/webcoreui/tree/main/src/components/ThemeSwitcher)
225
- - [Timeline](https://github.com/Frontendland/webcoreui/blob/main/src/pages/timeline.astro)
226
- - [Toast](https://github.com/Frontendland/webcoreui/tree/main/src/components/Toast)
227
- - [Tooltip](https://github.com/Frontendland/webcoreui/blob/main/src/pages/tooltip.astro)
1
+ <p>
2
+ <a href="https://webcoreui.dev">
3
+ <img
4
+ alt="Webcore - Frontend components for Astro, Svelte, and React"
5
+ src="https://raw.githubusercontent.com/Frontendland/webcoreui/main/public/img/banner.png"
6
+ />
7
+ </a>
8
+ </p>
9
+
10
+ <p align="center">
11
+ <a href="https://github.com/Frontendland/webcoreui/releases">
12
+ <img
13
+ src="https://img.shields.io/npm/v/webcoreui.svg?label=Latest%20Release"
14
+ alt="Latest Release"
15
+ />
16
+ </a>
17
+ <a href="https://github.com/Frontendland/webcoreui/blob/main/LICENSE">
18
+ <img
19
+ src="https://img.shields.io/badge/license-MIT-blue"
20
+ alt="License"
21
+ />
22
+ </a>
23
+ </p>
24
+
25
+ > [!IMPORTANT]
26
+ > This library is still in early development. New changes can break existing functionality, and no functionality should be considered final at this stage. The library will be considered stable once it reaches v1.0.
27
+
28
+ ---
29
+ ## Table of Contents
30
+
31
+ - [Table of Contents](#table-of-contents)
32
+ - [Documentation](#documentation)
33
+ - [Getting started](#getting-started)
34
+ - [Prerequisites](#prerequisites)
35
+ - [Installation](#installation)
36
+ - [Setup](#setup)
37
+ - [Using Components](#using-components)
38
+ - [Components](#components)
39
+
40
+ ## Documentation
41
+
42
+ Full documentation available on [webcoreui.dev](https://webcoreui.dev).
43
+
44
+ ## Getting Started
45
+
46
+ Webcore can be used as a standalone project, or it can be integrated into your existing Astro, Svelte, or React ecosystems. The easiest way to get started is to clone the repository and run `npm run dev` to start building your pages with the components available.
47
+
48
+ ### Prerequisites
49
+
50
+ > [!NOTE]
51
+ > Before getting started, make sure you have a package manager installed, such as <a href="https://nodejs.org/en/" rel="noreferrer">Node</a>.
52
+
53
+ Webcore components use Sass for styling. To use the component library, you must have the following packages installed:
54
+
55
+ - [Sass](https://www.npmjs.com/package/sass) - `v1.77` and above
56
+ - [TypeScript](https://www.npmjs.com/package/typescript) - `v5.4` and above
57
+
58
+ Depending on your project setup, you'll also need the following packages:
59
+
60
+ - **For Astro projects**
61
+ - [Astro](https://www.npmjs.com/package/astro) - `v4.10` and above
62
+ - **For Svelte projects**
63
+ - [Svelte](https://www.npmjs.com/package/svelte) - `v4.2` and above
64
+ - **For React projects**
65
+ - [React](https://www.npmjs.com/package/react) - `v18.3` and above
66
+ - [React DOM](https://www.npmjs.com/package/react-dom) -`v18.3` and above
67
+
68
+ ### Installation
69
+
70
+ Install Webcore as a dependency by running one of the following command:
71
+
72
+ ```bash
73
+ # Using NPM
74
+ npm i webcoreui
75
+
76
+ # Using Yarn
77
+ yarn add webcoreui
78
+ ```
79
+
80
+ ### Setup
81
+
82
+ Create an empty [`webcore.config.scss`](https://webcoreui.dev/docs/css-configuration#webcoreconfigscss) file at the root of your project to setup CSS configurations. Setup default styles and fonts by calling the following in your global SCSS file:
83
+
84
+ ```scss
85
+ @import 'webcoreui/styles';
86
+ @include setup((
87
+ // Define paths for your fonts
88
+ fontRegular: '/fonts/Inter-Regular.woff2',
89
+ fontBold: '/fonts/Inter-Bold.woff2'
90
+ ));
91
+ ```
92
+
93
+ > [!TIP]
94
+ > You can download the fonts Webcore uses from the [`public/fonts`](https://github.com/Frontendland/webcoreui/tree/main/public/fonts) directory.
95
+
96
+ The `Setup` mixin can also accept the following options:
97
+
98
+
99
+ | Property | Default value | Purpose |
100
+ |-----------|---------------|---------|
101
+ | `includeResets` | `true` | Include reset styles. Set to `false` if you want to use your own CSS resets. |
102
+ | `includeUtilities` | `true` | Adds utility classes for CSS. Read more about the available utility classes [here](https://webcoreui.dev/docs/layout). |
103
+ | `includeTooltip` | `true` | Adds styles for using tooltips.
104
+ | `includeScrollbarStyles` | `true` | Adds styles for scrollbars.
105
+
106
+ Default component styles can be changed by overriding the following CSS variables:
107
+
108
+ ```scss
109
+ html body {
110
+ // Avatar component
111
+ --w-avatar-border: var(--w-color-primary-70);
112
+
113
+ // Checkbox component
114
+ --w-checkbox-color: var(--w-color-primary);
115
+
116
+ // Collapsible component
117
+ --w-collapsible-initial-height: 0;
118
+ --w-collapsible-max-height: 100%;
119
+
120
+ // Masonry component
121
+ --w-masonry-gap: 5px;
122
+
123
+ // Progress component
124
+ --w-progress-color: var(--w-color-primary);
125
+ --w-progress-background: var(--w-color-primary-50);
126
+ --w-progress-stripe-light: var(--w-color-primary);
127
+ --w-progress-stripe-dark: var(--w-color-primary-10);
128
+
129
+ // Radio component
130
+ --w-radio-color: var(--w-color-primary);
131
+
132
+ // Rating component
133
+ --w-rating-color: var(--w-color-primary);
134
+ --w-rating-empty-color: var(--w-color-primary);
135
+ --w-rating-empty-background: var(--w-color-primary-70);
136
+ --w-rating-size: 18px;
137
+
138
+ // Scrollbars
139
+ --w-scrollbar-bg: var(--w-color-primary-60);
140
+ --w-scrollbar-fg: var(--w-color-primary-50);
141
+
142
+ // Slider component
143
+ --w-slider-background: var(--w-color-primary-50);
144
+ --w-slider-color: var(--w-color-primary);
145
+ --w-slider-thumb: var(--w-color-primary-50);
146
+
147
+ // Spinner component
148
+ --w-spinner-color: var(--w-color-primary);
149
+ --w-spinner-width: 2px;
150
+ --w-spinner-speed: 2s;
151
+ --w-spinner-size: 30px;
152
+ --w-spinner-dash: 8;
153
+
154
+ // Switch component
155
+ --w-switch-off-color: var(--w-color-primary-50);
156
+ --w-switch-on-color: var(--w-color-primary);
157
+
158
+ // ThemeSwitcher component
159
+ --w-theme-switcher-size: 20px;
160
+
161
+ // Timeline component
162
+ --w-timeline-color: var(--w-color-primary-50);
163
+ --w-timeline-text-color: var(--w-color-primary);
164
+ --w-timeline-counter: decimal;
165
+
166
+ // Tooltips
167
+ --w-tooltip-background: var(--w-color-primary);
168
+ --w-tooltip-color: var(--w-color-primary-70);
169
+
170
+ // Override border-radius
171
+ --w-sm-radius: 2px;
172
+ --w-md-radius: 5px;
173
+ --w-lg-radius: 10px;
174
+ --w-xl-radius: 15px;
175
+ }
176
+ ```
177
+
178
+ ### Using Components
179
+
180
+ Start using Webcore components in your code by importing them:
181
+
182
+ ```astro
183
+ ---
184
+ // Import the component relevant to your project
185
+ // How to import Astro components
186
+ import { Accordion } from 'webcoreui/astro'
187
+
188
+ // How to import Svelte components
189
+ import { Accordion } from 'webcoreui/svelte'
190
+
191
+ // How to import React components
192
+ import { Accordion } from 'webcoreui/react'
193
+ ---
194
+
195
+ <Accordion items={[{ ... }]} />
196
+ ```
197
+
198
+ ## Components
199
+
200
+ - [Accordion](https://github.com/Frontendland/webcoreui/tree/main/src/components/Accordion)
201
+ - [Alert](https://github.com/Frontendland/webcoreui/tree/main/src/components/Alert)
202
+ - [Avatar](https://github.com/Frontendland/webcoreui/tree/main/src/components/Avatar)
203
+ - [Badge](https://github.com/Frontendland/webcoreui/tree/main/src/components/Badge)
204
+ - [Breadcrumb](https://github.com/Frontendland/webcoreui/tree/main/src/components/Breadcrumb)
205
+ - [Button](https://github.com/Frontendland/webcoreui/tree/main/src/components/Button)
206
+ - [Card](https://github.com/Frontendland/webcoreui/tree/main/src/components/Card)
207
+ - [Carousel](https://github.com/Frontendland/webcoreui/tree/main/src/components/Carousel)
208
+ - [Checkbox](https://github.com/Frontendland/webcoreui/tree/main/src/components/Checkbox)
209
+ - [Collapsible](https://github.com/Frontendland/webcoreui/tree/main/src/components/Collapsible)
210
+ - [ConditionalWrapper](https://github.com/Frontendland/webcoreui/tree/main/src/components/ConditionalWrapper)
211
+ - [DataTable](https://github.com/Frontendland/webcoreui/tree/main/src/components/DataTable)
212
+ - [Footer](https://github.com/Frontendland/webcoreui/tree/main/src/components/Footer)
213
+ - [Group](https://github.com/Frontendland/webcoreui/tree/main/src/components/Group)
214
+ - [Icon](https://github.com/Frontendland/webcoreui/tree/main/src/components/Icon)
215
+ - [Input](https://github.com/Frontendland/webcoreui/tree/main/src/components/Input)
216
+ - [List](https://github.com/Frontendland/webcoreui/tree/main/src/components/List)
217
+ - [Masonry](https://github.com/Frontendland/webcoreui/tree/main/src/components/Masonry)
218
+ - [Menu](https://github.com/Frontendland/webcoreui/tree/main/src/components/Menu)
219
+ - [Modal](https://github.com/Frontendland/webcoreui/tree/main/src/components/Modal)
220
+ - [Pagination](https://github.com/Frontendland/webcoreui/tree/main/src/components/Pagination)
221
+ - [Popover](https://github.com/Frontendland/webcoreui/tree/main/src/components/Popover)
222
+ - [Progress](https://github.com/Frontendland/webcoreui/tree/main/src/components/Progress)
223
+ - [Radio](https://github.com/Frontendland/webcoreui/tree/main/src/components/Radio)
224
+ - [Rating](https://github.com/Frontendland/webcoreui/tree/main/src/components/Rating)
225
+ - [Select](https://github.com/Frontendland/webcoreui/tree/main/src/components/Select)
226
+ - [Sheet](https://github.com/Frontendland/webcoreui/tree/main/src/components/Sheet)
227
+ - [Sidebar](https://github.com/Frontendland/webcoreui/tree/main/src/components/Sidebar)
228
+ - [Slider](https://github.com/Frontendland/webcoreui/tree/main/src/components/Slider)
229
+ - [Spinner](https://github.com/Frontendland/webcoreui/tree/main/src/components/Spinner)
230
+ - [Switch](https://github.com/Frontendland/webcoreui/tree/main/src/components/Switch)
231
+ - [Table](https://github.com/Frontendland/webcoreui/tree/main/src/components/Table)
232
+ - [Tabs](https://github.com/Frontendland/webcoreui/tree/main/src/components/Tabs)
233
+ - [Textarea](https://github.com/Frontendland/webcoreui/tree/main/src/components/Textarea)
234
+ - [ThemeSwitcher](https://github.com/Frontendland/webcoreui/tree/main/src/components/ThemeSwitcher)
235
+ - [Timeline](https://github.com/Frontendland/webcoreui/blob/main/src/pages/timeline.astro)
236
+ - [Toast](https://github.com/Frontendland/webcoreui/tree/main/src/components/Toast)
237
+ - [Tooltip](https://github.com/Frontendland/webcoreui/blob/main/src/pages/tooltip.astro)