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
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
export type CropMode = 'custom' | 'square' | 'circle' | '16:9' | '4:3' | '3:2' | '1:1' | '9:16' | '3:4' | '2:3';
|
|
2
|
+
export type ExportFormat = 'png' | 'jpeg' | 'webp';
|
|
3
|
+
export type EditorTool = 'crop' | 'rotate' | 'flip' | 'blur' | 'annotate' | 'transparency' | 'tilt';
|
|
4
|
+
export interface CropArea {
|
|
5
|
+
x: number;
|
|
6
|
+
y: number;
|
|
7
|
+
width: number;
|
|
8
|
+
height: number;
|
|
9
|
+
}
|
|
10
|
+
export interface ImageTransform {
|
|
11
|
+
rotation: number;
|
|
12
|
+
flipH: boolean;
|
|
13
|
+
flipV: boolean;
|
|
14
|
+
tilt: number;
|
|
15
|
+
zoom: number;
|
|
16
|
+
transparency: number;
|
|
17
|
+
}
|
|
18
|
+
export interface HistoryEntry {
|
|
19
|
+
imageData: string;
|
|
20
|
+
transform: ImageTransform;
|
|
21
|
+
cropArea: CropArea | null;
|
|
22
|
+
}
|
|
23
|
+
export interface ExportOptions {
|
|
24
|
+
format: ExportFormat;
|
|
25
|
+
quality: number;
|
|
26
|
+
maxWidth?: number;
|
|
27
|
+
maxHeight?: number;
|
|
28
|
+
}
|
|
29
|
+
export interface BlurRegion {
|
|
30
|
+
id: string;
|
|
31
|
+
x: number;
|
|
32
|
+
y: number;
|
|
33
|
+
width: number;
|
|
34
|
+
height: number;
|
|
35
|
+
intensity: number;
|
|
36
|
+
}
|
|
37
|
+
export interface ImageEditorProps {
|
|
38
|
+
src: string;
|
|
39
|
+
alt?: string;
|
|
40
|
+
width?: number | string;
|
|
41
|
+
height?: number | string;
|
|
42
|
+
onSave?: (data: Blob, format: ExportFormat) => void;
|
|
43
|
+
onCancel?: () => void;
|
|
44
|
+
tools?: EditorTool[];
|
|
45
|
+
defaultTool?: EditorTool;
|
|
46
|
+
maxHistory?: number;
|
|
47
|
+
className?: string;
|
|
48
|
+
exportOptions?: Partial<ExportOptions>;
|
|
49
|
+
cropModes?: CropMode[];
|
|
50
|
+
}
|
|
51
|
+
export declare const aspectRatios: Record<string, number | null>;
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
export type { ComponentEvent, ListItem } from '../types';
|
|
2
|
+
export * from './animate-on-view';
|
|
3
|
+
export { Autocomplete } from './Autocomplete';
|
|
4
|
+
export { AutocompleteMulti } from './AutocompleteMulti';
|
|
5
|
+
export { Breadcrumb } from './Breadcrumb';
|
|
6
|
+
export type { BreadcrumbItem, BreadcrumbProps } from './Breadcrumb';
|
|
7
|
+
export { Button } from './Button';
|
|
8
|
+
export { Checkbox } from './Checkbox';
|
|
9
|
+
export { Chips } from './Chips';
|
|
10
|
+
export * from './collapsible-panel';
|
|
11
|
+
export * from './confirm-popover';
|
|
12
|
+
export { ContextMenuManager, showContextMenu } from './context-menu';
|
|
13
|
+
export { ThemeProvider, useTheme } from './context/ThemeContext';
|
|
14
|
+
export { DeferredView } from './DeferredView';
|
|
15
|
+
export type { DeferredViewProps } from './DeferredView';
|
|
16
|
+
export { Drawer } from './drawer';
|
|
17
|
+
export type { DrawerProps, DrawerPosition } from './drawer';
|
|
18
|
+
export * from './calendar';
|
|
19
|
+
export { Carousel } from './carousel';
|
|
20
|
+
export type { CarouselProps, CarouselSlide } from './carousel';
|
|
21
|
+
export { InfiniteScroll } from './InfiniteScroll';
|
|
22
|
+
export type { InfiniteScrollProps } from './InfiniteScroll';
|
|
23
|
+
export { default as DateRangePicker } from './date-range';
|
|
24
|
+
export type { DateRangeValue, DateSelectedCallbackArg, RangeOption, SelectionMode } from './date-range';
|
|
25
|
+
export { Dropdown } from './Dropdown';
|
|
26
|
+
export { Fab } from './Fab';
|
|
27
|
+
export type { FabPosition, FabProps, FabSize, FabVariant } from './Fab';
|
|
28
|
+
export { FieldLabel } from './FieldLabel';
|
|
29
|
+
export * from './file-upload';
|
|
30
|
+
export * from './gantt-chart';
|
|
31
|
+
export * from './image-editor';
|
|
32
|
+
export * from './lightbox';
|
|
33
|
+
export * from './menu-nav';
|
|
34
|
+
export * from './page-banner';
|
|
35
|
+
export * from './pivot-table';
|
|
36
|
+
export * from './slider';
|
|
37
|
+
export { JsonEditor } from './json-editor';
|
|
38
|
+
export type { JsonEditorProps, JsonEditorSize, JsonEditorTheme, JsonValue, JsonObject, JsonArray, JsonValueType } from './json-editor';
|
|
39
|
+
export { InputGroup } from './InputGroup';
|
|
40
|
+
export { InputSwitch } from './InputSwitch';
|
|
41
|
+
export { default as ListBox } from './ListBox';
|
|
42
|
+
export { MaskedInput } from './MaskedInput';
|
|
43
|
+
export type { MaskedInputProps } from './MaskedInput';
|
|
44
|
+
export { Modal } from './Modal';
|
|
45
|
+
export { Multiselect } from './Multiselect';
|
|
46
|
+
export { NotificationCenter } from './notification-center';
|
|
47
|
+
export type { NotificationCenterProps, NotificationItem } from './notification-center';
|
|
48
|
+
export { MultiStateCheckbox } from './MultiStateCheckbox';
|
|
49
|
+
export { NumericInput } from './NumericInput';
|
|
50
|
+
export { Password } from './Password';
|
|
51
|
+
export { Popover } from './Popover';
|
|
52
|
+
export { ProgressBar } from './ProgressBar';
|
|
53
|
+
export type { ProgressBarLayout, ProgressBarProps, ProgressBarSegment, ProgressBarSize, ProgressBarVariant } from './ProgressBar';
|
|
54
|
+
export { RadioButton, RadioButtonGroup } from './RadioButton';
|
|
55
|
+
export { SelectButton } from './SelectButton';
|
|
56
|
+
export * from './shimmer';
|
|
57
|
+
export * from './snackbar';
|
|
58
|
+
export { SpeedDial } from './SpeedDial';
|
|
59
|
+
export type { SpeedDialDirection, SpeedDialItem, SpeedDialLayout, SpeedDialProps, SpeedDialSize, SpeedDialVariant } from './SpeedDial';
|
|
60
|
+
export * from './splitter';
|
|
61
|
+
export { Stepper } from './Stepper';
|
|
62
|
+
export type { StepItem, StepperLabelPlacement, StepperLayout, StepperOrientation, StepperProps, StepperSize, StepperVariant, StepStatus, } from './Stepper';
|
|
63
|
+
export * from './tab-view';
|
|
64
|
+
export * from './table/Table';
|
|
65
|
+
export { default as Table } from './table/Table';
|
|
66
|
+
export type { Column } from './table/table-types';
|
|
67
|
+
export * from './timeline';
|
|
68
|
+
export { TextArea } from './TextArea';
|
|
69
|
+
export { TextInput } from './TextInput';
|
|
70
|
+
export { ToggleButton } from './ToggleButton';
|
|
71
|
+
export { hideTooltip, showTooltip } from './tooltip/Tooltip';
|
|
72
|
+
export { default as TooltipManager } from './tooltip/TooltipManager';
|
|
73
|
+
export { default as StepTour } from './tour/StepTour';
|
|
74
|
+
export { TreeView } from './tree-view';
|
|
75
|
+
export type { CheckState, DragDropInfo, TreeNode, TreeNodeProps, TreeViewProps } from './tree-view';
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { JsonEditorSize, JsonValue } from './json-editor-types';
|
|
3
|
+
interface AddEntryProps {
|
|
4
|
+
type: 'object' | 'array';
|
|
5
|
+
onAdd: (key: string, value: JsonValue) => void;
|
|
6
|
+
existingKeys?: string[];
|
|
7
|
+
size: JsonEditorSize;
|
|
8
|
+
}
|
|
9
|
+
declare const AddEntry: React.FC<AddEntryProps>;
|
|
10
|
+
export default AddEntry;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { JsonEditorProps } from './json-editor-types';
|
|
3
|
+
declare const JsonEditor: React.FC<JsonEditorProps>;
|
|
4
|
+
export { JsonEditor };
|
|
5
|
+
export type { JsonEditorProps, JsonValue, JsonEditorSize, JsonEditorTheme } from './json-editor-types';
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { EditorNodeProps, JsonValue } from './json-editor-types';
|
|
3
|
+
declare function getEditorComponent(value: JsonValue): React.FC<EditorNodeProps>;
|
|
4
|
+
declare const NodeSelector: React.FC<EditorNodeProps>;
|
|
5
|
+
export default NodeSelector;
|
|
6
|
+
export { getEditorComponent };
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { JsonEditorSize, JsonValue } from './json-editor-types';
|
|
3
|
+
interface ToolbarProps {
|
|
4
|
+
value: JsonValue;
|
|
5
|
+
allowSearch: boolean;
|
|
6
|
+
allowCopy: boolean;
|
|
7
|
+
size: JsonEditorSize;
|
|
8
|
+
onExpandAll: () => void;
|
|
9
|
+
onCollapseAll: () => void;
|
|
10
|
+
searchText: string;
|
|
11
|
+
onSearchChange: (text: string) => void;
|
|
12
|
+
}
|
|
13
|
+
declare const Toolbar: React.FC<ToolbarProps>;
|
|
14
|
+
export default Toolbar;
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
export type JsonValue = string | number | boolean | null | undefined | JsonObject | JsonArray;
|
|
3
|
+
export interface JsonObject {
|
|
4
|
+
[key: string]: JsonValue;
|
|
5
|
+
}
|
|
6
|
+
export type JsonArray = JsonValue[];
|
|
7
|
+
export type JsonValueType = 'string' | 'number' | 'boolean' | 'null' | 'undefined' | 'object' | 'array' | 'date';
|
|
8
|
+
export type JsonEditorTheme = 'default' | 'monokai' | 'github';
|
|
9
|
+
export type JsonEditorSize = 'sm' | 'md' | 'lg';
|
|
10
|
+
export interface JsonEditorProps {
|
|
11
|
+
value: JsonValue;
|
|
12
|
+
onChange?: (value: JsonValue) => void;
|
|
13
|
+
allowEditValue?: boolean;
|
|
14
|
+
allowEditKey?: boolean;
|
|
15
|
+
allowRemove?: boolean;
|
|
16
|
+
allowInsert?: boolean;
|
|
17
|
+
allowTypeChange?: boolean;
|
|
18
|
+
allowCopy?: boolean;
|
|
19
|
+
allowSearch?: boolean;
|
|
20
|
+
readOnly?: boolean;
|
|
21
|
+
expandDepth?: number;
|
|
22
|
+
size?: JsonEditorSize;
|
|
23
|
+
maxHeight?: string | number;
|
|
24
|
+
showDataTypes?: boolean;
|
|
25
|
+
showItemCount?: boolean;
|
|
26
|
+
showToolbar?: boolean;
|
|
27
|
+
sortKeys?: boolean;
|
|
28
|
+
className?: string;
|
|
29
|
+
id?: string;
|
|
30
|
+
ariaLabel?: string;
|
|
31
|
+
}
|
|
32
|
+
export interface EditorNodeProps {
|
|
33
|
+
name?: string | number;
|
|
34
|
+
value: JsonValue;
|
|
35
|
+
displayName?: React.ReactNode;
|
|
36
|
+
depth: number;
|
|
37
|
+
expandDepth: number;
|
|
38
|
+
path: string;
|
|
39
|
+
onChange: (value: JsonValue, name: string | number) => void;
|
|
40
|
+
onNameChange?: (newName: string, oldName: string) => void;
|
|
41
|
+
onRemove?: (name: string | number) => void;
|
|
42
|
+
onInsert?: (index: number) => void;
|
|
43
|
+
allowEditValue: boolean;
|
|
44
|
+
allowEditKey: boolean;
|
|
45
|
+
allowRemove: boolean;
|
|
46
|
+
allowInsert: boolean;
|
|
47
|
+
allowTypeChange: boolean;
|
|
48
|
+
allowCopy: boolean;
|
|
49
|
+
showDataTypes: boolean;
|
|
50
|
+
showItemCount: boolean;
|
|
51
|
+
sortKeys: boolean;
|
|
52
|
+
size: JsonEditorSize;
|
|
53
|
+
searchText: string;
|
|
54
|
+
}
|
|
55
|
+
export interface ItemNameDisplayProps {
|
|
56
|
+
name?: string | number;
|
|
57
|
+
display?: React.ReactNode;
|
|
58
|
+
expanded?: boolean;
|
|
59
|
+
allowEdit: boolean;
|
|
60
|
+
onChange?: (newName: string, oldName: string) => void;
|
|
61
|
+
onToggle?: () => void;
|
|
62
|
+
onRemove?: () => void;
|
|
63
|
+
onInsert?: () => void;
|
|
64
|
+
onCopy?: () => void;
|
|
65
|
+
allowRemove: boolean;
|
|
66
|
+
allowInsert: boolean;
|
|
67
|
+
allowCopy: boolean;
|
|
68
|
+
size: JsonEditorSize;
|
|
69
|
+
}
|
|
70
|
+
export interface ItemValueDisplayProps {
|
|
71
|
+
value: string;
|
|
72
|
+
displayValue?: React.ReactNode;
|
|
73
|
+
type: JsonValueType;
|
|
74
|
+
allowEdit: boolean;
|
|
75
|
+
allowTypeChange: boolean;
|
|
76
|
+
onChange: (value: JsonValue) => void;
|
|
77
|
+
size: JsonEditorSize;
|
|
78
|
+
}
|
|
79
|
+
export interface SearchMatch {
|
|
80
|
+
path: string;
|
|
81
|
+
key?: string;
|
|
82
|
+
value?: string;
|
|
83
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { JsonValue, JsonValueType } from './json-editor-types';
|
|
2
|
+
export declare function getValueType(value: JsonValue): JsonValueType;
|
|
3
|
+
export declare function isUrl(value: string): boolean;
|
|
4
|
+
export declare function parseInputValue(text: string, currentType?: JsonValueType): JsonValue;
|
|
5
|
+
export declare function getDefaultValueForType(type: JsonValueType): JsonValue;
|
|
6
|
+
export declare function convertValueToType(currentValue: JsonValue, newType: JsonValueType): JsonValue;
|
|
7
|
+
export declare function getDisplayString(value: JsonValue): string;
|
|
8
|
+
export declare function copyToClipboard(value: JsonValue): void;
|
|
9
|
+
export declare function countItems(value: JsonValue): number;
|
|
10
|
+
export declare function doesNodeMatch(key: string | number | undefined, value: JsonValue, query: string): boolean;
|
|
11
|
+
export declare function sortObjectKeys(obj: Record<string, JsonValue>): Record<string, JsonValue>;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { KanbanColumnData } from './kanban-types';
|
|
2
|
+
interface KanbanColumnHeaderProps {
|
|
3
|
+
column: KanbanColumnData;
|
|
4
|
+
cardCount: number;
|
|
5
|
+
isCollapsed: boolean;
|
|
6
|
+
}
|
|
7
|
+
declare function KanbanColumnHeader({ column, cardCount, isCollapsed }: KanbanColumnHeaderProps): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export default KanbanColumnHeader;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export { default as KanbanBoard } from './KanbanBoard';
|
|
2
|
+
export type { KanbanBoardProps, KanbanCardClickEvent, KanbanCardCreateEvent, KanbanCardData, KanbanCardDeleteEvent, KanbanCardId, KanbanCardMoveEvent, KanbanCardProps, KanbanCardReorderEvent, KanbanCardSize, KanbanColumnCreateEvent, KanbanColumnData, KanbanColumnDeleteEvent, KanbanColumnId, KanbanColumnProps, KanbanColumnReorderEvent, KanbanColumnUpdateEvent, KanbanLabel, KanbanLayout, KanbanAssignee, KanbanPriority, KanbanSearchFilter, } from './kanban-types';
|
|
@@ -0,0 +1,152 @@
|
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
|
+
export type KanbanCardId = string | number;
|
|
3
|
+
export type KanbanColumnId = string | number;
|
|
4
|
+
export interface KanbanCardData {
|
|
5
|
+
id: KanbanCardId;
|
|
6
|
+
title: string;
|
|
7
|
+
description?: string;
|
|
8
|
+
columnId: KanbanColumnId;
|
|
9
|
+
order: number;
|
|
10
|
+
priority?: KanbanPriority;
|
|
11
|
+
labels?: KanbanLabel[];
|
|
12
|
+
assignee?: KanbanAssignee;
|
|
13
|
+
assignees?: KanbanAssignee[];
|
|
14
|
+
dueDate?: Date | string;
|
|
15
|
+
coverImage?: string;
|
|
16
|
+
progress?: number;
|
|
17
|
+
subtaskCount?: number;
|
|
18
|
+
subtaskCompleted?: number;
|
|
19
|
+
commentCount?: number;
|
|
20
|
+
attachmentCount?: number;
|
|
21
|
+
blocked?: boolean;
|
|
22
|
+
color?: string;
|
|
23
|
+
[key: string]: any;
|
|
24
|
+
}
|
|
25
|
+
export interface KanbanColumnData {
|
|
26
|
+
id: KanbanColumnId;
|
|
27
|
+
title: string;
|
|
28
|
+
color?: string;
|
|
29
|
+
icon?: ReactNode;
|
|
30
|
+
limit?: number;
|
|
31
|
+
collapsed?: boolean;
|
|
32
|
+
locked?: boolean;
|
|
33
|
+
[key: string]: any;
|
|
34
|
+
}
|
|
35
|
+
export type KanbanPriority = 'critical' | 'high' | 'medium' | 'low' | 'none';
|
|
36
|
+
export interface KanbanLabel {
|
|
37
|
+
id: string;
|
|
38
|
+
text: string;
|
|
39
|
+
color: string;
|
|
40
|
+
}
|
|
41
|
+
export interface KanbanAssignee {
|
|
42
|
+
id: string;
|
|
43
|
+
name: string;
|
|
44
|
+
avatar?: string;
|
|
45
|
+
}
|
|
46
|
+
export interface KanbanCardMoveEvent {
|
|
47
|
+
cardId: KanbanCardId;
|
|
48
|
+
card: KanbanCardData;
|
|
49
|
+
fromColumnId: KanbanColumnId;
|
|
50
|
+
toColumnId: KanbanColumnId;
|
|
51
|
+
fromIndex: number;
|
|
52
|
+
toIndex: number;
|
|
53
|
+
}
|
|
54
|
+
export interface KanbanCardReorderEvent {
|
|
55
|
+
columnId: KanbanColumnId;
|
|
56
|
+
cards: KanbanCardData[];
|
|
57
|
+
}
|
|
58
|
+
export interface KanbanColumnReorderEvent {
|
|
59
|
+
columns: KanbanColumnData[];
|
|
60
|
+
}
|
|
61
|
+
export interface KanbanCardClickEvent {
|
|
62
|
+
card: KanbanCardData;
|
|
63
|
+
column: KanbanColumnData;
|
|
64
|
+
event: React.MouseEvent;
|
|
65
|
+
}
|
|
66
|
+
export interface KanbanCardCreateEvent {
|
|
67
|
+
columnId: KanbanColumnId;
|
|
68
|
+
title: string;
|
|
69
|
+
}
|
|
70
|
+
export interface KanbanCardDeleteEvent {
|
|
71
|
+
card: KanbanCardData;
|
|
72
|
+
columnId: KanbanColumnId;
|
|
73
|
+
}
|
|
74
|
+
export interface KanbanColumnCreateEvent {
|
|
75
|
+
title: string;
|
|
76
|
+
}
|
|
77
|
+
export interface KanbanColumnDeleteEvent {
|
|
78
|
+
column: KanbanColumnData;
|
|
79
|
+
}
|
|
80
|
+
export interface KanbanColumnUpdateEvent {
|
|
81
|
+
column: KanbanColumnData;
|
|
82
|
+
field: string;
|
|
83
|
+
value: any;
|
|
84
|
+
}
|
|
85
|
+
export interface KanbanSearchFilter {
|
|
86
|
+
query?: string;
|
|
87
|
+
priority?: KanbanPriority[];
|
|
88
|
+
labels?: string[];
|
|
89
|
+
assignees?: string[];
|
|
90
|
+
}
|
|
91
|
+
export type KanbanLayout = 'horizontal' | 'vertical';
|
|
92
|
+
export type KanbanCardSize = 'compact' | 'default' | 'detailed';
|
|
93
|
+
export interface KanbanBoardProps {
|
|
94
|
+
columns: KanbanColumnData[];
|
|
95
|
+
cards: KanbanCardData[];
|
|
96
|
+
layout?: KanbanLayout;
|
|
97
|
+
cardSize?: KanbanCardSize;
|
|
98
|
+
className?: string;
|
|
99
|
+
columnWidth?: number | string;
|
|
100
|
+
columnMinHeight?: number | string;
|
|
101
|
+
maxColumnHeight?: number | string;
|
|
102
|
+
draggable?: boolean;
|
|
103
|
+
columnDraggable?: boolean;
|
|
104
|
+
allowAddCard?: boolean;
|
|
105
|
+
allowAddColumn?: boolean;
|
|
106
|
+
allowDeleteCard?: boolean;
|
|
107
|
+
allowDeleteColumn?: boolean;
|
|
108
|
+
allowEditColumn?: boolean;
|
|
109
|
+
allowCollapse?: boolean;
|
|
110
|
+
showCardCount?: boolean;
|
|
111
|
+
showColumnLimit?: boolean;
|
|
112
|
+
showSearch?: boolean;
|
|
113
|
+
virtualScroll?: boolean;
|
|
114
|
+
stickyColumnHeaders?: boolean;
|
|
115
|
+
cardTemplate?: (card: KanbanCardData, column: KanbanColumnData) => ReactNode;
|
|
116
|
+
columnHeaderTemplate?: (column: KanbanColumnData, cardCount: number) => ReactNode;
|
|
117
|
+
columnFooterTemplate?: (column: KanbanColumnData, cards: KanbanCardData[]) => ReactNode;
|
|
118
|
+
emptyColumnTemplate?: (column: KanbanColumnData) => ReactNode;
|
|
119
|
+
cardActionsTemplate?: (card: KanbanCardData, column: KanbanColumnData) => ReactNode;
|
|
120
|
+
onCardMove?: (event: KanbanCardMoveEvent) => void;
|
|
121
|
+
onCardReorder?: (event: KanbanCardReorderEvent) => void;
|
|
122
|
+
onCardClick?: (event: KanbanCardClickEvent) => void;
|
|
123
|
+
onCardDoubleClick?: (event: KanbanCardClickEvent) => void;
|
|
124
|
+
onCardCreate?: (event: KanbanCardCreateEvent) => void;
|
|
125
|
+
onCardDelete?: (event: KanbanCardDeleteEvent) => void;
|
|
126
|
+
onColumnReorder?: (event: KanbanColumnReorderEvent) => void;
|
|
127
|
+
onColumnCreate?: (event: KanbanColumnCreateEvent) => void;
|
|
128
|
+
onColumnDelete?: (event: KanbanColumnDeleteEvent) => void;
|
|
129
|
+
onColumnUpdate?: (event: KanbanColumnUpdateEvent) => void;
|
|
130
|
+
onColumnCollapse?: (columnId: KanbanColumnId, collapsed: boolean) => void;
|
|
131
|
+
onSearchChange?: (filter: KanbanSearchFilter) => void;
|
|
132
|
+
}
|
|
133
|
+
export interface KanbanColumnProps {
|
|
134
|
+
column: KanbanColumnData;
|
|
135
|
+
cards: KanbanCardData[];
|
|
136
|
+
index: number;
|
|
137
|
+
isCollapsed: boolean;
|
|
138
|
+
}
|
|
139
|
+
export interface KanbanCardProps {
|
|
140
|
+
card: KanbanCardData;
|
|
141
|
+
column: KanbanColumnData;
|
|
142
|
+
index: number;
|
|
143
|
+
}
|
|
144
|
+
export interface KanbanContextValue {
|
|
145
|
+
props: KanbanBoardProps;
|
|
146
|
+
collapsedColumns: Set<KanbanColumnId>;
|
|
147
|
+
toggleCollapse: (columnId: KanbanColumnId) => void;
|
|
148
|
+
searchFilter: KanbanSearchFilter;
|
|
149
|
+
setSearchFilter: (filter: KanbanSearchFilter) => void;
|
|
150
|
+
editingColumnId: KanbanColumnId | null;
|
|
151
|
+
setEditingColumnId: (id: KanbanColumnId | null) => void;
|
|
152
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { KanbanCardData, KanbanColumnData, KanbanColumnId, KanbanPriority, KanbanSearchFilter } from './kanban-types';
|
|
2
|
+
export declare function getCardsForColumn(cards: KanbanCardData[], columnId: KanbanColumnId): KanbanCardData[];
|
|
3
|
+
export declare function filterCards(cards: KanbanCardData[], filter: KanbanSearchFilter): KanbanCardData[];
|
|
4
|
+
export declare function getPriorityOrder(priority: KanbanPriority): number;
|
|
5
|
+
export declare function getPriorityLabel(priority: KanbanPriority): string;
|
|
6
|
+
export declare function isColumnOverLimit(column: KanbanColumnData, cardCount: number): boolean;
|
|
7
|
+
export declare function reorderCards(cards: KanbanCardData[], columnId: KanbanColumnId, fromIndex: number, toIndex: number): KanbanCardData[];
|
|
8
|
+
export declare function moveCard(cards: KanbanCardData[], cardId: string | number, fromColumnId: KanbanColumnId, toColumnId: KanbanColumnId, toIndex: number): KanbanCardData[];
|
|
9
|
+
export declare function getInitials(name: string): string;
|
|
10
|
+
export declare function formatDueDate(date: Date | string): {
|
|
11
|
+
text: string;
|
|
12
|
+
isOverdue: boolean;
|
|
13
|
+
isDueSoon: boolean;
|
|
14
|
+
};
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
type LightboxTrigger = 'hover' | 'click';
|
|
3
|
+
type LightboxPosition = 'auto' | 'top' | 'bottom' | 'left' | 'right' | 'center';
|
|
4
|
+
interface LightboxProps {
|
|
5
|
+
children: React.ReactNode;
|
|
6
|
+
content: React.ReactNode;
|
|
7
|
+
trigger?: LightboxTrigger;
|
|
8
|
+
position?: LightboxPosition;
|
|
9
|
+
width?: string | number;
|
|
10
|
+
height?: string | number;
|
|
11
|
+
zoomOut?: boolean;
|
|
12
|
+
zoomScale?: number;
|
|
13
|
+
zoomWidth?: string | number;
|
|
14
|
+
zoomHeight?: string | number;
|
|
15
|
+
backdrop?: boolean;
|
|
16
|
+
closeOnBackdropClick?: boolean;
|
|
17
|
+
closeOnEscape?: boolean;
|
|
18
|
+
showCloseButton?: boolean;
|
|
19
|
+
className?: string;
|
|
20
|
+
contentClassName?: string;
|
|
21
|
+
hoverDelay?: number;
|
|
22
|
+
hoverCloseDelay?: number;
|
|
23
|
+
disabled?: boolean;
|
|
24
|
+
ariaLabel?: string;
|
|
25
|
+
header?: React.ReactNode;
|
|
26
|
+
footer?: React.ReactNode;
|
|
27
|
+
onOpen?: () => void;
|
|
28
|
+
onClose?: () => void;
|
|
29
|
+
}
|
|
30
|
+
declare const Lightbox: React.FC<LightboxProps>;
|
|
31
|
+
export { Lightbox };
|
|
32
|
+
export type { LightboxProps, LightboxTrigger, LightboxPosition };
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { MenuNavIconPosition, MenuNavItem as MenuNavItemType, MenuNavSelectionStyle, MenuNavSize } from './menu-nav-types';
|
|
3
|
+
interface MenuNavItemComponentProps {
|
|
4
|
+
item: MenuNavItemType;
|
|
5
|
+
depth: number;
|
|
6
|
+
maxDepth: number;
|
|
7
|
+
selectedId: string;
|
|
8
|
+
size: MenuNavSize;
|
|
9
|
+
orientation: 'vertical' | 'horizontal';
|
|
10
|
+
selectionStyle: MenuNavSelectionStyle;
|
|
11
|
+
iconPosition: MenuNavIconPosition;
|
|
12
|
+
collapsed: boolean;
|
|
13
|
+
onSelect: (id: string, item: MenuNavItemType) => void;
|
|
14
|
+
onMobileSubmenu?: (items: MenuNavItemType[], title: string) => void;
|
|
15
|
+
isMobile: boolean;
|
|
16
|
+
}
|
|
17
|
+
declare const MenuNavItemComponent: React.FC<MenuNavItemComponentProps>;
|
|
18
|
+
export default MenuNavItemComponent;
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
export type MenuNavOrientation = 'vertical' | 'horizontal';
|
|
3
|
+
export type MenuNavSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
4
|
+
export type MenuNavSelectionStyle = 'border-left' | 'border-bottom' | 'background' | 'arrow' | 'highlight';
|
|
5
|
+
export type MenuNavIconPosition = 'left' | 'right';
|
|
6
|
+
export interface MenuNavItem {
|
|
7
|
+
id: string;
|
|
8
|
+
label: string;
|
|
9
|
+
icon?: React.ReactNode;
|
|
10
|
+
iconPosition?: MenuNavIconPosition;
|
|
11
|
+
disabled?: boolean;
|
|
12
|
+
badge?: React.ReactNode;
|
|
13
|
+
children?: MenuNavItem[];
|
|
14
|
+
group?: string;
|
|
15
|
+
separator?: boolean;
|
|
16
|
+
href?: string;
|
|
17
|
+
onClick?: () => void;
|
|
18
|
+
className?: string;
|
|
19
|
+
}
|
|
20
|
+
export interface MenuNavGroup {
|
|
21
|
+
id: string;
|
|
22
|
+
label: string;
|
|
23
|
+
collapsible?: boolean;
|
|
24
|
+
defaultExpanded?: boolean;
|
|
25
|
+
items: MenuNavItem[];
|
|
26
|
+
}
|
|
27
|
+
export interface MenuNavProps {
|
|
28
|
+
items: (MenuNavItem | MenuNavGroup)[];
|
|
29
|
+
orientation?: MenuNavOrientation;
|
|
30
|
+
size?: MenuNavSize;
|
|
31
|
+
selectedId?: string;
|
|
32
|
+
defaultSelectedId?: string;
|
|
33
|
+
onSelect?: (id: string, item: MenuNavItem) => void;
|
|
34
|
+
selectionStyle?: MenuNavSelectionStyle;
|
|
35
|
+
iconPosition?: MenuNavIconPosition;
|
|
36
|
+
collapsed?: boolean;
|
|
37
|
+
collapsible?: boolean;
|
|
38
|
+
onCollapsedChange?: (collapsed: boolean) => void;
|
|
39
|
+
mobileBreakpoint?: number;
|
|
40
|
+
mobileFullScreen?: boolean;
|
|
41
|
+
showSearch?: boolean;
|
|
42
|
+
searchPlaceholder?: string;
|
|
43
|
+
headerSlot?: React.ReactNode;
|
|
44
|
+
footerSlot?: React.ReactNode;
|
|
45
|
+
maxSubMenuDepth?: number;
|
|
46
|
+
toolbar?: boolean;
|
|
47
|
+
className?: string;
|
|
48
|
+
ariaLabel?: string;
|
|
49
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { NotificationItem } from './notification-center-types';
|
|
3
|
+
interface NotificationItemRowProps {
|
|
4
|
+
item: NotificationItem;
|
|
5
|
+
onClick?: (item: NotificationItem) => void;
|
|
6
|
+
onMarkRead?: (id: string) => void;
|
|
7
|
+
itemTemplate?: (item: NotificationItem) => React.ReactNode;
|
|
8
|
+
}
|
|
9
|
+
export declare const NotificationItemRow: React.FC<NotificationItemRowProps>;
|
|
10
|
+
export {};
|