@moving-walls/design-system 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +221 -0
- package/dist/components/AnimationComponents.d.ts +35 -0
- package/dist/components/CodeSnippet.d.ts +8 -0
- package/dist/components/DynamicIcon.clean.d.ts +8 -0
- package/dist/components/DynamicIcon.d.ts +8 -0
- package/dist/components/Footer.d.ts +1 -0
- package/dist/components/Navigation.d.ts +1 -0
- package/dist/components/PageHero.d.ts +15 -0
- package/dist/components/ThemeToggle.d.ts +1 -0
- package/dist/components/Toast.d.ts +33 -0
- package/dist/components/index.d.ts +9 -0
- package/dist/components/ui/Accordion.d.ts +26 -0
- package/dist/components/ui/AdvancedTable.d.ts +149 -0
- package/dist/components/ui/Alert.d.ts +8 -0
- package/dist/components/ui/AppHeader.d.ts +17 -0
- package/dist/components/ui/Autocomplete.d.ts +30 -0
- package/dist/components/ui/Avatar.d.ts +22 -0
- package/dist/components/ui/Badge.d.ts +6 -0
- package/dist/components/ui/Breadcrumb.d.ts +19 -0
- package/dist/components/ui/Button.d.ts +9 -0
- package/dist/components/ui/Calendar.d.ts +35 -0
- package/dist/components/ui/Card.d.ts +24 -0
- package/dist/components/ui/Carousel.d.ts +31 -0
- package/dist/components/ui/Checkbox.d.ts +12 -0
- package/dist/components/ui/Chip.d.ts +14 -0
- package/dist/components/ui/Collapsible.d.ts +23 -0
- package/dist/components/ui/CollapsibleCode.d.ts +9 -0
- package/dist/components/ui/ColumnCustomizationDrawer.d.ts +15 -0
- package/dist/components/ui/Command.d.ts +18 -0
- package/dist/components/ui/Container.d.ts +70 -0
- package/dist/components/ui/DataGrid.d.ts +64 -0
- package/dist/components/ui/DatePicker.d.ts +12 -0
- package/dist/components/ui/DateRangePicker.d.ts +24 -0
- package/dist/components/ui/Dialog.d.ts +40 -0
- package/dist/components/ui/DocumentEditor.d.ts +21 -0
- package/dist/components/ui/DragDrop.d.ts +50 -0
- package/dist/components/ui/Dropdown.d.ts +30 -0
- package/dist/components/ui/DropdownMenu.d.ts +46 -0
- package/dist/components/ui/EmptyState.d.ts +27 -0
- package/dist/components/ui/FileUpload.d.ts +16 -0
- package/dist/components/ui/Filter.d.ts +38 -0
- package/dist/components/ui/Form.d.ts +79 -0
- package/dist/components/ui/Icon.d.ts +22 -0
- package/dist/components/ui/Input.d.ts +6 -0
- package/dist/components/ui/Label.d.ts +2 -0
- package/dist/components/ui/List.d.ts +38 -0
- package/dist/components/ui/MWLoader.d.ts +56 -0
- package/dist/components/ui/Menu.d.ts +51 -0
- package/dist/components/ui/Modal.d.ts +24 -0
- package/dist/components/ui/MultiSelect.d.ts +22 -0
- package/dist/components/ui/Notification.d.ts +57 -0
- package/dist/components/ui/PageHeader.d.ts +10 -0
- package/dist/components/ui/Pagination.d.ts +23 -0
- package/dist/components/ui/Panel.d.ts +61 -0
- package/dist/components/ui/Popover.d.ts +27 -0
- package/dist/components/ui/Progress.d.ts +9 -0
- package/dist/components/ui/RadioGroup.d.ts +20 -0
- package/dist/components/ui/Rating.d.ts +10 -0
- package/dist/components/ui/RichTextEditor.d.ts +17 -0
- package/dist/components/ui/ScheduleGrid.d.ts +28 -0
- package/dist/components/ui/ScrollArea.d.ts +10 -0
- package/dist/components/ui/SearchBar.d.ts +33 -0
- package/dist/components/ui/Select.d.ts +44 -0
- package/dist/components/ui/Separator.d.ts +6 -0
- package/dist/components/ui/Sheet.d.ts +41 -0
- package/dist/components/ui/Sidebar.d.ts +91 -0
- package/dist/components/ui/Skeleton.d.ts +8 -0
- package/dist/components/ui/Slider.d.ts +12 -0
- package/dist/components/ui/Snackbar.d.ts +42 -0
- package/dist/components/ui/Spinner.d.ts +12 -0
- package/dist/components/ui/StatusBadge.d.ts +10 -0
- package/dist/components/ui/Stepper.d.ts +12 -0
- package/dist/components/ui/Switch.d.ts +25 -0
- package/dist/components/ui/Table.d.ts +32 -0
- package/dist/components/ui/Tabs.d.ts +27 -0
- package/dist/components/ui/Textarea.d.ts +7 -0
- package/dist/components/ui/Thumbnail.d.ts +57 -0
- package/dist/components/ui/TimePicker.d.ts +16 -0
- package/dist/components/ui/TimeRangePicker.d.ts +23 -0
- package/dist/components/ui/Timeline.d.ts +22 -0
- package/dist/components/ui/Toast.d.ts +21 -0
- package/dist/components/ui/ToggleGroup.d.ts +24 -0
- package/dist/components/ui/Tooltip.d.ts +13 -0
- package/dist/components/ui/TreeView.d.ts +28 -0
- package/dist/components/ui/Typography.d.ts +36 -0
- package/dist/components/ui/index.d.ts +86 -0
- package/dist/data/enhanced-icons.d.ts +49 -0
- package/dist/data/icons.d.ts +17 -0
- package/dist/hooks/index.d.ts +2 -0
- package/dist/hooks/useIconSearch.d.ts +7 -0
- package/dist/hooks/useKeyboardShortcuts.d.ts +38 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.esm.js +51783 -0
- package/dist/index.esm.js.map +1 -0
- package/dist/index.js +52033 -0
- package/dist/index.js.map +1 -0
- package/dist/lib/lucide-icons.d.ts +83 -0
- package/dist/node_modules/@swc/helpers/cjs/_interop_require_default.d.cts +2 -0
- package/dist/node_modules/@swc/helpers/cjs/_interop_require_wildcard.d.cts +2 -0
- package/dist/node_modules/clsx/dist/clsx.d.mts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/Icon.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/createLucideIcon.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/defaultAttributes.d.ts +12 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/a-arrow-down.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/a-arrow-up.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/a-large-small.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/accessibility.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/activity.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/air-vent.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/airplay.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/alarm-clock-check.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/alarm-clock-minus.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/alarm-clock-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/alarm-clock-plus.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/alarm-clock.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/alarm-smoke.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/album.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/align-center-horizontal.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/align-center-vertical.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/align-center.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/align-end-horizontal.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/align-end-vertical.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/align-horizontal-distribute-center.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/align-horizontal-distribute-end.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/align-horizontal-distribute-start.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/align-horizontal-justify-center.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/align-horizontal-justify-end.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/align-horizontal-justify-start.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/align-horizontal-space-around.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/align-horizontal-space-between.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/align-justify.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/align-left.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/align-right.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/align-start-horizontal.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/align-start-vertical.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/align-vertical-distribute-center.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/align-vertical-distribute-end.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/align-vertical-distribute-start.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/align-vertical-justify-center.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/align-vertical-justify-end.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/align-vertical-justify-start.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/align-vertical-space-around.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/align-vertical-space-between.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/ambulance.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/ampersand.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/ampersands.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/amphora.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/anchor.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/angry.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/annoyed.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/antenna.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/anvil.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/aperture.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/app-window-mac.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/app-window.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/apple.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/archive-restore.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/archive-x.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/archive.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/armchair.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/arrow-big-down-dash.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/arrow-big-down.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/arrow-big-left-dash.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/arrow-big-left.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/arrow-big-right-dash.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/arrow-big-right.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/arrow-big-up-dash.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/arrow-big-up.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/arrow-down-0-1.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/arrow-down-1-0.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/arrow-down-a-z.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/arrow-down-from-line.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/arrow-down-left.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/arrow-down-narrow-wide.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/arrow-down-right.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/arrow-down-to-dot.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/arrow-down-to-line.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/arrow-down-up.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/arrow-down-wide-narrow.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/arrow-down-z-a.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/arrow-down.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/arrow-left-from-line.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/arrow-left-right.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/arrow-left-to-line.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/arrow-left.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/arrow-right-from-line.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/arrow-right-left.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/arrow-right-to-line.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/arrow-right.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/arrow-up-0-1.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/arrow-up-1-0.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/arrow-up-a-z.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/arrow-up-down.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/arrow-up-from-dot.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/arrow-up-from-line.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/arrow-up-left.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/arrow-up-narrow-wide.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/arrow-up-right.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/arrow-up-to-line.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/arrow-up-wide-narrow.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/arrow-up-z-a.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/arrow-up.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/arrows-up-from-line.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/asterisk.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/at-sign.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/atom.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/audio-lines.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/audio-waveform.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/award.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/axe.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/axis-3d.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/baby.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/backpack.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/badge-alert.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/badge-cent.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/badge-check.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/badge-dollar-sign.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/badge-euro.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/badge-help.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/badge-indian-rupee.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/badge-info.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/badge-japanese-yen.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/badge-minus.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/badge-percent.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/badge-plus.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/badge-pound-sterling.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/badge-russian-ruble.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/badge-swiss-franc.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/badge-x.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/badge.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/baggage-claim.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/ban.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/banana.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/bandage.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/banknote.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/barcode.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/baseline.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/bath.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/battery-charging.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/battery-full.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/battery-low.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/battery-medium.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/battery-warning.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/battery.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/beaker.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/bean-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/bean.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/bed-double.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/bed-single.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/bed.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/beef.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/beer-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/beer.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/bell-dot.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/bell-electric.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/bell-minus.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/bell-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/bell-plus.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/bell-ring.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/bell.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/between-horizontal-end.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/between-horizontal-start.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/between-vertical-end.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/between-vertical-start.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/biceps-flexed.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/bike.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/binary.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/binoculars.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/biohazard.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/bird.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/bitcoin.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/blend.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/blinds.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/blocks.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/bluetooth-connected.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/bluetooth-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/bluetooth-searching.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/bluetooth.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/bold.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/bolt.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/bomb.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/bone.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/book-a.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/book-audio.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/book-check.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/book-copy.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/book-dashed.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/book-down.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/book-headphones.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/book-heart.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/book-image.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/book-key.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/book-lock.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/book-marked.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/book-minus.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/book-open-check.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/book-open-text.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/book-open.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/book-plus.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/book-text.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/book-type.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/book-up-2.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/book-up.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/book-user.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/book-x.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/book.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/bookmark-check.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/bookmark-minus.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/bookmark-plus.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/bookmark-x.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/bookmark.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/boom-box.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/bot-message-square.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/bot-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/bot.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/box.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/boxes.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/braces.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/brackets.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/brain-circuit.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/brain-cog.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/brain.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/brick-wall.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/briefcase-business.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/briefcase-conveyor-belt.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/briefcase-medical.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/briefcase.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/bring-to-front.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/brush.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/bug-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/bug-play.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/bug.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/building-2.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/building.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/bus-front.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/bus.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/cable-car.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/cable.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/cake-slice.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/cake.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/calculator.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/calendar-1.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/calendar-arrow-down.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/calendar-arrow-up.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/calendar-check-2.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/calendar-check.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/calendar-clock.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/calendar-cog.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/calendar-days.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/calendar-fold.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/calendar-heart.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/calendar-minus-2.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/calendar-minus.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/calendar-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/calendar-plus-2.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/calendar-plus.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/calendar-range.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/calendar-search.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/calendar-sync.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/calendar-x-2.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/calendar-x.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/calendar.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/camera-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/camera.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/candy-cane.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/candy-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/candy.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/cannabis.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/captions-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/captions.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/car-front.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/car-taxi-front.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/car.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/caravan.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/carrot.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/case-lower.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/case-sensitive.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/case-upper.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/cassette-tape.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/cast.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/castle.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/cat.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/cctv.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/chart-area.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/chart-bar-big.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/chart-bar-decreasing.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/chart-bar-increasing.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/chart-bar-stacked.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/chart-bar.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/chart-candlestick.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/chart-column-big.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/chart-column-decreasing.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/chart-column-increasing.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/chart-column-stacked.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/chart-column.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/chart-gantt.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/chart-line.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/chart-network.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/chart-no-axes-column-decreasing.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/chart-no-axes-column-increasing.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/chart-no-axes-column.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/chart-no-axes-combined.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/chart-no-axes-gantt.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/chart-pie.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/chart-scatter.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/chart-spline.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/check-check.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/check.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/chef-hat.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/cherry.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/chevron-down.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/chevron-first.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/chevron-last.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/chevron-left.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/chevron-right.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/chevron-up.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/chevrons-down-up.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/chevrons-down.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/chevrons-left-right-ellipsis.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/chevrons-left-right.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/chevrons-left.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/chevrons-right-left.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/chevrons-right.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/chevrons-up-down.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/chevrons-up.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/chrome.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/church.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/cigarette-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/cigarette.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/circle-alert.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/circle-arrow-down.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/circle-arrow-left.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/circle-arrow-out-down-left.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/circle-arrow-out-down-right.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/circle-arrow-out-up-left.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/circle-arrow-out-up-right.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/circle-arrow-right.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/circle-arrow-up.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/circle-check-big.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/circle-check.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/circle-chevron-down.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/circle-chevron-left.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/circle-chevron-right.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/circle-chevron-up.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/circle-dashed.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/circle-divide.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/circle-dollar-sign.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/circle-dot-dashed.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/circle-dot.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/circle-ellipsis.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/circle-equal.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/circle-fading-arrow-up.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/circle-fading-plus.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/circle-gauge.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/circle-help.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/circle-minus.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/circle-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/circle-parking-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/circle-parking.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/circle-pause.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/circle-percent.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/circle-play.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/circle-plus.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/circle-power.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/circle-slash-2.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/circle-slash.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/circle-stop.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/circle-user-round.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/circle-user.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/circle-x.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/circle.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/circuit-board.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/citrus.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/clapperboard.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/clipboard-check.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/clipboard-copy.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/clipboard-list.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/clipboard-minus.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/clipboard-paste.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/clipboard-pen-line.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/clipboard-pen.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/clipboard-plus.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/clipboard-type.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/clipboard-x.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/clipboard.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/clock-1.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/clock-10.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/clock-11.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/clock-12.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/clock-2.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/clock-3.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/clock-4.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/clock-5.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/clock-6.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/clock-7.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/clock-8.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/clock-9.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/clock-alert.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/clock-arrow-down.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/clock-arrow-up.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/clock.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/cloud-alert.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/cloud-cog.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/cloud-download.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/cloud-drizzle.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/cloud-fog.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/cloud-hail.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/cloud-lightning.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/cloud-moon-rain.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/cloud-moon.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/cloud-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/cloud-rain-wind.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/cloud-rain.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/cloud-snow.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/cloud-sun-rain.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/cloud-sun.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/cloud-upload.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/cloud.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/cloudy.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/clover.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/club.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/code-xml.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/code.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/codepen.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/codesandbox.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/coffee.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/cog.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/coins.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/columns-2.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/columns-3.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/columns-4.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/combine.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/command.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/compass.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/component.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/computer.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/concierge-bell.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/cone.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/construction.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/contact-round.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/contact.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/container.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/contrast.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/cookie.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/cooking-pot.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/copy-check.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/copy-minus.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/copy-plus.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/copy-slash.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/copy-x.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/copy.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/copyleft.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/copyright.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/corner-down-left.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/corner-down-right.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/corner-left-down.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/corner-left-up.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/corner-right-down.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/corner-right-up.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/corner-up-left.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/corner-up-right.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/cpu.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/creative-commons.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/credit-card.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/croissant.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/crop.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/cross.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/crosshair.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/crown.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/cuboid.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/cup-soda.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/currency.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/cylinder.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/dam.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/database-backup.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/database-zap.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/database.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/delete.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/dessert.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/diameter.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/diamond-minus.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/diamond-percent.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/diamond-plus.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/diamond.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/dice-1.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/dice-2.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/dice-3.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/dice-4.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/dice-5.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/dice-6.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/dices.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/diff.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/disc-2.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/disc-3.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/disc-album.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/disc.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/divide.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/dna-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/dna.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/dock.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/dog.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/dollar-sign.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/donut.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/door-closed.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/door-open.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/dot.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/download.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/drafting-compass.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/drama.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/dribbble.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/drill.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/droplet.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/droplets.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/drum.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/drumstick.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/dumbbell.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/ear-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/ear.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/earth-lock.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/earth.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/eclipse.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/egg-fried.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/egg-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/egg.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/ellipsis-vertical.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/ellipsis.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/equal-approximately.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/equal-not.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/equal.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/eraser.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/ethernet-port.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/euro.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/expand.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/external-link.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/eye-closed.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/eye-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/eye.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/facebook.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/factory.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/fan.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/fast-forward.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/feather.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/fence.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/ferris-wheel.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/figma.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/file-archive.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/file-audio-2.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/file-audio.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/file-axis-3d.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/file-badge-2.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/file-badge.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/file-box.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/file-chart-column-increasing.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/file-chart-column.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/file-chart-line.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/file-chart-pie.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/file-check-2.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/file-check.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/file-clock.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/file-code-2.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/file-code.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/file-cog.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/file-diff.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/file-digit.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/file-down.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/file-heart.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/file-image.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/file-input.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/file-json-2.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/file-json.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/file-key-2.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/file-key.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/file-lock-2.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/file-lock.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/file-minus-2.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/file-minus.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/file-music.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/file-output.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/file-pen-line.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/file-pen.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/file-plus-2.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/file-plus.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/file-question.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/file-scan.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/file-search-2.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/file-search.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/file-sliders.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/file-spreadsheet.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/file-stack.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/file-symlink.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/file-terminal.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/file-text.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/file-type-2.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/file-type.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/file-up.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/file-user.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/file-video-2.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/file-video.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/file-volume-2.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/file-volume.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/file-warning.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/file-x-2.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/file-x.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/file.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/files.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/film.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/filter-x.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/filter.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/fingerprint.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/fire-extinguisher.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/fish-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/fish-symbol.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/fish.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/flag-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/flag-triangle-left.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/flag-triangle-right.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/flag.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/flame-kindling.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/flame.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/flashlight-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/flashlight.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/flask-conical-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/flask-conical.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/flask-round.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/flip-horizontal-2.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/flip-horizontal.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/flip-vertical-2.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/flip-vertical.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/flower-2.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/flower.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/focus.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/fold-horizontal.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/fold-vertical.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/folder-archive.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/folder-check.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/folder-clock.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/folder-closed.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/folder-code.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/folder-cog.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/folder-dot.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/folder-down.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/folder-git-2.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/folder-git.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/folder-heart.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/folder-input.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/folder-kanban.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/folder-key.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/folder-lock.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/folder-minus.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/folder-open-dot.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/folder-open.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/folder-output.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/folder-pen.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/folder-plus.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/folder-root.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/folder-search-2.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/folder-search.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/folder-symlink.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/folder-sync.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/folder-tree.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/folder-up.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/folder-x.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/folder.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/folders.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/footprints.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/forklift.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/forward.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/frame.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/framer.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/frown.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/fuel.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/fullscreen.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/gallery-horizontal-end.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/gallery-horizontal.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/gallery-thumbnails.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/gallery-vertical-end.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/gallery-vertical.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/gamepad-2.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/gamepad.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/gauge.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/gavel.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/gem.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/ghost.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/gift.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/git-branch-plus.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/git-branch.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/git-commit-horizontal.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/git-commit-vertical.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/git-compare-arrows.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/git-compare.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/git-fork.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/git-graph.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/git-merge.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/git-pull-request-arrow.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/git-pull-request-closed.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/git-pull-request-create-arrow.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/git-pull-request-create.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/git-pull-request-draft.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/git-pull-request.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/github.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/gitlab.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/glass-water.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/glasses.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/globe-lock.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/globe.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/goal.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/grab.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/graduation-cap.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/grape.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/grid-2x2-check.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/grid-2x2-plus.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/grid-2x2-x.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/grid-2x2.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/grid-3x3.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/grip-horizontal.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/grip-vertical.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/grip.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/group.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/guitar.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/ham.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/hammer.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/hand-coins.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/hand-heart.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/hand-helping.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/hand-metal.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/hand-platter.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/hand.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/handshake.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/hard-drive-download.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/hard-drive-upload.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/hard-drive.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/hard-hat.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/hash.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/haze.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/hdmi-port.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/heading-1.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/heading-2.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/heading-3.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/heading-4.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/heading-5.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/heading-6.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/heading.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/headphone-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/headphones.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/headset.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/heart-crack.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/heart-handshake.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/heart-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/heart-pulse.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/heart.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/heater.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/hexagon.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/highlighter.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/history.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/hop-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/hop.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/hospital.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/hotel.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/hourglass.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/house-plug.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/house-plus.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/house.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/ice-cream-bowl.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/ice-cream-cone.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/id-card.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/image-down.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/image-minus.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/image-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/image-play.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/image-plus.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/image-up.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/image-upscale.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/image.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/images.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/import.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/inbox.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/indent-decrease.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/indent-increase.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/index.d.ts +1541 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/indian-rupee.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/infinity.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/info.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/inspection-panel.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/instagram.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/italic.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/iteration-ccw.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/iteration-cw.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/japanese-yen.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/joystick.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/kanban.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/key-round.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/key-square.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/key.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/keyboard-music.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/keyboard-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/keyboard.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/lamp-ceiling.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/lamp-desk.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/lamp-floor.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/lamp-wall-down.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/lamp-wall-up.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/lamp.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/land-plot.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/landmark.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/languages.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/laptop-minimal-check.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/laptop-minimal.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/laptop.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/lasso-select.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/lasso.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/laugh.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/layers-2.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/layers-3.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/layers.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/layout-dashboard.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/layout-grid.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/layout-list.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/layout-panel-left.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/layout-panel-top.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/layout-template.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/leaf.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/leafy-green.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/lectern.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/letter-text.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/library-big.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/library.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/life-buoy.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/ligature.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/lightbulb-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/lightbulb.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/link-2-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/link-2.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/link.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/linkedin.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/list-check.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/list-checks.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/list-collapse.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/list-end.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/list-filter.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/list-minus.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/list-music.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/list-ordered.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/list-plus.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/list-restart.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/list-start.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/list-todo.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/list-tree.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/list-video.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/list-x.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/list.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/loader-circle.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/loader-pinwheel.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/loader.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/locate-fixed.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/locate-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/locate.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/lock-keyhole-open.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/lock-keyhole.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/lock-open.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/lock.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/log-in.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/log-out.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/logs.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/lollipop.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/luggage.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/magnet.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/mail-check.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/mail-minus.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/mail-open.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/mail-plus.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/mail-question.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/mail-search.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/mail-warning.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/mail-x.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/mail.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/mailbox.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/mails.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/map-pin-check-inside.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/map-pin-check.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/map-pin-house.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/map-pin-minus-inside.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/map-pin-minus.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/map-pin-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/map-pin-plus-inside.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/map-pin-plus.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/map-pin-x-inside.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/map-pin-x.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/map-pin.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/map-pinned.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/map.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/martini.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/maximize-2.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/maximize.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/medal.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/megaphone-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/megaphone.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/meh.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/memory-stick.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/menu.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/merge.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/message-circle-code.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/message-circle-dashed.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/message-circle-heart.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/message-circle-more.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/message-circle-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/message-circle-plus.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/message-circle-question.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/message-circle-reply.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/message-circle-warning.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/message-circle-x.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/message-circle.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/message-square-code.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/message-square-dashed.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/message-square-diff.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/message-square-dot.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/message-square-heart.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/message-square-lock.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/message-square-more.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/message-square-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/message-square-plus.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/message-square-quote.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/message-square-reply.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/message-square-share.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/message-square-text.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/message-square-warning.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/message-square-x.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/message-square.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/messages-square.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/mic-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/mic-vocal.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/mic.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/microchip.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/microscope.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/microwave.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/milestone.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/milk-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/milk.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/minimize-2.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/minimize.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/minus.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/monitor-check.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/monitor-cog.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/monitor-dot.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/monitor-down.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/monitor-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/monitor-pause.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/monitor-play.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/monitor-smartphone.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/monitor-speaker.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/monitor-stop.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/monitor-up.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/monitor-x.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/monitor.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/moon-star.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/moon.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/mountain-snow.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/mountain.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/mouse-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/mouse-pointer-2.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/mouse-pointer-ban.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/mouse-pointer-click.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/mouse-pointer.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/mouse.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/move-3d.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/move-diagonal-2.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/move-diagonal.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/move-down-left.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/move-down-right.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/move-down.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/move-horizontal.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/move-left.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/move-right.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/move-up-left.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/move-up-right.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/move-up.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/move-vertical.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/move.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/music-2.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/music-3.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/music-4.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/music.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/navigation-2-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/navigation-2.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/navigation-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/navigation.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/network.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/newspaper.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/nfc.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/notebook-pen.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/notebook-tabs.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/notebook-text.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/notebook.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/notepad-text-dashed.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/notepad-text.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/nut-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/nut.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/octagon-alert.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/octagon-minus.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/octagon-pause.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/octagon-x.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/octagon.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/omega.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/option.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/orbit.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/origami.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/package-2.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/package-check.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/package-minus.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/package-open.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/package-plus.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/package-search.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/package-x.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/package.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/paint-bucket.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/paint-roller.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/paintbrush-vertical.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/paintbrush.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/palette.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/panel-bottom-close.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/panel-bottom-dashed.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/panel-bottom-open.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/panel-bottom.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/panel-left-close.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/panel-left-dashed.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/panel-left-open.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/panel-left.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/panel-right-close.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/panel-right-dashed.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/panel-right-open.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/panel-right.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/panel-top-close.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/panel-top-dashed.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/panel-top-open.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/panel-top.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/panels-left-bottom.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/panels-right-bottom.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/panels-top-left.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/paperclip.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/parentheses.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/parking-meter.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/party-popper.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/pause.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/paw-print.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/pc-case.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/pen-line.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/pen-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/pen-tool.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/pen.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/pencil-line.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/pencil-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/pencil-ruler.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/pencil.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/pentagon.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/percent.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/person-standing.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/philippine-peso.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/phone-call.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/phone-forwarded.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/phone-incoming.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/phone-missed.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/phone-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/phone-outgoing.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/phone.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/pi.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/piano.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/pickaxe.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/picture-in-picture-2.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/picture-in-picture.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/piggy-bank.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/pilcrow-left.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/pilcrow-right.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/pilcrow.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/pill-bottle.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/pill.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/pin-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/pin.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/pipette.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/pizza.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/plane-landing.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/plane-takeoff.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/plane.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/play.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/plug-2.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/plug-zap.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/plug.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/plus.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/pocket-knife.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/pocket.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/podcast.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/pointer-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/pointer.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/popcorn.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/popsicle.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/pound-sterling.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/power-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/power.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/presentation.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/printer-check.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/printer.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/projector.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/proportions.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/puzzle.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/pyramid.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/qr-code.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/quote.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/rabbit.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/radar.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/radiation.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/radical.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/radio-receiver.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/radio-tower.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/radio.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/radius.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/rail-symbol.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/rainbow.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/rat.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/ratio.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/receipt-cent.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/receipt-euro.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/receipt-indian-rupee.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/receipt-japanese-yen.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/receipt-pound-sterling.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/receipt-russian-ruble.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/receipt-swiss-franc.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/receipt-text.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/receipt.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/rectangle-ellipsis.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/rectangle-horizontal.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/rectangle-vertical.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/recycle.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/redo-2.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/redo-dot.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/redo.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/refresh-ccw-dot.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/refresh-ccw.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/refresh-cw-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/refresh-cw.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/refrigerator.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/regex.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/remove-formatting.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/repeat-1.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/repeat-2.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/repeat.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/replace-all.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/replace.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/reply-all.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/reply.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/rewind.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/ribbon.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/rocket.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/rocking-chair.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/roller-coaster.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/rotate-3d.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/rotate-ccw-square.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/rotate-ccw.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/rotate-cw-square.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/rotate-cw.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/route-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/route.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/router.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/rows-2.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/rows-3.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/rows-4.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/rss.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/ruler.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/russian-ruble.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/sailboat.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/salad.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/sandwich.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/satellite-dish.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/satellite.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/save-all.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/save-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/save.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/scale-3d.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/scale.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/scaling.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/scan-barcode.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/scan-eye.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/scan-face.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/scan-line.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/scan-qr-code.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/scan-search.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/scan-text.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/scan.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/school.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/scissors-line-dashed.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/scissors.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/screen-share-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/screen-share.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/scroll-text.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/scroll.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/search-check.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/search-code.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/search-slash.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/search-x.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/search.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/section.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/send-horizontal.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/send-to-back.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/send.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/separator-horizontal.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/separator-vertical.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/server-cog.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/server-crash.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/server-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/server.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/settings-2.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/settings.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/shapes.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/share-2.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/share.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/sheet.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/shell.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/shield-alert.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/shield-ban.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/shield-check.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/shield-ellipsis.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/shield-half.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/shield-minus.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/shield-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/shield-plus.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/shield-question.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/shield-x.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/shield.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/ship-wheel.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/ship.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/shirt.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/shopping-bag.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/shopping-basket.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/shopping-cart.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/shovel.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/shower-head.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/shrink.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/shrub.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/shuffle.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/sigma.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/signal-high.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/signal-low.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/signal-medium.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/signal-zero.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/signal.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/signature.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/signpost-big.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/signpost.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/siren.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/skip-back.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/skip-forward.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/skull.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/slack.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/slash.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/slice.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/sliders-horizontal.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/sliders-vertical.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/smartphone-charging.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/smartphone-nfc.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/smartphone.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/smile-plus.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/smile.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/snail.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/snowflake.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/sofa.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/soup.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/space.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/spade.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/sparkle.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/sparkles.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/speaker.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/speech.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/spell-check-2.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/spell-check.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/spline.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/split.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/spray-can.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/sprout.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/square-activity.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/square-arrow-down-left.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/square-arrow-down-right.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/square-arrow-down.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/square-arrow-left.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/square-arrow-out-down-left.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/square-arrow-out-down-right.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/square-arrow-out-up-left.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/square-arrow-out-up-right.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/square-arrow-right.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/square-arrow-up-left.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/square-arrow-up-right.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/square-arrow-up.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/square-asterisk.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/square-bottom-dashed-scissors.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/square-chart-gantt.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/square-check-big.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/square-check.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/square-chevron-down.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/square-chevron-left.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/square-chevron-right.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/square-chevron-up.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/square-code.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/square-dashed-bottom-code.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/square-dashed-bottom.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/square-dashed-kanban.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/square-dashed-mouse-pointer.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/square-dashed.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/square-divide.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/square-dot.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/square-equal.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/square-function.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/square-kanban.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/square-library.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/square-m.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/square-menu.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/square-minus.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/square-mouse-pointer.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/square-parking-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/square-parking.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/square-pen.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/square-percent.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/square-pi.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/square-pilcrow.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/square-play.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/square-plus.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/square-power.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/square-radical.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/square-scissors.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/square-sigma.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/square-slash.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/square-split-horizontal.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/square-split-vertical.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/square-square.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/square-stack.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/square-terminal.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/square-user-round.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/square-user.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/square-x.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/square.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/squircle.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/squirrel.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/stamp.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/star-half.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/star-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/star.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/step-back.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/step-forward.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/stethoscope.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/sticker.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/sticky-note.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/store.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/stretch-horizontal.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/stretch-vertical.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/strikethrough.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/subscript.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/sun-dim.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/sun-medium.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/sun-moon.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/sun-snow.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/sun.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/sunrise.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/sunset.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/superscript.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/swatch-book.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/swiss-franc.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/switch-camera.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/sword.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/swords.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/syringe.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/table-2.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/table-cells-merge.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/table-cells-split.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/table-columns-split.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/table-of-contents.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/table-properties.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/table-rows-split.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/table.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/tablet-smartphone.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/tablet.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/tablets.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/tag.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/tags.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/tally-1.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/tally-2.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/tally-3.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/tally-4.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/tally-5.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/tangent.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/target.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/telescope.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/tent-tree.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/tent.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/terminal.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/test-tube-diagonal.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/test-tube.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/test-tubes.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/text-cursor-input.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/text-cursor.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/text-quote.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/text-search.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/text-select.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/text.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/theater.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/thermometer-snowflake.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/thermometer-sun.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/thermometer.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/thumbs-down.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/thumbs-up.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/ticket-check.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/ticket-minus.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/ticket-percent.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/ticket-plus.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/ticket-slash.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/ticket-x.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/ticket.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/tickets-plane.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/tickets.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/timer-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/timer-reset.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/timer.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/toggle-left.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/toggle-right.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/toilet.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/tornado.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/torus.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/touchpad-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/touchpad.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/tower-control.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/toy-brick.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/tractor.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/traffic-cone.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/train-front-tunnel.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/train-front.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/train-track.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/tram-front.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/trash-2.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/trash.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/tree-deciduous.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/tree-palm.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/tree-pine.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/trees.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/trello.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/trending-down.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/trending-up-down.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/trending-up.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/triangle-alert.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/triangle-right.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/triangle.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/trophy.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/truck.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/turtle.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/tv-minimal-play.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/tv-minimal.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/tv.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/twitch.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/twitter.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/type-outline.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/type.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/umbrella-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/umbrella.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/underline.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/undo-2.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/undo-dot.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/undo.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/unfold-horizontal.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/unfold-vertical.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/ungroup.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/university.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/unlink-2.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/unlink.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/unplug.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/upload.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/usb.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/user-check.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/user-cog.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/user-minus.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/user-pen.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/user-plus.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/user-round-check.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/user-round-cog.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/user-round-minus.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/user-round-pen.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/user-round-plus.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/user-round-search.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/user-round-x.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/user-round.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/user-search.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/user-x.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/user.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/users-round.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/users.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/utensils-crossed.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/utensils.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/utility-pole.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/variable.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/vault.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/vegan.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/venetian-mask.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/vibrate-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/vibrate.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/video-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/video.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/videotape.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/view.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/voicemail.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/volleyball.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/volume-1.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/volume-2.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/volume-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/volume-x.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/volume.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/vote.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/wallet-cards.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/wallet-minimal.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/wallet.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/wallpaper.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/wand-sparkles.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/wand.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/warehouse.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/washing-machine.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/watch.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/waves.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/waypoints.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/webcam.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/webhook-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/webhook.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/weight.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/wheat-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/wheat.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/whole-word.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/wifi-high.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/wifi-low.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/wifi-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/wifi-zero.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/wifi.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/wind-arrow-down.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/wind.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/wine-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/wine.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/workflow.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/worm.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/wrap-text.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/wrench.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/x.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/youtube.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/zap-off.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/zap.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/zoom-in.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/zoom-out.d.ts +2 -0
- package/dist/node_modules/lucide-react/dist/esm/lucide-react.d.ts +1545 -0
- package/dist/node_modules/lucide-react/dist/esm/shared/src/utils.d.ts +8 -0
- package/dist/node_modules/next/dist/client/add-base-path.d.ts +1 -0
- package/dist/node_modules/next/dist/client/add-locale.d.ts +1 -0
- package/dist/node_modules/next/dist/client/detect-domain-locale.d.ts +1 -0
- package/dist/node_modules/next/dist/client/get-domain-locale.d.ts +1 -0
- package/dist/node_modules/next/dist/client/has-base-path.d.ts +1 -0
- package/dist/node_modules/next/dist/client/link.d.ts +2 -0
- package/dist/node_modules/next/dist/client/normalize-locale-path.d.ts +1 -0
- package/dist/node_modules/next/dist/client/normalize-trailing-slash.d.ts +1 -0
- package/dist/node_modules/next/dist/client/request-idle-callback.d.ts +2 -0
- package/dist/node_modules/next/dist/client/resolve-href.d.ts +1 -0
- package/dist/node_modules/next/dist/client/use-intersection.d.ts +1 -0
- package/dist/node_modules/next/dist/client/use-merged-ref.d.ts +1 -0
- package/dist/node_modules/next/dist/compiled/amphtml-validator/index.d.ts +2 -0
- package/dist/node_modules/next/dist/compiled/commander/index.d.ts +2 -0
- package/dist/node_modules/next/dist/compiled/jest-worker/index.d.ts +2 -0
- package/dist/node_modules/next/dist/compiled/superstruct/index.d.cts +2 -0
- package/dist/node_modules/next/dist/lib/constants.d.ts +54 -0
- package/dist/node_modules/next/dist/shared/lib/escape-regexp.d.ts +2 -0
- package/dist/node_modules/next/dist/shared/lib/i18n/detect-domain-locale.d.ts +2 -0
- package/dist/node_modules/next/dist/shared/lib/i18n/normalize-locale-path.d.ts +8 -0
- package/dist/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.d.ts +2 -0
- package/dist/node_modules/next/dist/shared/lib/router/utils/add-locale.d.ts +2 -0
- package/dist/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.d.ts +2 -0
- package/dist/node_modules/next/dist/shared/lib/router/utils/app-paths.d.ts +3 -0
- package/dist/node_modules/next/dist/shared/lib/router/utils/format-url.d.ts +4 -0
- package/dist/node_modules/next/dist/shared/lib/router/utils/index.d.ts +4 -0
- package/dist/node_modules/next/dist/shared/lib/router/utils/interception-routes.d.ts +4 -0
- package/dist/node_modules/next/dist/shared/lib/router/utils/interpolate-as.d.ts +5 -0
- package/dist/node_modules/next/dist/shared/lib/router/utils/is-dynamic.d.ts +2 -0
- package/dist/node_modules/next/dist/shared/lib/router/utils/is-local-url.d.ts +2 -0
- package/dist/node_modules/next/dist/shared/lib/router/utils/omit.d.ts +2 -0
- package/dist/node_modules/next/dist/shared/lib/router/utils/parse-path.d.ts +6 -0
- package/dist/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.d.ts +2 -0
- package/dist/node_modules/next/dist/shared/lib/router/utils/querystring.d.ts +4 -0
- package/dist/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.d.ts +2 -0
- package/dist/node_modules/next/dist/shared/lib/router/utils/route-matcher.d.ts +2 -0
- package/dist/node_modules/next/dist/shared/lib/router/utils/route-regex.d.ts +5 -0
- package/dist/node_modules/next/dist/shared/lib/router/utils/sorted-routes.d.ts +3 -0
- package/dist/node_modules/next/dist/shared/lib/router-context.shared-runtime.d.ts +2 -0
- package/dist/node_modules/next/dist/shared/lib/segment.d.ts +6 -0
- package/dist/node_modules/next/dist/shared/lib/utils/error-once.d.ts +2 -0
- package/dist/node_modules/next/dist/shared/lib/utils.d.ts +18 -0
- package/dist/node_modules/next/link.d.ts +2 -0
- package/dist/node_modules/tailwind-merge/dist/bundle-mjs.d.mts +2843 -0
- package/dist/node_modules/tslib/tslib.es6.d.ts +73 -0
- package/dist/src/components/AnimationComponents.d.ts +35 -0
- package/dist/src/components/CodeSnippet.d.ts +8 -0
- package/dist/src/components/DynamicIcon.clean.d.ts +8 -0
- package/dist/src/components/DynamicIcon.d.ts +8 -0
- package/dist/src/components/Footer.d.ts +1 -0
- package/dist/src/components/Navigation.d.ts +1 -0
- package/dist/src/components/PageHero.d.ts +15 -0
- package/dist/src/components/ThemeToggle.d.ts +1 -0
- package/dist/src/components/Toast.d.ts +33 -0
- package/dist/src/components/index.d.ts +9 -0
- package/dist/src/components/ui/Accordion.d.ts +26 -0
- package/dist/src/components/ui/AdvancedTable.d.ts +149 -0
- package/dist/src/components/ui/Alert.d.ts +8 -0
- package/dist/src/components/ui/AppHeader.d.ts +17 -0
- package/dist/src/components/ui/Autocomplete.d.ts +30 -0
- package/dist/src/components/ui/Avatar.d.ts +22 -0
- package/dist/src/components/ui/Badge.d.ts +6 -0
- package/dist/src/components/ui/Breadcrumb.d.ts +19 -0
- package/dist/src/components/ui/Button.d.ts +9 -0
- package/dist/src/components/ui/Calendar.d.ts +35 -0
- package/dist/src/components/ui/Card.d.ts +24 -0
- package/dist/src/components/ui/Carousel.d.ts +31 -0
- package/dist/src/components/ui/Checkbox.d.ts +12 -0
- package/dist/src/components/ui/Chip.d.ts +14 -0
- package/dist/src/components/ui/Collapsible.d.ts +23 -0
- package/dist/src/components/ui/CollapsibleCode.d.ts +9 -0
- package/dist/src/components/ui/ColumnCustomizationDrawer.d.ts +15 -0
- package/dist/src/components/ui/Command.d.ts +18 -0
- package/dist/src/components/ui/Container.d.ts +70 -0
- package/dist/src/components/ui/DataGrid.d.ts +64 -0
- package/dist/src/components/ui/DatePicker.d.ts +12 -0
- package/dist/src/components/ui/DateRangePicker.d.ts +24 -0
- package/dist/src/components/ui/Dialog.d.ts +40 -0
- package/dist/src/components/ui/DocumentEditor.d.ts +21 -0
- package/dist/src/components/ui/DragDrop.d.ts +50 -0
- package/dist/src/components/ui/Dropdown.d.ts +30 -0
- package/dist/src/components/ui/DropdownMenu.d.ts +46 -0
- package/dist/src/components/ui/EmptyState.d.ts +27 -0
- package/dist/src/components/ui/FileUpload.d.ts +16 -0
- package/dist/src/components/ui/Filter.d.ts +38 -0
- package/dist/src/components/ui/Form.d.ts +79 -0
- package/dist/src/components/ui/Icon.d.ts +22 -0
- package/dist/src/components/ui/Input.d.ts +6 -0
- package/dist/src/components/ui/Label.d.ts +2 -0
- package/dist/src/components/ui/List.d.ts +38 -0
- package/dist/src/components/ui/MWLoader.d.ts +56 -0
- package/dist/src/components/ui/Menu.d.ts +51 -0
- package/dist/src/components/ui/Modal.d.ts +24 -0
- package/dist/src/components/ui/MultiSelect.d.ts +22 -0
- package/dist/src/components/ui/Notification.d.ts +57 -0
- package/dist/src/components/ui/PageHeader.d.ts +10 -0
- package/dist/src/components/ui/Pagination.d.ts +23 -0
- package/dist/src/components/ui/Panel.d.ts +61 -0
- package/dist/src/components/ui/Popover.d.ts +27 -0
- package/dist/src/components/ui/Progress.d.ts +9 -0
- package/dist/src/components/ui/RadioGroup.d.ts +20 -0
- package/dist/src/components/ui/Rating.d.ts +10 -0
- package/dist/src/components/ui/RichTextEditor.d.ts +17 -0
- package/dist/src/components/ui/ScheduleGrid.d.ts +28 -0
- package/dist/src/components/ui/ScrollArea.d.ts +10 -0
- package/dist/src/components/ui/SearchBar.d.ts +33 -0
- package/dist/src/components/ui/Select.d.ts +44 -0
- package/dist/src/components/ui/Separator.d.ts +6 -0
- package/dist/src/components/ui/Sheet.d.ts +41 -0
- package/dist/src/components/ui/Sidebar.d.ts +91 -0
- package/dist/src/components/ui/Skeleton.d.ts +8 -0
- package/dist/src/components/ui/Slider.d.ts +12 -0
- package/dist/src/components/ui/Snackbar.d.ts +42 -0
- package/dist/src/components/ui/Spinner.d.ts +12 -0
- package/dist/src/components/ui/StatusBadge.d.ts +10 -0
- package/dist/src/components/ui/Stepper.d.ts +12 -0
- package/dist/src/components/ui/Switch.d.ts +25 -0
- package/dist/src/components/ui/Table.d.ts +32 -0
- package/dist/src/components/ui/Tabs.d.ts +27 -0
- package/dist/src/components/ui/Textarea.d.ts +7 -0
- package/dist/src/components/ui/Thumbnail.d.ts +57 -0
- package/dist/src/components/ui/TimePicker.d.ts +16 -0
- package/dist/src/components/ui/TimeRangePicker.d.ts +23 -0
- package/dist/src/components/ui/Timeline.d.ts +22 -0
- package/dist/src/components/ui/Toast.d.ts +21 -0
- package/dist/src/components/ui/ToggleGroup.d.ts +24 -0
- package/dist/src/components/ui/Tooltip.d.ts +13 -0
- package/dist/src/components/ui/TreeView.d.ts +28 -0
- package/dist/src/components/ui/Typography.d.ts +36 -0
- package/dist/src/components/ui/index.d.ts +86 -0
- package/dist/src/data/enhanced-icons.d.ts +49 -0
- package/dist/src/data/icons.d.ts +17 -0
- package/dist/src/hooks/index.d.ts +2 -0
- package/dist/src/hooks/useIconSearch.d.ts +7 -0
- package/dist/src/hooks/useKeyboardShortcuts.d.ts +38 -0
- package/dist/src/index.d.ts +6 -0
- package/dist/src/lib/lucide-icons.d.ts +83 -0
- package/dist/src/stories/Button.d.ts +15 -0
- package/dist/src/stories/Header.d.ts +12 -0
- package/dist/src/stories/Page.d.ts +3 -0
- package/dist/src/test/setup.d.ts +1 -0
- package/dist/src/test/test-utils.d.ts +5 -0
- package/dist/src/tokens/index.d.ts +381 -0
- package/dist/src/types/index.d.ts +87 -0
- package/dist/src/utils/iconCodeGenerator.d.ts +18 -0
- package/dist/src/utils/iconNameFormatter.d.ts +23 -0
- package/dist/src/utils/index.d.ts +29 -0
- package/dist/stories/Button.d.ts +15 -0
- package/dist/stories/Header.d.ts +12 -0
- package/dist/stories/Page.d.ts +3 -0
- package/dist/styles/index.css +1 -0
- package/dist/test/setup.d.ts +1 -0
- package/dist/test/test-utils.d.ts +5 -0
- package/dist/tokens/index.d.ts +381 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -0
- package/dist/types/index.d.ts +87 -0
- package/dist/utils/iconCodeGenerator.d.ts +18 -0
- package/dist/utils/iconNameFormatter.d.ts +23 -0
- package/dist/utils/index.d.ts +29 -0
- package/package.json +126 -0
|
@@ -0,0 +1,2843 @@
|
|
|
1
|
+
export function createTailwindMerge(createConfigFirst: any, ...createConfigRest: any[]): (...args: any[]) => any;
|
|
2
|
+
export function extendTailwindMerge(configExtension: any, ...createConfig: any[]): (...args: any[]) => any;
|
|
3
|
+
export function fromTheme(key: any): {
|
|
4
|
+
(theme: any): any;
|
|
5
|
+
isThemeGetter: boolean;
|
|
6
|
+
};
|
|
7
|
+
export function getDefaultConfig(): {
|
|
8
|
+
cacheSize: number;
|
|
9
|
+
theme: {
|
|
10
|
+
animate: string[];
|
|
11
|
+
aspect: string[];
|
|
12
|
+
blur: ((value: any) => boolean)[];
|
|
13
|
+
breakpoint: ((value: any) => boolean)[];
|
|
14
|
+
color: (() => boolean)[];
|
|
15
|
+
container: ((value: any) => boolean)[];
|
|
16
|
+
'drop-shadow': ((value: any) => boolean)[];
|
|
17
|
+
ease: string[];
|
|
18
|
+
font: ((value: any) => boolean)[];
|
|
19
|
+
'font-weight': string[];
|
|
20
|
+
'inset-shadow': ((value: any) => boolean)[];
|
|
21
|
+
leading: string[];
|
|
22
|
+
perspective: string[];
|
|
23
|
+
radius: ((value: any) => boolean)[];
|
|
24
|
+
shadow: ((value: any) => boolean)[];
|
|
25
|
+
spacing: (string | ((value: any) => boolean))[];
|
|
26
|
+
text: ((value: any) => boolean)[];
|
|
27
|
+
'text-shadow': ((value: any) => boolean)[];
|
|
28
|
+
tracking: string[];
|
|
29
|
+
};
|
|
30
|
+
classGroups: {
|
|
31
|
+
/**
|
|
32
|
+
* Aspect Ratio
|
|
33
|
+
* @see https://tailwindcss.com/docs/aspect-ratio
|
|
34
|
+
*/
|
|
35
|
+
aspect: {
|
|
36
|
+
aspect: (string | ((value: any) => boolean) | {
|
|
37
|
+
(theme: any): any;
|
|
38
|
+
isThemeGetter: boolean;
|
|
39
|
+
})[];
|
|
40
|
+
}[];
|
|
41
|
+
/**
|
|
42
|
+
* Container
|
|
43
|
+
* @see https://tailwindcss.com/docs/container
|
|
44
|
+
* @deprecated since Tailwind CSS v4.0.0
|
|
45
|
+
*/
|
|
46
|
+
container: string[];
|
|
47
|
+
/**
|
|
48
|
+
* Columns
|
|
49
|
+
* @see https://tailwindcss.com/docs/columns
|
|
50
|
+
*/
|
|
51
|
+
columns: {
|
|
52
|
+
columns: (((value: any) => boolean) | {
|
|
53
|
+
(theme: any): any;
|
|
54
|
+
isThemeGetter: boolean;
|
|
55
|
+
})[];
|
|
56
|
+
}[];
|
|
57
|
+
/**
|
|
58
|
+
* Break After
|
|
59
|
+
* @see https://tailwindcss.com/docs/break-after
|
|
60
|
+
*/
|
|
61
|
+
'break-after': {
|
|
62
|
+
'break-after': string[];
|
|
63
|
+
}[];
|
|
64
|
+
/**
|
|
65
|
+
* Break Before
|
|
66
|
+
* @see https://tailwindcss.com/docs/break-before
|
|
67
|
+
*/
|
|
68
|
+
'break-before': {
|
|
69
|
+
'break-before': string[];
|
|
70
|
+
}[];
|
|
71
|
+
/**
|
|
72
|
+
* Break Inside
|
|
73
|
+
* @see https://tailwindcss.com/docs/break-inside
|
|
74
|
+
*/
|
|
75
|
+
'break-inside': {
|
|
76
|
+
'break-inside': string[];
|
|
77
|
+
}[];
|
|
78
|
+
/**
|
|
79
|
+
* Box Decoration Break
|
|
80
|
+
* @see https://tailwindcss.com/docs/box-decoration-break
|
|
81
|
+
*/
|
|
82
|
+
'box-decoration': {
|
|
83
|
+
'box-decoration': string[];
|
|
84
|
+
}[];
|
|
85
|
+
/**
|
|
86
|
+
* Box Sizing
|
|
87
|
+
* @see https://tailwindcss.com/docs/box-sizing
|
|
88
|
+
*/
|
|
89
|
+
box: {
|
|
90
|
+
box: string[];
|
|
91
|
+
}[];
|
|
92
|
+
/**
|
|
93
|
+
* Display
|
|
94
|
+
* @see https://tailwindcss.com/docs/display
|
|
95
|
+
*/
|
|
96
|
+
display: string[];
|
|
97
|
+
/**
|
|
98
|
+
* Screen Reader Only
|
|
99
|
+
* @see https://tailwindcss.com/docs/display#screen-reader-only
|
|
100
|
+
*/
|
|
101
|
+
sr: string[];
|
|
102
|
+
/**
|
|
103
|
+
* Floats
|
|
104
|
+
* @see https://tailwindcss.com/docs/float
|
|
105
|
+
*/
|
|
106
|
+
float: {
|
|
107
|
+
float: string[];
|
|
108
|
+
}[];
|
|
109
|
+
/**
|
|
110
|
+
* Clear
|
|
111
|
+
* @see https://tailwindcss.com/docs/clear
|
|
112
|
+
*/
|
|
113
|
+
clear: {
|
|
114
|
+
clear: string[];
|
|
115
|
+
}[];
|
|
116
|
+
/**
|
|
117
|
+
* Isolation
|
|
118
|
+
* @see https://tailwindcss.com/docs/isolation
|
|
119
|
+
*/
|
|
120
|
+
isolation: string[];
|
|
121
|
+
/**
|
|
122
|
+
* Object Fit
|
|
123
|
+
* @see https://tailwindcss.com/docs/object-fit
|
|
124
|
+
*/
|
|
125
|
+
'object-fit': {
|
|
126
|
+
object: string[];
|
|
127
|
+
}[];
|
|
128
|
+
/**
|
|
129
|
+
* Object Position
|
|
130
|
+
* @see https://tailwindcss.com/docs/object-position
|
|
131
|
+
*/
|
|
132
|
+
'object-position': {
|
|
133
|
+
object: (string | ((value: any) => boolean))[];
|
|
134
|
+
}[];
|
|
135
|
+
/**
|
|
136
|
+
* Overflow
|
|
137
|
+
* @see https://tailwindcss.com/docs/overflow
|
|
138
|
+
*/
|
|
139
|
+
overflow: {
|
|
140
|
+
overflow: string[];
|
|
141
|
+
}[];
|
|
142
|
+
/**
|
|
143
|
+
* Overflow X
|
|
144
|
+
* @see https://tailwindcss.com/docs/overflow
|
|
145
|
+
*/
|
|
146
|
+
'overflow-x': {
|
|
147
|
+
'overflow-x': string[];
|
|
148
|
+
}[];
|
|
149
|
+
/**
|
|
150
|
+
* Overflow Y
|
|
151
|
+
* @see https://tailwindcss.com/docs/overflow
|
|
152
|
+
*/
|
|
153
|
+
'overflow-y': {
|
|
154
|
+
'overflow-y': string[];
|
|
155
|
+
}[];
|
|
156
|
+
/**
|
|
157
|
+
* Overscroll Behavior
|
|
158
|
+
* @see https://tailwindcss.com/docs/overscroll-behavior
|
|
159
|
+
*/
|
|
160
|
+
overscroll: {
|
|
161
|
+
overscroll: string[];
|
|
162
|
+
}[];
|
|
163
|
+
/**
|
|
164
|
+
* Overscroll Behavior X
|
|
165
|
+
* @see https://tailwindcss.com/docs/overscroll-behavior
|
|
166
|
+
*/
|
|
167
|
+
'overscroll-x': {
|
|
168
|
+
'overscroll-x': string[];
|
|
169
|
+
}[];
|
|
170
|
+
/**
|
|
171
|
+
* Overscroll Behavior Y
|
|
172
|
+
* @see https://tailwindcss.com/docs/overscroll-behavior
|
|
173
|
+
*/
|
|
174
|
+
'overscroll-y': {
|
|
175
|
+
'overscroll-y': string[];
|
|
176
|
+
}[];
|
|
177
|
+
/**
|
|
178
|
+
* Position
|
|
179
|
+
* @see https://tailwindcss.com/docs/position
|
|
180
|
+
*/
|
|
181
|
+
position: string[];
|
|
182
|
+
/**
|
|
183
|
+
* Top / Right / Bottom / Left
|
|
184
|
+
* @see https://tailwindcss.com/docs/top-right-bottom-left
|
|
185
|
+
*/
|
|
186
|
+
inset: {
|
|
187
|
+
inset: (string | ((value: any) => boolean) | {
|
|
188
|
+
(theme: any): any;
|
|
189
|
+
isThemeGetter: boolean;
|
|
190
|
+
})[];
|
|
191
|
+
}[];
|
|
192
|
+
/**
|
|
193
|
+
* Right / Left
|
|
194
|
+
* @see https://tailwindcss.com/docs/top-right-bottom-left
|
|
195
|
+
*/
|
|
196
|
+
'inset-x': {
|
|
197
|
+
'inset-x': (string | ((value: any) => boolean) | {
|
|
198
|
+
(theme: any): any;
|
|
199
|
+
isThemeGetter: boolean;
|
|
200
|
+
})[];
|
|
201
|
+
}[];
|
|
202
|
+
/**
|
|
203
|
+
* Top / Bottom
|
|
204
|
+
* @see https://tailwindcss.com/docs/top-right-bottom-left
|
|
205
|
+
*/
|
|
206
|
+
'inset-y': {
|
|
207
|
+
'inset-y': (string | ((value: any) => boolean) | {
|
|
208
|
+
(theme: any): any;
|
|
209
|
+
isThemeGetter: boolean;
|
|
210
|
+
})[];
|
|
211
|
+
}[];
|
|
212
|
+
/**
|
|
213
|
+
* Start
|
|
214
|
+
* @see https://tailwindcss.com/docs/top-right-bottom-left
|
|
215
|
+
*/
|
|
216
|
+
start: {
|
|
217
|
+
start: (string | ((value: any) => boolean) | {
|
|
218
|
+
(theme: any): any;
|
|
219
|
+
isThemeGetter: boolean;
|
|
220
|
+
})[];
|
|
221
|
+
}[];
|
|
222
|
+
/**
|
|
223
|
+
* End
|
|
224
|
+
* @see https://tailwindcss.com/docs/top-right-bottom-left
|
|
225
|
+
*/
|
|
226
|
+
end: {
|
|
227
|
+
end: (string | ((value: any) => boolean) | {
|
|
228
|
+
(theme: any): any;
|
|
229
|
+
isThemeGetter: boolean;
|
|
230
|
+
})[];
|
|
231
|
+
}[];
|
|
232
|
+
/**
|
|
233
|
+
* Top
|
|
234
|
+
* @see https://tailwindcss.com/docs/top-right-bottom-left
|
|
235
|
+
*/
|
|
236
|
+
top: {
|
|
237
|
+
top: (string | ((value: any) => boolean) | {
|
|
238
|
+
(theme: any): any;
|
|
239
|
+
isThemeGetter: boolean;
|
|
240
|
+
})[];
|
|
241
|
+
}[];
|
|
242
|
+
/**
|
|
243
|
+
* Right
|
|
244
|
+
* @see https://tailwindcss.com/docs/top-right-bottom-left
|
|
245
|
+
*/
|
|
246
|
+
right: {
|
|
247
|
+
right: (string | ((value: any) => boolean) | {
|
|
248
|
+
(theme: any): any;
|
|
249
|
+
isThemeGetter: boolean;
|
|
250
|
+
})[];
|
|
251
|
+
}[];
|
|
252
|
+
/**
|
|
253
|
+
* Bottom
|
|
254
|
+
* @see https://tailwindcss.com/docs/top-right-bottom-left
|
|
255
|
+
*/
|
|
256
|
+
bottom: {
|
|
257
|
+
bottom: (string | ((value: any) => boolean) | {
|
|
258
|
+
(theme: any): any;
|
|
259
|
+
isThemeGetter: boolean;
|
|
260
|
+
})[];
|
|
261
|
+
}[];
|
|
262
|
+
/**
|
|
263
|
+
* Left
|
|
264
|
+
* @see https://tailwindcss.com/docs/top-right-bottom-left
|
|
265
|
+
*/
|
|
266
|
+
left: {
|
|
267
|
+
left: (string | ((value: any) => boolean) | {
|
|
268
|
+
(theme: any): any;
|
|
269
|
+
isThemeGetter: boolean;
|
|
270
|
+
})[];
|
|
271
|
+
}[];
|
|
272
|
+
/**
|
|
273
|
+
* Visibility
|
|
274
|
+
* @see https://tailwindcss.com/docs/visibility
|
|
275
|
+
*/
|
|
276
|
+
visibility: string[];
|
|
277
|
+
/**
|
|
278
|
+
* Z-Index
|
|
279
|
+
* @see https://tailwindcss.com/docs/z-index
|
|
280
|
+
*/
|
|
281
|
+
z: {
|
|
282
|
+
z: (string | ((value: any) => boolean))[];
|
|
283
|
+
}[];
|
|
284
|
+
/**
|
|
285
|
+
* Flex Basis
|
|
286
|
+
* @see https://tailwindcss.com/docs/flex-basis
|
|
287
|
+
*/
|
|
288
|
+
basis: {
|
|
289
|
+
basis: (string | ((value: any) => boolean) | {
|
|
290
|
+
(theme: any): any;
|
|
291
|
+
isThemeGetter: boolean;
|
|
292
|
+
})[];
|
|
293
|
+
}[];
|
|
294
|
+
/**
|
|
295
|
+
* Flex Direction
|
|
296
|
+
* @see https://tailwindcss.com/docs/flex-direction
|
|
297
|
+
*/
|
|
298
|
+
'flex-direction': {
|
|
299
|
+
flex: string[];
|
|
300
|
+
}[];
|
|
301
|
+
/**
|
|
302
|
+
* Flex Wrap
|
|
303
|
+
* @see https://tailwindcss.com/docs/flex-wrap
|
|
304
|
+
*/
|
|
305
|
+
'flex-wrap': {
|
|
306
|
+
flex: string[];
|
|
307
|
+
}[];
|
|
308
|
+
/**
|
|
309
|
+
* Flex
|
|
310
|
+
* @see https://tailwindcss.com/docs/flex
|
|
311
|
+
*/
|
|
312
|
+
flex: {
|
|
313
|
+
flex: (string | ((value: any) => boolean))[];
|
|
314
|
+
}[];
|
|
315
|
+
/**
|
|
316
|
+
* Flex Grow
|
|
317
|
+
* @see https://tailwindcss.com/docs/flex-grow
|
|
318
|
+
*/
|
|
319
|
+
grow: {
|
|
320
|
+
grow: (string | ((value: any) => boolean))[];
|
|
321
|
+
}[];
|
|
322
|
+
/**
|
|
323
|
+
* Flex Shrink
|
|
324
|
+
* @see https://tailwindcss.com/docs/flex-shrink
|
|
325
|
+
*/
|
|
326
|
+
shrink: {
|
|
327
|
+
shrink: (string | ((value: any) => boolean))[];
|
|
328
|
+
}[];
|
|
329
|
+
/**
|
|
330
|
+
* Order
|
|
331
|
+
* @see https://tailwindcss.com/docs/order
|
|
332
|
+
*/
|
|
333
|
+
order: {
|
|
334
|
+
order: (string | ((value: any) => boolean))[];
|
|
335
|
+
}[];
|
|
336
|
+
/**
|
|
337
|
+
* Grid Template Columns
|
|
338
|
+
* @see https://tailwindcss.com/docs/grid-template-columns
|
|
339
|
+
*/
|
|
340
|
+
'grid-cols': {
|
|
341
|
+
'grid-cols': (string | ((value: any) => boolean))[];
|
|
342
|
+
}[];
|
|
343
|
+
/**
|
|
344
|
+
* Grid Column Start / End
|
|
345
|
+
* @see https://tailwindcss.com/docs/grid-column
|
|
346
|
+
*/
|
|
347
|
+
'col-start-end': {
|
|
348
|
+
col: (string | ((value: any) => boolean) | {
|
|
349
|
+
span: (string | ((value: any) => boolean))[];
|
|
350
|
+
})[];
|
|
351
|
+
}[];
|
|
352
|
+
/**
|
|
353
|
+
* Grid Column Start
|
|
354
|
+
* @see https://tailwindcss.com/docs/grid-column
|
|
355
|
+
*/
|
|
356
|
+
'col-start': {
|
|
357
|
+
'col-start': (string | ((value: any) => boolean))[];
|
|
358
|
+
}[];
|
|
359
|
+
/**
|
|
360
|
+
* Grid Column End
|
|
361
|
+
* @see https://tailwindcss.com/docs/grid-column
|
|
362
|
+
*/
|
|
363
|
+
'col-end': {
|
|
364
|
+
'col-end': (string | ((value: any) => boolean))[];
|
|
365
|
+
}[];
|
|
366
|
+
/**
|
|
367
|
+
* Grid Template Rows
|
|
368
|
+
* @see https://tailwindcss.com/docs/grid-template-rows
|
|
369
|
+
*/
|
|
370
|
+
'grid-rows': {
|
|
371
|
+
'grid-rows': (string | ((value: any) => boolean))[];
|
|
372
|
+
}[];
|
|
373
|
+
/**
|
|
374
|
+
* Grid Row Start / End
|
|
375
|
+
* @see https://tailwindcss.com/docs/grid-row
|
|
376
|
+
*/
|
|
377
|
+
'row-start-end': {
|
|
378
|
+
row: (string | ((value: any) => boolean) | {
|
|
379
|
+
span: (string | ((value: any) => boolean))[];
|
|
380
|
+
})[];
|
|
381
|
+
}[];
|
|
382
|
+
/**
|
|
383
|
+
* Grid Row Start
|
|
384
|
+
* @see https://tailwindcss.com/docs/grid-row
|
|
385
|
+
*/
|
|
386
|
+
'row-start': {
|
|
387
|
+
'row-start': (string | ((value: any) => boolean))[];
|
|
388
|
+
}[];
|
|
389
|
+
/**
|
|
390
|
+
* Grid Row End
|
|
391
|
+
* @see https://tailwindcss.com/docs/grid-row
|
|
392
|
+
*/
|
|
393
|
+
'row-end': {
|
|
394
|
+
'row-end': (string | ((value: any) => boolean))[];
|
|
395
|
+
}[];
|
|
396
|
+
/**
|
|
397
|
+
* Grid Auto Flow
|
|
398
|
+
* @see https://tailwindcss.com/docs/grid-auto-flow
|
|
399
|
+
*/
|
|
400
|
+
'grid-flow': {
|
|
401
|
+
'grid-flow': string[];
|
|
402
|
+
}[];
|
|
403
|
+
/**
|
|
404
|
+
* Grid Auto Columns
|
|
405
|
+
* @see https://tailwindcss.com/docs/grid-auto-columns
|
|
406
|
+
*/
|
|
407
|
+
'auto-cols': {
|
|
408
|
+
'auto-cols': (string | ((value: any) => boolean))[];
|
|
409
|
+
}[];
|
|
410
|
+
/**
|
|
411
|
+
* Grid Auto Rows
|
|
412
|
+
* @see https://tailwindcss.com/docs/grid-auto-rows
|
|
413
|
+
*/
|
|
414
|
+
'auto-rows': {
|
|
415
|
+
'auto-rows': (string | ((value: any) => boolean))[];
|
|
416
|
+
}[];
|
|
417
|
+
/**
|
|
418
|
+
* Gap
|
|
419
|
+
* @see https://tailwindcss.com/docs/gap
|
|
420
|
+
*/
|
|
421
|
+
gap: {
|
|
422
|
+
gap: (((value: any) => boolean) | {
|
|
423
|
+
(theme: any): any;
|
|
424
|
+
isThemeGetter: boolean;
|
|
425
|
+
})[];
|
|
426
|
+
}[];
|
|
427
|
+
/**
|
|
428
|
+
* Gap X
|
|
429
|
+
* @see https://tailwindcss.com/docs/gap
|
|
430
|
+
*/
|
|
431
|
+
'gap-x': {
|
|
432
|
+
'gap-x': (((value: any) => boolean) | {
|
|
433
|
+
(theme: any): any;
|
|
434
|
+
isThemeGetter: boolean;
|
|
435
|
+
})[];
|
|
436
|
+
}[];
|
|
437
|
+
/**
|
|
438
|
+
* Gap Y
|
|
439
|
+
* @see https://tailwindcss.com/docs/gap
|
|
440
|
+
*/
|
|
441
|
+
'gap-y': {
|
|
442
|
+
'gap-y': (((value: any) => boolean) | {
|
|
443
|
+
(theme: any): any;
|
|
444
|
+
isThemeGetter: boolean;
|
|
445
|
+
})[];
|
|
446
|
+
}[];
|
|
447
|
+
/**
|
|
448
|
+
* Justify Content
|
|
449
|
+
* @see https://tailwindcss.com/docs/justify-content
|
|
450
|
+
*/
|
|
451
|
+
'justify-content': {
|
|
452
|
+
justify: string[];
|
|
453
|
+
}[];
|
|
454
|
+
/**
|
|
455
|
+
* Justify Items
|
|
456
|
+
* @see https://tailwindcss.com/docs/justify-items
|
|
457
|
+
*/
|
|
458
|
+
'justify-items': {
|
|
459
|
+
'justify-items': string[];
|
|
460
|
+
}[];
|
|
461
|
+
/**
|
|
462
|
+
* Justify Self
|
|
463
|
+
* @see https://tailwindcss.com/docs/justify-self
|
|
464
|
+
*/
|
|
465
|
+
'justify-self': {
|
|
466
|
+
'justify-self': string[];
|
|
467
|
+
}[];
|
|
468
|
+
/**
|
|
469
|
+
* Align Content
|
|
470
|
+
* @see https://tailwindcss.com/docs/align-content
|
|
471
|
+
*/
|
|
472
|
+
'align-content': {
|
|
473
|
+
content: string[];
|
|
474
|
+
}[];
|
|
475
|
+
/**
|
|
476
|
+
* Align Items
|
|
477
|
+
* @see https://tailwindcss.com/docs/align-items
|
|
478
|
+
*/
|
|
479
|
+
'align-items': {
|
|
480
|
+
items: (string | {
|
|
481
|
+
baseline: string[];
|
|
482
|
+
})[];
|
|
483
|
+
}[];
|
|
484
|
+
/**
|
|
485
|
+
* Align Self
|
|
486
|
+
* @see https://tailwindcss.com/docs/align-self
|
|
487
|
+
*/
|
|
488
|
+
'align-self': {
|
|
489
|
+
self: (string | {
|
|
490
|
+
baseline: string[];
|
|
491
|
+
})[];
|
|
492
|
+
}[];
|
|
493
|
+
/**
|
|
494
|
+
* Place Content
|
|
495
|
+
* @see https://tailwindcss.com/docs/place-content
|
|
496
|
+
*/
|
|
497
|
+
'place-content': {
|
|
498
|
+
'place-content': string[];
|
|
499
|
+
}[];
|
|
500
|
+
/**
|
|
501
|
+
* Place Items
|
|
502
|
+
* @see https://tailwindcss.com/docs/place-items
|
|
503
|
+
*/
|
|
504
|
+
'place-items': {
|
|
505
|
+
'place-items': string[];
|
|
506
|
+
}[];
|
|
507
|
+
/**
|
|
508
|
+
* Place Self
|
|
509
|
+
* @see https://tailwindcss.com/docs/place-self
|
|
510
|
+
*/
|
|
511
|
+
'place-self': {
|
|
512
|
+
'place-self': string[];
|
|
513
|
+
}[];
|
|
514
|
+
/**
|
|
515
|
+
* Padding
|
|
516
|
+
* @see https://tailwindcss.com/docs/padding
|
|
517
|
+
*/
|
|
518
|
+
p: {
|
|
519
|
+
p: (((value: any) => boolean) | {
|
|
520
|
+
(theme: any): any;
|
|
521
|
+
isThemeGetter: boolean;
|
|
522
|
+
})[];
|
|
523
|
+
}[];
|
|
524
|
+
/**
|
|
525
|
+
* Padding X
|
|
526
|
+
* @see https://tailwindcss.com/docs/padding
|
|
527
|
+
*/
|
|
528
|
+
px: {
|
|
529
|
+
px: (((value: any) => boolean) | {
|
|
530
|
+
(theme: any): any;
|
|
531
|
+
isThemeGetter: boolean;
|
|
532
|
+
})[];
|
|
533
|
+
}[];
|
|
534
|
+
/**
|
|
535
|
+
* Padding Y
|
|
536
|
+
* @see https://tailwindcss.com/docs/padding
|
|
537
|
+
*/
|
|
538
|
+
py: {
|
|
539
|
+
py: (((value: any) => boolean) | {
|
|
540
|
+
(theme: any): any;
|
|
541
|
+
isThemeGetter: boolean;
|
|
542
|
+
})[];
|
|
543
|
+
}[];
|
|
544
|
+
/**
|
|
545
|
+
* Padding Start
|
|
546
|
+
* @see https://tailwindcss.com/docs/padding
|
|
547
|
+
*/
|
|
548
|
+
ps: {
|
|
549
|
+
ps: (((value: any) => boolean) | {
|
|
550
|
+
(theme: any): any;
|
|
551
|
+
isThemeGetter: boolean;
|
|
552
|
+
})[];
|
|
553
|
+
}[];
|
|
554
|
+
/**
|
|
555
|
+
* Padding End
|
|
556
|
+
* @see https://tailwindcss.com/docs/padding
|
|
557
|
+
*/
|
|
558
|
+
pe: {
|
|
559
|
+
pe: (((value: any) => boolean) | {
|
|
560
|
+
(theme: any): any;
|
|
561
|
+
isThemeGetter: boolean;
|
|
562
|
+
})[];
|
|
563
|
+
}[];
|
|
564
|
+
/**
|
|
565
|
+
* Padding Top
|
|
566
|
+
* @see https://tailwindcss.com/docs/padding
|
|
567
|
+
*/
|
|
568
|
+
pt: {
|
|
569
|
+
pt: (((value: any) => boolean) | {
|
|
570
|
+
(theme: any): any;
|
|
571
|
+
isThemeGetter: boolean;
|
|
572
|
+
})[];
|
|
573
|
+
}[];
|
|
574
|
+
/**
|
|
575
|
+
* Padding Right
|
|
576
|
+
* @see https://tailwindcss.com/docs/padding
|
|
577
|
+
*/
|
|
578
|
+
pr: {
|
|
579
|
+
pr: (((value: any) => boolean) | {
|
|
580
|
+
(theme: any): any;
|
|
581
|
+
isThemeGetter: boolean;
|
|
582
|
+
})[];
|
|
583
|
+
}[];
|
|
584
|
+
/**
|
|
585
|
+
* Padding Bottom
|
|
586
|
+
* @see https://tailwindcss.com/docs/padding
|
|
587
|
+
*/
|
|
588
|
+
pb: {
|
|
589
|
+
pb: (((value: any) => boolean) | {
|
|
590
|
+
(theme: any): any;
|
|
591
|
+
isThemeGetter: boolean;
|
|
592
|
+
})[];
|
|
593
|
+
}[];
|
|
594
|
+
/**
|
|
595
|
+
* Padding Left
|
|
596
|
+
* @see https://tailwindcss.com/docs/padding
|
|
597
|
+
*/
|
|
598
|
+
pl: {
|
|
599
|
+
pl: (((value: any) => boolean) | {
|
|
600
|
+
(theme: any): any;
|
|
601
|
+
isThemeGetter: boolean;
|
|
602
|
+
})[];
|
|
603
|
+
}[];
|
|
604
|
+
/**
|
|
605
|
+
* Margin
|
|
606
|
+
* @see https://tailwindcss.com/docs/margin
|
|
607
|
+
*/
|
|
608
|
+
m: {
|
|
609
|
+
m: (string | ((value: any) => boolean) | {
|
|
610
|
+
(theme: any): any;
|
|
611
|
+
isThemeGetter: boolean;
|
|
612
|
+
})[];
|
|
613
|
+
}[];
|
|
614
|
+
/**
|
|
615
|
+
* Margin X
|
|
616
|
+
* @see https://tailwindcss.com/docs/margin
|
|
617
|
+
*/
|
|
618
|
+
mx: {
|
|
619
|
+
mx: (string | ((value: any) => boolean) | {
|
|
620
|
+
(theme: any): any;
|
|
621
|
+
isThemeGetter: boolean;
|
|
622
|
+
})[];
|
|
623
|
+
}[];
|
|
624
|
+
/**
|
|
625
|
+
* Margin Y
|
|
626
|
+
* @see https://tailwindcss.com/docs/margin
|
|
627
|
+
*/
|
|
628
|
+
my: {
|
|
629
|
+
my: (string | ((value: any) => boolean) | {
|
|
630
|
+
(theme: any): any;
|
|
631
|
+
isThemeGetter: boolean;
|
|
632
|
+
})[];
|
|
633
|
+
}[];
|
|
634
|
+
/**
|
|
635
|
+
* Margin Start
|
|
636
|
+
* @see https://tailwindcss.com/docs/margin
|
|
637
|
+
*/
|
|
638
|
+
ms: {
|
|
639
|
+
ms: (string | ((value: any) => boolean) | {
|
|
640
|
+
(theme: any): any;
|
|
641
|
+
isThemeGetter: boolean;
|
|
642
|
+
})[];
|
|
643
|
+
}[];
|
|
644
|
+
/**
|
|
645
|
+
* Margin End
|
|
646
|
+
* @see https://tailwindcss.com/docs/margin
|
|
647
|
+
*/
|
|
648
|
+
me: {
|
|
649
|
+
me: (string | ((value: any) => boolean) | {
|
|
650
|
+
(theme: any): any;
|
|
651
|
+
isThemeGetter: boolean;
|
|
652
|
+
})[];
|
|
653
|
+
}[];
|
|
654
|
+
/**
|
|
655
|
+
* Margin Top
|
|
656
|
+
* @see https://tailwindcss.com/docs/margin
|
|
657
|
+
*/
|
|
658
|
+
mt: {
|
|
659
|
+
mt: (string | ((value: any) => boolean) | {
|
|
660
|
+
(theme: any): any;
|
|
661
|
+
isThemeGetter: boolean;
|
|
662
|
+
})[];
|
|
663
|
+
}[];
|
|
664
|
+
/**
|
|
665
|
+
* Margin Right
|
|
666
|
+
* @see https://tailwindcss.com/docs/margin
|
|
667
|
+
*/
|
|
668
|
+
mr: {
|
|
669
|
+
mr: (string | ((value: any) => boolean) | {
|
|
670
|
+
(theme: any): any;
|
|
671
|
+
isThemeGetter: boolean;
|
|
672
|
+
})[];
|
|
673
|
+
}[];
|
|
674
|
+
/**
|
|
675
|
+
* Margin Bottom
|
|
676
|
+
* @see https://tailwindcss.com/docs/margin
|
|
677
|
+
*/
|
|
678
|
+
mb: {
|
|
679
|
+
mb: (string | ((value: any) => boolean) | {
|
|
680
|
+
(theme: any): any;
|
|
681
|
+
isThemeGetter: boolean;
|
|
682
|
+
})[];
|
|
683
|
+
}[];
|
|
684
|
+
/**
|
|
685
|
+
* Margin Left
|
|
686
|
+
* @see https://tailwindcss.com/docs/margin
|
|
687
|
+
*/
|
|
688
|
+
ml: {
|
|
689
|
+
ml: (string | ((value: any) => boolean) | {
|
|
690
|
+
(theme: any): any;
|
|
691
|
+
isThemeGetter: boolean;
|
|
692
|
+
})[];
|
|
693
|
+
}[];
|
|
694
|
+
/**
|
|
695
|
+
* Space Between X
|
|
696
|
+
* @see https://tailwindcss.com/docs/margin#adding-space-between-children
|
|
697
|
+
*/
|
|
698
|
+
'space-x': {
|
|
699
|
+
'space-x': (((value: any) => boolean) | {
|
|
700
|
+
(theme: any): any;
|
|
701
|
+
isThemeGetter: boolean;
|
|
702
|
+
})[];
|
|
703
|
+
}[];
|
|
704
|
+
/**
|
|
705
|
+
* Space Between X Reverse
|
|
706
|
+
* @see https://tailwindcss.com/docs/margin#adding-space-between-children
|
|
707
|
+
*/
|
|
708
|
+
'space-x-reverse': string[];
|
|
709
|
+
/**
|
|
710
|
+
* Space Between Y
|
|
711
|
+
* @see https://tailwindcss.com/docs/margin#adding-space-between-children
|
|
712
|
+
*/
|
|
713
|
+
'space-y': {
|
|
714
|
+
'space-y': (((value: any) => boolean) | {
|
|
715
|
+
(theme: any): any;
|
|
716
|
+
isThemeGetter: boolean;
|
|
717
|
+
})[];
|
|
718
|
+
}[];
|
|
719
|
+
/**
|
|
720
|
+
* Space Between Y Reverse
|
|
721
|
+
* @see https://tailwindcss.com/docs/margin#adding-space-between-children
|
|
722
|
+
*/
|
|
723
|
+
'space-y-reverse': string[];
|
|
724
|
+
/**
|
|
725
|
+
* Size
|
|
726
|
+
* @see https://tailwindcss.com/docs/width#setting-both-width-and-height
|
|
727
|
+
*/
|
|
728
|
+
size: {
|
|
729
|
+
size: (string | ((value: any) => boolean) | {
|
|
730
|
+
(theme: any): any;
|
|
731
|
+
isThemeGetter: boolean;
|
|
732
|
+
})[];
|
|
733
|
+
}[];
|
|
734
|
+
/**
|
|
735
|
+
* Width
|
|
736
|
+
* @see https://tailwindcss.com/docs/width
|
|
737
|
+
*/
|
|
738
|
+
w: {
|
|
739
|
+
w: (string | ((value: any) => boolean) | {
|
|
740
|
+
(theme: any): any;
|
|
741
|
+
isThemeGetter: boolean;
|
|
742
|
+
})[];
|
|
743
|
+
}[];
|
|
744
|
+
/**
|
|
745
|
+
* Min-Width
|
|
746
|
+
* @see https://tailwindcss.com/docs/min-width
|
|
747
|
+
*/
|
|
748
|
+
'min-w': {
|
|
749
|
+
'min-w': (string | ((value: any) => boolean) | {
|
|
750
|
+
(theme: any): any;
|
|
751
|
+
isThemeGetter: boolean;
|
|
752
|
+
})[];
|
|
753
|
+
}[];
|
|
754
|
+
/**
|
|
755
|
+
* Max-Width
|
|
756
|
+
* @see https://tailwindcss.com/docs/max-width
|
|
757
|
+
*/
|
|
758
|
+
'max-w': {
|
|
759
|
+
'max-w': (string | ((value: any) => boolean) | {
|
|
760
|
+
(theme: any): any;
|
|
761
|
+
isThemeGetter: boolean;
|
|
762
|
+
} | {
|
|
763
|
+
screen: {
|
|
764
|
+
(theme: any): any;
|
|
765
|
+
isThemeGetter: boolean;
|
|
766
|
+
}[];
|
|
767
|
+
})[];
|
|
768
|
+
}[];
|
|
769
|
+
/**
|
|
770
|
+
* Height
|
|
771
|
+
* @see https://tailwindcss.com/docs/height
|
|
772
|
+
*/
|
|
773
|
+
h: {
|
|
774
|
+
h: (string | ((value: any) => boolean) | {
|
|
775
|
+
(theme: any): any;
|
|
776
|
+
isThemeGetter: boolean;
|
|
777
|
+
})[];
|
|
778
|
+
}[];
|
|
779
|
+
/**
|
|
780
|
+
* Min-Height
|
|
781
|
+
* @see https://tailwindcss.com/docs/min-height
|
|
782
|
+
*/
|
|
783
|
+
'min-h': {
|
|
784
|
+
'min-h': (string | ((value: any) => boolean) | {
|
|
785
|
+
(theme: any): any;
|
|
786
|
+
isThemeGetter: boolean;
|
|
787
|
+
})[];
|
|
788
|
+
}[];
|
|
789
|
+
/**
|
|
790
|
+
* Max-Height
|
|
791
|
+
* @see https://tailwindcss.com/docs/max-height
|
|
792
|
+
*/
|
|
793
|
+
'max-h': {
|
|
794
|
+
'max-h': (string | ((value: any) => boolean) | {
|
|
795
|
+
(theme: any): any;
|
|
796
|
+
isThemeGetter: boolean;
|
|
797
|
+
})[];
|
|
798
|
+
}[];
|
|
799
|
+
/**
|
|
800
|
+
* Font Size
|
|
801
|
+
* @see https://tailwindcss.com/docs/font-size
|
|
802
|
+
*/
|
|
803
|
+
'font-size': {
|
|
804
|
+
text: (string | ((value: any) => any))[];
|
|
805
|
+
}[];
|
|
806
|
+
/**
|
|
807
|
+
* Font Smoothing
|
|
808
|
+
* @see https://tailwindcss.com/docs/font-smoothing
|
|
809
|
+
*/
|
|
810
|
+
'font-smoothing': string[];
|
|
811
|
+
/**
|
|
812
|
+
* Font Style
|
|
813
|
+
* @see https://tailwindcss.com/docs/font-style
|
|
814
|
+
*/
|
|
815
|
+
'font-style': string[];
|
|
816
|
+
/**
|
|
817
|
+
* Font Weight
|
|
818
|
+
* @see https://tailwindcss.com/docs/font-weight
|
|
819
|
+
*/
|
|
820
|
+
'font-weight': {
|
|
821
|
+
font: ((value: any) => any)[];
|
|
822
|
+
}[];
|
|
823
|
+
/**
|
|
824
|
+
* Font Stretch
|
|
825
|
+
* @see https://tailwindcss.com/docs/font-stretch
|
|
826
|
+
*/
|
|
827
|
+
'font-stretch': {
|
|
828
|
+
'font-stretch': (string | ((value: any) => any))[];
|
|
829
|
+
}[];
|
|
830
|
+
/**
|
|
831
|
+
* Font Family
|
|
832
|
+
* @see https://tailwindcss.com/docs/font-family
|
|
833
|
+
*/
|
|
834
|
+
'font-family': {
|
|
835
|
+
font: ((value: any) => any)[];
|
|
836
|
+
}[];
|
|
837
|
+
/**
|
|
838
|
+
* Font Variant Numeric
|
|
839
|
+
* @see https://tailwindcss.com/docs/font-variant-numeric
|
|
840
|
+
*/
|
|
841
|
+
'fvn-normal': string[];
|
|
842
|
+
/**
|
|
843
|
+
* Font Variant Numeric
|
|
844
|
+
* @see https://tailwindcss.com/docs/font-variant-numeric
|
|
845
|
+
*/
|
|
846
|
+
'fvn-ordinal': string[];
|
|
847
|
+
/**
|
|
848
|
+
* Font Variant Numeric
|
|
849
|
+
* @see https://tailwindcss.com/docs/font-variant-numeric
|
|
850
|
+
*/
|
|
851
|
+
'fvn-slashed-zero': string[];
|
|
852
|
+
/**
|
|
853
|
+
* Font Variant Numeric
|
|
854
|
+
* @see https://tailwindcss.com/docs/font-variant-numeric
|
|
855
|
+
*/
|
|
856
|
+
'fvn-figure': string[];
|
|
857
|
+
/**
|
|
858
|
+
* Font Variant Numeric
|
|
859
|
+
* @see https://tailwindcss.com/docs/font-variant-numeric
|
|
860
|
+
*/
|
|
861
|
+
'fvn-spacing': string[];
|
|
862
|
+
/**
|
|
863
|
+
* Font Variant Numeric
|
|
864
|
+
* @see https://tailwindcss.com/docs/font-variant-numeric
|
|
865
|
+
*/
|
|
866
|
+
'fvn-fraction': string[];
|
|
867
|
+
/**
|
|
868
|
+
* Letter Spacing
|
|
869
|
+
* @see https://tailwindcss.com/docs/letter-spacing
|
|
870
|
+
*/
|
|
871
|
+
tracking: {
|
|
872
|
+
tracking: (((value: any) => boolean) | {
|
|
873
|
+
(theme: any): any;
|
|
874
|
+
isThemeGetter: boolean;
|
|
875
|
+
})[];
|
|
876
|
+
}[];
|
|
877
|
+
/**
|
|
878
|
+
* Line Clamp
|
|
879
|
+
* @see https://tailwindcss.com/docs/line-clamp
|
|
880
|
+
*/
|
|
881
|
+
'line-clamp': {
|
|
882
|
+
'line-clamp': (string | ((value: any) => any))[];
|
|
883
|
+
}[];
|
|
884
|
+
/**
|
|
885
|
+
* Line Height
|
|
886
|
+
* @see https://tailwindcss.com/docs/line-height
|
|
887
|
+
*/
|
|
888
|
+
leading: {
|
|
889
|
+
leading: (((value: any) => boolean) | {
|
|
890
|
+
(theme: any): any;
|
|
891
|
+
isThemeGetter: boolean;
|
|
892
|
+
})[];
|
|
893
|
+
}[];
|
|
894
|
+
/**
|
|
895
|
+
* List Style Image
|
|
896
|
+
* @see https://tailwindcss.com/docs/list-style-image
|
|
897
|
+
*/
|
|
898
|
+
'list-image': {
|
|
899
|
+
'list-image': (string | ((value: any) => boolean))[];
|
|
900
|
+
}[];
|
|
901
|
+
/**
|
|
902
|
+
* List Style Position
|
|
903
|
+
* @see https://tailwindcss.com/docs/list-style-position
|
|
904
|
+
*/
|
|
905
|
+
'list-style-position': {
|
|
906
|
+
list: string[];
|
|
907
|
+
}[];
|
|
908
|
+
/**
|
|
909
|
+
* List Style Type
|
|
910
|
+
* @see https://tailwindcss.com/docs/list-style-type
|
|
911
|
+
*/
|
|
912
|
+
'list-style-type': {
|
|
913
|
+
list: (string | ((value: any) => boolean))[];
|
|
914
|
+
}[];
|
|
915
|
+
/**
|
|
916
|
+
* Text Alignment
|
|
917
|
+
* @see https://tailwindcss.com/docs/text-align
|
|
918
|
+
*/
|
|
919
|
+
'text-alignment': {
|
|
920
|
+
text: string[];
|
|
921
|
+
}[];
|
|
922
|
+
/**
|
|
923
|
+
* Placeholder Color
|
|
924
|
+
* @deprecated since Tailwind CSS v3.0.0
|
|
925
|
+
* @see https://v3.tailwindcss.com/docs/placeholder-color
|
|
926
|
+
*/
|
|
927
|
+
'placeholder-color': {
|
|
928
|
+
placeholder: (((value: any) => boolean) | {
|
|
929
|
+
(theme: any): any;
|
|
930
|
+
isThemeGetter: boolean;
|
|
931
|
+
})[];
|
|
932
|
+
}[];
|
|
933
|
+
/**
|
|
934
|
+
* Text Color
|
|
935
|
+
* @see https://tailwindcss.com/docs/text-color
|
|
936
|
+
*/
|
|
937
|
+
'text-color': {
|
|
938
|
+
text: (((value: any) => boolean) | {
|
|
939
|
+
(theme: any): any;
|
|
940
|
+
isThemeGetter: boolean;
|
|
941
|
+
})[];
|
|
942
|
+
}[];
|
|
943
|
+
/**
|
|
944
|
+
* Text Decoration
|
|
945
|
+
* @see https://tailwindcss.com/docs/text-decoration
|
|
946
|
+
*/
|
|
947
|
+
'text-decoration': string[];
|
|
948
|
+
/**
|
|
949
|
+
* Text Decoration Style
|
|
950
|
+
* @see https://tailwindcss.com/docs/text-decoration-style
|
|
951
|
+
*/
|
|
952
|
+
'text-decoration-style': {
|
|
953
|
+
decoration: string[];
|
|
954
|
+
}[];
|
|
955
|
+
/**
|
|
956
|
+
* Text Decoration Thickness
|
|
957
|
+
* @see https://tailwindcss.com/docs/text-decoration-thickness
|
|
958
|
+
*/
|
|
959
|
+
'text-decoration-thickness': {
|
|
960
|
+
decoration: (string | ((value: any) => any))[];
|
|
961
|
+
}[];
|
|
962
|
+
/**
|
|
963
|
+
* Text Decoration Color
|
|
964
|
+
* @see https://tailwindcss.com/docs/text-decoration-color
|
|
965
|
+
*/
|
|
966
|
+
'text-decoration-color': {
|
|
967
|
+
decoration: (((value: any) => boolean) | {
|
|
968
|
+
(theme: any): any;
|
|
969
|
+
isThemeGetter: boolean;
|
|
970
|
+
})[];
|
|
971
|
+
}[];
|
|
972
|
+
/**
|
|
973
|
+
* Text Underline Offset
|
|
974
|
+
* @see https://tailwindcss.com/docs/text-underline-offset
|
|
975
|
+
*/
|
|
976
|
+
'underline-offset': {
|
|
977
|
+
'underline-offset': (string | ((value: any) => boolean))[];
|
|
978
|
+
}[];
|
|
979
|
+
/**
|
|
980
|
+
* Text Transform
|
|
981
|
+
* @see https://tailwindcss.com/docs/text-transform
|
|
982
|
+
*/
|
|
983
|
+
'text-transform': string[];
|
|
984
|
+
/**
|
|
985
|
+
* Text Overflow
|
|
986
|
+
* @see https://tailwindcss.com/docs/text-overflow
|
|
987
|
+
*/
|
|
988
|
+
'text-overflow': string[];
|
|
989
|
+
/**
|
|
990
|
+
* Text Wrap
|
|
991
|
+
* @see https://tailwindcss.com/docs/text-wrap
|
|
992
|
+
*/
|
|
993
|
+
'text-wrap': {
|
|
994
|
+
text: string[];
|
|
995
|
+
}[];
|
|
996
|
+
/**
|
|
997
|
+
* Text Indent
|
|
998
|
+
* @see https://tailwindcss.com/docs/text-indent
|
|
999
|
+
*/
|
|
1000
|
+
indent: {
|
|
1001
|
+
indent: (((value: any) => boolean) | {
|
|
1002
|
+
(theme: any): any;
|
|
1003
|
+
isThemeGetter: boolean;
|
|
1004
|
+
})[];
|
|
1005
|
+
}[];
|
|
1006
|
+
/**
|
|
1007
|
+
* Vertical Alignment
|
|
1008
|
+
* @see https://tailwindcss.com/docs/vertical-align
|
|
1009
|
+
*/
|
|
1010
|
+
'vertical-align': {
|
|
1011
|
+
align: (string | ((value: any) => boolean))[];
|
|
1012
|
+
}[];
|
|
1013
|
+
/**
|
|
1014
|
+
* Whitespace
|
|
1015
|
+
* @see https://tailwindcss.com/docs/whitespace
|
|
1016
|
+
*/
|
|
1017
|
+
whitespace: {
|
|
1018
|
+
whitespace: string[];
|
|
1019
|
+
}[];
|
|
1020
|
+
/**
|
|
1021
|
+
* Word Break
|
|
1022
|
+
* @see https://tailwindcss.com/docs/word-break
|
|
1023
|
+
*/
|
|
1024
|
+
break: {
|
|
1025
|
+
break: string[];
|
|
1026
|
+
}[];
|
|
1027
|
+
/**
|
|
1028
|
+
* Overflow Wrap
|
|
1029
|
+
* @see https://tailwindcss.com/docs/overflow-wrap
|
|
1030
|
+
*/
|
|
1031
|
+
wrap: {
|
|
1032
|
+
wrap: string[];
|
|
1033
|
+
}[];
|
|
1034
|
+
/**
|
|
1035
|
+
* Hyphens
|
|
1036
|
+
* @see https://tailwindcss.com/docs/hyphens
|
|
1037
|
+
*/
|
|
1038
|
+
hyphens: {
|
|
1039
|
+
hyphens: string[];
|
|
1040
|
+
}[];
|
|
1041
|
+
/**
|
|
1042
|
+
* Content
|
|
1043
|
+
* @see https://tailwindcss.com/docs/content
|
|
1044
|
+
*/
|
|
1045
|
+
content: {
|
|
1046
|
+
content: (string | ((value: any) => boolean))[];
|
|
1047
|
+
}[];
|
|
1048
|
+
/**
|
|
1049
|
+
* Background Attachment
|
|
1050
|
+
* @see https://tailwindcss.com/docs/background-attachment
|
|
1051
|
+
*/
|
|
1052
|
+
'bg-attachment': {
|
|
1053
|
+
bg: string[];
|
|
1054
|
+
}[];
|
|
1055
|
+
/**
|
|
1056
|
+
* Background Clip
|
|
1057
|
+
* @see https://tailwindcss.com/docs/background-clip
|
|
1058
|
+
*/
|
|
1059
|
+
'bg-clip': {
|
|
1060
|
+
'bg-clip': string[];
|
|
1061
|
+
}[];
|
|
1062
|
+
/**
|
|
1063
|
+
* Background Origin
|
|
1064
|
+
* @see https://tailwindcss.com/docs/background-origin
|
|
1065
|
+
*/
|
|
1066
|
+
'bg-origin': {
|
|
1067
|
+
'bg-origin': string[];
|
|
1068
|
+
}[];
|
|
1069
|
+
/**
|
|
1070
|
+
* Background Position
|
|
1071
|
+
* @see https://tailwindcss.com/docs/background-position
|
|
1072
|
+
*/
|
|
1073
|
+
'bg-position': {
|
|
1074
|
+
bg: (string | ((value: any) => any) | {
|
|
1075
|
+
position: ((value: any) => boolean)[];
|
|
1076
|
+
})[];
|
|
1077
|
+
}[];
|
|
1078
|
+
/**
|
|
1079
|
+
* Background Repeat
|
|
1080
|
+
* @see https://tailwindcss.com/docs/background-repeat
|
|
1081
|
+
*/
|
|
1082
|
+
'bg-repeat': {
|
|
1083
|
+
bg: (string | {
|
|
1084
|
+
repeat: string[];
|
|
1085
|
+
})[];
|
|
1086
|
+
}[];
|
|
1087
|
+
/**
|
|
1088
|
+
* Background Size
|
|
1089
|
+
* @see https://tailwindcss.com/docs/background-size
|
|
1090
|
+
*/
|
|
1091
|
+
'bg-size': {
|
|
1092
|
+
bg: (string | ((value: any) => any) | {
|
|
1093
|
+
size: ((value: any) => boolean)[];
|
|
1094
|
+
})[];
|
|
1095
|
+
}[];
|
|
1096
|
+
/**
|
|
1097
|
+
* Background Image
|
|
1098
|
+
* @see https://tailwindcss.com/docs/background-image
|
|
1099
|
+
*/
|
|
1100
|
+
'bg-image': {
|
|
1101
|
+
bg: (string | ((value: any) => any) | {
|
|
1102
|
+
linear: (((value: any) => boolean) | {
|
|
1103
|
+
to: string[];
|
|
1104
|
+
})[];
|
|
1105
|
+
radial: (string | ((value: any) => boolean))[];
|
|
1106
|
+
conic: ((value: any) => boolean)[];
|
|
1107
|
+
})[];
|
|
1108
|
+
}[];
|
|
1109
|
+
/**
|
|
1110
|
+
* Background Color
|
|
1111
|
+
* @see https://tailwindcss.com/docs/background-color
|
|
1112
|
+
*/
|
|
1113
|
+
'bg-color': {
|
|
1114
|
+
bg: (((value: any) => boolean) | {
|
|
1115
|
+
(theme: any): any;
|
|
1116
|
+
isThemeGetter: boolean;
|
|
1117
|
+
})[];
|
|
1118
|
+
}[];
|
|
1119
|
+
/**
|
|
1120
|
+
* Gradient Color Stops From Position
|
|
1121
|
+
* @see https://tailwindcss.com/docs/gradient-color-stops
|
|
1122
|
+
*/
|
|
1123
|
+
'gradient-from-pos': {
|
|
1124
|
+
from: ((value: any) => any)[];
|
|
1125
|
+
}[];
|
|
1126
|
+
/**
|
|
1127
|
+
* Gradient Color Stops Via Position
|
|
1128
|
+
* @see https://tailwindcss.com/docs/gradient-color-stops
|
|
1129
|
+
*/
|
|
1130
|
+
'gradient-via-pos': {
|
|
1131
|
+
via: ((value: any) => any)[];
|
|
1132
|
+
}[];
|
|
1133
|
+
/**
|
|
1134
|
+
* Gradient Color Stops To Position
|
|
1135
|
+
* @see https://tailwindcss.com/docs/gradient-color-stops
|
|
1136
|
+
*/
|
|
1137
|
+
'gradient-to-pos': {
|
|
1138
|
+
to: ((value: any) => any)[];
|
|
1139
|
+
}[];
|
|
1140
|
+
/**
|
|
1141
|
+
* Gradient Color Stops From
|
|
1142
|
+
* @see https://tailwindcss.com/docs/gradient-color-stops
|
|
1143
|
+
*/
|
|
1144
|
+
'gradient-from': {
|
|
1145
|
+
from: (((value: any) => boolean) | {
|
|
1146
|
+
(theme: any): any;
|
|
1147
|
+
isThemeGetter: boolean;
|
|
1148
|
+
})[];
|
|
1149
|
+
}[];
|
|
1150
|
+
/**
|
|
1151
|
+
* Gradient Color Stops Via
|
|
1152
|
+
* @see https://tailwindcss.com/docs/gradient-color-stops
|
|
1153
|
+
*/
|
|
1154
|
+
'gradient-via': {
|
|
1155
|
+
via: (((value: any) => boolean) | {
|
|
1156
|
+
(theme: any): any;
|
|
1157
|
+
isThemeGetter: boolean;
|
|
1158
|
+
})[];
|
|
1159
|
+
}[];
|
|
1160
|
+
/**
|
|
1161
|
+
* Gradient Color Stops To
|
|
1162
|
+
* @see https://tailwindcss.com/docs/gradient-color-stops
|
|
1163
|
+
*/
|
|
1164
|
+
'gradient-to': {
|
|
1165
|
+
to: (((value: any) => boolean) | {
|
|
1166
|
+
(theme: any): any;
|
|
1167
|
+
isThemeGetter: boolean;
|
|
1168
|
+
})[];
|
|
1169
|
+
}[];
|
|
1170
|
+
/**
|
|
1171
|
+
* Border Radius
|
|
1172
|
+
* @see https://tailwindcss.com/docs/border-radius
|
|
1173
|
+
*/
|
|
1174
|
+
rounded: {
|
|
1175
|
+
rounded: (string | ((value: any) => boolean) | {
|
|
1176
|
+
(theme: any): any;
|
|
1177
|
+
isThemeGetter: boolean;
|
|
1178
|
+
})[];
|
|
1179
|
+
}[];
|
|
1180
|
+
/**
|
|
1181
|
+
* Border Radius Start
|
|
1182
|
+
* @see https://tailwindcss.com/docs/border-radius
|
|
1183
|
+
*/
|
|
1184
|
+
'rounded-s': {
|
|
1185
|
+
'rounded-s': (string | ((value: any) => boolean) | {
|
|
1186
|
+
(theme: any): any;
|
|
1187
|
+
isThemeGetter: boolean;
|
|
1188
|
+
})[];
|
|
1189
|
+
}[];
|
|
1190
|
+
/**
|
|
1191
|
+
* Border Radius End
|
|
1192
|
+
* @see https://tailwindcss.com/docs/border-radius
|
|
1193
|
+
*/
|
|
1194
|
+
'rounded-e': {
|
|
1195
|
+
'rounded-e': (string | ((value: any) => boolean) | {
|
|
1196
|
+
(theme: any): any;
|
|
1197
|
+
isThemeGetter: boolean;
|
|
1198
|
+
})[];
|
|
1199
|
+
}[];
|
|
1200
|
+
/**
|
|
1201
|
+
* Border Radius Top
|
|
1202
|
+
* @see https://tailwindcss.com/docs/border-radius
|
|
1203
|
+
*/
|
|
1204
|
+
'rounded-t': {
|
|
1205
|
+
'rounded-t': (string | ((value: any) => boolean) | {
|
|
1206
|
+
(theme: any): any;
|
|
1207
|
+
isThemeGetter: boolean;
|
|
1208
|
+
})[];
|
|
1209
|
+
}[];
|
|
1210
|
+
/**
|
|
1211
|
+
* Border Radius Right
|
|
1212
|
+
* @see https://tailwindcss.com/docs/border-radius
|
|
1213
|
+
*/
|
|
1214
|
+
'rounded-r': {
|
|
1215
|
+
'rounded-r': (string | ((value: any) => boolean) | {
|
|
1216
|
+
(theme: any): any;
|
|
1217
|
+
isThemeGetter: boolean;
|
|
1218
|
+
})[];
|
|
1219
|
+
}[];
|
|
1220
|
+
/**
|
|
1221
|
+
* Border Radius Bottom
|
|
1222
|
+
* @see https://tailwindcss.com/docs/border-radius
|
|
1223
|
+
*/
|
|
1224
|
+
'rounded-b': {
|
|
1225
|
+
'rounded-b': (string | ((value: any) => boolean) | {
|
|
1226
|
+
(theme: any): any;
|
|
1227
|
+
isThemeGetter: boolean;
|
|
1228
|
+
})[];
|
|
1229
|
+
}[];
|
|
1230
|
+
/**
|
|
1231
|
+
* Border Radius Left
|
|
1232
|
+
* @see https://tailwindcss.com/docs/border-radius
|
|
1233
|
+
*/
|
|
1234
|
+
'rounded-l': {
|
|
1235
|
+
'rounded-l': (string | ((value: any) => boolean) | {
|
|
1236
|
+
(theme: any): any;
|
|
1237
|
+
isThemeGetter: boolean;
|
|
1238
|
+
})[];
|
|
1239
|
+
}[];
|
|
1240
|
+
/**
|
|
1241
|
+
* Border Radius Start Start
|
|
1242
|
+
* @see https://tailwindcss.com/docs/border-radius
|
|
1243
|
+
*/
|
|
1244
|
+
'rounded-ss': {
|
|
1245
|
+
'rounded-ss': (string | ((value: any) => boolean) | {
|
|
1246
|
+
(theme: any): any;
|
|
1247
|
+
isThemeGetter: boolean;
|
|
1248
|
+
})[];
|
|
1249
|
+
}[];
|
|
1250
|
+
/**
|
|
1251
|
+
* Border Radius Start End
|
|
1252
|
+
* @see https://tailwindcss.com/docs/border-radius
|
|
1253
|
+
*/
|
|
1254
|
+
'rounded-se': {
|
|
1255
|
+
'rounded-se': (string | ((value: any) => boolean) | {
|
|
1256
|
+
(theme: any): any;
|
|
1257
|
+
isThemeGetter: boolean;
|
|
1258
|
+
})[];
|
|
1259
|
+
}[];
|
|
1260
|
+
/**
|
|
1261
|
+
* Border Radius End End
|
|
1262
|
+
* @see https://tailwindcss.com/docs/border-radius
|
|
1263
|
+
*/
|
|
1264
|
+
'rounded-ee': {
|
|
1265
|
+
'rounded-ee': (string | ((value: any) => boolean) | {
|
|
1266
|
+
(theme: any): any;
|
|
1267
|
+
isThemeGetter: boolean;
|
|
1268
|
+
})[];
|
|
1269
|
+
}[];
|
|
1270
|
+
/**
|
|
1271
|
+
* Border Radius End Start
|
|
1272
|
+
* @see https://tailwindcss.com/docs/border-radius
|
|
1273
|
+
*/
|
|
1274
|
+
'rounded-es': {
|
|
1275
|
+
'rounded-es': (string | ((value: any) => boolean) | {
|
|
1276
|
+
(theme: any): any;
|
|
1277
|
+
isThemeGetter: boolean;
|
|
1278
|
+
})[];
|
|
1279
|
+
}[];
|
|
1280
|
+
/**
|
|
1281
|
+
* Border Radius Top Left
|
|
1282
|
+
* @see https://tailwindcss.com/docs/border-radius
|
|
1283
|
+
*/
|
|
1284
|
+
'rounded-tl': {
|
|
1285
|
+
'rounded-tl': (string | ((value: any) => boolean) | {
|
|
1286
|
+
(theme: any): any;
|
|
1287
|
+
isThemeGetter: boolean;
|
|
1288
|
+
})[];
|
|
1289
|
+
}[];
|
|
1290
|
+
/**
|
|
1291
|
+
* Border Radius Top Right
|
|
1292
|
+
* @see https://tailwindcss.com/docs/border-radius
|
|
1293
|
+
*/
|
|
1294
|
+
'rounded-tr': {
|
|
1295
|
+
'rounded-tr': (string | ((value: any) => boolean) | {
|
|
1296
|
+
(theme: any): any;
|
|
1297
|
+
isThemeGetter: boolean;
|
|
1298
|
+
})[];
|
|
1299
|
+
}[];
|
|
1300
|
+
/**
|
|
1301
|
+
* Border Radius Bottom Right
|
|
1302
|
+
* @see https://tailwindcss.com/docs/border-radius
|
|
1303
|
+
*/
|
|
1304
|
+
'rounded-br': {
|
|
1305
|
+
'rounded-br': (string | ((value: any) => boolean) | {
|
|
1306
|
+
(theme: any): any;
|
|
1307
|
+
isThemeGetter: boolean;
|
|
1308
|
+
})[];
|
|
1309
|
+
}[];
|
|
1310
|
+
/**
|
|
1311
|
+
* Border Radius Bottom Left
|
|
1312
|
+
* @see https://tailwindcss.com/docs/border-radius
|
|
1313
|
+
*/
|
|
1314
|
+
'rounded-bl': {
|
|
1315
|
+
'rounded-bl': (string | ((value: any) => boolean) | {
|
|
1316
|
+
(theme: any): any;
|
|
1317
|
+
isThemeGetter: boolean;
|
|
1318
|
+
})[];
|
|
1319
|
+
}[];
|
|
1320
|
+
/**
|
|
1321
|
+
* Border Width
|
|
1322
|
+
* @see https://tailwindcss.com/docs/border-width
|
|
1323
|
+
*/
|
|
1324
|
+
'border-w': {
|
|
1325
|
+
border: (string | ((value: any) => any))[];
|
|
1326
|
+
}[];
|
|
1327
|
+
/**
|
|
1328
|
+
* Border Width X
|
|
1329
|
+
* @see https://tailwindcss.com/docs/border-width
|
|
1330
|
+
*/
|
|
1331
|
+
'border-w-x': {
|
|
1332
|
+
'border-x': (string | ((value: any) => any))[];
|
|
1333
|
+
}[];
|
|
1334
|
+
/**
|
|
1335
|
+
* Border Width Y
|
|
1336
|
+
* @see https://tailwindcss.com/docs/border-width
|
|
1337
|
+
*/
|
|
1338
|
+
'border-w-y': {
|
|
1339
|
+
'border-y': (string | ((value: any) => any))[];
|
|
1340
|
+
}[];
|
|
1341
|
+
/**
|
|
1342
|
+
* Border Width Start
|
|
1343
|
+
* @see https://tailwindcss.com/docs/border-width
|
|
1344
|
+
*/
|
|
1345
|
+
'border-w-s': {
|
|
1346
|
+
'border-s': (string | ((value: any) => any))[];
|
|
1347
|
+
}[];
|
|
1348
|
+
/**
|
|
1349
|
+
* Border Width End
|
|
1350
|
+
* @see https://tailwindcss.com/docs/border-width
|
|
1351
|
+
*/
|
|
1352
|
+
'border-w-e': {
|
|
1353
|
+
'border-e': (string | ((value: any) => any))[];
|
|
1354
|
+
}[];
|
|
1355
|
+
/**
|
|
1356
|
+
* Border Width Top
|
|
1357
|
+
* @see https://tailwindcss.com/docs/border-width
|
|
1358
|
+
*/
|
|
1359
|
+
'border-w-t': {
|
|
1360
|
+
'border-t': (string | ((value: any) => any))[];
|
|
1361
|
+
}[];
|
|
1362
|
+
/**
|
|
1363
|
+
* Border Width Right
|
|
1364
|
+
* @see https://tailwindcss.com/docs/border-width
|
|
1365
|
+
*/
|
|
1366
|
+
'border-w-r': {
|
|
1367
|
+
'border-r': (string | ((value: any) => any))[];
|
|
1368
|
+
}[];
|
|
1369
|
+
/**
|
|
1370
|
+
* Border Width Bottom
|
|
1371
|
+
* @see https://tailwindcss.com/docs/border-width
|
|
1372
|
+
*/
|
|
1373
|
+
'border-w-b': {
|
|
1374
|
+
'border-b': (string | ((value: any) => any))[];
|
|
1375
|
+
}[];
|
|
1376
|
+
/**
|
|
1377
|
+
* Border Width Left
|
|
1378
|
+
* @see https://tailwindcss.com/docs/border-width
|
|
1379
|
+
*/
|
|
1380
|
+
'border-w-l': {
|
|
1381
|
+
'border-l': (string | ((value: any) => any))[];
|
|
1382
|
+
}[];
|
|
1383
|
+
/**
|
|
1384
|
+
* Divide Width X
|
|
1385
|
+
* @see https://tailwindcss.com/docs/border-width#between-children
|
|
1386
|
+
*/
|
|
1387
|
+
'divide-x': {
|
|
1388
|
+
'divide-x': (string | ((value: any) => any))[];
|
|
1389
|
+
}[];
|
|
1390
|
+
/**
|
|
1391
|
+
* Divide Width X Reverse
|
|
1392
|
+
* @see https://tailwindcss.com/docs/border-width#between-children
|
|
1393
|
+
*/
|
|
1394
|
+
'divide-x-reverse': string[];
|
|
1395
|
+
/**
|
|
1396
|
+
* Divide Width Y
|
|
1397
|
+
* @see https://tailwindcss.com/docs/border-width#between-children
|
|
1398
|
+
*/
|
|
1399
|
+
'divide-y': {
|
|
1400
|
+
'divide-y': (string | ((value: any) => any))[];
|
|
1401
|
+
}[];
|
|
1402
|
+
/**
|
|
1403
|
+
* Divide Width Y Reverse
|
|
1404
|
+
* @see https://tailwindcss.com/docs/border-width#between-children
|
|
1405
|
+
*/
|
|
1406
|
+
'divide-y-reverse': string[];
|
|
1407
|
+
/**
|
|
1408
|
+
* Border Style
|
|
1409
|
+
* @see https://tailwindcss.com/docs/border-style
|
|
1410
|
+
*/
|
|
1411
|
+
'border-style': {
|
|
1412
|
+
border: string[];
|
|
1413
|
+
}[];
|
|
1414
|
+
/**
|
|
1415
|
+
* Divide Style
|
|
1416
|
+
* @see https://tailwindcss.com/docs/border-style#setting-the-divider-style
|
|
1417
|
+
*/
|
|
1418
|
+
'divide-style': {
|
|
1419
|
+
divide: string[];
|
|
1420
|
+
}[];
|
|
1421
|
+
/**
|
|
1422
|
+
* Border Color
|
|
1423
|
+
* @see https://tailwindcss.com/docs/border-color
|
|
1424
|
+
*/
|
|
1425
|
+
'border-color': {
|
|
1426
|
+
border: (((value: any) => boolean) | {
|
|
1427
|
+
(theme: any): any;
|
|
1428
|
+
isThemeGetter: boolean;
|
|
1429
|
+
})[];
|
|
1430
|
+
}[];
|
|
1431
|
+
/**
|
|
1432
|
+
* Border Color X
|
|
1433
|
+
* @see https://tailwindcss.com/docs/border-color
|
|
1434
|
+
*/
|
|
1435
|
+
'border-color-x': {
|
|
1436
|
+
'border-x': (((value: any) => boolean) | {
|
|
1437
|
+
(theme: any): any;
|
|
1438
|
+
isThemeGetter: boolean;
|
|
1439
|
+
})[];
|
|
1440
|
+
}[];
|
|
1441
|
+
/**
|
|
1442
|
+
* Border Color Y
|
|
1443
|
+
* @see https://tailwindcss.com/docs/border-color
|
|
1444
|
+
*/
|
|
1445
|
+
'border-color-y': {
|
|
1446
|
+
'border-y': (((value: any) => boolean) | {
|
|
1447
|
+
(theme: any): any;
|
|
1448
|
+
isThemeGetter: boolean;
|
|
1449
|
+
})[];
|
|
1450
|
+
}[];
|
|
1451
|
+
/**
|
|
1452
|
+
* Border Color S
|
|
1453
|
+
* @see https://tailwindcss.com/docs/border-color
|
|
1454
|
+
*/
|
|
1455
|
+
'border-color-s': {
|
|
1456
|
+
'border-s': (((value: any) => boolean) | {
|
|
1457
|
+
(theme: any): any;
|
|
1458
|
+
isThemeGetter: boolean;
|
|
1459
|
+
})[];
|
|
1460
|
+
}[];
|
|
1461
|
+
/**
|
|
1462
|
+
* Border Color E
|
|
1463
|
+
* @see https://tailwindcss.com/docs/border-color
|
|
1464
|
+
*/
|
|
1465
|
+
'border-color-e': {
|
|
1466
|
+
'border-e': (((value: any) => boolean) | {
|
|
1467
|
+
(theme: any): any;
|
|
1468
|
+
isThemeGetter: boolean;
|
|
1469
|
+
})[];
|
|
1470
|
+
}[];
|
|
1471
|
+
/**
|
|
1472
|
+
* Border Color Top
|
|
1473
|
+
* @see https://tailwindcss.com/docs/border-color
|
|
1474
|
+
*/
|
|
1475
|
+
'border-color-t': {
|
|
1476
|
+
'border-t': (((value: any) => boolean) | {
|
|
1477
|
+
(theme: any): any;
|
|
1478
|
+
isThemeGetter: boolean;
|
|
1479
|
+
})[];
|
|
1480
|
+
}[];
|
|
1481
|
+
/**
|
|
1482
|
+
* Border Color Right
|
|
1483
|
+
* @see https://tailwindcss.com/docs/border-color
|
|
1484
|
+
*/
|
|
1485
|
+
'border-color-r': {
|
|
1486
|
+
'border-r': (((value: any) => boolean) | {
|
|
1487
|
+
(theme: any): any;
|
|
1488
|
+
isThemeGetter: boolean;
|
|
1489
|
+
})[];
|
|
1490
|
+
}[];
|
|
1491
|
+
/**
|
|
1492
|
+
* Border Color Bottom
|
|
1493
|
+
* @see https://tailwindcss.com/docs/border-color
|
|
1494
|
+
*/
|
|
1495
|
+
'border-color-b': {
|
|
1496
|
+
'border-b': (((value: any) => boolean) | {
|
|
1497
|
+
(theme: any): any;
|
|
1498
|
+
isThemeGetter: boolean;
|
|
1499
|
+
})[];
|
|
1500
|
+
}[];
|
|
1501
|
+
/**
|
|
1502
|
+
* Border Color Left
|
|
1503
|
+
* @see https://tailwindcss.com/docs/border-color
|
|
1504
|
+
*/
|
|
1505
|
+
'border-color-l': {
|
|
1506
|
+
'border-l': (((value: any) => boolean) | {
|
|
1507
|
+
(theme: any): any;
|
|
1508
|
+
isThemeGetter: boolean;
|
|
1509
|
+
})[];
|
|
1510
|
+
}[];
|
|
1511
|
+
/**
|
|
1512
|
+
* Divide Color
|
|
1513
|
+
* @see https://tailwindcss.com/docs/divide-color
|
|
1514
|
+
*/
|
|
1515
|
+
'divide-color': {
|
|
1516
|
+
divide: (((value: any) => boolean) | {
|
|
1517
|
+
(theme: any): any;
|
|
1518
|
+
isThemeGetter: boolean;
|
|
1519
|
+
})[];
|
|
1520
|
+
}[];
|
|
1521
|
+
/**
|
|
1522
|
+
* Outline Style
|
|
1523
|
+
* @see https://tailwindcss.com/docs/outline-style
|
|
1524
|
+
*/
|
|
1525
|
+
'outline-style': {
|
|
1526
|
+
outline: string[];
|
|
1527
|
+
}[];
|
|
1528
|
+
/**
|
|
1529
|
+
* Outline Offset
|
|
1530
|
+
* @see https://tailwindcss.com/docs/outline-offset
|
|
1531
|
+
*/
|
|
1532
|
+
'outline-offset': {
|
|
1533
|
+
'outline-offset': ((value: any) => boolean)[];
|
|
1534
|
+
}[];
|
|
1535
|
+
/**
|
|
1536
|
+
* Outline Width
|
|
1537
|
+
* @see https://tailwindcss.com/docs/outline-width
|
|
1538
|
+
*/
|
|
1539
|
+
'outline-w': {
|
|
1540
|
+
outline: (string | ((value: any) => any))[];
|
|
1541
|
+
}[];
|
|
1542
|
+
/**
|
|
1543
|
+
* Outline Color
|
|
1544
|
+
* @see https://tailwindcss.com/docs/outline-color
|
|
1545
|
+
*/
|
|
1546
|
+
'outline-color': {
|
|
1547
|
+
outline: (((value: any) => boolean) | {
|
|
1548
|
+
(theme: any): any;
|
|
1549
|
+
isThemeGetter: boolean;
|
|
1550
|
+
})[];
|
|
1551
|
+
}[];
|
|
1552
|
+
/**
|
|
1553
|
+
* Box Shadow
|
|
1554
|
+
* @see https://tailwindcss.com/docs/box-shadow
|
|
1555
|
+
*/
|
|
1556
|
+
shadow: {
|
|
1557
|
+
shadow: (string | ((value: any) => any))[];
|
|
1558
|
+
}[];
|
|
1559
|
+
/**
|
|
1560
|
+
* Box Shadow Color
|
|
1561
|
+
* @see https://tailwindcss.com/docs/box-shadow#setting-the-shadow-color
|
|
1562
|
+
*/
|
|
1563
|
+
'shadow-color': {
|
|
1564
|
+
shadow: (((value: any) => boolean) | {
|
|
1565
|
+
(theme: any): any;
|
|
1566
|
+
isThemeGetter: boolean;
|
|
1567
|
+
})[];
|
|
1568
|
+
}[];
|
|
1569
|
+
/**
|
|
1570
|
+
* Inset Box Shadow
|
|
1571
|
+
* @see https://tailwindcss.com/docs/box-shadow#adding-an-inset-shadow
|
|
1572
|
+
*/
|
|
1573
|
+
'inset-shadow': {
|
|
1574
|
+
'inset-shadow': (string | ((value: any) => any))[];
|
|
1575
|
+
}[];
|
|
1576
|
+
/**
|
|
1577
|
+
* Inset Box Shadow Color
|
|
1578
|
+
* @see https://tailwindcss.com/docs/box-shadow#setting-the-inset-shadow-color
|
|
1579
|
+
*/
|
|
1580
|
+
'inset-shadow-color': {
|
|
1581
|
+
'inset-shadow': (((value: any) => boolean) | {
|
|
1582
|
+
(theme: any): any;
|
|
1583
|
+
isThemeGetter: boolean;
|
|
1584
|
+
})[];
|
|
1585
|
+
}[];
|
|
1586
|
+
/**
|
|
1587
|
+
* Ring Width
|
|
1588
|
+
* @see https://tailwindcss.com/docs/box-shadow#adding-a-ring
|
|
1589
|
+
*/
|
|
1590
|
+
'ring-w': {
|
|
1591
|
+
ring: (string | ((value: any) => any))[];
|
|
1592
|
+
}[];
|
|
1593
|
+
/**
|
|
1594
|
+
* Ring Width Inset
|
|
1595
|
+
* @see https://v3.tailwindcss.com/docs/ring-width#inset-rings
|
|
1596
|
+
* @deprecated since Tailwind CSS v4.0.0
|
|
1597
|
+
* @see https://github.com/tailwindlabs/tailwindcss/blob/v4.0.0/packages/tailwindcss/src/utilities.ts#L4158
|
|
1598
|
+
*/
|
|
1599
|
+
'ring-w-inset': string[];
|
|
1600
|
+
/**
|
|
1601
|
+
* Ring Color
|
|
1602
|
+
* @see https://tailwindcss.com/docs/box-shadow#setting-the-ring-color
|
|
1603
|
+
*/
|
|
1604
|
+
'ring-color': {
|
|
1605
|
+
ring: (((value: any) => boolean) | {
|
|
1606
|
+
(theme: any): any;
|
|
1607
|
+
isThemeGetter: boolean;
|
|
1608
|
+
})[];
|
|
1609
|
+
}[];
|
|
1610
|
+
/**
|
|
1611
|
+
* Ring Offset Width
|
|
1612
|
+
* @see https://v3.tailwindcss.com/docs/ring-offset-width
|
|
1613
|
+
* @deprecated since Tailwind CSS v4.0.0
|
|
1614
|
+
* @see https://github.com/tailwindlabs/tailwindcss/blob/v4.0.0/packages/tailwindcss/src/utilities.ts#L4158
|
|
1615
|
+
*/
|
|
1616
|
+
'ring-offset-w': {
|
|
1617
|
+
'ring-offset': ((value: any) => any)[];
|
|
1618
|
+
}[];
|
|
1619
|
+
/**
|
|
1620
|
+
* Ring Offset Color
|
|
1621
|
+
* @see https://v3.tailwindcss.com/docs/ring-offset-color
|
|
1622
|
+
* @deprecated since Tailwind CSS v4.0.0
|
|
1623
|
+
* @see https://github.com/tailwindlabs/tailwindcss/blob/v4.0.0/packages/tailwindcss/src/utilities.ts#L4158
|
|
1624
|
+
*/
|
|
1625
|
+
'ring-offset-color': {
|
|
1626
|
+
'ring-offset': (((value: any) => boolean) | {
|
|
1627
|
+
(theme: any): any;
|
|
1628
|
+
isThemeGetter: boolean;
|
|
1629
|
+
})[];
|
|
1630
|
+
}[];
|
|
1631
|
+
/**
|
|
1632
|
+
* Inset Ring Width
|
|
1633
|
+
* @see https://tailwindcss.com/docs/box-shadow#adding-an-inset-ring
|
|
1634
|
+
*/
|
|
1635
|
+
'inset-ring-w': {
|
|
1636
|
+
'inset-ring': (string | ((value: any) => any))[];
|
|
1637
|
+
}[];
|
|
1638
|
+
/**
|
|
1639
|
+
* Inset Ring Color
|
|
1640
|
+
* @see https://tailwindcss.com/docs/box-shadow#setting-the-inset-ring-color
|
|
1641
|
+
*/
|
|
1642
|
+
'inset-ring-color': {
|
|
1643
|
+
'inset-ring': (((value: any) => boolean) | {
|
|
1644
|
+
(theme: any): any;
|
|
1645
|
+
isThemeGetter: boolean;
|
|
1646
|
+
})[];
|
|
1647
|
+
}[];
|
|
1648
|
+
/**
|
|
1649
|
+
* Text Shadow
|
|
1650
|
+
* @see https://tailwindcss.com/docs/text-shadow
|
|
1651
|
+
*/
|
|
1652
|
+
'text-shadow': {
|
|
1653
|
+
'text-shadow': (string | ((value: any) => any))[];
|
|
1654
|
+
}[];
|
|
1655
|
+
/**
|
|
1656
|
+
* Text Shadow Color
|
|
1657
|
+
* @see https://tailwindcss.com/docs/text-shadow#setting-the-shadow-color
|
|
1658
|
+
*/
|
|
1659
|
+
'text-shadow-color': {
|
|
1660
|
+
'text-shadow': (((value: any) => boolean) | {
|
|
1661
|
+
(theme: any): any;
|
|
1662
|
+
isThemeGetter: boolean;
|
|
1663
|
+
})[];
|
|
1664
|
+
}[];
|
|
1665
|
+
/**
|
|
1666
|
+
* Opacity
|
|
1667
|
+
* @see https://tailwindcss.com/docs/opacity
|
|
1668
|
+
*/
|
|
1669
|
+
opacity: {
|
|
1670
|
+
opacity: ((value: any) => boolean)[];
|
|
1671
|
+
}[];
|
|
1672
|
+
/**
|
|
1673
|
+
* Mix Blend Mode
|
|
1674
|
+
* @see https://tailwindcss.com/docs/mix-blend-mode
|
|
1675
|
+
*/
|
|
1676
|
+
'mix-blend': {
|
|
1677
|
+
'mix-blend': string[];
|
|
1678
|
+
}[];
|
|
1679
|
+
/**
|
|
1680
|
+
* Background Blend Mode
|
|
1681
|
+
* @see https://tailwindcss.com/docs/background-blend-mode
|
|
1682
|
+
*/
|
|
1683
|
+
'bg-blend': {
|
|
1684
|
+
'bg-blend': string[];
|
|
1685
|
+
}[];
|
|
1686
|
+
/**
|
|
1687
|
+
* Mask Clip
|
|
1688
|
+
* @see https://tailwindcss.com/docs/mask-clip
|
|
1689
|
+
*/
|
|
1690
|
+
'mask-clip': (string | {
|
|
1691
|
+
'mask-clip': string[];
|
|
1692
|
+
})[];
|
|
1693
|
+
/**
|
|
1694
|
+
* Mask Composite
|
|
1695
|
+
* @see https://tailwindcss.com/docs/mask-composite
|
|
1696
|
+
*/
|
|
1697
|
+
'mask-composite': {
|
|
1698
|
+
mask: string[];
|
|
1699
|
+
}[];
|
|
1700
|
+
/**
|
|
1701
|
+
* Mask Image
|
|
1702
|
+
* @see https://tailwindcss.com/docs/mask-image
|
|
1703
|
+
*/
|
|
1704
|
+
'mask-image-linear-pos': {
|
|
1705
|
+
'mask-linear': ((value: any) => boolean)[];
|
|
1706
|
+
}[];
|
|
1707
|
+
'mask-image-linear-from-pos': {
|
|
1708
|
+
'mask-linear-from': ((value: any) => any)[];
|
|
1709
|
+
}[];
|
|
1710
|
+
'mask-image-linear-to-pos': {
|
|
1711
|
+
'mask-linear-to': ((value: any) => any)[];
|
|
1712
|
+
}[];
|
|
1713
|
+
'mask-image-linear-from-color': {
|
|
1714
|
+
'mask-linear-from': (((value: any) => boolean) | {
|
|
1715
|
+
(theme: any): any;
|
|
1716
|
+
isThemeGetter: boolean;
|
|
1717
|
+
})[];
|
|
1718
|
+
}[];
|
|
1719
|
+
'mask-image-linear-to-color': {
|
|
1720
|
+
'mask-linear-to': (((value: any) => boolean) | {
|
|
1721
|
+
(theme: any): any;
|
|
1722
|
+
isThemeGetter: boolean;
|
|
1723
|
+
})[];
|
|
1724
|
+
}[];
|
|
1725
|
+
'mask-image-t-from-pos': {
|
|
1726
|
+
'mask-t-from': ((value: any) => any)[];
|
|
1727
|
+
}[];
|
|
1728
|
+
'mask-image-t-to-pos': {
|
|
1729
|
+
'mask-t-to': ((value: any) => any)[];
|
|
1730
|
+
}[];
|
|
1731
|
+
'mask-image-t-from-color': {
|
|
1732
|
+
'mask-t-from': (((value: any) => boolean) | {
|
|
1733
|
+
(theme: any): any;
|
|
1734
|
+
isThemeGetter: boolean;
|
|
1735
|
+
})[];
|
|
1736
|
+
}[];
|
|
1737
|
+
'mask-image-t-to-color': {
|
|
1738
|
+
'mask-t-to': (((value: any) => boolean) | {
|
|
1739
|
+
(theme: any): any;
|
|
1740
|
+
isThemeGetter: boolean;
|
|
1741
|
+
})[];
|
|
1742
|
+
}[];
|
|
1743
|
+
'mask-image-r-from-pos': {
|
|
1744
|
+
'mask-r-from': ((value: any) => any)[];
|
|
1745
|
+
}[];
|
|
1746
|
+
'mask-image-r-to-pos': {
|
|
1747
|
+
'mask-r-to': ((value: any) => any)[];
|
|
1748
|
+
}[];
|
|
1749
|
+
'mask-image-r-from-color': {
|
|
1750
|
+
'mask-r-from': (((value: any) => boolean) | {
|
|
1751
|
+
(theme: any): any;
|
|
1752
|
+
isThemeGetter: boolean;
|
|
1753
|
+
})[];
|
|
1754
|
+
}[];
|
|
1755
|
+
'mask-image-r-to-color': {
|
|
1756
|
+
'mask-r-to': (((value: any) => boolean) | {
|
|
1757
|
+
(theme: any): any;
|
|
1758
|
+
isThemeGetter: boolean;
|
|
1759
|
+
})[];
|
|
1760
|
+
}[];
|
|
1761
|
+
'mask-image-b-from-pos': {
|
|
1762
|
+
'mask-b-from': ((value: any) => any)[];
|
|
1763
|
+
}[];
|
|
1764
|
+
'mask-image-b-to-pos': {
|
|
1765
|
+
'mask-b-to': ((value: any) => any)[];
|
|
1766
|
+
}[];
|
|
1767
|
+
'mask-image-b-from-color': {
|
|
1768
|
+
'mask-b-from': (((value: any) => boolean) | {
|
|
1769
|
+
(theme: any): any;
|
|
1770
|
+
isThemeGetter: boolean;
|
|
1771
|
+
})[];
|
|
1772
|
+
}[];
|
|
1773
|
+
'mask-image-b-to-color': {
|
|
1774
|
+
'mask-b-to': (((value: any) => boolean) | {
|
|
1775
|
+
(theme: any): any;
|
|
1776
|
+
isThemeGetter: boolean;
|
|
1777
|
+
})[];
|
|
1778
|
+
}[];
|
|
1779
|
+
'mask-image-l-from-pos': {
|
|
1780
|
+
'mask-l-from': ((value: any) => any)[];
|
|
1781
|
+
}[];
|
|
1782
|
+
'mask-image-l-to-pos': {
|
|
1783
|
+
'mask-l-to': ((value: any) => any)[];
|
|
1784
|
+
}[];
|
|
1785
|
+
'mask-image-l-from-color': {
|
|
1786
|
+
'mask-l-from': (((value: any) => boolean) | {
|
|
1787
|
+
(theme: any): any;
|
|
1788
|
+
isThemeGetter: boolean;
|
|
1789
|
+
})[];
|
|
1790
|
+
}[];
|
|
1791
|
+
'mask-image-l-to-color': {
|
|
1792
|
+
'mask-l-to': (((value: any) => boolean) | {
|
|
1793
|
+
(theme: any): any;
|
|
1794
|
+
isThemeGetter: boolean;
|
|
1795
|
+
})[];
|
|
1796
|
+
}[];
|
|
1797
|
+
'mask-image-x-from-pos': {
|
|
1798
|
+
'mask-x-from': ((value: any) => any)[];
|
|
1799
|
+
}[];
|
|
1800
|
+
'mask-image-x-to-pos': {
|
|
1801
|
+
'mask-x-to': ((value: any) => any)[];
|
|
1802
|
+
}[];
|
|
1803
|
+
'mask-image-x-from-color': {
|
|
1804
|
+
'mask-x-from': (((value: any) => boolean) | {
|
|
1805
|
+
(theme: any): any;
|
|
1806
|
+
isThemeGetter: boolean;
|
|
1807
|
+
})[];
|
|
1808
|
+
}[];
|
|
1809
|
+
'mask-image-x-to-color': {
|
|
1810
|
+
'mask-x-to': (((value: any) => boolean) | {
|
|
1811
|
+
(theme: any): any;
|
|
1812
|
+
isThemeGetter: boolean;
|
|
1813
|
+
})[];
|
|
1814
|
+
}[];
|
|
1815
|
+
'mask-image-y-from-pos': {
|
|
1816
|
+
'mask-y-from': ((value: any) => any)[];
|
|
1817
|
+
}[];
|
|
1818
|
+
'mask-image-y-to-pos': {
|
|
1819
|
+
'mask-y-to': ((value: any) => any)[];
|
|
1820
|
+
}[];
|
|
1821
|
+
'mask-image-y-from-color': {
|
|
1822
|
+
'mask-y-from': (((value: any) => boolean) | {
|
|
1823
|
+
(theme: any): any;
|
|
1824
|
+
isThemeGetter: boolean;
|
|
1825
|
+
})[];
|
|
1826
|
+
}[];
|
|
1827
|
+
'mask-image-y-to-color': {
|
|
1828
|
+
'mask-y-to': (((value: any) => boolean) | {
|
|
1829
|
+
(theme: any): any;
|
|
1830
|
+
isThemeGetter: boolean;
|
|
1831
|
+
})[];
|
|
1832
|
+
}[];
|
|
1833
|
+
'mask-image-radial': {
|
|
1834
|
+
'mask-radial': ((value: any) => boolean)[];
|
|
1835
|
+
}[];
|
|
1836
|
+
'mask-image-radial-from-pos': {
|
|
1837
|
+
'mask-radial-from': ((value: any) => any)[];
|
|
1838
|
+
}[];
|
|
1839
|
+
'mask-image-radial-to-pos': {
|
|
1840
|
+
'mask-radial-to': ((value: any) => any)[];
|
|
1841
|
+
}[];
|
|
1842
|
+
'mask-image-radial-from-color': {
|
|
1843
|
+
'mask-radial-from': (((value: any) => boolean) | {
|
|
1844
|
+
(theme: any): any;
|
|
1845
|
+
isThemeGetter: boolean;
|
|
1846
|
+
})[];
|
|
1847
|
+
}[];
|
|
1848
|
+
'mask-image-radial-to-color': {
|
|
1849
|
+
'mask-radial-to': (((value: any) => boolean) | {
|
|
1850
|
+
(theme: any): any;
|
|
1851
|
+
isThemeGetter: boolean;
|
|
1852
|
+
})[];
|
|
1853
|
+
}[];
|
|
1854
|
+
'mask-image-radial-shape': {
|
|
1855
|
+
'mask-radial': string[];
|
|
1856
|
+
}[];
|
|
1857
|
+
'mask-image-radial-size': {
|
|
1858
|
+
'mask-radial': {
|
|
1859
|
+
closest: string[];
|
|
1860
|
+
farthest: string[];
|
|
1861
|
+
}[];
|
|
1862
|
+
}[];
|
|
1863
|
+
'mask-image-radial-pos': {
|
|
1864
|
+
'mask-radial-at': string[];
|
|
1865
|
+
}[];
|
|
1866
|
+
'mask-image-conic-pos': {
|
|
1867
|
+
'mask-conic': ((value: any) => boolean)[];
|
|
1868
|
+
}[];
|
|
1869
|
+
'mask-image-conic-from-pos': {
|
|
1870
|
+
'mask-conic-from': ((value: any) => any)[];
|
|
1871
|
+
}[];
|
|
1872
|
+
'mask-image-conic-to-pos': {
|
|
1873
|
+
'mask-conic-to': ((value: any) => any)[];
|
|
1874
|
+
}[];
|
|
1875
|
+
'mask-image-conic-from-color': {
|
|
1876
|
+
'mask-conic-from': (((value: any) => boolean) | {
|
|
1877
|
+
(theme: any): any;
|
|
1878
|
+
isThemeGetter: boolean;
|
|
1879
|
+
})[];
|
|
1880
|
+
}[];
|
|
1881
|
+
'mask-image-conic-to-color': {
|
|
1882
|
+
'mask-conic-to': (((value: any) => boolean) | {
|
|
1883
|
+
(theme: any): any;
|
|
1884
|
+
isThemeGetter: boolean;
|
|
1885
|
+
})[];
|
|
1886
|
+
}[];
|
|
1887
|
+
/**
|
|
1888
|
+
* Mask Mode
|
|
1889
|
+
* @see https://tailwindcss.com/docs/mask-mode
|
|
1890
|
+
*/
|
|
1891
|
+
'mask-mode': {
|
|
1892
|
+
mask: string[];
|
|
1893
|
+
}[];
|
|
1894
|
+
/**
|
|
1895
|
+
* Mask Origin
|
|
1896
|
+
* @see https://tailwindcss.com/docs/mask-origin
|
|
1897
|
+
*/
|
|
1898
|
+
'mask-origin': {
|
|
1899
|
+
'mask-origin': string[];
|
|
1900
|
+
}[];
|
|
1901
|
+
/**
|
|
1902
|
+
* Mask Position
|
|
1903
|
+
* @see https://tailwindcss.com/docs/mask-position
|
|
1904
|
+
*/
|
|
1905
|
+
'mask-position': {
|
|
1906
|
+
mask: (string | ((value: any) => any) | {
|
|
1907
|
+
position: ((value: any) => boolean)[];
|
|
1908
|
+
})[];
|
|
1909
|
+
}[];
|
|
1910
|
+
/**
|
|
1911
|
+
* Mask Repeat
|
|
1912
|
+
* @see https://tailwindcss.com/docs/mask-repeat
|
|
1913
|
+
*/
|
|
1914
|
+
'mask-repeat': {
|
|
1915
|
+
mask: (string | {
|
|
1916
|
+
repeat: string[];
|
|
1917
|
+
})[];
|
|
1918
|
+
}[];
|
|
1919
|
+
/**
|
|
1920
|
+
* Mask Size
|
|
1921
|
+
* @see https://tailwindcss.com/docs/mask-size
|
|
1922
|
+
*/
|
|
1923
|
+
'mask-size': {
|
|
1924
|
+
mask: (string | ((value: any) => any) | {
|
|
1925
|
+
size: ((value: any) => boolean)[];
|
|
1926
|
+
})[];
|
|
1927
|
+
}[];
|
|
1928
|
+
/**
|
|
1929
|
+
* Mask Type
|
|
1930
|
+
* @see https://tailwindcss.com/docs/mask-type
|
|
1931
|
+
*/
|
|
1932
|
+
'mask-type': {
|
|
1933
|
+
'mask-type': string[];
|
|
1934
|
+
}[];
|
|
1935
|
+
/**
|
|
1936
|
+
* Mask Image
|
|
1937
|
+
* @see https://tailwindcss.com/docs/mask-image
|
|
1938
|
+
*/
|
|
1939
|
+
'mask-image': {
|
|
1940
|
+
mask: (string | ((value: any) => boolean))[];
|
|
1941
|
+
}[];
|
|
1942
|
+
/**
|
|
1943
|
+
* Filter
|
|
1944
|
+
* @see https://tailwindcss.com/docs/filter
|
|
1945
|
+
*/
|
|
1946
|
+
filter: {
|
|
1947
|
+
filter: (string | ((value: any) => boolean))[];
|
|
1948
|
+
}[];
|
|
1949
|
+
/**
|
|
1950
|
+
* Blur
|
|
1951
|
+
* @see https://tailwindcss.com/docs/blur
|
|
1952
|
+
*/
|
|
1953
|
+
blur: {
|
|
1954
|
+
blur: (string | ((value: any) => boolean) | {
|
|
1955
|
+
(theme: any): any;
|
|
1956
|
+
isThemeGetter: boolean;
|
|
1957
|
+
})[];
|
|
1958
|
+
}[];
|
|
1959
|
+
/**
|
|
1960
|
+
* Brightness
|
|
1961
|
+
* @see https://tailwindcss.com/docs/brightness
|
|
1962
|
+
*/
|
|
1963
|
+
brightness: {
|
|
1964
|
+
brightness: ((value: any) => boolean)[];
|
|
1965
|
+
}[];
|
|
1966
|
+
/**
|
|
1967
|
+
* Contrast
|
|
1968
|
+
* @see https://tailwindcss.com/docs/contrast
|
|
1969
|
+
*/
|
|
1970
|
+
contrast: {
|
|
1971
|
+
contrast: ((value: any) => boolean)[];
|
|
1972
|
+
}[];
|
|
1973
|
+
/**
|
|
1974
|
+
* Drop Shadow
|
|
1975
|
+
* @see https://tailwindcss.com/docs/drop-shadow
|
|
1976
|
+
*/
|
|
1977
|
+
'drop-shadow': {
|
|
1978
|
+
'drop-shadow': (string | ((value: any) => any))[];
|
|
1979
|
+
}[];
|
|
1980
|
+
/**
|
|
1981
|
+
* Drop Shadow Color
|
|
1982
|
+
* @see https://tailwindcss.com/docs/filter-drop-shadow#setting-the-shadow-color
|
|
1983
|
+
*/
|
|
1984
|
+
'drop-shadow-color': {
|
|
1985
|
+
'drop-shadow': (((value: any) => boolean) | {
|
|
1986
|
+
(theme: any): any;
|
|
1987
|
+
isThemeGetter: boolean;
|
|
1988
|
+
})[];
|
|
1989
|
+
}[];
|
|
1990
|
+
/**
|
|
1991
|
+
* Grayscale
|
|
1992
|
+
* @see https://tailwindcss.com/docs/grayscale
|
|
1993
|
+
*/
|
|
1994
|
+
grayscale: {
|
|
1995
|
+
grayscale: (string | ((value: any) => boolean))[];
|
|
1996
|
+
}[];
|
|
1997
|
+
/**
|
|
1998
|
+
* Hue Rotate
|
|
1999
|
+
* @see https://tailwindcss.com/docs/hue-rotate
|
|
2000
|
+
*/
|
|
2001
|
+
'hue-rotate': {
|
|
2002
|
+
'hue-rotate': ((value: any) => boolean)[];
|
|
2003
|
+
}[];
|
|
2004
|
+
/**
|
|
2005
|
+
* Invert
|
|
2006
|
+
* @see https://tailwindcss.com/docs/invert
|
|
2007
|
+
*/
|
|
2008
|
+
invert: {
|
|
2009
|
+
invert: (string | ((value: any) => boolean))[];
|
|
2010
|
+
}[];
|
|
2011
|
+
/**
|
|
2012
|
+
* Saturate
|
|
2013
|
+
* @see https://tailwindcss.com/docs/saturate
|
|
2014
|
+
*/
|
|
2015
|
+
saturate: {
|
|
2016
|
+
saturate: ((value: any) => boolean)[];
|
|
2017
|
+
}[];
|
|
2018
|
+
/**
|
|
2019
|
+
* Sepia
|
|
2020
|
+
* @see https://tailwindcss.com/docs/sepia
|
|
2021
|
+
*/
|
|
2022
|
+
sepia: {
|
|
2023
|
+
sepia: (string | ((value: any) => boolean))[];
|
|
2024
|
+
}[];
|
|
2025
|
+
/**
|
|
2026
|
+
* Backdrop Filter
|
|
2027
|
+
* @see https://tailwindcss.com/docs/backdrop-filter
|
|
2028
|
+
*/
|
|
2029
|
+
'backdrop-filter': {
|
|
2030
|
+
'backdrop-filter': (string | ((value: any) => boolean))[];
|
|
2031
|
+
}[];
|
|
2032
|
+
/**
|
|
2033
|
+
* Backdrop Blur
|
|
2034
|
+
* @see https://tailwindcss.com/docs/backdrop-blur
|
|
2035
|
+
*/
|
|
2036
|
+
'backdrop-blur': {
|
|
2037
|
+
'backdrop-blur': (string | ((value: any) => boolean) | {
|
|
2038
|
+
(theme: any): any;
|
|
2039
|
+
isThemeGetter: boolean;
|
|
2040
|
+
})[];
|
|
2041
|
+
}[];
|
|
2042
|
+
/**
|
|
2043
|
+
* Backdrop Brightness
|
|
2044
|
+
* @see https://tailwindcss.com/docs/backdrop-brightness
|
|
2045
|
+
*/
|
|
2046
|
+
'backdrop-brightness': {
|
|
2047
|
+
'backdrop-brightness': ((value: any) => boolean)[];
|
|
2048
|
+
}[];
|
|
2049
|
+
/**
|
|
2050
|
+
* Backdrop Contrast
|
|
2051
|
+
* @see https://tailwindcss.com/docs/backdrop-contrast
|
|
2052
|
+
*/
|
|
2053
|
+
'backdrop-contrast': {
|
|
2054
|
+
'backdrop-contrast': ((value: any) => boolean)[];
|
|
2055
|
+
}[];
|
|
2056
|
+
/**
|
|
2057
|
+
* Backdrop Grayscale
|
|
2058
|
+
* @see https://tailwindcss.com/docs/backdrop-grayscale
|
|
2059
|
+
*/
|
|
2060
|
+
'backdrop-grayscale': {
|
|
2061
|
+
'backdrop-grayscale': (string | ((value: any) => boolean))[];
|
|
2062
|
+
}[];
|
|
2063
|
+
/**
|
|
2064
|
+
* Backdrop Hue Rotate
|
|
2065
|
+
* @see https://tailwindcss.com/docs/backdrop-hue-rotate
|
|
2066
|
+
*/
|
|
2067
|
+
'backdrop-hue-rotate': {
|
|
2068
|
+
'backdrop-hue-rotate': ((value: any) => boolean)[];
|
|
2069
|
+
}[];
|
|
2070
|
+
/**
|
|
2071
|
+
* Backdrop Invert
|
|
2072
|
+
* @see https://tailwindcss.com/docs/backdrop-invert
|
|
2073
|
+
*/
|
|
2074
|
+
'backdrop-invert': {
|
|
2075
|
+
'backdrop-invert': (string | ((value: any) => boolean))[];
|
|
2076
|
+
}[];
|
|
2077
|
+
/**
|
|
2078
|
+
* Backdrop Opacity
|
|
2079
|
+
* @see https://tailwindcss.com/docs/backdrop-opacity
|
|
2080
|
+
*/
|
|
2081
|
+
'backdrop-opacity': {
|
|
2082
|
+
'backdrop-opacity': ((value: any) => boolean)[];
|
|
2083
|
+
}[];
|
|
2084
|
+
/**
|
|
2085
|
+
* Backdrop Saturate
|
|
2086
|
+
* @see https://tailwindcss.com/docs/backdrop-saturate
|
|
2087
|
+
*/
|
|
2088
|
+
'backdrop-saturate': {
|
|
2089
|
+
'backdrop-saturate': ((value: any) => boolean)[];
|
|
2090
|
+
}[];
|
|
2091
|
+
/**
|
|
2092
|
+
* Backdrop Sepia
|
|
2093
|
+
* @see https://tailwindcss.com/docs/backdrop-sepia
|
|
2094
|
+
*/
|
|
2095
|
+
'backdrop-sepia': {
|
|
2096
|
+
'backdrop-sepia': (string | ((value: any) => boolean))[];
|
|
2097
|
+
}[];
|
|
2098
|
+
/**
|
|
2099
|
+
* Border Collapse
|
|
2100
|
+
* @see https://tailwindcss.com/docs/border-collapse
|
|
2101
|
+
*/
|
|
2102
|
+
'border-collapse': {
|
|
2103
|
+
border: string[];
|
|
2104
|
+
}[];
|
|
2105
|
+
/**
|
|
2106
|
+
* Border Spacing
|
|
2107
|
+
* @see https://tailwindcss.com/docs/border-spacing
|
|
2108
|
+
*/
|
|
2109
|
+
'border-spacing': {
|
|
2110
|
+
'border-spacing': (((value: any) => boolean) | {
|
|
2111
|
+
(theme: any): any;
|
|
2112
|
+
isThemeGetter: boolean;
|
|
2113
|
+
})[];
|
|
2114
|
+
}[];
|
|
2115
|
+
/**
|
|
2116
|
+
* Border Spacing X
|
|
2117
|
+
* @see https://tailwindcss.com/docs/border-spacing
|
|
2118
|
+
*/
|
|
2119
|
+
'border-spacing-x': {
|
|
2120
|
+
'border-spacing-x': (((value: any) => boolean) | {
|
|
2121
|
+
(theme: any): any;
|
|
2122
|
+
isThemeGetter: boolean;
|
|
2123
|
+
})[];
|
|
2124
|
+
}[];
|
|
2125
|
+
/**
|
|
2126
|
+
* Border Spacing Y
|
|
2127
|
+
* @see https://tailwindcss.com/docs/border-spacing
|
|
2128
|
+
*/
|
|
2129
|
+
'border-spacing-y': {
|
|
2130
|
+
'border-spacing-y': (((value: any) => boolean) | {
|
|
2131
|
+
(theme: any): any;
|
|
2132
|
+
isThemeGetter: boolean;
|
|
2133
|
+
})[];
|
|
2134
|
+
}[];
|
|
2135
|
+
/**
|
|
2136
|
+
* Table Layout
|
|
2137
|
+
* @see https://tailwindcss.com/docs/table-layout
|
|
2138
|
+
*/
|
|
2139
|
+
'table-layout': {
|
|
2140
|
+
table: string[];
|
|
2141
|
+
}[];
|
|
2142
|
+
/**
|
|
2143
|
+
* Caption Side
|
|
2144
|
+
* @see https://tailwindcss.com/docs/caption-side
|
|
2145
|
+
*/
|
|
2146
|
+
caption: {
|
|
2147
|
+
caption: string[];
|
|
2148
|
+
}[];
|
|
2149
|
+
/**
|
|
2150
|
+
* Transition Property
|
|
2151
|
+
* @see https://tailwindcss.com/docs/transition-property
|
|
2152
|
+
*/
|
|
2153
|
+
transition: {
|
|
2154
|
+
transition: (string | ((value: any) => boolean))[];
|
|
2155
|
+
}[];
|
|
2156
|
+
/**
|
|
2157
|
+
* Transition Behavior
|
|
2158
|
+
* @see https://tailwindcss.com/docs/transition-behavior
|
|
2159
|
+
*/
|
|
2160
|
+
'transition-behavior': {
|
|
2161
|
+
transition: string[];
|
|
2162
|
+
}[];
|
|
2163
|
+
/**
|
|
2164
|
+
* Transition Duration
|
|
2165
|
+
* @see https://tailwindcss.com/docs/transition-duration
|
|
2166
|
+
*/
|
|
2167
|
+
duration: {
|
|
2168
|
+
duration: (string | ((value: any) => boolean))[];
|
|
2169
|
+
}[];
|
|
2170
|
+
/**
|
|
2171
|
+
* Transition Timing Function
|
|
2172
|
+
* @see https://tailwindcss.com/docs/transition-timing-function
|
|
2173
|
+
*/
|
|
2174
|
+
ease: {
|
|
2175
|
+
ease: (string | ((value: any) => boolean) | {
|
|
2176
|
+
(theme: any): any;
|
|
2177
|
+
isThemeGetter: boolean;
|
|
2178
|
+
})[];
|
|
2179
|
+
}[];
|
|
2180
|
+
/**
|
|
2181
|
+
* Transition Delay
|
|
2182
|
+
* @see https://tailwindcss.com/docs/transition-delay
|
|
2183
|
+
*/
|
|
2184
|
+
delay: {
|
|
2185
|
+
delay: ((value: any) => boolean)[];
|
|
2186
|
+
}[];
|
|
2187
|
+
/**
|
|
2188
|
+
* Animation
|
|
2189
|
+
* @see https://tailwindcss.com/docs/animation
|
|
2190
|
+
*/
|
|
2191
|
+
animate: {
|
|
2192
|
+
animate: (string | ((value: any) => boolean) | {
|
|
2193
|
+
(theme: any): any;
|
|
2194
|
+
isThemeGetter: boolean;
|
|
2195
|
+
})[];
|
|
2196
|
+
}[];
|
|
2197
|
+
/**
|
|
2198
|
+
* Backface Visibility
|
|
2199
|
+
* @see https://tailwindcss.com/docs/backface-visibility
|
|
2200
|
+
*/
|
|
2201
|
+
backface: {
|
|
2202
|
+
backface: string[];
|
|
2203
|
+
}[];
|
|
2204
|
+
/**
|
|
2205
|
+
* Perspective
|
|
2206
|
+
* @see https://tailwindcss.com/docs/perspective
|
|
2207
|
+
*/
|
|
2208
|
+
perspective: {
|
|
2209
|
+
perspective: (((value: any) => boolean) | {
|
|
2210
|
+
(theme: any): any;
|
|
2211
|
+
isThemeGetter: boolean;
|
|
2212
|
+
})[];
|
|
2213
|
+
}[];
|
|
2214
|
+
/**
|
|
2215
|
+
* Perspective Origin
|
|
2216
|
+
* @see https://tailwindcss.com/docs/perspective-origin
|
|
2217
|
+
*/
|
|
2218
|
+
'perspective-origin': {
|
|
2219
|
+
'perspective-origin': (string | ((value: any) => boolean))[];
|
|
2220
|
+
}[];
|
|
2221
|
+
/**
|
|
2222
|
+
* Rotate
|
|
2223
|
+
* @see https://tailwindcss.com/docs/rotate
|
|
2224
|
+
*/
|
|
2225
|
+
rotate: {
|
|
2226
|
+
rotate: (string | ((value: any) => boolean))[];
|
|
2227
|
+
}[];
|
|
2228
|
+
/**
|
|
2229
|
+
* Rotate X
|
|
2230
|
+
* @see https://tailwindcss.com/docs/rotate
|
|
2231
|
+
*/
|
|
2232
|
+
'rotate-x': {
|
|
2233
|
+
'rotate-x': (string | ((value: any) => boolean))[];
|
|
2234
|
+
}[];
|
|
2235
|
+
/**
|
|
2236
|
+
* Rotate Y
|
|
2237
|
+
* @see https://tailwindcss.com/docs/rotate
|
|
2238
|
+
*/
|
|
2239
|
+
'rotate-y': {
|
|
2240
|
+
'rotate-y': (string | ((value: any) => boolean))[];
|
|
2241
|
+
}[];
|
|
2242
|
+
/**
|
|
2243
|
+
* Rotate Z
|
|
2244
|
+
* @see https://tailwindcss.com/docs/rotate
|
|
2245
|
+
*/
|
|
2246
|
+
'rotate-z': {
|
|
2247
|
+
'rotate-z': (string | ((value: any) => boolean))[];
|
|
2248
|
+
}[];
|
|
2249
|
+
/**
|
|
2250
|
+
* Scale
|
|
2251
|
+
* @see https://tailwindcss.com/docs/scale
|
|
2252
|
+
*/
|
|
2253
|
+
scale: {
|
|
2254
|
+
scale: (string | ((value: any) => boolean))[];
|
|
2255
|
+
}[];
|
|
2256
|
+
/**
|
|
2257
|
+
* Scale X
|
|
2258
|
+
* @see https://tailwindcss.com/docs/scale
|
|
2259
|
+
*/
|
|
2260
|
+
'scale-x': {
|
|
2261
|
+
'scale-x': (string | ((value: any) => boolean))[];
|
|
2262
|
+
}[];
|
|
2263
|
+
/**
|
|
2264
|
+
* Scale Y
|
|
2265
|
+
* @see https://tailwindcss.com/docs/scale
|
|
2266
|
+
*/
|
|
2267
|
+
'scale-y': {
|
|
2268
|
+
'scale-y': (string | ((value: any) => boolean))[];
|
|
2269
|
+
}[];
|
|
2270
|
+
/**
|
|
2271
|
+
* Scale Z
|
|
2272
|
+
* @see https://tailwindcss.com/docs/scale
|
|
2273
|
+
*/
|
|
2274
|
+
'scale-z': {
|
|
2275
|
+
'scale-z': (string | ((value: any) => boolean))[];
|
|
2276
|
+
}[];
|
|
2277
|
+
/**
|
|
2278
|
+
* Scale 3D
|
|
2279
|
+
* @see https://tailwindcss.com/docs/scale
|
|
2280
|
+
*/
|
|
2281
|
+
'scale-3d': string[];
|
|
2282
|
+
/**
|
|
2283
|
+
* Skew
|
|
2284
|
+
* @see https://tailwindcss.com/docs/skew
|
|
2285
|
+
*/
|
|
2286
|
+
skew: {
|
|
2287
|
+
skew: ((value: any) => boolean)[];
|
|
2288
|
+
}[];
|
|
2289
|
+
/**
|
|
2290
|
+
* Skew X
|
|
2291
|
+
* @see https://tailwindcss.com/docs/skew
|
|
2292
|
+
*/
|
|
2293
|
+
'skew-x': {
|
|
2294
|
+
'skew-x': ((value: any) => boolean)[];
|
|
2295
|
+
}[];
|
|
2296
|
+
/**
|
|
2297
|
+
* Skew Y
|
|
2298
|
+
* @see https://tailwindcss.com/docs/skew
|
|
2299
|
+
*/
|
|
2300
|
+
'skew-y': {
|
|
2301
|
+
'skew-y': ((value: any) => boolean)[];
|
|
2302
|
+
}[];
|
|
2303
|
+
/**
|
|
2304
|
+
* Transform
|
|
2305
|
+
* @see https://tailwindcss.com/docs/transform
|
|
2306
|
+
*/
|
|
2307
|
+
transform: {
|
|
2308
|
+
transform: (string | ((value: any) => boolean))[];
|
|
2309
|
+
}[];
|
|
2310
|
+
/**
|
|
2311
|
+
* Transform Origin
|
|
2312
|
+
* @see https://tailwindcss.com/docs/transform-origin
|
|
2313
|
+
*/
|
|
2314
|
+
'transform-origin': {
|
|
2315
|
+
origin: (string | ((value: any) => boolean))[];
|
|
2316
|
+
}[];
|
|
2317
|
+
/**
|
|
2318
|
+
* Transform Style
|
|
2319
|
+
* @see https://tailwindcss.com/docs/transform-style
|
|
2320
|
+
*/
|
|
2321
|
+
'transform-style': {
|
|
2322
|
+
transform: string[];
|
|
2323
|
+
}[];
|
|
2324
|
+
/**
|
|
2325
|
+
* Translate
|
|
2326
|
+
* @see https://tailwindcss.com/docs/translate
|
|
2327
|
+
*/
|
|
2328
|
+
translate: {
|
|
2329
|
+
translate: (string | ((value: any) => boolean) | {
|
|
2330
|
+
(theme: any): any;
|
|
2331
|
+
isThemeGetter: boolean;
|
|
2332
|
+
})[];
|
|
2333
|
+
}[];
|
|
2334
|
+
/**
|
|
2335
|
+
* Translate X
|
|
2336
|
+
* @see https://tailwindcss.com/docs/translate
|
|
2337
|
+
*/
|
|
2338
|
+
'translate-x': {
|
|
2339
|
+
'translate-x': (string | ((value: any) => boolean) | {
|
|
2340
|
+
(theme: any): any;
|
|
2341
|
+
isThemeGetter: boolean;
|
|
2342
|
+
})[];
|
|
2343
|
+
}[];
|
|
2344
|
+
/**
|
|
2345
|
+
* Translate Y
|
|
2346
|
+
* @see https://tailwindcss.com/docs/translate
|
|
2347
|
+
*/
|
|
2348
|
+
'translate-y': {
|
|
2349
|
+
'translate-y': (string | ((value: any) => boolean) | {
|
|
2350
|
+
(theme: any): any;
|
|
2351
|
+
isThemeGetter: boolean;
|
|
2352
|
+
})[];
|
|
2353
|
+
}[];
|
|
2354
|
+
/**
|
|
2355
|
+
* Translate Z
|
|
2356
|
+
* @see https://tailwindcss.com/docs/translate
|
|
2357
|
+
*/
|
|
2358
|
+
'translate-z': {
|
|
2359
|
+
'translate-z': (string | ((value: any) => boolean) | {
|
|
2360
|
+
(theme: any): any;
|
|
2361
|
+
isThemeGetter: boolean;
|
|
2362
|
+
})[];
|
|
2363
|
+
}[];
|
|
2364
|
+
/**
|
|
2365
|
+
* Translate None
|
|
2366
|
+
* @see https://tailwindcss.com/docs/translate
|
|
2367
|
+
*/
|
|
2368
|
+
'translate-none': string[];
|
|
2369
|
+
/**
|
|
2370
|
+
* Accent Color
|
|
2371
|
+
* @see https://tailwindcss.com/docs/accent-color
|
|
2372
|
+
*/
|
|
2373
|
+
accent: {
|
|
2374
|
+
accent: (((value: any) => boolean) | {
|
|
2375
|
+
(theme: any): any;
|
|
2376
|
+
isThemeGetter: boolean;
|
|
2377
|
+
})[];
|
|
2378
|
+
}[];
|
|
2379
|
+
/**
|
|
2380
|
+
* Appearance
|
|
2381
|
+
* @see https://tailwindcss.com/docs/appearance
|
|
2382
|
+
*/
|
|
2383
|
+
appearance: {
|
|
2384
|
+
appearance: string[];
|
|
2385
|
+
}[];
|
|
2386
|
+
/**
|
|
2387
|
+
* Caret Color
|
|
2388
|
+
* @see https://tailwindcss.com/docs/just-in-time-mode#caret-color-utilities
|
|
2389
|
+
*/
|
|
2390
|
+
'caret-color': {
|
|
2391
|
+
caret: (((value: any) => boolean) | {
|
|
2392
|
+
(theme: any): any;
|
|
2393
|
+
isThemeGetter: boolean;
|
|
2394
|
+
})[];
|
|
2395
|
+
}[];
|
|
2396
|
+
/**
|
|
2397
|
+
* Color Scheme
|
|
2398
|
+
* @see https://tailwindcss.com/docs/color-scheme
|
|
2399
|
+
*/
|
|
2400
|
+
'color-scheme': {
|
|
2401
|
+
scheme: string[];
|
|
2402
|
+
}[];
|
|
2403
|
+
/**
|
|
2404
|
+
* Cursor
|
|
2405
|
+
* @see https://tailwindcss.com/docs/cursor
|
|
2406
|
+
*/
|
|
2407
|
+
cursor: {
|
|
2408
|
+
cursor: (string | ((value: any) => boolean))[];
|
|
2409
|
+
}[];
|
|
2410
|
+
/**
|
|
2411
|
+
* Field Sizing
|
|
2412
|
+
* @see https://tailwindcss.com/docs/field-sizing
|
|
2413
|
+
*/
|
|
2414
|
+
'field-sizing': {
|
|
2415
|
+
'field-sizing': string[];
|
|
2416
|
+
}[];
|
|
2417
|
+
/**
|
|
2418
|
+
* Pointer Events
|
|
2419
|
+
* @see https://tailwindcss.com/docs/pointer-events
|
|
2420
|
+
*/
|
|
2421
|
+
'pointer-events': {
|
|
2422
|
+
'pointer-events': string[];
|
|
2423
|
+
}[];
|
|
2424
|
+
/**
|
|
2425
|
+
* Resize
|
|
2426
|
+
* @see https://tailwindcss.com/docs/resize
|
|
2427
|
+
*/
|
|
2428
|
+
resize: {
|
|
2429
|
+
resize: string[];
|
|
2430
|
+
}[];
|
|
2431
|
+
/**
|
|
2432
|
+
* Scroll Behavior
|
|
2433
|
+
* @see https://tailwindcss.com/docs/scroll-behavior
|
|
2434
|
+
*/
|
|
2435
|
+
'scroll-behavior': {
|
|
2436
|
+
scroll: string[];
|
|
2437
|
+
}[];
|
|
2438
|
+
/**
|
|
2439
|
+
* Scroll Margin
|
|
2440
|
+
* @see https://tailwindcss.com/docs/scroll-margin
|
|
2441
|
+
*/
|
|
2442
|
+
'scroll-m': {
|
|
2443
|
+
'scroll-m': (((value: any) => boolean) | {
|
|
2444
|
+
(theme: any): any;
|
|
2445
|
+
isThemeGetter: boolean;
|
|
2446
|
+
})[];
|
|
2447
|
+
}[];
|
|
2448
|
+
/**
|
|
2449
|
+
* Scroll Margin X
|
|
2450
|
+
* @see https://tailwindcss.com/docs/scroll-margin
|
|
2451
|
+
*/
|
|
2452
|
+
'scroll-mx': {
|
|
2453
|
+
'scroll-mx': (((value: any) => boolean) | {
|
|
2454
|
+
(theme: any): any;
|
|
2455
|
+
isThemeGetter: boolean;
|
|
2456
|
+
})[];
|
|
2457
|
+
}[];
|
|
2458
|
+
/**
|
|
2459
|
+
* Scroll Margin Y
|
|
2460
|
+
* @see https://tailwindcss.com/docs/scroll-margin
|
|
2461
|
+
*/
|
|
2462
|
+
'scroll-my': {
|
|
2463
|
+
'scroll-my': (((value: any) => boolean) | {
|
|
2464
|
+
(theme: any): any;
|
|
2465
|
+
isThemeGetter: boolean;
|
|
2466
|
+
})[];
|
|
2467
|
+
}[];
|
|
2468
|
+
/**
|
|
2469
|
+
* Scroll Margin Start
|
|
2470
|
+
* @see https://tailwindcss.com/docs/scroll-margin
|
|
2471
|
+
*/
|
|
2472
|
+
'scroll-ms': {
|
|
2473
|
+
'scroll-ms': (((value: any) => boolean) | {
|
|
2474
|
+
(theme: any): any;
|
|
2475
|
+
isThemeGetter: boolean;
|
|
2476
|
+
})[];
|
|
2477
|
+
}[];
|
|
2478
|
+
/**
|
|
2479
|
+
* Scroll Margin End
|
|
2480
|
+
* @see https://tailwindcss.com/docs/scroll-margin
|
|
2481
|
+
*/
|
|
2482
|
+
'scroll-me': {
|
|
2483
|
+
'scroll-me': (((value: any) => boolean) | {
|
|
2484
|
+
(theme: any): any;
|
|
2485
|
+
isThemeGetter: boolean;
|
|
2486
|
+
})[];
|
|
2487
|
+
}[];
|
|
2488
|
+
/**
|
|
2489
|
+
* Scroll Margin Top
|
|
2490
|
+
* @see https://tailwindcss.com/docs/scroll-margin
|
|
2491
|
+
*/
|
|
2492
|
+
'scroll-mt': {
|
|
2493
|
+
'scroll-mt': (((value: any) => boolean) | {
|
|
2494
|
+
(theme: any): any;
|
|
2495
|
+
isThemeGetter: boolean;
|
|
2496
|
+
})[];
|
|
2497
|
+
}[];
|
|
2498
|
+
/**
|
|
2499
|
+
* Scroll Margin Right
|
|
2500
|
+
* @see https://tailwindcss.com/docs/scroll-margin
|
|
2501
|
+
*/
|
|
2502
|
+
'scroll-mr': {
|
|
2503
|
+
'scroll-mr': (((value: any) => boolean) | {
|
|
2504
|
+
(theme: any): any;
|
|
2505
|
+
isThemeGetter: boolean;
|
|
2506
|
+
})[];
|
|
2507
|
+
}[];
|
|
2508
|
+
/**
|
|
2509
|
+
* Scroll Margin Bottom
|
|
2510
|
+
* @see https://tailwindcss.com/docs/scroll-margin
|
|
2511
|
+
*/
|
|
2512
|
+
'scroll-mb': {
|
|
2513
|
+
'scroll-mb': (((value: any) => boolean) | {
|
|
2514
|
+
(theme: any): any;
|
|
2515
|
+
isThemeGetter: boolean;
|
|
2516
|
+
})[];
|
|
2517
|
+
}[];
|
|
2518
|
+
/**
|
|
2519
|
+
* Scroll Margin Left
|
|
2520
|
+
* @see https://tailwindcss.com/docs/scroll-margin
|
|
2521
|
+
*/
|
|
2522
|
+
'scroll-ml': {
|
|
2523
|
+
'scroll-ml': (((value: any) => boolean) | {
|
|
2524
|
+
(theme: any): any;
|
|
2525
|
+
isThemeGetter: boolean;
|
|
2526
|
+
})[];
|
|
2527
|
+
}[];
|
|
2528
|
+
/**
|
|
2529
|
+
* Scroll Padding
|
|
2530
|
+
* @see https://tailwindcss.com/docs/scroll-padding
|
|
2531
|
+
*/
|
|
2532
|
+
'scroll-p': {
|
|
2533
|
+
'scroll-p': (((value: any) => boolean) | {
|
|
2534
|
+
(theme: any): any;
|
|
2535
|
+
isThemeGetter: boolean;
|
|
2536
|
+
})[];
|
|
2537
|
+
}[];
|
|
2538
|
+
/**
|
|
2539
|
+
* Scroll Padding X
|
|
2540
|
+
* @see https://tailwindcss.com/docs/scroll-padding
|
|
2541
|
+
*/
|
|
2542
|
+
'scroll-px': {
|
|
2543
|
+
'scroll-px': (((value: any) => boolean) | {
|
|
2544
|
+
(theme: any): any;
|
|
2545
|
+
isThemeGetter: boolean;
|
|
2546
|
+
})[];
|
|
2547
|
+
}[];
|
|
2548
|
+
/**
|
|
2549
|
+
* Scroll Padding Y
|
|
2550
|
+
* @see https://tailwindcss.com/docs/scroll-padding
|
|
2551
|
+
*/
|
|
2552
|
+
'scroll-py': {
|
|
2553
|
+
'scroll-py': (((value: any) => boolean) | {
|
|
2554
|
+
(theme: any): any;
|
|
2555
|
+
isThemeGetter: boolean;
|
|
2556
|
+
})[];
|
|
2557
|
+
}[];
|
|
2558
|
+
/**
|
|
2559
|
+
* Scroll Padding Start
|
|
2560
|
+
* @see https://tailwindcss.com/docs/scroll-padding
|
|
2561
|
+
*/
|
|
2562
|
+
'scroll-ps': {
|
|
2563
|
+
'scroll-ps': (((value: any) => boolean) | {
|
|
2564
|
+
(theme: any): any;
|
|
2565
|
+
isThemeGetter: boolean;
|
|
2566
|
+
})[];
|
|
2567
|
+
}[];
|
|
2568
|
+
/**
|
|
2569
|
+
* Scroll Padding End
|
|
2570
|
+
* @see https://tailwindcss.com/docs/scroll-padding
|
|
2571
|
+
*/
|
|
2572
|
+
'scroll-pe': {
|
|
2573
|
+
'scroll-pe': (((value: any) => boolean) | {
|
|
2574
|
+
(theme: any): any;
|
|
2575
|
+
isThemeGetter: boolean;
|
|
2576
|
+
})[];
|
|
2577
|
+
}[];
|
|
2578
|
+
/**
|
|
2579
|
+
* Scroll Padding Top
|
|
2580
|
+
* @see https://tailwindcss.com/docs/scroll-padding
|
|
2581
|
+
*/
|
|
2582
|
+
'scroll-pt': {
|
|
2583
|
+
'scroll-pt': (((value: any) => boolean) | {
|
|
2584
|
+
(theme: any): any;
|
|
2585
|
+
isThemeGetter: boolean;
|
|
2586
|
+
})[];
|
|
2587
|
+
}[];
|
|
2588
|
+
/**
|
|
2589
|
+
* Scroll Padding Right
|
|
2590
|
+
* @see https://tailwindcss.com/docs/scroll-padding
|
|
2591
|
+
*/
|
|
2592
|
+
'scroll-pr': {
|
|
2593
|
+
'scroll-pr': (((value: any) => boolean) | {
|
|
2594
|
+
(theme: any): any;
|
|
2595
|
+
isThemeGetter: boolean;
|
|
2596
|
+
})[];
|
|
2597
|
+
}[];
|
|
2598
|
+
/**
|
|
2599
|
+
* Scroll Padding Bottom
|
|
2600
|
+
* @see https://tailwindcss.com/docs/scroll-padding
|
|
2601
|
+
*/
|
|
2602
|
+
'scroll-pb': {
|
|
2603
|
+
'scroll-pb': (((value: any) => boolean) | {
|
|
2604
|
+
(theme: any): any;
|
|
2605
|
+
isThemeGetter: boolean;
|
|
2606
|
+
})[];
|
|
2607
|
+
}[];
|
|
2608
|
+
/**
|
|
2609
|
+
* Scroll Padding Left
|
|
2610
|
+
* @see https://tailwindcss.com/docs/scroll-padding
|
|
2611
|
+
*/
|
|
2612
|
+
'scroll-pl': {
|
|
2613
|
+
'scroll-pl': (((value: any) => boolean) | {
|
|
2614
|
+
(theme: any): any;
|
|
2615
|
+
isThemeGetter: boolean;
|
|
2616
|
+
})[];
|
|
2617
|
+
}[];
|
|
2618
|
+
/**
|
|
2619
|
+
* Scroll Snap Align
|
|
2620
|
+
* @see https://tailwindcss.com/docs/scroll-snap-align
|
|
2621
|
+
*/
|
|
2622
|
+
'snap-align': {
|
|
2623
|
+
snap: string[];
|
|
2624
|
+
}[];
|
|
2625
|
+
/**
|
|
2626
|
+
* Scroll Snap Stop
|
|
2627
|
+
* @see https://tailwindcss.com/docs/scroll-snap-stop
|
|
2628
|
+
*/
|
|
2629
|
+
'snap-stop': {
|
|
2630
|
+
snap: string[];
|
|
2631
|
+
}[];
|
|
2632
|
+
/**
|
|
2633
|
+
* Scroll Snap Type
|
|
2634
|
+
* @see https://tailwindcss.com/docs/scroll-snap-type
|
|
2635
|
+
*/
|
|
2636
|
+
'snap-type': {
|
|
2637
|
+
snap: string[];
|
|
2638
|
+
}[];
|
|
2639
|
+
/**
|
|
2640
|
+
* Scroll Snap Type Strictness
|
|
2641
|
+
* @see https://tailwindcss.com/docs/scroll-snap-type
|
|
2642
|
+
*/
|
|
2643
|
+
'snap-strictness': {
|
|
2644
|
+
snap: string[];
|
|
2645
|
+
}[];
|
|
2646
|
+
/**
|
|
2647
|
+
* Touch Action
|
|
2648
|
+
* @see https://tailwindcss.com/docs/touch-action
|
|
2649
|
+
*/
|
|
2650
|
+
touch: {
|
|
2651
|
+
touch: string[];
|
|
2652
|
+
}[];
|
|
2653
|
+
/**
|
|
2654
|
+
* Touch Action X
|
|
2655
|
+
* @see https://tailwindcss.com/docs/touch-action
|
|
2656
|
+
*/
|
|
2657
|
+
'touch-x': {
|
|
2658
|
+
'touch-pan': string[];
|
|
2659
|
+
}[];
|
|
2660
|
+
/**
|
|
2661
|
+
* Touch Action Y
|
|
2662
|
+
* @see https://tailwindcss.com/docs/touch-action
|
|
2663
|
+
*/
|
|
2664
|
+
'touch-y': {
|
|
2665
|
+
'touch-pan': string[];
|
|
2666
|
+
}[];
|
|
2667
|
+
/**
|
|
2668
|
+
* Touch Action Pinch Zoom
|
|
2669
|
+
* @see https://tailwindcss.com/docs/touch-action
|
|
2670
|
+
*/
|
|
2671
|
+
'touch-pz': string[];
|
|
2672
|
+
/**
|
|
2673
|
+
* User Select
|
|
2674
|
+
* @see https://tailwindcss.com/docs/user-select
|
|
2675
|
+
*/
|
|
2676
|
+
select: {
|
|
2677
|
+
select: string[];
|
|
2678
|
+
}[];
|
|
2679
|
+
/**
|
|
2680
|
+
* Will Change
|
|
2681
|
+
* @see https://tailwindcss.com/docs/will-change
|
|
2682
|
+
*/
|
|
2683
|
+
'will-change': {
|
|
2684
|
+
'will-change': (string | ((value: any) => boolean))[];
|
|
2685
|
+
}[];
|
|
2686
|
+
/**
|
|
2687
|
+
* Fill
|
|
2688
|
+
* @see https://tailwindcss.com/docs/fill
|
|
2689
|
+
*/
|
|
2690
|
+
fill: {
|
|
2691
|
+
fill: (string | ((value: any) => boolean) | {
|
|
2692
|
+
(theme: any): any;
|
|
2693
|
+
isThemeGetter: boolean;
|
|
2694
|
+
})[];
|
|
2695
|
+
}[];
|
|
2696
|
+
/**
|
|
2697
|
+
* Stroke Width
|
|
2698
|
+
* @see https://tailwindcss.com/docs/stroke-width
|
|
2699
|
+
*/
|
|
2700
|
+
'stroke-w': {
|
|
2701
|
+
stroke: ((value: any) => any)[];
|
|
2702
|
+
}[];
|
|
2703
|
+
/**
|
|
2704
|
+
* Stroke
|
|
2705
|
+
* @see https://tailwindcss.com/docs/stroke
|
|
2706
|
+
*/
|
|
2707
|
+
stroke: {
|
|
2708
|
+
stroke: (string | ((value: any) => boolean) | {
|
|
2709
|
+
(theme: any): any;
|
|
2710
|
+
isThemeGetter: boolean;
|
|
2711
|
+
})[];
|
|
2712
|
+
}[];
|
|
2713
|
+
/**
|
|
2714
|
+
* Forced Color Adjust
|
|
2715
|
+
* @see https://tailwindcss.com/docs/forced-color-adjust
|
|
2716
|
+
*/
|
|
2717
|
+
'forced-color-adjust': {
|
|
2718
|
+
'forced-color-adjust': string[];
|
|
2719
|
+
}[];
|
|
2720
|
+
};
|
|
2721
|
+
conflictingClassGroups: {
|
|
2722
|
+
overflow: string[];
|
|
2723
|
+
overscroll: string[];
|
|
2724
|
+
inset: string[];
|
|
2725
|
+
'inset-x': string[];
|
|
2726
|
+
'inset-y': string[];
|
|
2727
|
+
flex: string[];
|
|
2728
|
+
gap: string[];
|
|
2729
|
+
p: string[];
|
|
2730
|
+
px: string[];
|
|
2731
|
+
py: string[];
|
|
2732
|
+
m: string[];
|
|
2733
|
+
mx: string[];
|
|
2734
|
+
my: string[];
|
|
2735
|
+
size: string[];
|
|
2736
|
+
'font-size': string[];
|
|
2737
|
+
'fvn-normal': string[];
|
|
2738
|
+
'fvn-ordinal': string[];
|
|
2739
|
+
'fvn-slashed-zero': string[];
|
|
2740
|
+
'fvn-figure': string[];
|
|
2741
|
+
'fvn-spacing': string[];
|
|
2742
|
+
'fvn-fraction': string[];
|
|
2743
|
+
'line-clamp': string[];
|
|
2744
|
+
rounded: string[];
|
|
2745
|
+
'rounded-s': string[];
|
|
2746
|
+
'rounded-e': string[];
|
|
2747
|
+
'rounded-t': string[];
|
|
2748
|
+
'rounded-r': string[];
|
|
2749
|
+
'rounded-b': string[];
|
|
2750
|
+
'rounded-l': string[];
|
|
2751
|
+
'border-spacing': string[];
|
|
2752
|
+
'border-w': string[];
|
|
2753
|
+
'border-w-x': string[];
|
|
2754
|
+
'border-w-y': string[];
|
|
2755
|
+
'border-color': string[];
|
|
2756
|
+
'border-color-x': string[];
|
|
2757
|
+
'border-color-y': string[];
|
|
2758
|
+
translate: string[];
|
|
2759
|
+
'translate-none': string[];
|
|
2760
|
+
'scroll-m': string[];
|
|
2761
|
+
'scroll-mx': string[];
|
|
2762
|
+
'scroll-my': string[];
|
|
2763
|
+
'scroll-p': string[];
|
|
2764
|
+
'scroll-px': string[];
|
|
2765
|
+
'scroll-py': string[];
|
|
2766
|
+
touch: string[];
|
|
2767
|
+
'touch-x': string[];
|
|
2768
|
+
'touch-y': string[];
|
|
2769
|
+
'touch-pz': string[];
|
|
2770
|
+
};
|
|
2771
|
+
conflictingClassGroupModifiers: {
|
|
2772
|
+
'font-size': string[];
|
|
2773
|
+
};
|
|
2774
|
+
orderSensitiveModifiers: string[];
|
|
2775
|
+
};
|
|
2776
|
+
/**
|
|
2777
|
+
* @param baseConfig Config where other config will be merged into. This object will be mutated.
|
|
2778
|
+
* @param configExtension Partial config to merge into the `baseConfig`.
|
|
2779
|
+
*/
|
|
2780
|
+
export function mergeConfigs(baseConfig: any, { cacheSize, prefix, experimentalParseClassName, extend, override }: {
|
|
2781
|
+
cacheSize: any;
|
|
2782
|
+
prefix: any;
|
|
2783
|
+
experimentalParseClassName: any;
|
|
2784
|
+
extend?: {} | undefined;
|
|
2785
|
+
override?: {} | undefined;
|
|
2786
|
+
}): any;
|
|
2787
|
+
/**
|
|
2788
|
+
* The code in this file is copied from https://github.com/lukeed/clsx and modified to suit the needs of tailwind-merge better.
|
|
2789
|
+
*
|
|
2790
|
+
* Specifically:
|
|
2791
|
+
* - Runtime code from https://github.com/lukeed/clsx/blob/v1.2.1/src/index.js
|
|
2792
|
+
* - TypeScript types from https://github.com/lukeed/clsx/blob/v1.2.1/clsx.d.ts
|
|
2793
|
+
*
|
|
2794
|
+
* Original code has MIT license: Copyright (c) Luke Edwards <luke.edwards05@gmail.com> (lukeed.com)
|
|
2795
|
+
*/
|
|
2796
|
+
export function twJoin(...classLists: any[]): string;
|
|
2797
|
+
export function twMerge(...args: any[]): any;
|
|
2798
|
+
export namespace validators {
|
|
2799
|
+
export let __proto__: null;
|
|
2800
|
+
export { isAny };
|
|
2801
|
+
export { isAnyNonArbitrary };
|
|
2802
|
+
export { isArbitraryImage };
|
|
2803
|
+
export { isArbitraryLength };
|
|
2804
|
+
export { isArbitraryNumber };
|
|
2805
|
+
export { isArbitraryPosition };
|
|
2806
|
+
export { isArbitraryShadow };
|
|
2807
|
+
export { isArbitrarySize };
|
|
2808
|
+
export { isArbitraryValue };
|
|
2809
|
+
export { isArbitraryVariable };
|
|
2810
|
+
export { isArbitraryVariableFamilyName };
|
|
2811
|
+
export { isArbitraryVariableImage };
|
|
2812
|
+
export { isArbitraryVariableLength };
|
|
2813
|
+
export { isArbitraryVariablePosition };
|
|
2814
|
+
export { isArbitraryVariableShadow };
|
|
2815
|
+
export { isArbitraryVariableSize };
|
|
2816
|
+
export { isFraction };
|
|
2817
|
+
export { isInteger };
|
|
2818
|
+
export { isNumber };
|
|
2819
|
+
export { isPercent };
|
|
2820
|
+
export { isTshirtSize };
|
|
2821
|
+
}
|
|
2822
|
+
declare function isAny(): boolean;
|
|
2823
|
+
declare function isAnyNonArbitrary(value: any): boolean;
|
|
2824
|
+
declare function isArbitraryImage(value: any): any;
|
|
2825
|
+
declare function isArbitraryLength(value: any): any;
|
|
2826
|
+
declare function isArbitraryNumber(value: any): any;
|
|
2827
|
+
declare function isArbitraryPosition(value: any): any;
|
|
2828
|
+
declare function isArbitraryShadow(value: any): any;
|
|
2829
|
+
declare function isArbitrarySize(value: any): any;
|
|
2830
|
+
declare function isArbitraryValue(value: any): boolean;
|
|
2831
|
+
declare function isArbitraryVariable(value: any): boolean;
|
|
2832
|
+
declare function isArbitraryVariableFamilyName(value: any): any;
|
|
2833
|
+
declare function isArbitraryVariableImage(value: any): any;
|
|
2834
|
+
declare function isArbitraryVariableLength(value: any): any;
|
|
2835
|
+
declare function isArbitraryVariablePosition(value: any): any;
|
|
2836
|
+
declare function isArbitraryVariableShadow(value: any): any;
|
|
2837
|
+
declare function isArbitraryVariableSize(value: any): any;
|
|
2838
|
+
declare function isFraction(value: any): boolean;
|
|
2839
|
+
declare function isInteger(value: any): boolean;
|
|
2840
|
+
declare function isNumber(value: any): boolean;
|
|
2841
|
+
declare function isPercent(value: any): any;
|
|
2842
|
+
declare function isTshirtSize(value: any): boolean;
|
|
2843
|
+
export {};
|