@baseline-ui/core 0.59.0 → 0.60.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/Acknowledgements.md +5840 -12848
- package/dist/components/Accordion/Accordion.css.d.ts +44 -0
- package/dist/components/Accordion/Accordion.d.ts +11 -0
- package/dist/components/Accordion/Accordion.types.d.ts +70 -0
- package/dist/components/Accordion/AccordionBase.d.ts +5 -0
- package/dist/components/Accordion/AccordionHeader.d.ts +6 -0
- package/dist/components/Accordion/AccordionItem.d.ts +3 -0
- package/dist/components/Accordion/index.d.ts +3 -0
- package/dist/components/ActionButton/ActionButton.css.d.ts +216 -0
- package/dist/components/ActionButton/ActionButton.d.ts +4 -0
- package/dist/components/ActionButton/ActionButton.types.d.ts +44 -0
- package/dist/components/ActionButton/index.d.ts +2 -0
- package/dist/components/ActionGroup/ActionGroup.css.d.ts +2 -0
- package/dist/components/ActionGroup/ActionGroup.d.ts +11 -0
- package/dist/components/ActionGroup/ActionGroup.types.d.ts +43 -0
- package/dist/components/ActionGroup/index.d.ts +3 -0
- package/dist/components/ActionIconButton/ActionIconButton.css.d.ts +116 -0
- package/dist/components/ActionIconButton/ActionIconButton.d.ts +3 -0
- package/dist/components/ActionIconButton/ActionIconButton.types.d.ts +56 -0
- package/dist/components/ActionIconButton/index.d.ts +2 -0
- package/dist/components/Actionable/Actionable.css.d.ts +2 -0
- package/dist/components/Actionable/Actionable.d.ts +3 -0
- package/dist/components/Actionable/Actionable.types.d.ts +15 -0
- package/dist/components/Actionable/index.d.ts +3 -0
- package/dist/components/AlertDialog/AlertDialog.css.d.ts +26 -0
- package/dist/components/AlertDialog/AlertDialog.d.ts +3 -0
- package/dist/components/AlertDialog/AlertDialog.types.d.ts +77 -0
- package/dist/components/AlertDialog/index.d.ts +3 -0
- package/dist/components/AudioPlayer/AudioPlayer.css.d.ts +3 -0
- package/dist/components/AudioPlayer/AudioPlayer.d.ts +3 -0
- package/dist/components/AudioPlayer/AudioPlayer.types.d.ts +27 -0
- package/dist/components/AudioPlayer/index.d.ts +3 -0
- package/dist/components/Avatar/Avatar.css.d.ts +19 -0
- package/dist/components/Avatar/Avatar.d.ts +3 -0
- package/dist/components/Avatar/Avatar.types.d.ts +31 -0
- package/dist/components/Avatar/index.d.ts +2 -0
- package/dist/components/Box/Box.d.ts +3 -0
- package/dist/components/Box/Box.types.d.ts +12 -0
- package/dist/components/Box/index.d.ts +3 -0
- package/dist/components/ButtonSelect/ButtonSelect.css.d.ts +3 -0
- package/dist/components/ButtonSelect/ButtonSelect.d.ts +3 -0
- package/dist/components/ButtonSelect/ButtonSelect.types.d.ts +56 -0
- package/dist/components/ButtonSelect/index.d.ts +3 -0
- package/dist/components/Calendar/Calendar.css.d.ts +135 -0
- package/dist/components/Calendar/Calendar.d.ts +4 -0
- package/dist/components/Calendar/Calendar.types.d.ts +22 -0
- package/dist/components/Calendar/CalendarCell.d.ts +9 -0
- package/dist/components/Calendar/CalendarHeader.d.ts +6 -0
- package/dist/components/Calendar/RangeCalendar.d.ts +4 -0
- package/dist/components/Calendar/index.d.ts +3 -0
- package/dist/components/Calendar/intl/index.d.ts +267 -0
- package/dist/components/Checkbox/Checkbox.css.d.ts +103 -0
- package/dist/components/Checkbox/Checkbox.d.ts +3 -0
- package/dist/components/Checkbox/Checkbox.types.d.ts +17 -0
- package/dist/components/Checkbox/index.d.ts +2 -0
- package/dist/components/Code/Code.css.d.ts +2 -0
- package/dist/components/Code/Code.d.ts +3 -0
- package/dist/components/Code/Code.types.d.ts +6 -0
- package/dist/components/Code/index.d.ts +3 -0
- package/dist/components/ColorInput/ColorArea.d.ts +4 -0
- package/dist/components/ColorInput/ColorFieldInput.d.ts +13 -0
- package/dist/components/ColorInput/ColorInput.css.d.ts +165 -0
- package/dist/components/ColorInput/ColorInput.d.ts +3 -0
- package/dist/components/ColorInput/ColorInput.types.d.ts +137 -0
- package/dist/components/ColorInput/ColorInputButton.d.ts +21 -0
- package/dist/components/ColorInput/ColorPresetList.d.ts +16 -0
- package/dist/components/ColorInput/ColorSlider.d.ts +3 -0
- package/dist/components/ColorInput/CustomColors.d.ts +15 -0
- package/dist/components/ColorInput/IconColorInput.d.ts +3 -0
- package/dist/components/ColorInput/Picker.d.ts +8 -0
- package/dist/components/ColorInput/__tests__/data.d.ts +8 -0
- package/dist/components/ColorInput/hooks/useColorTrigger.d.ts +13 -0
- package/dist/components/ColorInput/index.d.ts +4 -0
- package/dist/components/ColorInput/intl/index.d.ts +399 -0
- package/dist/components/ColorInput/utils.d.ts +44 -0
- package/dist/components/ColorSwatch/ColorSwatch.css.d.ts +39 -0
- package/dist/components/ColorSwatch/ColorSwatch.d.ts +3 -0
- package/dist/components/ColorSwatch/ColorSwatch.types.d.ts +44 -0
- package/dist/components/ColorSwatch/index.d.ts +2 -0
- package/dist/components/ColorSwatchPicker/ColorSwatchPicker.css.d.ts +2 -0
- package/dist/components/ColorSwatchPicker/ColorSwatchPicker.d.ts +3 -0
- package/dist/components/ColorSwatchPicker/ColorSwatchPicker.types.d.ts +46 -0
- package/dist/components/ColorSwatchPicker/index.d.ts +3 -0
- package/dist/components/ComboBox/ComboBox.css.d.ts +203 -0
- package/dist/components/ComboBox/ComboBox.d.ts +3 -0
- package/dist/components/ComboBox/ComboBox.types.d.ts +96 -0
- package/dist/components/ComboBox/index.d.ts +3 -0
- package/dist/components/ComboBox/useOnValueChange.d.ts +6 -0
- package/dist/components/DateField/DateField.d.ts +6 -0
- package/dist/components/DateField/DateField.types.d.ts +17 -0
- package/dist/components/DateField/index.d.ts +3 -0
- package/dist/components/DateField/intl/index.d.ts +102 -0
- package/dist/components/DateFormat/DateFormat.d.ts +3 -0
- package/dist/components/DateFormat/DateFormat.types.d.ts +5 -0
- package/dist/components/DateFormat/index.d.ts +2 -0
- package/dist/components/DeviceProvider/DeviceProvider.d.ts +6 -0
- package/dist/components/DeviceProvider/DeviceProvider.types.d.ts +12 -0
- package/dist/components/DeviceProvider/index.d.ts +2 -0
- package/dist/components/Dialog/Dialog.css.d.ts +53 -0
- package/dist/components/Dialog/Dialog.d.ts +6 -0
- package/dist/components/Dialog/Dialog.types.d.ts +37 -0
- package/dist/components/Dialog/DialogTitle.d.ts +3 -0
- package/dist/components/Dialog/index.d.ts +3 -0
- package/dist/components/Dialog/useDeferredLabel.d.ts +7 -0
- package/dist/components/Disclosure/Disclosure.css.d.ts +116 -0
- package/dist/components/Disclosure/Disclosure.d.ts +3 -0
- package/dist/components/Disclosure/Disclosure.types.d.ts +30 -0
- package/dist/components/Disclosure/index.d.ts +3 -0
- package/dist/components/DomNodeRenderer/DomNodeRenderer.d.ts +3 -0
- package/dist/components/DomNodeRenderer/DomNodeRenderer.types.d.ts +11 -0
- package/dist/components/DomNodeRenderer/index.d.ts +2 -0
- package/dist/components/Drawer/Drawer.css.d.ts +31 -0
- package/dist/components/Drawer/Drawer.d.ts +3 -0
- package/dist/components/Drawer/Drawer.types.d.ts +24 -0
- package/dist/components/Drawer/index.d.ts +3 -0
- package/dist/components/Editor/Editor.css.d.ts +131 -0
- package/dist/components/Editor/Editor.d.ts +3 -0
- package/dist/components/Editor/Editor.types.d.ts +159 -0
- package/dist/components/Editor/EditorToolbar.d.ts +15 -0
- package/dist/components/Editor/HelpDialog.d.ts +5 -0
- package/dist/components/Editor/RichEditor.d.ts +24 -0
- package/dist/components/Editor/elements/AddLink.d.ts +10 -0
- package/dist/components/Editor/elements/Mention.d.ts +46 -0
- package/dist/components/Editor/elements/Paragraph.d.ts +2 -0
- package/dist/components/Editor/elements/PlainEditor.d.ts +11 -0
- package/dist/components/Editor/index.d.ts +2 -0
- package/dist/components/Editor/utils.d.ts +93 -0
- package/dist/components/FileUpload/FileUpload.css.d.ts +69 -0
- package/dist/components/FileUpload/FileUpload.d.ts +3 -0
- package/dist/components/FileUpload/FileUpload.types.d.ts +38 -0
- package/dist/components/FileUpload/hooks/useFileUpload.d.ts +22 -0
- package/dist/components/FileUpload/index.d.ts +2 -0
- package/dist/components/FrameProvider/FrameProvider.d.ts +20 -0
- package/dist/components/FrameProvider/FrameProvider.types.d.ts +40 -0
- package/dist/components/FrameProvider/index.d.ts +2 -0
- package/dist/components/FreehandCanvas/FreehandCanvas.css.d.ts +78 -0
- package/dist/components/FreehandCanvas/FreehandCanvas.d.ts +4 -0
- package/dist/components/FreehandCanvas/FreehandCanvas.types.d.ts +116 -0
- package/dist/components/FreehandCanvas/hooks/usePathsData.d.ts +27 -0
- package/dist/components/FreehandCanvas/index.d.ts +2 -0
- package/dist/components/FreehandCanvas/intl/index.d.ts +135 -0
- package/dist/components/GridList/GridList.css.d.ts +22 -0
- package/dist/components/GridList/GridList.d.ts +3 -0
- package/dist/components/GridList/GridList.types.d.ts +84 -0
- package/dist/components/GridList/GridListItem.d.ts +20 -0
- package/dist/components/GridList/index.d.ts +3 -0
- package/dist/components/Group/Group.d.ts +3 -0
- package/dist/components/Group/Group.types.d.ts +19 -0
- package/dist/components/Group/index.d.ts +2 -0
- package/dist/components/I18nProvider/I18Provider.types.d.ts +11 -0
- package/dist/components/I18nProvider/I18nProvider.css.d.ts +1 -0
- package/dist/components/I18nProvider/I18nProvider.d.ts +10 -0
- package/dist/components/I18nProvider/index.d.ts +4 -0
- package/dist/components/Icon/Icon.d.ts +4 -0
- package/dist/components/Icon/Icon.types.d.ts +36 -0
- package/dist/components/Icon/index.d.ts +2 -0
- package/dist/components/ImageDropZone/ImageDropZone.css.d.ts +76 -0
- package/dist/components/ImageDropZone/ImageDropZone.d.ts +3 -0
- package/dist/components/ImageDropZone/ImageDropZone.types.d.ts +50 -0
- package/dist/components/ImageDropZone/index.d.ts +2 -0
- package/dist/components/ImageDropZone/intl/index.d.ts +135 -0
- package/dist/components/ImageGallery/AdaptiveText.d.ts +13 -0
- package/dist/components/ImageGallery/ImageGallery.css.d.ts +86 -0
- package/dist/components/ImageGallery/ImageGallery.d.ts +18 -0
- package/dist/components/ImageGallery/ImageGallery.types.d.ts +130 -0
- package/dist/components/ImageGallery/ImageGalleryDragPreview.d.ts +22 -0
- package/dist/components/ImageGallery/ImageGalleryItem.d.ts +3 -0
- package/dist/components/ImageGallery/index.d.ts +2 -0
- package/dist/components/ImageGallery/utils.d.ts +10 -0
- package/dist/components/InlineAlert/InlineAlert.css.d.ts +214 -0
- package/dist/components/InlineAlert/InlineAlert.d.ts +3 -0
- package/dist/components/InlineAlert/InlineAlert.types.d.ts +38 -0
- package/dist/components/InlineAlert/index.d.ts +2 -0
- package/dist/components/InlineAlert/intl/index.d.ts +102 -0
- package/dist/components/InlineToolbar/InlineToolbar.css.d.ts +50 -0
- package/dist/components/InlineToolbar/InlineToolbar.d.ts +3 -0
- package/dist/components/InlineToolbar/InlineToolbar.types.d.ts +63 -0
- package/dist/components/InlineToolbar/InlineToolbarButton.d.ts +3 -0
- package/dist/components/InlineToolbar/index.d.ts +2 -0
- package/dist/components/Kbd/Kbd.css.d.ts +1 -0
- package/dist/components/Kbd/Kbd.d.ts +3 -0
- package/dist/components/Kbd/Kbd.types.d.ts +21 -0
- package/dist/components/Kbd/index.d.ts +2 -0
- package/dist/components/Link/Link.css.d.ts +41 -0
- package/dist/components/Link/Link.d.ts +3 -0
- package/dist/components/Link/Link.types.d.ts +26 -0
- package/dist/components/Link/index.d.ts +2 -0
- package/dist/components/ListBox/DefaultListOption.d.ts +22 -0
- package/dist/components/ListBox/DropIndicator.d.ts +11 -0
- package/dist/components/ListBox/ListBox.css.d.ts +91 -0
- package/dist/components/ListBox/ListBox.d.ts +6 -0
- package/dist/components/ListBox/ListBox.types.d.ts +104 -0
- package/dist/components/ListBox/ListBoxSection.d.ts +14 -0
- package/dist/components/ListBox/ListOption.d.ts +17 -0
- package/dist/components/ListBox/hooks/useDragAndDrop.d.ts +3 -0
- package/dist/components/ListBox/hooks/useDragAutoScroll.d.ts +5 -0
- package/dist/components/ListBox/hooks/useDragDrop.d.ts +33 -0
- package/dist/components/ListBox/hooks/useSharedList.d.ts +8 -0
- package/dist/components/ListBox/index.d.ts +4 -0
- package/dist/components/Markdown/Markdown.css.d.ts +3 -0
- package/dist/components/Markdown/Markdown.d.ts +3 -0
- package/dist/components/Markdown/Markdown.types.d.ts +7 -0
- package/dist/components/Markdown/index.d.ts +3 -0
- package/dist/components/Menu/Menu.css.d.ts +2 -0
- package/dist/components/Menu/Menu.d.ts +3 -0
- package/dist/components/Menu/Menu.types.d.ts +63 -0
- package/dist/components/Menu/index.d.ts +2 -0
- package/dist/components/MessageFormat/MessageFormat.d.ts +3 -0
- package/dist/components/MessageFormat/MessageFormat.types.d.ts +14 -0
- package/dist/components/MessageFormat/index.d.ts +2 -0
- package/dist/components/Modal/Modal.css.d.ts +39 -0
- package/dist/components/Modal/Modal.d.ts +11 -0
- package/dist/components/Modal/Modal.types.d.ts +70 -0
- package/dist/components/Modal/ModalClose.d.ts +4 -0
- package/dist/components/Modal/ModalContent.d.ts +13 -0
- package/dist/components/Modal/ModalContentCore.d.ts +3 -0
- package/dist/components/Modal/ModalTrigger.d.ts +4 -0
- package/dist/components/Modal/hooks/useDialogPosition.d.ts +13 -0
- package/dist/components/Modal/index.d.ts +5 -0
- package/dist/components/NumberFormat/NumberFormat.d.ts +3 -0
- package/dist/components/NumberFormat/NumberFormat.types.d.ts +5 -0
- package/dist/components/NumberFormat/index.d.ts +2 -0
- package/dist/components/NumberInput/NumberInput.css.d.ts +9 -0
- package/dist/components/NumberInput/NumberInput.d.ts +3 -0
- package/dist/components/NumberInput/NumberInput.types.d.ts +26 -0
- package/dist/components/NumberInput/index.d.ts +2 -0
- package/dist/components/Pagination/Pagination.css.d.ts +84 -0
- package/dist/components/Pagination/Pagination.d.ts +3 -0
- package/dist/components/Pagination/Pagination.types.d.ts +25 -0
- package/dist/components/Pagination/index.d.ts +2 -0
- package/dist/components/Pagination/intl/index.d.ts +201 -0
- package/dist/components/Panel/Panel.css.d.ts +1 -0
- package/dist/components/Panel/Panel.d.ts +2 -0
- package/dist/components/Panel/Panel.types.d.ts +72 -0
- package/dist/components/Panel/PanelContext.d.ts +6 -0
- package/dist/components/Panel/PanelGroup.d.ts +2 -0
- package/dist/components/Panel/PanelResizeHandle.d.ts +5 -0
- package/dist/components/Panel/index.d.ts +4 -0
- package/dist/components/PointPicker/Grid.d.ts +7 -0
- package/dist/components/PointPicker/PointPicker.css.d.ts +37 -0
- package/dist/components/PointPicker/PointPicker.d.ts +22 -0
- package/dist/components/PointPicker/PointPicker.types.d.ts +116 -0
- package/dist/components/PointPicker/PointPickerContent/PointPickerContent.d.ts +3 -0
- package/dist/components/PointPicker/PointPickerContent/PointPickerIndicator.d.ts +8 -0
- package/dist/components/PointPicker/PointPickerContent/hooks/useCoordinatesRelativeToWindow.d.ts +4 -0
- package/dist/components/PointPicker/PointPickerContent/hooks/usePointPickerKeyboard.d.ts +3 -0
- package/dist/components/PointPicker/PointPickerContent/index.d.ts +1 -0
- package/dist/components/PointPicker/PointPickerDisplay/Floater.d.ts +7 -0
- package/dist/components/PointPicker/PointPickerDisplay/MagnifierContent.d.ts +8 -0
- package/dist/components/PointPicker/PointPickerDisplay/PointPickerDisplay.d.ts +3 -0
- package/dist/components/PointPicker/PointPickerDisplay/hooks/useIndicatorWidthObserver.d.ts +1 -0
- package/dist/components/PointPicker/PointPickerDisplay/index.d.ts +1 -0
- package/dist/components/PointPicker/PointsVisualiser/PointsVisualiser.d.ts +11 -0
- package/dist/components/PointPicker/PointsVisualiser/canvasUtils.d.ts +20 -0
- package/dist/components/PointPicker/PointsVisualiser/hooks/usePointProximity.d.ts +12 -0
- package/dist/components/PointPicker/hooks/usePointPicker.d.ts +4 -0
- package/dist/components/PointPicker/index.d.ts +5 -0
- package/dist/components/PointPicker/workers/canvas.worker.d.ts +1 -0
- package/dist/components/PointPicker/workers/pointProximity.worker.d.ts +1 -0
- package/dist/components/Popover/Arrow.d.ts +7 -0
- package/dist/components/Popover/Popover.css.d.ts +55 -0
- package/dist/components/Popover/Popover.d.ts +10 -0
- package/dist/components/Popover/Popover.types.d.ts +133 -0
- package/dist/components/Popover/PopoverContent.d.ts +3 -0
- package/dist/components/Popover/PopoverContentCore.d.ts +7 -0
- package/dist/components/Popover/PopoverTrigger.d.ts +8 -0
- package/dist/components/Popover/hooks/usePopoverScrollReposition.d.ts +22 -0
- package/dist/components/Popover/hooks/usePopoverTransition.d.ts +23 -0
- package/dist/components/Popover/index.d.ts +4 -0
- package/dist/components/Portal/Portal.d.ts +3 -0
- package/dist/components/Portal/Portal.types.d.ts +4 -0
- package/dist/components/Portal/index.d.ts +2 -0
- package/dist/components/PortalContainerProvider/PortalContainerProvider.d.ts +4 -0
- package/dist/components/PortalContainerProvider/PortalContainerProvider.types.d.ts +12 -0
- package/dist/components/PortalContainerProvider/index.d.ts +1 -0
- package/dist/components/Preview/Preview.css.d.ts +50 -0
- package/dist/components/Preview/Preview.d.ts +3 -0
- package/dist/components/Preview/Preview.types.d.ts +59 -0
- package/dist/components/Preview/index.d.ts +2 -0
- package/dist/components/ProgressBar/ProgressBar.css.d.ts +48 -0
- package/dist/components/ProgressBar/ProgressBar.d.ts +3 -0
- package/dist/components/ProgressBar/ProgressBar.types.d.ts +20 -0
- package/dist/components/ProgressBar/index.d.ts +2 -0
- package/dist/components/ProgressSpinner/ProgressSpinner.css.d.ts +9 -0
- package/dist/components/ProgressSpinner/ProgressSpinner.d.ts +3 -0
- package/dist/components/ProgressSpinner/ProgressSpinner.types.d.ts +16 -0
- package/dist/components/ProgressSpinner/index.d.ts +2 -0
- package/dist/components/RadioGroup/RadioGroup.css.d.ts +26 -0
- package/dist/components/RadioGroup/RadioGroup.d.ts +3 -0
- package/dist/components/RadioGroup/RadioGroup.types.d.ts +67 -0
- package/dist/components/RadioGroup/RadioItem.d.ts +11 -0
- package/dist/components/RadioGroup/index.d.ts +2 -0
- package/dist/components/Reaction/Reaction.css.d.ts +74 -0
- package/dist/components/Reaction/Reaction.d.ts +3 -0
- package/dist/components/Reaction/Reaction.types.d.ts +13 -0
- package/dist/components/Reaction/index.d.ts +2 -0
- package/dist/components/ScrollControlButton/ScrollControlButton.css.d.ts +1 -0
- package/dist/components/ScrollControlButton/ScrollControlButton.d.ts +3 -0
- package/dist/components/ScrollControlButton/ScrollControlButton.types.d.ts +31 -0
- package/dist/components/ScrollControlButton/index.d.ts +3 -0
- package/dist/components/SearchInput/SearchInput.css.d.ts +64 -0
- package/dist/components/SearchInput/SearchInput.d.ts +3 -0
- package/dist/components/SearchInput/SearchInput.types.d.ts +27 -0
- package/dist/components/SearchInput/index.d.ts +2 -0
- package/dist/components/Select/IconSelect.d.ts +3 -0
- package/dist/components/Select/Select.css.d.ts +58 -0
- package/dist/components/Select/Select.d.ts +9 -0
- package/dist/components/Select/Select.types.d.ts +87 -0
- package/dist/components/Select/SelectButton.d.ts +3 -0
- package/dist/components/Select/index.d.ts +3 -0
- package/dist/components/Separator/Separator.css.d.ts +19 -0
- package/dist/components/Separator/Separator.d.ts +3 -0
- package/dist/components/Separator/Separator.types.d.ts +12 -0
- package/dist/components/Separator/index.d.ts +2 -0
- package/dist/components/Skeleton/Skeleton.css.d.ts +1 -0
- package/dist/components/Skeleton/Skeleton.d.ts +3 -0
- package/dist/components/Skeleton/Skeleton.types.d.ts +7 -0
- package/dist/components/Skeleton/index.d.ts +2 -0
- package/dist/components/Slider/IconSlider.d.ts +3 -0
- package/dist/components/Slider/Slider.css.d.ts +133 -0
- package/dist/components/Slider/Slider.d.ts +3 -0
- package/dist/components/Slider/Slider.types.d.ts +42 -0
- package/dist/components/Slider/index.d.ts +3 -0
- package/dist/components/StatusCard/StatusCard.css.d.ts +87 -0
- package/dist/components/StatusCard/StatusCard.d.ts +10 -0
- package/dist/components/StatusCard/StatusCard.types.d.ts +34 -0
- package/dist/components/StatusCard/index.d.ts +3 -0
- package/dist/components/Switch/Switch.css.d.ts +67 -0
- package/dist/components/Switch/Switch.d.ts +3 -0
- package/dist/components/Switch/Switch.types.d.ts +15 -0
- package/dist/components/Switch/index.d.ts +2 -0
- package/dist/components/Table/Table.css.d.ts +111 -0
- package/dist/components/Table/Table.d.ts +8 -0
- package/dist/components/Table/Table.types.d.ts +26 -0
- package/dist/components/Table/hooks/useTableDragAndDrop.d.ts +8 -0
- package/dist/components/Table/index.d.ts +3 -0
- package/dist/components/Tabs/TabItem.d.ts +3 -0
- package/dist/components/Tabs/TabPanel.d.ts +9 -0
- package/dist/components/Tabs/Tabs.css.d.ts +122 -0
- package/dist/components/Tabs/Tabs.d.ts +3 -0
- package/dist/components/Tabs/Tabs.types.d.ts +66 -0
- package/dist/components/Tabs/TabsBase.d.ts +7 -0
- package/dist/components/Tabs/index.d.ts +3 -0
- package/dist/components/Tag/Tag.css.d.ts +215 -0
- package/dist/components/Tag/Tag.d.ts +3 -0
- package/dist/components/Tag/Tag.types.d.ts +43 -0
- package/dist/components/Tag/TagContext.d.ts +15 -0
- package/dist/components/Tag/index.d.ts +2 -0
- package/dist/components/TagGroup/TagGroup.css.d.ts +1 -0
- package/dist/components/TagGroup/TagGroup.d.ts +3 -0
- package/dist/components/TagGroup/TagGroup.types.d.ts +38 -0
- package/dist/components/TagGroup/index.d.ts +2 -0
- package/dist/components/TaggedPagination/TaggedPagination.css.d.ts +70 -0
- package/dist/components/TaggedPagination/TaggedPagination.d.ts +3 -0
- package/dist/components/TaggedPagination/TaggedPagination.types.d.ts +50 -0
- package/dist/components/TaggedPagination/index.d.ts +2 -0
- package/dist/components/Text/Text.css.d.ts +51 -0
- package/dist/components/Text/Text.d.ts +3 -0
- package/dist/components/Text/Text.types.d.ts +24 -0
- package/dist/components/Text/index.d.ts +2 -0
- package/dist/components/TextInput/TextInput.css.d.ts +183 -0
- package/dist/components/TextInput/TextInput.d.ts +3 -0
- package/dist/components/TextInput/TextInput.types.d.ts +18 -0
- package/dist/components/TextInput/index.d.ts +2 -0
- package/dist/components/TextInput/utils/getMessage.d.ts +12 -0
- package/dist/components/TextInput/utils/getStatusIcon.d.ts +6 -0
- package/dist/components/ThemeProvider/ThemeProvider.context.d.ts +6 -0
- package/dist/components/ThemeProvider/ThemeProvider.css.d.ts +1 -0
- package/dist/components/ThemeProvider/ThemeProvider.d.ts +3 -0
- package/dist/components/ThemeProvider/ThemeProvider.types.d.ts +29 -0
- package/dist/components/ThemeProvider/hooks/useUserPreferences.d.ts +19 -0
- package/dist/components/ThemeProvider/index.d.ts +6 -0
- package/dist/components/TimeField/DateTimeSegment.d.ts +5 -0
- package/dist/components/TimeField/TimeField.css.d.ts +16 -0
- package/dist/components/TimeField/TimeField.d.ts +3 -0
- package/dist/components/TimeField/TimeField.types.d.ts +6 -0
- package/dist/components/TimeField/index.d.ts +3 -0
- package/dist/components/Toast/Toast.css.d.ts +34 -0
- package/dist/components/Toast/Toast.d.ts +3 -0
- package/dist/components/Toast/Toast.types.d.ts +14 -0
- package/dist/components/Toast/index.d.ts +4 -0
- package/dist/components/ToggleButton/ToggleButton.css.d.ts +74 -0
- package/dist/components/ToggleButton/ToggleButton.d.ts +3 -0
- package/dist/components/ToggleButton/ToggleButton.types.d.ts +27 -0
- package/dist/components/ToggleButton/index.d.ts +2 -0
- package/dist/components/ToggleIconButton/ToggleIconButton.css.d.ts +149 -0
- package/dist/components/ToggleIconButton/ToggleIconButton.d.ts +3 -0
- package/dist/components/ToggleIconButton/ToggleIconButton.types.d.ts +30 -0
- package/dist/components/ToggleIconButton/index.d.ts +2 -0
- package/dist/components/Toolbar/CollapsibleToolbar.d.ts +3 -0
- package/dist/components/Toolbar/Toolbar.css.d.ts +2 -0
- package/dist/components/Toolbar/Toolbar.d.ts +3 -0
- package/dist/components/Toolbar/Toolbar.types.d.ts +47 -0
- package/dist/components/Toolbar/WrappedToolbar.d.ts +3 -0
- package/dist/components/Toolbar/hooks/useFormattedList.d.ts +3 -0
- package/dist/components/Toolbar/hooks/useInputAwareToolbar.d.ts +6 -0
- package/dist/components/Toolbar/index.d.ts +3 -0
- package/dist/components/Tooltip/Tooltip.css.d.ts +44 -0
- package/dist/components/Tooltip/Tooltip.d.ts +3 -0
- package/dist/components/Tooltip/Tooltip.types.d.ts +55 -0
- package/dist/components/Tooltip/TooltipContent.d.ts +15 -0
- package/dist/components/Tooltip/index.d.ts +3 -0
- package/dist/components/TreeView/TreeItem.d.ts +7 -0
- package/dist/components/TreeView/TreeView.css.d.ts +34 -0
- package/dist/components/TreeView/TreeView.d.ts +8 -0
- package/dist/components/TreeView/TreeView.types.d.ts +95 -0
- package/dist/components/TreeView/index.d.ts +2 -0
- package/dist/components/UNSAFE_ListBox/ListBox.css.d.ts +92 -0
- package/dist/components/UNSAFE_ListBox/ListBox.d.ts +13 -0
- package/dist/components/UNSAFE_ListBox/ListBox.types.d.ts +84 -0
- package/dist/components/UNSAFE_ListBox/ListBoxUI.d.ts +19 -0
- package/dist/components/UNSAFE_ListBox/hooks/useDragAndDrop.d.ts +3 -0
- package/dist/components/UNSAFE_ListBox/index.d.ts +3 -0
- package/dist/components/Virtualizer/LocaleAwareGridLayout.d.ts +17 -0
- package/dist/components/Virtualizer/Virtualizer.types.d.ts +6 -0
- package/dist/components/Virtualizer/index.d.ts +36 -0
- package/dist/components/index.d.ts +81 -0
- package/dist/components/shared/buttons.d.ts +30 -0
- package/dist/components/shared/collection.d.ts +3 -0
- package/dist/components/shared/components/DragPreviewContent.d.ts +12 -0
- package/dist/components/shared/components/IconWithTooltip.d.ts +8 -0
- package/dist/components/shared/components/ListCollectionBuilder.d.ts +9 -0
- package/dist/components/shared/components/OverlayEventLeakPreventionLayer.d.ts +8 -0
- package/dist/components/shared/components/SharedInput/SharedInput.d.ts +3 -0
- package/dist/components/shared/components/SharedInput/SharedInput.types.d.ts +34 -0
- package/dist/components/shared/components/SharedInput/index.d.ts +1 -0
- package/dist/components/shared/tooltips.d.ts +11 -0
- package/dist/components/shared/types/IconComponent.d.ts +21 -0
- package/dist/components/shared/types/List.d.ts +17 -0
- package/dist/hooks/index.d.ts +13 -0
- package/dist/hooks/useDevice.d.ts +20 -0
- package/dist/hooks/useI18n.d.ts +59 -0
- package/dist/hooks/useImage.d.ts +23 -0
- package/dist/hooks/useIntersectionObserver.d.ts +44 -0
- package/dist/hooks/useIsFirstRender.d.ts +21 -0
- package/dist/hooks/useIsTouchDevice.d.ts +7 -0
- package/dist/hooks/useLiveInteractionModality.d.ts +13 -0
- package/dist/hooks/useLocalStorage.d.ts +20 -0
- package/dist/hooks/useMedia.d.ts +13 -0
- package/dist/hooks/useMutationObserver.d.ts +20 -0
- package/dist/hooks/usePortalContainer.d.ts +11 -0
- package/dist/hooks/usePreventFocus.d.ts +23 -0
- package/dist/hooks/useResizeObserver.d.ts +38 -0
- package/dist/hooks/useTextSelection.d.ts +29 -0
- package/dist/hooks/useUndoRedo.d.ts +44 -0
- package/dist/index.d.ts +11 -10076
- package/dist/index.js +12 -12
- package/dist/index.mjs +12 -12
- package/dist/react-aria.d.ts +2 -0
- package/dist/react-stately.d.ts +2 -0
- package/dist/utils/a11y.d.ts +1 -0
- package/dist/utils/classNames.d.ts +17 -0
- package/dist/utils/colors.d.ts +11 -0
- package/dist/utils/constants.d.ts +1 -0
- package/dist/utils/devWarn.d.ts +1 -0
- package/dist/utils/dom.d.ts +130 -0
- package/dist/utils/index.d.ts +18 -0
- package/dist/utils/invariant.d.ts +18 -0
- package/dist/utils/isInIframe.d.ts +12 -0
- package/dist/utils/isInShadowDOM.d.ts +11 -0
- package/dist/utils/isRect.d.ts +7 -0
- package/dist/utils/keyboards.d.ts +13 -0
- package/dist/utils/math.d.ts +1 -0
- package/dist/utils/objects.d.ts +20 -0
- package/dist/utils/overlays.d.ts +6 -0
- package/dist/utils/reactAriaCompat.d.ts +22 -0
- package/dist/utils/reactAriaComponentsCompat.d.ts +4 -0
- package/dist/utils/resolveAriaLabelAttrs.d.ts +22 -0
- package/dist/utils/resolvePublicUrl.d.ts +1 -0
- package/dist/utils/strings.d.ts +6 -0
- package/dist/utils/style.d.ts +5 -0
- package/dist/utils/styleMixins.css.d.ts +16 -0
- package/dist/utils/svgs.d.ts +15 -0
- package/dist/utils/types/Shared.d.ts +34 -0
- package/dist/utils/validations.d.ts +13 -0
- package/package.json +7 -7
- package/sbom.json +1 -1
- package/dist/index.d.mts +0 -10076
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
import type { StylingProps } from "../../utils";
|
|
2
|
+
import type { ColorSwatchProps } from "../ColorSwatch";
|
|
3
|
+
import type { PopoverContentProps } from "../Popover";
|
|
4
|
+
import type { IconComponentProps } from "../shared/types/IconComponent";
|
|
5
|
+
import type { Color, ColorFieldProps } from "@react-stately/color";
|
|
6
|
+
import type { AriaLabelingProps, PressEvent } from "@react-types/shared";
|
|
7
|
+
import type React from "react";
|
|
8
|
+
import type { AriaButtonProps } from "react-aria";
|
|
9
|
+
import type { OverlayTriggerProps } from "react-stately";
|
|
10
|
+
export interface ColorPreset {
|
|
11
|
+
label: string;
|
|
12
|
+
color: string;
|
|
13
|
+
}
|
|
14
|
+
export interface ColorInputProps extends OverlayTriggerProps, StylingProps, Pick<ColorFieldProps, "onChange" | "defaultValue" | "value" | "label" | "isDisabled">, Pick<AriaLabelingProps, "aria-label">, Pick<PopoverContentProps, "isNonModal" | "placement" | "shouldUpdatePosition" | "shouldFlip" | "boundaryElement" | "crossOffset" | "offset" | "portalContainer">, Pick<ColorSwatchProps, "isIndeterminate" | "indeterminateIcon"> {
|
|
15
|
+
/**
|
|
16
|
+
* The list of color presets to show in the color picker. The signature of the
|
|
17
|
+
* color presets is:
|
|
18
|
+
*
|
|
19
|
+
* ```ts
|
|
20
|
+
* export interface ColorPreset {
|
|
21
|
+
* label: string;
|
|
22
|
+
* color: string;
|
|
23
|
+
* }
|
|
24
|
+
* ```
|
|
25
|
+
*
|
|
26
|
+
* The color can be a hex or hexa value.
|
|
27
|
+
*/
|
|
28
|
+
presets?: ColorPreset[];
|
|
29
|
+
/**
|
|
30
|
+
* Whether to include the custom color picker. If `false`, the color picker
|
|
31
|
+
* will only show the color presets. The custom color picker allows the user
|
|
32
|
+
* to pick any color. You can set the `allowAlpha` prop to `false` to disable
|
|
33
|
+
* the alpha channel.
|
|
34
|
+
*
|
|
35
|
+
* @default true
|
|
36
|
+
*/
|
|
37
|
+
includePicker?: boolean;
|
|
38
|
+
/**
|
|
39
|
+
* Whether to show the color label. The color label is the name of the color
|
|
40
|
+
* that is currently selected. If boolean, the label will be shown only when
|
|
41
|
+
* the color is not `null`. If a function, the function will be called with
|
|
42
|
+
* the current color and should return a string. If `false`, the label will
|
|
43
|
+
* not be shown.
|
|
44
|
+
*
|
|
45
|
+
* @default true
|
|
46
|
+
*/
|
|
47
|
+
colorLabel?: boolean | ((color: Color | null, options: {
|
|
48
|
+
isIndeterminate: boolean;
|
|
49
|
+
}) => string);
|
|
50
|
+
/**
|
|
51
|
+
* Whether to allow alpha values in the custom color picker.
|
|
52
|
+
*
|
|
53
|
+
* @default true
|
|
54
|
+
*/
|
|
55
|
+
allowAlpha?: boolean;
|
|
56
|
+
/**
|
|
57
|
+
* Whether to allow the removal of the color.
|
|
58
|
+
*
|
|
59
|
+
* @default false
|
|
60
|
+
*/
|
|
61
|
+
allowRemoval?: boolean;
|
|
62
|
+
/** The label position of the color input. */
|
|
63
|
+
labelPosition?: "top" | "start";
|
|
64
|
+
/**
|
|
65
|
+
* Whether to show the color picker in active or lazy mode. In active mode,
|
|
66
|
+
* the color picker will be rendered when the color input popover is open and
|
|
67
|
+
* the value of the color input will be updated when the user picks a color.
|
|
68
|
+
* In lazy mode, the color picker will be rendered only when the user clicks
|
|
69
|
+
* on the "Add color" button and the selected color will be added to custom
|
|
70
|
+
* colors when the user clicks on the "Add color" button.
|
|
71
|
+
*
|
|
72
|
+
* @default active
|
|
73
|
+
*/
|
|
74
|
+
pickerMode?: "active" | "lazy";
|
|
75
|
+
/**
|
|
76
|
+
* The key to use to store the picked color in the local storage.
|
|
77
|
+
*
|
|
78
|
+
* @default baselinePickedColor
|
|
79
|
+
*/
|
|
80
|
+
storePickedColorKey?: string;
|
|
81
|
+
/**
|
|
82
|
+
* The label to show on the add color button.
|
|
83
|
+
*
|
|
84
|
+
* @default Add color
|
|
85
|
+
*/
|
|
86
|
+
addColorButtonLabel?: string;
|
|
87
|
+
/**
|
|
88
|
+
* The label to show on the remove color button.
|
|
89
|
+
*
|
|
90
|
+
* @default Remove color
|
|
91
|
+
*/
|
|
92
|
+
removeColorButtonLabel?: string;
|
|
93
|
+
/**
|
|
94
|
+
* The label to show on the custom colors section.
|
|
95
|
+
*
|
|
96
|
+
* @default Custom colors
|
|
97
|
+
*/
|
|
98
|
+
customColorsLabel?: string;
|
|
99
|
+
/**
|
|
100
|
+
* An optional function to render the custom trigger button.
|
|
101
|
+
*
|
|
102
|
+
* @param options
|
|
103
|
+
*/
|
|
104
|
+
renderTriggerButton?: (options: {
|
|
105
|
+
isOpen: boolean;
|
|
106
|
+
color: Color | null;
|
|
107
|
+
ref: React.RefObject<HTMLButtonElement>;
|
|
108
|
+
colorName?: string | boolean;
|
|
109
|
+
triggerProps: AriaButtonProps<"button">;
|
|
110
|
+
labelId?: string;
|
|
111
|
+
} & Pick<ColorSwatchProps, "isIndeterminate" | "indeterminateIcon">) => React.JSX.Element;
|
|
112
|
+
/**
|
|
113
|
+
* Handler that is called when the user stops dragging or clicking on the
|
|
114
|
+
* color picker. In case of presets, this is called when the user clicks on a
|
|
115
|
+
* color preset.
|
|
116
|
+
*/
|
|
117
|
+
onChangeEnd?: (color: Color | null) => void;
|
|
118
|
+
/**
|
|
119
|
+
* Whether the color input is indeterminate.
|
|
120
|
+
*
|
|
121
|
+
* @default false
|
|
122
|
+
*/
|
|
123
|
+
isIndeterminate?: boolean;
|
|
124
|
+
/**
|
|
125
|
+
* Handler that is called when the user presses the trigger button. This can
|
|
126
|
+
* be used to track events like clicks on the trigger button.
|
|
127
|
+
*/
|
|
128
|
+
onTriggerPress?: (event: PressEvent) => void;
|
|
129
|
+
}
|
|
130
|
+
export interface IconColorInputProps extends StylingProps, Omit<ColorInputProps, "renderTriggerButton" | "colorLabel" | "label" | "labelPosition" | "aria-label">, IconComponentProps {
|
|
131
|
+
/**
|
|
132
|
+
* The variant of the color input button.
|
|
133
|
+
*
|
|
134
|
+
* @default standard
|
|
135
|
+
*/
|
|
136
|
+
variant?: "compact" | "standard";
|
|
137
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import type { StylingProps } from "../../utils";
|
|
3
|
+
import type { ActionButtonProps } from "../ActionButton";
|
|
4
|
+
import type { ColorSwatchProps } from "../ColorSwatch";
|
|
5
|
+
import type { IconProps } from "../Icon";
|
|
6
|
+
import type { ColorInputProps } from "./ColorInput.types";
|
|
7
|
+
import type { Color } from "@react-stately/color";
|
|
8
|
+
export declare const ColorInputButton: React.ForwardRefExoticComponent<ColorInputButtonProps & React.RefAttributes<HTMLButtonElement>>;
|
|
9
|
+
export declare const IconColorInputButton: React.ForwardRefExoticComponent<Omit<ColorInputButtonProps, "color" | "children" | "labelPosition"> & {
|
|
10
|
+
icon: React.FC<IconProps>;
|
|
11
|
+
color?: string | null;
|
|
12
|
+
} & React.RefAttributes<HTMLButtonElement>>;
|
|
13
|
+
interface ColorInputButtonProps extends Omit<ActionButtonProps, "label" | "className" | "style">, StylingProps, Pick<ColorInputProps, "colorLabel">, Pick<ColorSwatchProps, "isIndeterminate" | "indeterminateIcon"> {
|
|
14
|
+
isOpen: boolean;
|
|
15
|
+
"aria-label"?: string;
|
|
16
|
+
labelPosition?: "top" | "start";
|
|
17
|
+
color: Color | null;
|
|
18
|
+
colorName?: string | boolean;
|
|
19
|
+
isIndeterminate?: boolean;
|
|
20
|
+
}
|
|
21
|
+
export {};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import type { ListBoxProps } from "../ListBox";
|
|
3
|
+
import type { ListOption } from "../shared/types/List";
|
|
4
|
+
import type { Color } from "@react-stately/color";
|
|
5
|
+
import type { OverlayTriggerState } from "react-stately";
|
|
6
|
+
export declare const ColorPresetList: React.ForwardRefExoticComponent<ColorPresetListProps & React.RefAttributes<HTMLDivElement>>;
|
|
7
|
+
interface ColorPresetListProps {
|
|
8
|
+
autoFocus?: ListBoxProps["autoFocus"];
|
|
9
|
+
state: OverlayTriggerState;
|
|
10
|
+
triggerRef: React.RefObject<HTMLButtonElement>;
|
|
11
|
+
color: Color | null;
|
|
12
|
+
presets: ListOption[];
|
|
13
|
+
setColor: (color: Color | null) => void;
|
|
14
|
+
isIndeterminate: boolean;
|
|
15
|
+
}
|
|
16
|
+
export {};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import type { Color } from "@react-stately/color";
|
|
3
|
+
export declare const CustomColors: React.FC<CustomColorsProps>;
|
|
4
|
+
interface CustomColorsProps {
|
|
5
|
+
color: Color;
|
|
6
|
+
setColor: (color: Color) => void;
|
|
7
|
+
storePickedColorKey: string;
|
|
8
|
+
addColorButtonLabel?: string;
|
|
9
|
+
removeColorButtonLabel?: string;
|
|
10
|
+
customColorsLabel?: string;
|
|
11
|
+
pickerMode: "active" | "lazy";
|
|
12
|
+
allowAlpha: boolean;
|
|
13
|
+
isIndeterminate: boolean;
|
|
14
|
+
}
|
|
15
|
+
export {};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { ColorInputProps } from "../ColorInput.types";
|
|
2
|
+
import type { Color } from "@react-stately/color";
|
|
3
|
+
export declare function useColorTrigger({ colorLabel, color, presets, isIndeterminate, }: Pick<ColorInputProps, "colorLabel"> & {
|
|
4
|
+
color: Color | null;
|
|
5
|
+
presets: {
|
|
6
|
+
id: string;
|
|
7
|
+
label: string;
|
|
8
|
+
}[];
|
|
9
|
+
isIndeterminate?: boolean;
|
|
10
|
+
}): {
|
|
11
|
+
colorName: string | boolean | undefined;
|
|
12
|
+
humanReadableName: string | undefined;
|
|
13
|
+
};
|
|
@@ -0,0 +1,399 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
ar: {
|
|
3
|
+
"bui.colorInput.add": string;
|
|
4
|
+
"bui.colorInput.addColor": string;
|
|
5
|
+
"bui.colorInput.cancel": string;
|
|
6
|
+
"bui.colorInput.colorFormat": string;
|
|
7
|
+
"bui.colorInput.colorPresets": string;
|
|
8
|
+
"bui.colorInput.customColors": string;
|
|
9
|
+
"bui.colorInput.newColor": string;
|
|
10
|
+
"bui.colorInput.noColor": string;
|
|
11
|
+
"bui.colorInput.removeColor": string;
|
|
12
|
+
"bui.colorInput.transparent": string;
|
|
13
|
+
};
|
|
14
|
+
cs: {
|
|
15
|
+
"bui.colorInput.add": string;
|
|
16
|
+
"bui.colorInput.addColor": string;
|
|
17
|
+
"bui.colorInput.cancel": string;
|
|
18
|
+
"bui.colorInput.colorFormat": string;
|
|
19
|
+
"bui.colorInput.colorPresets": string;
|
|
20
|
+
"bui.colorInput.customColors": string;
|
|
21
|
+
"bui.colorInput.newColor": string;
|
|
22
|
+
"bui.colorInput.noColor": string;
|
|
23
|
+
"bui.colorInput.removeColor": string;
|
|
24
|
+
"bui.colorInput.transparent": string;
|
|
25
|
+
};
|
|
26
|
+
cy: {
|
|
27
|
+
"bui.colorInput.add": string;
|
|
28
|
+
"bui.colorInput.addColor": string;
|
|
29
|
+
"bui.colorInput.cancel": string;
|
|
30
|
+
"bui.colorInput.colorFormat": string;
|
|
31
|
+
"bui.colorInput.colorPresets": string;
|
|
32
|
+
"bui.colorInput.customColors": string;
|
|
33
|
+
"bui.colorInput.newColor": string;
|
|
34
|
+
"bui.colorInput.noColor": string;
|
|
35
|
+
"bui.colorInput.removeColor": string;
|
|
36
|
+
"bui.colorInput.transparent": string;
|
|
37
|
+
};
|
|
38
|
+
da: {
|
|
39
|
+
"bui.colorInput.add": string;
|
|
40
|
+
"bui.colorInput.addColor": string;
|
|
41
|
+
"bui.colorInput.cancel": string;
|
|
42
|
+
"bui.colorInput.colorFormat": string;
|
|
43
|
+
"bui.colorInput.colorPresets": string;
|
|
44
|
+
"bui.colorInput.customColors": string;
|
|
45
|
+
"bui.colorInput.newColor": string;
|
|
46
|
+
"bui.colorInput.noColor": string;
|
|
47
|
+
"bui.colorInput.removeColor": string;
|
|
48
|
+
"bui.colorInput.transparent": string;
|
|
49
|
+
};
|
|
50
|
+
de: {
|
|
51
|
+
"bui.colorInput.add": string;
|
|
52
|
+
"bui.colorInput.addColor": string;
|
|
53
|
+
"bui.colorInput.cancel": string;
|
|
54
|
+
"bui.colorInput.colorFormat": string;
|
|
55
|
+
"bui.colorInput.colorPresets": string;
|
|
56
|
+
"bui.colorInput.customColors": string;
|
|
57
|
+
"bui.colorInput.newColor": string;
|
|
58
|
+
"bui.colorInput.noColor": string;
|
|
59
|
+
"bui.colorInput.removeColor": string;
|
|
60
|
+
"bui.colorInput.transparent": string;
|
|
61
|
+
};
|
|
62
|
+
el: {
|
|
63
|
+
"bui.colorInput.add": string;
|
|
64
|
+
"bui.colorInput.addColor": string;
|
|
65
|
+
"bui.colorInput.cancel": string;
|
|
66
|
+
"bui.colorInput.colorFormat": string;
|
|
67
|
+
"bui.colorInput.colorPresets": string;
|
|
68
|
+
"bui.colorInput.customColors": string;
|
|
69
|
+
"bui.colorInput.newColor": string;
|
|
70
|
+
"bui.colorInput.noColor": string;
|
|
71
|
+
"bui.colorInput.removeColor": string;
|
|
72
|
+
"bui.colorInput.transparent": string;
|
|
73
|
+
};
|
|
74
|
+
en_GB: {
|
|
75
|
+
"bui.colorInput.add": string;
|
|
76
|
+
"bui.colorInput.addColor": string;
|
|
77
|
+
"bui.colorInput.cancel": string;
|
|
78
|
+
"bui.colorInput.colorFormat": string;
|
|
79
|
+
"bui.colorInput.colorPresets": string;
|
|
80
|
+
"bui.colorInput.customColors": string;
|
|
81
|
+
"bui.colorInput.newColor": string;
|
|
82
|
+
"bui.colorInput.noColor": string;
|
|
83
|
+
"bui.colorInput.removeColor": string;
|
|
84
|
+
"bui.colorInput.transparent": string;
|
|
85
|
+
};
|
|
86
|
+
en: {
|
|
87
|
+
"bui.colorInput.add": string;
|
|
88
|
+
"bui.colorInput.addColor": string;
|
|
89
|
+
"bui.colorInput.cancel": string;
|
|
90
|
+
"bui.colorInput.colorFormat": string;
|
|
91
|
+
"bui.colorInput.colorPresets": string;
|
|
92
|
+
"bui.colorInput.customColors": string;
|
|
93
|
+
"bui.colorInput.newColor": string;
|
|
94
|
+
"bui.colorInput.noColor": string;
|
|
95
|
+
"bui.colorInput.removeColor": string;
|
|
96
|
+
"bui.colorInput.transparent": string;
|
|
97
|
+
};
|
|
98
|
+
es: {
|
|
99
|
+
"bui.colorInput.add": string;
|
|
100
|
+
"bui.colorInput.addColor": string;
|
|
101
|
+
"bui.colorInput.cancel": string;
|
|
102
|
+
"bui.colorInput.colorFormat": string;
|
|
103
|
+
"bui.colorInput.colorPresets": string;
|
|
104
|
+
"bui.colorInput.customColors": string;
|
|
105
|
+
"bui.colorInput.newColor": string;
|
|
106
|
+
"bui.colorInput.noColor": string;
|
|
107
|
+
"bui.colorInput.removeColor": string;
|
|
108
|
+
"bui.colorInput.transparent": string;
|
|
109
|
+
};
|
|
110
|
+
fi: {
|
|
111
|
+
"bui.colorInput.add": string;
|
|
112
|
+
"bui.colorInput.addColor": string;
|
|
113
|
+
"bui.colorInput.cancel": string;
|
|
114
|
+
"bui.colorInput.colorFormat": string;
|
|
115
|
+
"bui.colorInput.colorPresets": string;
|
|
116
|
+
"bui.colorInput.customColors": string;
|
|
117
|
+
"bui.colorInput.newColor": string;
|
|
118
|
+
"bui.colorInput.noColor": string;
|
|
119
|
+
"bui.colorInput.removeColor": string;
|
|
120
|
+
"bui.colorInput.transparent": string;
|
|
121
|
+
};
|
|
122
|
+
fr_CA: {
|
|
123
|
+
"bui.colorInput.add": string;
|
|
124
|
+
"bui.colorInput.addColor": string;
|
|
125
|
+
"bui.colorInput.cancel": string;
|
|
126
|
+
"bui.colorInput.colorFormat": string;
|
|
127
|
+
"bui.colorInput.colorPresets": string;
|
|
128
|
+
"bui.colorInput.customColors": string;
|
|
129
|
+
"bui.colorInput.newColor": string;
|
|
130
|
+
"bui.colorInput.noColor": string;
|
|
131
|
+
"bui.colorInput.removeColor": string;
|
|
132
|
+
"bui.colorInput.transparent": string;
|
|
133
|
+
};
|
|
134
|
+
fr: {
|
|
135
|
+
"bui.colorInput.add": string;
|
|
136
|
+
"bui.colorInput.addColor": string;
|
|
137
|
+
"bui.colorInput.cancel": string;
|
|
138
|
+
"bui.colorInput.colorFormat": string;
|
|
139
|
+
"bui.colorInput.colorPresets": string;
|
|
140
|
+
"bui.colorInput.customColors": string;
|
|
141
|
+
"bui.colorInput.newColor": string;
|
|
142
|
+
"bui.colorInput.noColor": string;
|
|
143
|
+
"bui.colorInput.removeColor": string;
|
|
144
|
+
"bui.colorInput.transparent": string;
|
|
145
|
+
};
|
|
146
|
+
he: {
|
|
147
|
+
"bui.colorInput.add": string;
|
|
148
|
+
"bui.colorInput.addColor": string;
|
|
149
|
+
"bui.colorInput.cancel": string;
|
|
150
|
+
"bui.colorInput.colorFormat": string;
|
|
151
|
+
"bui.colorInput.colorPresets": string;
|
|
152
|
+
"bui.colorInput.customColors": string;
|
|
153
|
+
"bui.colorInput.newColor": string;
|
|
154
|
+
"bui.colorInput.noColor": string;
|
|
155
|
+
"bui.colorInput.removeColor": string;
|
|
156
|
+
"bui.colorInput.transparent": string;
|
|
157
|
+
};
|
|
158
|
+
hr: {
|
|
159
|
+
"bui.colorInput.add": string;
|
|
160
|
+
"bui.colorInput.addColor": string;
|
|
161
|
+
"bui.colorInput.cancel": string;
|
|
162
|
+
"bui.colorInput.colorFormat": string;
|
|
163
|
+
"bui.colorInput.colorPresets": string;
|
|
164
|
+
"bui.colorInput.customColors": string;
|
|
165
|
+
"bui.colorInput.newColor": string;
|
|
166
|
+
"bui.colorInput.noColor": string;
|
|
167
|
+
"bui.colorInput.removeColor": string;
|
|
168
|
+
"bui.colorInput.transparent": string;
|
|
169
|
+
};
|
|
170
|
+
id: {
|
|
171
|
+
"bui.colorInput.add": string;
|
|
172
|
+
"bui.colorInput.addColor": string;
|
|
173
|
+
"bui.colorInput.cancel": string;
|
|
174
|
+
"bui.colorInput.colorFormat": string;
|
|
175
|
+
"bui.colorInput.colorPresets": string;
|
|
176
|
+
"bui.colorInput.customColors": string;
|
|
177
|
+
"bui.colorInput.newColor": string;
|
|
178
|
+
"bui.colorInput.noColor": string;
|
|
179
|
+
"bui.colorInput.removeColor": string;
|
|
180
|
+
"bui.colorInput.transparent": string;
|
|
181
|
+
};
|
|
182
|
+
it: {
|
|
183
|
+
"bui.colorInput.add": string;
|
|
184
|
+
"bui.colorInput.addColor": string;
|
|
185
|
+
"bui.colorInput.cancel": string;
|
|
186
|
+
"bui.colorInput.colorFormat": string;
|
|
187
|
+
"bui.colorInput.colorPresets": string;
|
|
188
|
+
"bui.colorInput.customColors": string;
|
|
189
|
+
"bui.colorInput.newColor": string;
|
|
190
|
+
"bui.colorInput.noColor": string;
|
|
191
|
+
"bui.colorInput.removeColor": string;
|
|
192
|
+
"bui.colorInput.transparent": string;
|
|
193
|
+
};
|
|
194
|
+
ja: {
|
|
195
|
+
"bui.colorInput.add": string;
|
|
196
|
+
"bui.colorInput.addColor": string;
|
|
197
|
+
"bui.colorInput.cancel": string;
|
|
198
|
+
"bui.colorInput.colorFormat": string;
|
|
199
|
+
"bui.colorInput.colorPresets": string;
|
|
200
|
+
"bui.colorInput.customColors": string;
|
|
201
|
+
"bui.colorInput.newColor": string;
|
|
202
|
+
"bui.colorInput.noColor": string;
|
|
203
|
+
"bui.colorInput.removeColor": string;
|
|
204
|
+
"bui.colorInput.transparent": string;
|
|
205
|
+
};
|
|
206
|
+
ko: {
|
|
207
|
+
"bui.colorInput.add": string;
|
|
208
|
+
"bui.colorInput.addColor": string;
|
|
209
|
+
"bui.colorInput.cancel": string;
|
|
210
|
+
"bui.colorInput.colorFormat": string;
|
|
211
|
+
"bui.colorInput.colorPresets": string;
|
|
212
|
+
"bui.colorInput.customColors": string;
|
|
213
|
+
"bui.colorInput.newColor": string;
|
|
214
|
+
"bui.colorInput.noColor": string;
|
|
215
|
+
"bui.colorInput.removeColor": string;
|
|
216
|
+
"bui.colorInput.transparent": string;
|
|
217
|
+
};
|
|
218
|
+
ms: {
|
|
219
|
+
"bui.colorInput.add": string;
|
|
220
|
+
"bui.colorInput.addColor": string;
|
|
221
|
+
"bui.colorInput.cancel": string;
|
|
222
|
+
"bui.colorInput.colorFormat": string;
|
|
223
|
+
"bui.colorInput.colorPresets": string;
|
|
224
|
+
"bui.colorInput.customColors": string;
|
|
225
|
+
"bui.colorInput.newColor": string;
|
|
226
|
+
"bui.colorInput.noColor": string;
|
|
227
|
+
"bui.colorInput.removeColor": string;
|
|
228
|
+
"bui.colorInput.transparent": string;
|
|
229
|
+
};
|
|
230
|
+
nb_NO: {
|
|
231
|
+
"bui.colorInput.add": string;
|
|
232
|
+
"bui.colorInput.addColor": string;
|
|
233
|
+
"bui.colorInput.cancel": string;
|
|
234
|
+
"bui.colorInput.colorFormat": string;
|
|
235
|
+
"bui.colorInput.colorPresets": string;
|
|
236
|
+
"bui.colorInput.customColors": string;
|
|
237
|
+
"bui.colorInput.newColor": string;
|
|
238
|
+
"bui.colorInput.noColor": string;
|
|
239
|
+
"bui.colorInput.removeColor": string;
|
|
240
|
+
"bui.colorInput.transparent": string;
|
|
241
|
+
};
|
|
242
|
+
nl: {
|
|
243
|
+
"bui.colorInput.add": string;
|
|
244
|
+
"bui.colorInput.addColor": string;
|
|
245
|
+
"bui.colorInput.cancel": string;
|
|
246
|
+
"bui.colorInput.colorFormat": string;
|
|
247
|
+
"bui.colorInput.colorPresets": string;
|
|
248
|
+
"bui.colorInput.customColors": string;
|
|
249
|
+
"bui.colorInput.newColor": string;
|
|
250
|
+
"bui.colorInput.noColor": string;
|
|
251
|
+
"bui.colorInput.removeColor": string;
|
|
252
|
+
"bui.colorInput.transparent": string;
|
|
253
|
+
};
|
|
254
|
+
pl: {
|
|
255
|
+
"bui.colorInput.add": string;
|
|
256
|
+
"bui.colorInput.addColor": string;
|
|
257
|
+
"bui.colorInput.cancel": string;
|
|
258
|
+
"bui.colorInput.colorFormat": string;
|
|
259
|
+
"bui.colorInput.colorPresets": string;
|
|
260
|
+
"bui.colorInput.customColors": string;
|
|
261
|
+
"bui.colorInput.newColor": string;
|
|
262
|
+
"bui.colorInput.noColor": string;
|
|
263
|
+
"bui.colorInput.removeColor": string;
|
|
264
|
+
"bui.colorInput.transparent": string;
|
|
265
|
+
};
|
|
266
|
+
pt_PT: {
|
|
267
|
+
"bui.colorInput.add": string;
|
|
268
|
+
"bui.colorInput.addColor": string;
|
|
269
|
+
"bui.colorInput.cancel": string;
|
|
270
|
+
"bui.colorInput.colorFormat": string;
|
|
271
|
+
"bui.colorInput.colorPresets": string;
|
|
272
|
+
"bui.colorInput.customColors": string;
|
|
273
|
+
"bui.colorInput.newColor": string;
|
|
274
|
+
"bui.colorInput.noColor": string;
|
|
275
|
+
"bui.colorInput.removeColor": string;
|
|
276
|
+
"bui.colorInput.transparent": string;
|
|
277
|
+
};
|
|
278
|
+
pt: {
|
|
279
|
+
"bui.colorInput.add": string;
|
|
280
|
+
"bui.colorInput.addColor": string;
|
|
281
|
+
"bui.colorInput.cancel": string;
|
|
282
|
+
"bui.colorInput.colorFormat": string;
|
|
283
|
+
"bui.colorInput.colorPresets": string;
|
|
284
|
+
"bui.colorInput.customColors": string;
|
|
285
|
+
"bui.colorInput.newColor": string;
|
|
286
|
+
"bui.colorInput.noColor": string;
|
|
287
|
+
"bui.colorInput.removeColor": string;
|
|
288
|
+
"bui.colorInput.transparent": string;
|
|
289
|
+
};
|
|
290
|
+
ru: {
|
|
291
|
+
"bui.colorInput.add": string;
|
|
292
|
+
"bui.colorInput.addColor": string;
|
|
293
|
+
"bui.colorInput.cancel": string;
|
|
294
|
+
"bui.colorInput.colorFormat": string;
|
|
295
|
+
"bui.colorInput.colorPresets": string;
|
|
296
|
+
"bui.colorInput.customColors": string;
|
|
297
|
+
"bui.colorInput.newColor": string;
|
|
298
|
+
"bui.colorInput.noColor": string;
|
|
299
|
+
"bui.colorInput.removeColor": string;
|
|
300
|
+
"bui.colorInput.transparent": string;
|
|
301
|
+
};
|
|
302
|
+
sk: {
|
|
303
|
+
"bui.colorInput.add": string;
|
|
304
|
+
"bui.colorInput.addColor": string;
|
|
305
|
+
"bui.colorInput.cancel": string;
|
|
306
|
+
"bui.colorInput.colorFormat": string;
|
|
307
|
+
"bui.colorInput.colorPresets": string;
|
|
308
|
+
"bui.colorInput.customColors": string;
|
|
309
|
+
"bui.colorInput.newColor": string;
|
|
310
|
+
"bui.colorInput.noColor": string;
|
|
311
|
+
"bui.colorInput.removeColor": string;
|
|
312
|
+
"bui.colorInput.transparent": string;
|
|
313
|
+
};
|
|
314
|
+
sl: {
|
|
315
|
+
"bui.colorInput.add": string;
|
|
316
|
+
"bui.colorInput.addColor": string;
|
|
317
|
+
"bui.colorInput.cancel": string;
|
|
318
|
+
"bui.colorInput.colorFormat": string;
|
|
319
|
+
"bui.colorInput.colorPresets": string;
|
|
320
|
+
"bui.colorInput.customColors": string;
|
|
321
|
+
"bui.colorInput.newColor": string;
|
|
322
|
+
"bui.colorInput.noColor": string;
|
|
323
|
+
"bui.colorInput.removeColor": string;
|
|
324
|
+
"bui.colorInput.transparent": string;
|
|
325
|
+
};
|
|
326
|
+
sv: {
|
|
327
|
+
"bui.colorInput.add": string;
|
|
328
|
+
"bui.colorInput.addColor": string;
|
|
329
|
+
"bui.colorInput.cancel": string;
|
|
330
|
+
"bui.colorInput.colorFormat": string;
|
|
331
|
+
"bui.colorInput.colorPresets": string;
|
|
332
|
+
"bui.colorInput.customColors": string;
|
|
333
|
+
"bui.colorInput.newColor": string;
|
|
334
|
+
"bui.colorInput.noColor": string;
|
|
335
|
+
"bui.colorInput.removeColor": string;
|
|
336
|
+
"bui.colorInput.transparent": string;
|
|
337
|
+
};
|
|
338
|
+
th: {
|
|
339
|
+
"bui.colorInput.add": string;
|
|
340
|
+
"bui.colorInput.addColor": string;
|
|
341
|
+
"bui.colorInput.cancel": string;
|
|
342
|
+
"bui.colorInput.colorFormat": string;
|
|
343
|
+
"bui.colorInput.colorPresets": string;
|
|
344
|
+
"bui.colorInput.customColors": string;
|
|
345
|
+
"bui.colorInput.newColor": string;
|
|
346
|
+
"bui.colorInput.noColor": string;
|
|
347
|
+
"bui.colorInput.removeColor": string;
|
|
348
|
+
"bui.colorInput.transparent": string;
|
|
349
|
+
};
|
|
350
|
+
tr: {
|
|
351
|
+
"bui.colorInput.add": string;
|
|
352
|
+
"bui.colorInput.addColor": string;
|
|
353
|
+
"bui.colorInput.cancel": string;
|
|
354
|
+
"bui.colorInput.colorFormat": string;
|
|
355
|
+
"bui.colorInput.colorPresets": string;
|
|
356
|
+
"bui.colorInput.customColors": string;
|
|
357
|
+
"bui.colorInput.newColor": string;
|
|
358
|
+
"bui.colorInput.noColor": string;
|
|
359
|
+
"bui.colorInput.removeColor": string;
|
|
360
|
+
"bui.colorInput.transparent": string;
|
|
361
|
+
};
|
|
362
|
+
uk: {
|
|
363
|
+
"bui.colorInput.add": string;
|
|
364
|
+
"bui.colorInput.addColor": string;
|
|
365
|
+
"bui.colorInput.cancel": string;
|
|
366
|
+
"bui.colorInput.colorFormat": string;
|
|
367
|
+
"bui.colorInput.colorPresets": string;
|
|
368
|
+
"bui.colorInput.customColors": string;
|
|
369
|
+
"bui.colorInput.newColor": string;
|
|
370
|
+
"bui.colorInput.noColor": string;
|
|
371
|
+
"bui.colorInput.removeColor": string;
|
|
372
|
+
"bui.colorInput.transparent": string;
|
|
373
|
+
};
|
|
374
|
+
zh_Hans: {
|
|
375
|
+
"bui.colorInput.add": string;
|
|
376
|
+
"bui.colorInput.addColor": string;
|
|
377
|
+
"bui.colorInput.cancel": string;
|
|
378
|
+
"bui.colorInput.colorFormat": string;
|
|
379
|
+
"bui.colorInput.colorPresets": string;
|
|
380
|
+
"bui.colorInput.customColors": string;
|
|
381
|
+
"bui.colorInput.newColor": string;
|
|
382
|
+
"bui.colorInput.noColor": string;
|
|
383
|
+
"bui.colorInput.removeColor": string;
|
|
384
|
+
"bui.colorInput.transparent": string;
|
|
385
|
+
};
|
|
386
|
+
zh_Hant: {
|
|
387
|
+
"bui.colorInput.add": string;
|
|
388
|
+
"bui.colorInput.addColor": string;
|
|
389
|
+
"bui.colorInput.cancel": string;
|
|
390
|
+
"bui.colorInput.colorFormat": string;
|
|
391
|
+
"bui.colorInput.colorPresets": string;
|
|
392
|
+
"bui.colorInput.customColors": string;
|
|
393
|
+
"bui.colorInput.newColor": string;
|
|
394
|
+
"bui.colorInput.noColor": string;
|
|
395
|
+
"bui.colorInput.removeColor": string;
|
|
396
|
+
"bui.colorInput.transparent": string;
|
|
397
|
+
};
|
|
398
|
+
};
|
|
399
|
+
export default _default;
|