fluxo-ui 0.0.1
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.
- package/README.md +237 -0
- package/chunk-Do9eywBl.cjs +35 -0
- package/classnames-B4qHndiD.cjs +48 -0
- package/classnames-CEAOwX3h.js +66 -0
- package/components-C_HbdZhO.js +22556 -0
- package/components-DdojqcZ7.cjs +23236 -0
- package/dnd.cjs +6 -0
- package/dnd.d.ts +1 -0
- package/dnd.js +2 -0
- package/drag-drop-BF3uukc4.cjs +258 -0
- package/drag-drop-UWg0agsw.js +233 -0
- package/draw.cjs +3156 -0
- package/draw.d.ts +1 -0
- package/draw.js +3147 -0
- package/favicon.svg +14 -0
- package/hooks-BLbZ4aKB.cjs +137 -0
- package/hooks-D0CAM9v9.js +107 -0
- package/hooks.cjs +7 -0
- package/hooks.d.ts +1 -0
- package/hooks.js +2 -0
- package/icons-BRgMxTPy.js +1641 -0
- package/icons-CNooH6LA.cjs +2038 -0
- package/icons.cjs +85 -0
- package/icons.d.ts +1 -0
- package/icons.js +2 -0
- package/index.cjs +115 -0
- package/index.d.ts +1 -0
- package/index.js +2 -0
- package/kanban.cjs +969 -0
- package/kanban.d.ts +1 -0
- package/kanban.js +967 -0
- package/logo.svg +26 -0
- package/package.json +110 -0
- package/services.cjs +331 -0
- package/services.d.ts +1 -0
- package/services.js +321 -0
- package/src/assets/icons.d.ts +86 -0
- package/src/components/Autocomplete.d.ts +22 -0
- package/src/components/AutocompleteMulti.d.ts +24 -0
- package/src/components/Breadcrumb.d.ts +17 -0
- package/src/components/Button.d.ts +26 -0
- package/src/components/Checkbox.d.ts +12 -0
- package/src/components/Chips.d.ts +16 -0
- package/src/components/DeferredView.d.ts +13 -0
- package/src/components/Dropdown.d.ts +22 -0
- package/src/components/Fab.d.ts +23 -0
- package/src/components/FieldLabel.d.ts +15 -0
- package/src/components/Icon.d.ts +6 -0
- package/src/components/InfiniteScroll.d.ts +19 -0
- package/src/components/InputGroup.d.ts +7 -0
- package/src/components/InputSwitch.d.ts +12 -0
- package/src/components/Link.d.ts +5 -0
- package/src/components/ListBox.d.ts +38 -0
- package/src/components/MaskedInput.d.ts +28 -0
- package/src/components/Modal.d.ts +12 -0
- package/src/components/MultiStateCheckbox.d.ts +11 -0
- package/src/components/Multiselect.d.ts +25 -0
- package/src/components/NumericInput.d.ts +16 -0
- package/src/components/Password.d.ts +18 -0
- package/src/components/Popover.d.ts +20 -0
- package/src/components/ProgressBar.d.ts +31 -0
- package/src/components/RadioButton.d.ts +20 -0
- package/src/components/SelectButton.d.ts +20 -0
- package/src/components/SpeedDial.d.ts +40 -0
- package/src/components/Stepper.d.ts +41 -0
- package/src/components/TextArea.d.ts +19 -0
- package/src/components/TextInput.d.ts +19 -0
- package/src/components/ToggleButton.d.ts +12 -0
- package/src/components/animate-on-view/AnimateOnView.d.ts +23 -0
- package/src/components/animate-on-view/index.d.ts +2 -0
- package/src/components/calendar/Calendar.d.ts +4 -0
- package/src/components/calendar/CalendarContext.d.ts +4 -0
- package/src/components/calendar/calendar-constants.d.ts +8 -0
- package/src/components/calendar/calendar-types.d.ts +413 -0
- package/src/components/calendar/calendar-utils.d.ts +61 -0
- package/src/components/calendar/entries/CalendarEntry.d.ts +20 -0
- package/src/components/calendar/entries/DefaultEntry.d.ts +8 -0
- package/src/components/calendar/entries/EntryContainer.d.ts +19 -0
- package/src/components/calendar/entries/OverflowPopover.d.ts +12 -0
- package/src/components/calendar/entries/index.d.ts +4 -0
- package/src/components/calendar/hooks/index.d.ts +4 -0
- package/src/components/calendar/hooks/useCalendarEntries.d.ts +8 -0
- package/src/components/calendar/hooks/useCalendarNavigation.d.ts +24 -0
- package/src/components/calendar/hooks/useNowIndicator.d.ts +10 -0
- package/src/components/calendar/hooks/useViewTitle.d.ts +2 -0
- package/src/components/calendar/index.d.ts +9 -0
- package/src/components/calendar/interactions/index.d.ts +3 -0
- package/src/components/calendar/interactions/useDragMove.d.ts +11 -0
- package/src/components/calendar/interactions/useDragResize.d.ts +11 -0
- package/src/components/calendar/interactions/useSelection.d.ts +11 -0
- package/src/components/calendar/plugin-registry.d.ts +17 -0
- package/src/components/calendar/plugins/agenda-plugin.d.ts +6 -0
- package/src/components/calendar/plugins/create-plugin.d.ts +20 -0
- package/src/components/calendar/plugins/day-grid-plugin.d.ts +2 -0
- package/src/components/calendar/plugins/default-plugins.d.ts +2 -0
- package/src/components/calendar/plugins/index.d.ts +14 -0
- package/src/components/calendar/plugins/list-view-plugin.d.ts +2 -0
- package/src/components/calendar/plugins/month-grid-plugin.d.ts +2 -0
- package/src/components/calendar/plugins/multi-month-plugin.d.ts +2 -0
- package/src/components/calendar/plugins/scroll-month-plugin.d.ts +2 -0
- package/src/components/calendar/plugins/time-grid-custom-plugin.d.ts +6 -0
- package/src/components/calendar/plugins/time-grid-plugin.d.ts +2 -0
- package/src/components/calendar/plugins/year-grid-plugin.d.ts +2 -0
- package/src/components/calendar/toolbar/CalendarToolbar.d.ts +27 -0
- package/src/components/calendar/toolbar/ToolbarNavigation.d.ts +8 -0
- package/src/components/calendar/toolbar/ToolbarTitle.d.ts +6 -0
- package/src/components/calendar/toolbar/ToolbarViewSwitcher.d.ts +9 -0
- package/src/components/calendar/toolbar/index.d.ts +4 -0
- package/src/components/calendar/views/ViewRenderer.d.ts +7 -0
- package/src/components/calendar/views/agenda/AgendaView.d.ts +6 -0
- package/src/components/calendar/views/agenda/index.d.ts +1 -0
- package/src/components/calendar/views/day-grid/DayGrid.d.ts +9 -0
- package/src/components/calendar/views/day-grid/DayGridCell.d.ts +15 -0
- package/src/components/calendar/views/day-grid/index.d.ts +2 -0
- package/src/components/calendar/views/index.d.ts +10 -0
- package/src/components/calendar/views/list-view/ListView.d.ts +7 -0
- package/src/components/calendar/views/list-view/ListViewGroup.d.ts +11 -0
- package/src/components/calendar/views/list-view/ListViewItem.d.ts +10 -0
- package/src/components/calendar/views/list-view/index.d.ts +3 -0
- package/src/components/calendar/views/month-grid/MonthGrid.d.ts +5 -0
- package/src/components/calendar/views/month-grid/MonthGridCell.d.ts +22 -0
- package/src/components/calendar/views/month-grid/MonthGridHeader.d.ts +8 -0
- package/src/components/calendar/views/month-grid/index.d.ts +3 -0
- package/src/components/calendar/views/multi-month/MultiMonthGrid.d.ts +5 -0
- package/src/components/calendar/views/multi-month/index.d.ts +1 -0
- package/src/components/calendar/views/scroll-month/ScrollMonthView.d.ts +5 -0
- package/src/components/calendar/views/scroll-month/index.d.ts +1 -0
- package/src/components/calendar/views/time-grid/NowIndicator.d.ts +9 -0
- package/src/components/calendar/views/time-grid/TimeGrid.d.ts +9 -0
- package/src/components/calendar/views/time-grid/TimeGridAllDay.d.ts +14 -0
- package/src/components/calendar/views/time-grid/TimeGridBody.d.ts +21 -0
- package/src/components/calendar/views/time-grid/TimeGridColumn.d.ts +22 -0
- package/src/components/calendar/views/time-grid/TimeGridHeader.d.ts +9 -0
- package/src/components/calendar/views/time-grid/TimeGridSlot.d.ts +12 -0
- package/src/components/calendar/views/time-grid/index.d.ts +7 -0
- package/src/components/calendar/views/time-grid-custom/TimeGridCustomDays.d.ts +7 -0
- package/src/components/calendar/views/time-grid-custom/index.d.ts +1 -0
- package/src/components/calendar/views/year-grid/YearGrid.d.ts +5 -0
- package/src/components/calendar/views/year-grid/index.d.ts +1 -0
- package/src/components/canvas-draw/CanvasDraw.d.ts +18 -0
- package/src/components/canvas-draw/CanvasDrawOverlay.d.ts +27 -0
- package/src/components/canvas-draw/CanvasDrawToolbar.d.ts +32 -0
- package/src/components/canvas-draw/MediaTimeline.d.ts +36 -0
- package/src/components/canvas-draw/canvas-draw-types.d.ts +200 -0
- package/src/components/canvas-draw/index.d.ts +10 -0
- package/src/components/carousel/Carousel.d.ts +35 -0
- package/src/components/carousel/CarouselSlide.d.ts +22 -0
- package/src/components/carousel/CarouselThumbnails.d.ts +10 -0
- package/src/components/carousel/index.d.ts +2 -0
- package/src/components/collapsible-panel/CollapsiblePanel.d.ts +45 -0
- package/src/components/collapsible-panel/CollapsibleTabs.d.ts +24 -0
- package/src/components/collapsible-panel/index.d.ts +4 -0
- package/src/components/confirm-popover/ConfirmPopoverManager.d.ts +18 -0
- package/src/components/confirm-popover/ConfirmPopoverPanel.d.ts +7 -0
- package/src/components/confirm-popover/index.d.ts +3 -0
- package/src/components/confirm-popover/types.d.ts +20 -0
- package/src/components/confirm-popover/useConfirmPopoverPosition.d.ts +10 -0
- package/src/components/context/ThemeContext.d.ts +24 -0
- package/src/components/context-menu/ContextMenuManager.d.ts +3 -0
- package/src/components/context-menu/index.d.ts +2 -0
- package/src/components/context-menu/types.d.ts +28 -0
- package/src/components/context-menu/utils.d.ts +3 -0
- package/src/components/date-range/Calendar.d.ts +15 -0
- package/src/components/date-range/CustomDatePicker.d.ts +2 -0
- package/src/components/date-range/DatePopover.d.ts +5 -0
- package/src/components/date-range/DateRangePicker.d.ts +3 -0
- package/src/components/date-range/Footer.d.ts +2 -0
- package/src/components/date-range/MonthPicker.d.ts +10 -0
- package/src/components/date-range/QuickRangeDropdown.d.ts +2 -0
- package/src/components/date-range/QuickRangeList.d.ts +2 -0
- package/src/components/date-range/YearPicker.d.ts +11 -0
- package/src/components/date-range/index.d.ts +2 -0
- package/src/components/date-range/types.d.ts +65 -0
- package/src/components/date-range/utils.d.ts +6 -0
- package/src/components/drag-drop/DragDropProvider.d.ts +33 -0
- package/src/components/drag-drop/Draggable.d.ts +86 -0
- package/src/components/drag-drop/Droppable.d.ts +60 -0
- package/src/components/drag-drop/Sortable.d.ts +98 -0
- package/src/components/drag-drop/index.d.ts +9 -0
- package/src/components/drawer/Drawer.d.ts +19 -0
- package/src/components/drawer/index.d.ts +2 -0
- package/src/components/file-upload/FilePreview.d.ts +9 -0
- package/src/components/file-upload/FileUpload.d.ts +4 -0
- package/src/components/file-upload/file-upload-types.d.ts +23 -0
- package/src/components/file-upload/index.d.ts +2 -0
- package/src/components/gantt-chart/DependencyLines.d.ts +4 -0
- package/src/components/gantt-chart/FieldsPanel.d.ts +11 -0
- package/src/components/gantt-chart/GanttChart.d.ts +3 -0
- package/src/components/gantt-chart/GanttContext.d.ts +4 -0
- package/src/components/gantt-chart/Markers.d.ts +4 -0
- package/src/components/gantt-chart/TaskBar.d.ts +9 -0
- package/src/components/gantt-chart/TimelineGrid.d.ts +4 -0
- package/src/components/gantt-chart/TimelineHeader.d.ts +8 -0
- package/src/components/gantt-chart/TimelinePanel.d.ts +10 -0
- package/src/components/gantt-chart/gantt-types.d.ts +191 -0
- package/src/components/gantt-chart/gantt-utils.d.ts +27 -0
- package/src/components/gantt-chart/index.d.ts +2 -0
- package/src/components/image-editor/ImageEditor.d.ts +5 -0
- package/src/components/image-editor/image-editor-types.d.ts +51 -0
- package/src/components/image-editor/index.d.ts +2 -0
- package/src/components/index.d.ts +75 -0
- package/src/components/json-editor/AddEntry.d.ts +10 -0
- package/src/components/json-editor/ArrayEditor.d.ts +4 -0
- package/src/components/json-editor/ItemNameDisplay.d.ts +4 -0
- package/src/components/json-editor/ItemValueDisplay.d.ts +4 -0
- package/src/components/json-editor/JsonEditor.d.ts +5 -0
- package/src/components/json-editor/NodeSelector.d.ts +6 -0
- package/src/components/json-editor/ObjectEditor.d.ts +4 -0
- package/src/components/json-editor/SimpleEditor.d.ts +4 -0
- package/src/components/json-editor/Toolbar.d.ts +14 -0
- package/src/components/json-editor/index.d.ts +2 -0
- package/src/components/json-editor/json-editor-types.d.ts +83 -0
- package/src/components/json-editor/json-editor-utils.d.ts +11 -0
- package/src/components/kanban-board/KanbanBoard.d.ts +3 -0
- package/src/components/kanban-board/KanbanCard.d.ts +3 -0
- package/src/components/kanban-board/KanbanColumn.d.ts +3 -0
- package/src/components/kanban-board/KanbanColumnHeader.d.ts +8 -0
- package/src/components/kanban-board/KanbanContext.d.ts +5 -0
- package/src/components/kanban-board/index.d.ts +2 -0
- package/src/components/kanban-board/kanban-types.d.ts +152 -0
- package/src/components/kanban-board/kanban-utils.d.ts +14 -0
- package/src/components/lightbox/Lightbox.d.ts +32 -0
- package/src/components/lightbox/index.d.ts +2 -0
- package/src/components/menu-nav/MenuNav.d.ts +5 -0
- package/src/components/menu-nav/MenuNavItem.d.ts +18 -0
- package/src/components/menu-nav/index.d.ts +2 -0
- package/src/components/menu-nav/menu-nav-types.d.ts +49 -0
- package/src/components/notification-center/NotificationCenter.d.ts +3 -0
- package/src/components/notification-center/NotificationItemRow.d.ts +10 -0
- package/src/components/notification-center/index.d.ts +2 -0
- package/src/components/notification-center/notification-center-types.d.ts +32 -0
- package/src/components/page-banner/PageBanner.d.ts +23 -0
- package/src/components/page-banner/index.d.ts +2 -0
- package/src/components/pivot-table/PivotCellEditor.d.ts +14 -0
- package/src/components/pivot-table/PivotConfigPanel.d.ts +23 -0
- package/src/components/pivot-table/PivotFilterEditor.d.ts +12 -0
- package/src/components/pivot-table/PivotTable.d.ts +4 -0
- package/src/components/pivot-table/index.d.ts +2 -0
- package/src/components/pivot-table/pivot-engine.d.ts +23 -0
- package/src/components/pivot-table/pivot-table-types.d.ts +166 -0
- package/src/components/shimmer/ShimmerBarChart.d.ts +12 -0
- package/src/components/shimmer/ShimmerDiv.d.ts +5 -0
- package/src/components/shimmer/ShimmerFeed.d.ts +14 -0
- package/src/components/shimmer/ShimmerLegends.d.ts +8 -0
- package/src/components/shimmer/ShimmerPieChart.d.ts +10 -0
- package/src/components/shimmer/ShimmerTable.d.ts +12 -0
- package/src/components/shimmer/SkeletonAvatar.d.ts +8 -0
- package/src/components/shimmer/SkeletonButton.d.ts +9 -0
- package/src/components/shimmer/SkeletonCard.d.ts +15 -0
- package/src/components/shimmer/SkeletonImage.d.ts +10 -0
- package/src/components/shimmer/SkeletonText.d.ts +11 -0
- package/src/components/shimmer/index.d.ts +10 -0
- package/src/components/slider/Slider.d.ts +45 -0
- package/src/components/slider/index.d.ts +2 -0
- package/src/components/snackbar/Snackbar.d.ts +3 -0
- package/src/components/snackbar/SnackbarManager.d.ts +6 -0
- package/src/components/snackbar/constants.d.ts +4 -0
- package/src/components/snackbar/index.d.ts +1 -0
- package/src/components/snackbar/types.d.ts +30 -0
- package/src/components/splitter/Splitter.d.ts +20 -0
- package/src/components/splitter/index.d.ts +4 -0
- package/src/components/tab-view/TabHeader.d.ts +19 -0
- package/src/components/tab-view/TabNav.d.ts +15 -0
- package/src/components/tab-view/TabPage.d.ts +13 -0
- package/src/components/tab-view/TabView.d.ts +28 -0
- package/src/components/tab-view/index.d.ts +4 -0
- package/src/components/tab-view/tabview-utils.d.ts +5 -0
- package/src/components/table/Table.d.ts +35 -0
- package/src/components/table/TableBody.d.ts +13 -0
- package/src/components/table/TableFooter.d.ts +12 -0
- package/src/components/table/TableHeader.d.ts +9 -0
- package/src/components/table/table-types.d.ts +16 -0
- package/src/components/table/useSortedData.d.ts +2 -0
- package/src/components/timeline/Timeline.d.ts +27 -0
- package/src/components/timeline/TimelineItem.d.ts +11 -0
- package/src/components/timeline/index.d.ts +2 -0
- package/src/components/tooltip/Tooltip.d.ts +17 -0
- package/src/components/tooltip/TooltipManager.d.ts +3 -0
- package/src/components/tooltip/utils.d.ts +6 -0
- package/src/components/tour/StepTour.d.ts +18 -0
- package/src/components/tour/TourTooltip.d.ts +18 -0
- package/src/components/tour/types.d.ts +12 -0
- package/src/components/tour/useWindowResize.d.ts +4 -0
- package/src/components/tour/utils.d.ts +10 -0
- package/src/components/tree-view/TreeNodeComponent.d.ts +4 -0
- package/src/components/tree-view/TreeView.d.ts +4 -0
- package/src/components/tree-view/index.d.ts +2 -0
- package/src/components/tree-view/tree-view-types.d.ts +55 -0
- package/src/hooks/index.d.ts +5 -0
- package/src/hooks/useClickOutside.d.ts +1 -0
- package/src/hooks/useDebounce.d.ts +1 -0
- package/src/hooks/useKeyboard.d.ts +1 -0
- package/src/hooks/useMobile.d.ts +1 -0
- package/src/hooks/usePosition.d.ts +8 -0
- package/src/plugins/vite/index.d.ts +8 -0
- package/src/services/container.d.ts +29 -0
- package/src/services/index.d.ts +3 -0
- package/src/services/react.d.ts +23 -0
- package/src/services/types.d.ts +36 -0
- package/src/store/core/model.d.ts +2 -0
- package/src/store/core/state.d.ts +2 -0
- package/src/store/factory/react-hooks.d.ts +19 -0
- package/src/store/index.d.ts +4 -0
- package/src/store/middlewares/broadcast.d.ts +6 -0
- package/src/store/middlewares/debounce.d.ts +2 -0
- package/src/store/middlewares/devtools.d.ts +4 -0
- package/src/store/middlewares/immer.d.ts +2 -0
- package/src/store/middlewares/index.d.ts +11 -0
- package/src/store/middlewares/logging.d.ts +2 -0
- package/src/store/middlewares/persist.d.ts +2 -0
- package/src/store/middlewares/throttle.d.ts +2 -0
- package/src/store/middlewares/undo-redo.d.ts +13 -0
- package/src/store/middlewares/validation.d.ts +2 -0
- package/src/store/types.d.ts +99 -0
- package/src/story/CodeBlock.d.ts +9 -0
- package/src/story/ComponentDemo.d.ts +10 -0
- package/src/story/FeatureCard.d.ts +16 -0
- package/src/story/IconShowcase.d.ts +6 -0
- package/src/story/Layout.d.ts +6 -0
- package/src/story/Navigation.d.ts +6 -0
- package/src/story/PageLayout.d.ts +8 -0
- package/src/story/PropsTable.d.ts +13 -0
- package/src/story/SectionNav.d.ts +11 -0
- package/src/story/StoryThemeContext.d.ts +16 -0
- package/src/story/pages/HomePage.d.ts +3 -0
- package/src/story/pages/IconsPage.d.ts +2 -0
- package/src/story/pages/InstallationPage.d.ts +3 -0
- package/src/story/pages/animate-on-view/AllAnimations.d.ts +3 -0
- package/src/story/pages/animate-on-view/AnimateOnViewPage.d.ts +3 -0
- package/src/story/pages/animate-on-view/BasicUsage.d.ts +3 -0
- package/src/story/pages/animate-on-view/ConfigOptions.d.ts +3 -0
- package/src/story/pages/animate-on-view/ScrollDemo.d.ts +3 -0
- package/src/story/pages/animate-on-view/StaggeredAnimations.d.ts +3 -0
- package/src/story/pages/autocomplete/AutocompletePage.d.ts +3 -0
- package/src/story/pages/autocomplete/BasicUsage.d.ts +3 -0
- package/src/story/pages/autocomplete/CustomConfiguration.d.ts +3 -0
- package/src/story/pages/autocomplete/DisabledState.d.ts +3 -0
- package/src/story/pages/autocomplete/UsageExamples.d.ts +3 -0
- package/src/story/pages/autocomplete/autocomplete-story-data.d.ts +6 -0
- package/src/story/pages/autocomplete-multi/AutocompleteMultiPage.d.ts +3 -0
- package/src/story/pages/autocomplete-multi/BasicUsage.d.ts +3 -0
- package/src/story/pages/autocomplete-multi/DisabledState.d.ts +3 -0
- package/src/story/pages/autocomplete-multi/LimitedSelections.d.ts +3 -0
- package/src/story/pages/autocomplete-multi/PresetValues.d.ts +3 -0
- package/src/story/pages/autocomplete-multi/UsageExamples.d.ts +3 -0
- package/src/story/pages/autocomplete-multi/autocomplete-multi-story-data.d.ts +6 -0
- package/src/story/pages/breadcrumb/BasicUsage.d.ts +3 -0
- package/src/story/pages/breadcrumb/BreadcrumbPage.d.ts +3 -0
- package/src/story/pages/breadcrumb/CollapsedItems.d.ts +3 -0
- package/src/story/pages/breadcrumb/CustomSeparator.d.ts +3 -0
- package/src/story/pages/button/AsLink.d.ts +3 -0
- package/src/story/pages/button/AsyncAction.d.ts +3 -0
- package/src/story/pages/button/BasicUsage.d.ts +3 -0
- package/src/story/pages/button/ButtonPage.d.ts +3 -0
- package/src/story/pages/button/Combinations.d.ts +3 -0
- package/src/story/pages/button/CountdownTimer.d.ts +3 -0
- package/src/story/pages/button/FullWidth.d.ts +3 -0
- package/src/story/pages/button/Layouts.d.ts +3 -0
- package/src/story/pages/button/Sizes.d.ts +3 -0
- package/src/story/pages/button/States.d.ts +3 -0
- package/src/story/pages/button/Variants.d.ts +3 -0
- package/src/story/pages/button/WithIcons.d.ts +3 -0
- package/src/story/pages/calendar/BasicUsage.d.ts +3 -0
- package/src/story/pages/calendar/CalendarPage.d.ts +3 -0
- package/src/story/pages/calendar/CompactMode.d.ts +3 -0
- package/src/story/pages/calendar/CustomRendering.d.ts +3 -0
- package/src/story/pages/calendar/CustomToolbarEnd.d.ts +3 -0
- package/src/story/pages/calendar/DateBackgrounds.d.ts +3 -0
- package/src/story/pages/calendar/DragDropResize.d.ts +3 -0
- package/src/story/pages/calendar/ExternalDragDrop.d.ts +3 -0
- package/src/story/pages/calendar/ImperativeApi.d.ts +3 -0
- package/src/story/pages/calendar/NavigationPickerDemo.d.ts +3 -0
- package/src/story/pages/calendar/PluginSystem.d.ts +3 -0
- package/src/story/pages/calendar/PluginViews.d.ts +3 -0
- package/src/story/pages/calendar/TimeGridConfig.d.ts +3 -0
- package/src/story/pages/calendar/ViewModes.d.ts +3 -0
- package/src/story/pages/calendar/calendar-story-data.d.ts +18 -0
- package/src/story/pages/calendar-playground/CalendarPlaygroundPage.d.ts +3 -0
- package/src/story/pages/calendar-playground/PlaygroundSettings.d.ts +65 -0
- package/src/story/pages/canvas-draw/CanvasDrawPage.d.ts +3 -0
- package/src/story/pages/canvas-draw/ControlledMode.d.ts +3 -0
- package/src/story/pages/canvas-draw/DrawingCanvas.d.ts +3 -0
- package/src/story/pages/canvas-draw/ExportDemo.d.ts +3 -0
- package/src/story/pages/canvas-draw/FeatureFlags.d.ts +3 -0
- package/src/story/pages/canvas-draw/ImageAnnotation.d.ts +3 -0
- package/src/story/pages/canvas-draw/MediaTimelineDemo.d.ts +3 -0
- package/src/story/pages/canvas-draw/ReadOnlyMode.d.ts +3 -0
- package/src/story/pages/canvas-draw/TimedAnnotations.d.ts +3 -0
- package/src/story/pages/canvas-draw/ToolSubset.d.ts +3 -0
- package/src/story/pages/canvas-draw/ToolbarPlacement.d.ts +3 -0
- package/src/story/pages/canvas-draw/canvas-draw-story-data.d.ts +7 -0
- package/src/story/pages/carousel/Autoplay.d.ts +3 -0
- package/src/story/pages/carousel/BasicUsage.d.ts +3 -0
- package/src/story/pages/carousel/CarouselPage.d.ts +3 -0
- package/src/story/pages/carousel/ThumbnailNav.d.ts +3 -0
- package/src/story/pages/checkbox/BasicUsage.d.ts +3 -0
- package/src/story/pages/checkbox/CheckboxGroup.d.ts +3 -0
- package/src/story/pages/checkbox/CheckboxPage.d.ts +3 -0
- package/src/story/pages/checkbox/IndeterminateState.d.ts +3 -0
- package/src/story/pages/checkbox/States.d.ts +3 -0
- package/src/story/pages/chips/BasicUsage.d.ts +3 -0
- package/src/story/pages/chips/ChipsPage.d.ts +3 -0
- package/src/story/pages/chips/LimitedChips.d.ts +3 -0
- package/src/story/pages/chips/States.d.ts +3 -0
- package/src/story/pages/chips/chips-story-data.d.ts +2 -0
- package/src/story/pages/collapsible-panel/AccordionGroup.d.ts +3 -0
- package/src/story/pages/collapsible-panel/BasicUsage.d.ts +3 -0
- package/src/story/pages/collapsible-panel/CollapsiblePanelPage.d.ts +3 -0
- package/src/story/pages/collapsible-panel/Controlled.d.ts +3 -0
- package/src/story/pages/collapsible-panel/CustomHeaderTemplate.d.ts +3 -0
- package/src/story/pages/collapsible-panel/DisabledState.d.ts +3 -0
- package/src/story/pages/collapsible-panel/HeaderActions.d.ts +3 -0
- package/src/story/pages/collapsible-panel/HorizontalTabs.d.ts +3 -0
- package/src/story/pages/collapsible-panel/HorizontalTabsVariants.d.ts +3 -0
- package/src/story/pages/collapsible-panel/IconPositions.d.ts +3 -0
- package/src/story/pages/collapsible-panel/MultiOpenGroup.d.ts +3 -0
- package/src/story/pages/collapsible-panel/Sizes.d.ts +3 -0
- package/src/story/pages/collapsible-panel/Variants.d.ts +3 -0
- package/src/story/pages/collapsible-panel/WithIcons.d.ts +3 -0
- package/src/story/pages/confirm-popover/ConfirmCustomDemo.d.ts +3 -0
- package/src/story/pages/confirm-popover/ConfirmPopoverPage.d.ts +3 -0
- package/src/story/pages/confirm-popover/CustomActionsDemo.d.ts +3 -0
- package/src/story/pages/confirm-popover/InfoOkDemo.d.ts +3 -0
- package/src/story/pages/confirm-popover/RichJsxDemo.d.ts +3 -0
- package/src/story/pages/confirm-popover/SetupSection.d.ts +3 -0
- package/src/story/pages/confirm-popover/YesNoDemo.d.ts +3 -0
- package/src/story/pages/context-menu/ButtonTriggered.d.ts +3 -0
- package/src/story/pages/context-menu/ContextMenuPage.d.ts +3 -0
- package/src/story/pages/context-menu/NestedSubmenus.d.ts +3 -0
- package/src/story/pages/context-menu/RightClickMenu.d.ts +3 -0
- package/src/story/pages/context-menu/ScrollableMenu.d.ts +3 -0
- package/src/story/pages/context-menu/SetupSection.d.ts +3 -0
- package/src/story/pages/context-menu/TableRowMenu.d.ts +3 -0
- package/src/story/pages/context-menu/context-menu-story-data.d.ts +52 -0
- package/src/story/pages/date-range-picker/BasicUsage.d.ts +3 -0
- package/src/story/pages/date-range-picker/Constraints.d.ts +3 -0
- package/src/story/pages/date-range-picker/CustomFormat.d.ts +3 -0
- package/src/story/pages/date-range-picker/DateRangePickerPage.d.ts +3 -0
- package/src/story/pages/date-range-picker/DisabledState.d.ts +3 -0
- package/src/story/pages/date-range-picker/FirstDayOfWeek.d.ts +3 -0
- package/src/story/pages/date-range-picker/PositionDemo.d.ts +3 -0
- package/src/story/pages/date-range-picker/PresetDates.d.ts +3 -0
- package/src/story/pages/date-range-picker/QuickSelect.d.ts +3 -0
- package/src/story/pages/date-range-picker/SelectionModes.d.ts +3 -0
- package/src/story/pages/date-range-picker/SingleDatePicker.d.ts +3 -0
- package/src/story/pages/date-range-picker/TodayButton.d.ts +3 -0
- package/src/story/pages/date-range-picker/date-range-picker-story-data.d.ts +8 -0
- package/src/story/pages/deferred-view/BasicUsageDemo.d.ts +3 -0
- package/src/story/pages/deferred-view/DeferredViewPage.d.ts +3 -0
- package/src/story/pages/deferred-view/KeepMountedDemo.d.ts +3 -0
- package/src/story/pages/deferred-view/LazyImageDemo.d.ts +3 -0
- package/src/story/pages/deferred-view/PlaceholderDemo.d.ts +3 -0
- package/src/story/pages/deferred-view/RootMarginDemo.d.ts +3 -0
- package/src/story/pages/demo-showcase/DemoShowcasePage.d.ts +3 -0
- package/src/story/pages/demo-showcase/FormSection.d.ts +8 -0
- package/src/story/pages/demo-showcase/TableSection.d.ts +6 -0
- package/src/story/pages/demo-showcase/TabsAndProgressSection.d.ts +6 -0
- package/src/story/pages/drag-drop/BasicDragDrop.d.ts +3 -0
- package/src/story/pages/drag-drop/DragDropPage.d.ts +3 -0
- package/src/story/pages/drag-drop/MultiContainer.d.ts +3 -0
- package/src/story/pages/drag-drop/RenderProps.d.ts +3 -0
- package/src/story/pages/drag-drop/SetupSection.d.ts +3 -0
- package/src/story/pages/drag-drop/TypeBasedDragDrop.d.ts +3 -0
- package/src/story/pages/drag-drop/drag-drop-story-data.d.ts +6 -0
- package/src/story/pages/drawer/BasicUsage.d.ts +3 -0
- package/src/story/pages/drawer/CustomContent.d.ts +3 -0
- package/src/story/pages/drawer/DrawerPage.d.ts +3 -0
- package/src/story/pages/drawer/Positions.d.ts +3 -0
- package/src/story/pages/dropdown/BasicUsage.d.ts +3 -0
- package/src/story/pages/dropdown/ClearableDropdown.d.ts +3 -0
- package/src/story/pages/dropdown/CustomFieldMapping.d.ts +3 -0
- package/src/story/pages/dropdown/DropdownPage.d.ts +3 -0
- package/src/story/pages/dropdown/DropdownStates.d.ts +3 -0
- package/src/story/pages/dropdown/GroupedOptions.d.ts +3 -0
- package/src/story/pages/dropdown/SearchableDropdown.d.ts +3 -0
- package/src/story/pages/dropdown/dropdown-story-data.d.ts +33 -0
- package/src/story/pages/fab-speed-dial/FabBasic.d.ts +3 -0
- package/src/story/pages/fab-speed-dial/FabExtended.d.ts +3 -0
- package/src/story/pages/fab-speed-dial/FabSizes.d.ts +3 -0
- package/src/story/pages/fab-speed-dial/FabSpeedDialPage.d.ts +3 -0
- package/src/story/pages/fab-speed-dial/SpeedDialBasic.d.ts +3 -0
- package/src/story/pages/fab-speed-dial/SpeedDialClick.d.ts +3 -0
- package/src/story/pages/fab-speed-dial/SpeedDialDirections.d.ts +3 -0
- package/src/story/pages/fab-speed-dial/SpeedDialSizes.d.ts +3 -0
- package/src/story/pages/fab-speed-dial/SpeedDialVariants.d.ts +3 -0
- package/src/story/pages/fab-speed-dial/fab-story-icons.d.ts +11 -0
- package/src/story/pages/field-label/BasicLabel.d.ts +3 -0
- package/src/story/pages/field-label/CombinedStates.d.ts +3 -0
- package/src/story/pages/field-label/DisabledState.d.ts +3 -0
- package/src/story/pages/field-label/ErrorState.d.ts +3 -0
- package/src/story/pages/field-label/FieldLabelPage.d.ts +3 -0
- package/src/story/pages/field-label/OptionalField.d.ts +3 -0
- package/src/story/pages/field-label/RequiredField.d.ts +3 -0
- package/src/story/pages/file-upload/BasicUsage.d.ts +3 -0
- package/src/story/pages/file-upload/FileUploadPage.d.ts +3 -0
- package/src/story/pages/file-upload/ImagePreview.d.ts +3 -0
- package/src/story/pages/file-upload/Validation.d.ts +3 -0
- package/src/story/pages/gantt-chart/BasicUsage.d.ts +3 -0
- package/src/story/pages/gantt-chart/CustomColumns.d.ts +3 -0
- package/src/story/pages/gantt-chart/DateMarkers.d.ts +3 -0
- package/src/story/pages/gantt-chart/Dependencies.d.ts +3 -0
- package/src/story/pages/gantt-chart/DragAndDrop.d.ts +3 -0
- package/src/story/pages/gantt-chart/GanttChartPage.d.ts +3 -0
- package/src/story/pages/gantt-chart/HierarchicalTasks.d.ts +3 -0
- package/src/story/pages/gantt-chart/QuarterlyView.d.ts +3 -0
- package/src/story/pages/gantt-chart/ReadOnly.d.ts +3 -0
- package/src/story/pages/gantt-chart/SprintPlanning.d.ts +3 -0
- package/src/story/pages/gantt-chart/TaskCreation.d.ts +3 -0
- package/src/story/pages/gantt-chart/TimelineOnly.d.ts +3 -0
- package/src/story/pages/gantt-chart/ViewModes.d.ts +3 -0
- package/src/story/pages/gantt-chart/gantt-chart-story-data.d.ts +10 -0
- package/src/story/pages/hooks-utils/HooksUtilsPage.d.ts +3 -0
- package/src/story/pages/hooks-utils/UseClickOutsideDemo.d.ts +3 -0
- package/src/story/pages/hooks-utils/UseDebounceDemo.d.ts +3 -0
- package/src/story/pages/hooks-utils/UseKeyboardDemo.d.ts +3 -0
- package/src/story/pages/hooks-utils/UseMobileDemo.d.ts +3 -0
- package/src/story/pages/hooks-utils/UtilFunctionsDemo.d.ts +3 -0
- package/src/story/pages/hooks-utils/WithFieldLabelDemo.d.ts +3 -0
- package/src/story/pages/image-editor/BasicUsage.d.ts +3 -0
- package/src/story/pages/image-editor/CropOnly.d.ts +3 -0
- package/src/story/pages/image-editor/CustomTools.d.ts +3 -0
- package/src/story/pages/image-editor/ExportOptions.d.ts +3 -0
- package/src/story/pages/image-editor/ImageEditorPage.d.ts +3 -0
- package/src/story/pages/infinite-scroll/BasicUsage.d.ts +3 -0
- package/src/story/pages/infinite-scroll/ErrorHandling.d.ts +3 -0
- package/src/story/pages/infinite-scroll/InfiniteScrollPage.d.ts +3 -0
- package/src/story/pages/input-group/EmailInput.d.ts +3 -0
- package/src/story/pages/input-group/FileUpload.d.ts +3 -0
- package/src/story/pages/input-group/InputGroupPage.d.ts +3 -0
- package/src/story/pages/input-group/PhoneNumber.d.ts +3 -0
- package/src/story/pages/input-group/PriceInput.d.ts +3 -0
- package/src/story/pages/input-group/SearchInput.d.ts +3 -0
- package/src/story/pages/input-group/UrlInput.d.ts +3 -0
- package/src/story/pages/input-switch/BasicUsage.d.ts +3 -0
- package/src/story/pages/input-switch/CustomLabels.d.ts +3 -0
- package/src/story/pages/input-switch/DisabledStates.d.ts +3 -0
- package/src/story/pages/input-switch/FormIntegration.d.ts +3 -0
- package/src/story/pages/input-switch/InputSwitchPage.d.ts +3 -0
- package/src/story/pages/input-switch/SettingsPanel.d.ts +3 -0
- package/src/story/pages/json-editor/ArrayEditing.d.ts +3 -0
- package/src/story/pages/json-editor/BasicUsage.d.ts +3 -0
- package/src/story/pages/json-editor/ComplexData.d.ts +3 -0
- package/src/story/pages/json-editor/JsonEditorPage.d.ts +3 -0
- package/src/story/pages/json-editor/NestedObjects.d.ts +3 -0
- package/src/story/pages/json-editor/PermissionControls.d.ts +3 -0
- package/src/story/pages/json-editor/ReadOnlyMode.d.ts +3 -0
- package/src/story/pages/json-editor/SizeVariants.d.ts +3 -0
- package/src/story/pages/json-editor/SortedKeys.d.ts +3 -0
- package/src/story/pages/json-editor/TypeShowcase.d.ts +3 -0
- package/src/story/pages/json-editor/json-editor-story-data.d.ts +8 -0
- package/src/story/pages/kanban-board/BasicUsage.d.ts +3 -0
- package/src/story/pages/kanban-board/BlockedCards.d.ts +3 -0
- package/src/story/pages/kanban-board/CardActions.d.ts +3 -0
- package/src/story/pages/kanban-board/CollapsibleColumns.d.ts +3 -0
- package/src/story/pages/kanban-board/ColumnLimits.d.ts +3 -0
- package/src/story/pages/kanban-board/CompactMode.d.ts +3 -0
- package/src/story/pages/kanban-board/CustomColumnHeader.d.ts +3 -0
- package/src/story/pages/kanban-board/CustomTemplates.d.ts +3 -0
- package/src/story/pages/kanban-board/DetailedCards.d.ts +3 -0
- package/src/story/pages/kanban-board/InteractiveBoard.d.ts +3 -0
- package/src/story/pages/kanban-board/KanbanBoardPage.d.ts +3 -0
- package/src/story/pages/kanban-board/LockedColumns.d.ts +3 -0
- package/src/story/pages/kanban-board/StickyHeaders.d.ts +3 -0
- package/src/story/pages/kanban-board/VerticalLayout.d.ts +3 -0
- package/src/story/pages/kanban-board/kanban-story-data.d.ts +19 -0
- package/src/story/pages/lightbox/BasicUsage.d.ts +3 -0
- package/src/story/pages/lightbox/LightboxPage.d.ts +3 -0
- package/src/story/pages/list-box/DisabledState.d.ts +3 -0
- package/src/story/pages/list-box/GroupedList.d.ts +3 -0
- package/src/story/pages/list-box/ListBoxPage.d.ts +3 -0
- package/src/story/pages/list-box/MultipleSelection.d.ts +3 -0
- package/src/story/pages/list-box/SearchableList.d.ts +3 -0
- package/src/story/pages/list-box/SingleSelection.d.ts +3 -0
- package/src/story/pages/list-box/list-box-story-data.d.ts +4 -0
- package/src/story/pages/masked-input/CustomSlotChar.d.ts +3 -0
- package/src/story/pages/masked-input/IncludeLiterals.d.ts +3 -0
- package/src/story/pages/masked-input/InputStates.d.ts +3 -0
- package/src/story/pages/masked-input/KeyboardNavigation.d.ts +3 -0
- package/src/story/pages/masked-input/MaskExamples.d.ts +8 -0
- package/src/story/pages/masked-input/MaskSyntax.d.ts +3 -0
- package/src/story/pages/masked-input/MaskedInputPage.d.ts +3 -0
- package/src/story/pages/masked-input/PrefilledValue.d.ts +3 -0
- package/src/story/pages/menu-nav/BasicUsage.d.ts +3 -0
- package/src/story/pages/menu-nav/Collapsible.d.ts +3 -0
- package/src/story/pages/menu-nav/CustomSlots.d.ts +3 -0
- package/src/story/pages/menu-nav/GroupedMenus.d.ts +3 -0
- package/src/story/pages/menu-nav/Horizontal.d.ts +3 -0
- package/src/story/pages/menu-nav/MenuNavPage.d.ts +3 -0
- package/src/story/pages/menu-nav/NestedMenus.d.ts +3 -0
- package/src/story/pages/menu-nav/SelectionStyles.d.ts +3 -0
- package/src/story/pages/menu-nav/Sizes.d.ts +3 -0
- package/src/story/pages/menu-nav/ToolbarMode.d.ts +3 -0
- package/src/story/pages/menu-nav/menu-nav-story-data.d.ts +7 -0
- package/src/story/pages/modal/BasicUsage.d.ts +3 -0
- package/src/story/pages/modal/CustomLayout.d.ts +3 -0
- package/src/story/pages/modal/FormExample.d.ts +3 -0
- package/src/story/pages/modal/ModalPage.d.ts +3 -0
- package/src/story/pages/modal/NestedModals.d.ts +3 -0
- package/src/story/pages/modal/NonClosable.d.ts +3 -0
- package/src/story/pages/modal/ScrollableContent.d.ts +3 -0
- package/src/story/pages/modal/Sizes.d.ts +3 -0
- package/src/story/pages/modal/WithoutTitle.d.ts +3 -0
- package/src/story/pages/multi-state-checkbox/BasicUsage.d.ts +3 -0
- package/src/story/pages/multi-state-checkbox/ControlledState.d.ts +3 -0
- package/src/story/pages/multi-state-checkbox/CustomStates.d.ts +3 -0
- package/src/story/pages/multi-state-checkbox/MultiStateCheckboxPage.d.ts +3 -0
- package/src/story/pages/multi-state-checkbox/multi-state-checkbox-story-data.d.ts +4 -0
- package/src/story/pages/multiselect/BasicUsage.d.ts +3 -0
- package/src/story/pages/multiselect/CustomFieldMapping.d.ts +3 -0
- package/src/story/pages/multiselect/GroupedOptions.d.ts +3 -0
- package/src/story/pages/multiselect/MultiselectPage.d.ts +3 -0
- package/src/story/pages/multiselect/MultiselectStates.d.ts +3 -0
- package/src/story/pages/multiselect/SelectAll.d.ts +3 -0
- package/src/story/pages/multiselect/SelectionLimit.d.ts +3 -0
- package/src/story/pages/multiselect/WithoutSearch.d.ts +3 -0
- package/src/story/pages/multiselect/multiselect-story-data.d.ts +28 -0
- package/src/story/pages/notification-center/BasicUsage.d.ts +3 -0
- package/src/story/pages/notification-center/Categories.d.ts +3 -0
- package/src/story/pages/notification-center/CustomTrigger.d.ts +3 -0
- package/src/story/pages/notification-center/NotificationCenterPage.d.ts +3 -0
- package/src/story/pages/numeric-input/BasicUsage.d.ts +3 -0
- package/src/story/pages/numeric-input/DecimalPrecision.d.ts +3 -0
- package/src/story/pages/numeric-input/MinMaxRange.d.ts +3 -0
- package/src/story/pages/numeric-input/NumericInputPage.d.ts +3 -0
- package/src/story/pages/numeric-input/NumericInputStates.d.ts +3 -0
- package/src/story/pages/page-banner/BasicUsage.d.ts +3 -0
- package/src/story/pages/page-banner/CustomContent.d.ts +3 -0
- package/src/story/pages/page-banner/Dismissible.d.ts +3 -0
- package/src/story/pages/page-banner/PageBannerPage.d.ts +3 -0
- package/src/story/pages/page-banner/PageLevel.d.ts +3 -0
- package/src/story/pages/page-banner/WithActions.d.ts +3 -0
- package/src/story/pages/password/BasicUsage.d.ts +3 -0
- package/src/story/pages/password/PasswordPage.d.ts +3 -0
- package/src/story/pages/password/PasswordStates.d.ts +3 -0
- package/src/story/pages/pivot-table/BasicUsage.d.ts +3 -0
- package/src/story/pages/pivot-table/ColumnPivot.d.ts +3 -0
- package/src/story/pages/pivot-table/Filtering.d.ts +3 -0
- package/src/story/pages/pivot-table/InteractiveDemo.d.ts +3 -0
- package/src/story/pages/pivot-table/MultiLevelPivot.d.ts +3 -0
- package/src/story/pages/pivot-table/MultipleFunctions.d.ts +3 -0
- package/src/story/pages/pivot-table/PivotTablePage.d.ts +3 -0
- package/src/story/pages/pivot-table/pivot-table-story-data.d.ts +17 -0
- package/src/story/pages/pivot-table-playground/PivotTablePlaygroundPage.d.ts +3 -0
- package/src/story/pages/popover/BasicUsage.d.ts +3 -0
- package/src/story/pages/popover/ControlledPopover.d.ts +3 -0
- package/src/story/pages/popover/CustomContent.d.ts +3 -0
- package/src/story/pages/popover/FilterablePopover.d.ts +3 -0
- package/src/story/pages/popover/GroupedItems.d.ts +3 -0
- package/src/story/pages/popover/PopoverPage.d.ts +3 -0
- package/src/story/pages/popover/popover-story-data.d.ts +5 -0
- package/src/story/pages/progress-bar/BasicUsage.d.ts +3 -0
- package/src/story/pages/progress-bar/BufferProgress.d.ts +3 -0
- package/src/story/pages/progress-bar/DynamicProgress.d.ts +3 -0
- package/src/story/pages/progress-bar/Indeterminate.d.ts +3 -0
- package/src/story/pages/progress-bar/LabelsAndValues.d.ts +3 -0
- package/src/story/pages/progress-bar/Layouts.d.ts +3 -0
- package/src/story/pages/progress-bar/MultiSegment.d.ts +3 -0
- package/src/story/pages/progress-bar/ProgressBarPage.d.ts +3 -0
- package/src/story/pages/progress-bar/Sizes.d.ts +3 -0
- package/src/story/pages/progress-bar/Variants.d.ts +3 -0
- package/src/story/pages/radio-button/BasicUsage.d.ts +3 -0
- package/src/story/pages/radio-button/ControlledUncontrolled.d.ts +3 -0
- package/src/story/pages/radio-button/HorizontalLayout.d.ts +3 -0
- package/src/story/pages/radio-button/RadioButtonPage.d.ts +3 -0
- package/src/story/pages/radio-button/States.d.ts +3 -0
- package/src/story/pages/radio-button/radio-button-story-data.d.ts +13 -0
- package/src/story/pages/select-button/BasicUsage.d.ts +3 -0
- package/src/story/pages/select-button/DisabledItems.d.ts +3 -0
- package/src/story/pages/select-button/DisabledState.d.ts +3 -0
- package/src/story/pages/select-button/MultipleSelection.d.ts +3 -0
- package/src/story/pages/select-button/RealWorldExamples.d.ts +3 -0
- package/src/story/pages/select-button/SelectButtonPage.d.ts +3 -0
- package/src/story/pages/select-button/SizeVariants.d.ts +3 -0
- package/src/story/pages/select-button/ThemeVariants.d.ts +3 -0
- package/src/story/pages/select-button/UsageNotes.d.ts +3 -0
- package/src/story/pages/select-button/VerticalDirection.d.ts +3 -0
- package/src/story/pages/select-button/WithIcons.d.ts +3 -0
- package/src/story/pages/select-button/select-button-story-data.d.ts +30 -0
- package/src/story/pages/services/BasicUsage.d.ts +3 -0
- package/src/story/pages/services/Lifetimes.d.ts +3 -0
- package/src/story/pages/services/Parameterized.d.ts +3 -0
- package/src/story/pages/services/ReactIntegration.d.ts +3 -0
- package/src/story/pages/services/ServicesPage.d.ts +3 -0
- package/src/story/pages/services/SwappingImplementations.d.ts +3 -0
- package/src/story/pages/services/services-story-data.d.ts +92 -0
- package/src/story/pages/shimmer/ProfileCard.d.ts +3 -0
- package/src/story/pages/shimmer/ShimmerBarChartDemo.d.ts +3 -0
- package/src/story/pages/shimmer/ShimmerDivDemo.d.ts +3 -0
- package/src/story/pages/shimmer/ShimmerFeedDemo.d.ts +3 -0
- package/src/story/pages/shimmer/ShimmerPage.d.ts +3 -0
- package/src/story/pages/shimmer/ShimmerPieChartDemo.d.ts +3 -0
- package/src/story/pages/shimmer/ShimmerTableDemo.d.ts +3 -0
- package/src/story/pages/slider/BasicUsage.d.ts +3 -0
- package/src/story/pages/slider/Formatting.d.ts +3 -0
- package/src/story/pages/slider/GridSnap.d.ts +3 -0
- package/src/story/pages/slider/RangeSlider.d.ts +3 -0
- package/src/story/pages/slider/Sizes.d.ts +3 -0
- package/src/story/pages/slider/SliderPage.d.ts +3 -0
- package/src/story/pages/slider/StringValues.d.ts +3 -0
- package/src/story/pages/slider/Variants.d.ts +3 -0
- package/src/story/pages/slider/VerticalSlider.d.ts +3 -0
- package/src/story/pages/slider/WithMarks.d.ts +3 -0
- package/src/story/pages/snackbar/AnimationsDemo.d.ts +3 -0
- package/src/story/pages/snackbar/ClickCallback.d.ts +3 -0
- package/src/story/pages/snackbar/LightBackground.d.ts +3 -0
- package/src/story/pages/snackbar/PersistentTimeout.d.ts +3 -0
- package/src/story/pages/snackbar/PositionsDemo.d.ts +3 -0
- package/src/story/pages/snackbar/SetupSection.d.ts +3 -0
- package/src/story/pages/snackbar/SnackbarPage.d.ts +3 -0
- package/src/story/pages/snackbar/TypesDemo.d.ts +3 -0
- package/src/story/pages/sortable/BasicSortable.d.ts +3 -0
- package/src/story/pages/sortable/ComplexItems.d.ts +3 -0
- package/src/story/pages/sortable/DragHandles.d.ts +3 -0
- package/src/story/pages/sortable/MultipleLists.d.ts +3 -0
- package/src/story/pages/sortable/SetupSection.d.ts +3 -0
- package/src/story/pages/sortable/SortablePage.d.ts +3 -0
- package/src/story/pages/sortable/TypeBasedSortable.d.ts +3 -0
- package/src/story/pages/sortable/sortable-story-data.d.ts +15 -0
- package/src/story/pages/splitter/DefaultSizePct.d.ts +3 -0
- package/src/story/pages/splitter/DefaultSizePx.d.ts +3 -0
- package/src/story/pages/splitter/FixedPanel.d.ts +3 -0
- package/src/story/pages/splitter/GutterSize.d.ts +3 -0
- package/src/story/pages/splitter/HorizontalSplit.d.ts +3 -0
- package/src/story/pages/splitter/KeyboardNavigation.d.ts +3 -0
- package/src/story/pages/splitter/MinSize.d.ts +3 -0
- package/src/story/pages/splitter/NestedSplitters.d.ts +3 -0
- package/src/story/pages/splitter/OnResizeEnd.d.ts +3 -0
- package/src/story/pages/splitter/PersistingLayout.d.ts +3 -0
- package/src/story/pages/splitter/SplitterPage.d.ts +3 -0
- package/src/story/pages/splitter/VerticalSplit.d.ts +3 -0
- package/src/story/pages/stepper/BasicUsage.d.ts +3 -0
- package/src/story/pages/stepper/ColorVariants.d.ts +3 -0
- package/src/story/pages/stepper/InteractiveSteps.d.ts +3 -0
- package/src/story/pages/stepper/LabelPlacement.d.ts +3 -0
- package/src/story/pages/stepper/LayoutShapes.d.ts +3 -0
- package/src/story/pages/stepper/SizeOptions.d.ts +3 -0
- package/src/story/pages/stepper/StepStatus.d.ts +3 -0
- package/src/story/pages/stepper/StepperPage.d.ts +3 -0
- package/src/story/pages/stepper/TextOnly.d.ts +3 -0
- package/src/story/pages/stepper/VerticalOrientation.d.ts +3 -0
- package/src/story/pages/stepper/WithIcons.d.ts +3 -0
- package/src/story/pages/stepper/stepper-story-data.d.ts +7 -0
- package/src/story/pages/store-basic/BasicUsage.d.ts +3 -0
- package/src/story/pages/store-basic/BatchedUpdates.d.ts +3 -0
- package/src/story/pages/store-basic/ComputedProperties.d.ts +3 -0
- package/src/story/pages/store-basic/MiddlewareDemo.d.ts +3 -0
- package/src/story/pages/store-basic/MultipleStores.d.ts +3 -0
- package/src/story/pages/store-basic/PathSubscriptions.d.ts +3 -0
- package/src/story/pages/store-basic/StoreBasicPage.d.ts +3 -0
- package/src/story/pages/store-middleware/BroadcastDemo.d.ts +3 -0
- package/src/story/pages/store-middleware/DebounceDemo.d.ts +3 -0
- package/src/story/pages/store-middleware/LoggingDemo.d.ts +3 -0
- package/src/story/pages/store-middleware/PersistDemo.d.ts +3 -0
- package/src/story/pages/store-middleware/StoreMiddlewarePage.d.ts +3 -0
- package/src/story/pages/store-middleware/ThrottleDemo.d.ts +3 -0
- package/src/story/pages/store-middleware/UndoRedoDemo.d.ts +3 -0
- package/src/story/pages/store-middleware/ValidationDemo.d.ts +3 -0
- package/src/story/pages/store-model/BasicCRUD.d.ts +3 -0
- package/src/story/pages/store-model/CombinedDemo.d.ts +3 -0
- package/src/story/pages/store-model/ListManagement.d.ts +3 -0
- package/src/story/pages/store-model/PersistenceDemo.d.ts +3 -0
- package/src/story/pages/store-model/StoreModelPage.d.ts +3 -0
- package/src/story/pages/store-model/ValidationDemo.d.ts +3 -0
- package/src/story/pages/tab-view/BasicUsage.d.ts +3 -0
- package/src/story/pages/tab-view/ClosableTabs.d.ts +3 -0
- package/src/story/pages/tab-view/EventHandling.d.ts +3 -0
- package/src/story/pages/tab-view/HeaderEnd.d.ts +3 -0
- package/src/story/pages/tab-view/Positions.d.ts +3 -0
- package/src/story/pages/tab-view/ScrollableTabs.d.ts +3 -0
- package/src/story/pages/tab-view/StyleVariants.d.ts +3 -0
- package/src/story/pages/tab-view/TabViewPage.d.ts +3 -0
- package/src/story/pages/tab-view/WithIcons.d.ts +3 -0
- package/src/story/pages/table/BasicUsage.d.ts +3 -0
- package/src/story/pages/table/CustomRendering.d.ts +3 -0
- package/src/story/pages/table/LoadingAndEmpty.d.ts +3 -0
- package/src/story/pages/table/ResponsiveColumns.d.ts +3 -0
- package/src/story/pages/table/RowSelection.d.ts +3 -0
- package/src/story/pages/table/SortableColumns.d.ts +3 -0
- package/src/story/pages/table/StyleVariants.d.ts +3 -0
- package/src/story/pages/table/TablePage.d.ts +3 -0
- package/src/story/pages/table/WithActions.d.ts +3 -0
- package/src/story/pages/table/WithPagination.d.ts +3 -0
- package/src/story/pages/table/table-story-data.d.ts +13 -0
- package/src/story/pages/text-input/BasicUsage.d.ts +3 -0
- package/src/story/pages/text-input/TextInputPage.d.ts +3 -0
- package/src/story/pages/text-input/TextInputStates.d.ts +3 -0
- package/src/story/pages/text-input/Validation.d.ts +3 -0
- package/src/story/pages/text-input/WithIcons.d.ts +3 -0
- package/src/story/pages/text-input/WithLabel.d.ts +3 -0
- package/src/story/pages/textarea/AutoResize.d.ts +3 -0
- package/src/story/pages/textarea/BasicUsage.d.ts +3 -0
- package/src/story/pages/textarea/CharacterLimit.d.ts +3 -0
- package/src/story/pages/textarea/RowHeights.d.ts +3 -0
- package/src/story/pages/textarea/TextAreaPage.d.ts +3 -0
- package/src/story/pages/textarea/TextAreaStates.d.ts +3 -0
- package/src/story/pages/timeline/AlternateAlignment.d.ts +3 -0
- package/src/story/pages/timeline/BasicUsage.d.ts +3 -0
- package/src/story/pages/timeline/CustomMarkers.d.ts +3 -0
- package/src/story/pages/timeline/HorizontalLayout.d.ts +3 -0
- package/src/story/pages/timeline/TimelinePage.d.ts +3 -0
- package/src/story/pages/toggle-button/BasicUsage.d.ts +3 -0
- package/src/story/pages/toggle-button/CustomLabels.d.ts +3 -0
- package/src/story/pages/toggle-button/CustomStyling.d.ts +3 -0
- package/src/story/pages/toggle-button/EventHandling.d.ts +3 -0
- package/src/story/pages/toggle-button/FormIntegration.d.ts +3 -0
- package/src/story/pages/toggle-button/MultipleToggles.d.ts +3 -0
- package/src/story/pages/toggle-button/Sizes.d.ts +3 -0
- package/src/story/pages/toggle-button/States.d.ts +3 -0
- package/src/story/pages/toggle-button/ToggleButtonPage.d.ts +3 -0
- package/src/story/pages/toggle-button/Variants.d.ts +3 -0
- package/src/story/pages/tooltip/BasicUsage.d.ts +3 -0
- package/src/story/pages/tooltip/CustomTimeout.d.ts +3 -0
- package/src/story/pages/tooltip/OnAnyElement.d.ts +3 -0
- package/src/story/pages/tooltip/Placements.d.ts +3 -0
- package/src/story/pages/tooltip/RichContent.d.ts +3 -0
- package/src/story/pages/tooltip/SetupSection.d.ts +3 -0
- package/src/story/pages/tooltip/TooltipPage.d.ts +3 -0
- package/src/story/pages/tour/BasicTour.d.ts +3 -0
- package/src/story/pages/tour/DarkModeSection.d.ts +3 -0
- package/src/story/pages/tour/PlacementOptions.d.ts +3 -0
- package/src/story/pages/tour/RichContent.d.ts +3 -0
- package/src/story/pages/tour/StartAtStep.d.ts +3 -0
- package/src/story/pages/tour/StepCallbacks.d.ts +3 -0
- package/src/story/pages/tour/TourPage.d.ts +3 -0
- package/src/story/pages/tour/tour-story-data.d.ts +13 -0
- package/src/story/pages/tree-view/AsyncLoading.d.ts +3 -0
- package/src/story/pages/tree-view/BasicUsage.d.ts +3 -0
- package/src/story/pages/tree-view/CheckboxMode.d.ts +3 -0
- package/src/story/pages/tree-view/DragDrop.d.ts +3 -0
- package/src/story/pages/tree-view/TreeViewPage.d.ts +3 -0
- package/src/themes/index.d.ts +2 -0
- package/src/types/index.d.ts +97 -0
- package/src/utils/common-fns.d.ts +8 -0
- package/src/utils/field-label.d.ts +12 -0
- package/src/utils/index.d.ts +10 -0
- package/src/utils/layout.d.ts +1 -0
- package/src/utils/lib.d.ts +2 -0
- package/store-middlewares.cjs +299 -0
- package/store-middlewares.d.ts +1 -0
- package/store-middlewares.js +290 -0
- package/store.cjs +683 -0
- package/store.d.ts +1 -0
- package/store.js +675 -0
- package/styles/components.css +16368 -0
- package/styles/drag-drop.css +88 -0
- package/styles/draw.css +994 -0
- package/styles/kanban.css +814 -0
- package/utils.cjs +25 -0
- package/utils.d.ts +1 -0
- package/utils.js +23 -0
- package/vite-plugin.cjs +42 -0
- package/vite-plugin.d.ts +1 -0
- package/vite-plugin.js +38 -0
package/README.md
ADDED
|
@@ -0,0 +1,237 @@
|
|
|
1
|
+
# Fluxo UI
|
|
2
|
+
|
|
3
|
+
A comprehensive, accessible React component library built with TypeScript. Includes **60+ production-ready UI components**, a custom state management solution, a dependency injection container, 12 color themes, dark mode, and full keyboard navigation.
|
|
4
|
+
|
|
5
|
+
- **Website & Live Demos:** [fluxo-ui.utilsware.com](https://fluxo-ui.utilsware.com/)
|
|
6
|
+
- **Repository:** [github.com/shridhar-tl/fluxo-ui](https://github.com/shridhar-tl/fluxo-ui)
|
|
7
|
+
|
|
8
|
+
## Highlights
|
|
9
|
+
|
|
10
|
+
- 60+ accessible, production-ready components
|
|
11
|
+
- Full TypeScript support with first-class types
|
|
12
|
+
- 12 built-in color themes + dark mode out of the box
|
|
13
|
+
- Custom state management (batched updates, computed properties, middleware)
|
|
14
|
+
- Dependency injection container with singleton, scoped & transient lifetimes
|
|
15
|
+
- WAI-ARIA compliant, keyboard navigable
|
|
16
|
+
- Tree-shakable with multiple entry points (`fluxo-ui/hooks`, `fluxo-ui/store`, `fluxo-ui/icons`, ...)
|
|
17
|
+
|
|
18
|
+
## Prerequisites
|
|
19
|
+
|
|
20
|
+
- **React** `>= 18.0.0`
|
|
21
|
+
- **react-dom** `>= 18.0.0`
|
|
22
|
+
|
|
23
|
+
Optional peer dependencies (only needed if you use the related components):
|
|
24
|
+
|
|
25
|
+
- `react-dnd` and `react-dnd-html5-backend` — for drag-and-drop components
|
|
26
|
+
- `html2canvas` — for image/canvas export features
|
|
27
|
+
|
|
28
|
+
## Installation
|
|
29
|
+
|
|
30
|
+
Using **npm**:
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
npm install fluxo-ui
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
Using **yarn**:
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
yarn add fluxo-ui
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
Using **pnpm**:
|
|
43
|
+
|
|
44
|
+
```bash
|
|
45
|
+
pnpm add fluxo-ui
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
Using **bun**:
|
|
49
|
+
|
|
50
|
+
```bash
|
|
51
|
+
bun add fluxo-ui
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
## Usage
|
|
55
|
+
|
|
56
|
+
Import the stylesheet once in your application entry file, then use components anywhere:
|
|
57
|
+
|
|
58
|
+
```tsx
|
|
59
|
+
import 'fluxo-ui/styles';
|
|
60
|
+
import { Button, TextInput } from 'fluxo-ui';
|
|
61
|
+
|
|
62
|
+
export default function App() {
|
|
63
|
+
return (
|
|
64
|
+
<div>
|
|
65
|
+
<TextInput placeholder="Enter your name" />
|
|
66
|
+
<Button label="Submit" />
|
|
67
|
+
</div>
|
|
68
|
+
);
|
|
69
|
+
}
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
### Using a theme
|
|
73
|
+
|
|
74
|
+
Apply a theme and dark mode by adding classes to the `body` element:
|
|
75
|
+
|
|
76
|
+
```tsx
|
|
77
|
+
document.body.classList.add('theme-blue', 'mode-dark');
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
Available themes: `theme-blue`, `theme-green`, `theme-orange`, `theme-purple`, `theme-lara` (and more).
|
|
81
|
+
|
|
82
|
+
### Global managers (snackbar, tooltip, context menu)
|
|
83
|
+
|
|
84
|
+
Mount the managers once at your app root, then trigger them imperatively from anywhere:
|
|
85
|
+
|
|
86
|
+
```tsx
|
|
87
|
+
import { SnackbarManager, showSnackbar } from 'fluxo-ui';
|
|
88
|
+
|
|
89
|
+
function Root() {
|
|
90
|
+
return (
|
|
91
|
+
<>
|
|
92
|
+
<SnackbarManager />
|
|
93
|
+
<button onClick={() => showSnackbar({ message: 'Saved!', type: 'success' })}>
|
|
94
|
+
Save
|
|
95
|
+
</button>
|
|
96
|
+
</>
|
|
97
|
+
);
|
|
98
|
+
}
|
|
99
|
+
```
|
|
100
|
+
|
|
101
|
+
### Hooks
|
|
102
|
+
|
|
103
|
+
```tsx
|
|
104
|
+
import { useDebounce, useMobile, useClickOutside } from 'fluxo-ui/hooks';
|
|
105
|
+
|
|
106
|
+
const debouncedQuery = useDebounce(query, 300);
|
|
107
|
+
const isMobile = useMobile();
|
|
108
|
+
```
|
|
109
|
+
|
|
110
|
+
### State management
|
|
111
|
+
|
|
112
|
+
```tsx
|
|
113
|
+
import { create } from 'fluxo-ui/store';
|
|
114
|
+
|
|
115
|
+
const useCounter = create({ count: 0 });
|
|
116
|
+
|
|
117
|
+
function Counter() {
|
|
118
|
+
const count = useCounter((s) => s.count);
|
|
119
|
+
return <button onClick={() => useCounter.setState({ count: count + 1 })}>{count}</button>;
|
|
120
|
+
}
|
|
121
|
+
```
|
|
122
|
+
|
|
123
|
+
## Components
|
|
124
|
+
|
|
125
|
+
> For live examples, props, and API documentation for each component, visit [fluxo-ui.utilsware.com](https://fluxo-ui.utilsware.com/).
|
|
126
|
+
|
|
127
|
+
### Form Inputs
|
|
128
|
+
|
|
129
|
+
| Component | Description |
|
|
130
|
+
| --- | --- |
|
|
131
|
+
| Text Input | Single-line text field with validation and icons |
|
|
132
|
+
| Numeric Input | Number input with step buttons and formatting |
|
|
133
|
+
| Masked Input | Input with format masks (phone, date, etc.) |
|
|
134
|
+
| Password | Password field with visibility toggle and strength |
|
|
135
|
+
| Textarea | Multi-line text area with auto-resize |
|
|
136
|
+
| Field Label | Accessible form field labels and hints |
|
|
137
|
+
| Input Group | Group inputs with addons and buttons |
|
|
138
|
+
| Slider | Single/range slider with marks and labels |
|
|
139
|
+
|
|
140
|
+
### Selection
|
|
141
|
+
|
|
142
|
+
| Component | Description |
|
|
143
|
+
| --- | --- |
|
|
144
|
+
| Checkbox | Standard checkbox with label and indeterminate |
|
|
145
|
+
| MultiState Checkbox | Cycle through multiple states on click |
|
|
146
|
+
| Radio Button | Single-selection radio groups |
|
|
147
|
+
| Input Switch | Toggle switch with on/off states |
|
|
148
|
+
| Select Button | Button-style single/multi selection |
|
|
149
|
+
| Toggle Button | Pressable toggle with icon support |
|
|
150
|
+
| Dropdown | Single select dropdown with search |
|
|
151
|
+
| Multiselect | Multi-item selection with chips |
|
|
152
|
+
| Autocomplete | Input with filtered suggestions |
|
|
153
|
+
| List Box | Scrollable selection list |
|
|
154
|
+
| Chips | Tag-style input for multiple values |
|
|
155
|
+
| Date Range Picker | Date range selection with presets |
|
|
156
|
+
|
|
157
|
+
### Data Display
|
|
158
|
+
|
|
159
|
+
| Component | Description |
|
|
160
|
+
| --- | --- |
|
|
161
|
+
| Table | Data grid with sort, filter, pagination |
|
|
162
|
+
| Gantt Chart | Project timeline and task visualization |
|
|
163
|
+
| Kanban Board | Drag-and-drop task board with columns |
|
|
164
|
+
| Calendar | Full-featured event calendar |
|
|
165
|
+
| Canvas Draw | Drawing and annotation overlay |
|
|
166
|
+
| JSON Editor | Interactive JSON viewer and editor |
|
|
167
|
+
| Tab View | Tabbed content with multiple variants |
|
|
168
|
+
| Progress Bar | Determinate and indeterminate progress |
|
|
169
|
+
| Stepper | Multi-step wizard navigation |
|
|
170
|
+
| Shimmer / Skeleton | Loading placeholders and skeletons |
|
|
171
|
+
| TreeView | Hierarchical tree with expand/collapse |
|
|
172
|
+
| Timeline | Vertical/horizontal event sequence |
|
|
173
|
+
| Carousel | Image/video slider with thumbnails |
|
|
174
|
+
| Pivot Table | Aggregation, pivoting, expand/collapse |
|
|
175
|
+
| Image Editor | Crop, rotate, blur, annotate images |
|
|
176
|
+
|
|
177
|
+
### Interactive
|
|
178
|
+
|
|
179
|
+
| Component | Description |
|
|
180
|
+
| --- | --- |
|
|
181
|
+
| Button | Primary action element with variants |
|
|
182
|
+
| Fab & Speed Dial | Floating action buttons |
|
|
183
|
+
| Drag & Drop | Draggable and droppable containers |
|
|
184
|
+
| Sortable | Drag-to-reorder lists and grids |
|
|
185
|
+
| Splitter | Resizable split panels |
|
|
186
|
+
| Step Tour | Guided UI walkthroughs |
|
|
187
|
+
| Deferred View | Lazy-render with visibility detection |
|
|
188
|
+
| Infinite Scroll | Load-more on scroll with indicators |
|
|
189
|
+
| File Upload | Drag-and-drop file upload zone |
|
|
190
|
+
| Animate On View | Scroll-triggered CSS animations |
|
|
191
|
+
| Collapsible Panel | Expand/collapse sections & accordion |
|
|
192
|
+
|
|
193
|
+
### Overlays & Navigation
|
|
194
|
+
|
|
195
|
+
| Component | Description |
|
|
196
|
+
| --- | --- |
|
|
197
|
+
| Modal | Dialog overlays with backdrop |
|
|
198
|
+
| Drawer | Slide-in panel from any edge |
|
|
199
|
+
| Tooltip | Hover/focus information popups |
|
|
200
|
+
| Popover | Click-triggered content popovers |
|
|
201
|
+
| Snackbar | Toast notifications |
|
|
202
|
+
| Confirm Popover | Inline confirmation dialogs |
|
|
203
|
+
| Context Menu | Right-click context menus |
|
|
204
|
+
| Breadcrumb | Navigation breadcrumb trail |
|
|
205
|
+
| Notification Center | Dropdown notification panel |
|
|
206
|
+
| Page Banner | Page-level message banners |
|
|
207
|
+
| Menu Nav | Multi-level menu navigation |
|
|
208
|
+
| Lightbox | Hover/click preview with zoom-out |
|
|
209
|
+
|
|
210
|
+
## Hooks & Utilities
|
|
211
|
+
|
|
212
|
+
| Name | Description |
|
|
213
|
+
| --- | --- |
|
|
214
|
+
| `useDebounce` | Debounce value changes with configurable delay |
|
|
215
|
+
| `useMobile` | Detect mobile viewport with auto-resize |
|
|
216
|
+
| `useClickOutside` | Detect clicks outside a referenced element |
|
|
217
|
+
| `useKeyboard` | Register global keyboard event handlers |
|
|
218
|
+
| `withFieldLabel` | HOC to add label, error, hint to any input |
|
|
219
|
+
| `showSnackbar` | Trigger toast notifications imperatively |
|
|
220
|
+
| `showTooltip` | Show tooltips programmatically |
|
|
221
|
+
| `showContextMenu` | Open context menus on right-click |
|
|
222
|
+
|
|
223
|
+
## State Management
|
|
224
|
+
|
|
225
|
+
Fluxo UI ships with a lightweight, TypeScript-first state management solution:
|
|
226
|
+
|
|
227
|
+
- **Basic Store** — simple state container with batched updates, computed properties, and path subscriptions
|
|
228
|
+
- **Model Store** — entity-based store with built-in CRUD, persistence, validation, and list management
|
|
229
|
+
- **Middleware** — undo/redo, persistence, validation, throttle, debounce, broadcast, logging, devtools
|
|
230
|
+
|
|
231
|
+
## Dependency Injection
|
|
232
|
+
|
|
233
|
+
A class- and factory-based DI container with singleton, scoped, and transient lifetimes, parameterized factories, circular dependency detection, and seamless React integration via `ServiceProvider`, `useService`, and `withServices`.
|
|
234
|
+
|
|
235
|
+
## License
|
|
236
|
+
|
|
237
|
+
MIT © Shridhar TL
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
//#region \0rolldown/runtime.js
|
|
2
|
+
var __create = Object.create;
|
|
3
|
+
var __defProp = Object.defineProperty;
|
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
7
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
+
var __commonJSMin = (cb, mod) => () => (mod || cb((mod = { exports: {} }).exports, mod), mod.exports);
|
|
9
|
+
var __copyProps = (to, from, except, desc) => {
|
|
10
|
+
if (from && typeof from === "object" || typeof from === "function") for (var keys = __getOwnPropNames(from), i = 0, n = keys.length, key; i < n; i++) {
|
|
11
|
+
key = keys[i];
|
|
12
|
+
if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
|
|
13
|
+
get: ((k) => from[k]).bind(null, key),
|
|
14
|
+
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
15
|
+
});
|
|
16
|
+
}
|
|
17
|
+
return to;
|
|
18
|
+
};
|
|
19
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
|
|
20
|
+
value: mod,
|
|
21
|
+
enumerable: true
|
|
22
|
+
}) : target, mod));
|
|
23
|
+
//#endregion
|
|
24
|
+
Object.defineProperty(exports, "__commonJSMin", {
|
|
25
|
+
enumerable: true,
|
|
26
|
+
get: function() {
|
|
27
|
+
return __commonJSMin;
|
|
28
|
+
}
|
|
29
|
+
});
|
|
30
|
+
Object.defineProperty(exports, "__toESM", {
|
|
31
|
+
enumerable: true,
|
|
32
|
+
get: function() {
|
|
33
|
+
return __toESM;
|
|
34
|
+
}
|
|
35
|
+
});
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
//#region node_modules/.pnpm/classnames@2.5.1/node_modules/classnames/index.js
|
|
2
|
+
var require_classnames = /* @__PURE__ */ require("./chunk-Do9eywBl.cjs").__commonJSMin(((exports, module) => {
|
|
3
|
+
/*!
|
|
4
|
+
Copyright (c) 2018 Jed Watson.
|
|
5
|
+
Licensed under the MIT License (MIT), see
|
|
6
|
+
http://jedwatson.github.io/classnames
|
|
7
|
+
*/
|
|
8
|
+
(function() {
|
|
9
|
+
"use strict";
|
|
10
|
+
var hasOwn = {}.hasOwnProperty;
|
|
11
|
+
function classNames() {
|
|
12
|
+
var classes = "";
|
|
13
|
+
for (var i = 0; i < arguments.length; i++) {
|
|
14
|
+
var arg = arguments[i];
|
|
15
|
+
if (arg) classes = appendClass(classes, parseValue(arg));
|
|
16
|
+
}
|
|
17
|
+
return classes;
|
|
18
|
+
}
|
|
19
|
+
function parseValue(arg) {
|
|
20
|
+
if (typeof arg === "string" || typeof arg === "number") return arg;
|
|
21
|
+
if (typeof arg !== "object") return "";
|
|
22
|
+
if (Array.isArray(arg)) return classNames.apply(null, arg);
|
|
23
|
+
if (arg.toString !== Object.prototype.toString && !arg.toString.toString().includes("[native code]")) return arg.toString();
|
|
24
|
+
var classes = "";
|
|
25
|
+
for (var key in arg) if (hasOwn.call(arg, key) && arg[key]) classes = appendClass(classes, key);
|
|
26
|
+
return classes;
|
|
27
|
+
}
|
|
28
|
+
function appendClass(value, newClass) {
|
|
29
|
+
if (!newClass) return value;
|
|
30
|
+
if (value) return value + " " + newClass;
|
|
31
|
+
return value + newClass;
|
|
32
|
+
}
|
|
33
|
+
if (typeof module !== "undefined" && module.exports) {
|
|
34
|
+
classNames.default = classNames;
|
|
35
|
+
module.exports = classNames;
|
|
36
|
+
} else if (typeof define === "function" && typeof define.amd === "object" && define.amd) define("classnames", [], function() {
|
|
37
|
+
return classNames;
|
|
38
|
+
});
|
|
39
|
+
else window.classNames = classNames;
|
|
40
|
+
})();
|
|
41
|
+
}));
|
|
42
|
+
//#endregion
|
|
43
|
+
Object.defineProperty(exports, "require_classnames", {
|
|
44
|
+
enumerable: true,
|
|
45
|
+
get: function() {
|
|
46
|
+
return require_classnames;
|
|
47
|
+
}
|
|
48
|
+
});
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
//#region \0rolldown/runtime.js
|
|
2
|
+
var __create = Object.create;
|
|
3
|
+
var __defProp = Object.defineProperty;
|
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
7
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
+
var __commonJSMin = (cb, mod) => () => (mod || cb((mod = { exports: {} }).exports, mod), mod.exports);
|
|
9
|
+
var __copyProps = (to, from, except, desc) => {
|
|
10
|
+
if (from && typeof from === "object" || typeof from === "function") for (var keys = __getOwnPropNames(from), i = 0, n = keys.length, key; i < n; i++) {
|
|
11
|
+
key = keys[i];
|
|
12
|
+
if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
|
|
13
|
+
get: ((k) => from[k]).bind(null, key),
|
|
14
|
+
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
15
|
+
});
|
|
16
|
+
}
|
|
17
|
+
return to;
|
|
18
|
+
};
|
|
19
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
|
|
20
|
+
value: mod,
|
|
21
|
+
enumerable: true
|
|
22
|
+
}) : target, mod));
|
|
23
|
+
//#endregion
|
|
24
|
+
//#region node_modules/.pnpm/classnames@2.5.1/node_modules/classnames/index.js
|
|
25
|
+
var require_classnames = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
26
|
+
/*!
|
|
27
|
+
Copyright (c) 2018 Jed Watson.
|
|
28
|
+
Licensed under the MIT License (MIT), see
|
|
29
|
+
http://jedwatson.github.io/classnames
|
|
30
|
+
*/
|
|
31
|
+
(function() {
|
|
32
|
+
"use strict";
|
|
33
|
+
var hasOwn = {}.hasOwnProperty;
|
|
34
|
+
function classNames() {
|
|
35
|
+
var classes = "";
|
|
36
|
+
for (var i = 0; i < arguments.length; i++) {
|
|
37
|
+
var arg = arguments[i];
|
|
38
|
+
if (arg) classes = appendClass(classes, parseValue(arg));
|
|
39
|
+
}
|
|
40
|
+
return classes;
|
|
41
|
+
}
|
|
42
|
+
function parseValue(arg) {
|
|
43
|
+
if (typeof arg === "string" || typeof arg === "number") return arg;
|
|
44
|
+
if (typeof arg !== "object") return "";
|
|
45
|
+
if (Array.isArray(arg)) return classNames.apply(null, arg);
|
|
46
|
+
if (arg.toString !== Object.prototype.toString && !arg.toString.toString().includes("[native code]")) return arg.toString();
|
|
47
|
+
var classes = "";
|
|
48
|
+
for (var key in arg) if (hasOwn.call(arg, key) && arg[key]) classes = appendClass(classes, key);
|
|
49
|
+
return classes;
|
|
50
|
+
}
|
|
51
|
+
function appendClass(value, newClass) {
|
|
52
|
+
if (!newClass) return value;
|
|
53
|
+
if (value) return value + " " + newClass;
|
|
54
|
+
return value + newClass;
|
|
55
|
+
}
|
|
56
|
+
if (typeof module !== "undefined" && module.exports) {
|
|
57
|
+
classNames.default = classNames;
|
|
58
|
+
module.exports = classNames;
|
|
59
|
+
} else if (typeof define === "function" && typeof define.amd === "object" && define.amd) define("classnames", [], function() {
|
|
60
|
+
return classNames;
|
|
61
|
+
});
|
|
62
|
+
else window.classNames = classNames;
|
|
63
|
+
})();
|
|
64
|
+
}));
|
|
65
|
+
//#endregion
|
|
66
|
+
export { __toESM as n, require_classnames as t };
|