You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+51-44Lines changed: 51 additions & 44 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -305,47 +305,54 @@ For support, please open an issue on our GitHub repository.
305
305
Built with ❤️
306
306
307
307
### ToDO:
308
-
Form-Related Components
309
-
<zephyr-form>: A wrapper component for handling form submissions, validation, and data management.
310
-
<zephyr-checkbox>: A customizable checkbox input element with clear styling options.
311
-
<zephyr-radio>: Similar to <zephyr-Checkbox, but for radio button groups.
312
-
<zephyr-switch>: A toggle switch component for binary options.
313
-
<zephyr-select>: A styled dropdown selection component.
314
-
<zephyr-datepicker>: A calendar component for date input.
315
-
<zephyr-timepicker>: A component for selecting time.
316
-
<zephyr-calendar>: A full calendar component for scheduling and events
317
-
<zephyr-range-slider>: An input slider for selecting a value within a range.
318
-
<zephyr-file-upload>: A component for handling file uploads.
319
-
<zephyr-multi-form>: Guides users through multi-step processes, such as checkout processes.
320
-
Authentication Components
321
-
<zephyr-login-form>: A pre-built login form component
322
-
<zephyr-signup-form>: A registration form component
323
-
<zephyr-password-strength>: A password strength indicator
324
-
Utility Components
325
-
<zephyr-scroll-to-top>: A button to scroll back to the top of the page
326
-
<zephyr-infinite-scroll>: A component to handle infinite scrolling
327
-
<zephyr-lazy-load>: A component for lazy loading images or other content
328
-
Navigation & Layout Components
329
-
Popover/Popover Menu: Similar to tooltips but more complex, allowing for interaction within the content.
330
-
<zephyr-navbar>: A top-level navigation bar component.
331
-
<zephyr-sidebar>: A collapsible side navigation menu.
332
-
<zephyr-breadcrumb>: A navigational aid that shows the user's path within a website or application.
333
-
<zephyr-grid>: A flexible grid system for creating responsive layouts (could integrate with a popular CSS grid library).
334
-
<zephyr-carousel>: A slideshow component for displaying images or content.
335
-
<zephyr-masonry>: A masonry layout component for dynamic content arrangement
336
-
<zephyr-pagination>: A component to help users navigate through large sets of data.
337
-
Data Visualization Components
338
-
<zephyr-chart>: A generic chart component that can be configured for various chart types (line, bar, pie, etc.). Could potentially integrate with a charting library like Chart.js or D3.js.
339
-
<zephyr-progress>: A progress bar or circle component for visualizing progress.
340
-
<zephyr-timeline>: A component to display events or data points in chronological order.
341
-
Interactive Components
342
-
<zephyr-drawer>: A sliding panel that emerges from the side of the screen.
343
-
<zephyr-snackbar>: A brief notification that appears at the bottom of the screen.
344
-
<zephyr-rating>: A component for displaying and collecting user ratings (e.g., star ratings).
345
-
Additional Ideas
346
-
<zephyr-avatar>: A circular image component for displaying user profile pictures.
347
-
<zephyr-badge>: A small label or tag to highlight a piece of information.
348
-
<zephyr-loader/spinner>: Animated loading indicators to provide feedback during asynchronous operations.
349
-
<zephyr-audio-player>: A component for playing audio files.
350
-
<zephyr-video-player>: A component for playing video files.
351
-
<zephyr-sortable-list>: Allows users to reorder list items via drag and drop.
308
+
309
+
#### Form-Related Components
310
+
-`<zephyr-form>`: A wrapper component for handling form submissions, validation, and data management.
311
+
-`<zephyr-checkbox>`: A customizable checkbox input element with clear styling options.
312
+
-`<zephyr-radio>`: Similar to `<zephyr-checkbox>`, but for radio button groups.
313
+
-`<zephyr-switch>`: A toggle switch component for binary options.
314
+
-`<zephyr-select>`: A styled dropdown selection component.
315
+
-`<zephyr-datepicker>`: A calendar component for date input.
316
+
-`<zephyr-timepicker>`: A component for selecting time.
317
+
-`<zephyr-calendar>`: A full calendar component for scheduling and events.
318
+
-`<zephyr-range-slider>`: An input slider for selecting a value within a range.
319
+
-`<zephyr-file-upload>`: A component for handling file uploads.
320
+
-`<zephyr-multi-form>`: Guides users through multi-step processes, such as checkout processes.
321
+
322
+
#### Authentication Components
323
+
-`<zephyr-login-form>`: A pre-built login form component.
324
+
-`<zephyr-signup-form>`: A registration form component.
325
+
-`<zephyr-password-strength>`: A password strength indicator.
326
+
327
+
#### Utility Components
328
+
-`<zephyr-scroll-to-top>`: A button to scroll back to the top of the page.
329
+
-`<zephyr-infinite-scroll>`: A component to handle infinite scrolling.
330
+
-`<zephyr-lazy-load>`: A component for lazy loading images or other content.
331
+
332
+
#### Navigation & Layout Components
333
+
-`Popover/Popover Menu`: Similar to tooltips but more complex, allowing for interaction within the content.
334
+
-`<zephyr-navbar>`: A top-level navigation bar component.
335
+
-`<zephyr-sidebar>`: A collapsible side navigation menu.
336
+
-`<zephyr-breadcrumb>`: A navigational aid that shows the user's path within a website or application.
337
+
-`<zephyr-grid>`: A flexible grid system for creating responsive layouts (could integrate with a popular CSS grid library).
338
+
-`<zephyr-carousel>`: A slideshow component for displaying images or content.
339
+
-`<zephyr-masonry>`: A masonry layout component for dynamic content arrangement.
340
+
-`<zephyr-pagination>`: A component to help users navigate through large sets of data.
341
+
342
+
#### Data Visualization Components
343
+
-`<zephyr-chart>`: A generic chart component that can be configured for various chart types (line, bar, pie, etc.). Could potentially integrate with a charting library like Chart.js or D3.js.
344
+
-`<zephyr-progress>`: A progress bar or circle component for visualizing progress.
345
+
-`<zephyr-timeline>`: A component to display events or data points in chronological order.
346
+
347
+
#### Interactive Components
348
+
-`<zephyr-drawer>`: A sliding panel that emerges from the side of the screen.
349
+
-`<zephyr-snackbar>`: A brief notification that appears at the bottom of the screen.
350
+
-`<zephyr-rating>`: A component for displaying and collecting user ratings (e.g., star ratings).
351
+
352
+
#### Additional Ideas
353
+
-`<zephyr-avatar>`: A circular image component for displaying user profile pictures.
354
+
-`<zephyr-badge>`: A small label or tag to highlight a piece of information.
355
+
-`<zephyr-loader/spinner>`: Animated loading indicators to provide feedback during asynchronous operations.
356
+
-`<zephyr-audio-player>`: A component for playing audio files.
357
+
-`<zephyr-video-player>`: A component for playing video files.
358
+
-`<zephyr-sortable-list>`: Allows users to reorder list items via drag and drop.
0 commit comments