@plitzi/plitzi-ui 1.6.2
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 +74 -0
- package/README.md +1 -0
- package/dist/_virtual/_rolldown/runtime.js +11 -0
- package/dist/assets/scss/index.scss +13 -0
- package/dist/components/Accordion/Accordion.d.ts +22 -0
- package/dist/components/Accordion/Accordion.js +57 -0
- package/dist/components/Accordion/Accordion.styles.d.ts +24 -0
- package/dist/components/Accordion/Accordion.styles.js +35 -0
- package/dist/components/Accordion/AccordionContext.d.ts +12 -0
- package/dist/components/Accordion/AccordionContext.js +6 -0
- package/dist/components/Accordion/components/AccordionItem/AccordionItem.d.ts +22 -0
- package/dist/components/Accordion/components/AccordionItem/AccordionItem.js +103 -0
- package/dist/components/Accordion/components/AccordionItem/ItemContent.d.ts +10 -0
- package/dist/components/Accordion/components/AccordionItem/ItemContent.js +14 -0
- package/dist/components/Accordion/components/AccordionItem/ItemHeader.d.ts +17 -0
- package/dist/components/Accordion/components/AccordionItem/ItemHeader.js +72 -0
- package/dist/components/Accordion/components/AccordionItem/index.d.ts +3 -0
- package/dist/components/Accordion/components/AccordionItem/index.js +5 -0
- package/dist/components/Accordion/helpers/AccordionManager.d.ts +49 -0
- package/dist/components/Accordion/helpers/AccordionManager.js +156 -0
- package/dist/components/Accordion/helpers/AccordionManager.test.d.ts +1 -0
- package/dist/components/Accordion/hooks/useAccordion.d.ts +2 -0
- package/dist/components/Accordion/hooks/useAccordion.js +10 -0
- package/dist/components/Accordion/index.d.ts +6 -0
- package/dist/components/Accordion/index.js +7 -0
- package/dist/components/Alert/Alert.d.ts +10 -0
- package/dist/components/Alert/Alert.js +48 -0
- package/dist/components/Alert/Alert.styles.d.ts +25 -0
- package/dist/components/Alert/Alert.styles.js +141 -0
- package/dist/components/Alert/index.d.ts +5 -0
- package/dist/components/Alert/index.js +6 -0
- package/dist/components/Badge/Badge.d.ts +9 -0
- package/dist/components/Badge/Badge.js +42 -0
- package/dist/components/Badge/Badge.styles.d.ts +22 -0
- package/dist/components/Badge/Badge.styles.js +120 -0
- package/dist/components/Badge/index.d.ts +5 -0
- package/dist/components/Badge/index.js +6 -0
- package/dist/components/Breadcrumb/Breadcrumb.d.ts +11 -0
- package/dist/components/Breadcrumb/Breadcrumb.js +37 -0
- package/dist/components/Breadcrumb/Breadcrumb.styles.d.ts +19 -0
- package/dist/components/Breadcrumb/Breadcrumb.styles.js +35 -0
- package/dist/components/Breadcrumb/BreadcrumbItem.d.ts +10 -0
- package/dist/components/Breadcrumb/BreadcrumbItem.js +22 -0
- package/dist/components/Breadcrumb/index.d.ts +5 -0
- package/dist/components/Breadcrumb/index.js +6 -0
- package/dist/components/Button/Button.d.ts +19 -0
- package/dist/components/Button/Button.js +76 -0
- package/dist/components/Button/Button.styles.d.ts +26 -0
- package/dist/components/Button/Button.styles.js +90 -0
- package/dist/components/Button/index.d.ts +5 -0
- package/dist/components/Button/index.js +6 -0
- package/dist/components/Cache/CacheContext.d.ts +5 -0
- package/dist/components/Cache/CacheContext.js +5 -0
- package/dist/components/Cache/CacheProvider.d.ts +7 -0
- package/dist/components/Cache/CacheProvider.js +10 -0
- package/dist/components/Cache/hooks/useCache.d.ts +13 -0
- package/dist/components/Cache/hooks/useCache.js +49 -0
- package/dist/components/Cache/index.d.ts +7 -0
- package/dist/components/Cache/index.js +4 -0
- package/dist/components/Card/Card.d.ts +21 -0
- package/dist/components/Card/Card.js +80 -0
- package/dist/components/Card/Card.styles.d.ts +30 -0
- package/dist/components/Card/Card.styles.js +94 -0
- package/dist/components/Card/CardBody.d.ts +11 -0
- package/dist/components/Card/CardBody.js +29 -0
- package/dist/components/Card/CardFooter.d.ts +11 -0
- package/dist/components/Card/CardFooter.js +29 -0
- package/dist/components/Card/CardHeader.d.ts +13 -0
- package/dist/components/Card/CardHeader.js +78 -0
- package/dist/components/Card/index.d.ts +5 -0
- package/dist/components/Card/index.js +6 -0
- package/dist/components/Checkbox/Checkbox.d.ts +14 -0
- package/dist/components/Checkbox/Checkbox.js +48 -0
- package/dist/components/Checkbox/Checkbox.styles.d.ts +16 -0
- package/dist/components/Checkbox/Checkbox.styles.js +46 -0
- package/dist/components/Checkbox/index.d.ts +5 -0
- package/dist/components/Checkbox/index.js +6 -0
- package/dist/components/CodeMirror/Assets/index.scss +14 -0
- package/dist/components/CodeMirror/CodeMirror.d.ts +38 -0
- package/dist/components/CodeMirror/CodeMirror.js +154 -0
- package/dist/components/CodeMirror/CodeMirror.styles.d.ts +25 -0
- package/dist/components/CodeMirror/CodeMirror.styles.js +80 -0
- package/dist/components/CodeMirror/helpers/BasicSetup.d.ts +41 -0
- package/dist/components/CodeMirror/helpers/BasicSetup.js +16 -0
- package/dist/components/CodeMirror/hooks/useCodeMirror.d.ts +25 -0
- package/dist/components/CodeMirror/hooks/useCodeMirror.js +76 -0
- package/dist/components/CodeMirror/index.d.ts +5 -0
- package/dist/components/CodeMirror/index.js +6 -0
- package/dist/components/ColorPicker/ColorPicker.d.ts +22 -0
- package/dist/components/ColorPicker/ColorPicker.js +101 -0
- package/dist/components/ColorPicker/ColorPicker.styles.d.ts +27 -0
- package/dist/components/ColorPicker/ColorPicker.styles.js +76 -0
- package/dist/components/ColorPicker/ColorPickerHelper.d.ts +3 -0
- package/dist/components/ColorPicker/ColorPickerHelper.js +8 -0
- package/dist/components/ColorPicker/index.d.ts +5 -0
- package/dist/components/ColorPicker/index.js +6 -0
- package/dist/components/ContainerAutoScale/ContainerAutoScale.d.ts +9 -0
- package/dist/components/ContainerAutoScale/ContainerAutoScale.js +43 -0
- package/dist/components/ContainerAutoScale/helpers/SizeFromDOM.d.ts +19 -0
- package/dist/components/ContainerAutoScale/helpers/SizeFromDOM.js +25 -0
- package/dist/components/ContainerAutoScale/index.d.ts +3 -0
- package/dist/components/ContainerAutoScale/index.js +5 -0
- package/dist/components/ContainerCollapsable/ContainerCollapsable.d.ts +16 -0
- package/dist/components/ContainerCollapsable/ContainerCollapsable.js +52 -0
- package/dist/components/ContainerCollapsable/ContainerCollapsable.styles.d.ts +13 -0
- package/dist/components/ContainerCollapsable/ContainerCollapsable.styles.js +13 -0
- package/dist/components/ContainerCollapsable/ContainerCollapsableContent.d.ts +9 -0
- package/dist/components/ContainerCollapsable/ContainerCollapsableContent.js +22 -0
- package/dist/components/ContainerCollapsable/ContainerCollapsableHeader.d.ts +14 -0
- package/dist/components/ContainerCollapsable/ContainerCollapsableHeader.js +42 -0
- package/dist/components/ContainerCollapsable/index.d.ts +5 -0
- package/dist/components/ContainerCollapsable/index.js +6 -0
- package/dist/components/ContainerDraggable/ContainerDraggable.d.ts +27 -0
- package/dist/components/ContainerDraggable/ContainerDraggable.js +140 -0
- package/dist/components/ContainerDraggable/ContainerDraggable.styles.d.ts +35 -0
- package/dist/components/ContainerDraggable/ContainerDraggable.styles.js +67 -0
- package/dist/components/ContainerDraggable/ContainerDraggableContent.d.ts +18 -0
- package/dist/components/ContainerDraggable/ContainerDraggableContent.js +35 -0
- package/dist/components/ContainerDraggable/ContainerDraggableHeader.d.ts +18 -0
- package/dist/components/ContainerDraggable/ContainerDraggableHeader.js +71 -0
- package/dist/components/ContainerDraggable/index.d.ts +5 -0
- package/dist/components/ContainerDraggable/index.js +6 -0
- package/dist/components/ContainerFloating/ContainerFloating.d.ts +23 -0
- package/dist/components/ContainerFloating/ContainerFloating.js +72 -0
- package/dist/components/ContainerFloating/ContainerFloating.styles.d.ts +18 -0
- package/dist/components/ContainerFloating/ContainerFloating.styles.js +38 -0
- package/dist/components/ContainerFloating/ContainerFloatingContainer.d.ts +11 -0
- package/dist/components/ContainerFloating/ContainerFloatingContainer.js +74 -0
- package/dist/components/ContainerFloating/ContainerFloatingContent.d.ts +11 -0
- package/dist/components/ContainerFloating/ContainerFloatingContent.js +16 -0
- package/dist/components/ContainerFloating/ContainerFloatingContext.d.ts +12 -0
- package/dist/components/ContainerFloating/ContainerFloatingContext.js +5 -0
- package/dist/components/ContainerFloating/ContainerFloatingTrigger.d.ts +11 -0
- package/dist/components/ContainerFloating/ContainerFloatingTrigger.js +15 -0
- package/dist/components/ContainerFloating/hooks/index.d.ts +3 -0
- package/dist/components/ContainerFloating/hooks/index.js +2 -0
- package/dist/components/ContainerFloating/hooks/useFloating.d.ts +17 -0
- package/dist/components/ContainerFloating/hooks/useFloating.js +25 -0
- package/dist/components/ContainerFloating/index.d.ts +7 -0
- package/dist/components/ContainerFloating/index.js +7 -0
- package/dist/components/ContainerFrame/ContainerFrame.d.ts +25 -0
- package/dist/components/ContainerFrame/ContainerFrame.js +80 -0
- package/dist/components/ContainerFrame/ContainerFrame.styles.d.ts +6 -0
- package/dist/components/ContainerFrame/ContainerFrame.styles.js +4 -0
- package/dist/components/ContainerFrame/FrameContent.d.ts +9 -0
- package/dist/components/ContainerFrame/FrameContent.js +7 -0
- package/dist/components/ContainerFrame/index.d.ts +5 -0
- package/dist/components/ContainerFrame/index.js +6 -0
- package/dist/components/ContainerResizable/ContainerResizable.d.ts +26 -0
- package/dist/components/ContainerResizable/ContainerResizable.js +106 -0
- package/dist/components/ContainerResizable/ContainerResizable.styles.d.ts +20 -0
- package/dist/components/ContainerResizable/ContainerResizable.styles.js +55 -0
- package/dist/components/ContainerResizable/index.d.ts +5 -0
- package/dist/components/ContainerResizable/index.js +6 -0
- package/dist/components/ContainerResizable/utils.d.ts +2 -0
- package/dist/components/ContainerResizable/utils.js +4 -0
- package/dist/components/ContainerRoot/ContainerRoot.d.ts +8 -0
- package/dist/components/ContainerRoot/ContainerRoot.js +26 -0
- package/dist/components/ContainerRoot/ContainerRootContext.d.ts +8 -0
- package/dist/components/ContainerRoot/ContainerRootContext.js +6 -0
- package/dist/components/ContainerRoot/index.d.ts +6 -0
- package/dist/components/ContainerRoot/index.js +6 -0
- package/dist/components/ContainerRoot/useContainerRoot.d.ts +2 -0
- package/dist/components/ContainerRoot/useContainerRoot.js +10 -0
- package/dist/components/ContainerShadow/ContainerShadow.d.ts +20 -0
- package/dist/components/ContainerShadow/ContainerShadow.js +98 -0
- package/dist/components/ContainerShadow/ContainerShadowContent.d.ts +8 -0
- package/dist/components/ContainerShadow/ContainerShadowContent.js +7 -0
- package/dist/components/ContainerShadow/ContainerShadowContext.d.ts +5 -0
- package/dist/components/ContainerShadow/ContainerShadowContext.js +5 -0
- package/dist/components/ContainerShadow/ContainerShadowLink.d.ts +10 -0
- package/dist/components/ContainerShadow/ContainerShadowLink.js +22 -0
- package/dist/components/ContainerShadow/ContainerShadowStyle.d.ts +6 -0
- package/dist/components/ContainerShadow/ContainerShadowStyle.js +10 -0
- package/dist/components/ContainerShadow/index.d.ts +3 -0
- package/dist/components/ContainerShadow/index.js +5 -0
- package/dist/components/ContainerTabs/ContainerTabs.d.ts +13 -0
- package/dist/components/ContainerTabs/ContainerTabs.js +56 -0
- package/dist/components/ContainerTabs/ContainerTabs.styles.d.ts +15 -0
- package/dist/components/ContainerTabs/ContainerTabs.styles.js +27 -0
- package/dist/components/ContainerTabs/Tab.d.ts +11 -0
- package/dist/components/ContainerTabs/Tab.js +22 -0
- package/dist/components/ContainerTabs/TabContent.d.ts +8 -0
- package/dist/components/ContainerTabs/TabContent.js +13 -0
- package/dist/components/ContainerTabs/Tabs.d.ts +12 -0
- package/dist/components/ContainerTabs/Tabs.js +20 -0
- package/dist/components/ContainerTabs/index.d.ts +11 -0
- package/dist/components/ContainerTabs/index.js +9 -0
- package/dist/components/ContainerWindow/ContainerWindow.d.ts +12 -0
- package/dist/components/ContainerWindow/ContainerWindow.js +36 -0
- package/dist/components/ContainerWindow/index.d.ts +3 -0
- package/dist/components/ContainerWindow/index.js +5 -0
- package/dist/components/ContentEditable/ContentEditable.d.ts +15 -0
- package/dist/components/ContentEditable/ContentEditable.js +60 -0
- package/dist/components/ContentEditable/ContentEditable.styles.d.ts +10 -0
- package/dist/components/ContentEditable/ContentEditable.styles.js +13 -0
- package/dist/components/ContentEditable/index.d.ts +5 -0
- package/dist/components/ContentEditable/index.js +6 -0
- package/dist/components/Dummy/Dummy.d.ts +7 -0
- package/dist/components/Dummy/Dummy.js +16 -0
- package/dist/components/Dummy/Dummy.styles.d.ts +12 -0
- package/dist/components/Dummy/Dummy.styles.js +22 -0
- package/dist/components/Dummy/index.d.ts +5 -0
- package/dist/components/Dummy/index.js +6 -0
- package/dist/components/ErrorBoundary/ErrorBoundary.d.ts +16 -0
- package/dist/components/ErrorBoundary/ErrorBoundary.js +20 -0
- package/dist/components/ErrorBoundary/index.d.ts +3 -0
- package/dist/components/ErrorBoundary/index.js +5 -0
- package/dist/components/ErrorMessage/ErrorMessage.d.ts +9 -0
- package/dist/components/ErrorMessage/ErrorMessage.js +18 -0
- package/dist/components/ErrorMessage/ErrorMessage.styles.d.ts +16 -0
- package/dist/components/ErrorMessage/ErrorMessage.styles.js +32 -0
- package/dist/components/ErrorMessage/index.d.ts +5 -0
- package/dist/components/ErrorMessage/index.js +6 -0
- package/dist/components/FileUpload/FileUpload.d.ts +32 -0
- package/dist/components/FileUpload/FileUpload.js +187 -0
- package/dist/components/FileUpload/FileUpload.styles.d.ts +42 -0
- package/dist/components/FileUpload/FileUpload.styles.js +146 -0
- package/dist/components/FileUpload/components/DrawTypes/DrawTypes.d.ts +8 -0
- package/dist/components/FileUpload/components/DrawTypes/DrawTypes.js +29 -0
- package/dist/components/FileUpload/components/DrawTypes/index.d.ts +3 -0
- package/dist/components/FileUpload/components/DrawTypes/index.js +5 -0
- package/dist/components/FileUpload/components/FileUploadItem/FileUploadItem.d.ts +12 -0
- package/dist/components/FileUpload/components/FileUploadItem/FileUploadItem.js +49 -0
- package/dist/components/FileUpload/components/FileUploadItem/index.d.ts +3 -0
- package/dist/components/FileUpload/components/FileUploadItem/index.js +5 -0
- package/dist/components/FileUpload/components/FileUploadItems/FileUploadItems.d.ts +12 -0
- package/dist/components/FileUpload/components/FileUploadItems/FileUploadItems.js +34 -0
- package/dist/components/FileUpload/components/FileUploadItems/index.d.ts +3 -0
- package/dist/components/FileUpload/components/FileUploadItems/index.js +5 -0
- package/dist/components/FileUpload/components/FileUploadMessage/FileUploadMessage.d.ts +14 -0
- package/dist/components/FileUpload/components/FileUploadMessage/FileUploadMessage.js +36 -0
- package/dist/components/FileUpload/components/FileUploadMessage/index.d.ts +3 -0
- package/dist/components/FileUpload/components/FileUploadMessage/index.js +5 -0
- package/dist/components/FileUpload/helpers/utils.d.ts +5 -0
- package/dist/components/FileUpload/helpers/utils.js +18 -0
- package/dist/components/FileUpload/hooks/useDragging.d.ts +14 -0
- package/dist/components/FileUpload/hooks/useDragging.js +38 -0
- package/dist/components/FileUpload/index.d.ts +5 -0
- package/dist/components/FileUpload/index.js +6 -0
- package/dist/components/Flex/Flex.d.ts +10 -0
- package/dist/components/Flex/Flex.js +26 -0
- package/dist/components/Flex/Flex.styles.d.ts +26 -0
- package/dist/components/Flex/Flex.styles.js +145 -0
- package/dist/components/Flex/index.d.ts +5 -0
- package/dist/components/Flex/index.js +6 -0
- package/dist/components/Form/Form.d.ts +38 -0
- package/dist/components/Form/Form.js +63 -0
- package/dist/components/Form/Form.styles.d.ts +13 -0
- package/dist/components/Form/Form.styles.js +16 -0
- package/dist/components/Form/FormBody.d.ts +10 -0
- package/dist/components/Form/FormBody.js +22 -0
- package/dist/components/Form/FormFooter.d.ts +10 -0
- package/dist/components/Form/FormFooter.js +21 -0
- package/dist/components/Form/FormHeader.d.ts +10 -0
- package/dist/components/Form/FormHeader.js +21 -0
- package/dist/components/Form/fields/FormCheckbox.d.ts +6 -0
- package/dist/components/Form/fields/FormCheckbox.js +27 -0
- package/dist/components/Form/fields/FormColor.d.ts +6 -0
- package/dist/components/Form/fields/FormColor.js +27 -0
- package/dist/components/Form/fields/FormConditional.d.ts +10 -0
- package/dist/components/Form/fields/FormConditional.js +12 -0
- package/dist/components/Form/fields/FormFieldCustom.d.ts +7 -0
- package/dist/components/Form/fields/FormFieldCustom.js +14 -0
- package/dist/components/Form/fields/FormFileUpload.d.ts +6 -0
- package/dist/components/Form/fields/FormFileUpload.js +42 -0
- package/dist/components/Form/fields/FormInput.d.ts +6 -0
- package/dist/components/Form/fields/FormInput.js +27 -0
- package/dist/components/Form/fields/FormSelect.d.ts +6 -0
- package/dist/components/Form/fields/FormSelect.js +27 -0
- package/dist/components/Form/fields/FormSelect2.d.ts +6 -0
- package/dist/components/Form/fields/FormSelect2.js +27 -0
- package/dist/components/Form/fields/FormSwitch.d.ts +6 -0
- package/dist/components/Form/fields/FormSwitch.js +27 -0
- package/dist/components/Form/fields/FormTextArea.d.ts +6 -0
- package/dist/components/Form/fields/FormTextArea.js +27 -0
- package/dist/components/Form/fields/index.d.ts +21 -0
- package/dist/components/Form/fields/index.js +26 -0
- package/dist/components/Form/hooks/index.d.ts +5 -0
- package/dist/components/Form/hooks/index.js +3 -0
- package/dist/components/Form/hooks/useForm.d.ts +18 -0
- package/dist/components/Form/hooks/useForm.js +20 -0
- package/dist/components/Form/hooks/useFormWatch.d.ts +4 -0
- package/dist/components/Form/hooks/useFormWatch.js +24 -0
- package/dist/components/Form/index.d.ts +10 -0
- package/dist/components/Form/index.js +20 -0
- package/dist/components/Heading/Heading.d.ts +9 -0
- package/dist/components/Heading/Heading.js +17 -0
- package/dist/components/Heading/Heading.styles.d.ts +10 -0
- package/dist/components/Heading/Heading.styles.js +15 -0
- package/dist/components/Heading/index.d.ts +5 -0
- package/dist/components/Heading/index.js +6 -0
- package/dist/components/Icon/Icon.d.ts +13 -0
- package/dist/components/Icon/Icon.js +40 -0
- package/dist/components/Icon/Icon.styles.d.ts +14 -0
- package/dist/components/Icon/Icon.styles.js +45 -0
- package/dist/components/Icon/index.d.ts +5 -0
- package/dist/components/Icon/index.js +6 -0
- package/dist/components/Icon/utils.d.ts +3 -0
- package/dist/components/Icon/utils.js +4 -0
- package/dist/components/IconGroup/IconGroup.d.ts +16 -0
- package/dist/components/IconGroup/IconGroup.js +55 -0
- package/dist/components/IconGroup/IconGroup.styles.d.ts +18 -0
- package/dist/components/IconGroup/IconGroup.styles.js +70 -0
- package/dist/components/IconGroup/IconSeparator.d.ts +5 -0
- package/dist/components/IconGroup/IconSeparator.js +14 -0
- package/dist/components/IconGroup/index.d.ts +5 -0
- package/dist/components/IconGroup/index.js +6 -0
- package/dist/components/Input/Input.d.ts +84 -0
- package/dist/components/Input/Input.js +46 -0
- package/dist/components/Input/Input.styles.d.ts +48 -0
- package/dist/components/Input/Input.styles.js +194 -0
- package/dist/components/Input/InputContainer.d.ts +22 -0
- package/dist/components/Input/InputContainer.js +109 -0
- package/dist/components/Input/index.d.ts +6 -0
- package/dist/components/Input/index.js +7 -0
- package/dist/components/KVInput/KVInput.d.ts +24 -0
- package/dist/components/KVInput/KVInput.js +77 -0
- package/dist/components/KVInput/KVInput.styles.d.ts +16 -0
- package/dist/components/KVInput/KVInput.styles.js +30 -0
- package/dist/components/KVInput/KVInputHelper.d.ts +3 -0
- package/dist/components/KVInput/KVInputHelper.js +35 -0
- package/dist/components/KVInput/KVInputHelper.test.d.ts +1 -0
- package/dist/components/KVInput/KVInputItem.d.ts +28 -0
- package/dist/components/KVInput/KVInputItem.js +168 -0
- package/dist/components/KVInput/index.d.ts +6 -0
- package/dist/components/KVInput/index.js +7 -0
- package/dist/components/Label/Label.d.ts +10 -0
- package/dist/components/Label/Label.js +19 -0
- package/dist/components/Label/Label.styles.d.ts +16 -0
- package/dist/components/Label/Label.styles.js +34 -0
- package/dist/components/Label/index.d.ts +5 -0
- package/dist/components/Label/index.js +6 -0
- package/dist/components/Markdown/Assets/index.scss +1422 -0
- package/dist/components/Markdown/Markdown.d.ts +9 -0
- package/dist/components/Markdown/Markdown.js +47 -0
- package/dist/components/Markdown/Markdown.styles.d.ts +6 -0
- package/dist/components/Markdown/Markdown.styles.js +4 -0
- package/dist/components/Markdown/index.d.ts +5 -0
- package/dist/components/Markdown/index.js +6 -0
- package/dist/components/MenuList/Menu.d.ts +12 -0
- package/dist/components/MenuList/Menu.js +37 -0
- package/dist/components/MenuList/MenuItem.d.ts +12 -0
- package/dist/components/MenuList/MenuItem.js +100 -0
- package/dist/components/MenuList/MenuList.d.ts +21 -0
- package/dist/components/MenuList/MenuList.js +69 -0
- package/dist/components/MenuList/MenuList.styles.d.ts +20 -0
- package/dist/components/MenuList/MenuList.styles.js +37 -0
- package/dist/components/MenuList/MenuListContainer.d.ts +10 -0
- package/dist/components/MenuList/MenuListContainer.js +62 -0
- package/dist/components/MenuList/MenuListContext.d.ts +11 -0
- package/dist/components/MenuList/MenuListContext.js +5 -0
- package/dist/components/MenuList/MenuListTrigger.d.ts +11 -0
- package/dist/components/MenuList/MenuListTrigger.js +15 -0
- package/dist/components/MenuList/index.d.ts +5 -0
- package/dist/components/MenuList/index.js +6 -0
- package/dist/components/MetricInput/MetricInput.d.ts +29 -0
- package/dist/components/MetricInput/MetricInput.js +173 -0
- package/dist/components/MetricInput/MetricInput.styles.d.ts +45 -0
- package/dist/components/MetricInput/MetricInput.styles.js +168 -0
- package/dist/components/MetricInput/index.d.ts +5 -0
- package/dist/components/MetricInput/index.js +6 -0
- package/dist/components/MetricInput/utils.d.ts +8 -0
- package/dist/components/MetricInput/utils.js +19 -0
- package/dist/components/MetricInput/utils.test.d.ts +1 -0
- package/dist/components/Modal/Assets/index.scss +236 -0
- package/dist/components/Modal/Modal.d.ts +23 -0
- package/dist/components/Modal/Modal.js +48 -0
- package/dist/components/Modal/Modal.styles.d.ts +10 -0
- package/dist/components/Modal/Modal.styles.js +8 -0
- package/dist/components/Modal/ModalContext.d.ts +13 -0
- package/dist/components/Modal/ModalContext.js +8 -0
- package/dist/components/Modal/ModalProvider.d.ts +6 -0
- package/dist/components/Modal/ModalProvider.js +70 -0
- package/dist/components/Modal/index.d.ts +11 -0
- package/dist/components/Modal/index.js +9 -0
- package/dist/components/Modal/useModal.d.ts +3 -0
- package/dist/components/Modal/useModal.js +10 -0
- package/dist/components/Popup/Popup.d.ts +30 -0
- package/dist/components/Popup/Popup.js +66 -0
- package/dist/components/Popup/Popup.styles.d.ts +25 -0
- package/dist/components/Popup/Popup.styles.js +44 -0
- package/dist/components/Popup/PopupContext.d.ts +21 -0
- package/dist/components/Popup/PopupContext.js +21 -0
- package/dist/components/Popup/PopupFloatingArea.d.ts +5 -0
- package/dist/components/Popup/PopupFloatingArea.js +27 -0
- package/dist/components/Popup/PopupProvider.d.ts +41 -0
- package/dist/components/Popup/PopupProvider.js +117 -0
- package/dist/components/Popup/PopupSidebar.d.ts +14 -0
- package/dist/components/Popup/PopupSidebar.js +53 -0
- package/dist/components/Popup/components/PopupSidePanel/PopupSidePanel.d.ts +14 -0
- package/dist/components/Popup/components/PopupSidePanel/PopupSidePanel.js +103 -0
- package/dist/components/Popup/components/PopupSidePanel/PopupSidePanelItem.d.ts +15 -0
- package/dist/components/Popup/components/PopupSidePanel/PopupSidePanelItem.js +60 -0
- package/dist/components/Popup/components/PopupSidePanel/index.d.ts +3 -0
- package/dist/components/Popup/components/PopupSidePanel/index.js +5 -0
- package/dist/components/Popup/components/index.d.ts +3 -0
- package/dist/components/Popup/components/index.js +2 -0
- package/dist/components/Popup/helpers/PopupManager.d.ts +63 -0
- package/dist/components/Popup/helpers/PopupManager.js +243 -0
- package/dist/components/Popup/helpers/PopupManager.test.d.ts +1 -0
- package/dist/components/Popup/hooks/usePopup.d.ts +4 -0
- package/dist/components/Popup/hooks/usePopup.js +10 -0
- package/dist/components/Popup/index.d.ts +14 -0
- package/dist/components/Popup/index.js +11 -0
- package/dist/components/Provider/Provider.d.ts +7 -0
- package/dist/components/Provider/Provider.js +13 -0
- package/dist/components/Provider/index.d.ts +6 -0
- package/dist/components/Provider/index.js +8 -0
- package/dist/components/Provider/providers/ThemeProvider/ThemeProvider.d.ts +28 -0
- package/dist/components/Provider/providers/ThemeProvider/ThemeProvider.js +57 -0
- package/dist/components/Provider/providers/ThemeProvider/helpers/getSystemColorMode.d.ts +3 -0
- package/dist/components/Provider/providers/ThemeProvider/helpers/getSystemColorMode.js +11 -0
- package/dist/components/Provider/providers/ThemeProvider/helpers/resolveInitialColorMode.d.ts +3 -0
- package/dist/components/Provider/providers/ThemeProvider/helpers/resolveInitialColorMode.js +11 -0
- package/dist/components/Provider/providers/ThemeProvider/index.d.ts +3 -0
- package/dist/components/Provider/providers/ThemeProvider/index.js +5 -0
- package/dist/components/Provider/providers/index.d.ts +3 -0
- package/dist/components/Provider/providers/index.js +10 -0
- package/dist/components/QueryBuilder/GroupRules.d.ts +14 -0
- package/dist/components/QueryBuilder/GroupRules.js +110 -0
- package/dist/components/QueryBuilder/QueryBuilder.d.ts +57 -0
- package/dist/components/QueryBuilder/QueryBuilder.js +52 -0
- package/dist/components/QueryBuilder/QueryBuilder.styles.d.ts +33 -0
- package/dist/components/QueryBuilder/QueryBuilder.styles.js +117 -0
- package/dist/components/QueryBuilder/QueryBuilderContext.d.ts +21 -0
- package/dist/components/QueryBuilder/QueryBuilderContext.js +19 -0
- package/dist/components/QueryBuilder/QueryBuilderProvider.d.ts +17 -0
- package/dist/components/QueryBuilder/QueryBuilderProvider.js +109 -0
- package/dist/components/QueryBuilder/Rule.d.ts +13 -0
- package/dist/components/QueryBuilder/Rule.js +217 -0
- package/dist/components/QueryBuilder/RuleOperator.d.ts +14 -0
- package/dist/components/QueryBuilder/RuleOperator.js +28 -0
- package/dist/components/QueryBuilder/RuleValue.d.ts +19 -0
- package/dist/components/QueryBuilder/RuleValue.js +62 -0
- package/dist/components/QueryBuilder/helpers/QueryBuilderContants.d.ts +34 -0
- package/dist/components/QueryBuilder/helpers/QueryBuilderContants.js +105 -0
- package/dist/components/QueryBuilder/helpers/QueryBuilderEvaluator.d.ts +32 -0
- package/dist/components/QueryBuilder/helpers/QueryBuilderEvaluator.js +80 -0
- package/dist/components/QueryBuilder/helpers/QueryBuilderFormatter.d.ts +4 -0
- package/dist/components/QueryBuilder/helpers/QueryBuilderFormatter.js +11 -0
- package/dist/components/QueryBuilder/helpers/QueryBuilderHelper.d.ts +11 -0
- package/dist/components/QueryBuilder/helpers/QueryBuilderHelper.js +34 -0
- package/dist/components/QueryBuilder/helpers/formatters/formatterMongoDB.d.ts +4 -0
- package/dist/components/QueryBuilder/helpers/formatters/formatterMongoDB.js +98 -0
- package/dist/components/QueryBuilder/helpers/formatters/formatterSql.d.ts +11 -0
- package/dist/components/QueryBuilder/helpers/formatters/formatterSql.js +64 -0
- package/dist/components/QueryBuilder/helpers/formatters/index.d.ts +5 -0
- package/dist/components/QueryBuilder/helpers/formatters/index.js +3 -0
- package/dist/components/QueryBuilder/helpers/index.d.ts +8 -0
- package/dist/components/QueryBuilder/helpers/index.js +7 -0
- package/dist/components/QueryBuilder/index.d.ts +16 -0
- package/dist/components/QueryBuilder/index.js +12 -0
- package/dist/components/Select/Select.d.ts +86 -0
- package/dist/components/Select/Select.js +60 -0
- package/dist/components/Select/Select.styles.d.ts +16 -0
- package/dist/components/Select/Select.styles.js +32 -0
- package/dist/components/Select/SelectOption.d.ts +7 -0
- package/dist/components/Select/SelectOption.js +8 -0
- package/dist/components/Select/index.d.ts +5 -0
- package/dist/components/Select/index.js +6 -0
- package/dist/components/Select2/ListGroup.d.ts +15 -0
- package/dist/components/Select2/ListGroup.js +32 -0
- package/dist/components/Select2/ListItem.d.ts +19 -0
- package/dist/components/Select2/ListItem.js +60 -0
- package/dist/components/Select2/Select2.d.ts +47 -0
- package/dist/components/Select2/Select2.js +193 -0
- package/dist/components/Select2/Select2.styles.d.ts +43 -0
- package/dist/components/Select2/Select2.styles.js +110 -0
- package/dist/components/Select2/SelectInput.d.ts +18 -0
- package/dist/components/Select2/SelectInput.js +45 -0
- package/dist/components/Select2/SelectList.d.ts +13 -0
- package/dist/components/Select2/SelectList.js +41 -0
- package/dist/components/Select2/helpers/utils.d.ts +2 -0
- package/dist/components/Select2/helpers/utils.js +4 -0
- package/dist/components/Select2/index.d.ts +5 -0
- package/dist/components/Select2/index.js +6 -0
- package/dist/components/Sidebar/Sidebar.d.ts +20 -0
- package/dist/components/Sidebar/Sidebar.js +68 -0
- package/dist/components/Sidebar/Sidebar.styles.d.ts +19 -0
- package/dist/components/Sidebar/Sidebar.styles.js +62 -0
- package/dist/components/Sidebar/SidebarContext.d.ts +5 -0
- package/dist/components/Sidebar/SidebarContext.js +5 -0
- package/dist/components/Sidebar/SidebarIcon.d.ts +9 -0
- package/dist/components/Sidebar/SidebarIcon.js +33 -0
- package/dist/components/Sidebar/SidebarProvider.d.ts +7 -0
- package/dist/components/Sidebar/SidebarProvider.js +10 -0
- package/dist/components/Sidebar/SidebarSeparator.d.ts +5 -0
- package/dist/components/Sidebar/SidebarSeparator.js +9 -0
- package/dist/components/Sidebar/index.d.ts +5 -0
- package/dist/components/Sidebar/index.js +6 -0
- package/dist/components/Switch/Switch.d.ts +17 -0
- package/dist/components/Switch/Switch.js +56 -0
- package/dist/components/Switch/Switch.styles.d.ts +23 -0
- package/dist/components/Switch/Switch.styles.js +68 -0
- package/dist/components/Switch/index.d.ts +5 -0
- package/dist/components/Switch/index.js +6 -0
- package/dist/components/Text/Text.d.ts +12 -0
- package/dist/components/Text/Text.js +22 -0
- package/dist/components/Text/Text.styles.d.ts +14 -0
- package/dist/components/Text/Text.styles.js +53 -0
- package/dist/components/Text/index.d.ts +5 -0
- package/dist/components/Text/index.js +6 -0
- package/dist/components/TextArea/TextArea.d.ts +18 -0
- package/dist/components/TextArea/TextArea.js +53 -0
- package/dist/components/TextArea/TextArea.styles.d.ts +23 -0
- package/dist/components/TextArea/TextArea.styles.js +61 -0
- package/dist/components/TextArea/index.d.ts +5 -0
- package/dist/components/TextArea/index.js +6 -0
- package/dist/components/Toast/Assets/index.scss +7 -0
- package/dist/components/Toast/ToastContext.d.ts +14 -0
- package/dist/components/Toast/ToastContext.js +5 -0
- package/dist/components/Toast/ToastProvider.d.ts +12 -0
- package/dist/components/Toast/ToastProvider.js +34 -0
- package/dist/components/Toast/index.d.ts +7 -0
- package/dist/components/Toast/index.js +4 -0
- package/dist/components/Toast/useToast.d.ts +3 -0
- package/dist/components/Toast/useToast.js +10 -0
- package/dist/components/Toast/utils.d.ts +1 -0
- package/dist/components/Tree/Tree.d.ts +60 -0
- package/dist/components/Tree/Tree.js +161 -0
- package/dist/components/Tree/Tree.styles.d.ts +39 -0
- package/dist/components/Tree/Tree.styles.js +226 -0
- package/dist/components/Tree/TreeNode.d.ts +87 -0
- package/dist/components/Tree/TreeNode.js +182 -0
- package/dist/components/Tree/index.d.ts +5 -0
- package/dist/components/Tree/index.js +6 -0
- package/dist/components/Tree/utils.d.ts +45 -0
- package/dist/components/Tree/utils.js +92 -0
- package/dist/components/index.d.ts +95 -0
- package/dist/components/index.js +288 -0
- package/dist/helpers/DynamicComponent.d.ts +10 -0
- package/dist/helpers/DynamicComponent.js +5 -0
- package/dist/helpers/cvaWrapper.d.ts +18 -0
- package/dist/helpers/cvaWrapper.js +5 -0
- package/dist/helpers/formatDate.d.ts +2 -0
- package/dist/helpers/formatDate.js +8 -0
- package/dist/helpers/index.d.ts +7 -0
- package/dist/helpers/index.js +18 -0
- package/dist/helpers/lodash/camelCase.d.ts +1 -0
- package/dist/helpers/lodash/camelCase.js +8 -0
- package/dist/helpers/lodash/capitalize.d.ts +1 -0
- package/dist/helpers/lodash/capitalize.js +6 -0
- package/dist/helpers/lodash/cloneDeep.d.ts +7 -0
- package/dist/helpers/lodash/cloneDeep.js +54 -0
- package/dist/helpers/lodash/debounce.d.ts +12 -0
- package/dist/helpers/lodash/debounce.js +46 -0
- package/dist/helpers/lodash/get.d.ts +11 -0
- package/dist/helpers/lodash/get.js +18 -0
- package/dist/helpers/lodash/has.d.ts +2 -0
- package/dist/helpers/lodash/has.js +13 -0
- package/dist/helpers/lodash/index.d.ts +13 -0
- package/dist/helpers/lodash/index.js +14 -0
- package/dist/helpers/lodash/isEmpty.d.ts +1 -0
- package/dist/helpers/lodash/isEmpty.js +6 -0
- package/dist/helpers/lodash/lodash.test.d.ts +1 -0
- package/dist/helpers/lodash/omit.d.ts +4 -0
- package/dist/helpers/lodash/omit.js +26 -0
- package/dist/helpers/lodash/pick.d.ts +3 -0
- package/dist/helpers/lodash/pick.js +13 -0
- package/dist/helpers/lodash/set.d.ts +2 -0
- package/dist/helpers/lodash/set.js +21 -0
- package/dist/helpers/lodash/shared.d.ts +2 -0
- package/dist/helpers/lodash/shared.js +38 -0
- package/dist/helpers/lodash/snakeCase.d.ts +1 -0
- package/dist/helpers/lodash/snakeCase.js +6 -0
- package/dist/helpers/lodash/throttle.d.ts +2 -0
- package/dist/helpers/lodash/throttle.js +11 -0
- package/dist/helpers/lodash/upperFirst.d.ts +1 -0
- package/dist/helpers/lodash/upperFirst.js +6 -0
- package/dist/helpers/utils.d.ts +4 -0
- package/dist/helpers/utils.js +14 -0
- package/dist/hooks/index.d.ts +17 -0
- package/dist/hooks/index.js +22 -0
- package/dist/hooks/useDidUpdateEffect/index.d.ts +3 -0
- package/dist/hooks/useDidUpdateEffect/index.js +5 -0
- package/dist/hooks/useDidUpdateEffect/useDidUpdateEffect.d.ts +4 -0
- package/dist/hooks/useDidUpdateEffect/useDidUpdateEffect.js +14 -0
- package/dist/hooks/useDisclosure/index.d.ts +3 -0
- package/dist/hooks/useDisclosure/index.js +5 -0
- package/dist/hooks/useDisclosure/useDisclosure.d.ts +23 -0
- package/dist/hooks/useDisclosure/useDisclosure.js +45 -0
- package/dist/hooks/useReducerWithMiddleware/index.d.ts +3 -0
- package/dist/hooks/useReducerWithMiddleware/index.js +5 -0
- package/dist/hooks/useReducerWithMiddleware/useReducerWithMiddleware.d.ts +10 -0
- package/dist/hooks/useReducerWithMiddleware/useReducerWithMiddleware.js +21 -0
- package/dist/hooks/useReducerWithMiddleware/useReducerWithMiddleware.test.d.ts +1 -0
- package/dist/hooks/useStateDebounce/index.d.ts +3 -0
- package/dist/hooks/useStateDebounce/index.js +5 -0
- package/dist/hooks/useStateDebounce/useStateDebounce.d.ts +3 -0
- package/dist/hooks/useStateDebounce/useStateDebounce.js +18 -0
- package/dist/hooks/useStateMemo/index.d.ts +3 -0
- package/dist/hooks/useStateMemo/index.js +5 -0
- package/dist/hooks/useStateMemo/useStateMemo.d.ts +3 -0
- package/dist/hooks/useStateMemo/useStateMemo.js +12 -0
- package/dist/hooks/useStorage/index.d.ts +3 -0
- package/dist/hooks/useStorage/index.js +5 -0
- package/dist/hooks/useStorage/useStorage.d.ts +2 -0
- package/dist/hooks/useStorage/useStorage.js +84 -0
- package/dist/hooks/useStorage/useStorage.test.d.ts +1 -0
- package/dist/hooks/useStorage/useStorageHelper.d.ts +1 -0
- package/dist/hooks/useStorage/useStorageHelper.js +27 -0
- package/dist/hooks/useTheme/index.d.ts +3 -0
- package/dist/hooks/useTheme/index.js +5 -0
- package/dist/hooks/useTheme/useTheme.d.ts +28 -0
- package/dist/hooks/useTheme/useTheme.js +39 -0
- package/dist/hooks/useTheme/useTheme.test.d.ts +1 -0
- package/dist/hooks/useValueMemo/index.d.ts +3 -0
- package/dist/hooks/useValueMemo/index.js +5 -0
- package/dist/hooks/useValueMemo/useValueMemo.d.ts +3 -0
- package/dist/hooks/useValueMemo/useValueMemo.js +9 -0
- package/dist/icons/AlignContentCenterColumn/AlignContentCenterColumn.d.ts +5 -0
- package/dist/icons/AlignContentCenterColumn/AlignContentCenterColumn.js +16 -0
- package/dist/icons/AlignContentCenterColumn/index.d.ts +3 -0
- package/dist/icons/AlignContentCenterColumn/index.js +5 -0
- package/dist/icons/AlignContentCenterRow/AlignContentCenterRow.d.ts +5 -0
- package/dist/icons/AlignContentCenterRow/AlignContentCenterRow.js +16 -0
- package/dist/icons/AlignContentCenterRow/index.d.ts +3 -0
- package/dist/icons/AlignContentCenterRow/index.js +5 -0
- package/dist/icons/AlignContentEndColumn/AlignContentEndColumn.d.ts +5 -0
- package/dist/icons/AlignContentEndColumn/AlignContentEndColumn.js +16 -0
- package/dist/icons/AlignContentEndColumn/index.d.ts +3 -0
- package/dist/icons/AlignContentEndColumn/index.js +5 -0
- package/dist/icons/AlignContentEndReverseColumn/AlignContentEndReverseColumn.d.ts +5 -0
- package/dist/icons/AlignContentEndReverseColumn/AlignContentEndReverseColumn.js +16 -0
- package/dist/icons/AlignContentEndReverseColumn/index.d.ts +3 -0
- package/dist/icons/AlignContentEndReverseColumn/index.js +5 -0
- package/dist/icons/AlignContentEndReverseRow/AlignContentEndReverseRow.d.ts +5 -0
- package/dist/icons/AlignContentEndReverseRow/AlignContentEndReverseRow.js +16 -0
- package/dist/icons/AlignContentEndReverseRow/index.d.ts +3 -0
- package/dist/icons/AlignContentEndReverseRow/index.js +5 -0
- package/dist/icons/AlignContentEndRow/AlignContentEndRow.d.ts +5 -0
- package/dist/icons/AlignContentEndRow/AlignContentEndRow.js +16 -0
- package/dist/icons/AlignContentEndRow/index.d.ts +3 -0
- package/dist/icons/AlignContentEndRow/index.js +5 -0
- package/dist/icons/AlignContentSpaceAroundColumn/AlignContentSpaceAroundColumn.d.ts +5 -0
- package/dist/icons/AlignContentSpaceAroundColumn/AlignContentSpaceAroundColumn.js +16 -0
- package/dist/icons/AlignContentSpaceAroundColumn/index.d.ts +3 -0
- package/dist/icons/AlignContentSpaceAroundColumn/index.js +5 -0
- package/dist/icons/AlignContentSpaceAroundRow/AlignContentSpaceAroundRow.d.ts +5 -0
- package/dist/icons/AlignContentSpaceAroundRow/AlignContentSpaceAroundRow.js +16 -0
- package/dist/icons/AlignContentSpaceAroundRow/index.d.ts +3 -0
- package/dist/icons/AlignContentSpaceAroundRow/index.js +5 -0
- package/dist/icons/AlignContentSpaceBetweenColumn/AlignContentSpaceBetweenColumn.d.ts +5 -0
- package/dist/icons/AlignContentSpaceBetweenColumn/AlignContentSpaceBetweenColumn.js +16 -0
- package/dist/icons/AlignContentSpaceBetweenColumn/index.d.ts +3 -0
- package/dist/icons/AlignContentSpaceBetweenColumn/index.js +5 -0
- package/dist/icons/AlignContentSpaceBetweenRow/AlignContentSpaceBetweenRow.d.ts +5 -0
- package/dist/icons/AlignContentSpaceBetweenRow/AlignContentSpaceBetweenRow.js +16 -0
- package/dist/icons/AlignContentSpaceBetweenRow/index.d.ts +3 -0
- package/dist/icons/AlignContentSpaceBetweenRow/index.js +5 -0
- package/dist/icons/AlignContentStartColumn/AlignContentStartColumn.d.ts +5 -0
- package/dist/icons/AlignContentStartColumn/AlignContentStartColumn.js +16 -0
- package/dist/icons/AlignContentStartColumn/index.d.ts +3 -0
- package/dist/icons/AlignContentStartColumn/index.js +5 -0
- package/dist/icons/AlignContentStartReverseColumn/AlignContentStartReverseColumn.d.ts +5 -0
- package/dist/icons/AlignContentStartReverseColumn/AlignContentStartReverseColumn.js +16 -0
- package/dist/icons/AlignContentStartReverseColumn/index.d.ts +3 -0
- package/dist/icons/AlignContentStartReverseColumn/index.js +5 -0
- package/dist/icons/AlignContentStartReverseRow/AlignContentStartReverseRow.d.ts +5 -0
- package/dist/icons/AlignContentStartReverseRow/AlignContentStartReverseRow.js +16 -0
- package/dist/icons/AlignContentStartReverseRow/index.d.ts +3 -0
- package/dist/icons/AlignContentStartReverseRow/index.js +5 -0
- package/dist/icons/AlignContentStartRow/AlignContentStartRow.d.ts +5 -0
- package/dist/icons/AlignContentStartRow/AlignContentStartRow.js +16 -0
- package/dist/icons/AlignContentStartRow/index.d.ts +3 -0
- package/dist/icons/AlignContentStartRow/index.js +5 -0
- package/dist/icons/AlignContentStretchColumn/AlignContentStretchColumn.d.ts +5 -0
- package/dist/icons/AlignContentStretchColumn/AlignContentStretchColumn.js +16 -0
- package/dist/icons/AlignContentStretchColumn/index.d.ts +3 -0
- package/dist/icons/AlignContentStretchColumn/index.js +5 -0
- package/dist/icons/AlignContentStretchRow/AlignContentStretchRow.d.ts +5 -0
- package/dist/icons/AlignContentStretchRow/AlignContentStretchRow.js +16 -0
- package/dist/icons/AlignContentStretchRow/index.d.ts +3 -0
- package/dist/icons/AlignContentStretchRow/index.js +5 -0
- package/dist/icons/AlignItemsBaselineColumn/AlignItemsBaselineColumn.d.ts +5 -0
- package/dist/icons/AlignItemsBaselineColumn/AlignItemsBaselineColumn.js +17 -0
- package/dist/icons/AlignItemsBaselineColumn/index.d.ts +3 -0
- package/dist/icons/AlignItemsBaselineColumn/index.js +5 -0
- package/dist/icons/AlignItemsBaselineColumnReverse/AlignItemsBaselineColumnReverse.d.ts +5 -0
- package/dist/icons/AlignItemsBaselineColumnReverse/AlignItemsBaselineColumnReverse.js +17 -0
- package/dist/icons/AlignItemsBaselineColumnReverse/index.d.ts +3 -0
- package/dist/icons/AlignItemsBaselineColumnReverse/index.js +5 -0
- package/dist/icons/AlignItemsBaselineRow/AlignItemsBaselineRow.d.ts +5 -0
- package/dist/icons/AlignItemsBaselineRow/AlignItemsBaselineRow.js +17 -0
- package/dist/icons/AlignItemsBaselineRow/index.d.ts +3 -0
- package/dist/icons/AlignItemsBaselineRow/index.js +5 -0
- package/dist/icons/AlignItemsBaselineRowReverse/AlignItemsBaselineRowReverse.d.ts +5 -0
- package/dist/icons/AlignItemsBaselineRowReverse/AlignItemsBaselineRowReverse.js +17 -0
- package/dist/icons/AlignItemsBaselineRowReverse/index.d.ts +3 -0
- package/dist/icons/AlignItemsBaselineRowReverse/index.js +5 -0
- package/dist/icons/AlignItemsCenterColumn/AlignItemsCenterColumn.d.ts +5 -0
- package/dist/icons/AlignItemsCenterColumn/AlignItemsCenterColumn.js +16 -0
- package/dist/icons/AlignItemsCenterColumn/index.d.ts +3 -0
- package/dist/icons/AlignItemsCenterColumn/index.js +5 -0
- package/dist/icons/AlignItemsCenterColumnReverse/AlignItemsCenterColumnReverse.d.ts +5 -0
- package/dist/icons/AlignItemsCenterColumnReverse/AlignItemsCenterColumnReverse.js +16 -0
- package/dist/icons/AlignItemsCenterColumnReverse/index.d.ts +3 -0
- package/dist/icons/AlignItemsCenterColumnReverse/index.js +5 -0
- package/dist/icons/AlignItemsCenterRow/AlignItemsCenterRow.d.ts +5 -0
- package/dist/icons/AlignItemsCenterRow/AlignItemsCenterRow.js +16 -0
- package/dist/icons/AlignItemsCenterRow/index.d.ts +3 -0
- package/dist/icons/AlignItemsCenterRow/index.js +5 -0
- package/dist/icons/AlignItemsCenterRowReverse/AlignItemsCenterRowReverse.d.ts +5 -0
- package/dist/icons/AlignItemsCenterRowReverse/AlignItemsCenterRowReverse.js +16 -0
- package/dist/icons/AlignItemsCenterRowReverse/index.d.ts +3 -0
- package/dist/icons/AlignItemsCenterRowReverse/index.js +5 -0
- package/dist/icons/AlignItemsEndColumn/AlignItemsEndColumn.d.ts +5 -0
- package/dist/icons/AlignItemsEndColumn/AlignItemsEndColumn.js +16 -0
- package/dist/icons/AlignItemsEndColumn/index.d.ts +3 -0
- package/dist/icons/AlignItemsEndColumn/index.js +5 -0
- package/dist/icons/AlignItemsEndColumnReverse/AlignItemsEndColumnReverse.d.ts +5 -0
- package/dist/icons/AlignItemsEndColumnReverse/AlignItemsEndColumnReverse.js +16 -0
- package/dist/icons/AlignItemsEndColumnReverse/index.d.ts +3 -0
- package/dist/icons/AlignItemsEndColumnReverse/index.js +5 -0
- package/dist/icons/AlignItemsEndRow/AlignItemsEndRow.d.ts +5 -0
- package/dist/icons/AlignItemsEndRow/AlignItemsEndRow.js +16 -0
- package/dist/icons/AlignItemsEndRow/index.d.ts +3 -0
- package/dist/icons/AlignItemsEndRow/index.js +5 -0
- package/dist/icons/AlignItemsEndRowReverse/AlignItemsEndRowReverse.d.ts +5 -0
- package/dist/icons/AlignItemsEndRowReverse/AlignItemsEndRowReverse.js +16 -0
- package/dist/icons/AlignItemsEndRowReverse/index.d.ts +3 -0
- package/dist/icons/AlignItemsEndRowReverse/index.js +5 -0
- package/dist/icons/AlignItemsStartColumn/AlignItemsStartColumn.d.ts +5 -0
- package/dist/icons/AlignItemsStartColumn/AlignItemsStartColumn.js +16 -0
- package/dist/icons/AlignItemsStartColumn/index.d.ts +3 -0
- package/dist/icons/AlignItemsStartColumn/index.js +5 -0
- package/dist/icons/AlignItemsStartColumnReverse/AlignItemsStartColumnReverse.d.ts +5 -0
- package/dist/icons/AlignItemsStartColumnReverse/AlignItemsStartColumnReverse.js +16 -0
- package/dist/icons/AlignItemsStartColumnReverse/index.d.ts +3 -0
- package/dist/icons/AlignItemsStartColumnReverse/index.js +5 -0
- package/dist/icons/AlignItemsStartRow/AlignItemsStartRow.d.ts +5 -0
- package/dist/icons/AlignItemsStartRow/AlignItemsStartRow.js +16 -0
- package/dist/icons/AlignItemsStartRow/index.d.ts +3 -0
- package/dist/icons/AlignItemsStartRow/index.js +5 -0
- package/dist/icons/AlignItemsStartRowReverse/AlignItemsStartRowReverse.d.ts +5 -0
- package/dist/icons/AlignItemsStartRowReverse/AlignItemsStartRowReverse.js +16 -0
- package/dist/icons/AlignItemsStartRowReverse/index.d.ts +3 -0
- package/dist/icons/AlignItemsStartRowReverse/index.js +5 -0
- package/dist/icons/AlignItemsStretchColumn/AlignItemsStretchColumn.d.ts +5 -0
- package/dist/icons/AlignItemsStretchColumn/AlignItemsStretchColumn.js +16 -0
- package/dist/icons/AlignItemsStretchColumn/index.d.ts +3 -0
- package/dist/icons/AlignItemsStretchColumn/index.js +5 -0
- package/dist/icons/AlignItemsStretchRow/AlignItemsStretchRow.d.ts +5 -0
- package/dist/icons/AlignItemsStretchRow/AlignItemsStretchRow.js +16 -0
- package/dist/icons/AlignItemsStretchRow/index.d.ts +3 -0
- package/dist/icons/AlignItemsStretchRow/index.js +5 -0
- package/dist/icons/AlignSelfBaselineRow/AlignSelfBaselineRow.d.ts +5 -0
- package/dist/icons/AlignSelfBaselineRow/AlignSelfBaselineRow.js +17 -0
- package/dist/icons/AlignSelfBaselineRow/index.d.ts +3 -0
- package/dist/icons/AlignSelfBaselineRow/index.js +5 -0
- package/dist/icons/AlignSelfCenterRow/AlignSelfCenterRow.d.ts +5 -0
- package/dist/icons/AlignSelfCenterRow/AlignSelfCenterRow.js +15 -0
- package/dist/icons/AlignSelfCenterRow/index.d.ts +3 -0
- package/dist/icons/AlignSelfCenterRow/index.js +5 -0
- package/dist/icons/AlignSelfEndRow/AlignSelfEndRow.d.ts +5 -0
- package/dist/icons/AlignSelfEndRow/AlignSelfEndRow.js +12 -0
- package/dist/icons/AlignSelfEndRow/index.d.ts +3 -0
- package/dist/icons/AlignSelfEndRow/index.js +5 -0
- package/dist/icons/AlignSelfStartRow/AlignSelfStartRow.d.ts +5 -0
- package/dist/icons/AlignSelfStartRow/AlignSelfStartRow.js +12 -0
- package/dist/icons/AlignSelfStartRow/index.d.ts +3 -0
- package/dist/icons/AlignSelfStartRow/index.js +5 -0
- package/dist/icons/AlignSelfStretchRow/AlignSelfStretchRow.d.ts +5 -0
- package/dist/icons/AlignSelfStretchRow/AlignSelfStretchRow.js +12 -0
- package/dist/icons/AlignSelfStretchRow/index.d.ts +3 -0
- package/dist/icons/AlignSelfStretchRow/index.js +5 -0
- package/dist/icons/ArrowReverse/ArrowReverse.d.ts +5 -0
- package/dist/icons/ArrowReverse/ArrowReverse.js +24 -0
- package/dist/icons/ArrowReverse/index.d.ts +3 -0
- package/dist/icons/ArrowReverse/index.js +5 -0
- package/dist/icons/BackgroundTileX/BackgroundTileX.d.ts +5 -0
- package/dist/icons/BackgroundTileX/BackgroundTileX.js +12 -0
- package/dist/icons/BackgroundTileX/index.d.ts +3 -0
- package/dist/icons/BackgroundTileX/index.js +5 -0
- package/dist/icons/BackgroundTileXY/BackgroundTileXY.d.ts +5 -0
- package/dist/icons/BackgroundTileXY/BackgroundTileXY.js +12 -0
- package/dist/icons/BackgroundTileXY/index.d.ts +3 -0
- package/dist/icons/BackgroundTileXY/index.js +5 -0
- package/dist/icons/BackgroundTileY/BackgroundTileY.d.ts +5 -0
- package/dist/icons/BackgroundTileY/BackgroundTileY.js +12 -0
- package/dist/icons/BackgroundTileY/index.d.ts +3 -0
- package/dist/icons/BackgroundTileY/index.js +5 -0
- package/dist/icons/BorderBlack/BorderBlack.d.ts +5 -0
- package/dist/icons/BorderBlack/BorderBlack.js +18 -0
- package/dist/icons/BorderBlack/index.d.ts +3 -0
- package/dist/icons/BorderBlack/index.js +5 -0
- package/dist/icons/BorderPlacementBottom/BorderPlacementBottom.d.ts +5 -0
- package/dist/icons/BorderPlacementBottom/BorderPlacementBottom.js +37 -0
- package/dist/icons/BorderPlacementBottom/index.d.ts +3 -0
- package/dist/icons/BorderPlacementBottom/index.js +5 -0
- package/dist/icons/BorderPlacementCenter/BorderPlacementCenter.d.ts +5 -0
- package/dist/icons/BorderPlacementCenter/BorderPlacementCenter.js +26 -0
- package/dist/icons/BorderPlacementCenter/index.d.ts +3 -0
- package/dist/icons/BorderPlacementCenter/index.js +5 -0
- package/dist/icons/BorderPlacementLeft/BorderPlacementLeft.d.ts +5 -0
- package/dist/icons/BorderPlacementLeft/BorderPlacementLeft.js +37 -0
- package/dist/icons/BorderPlacementLeft/index.d.ts +3 -0
- package/dist/icons/BorderPlacementLeft/index.js +5 -0
- package/dist/icons/BorderPlacementRight/BorderPlacementRight.d.ts +5 -0
- package/dist/icons/BorderPlacementRight/BorderPlacementRight.js +37 -0
- package/dist/icons/BorderPlacementRight/index.d.ts +3 -0
- package/dist/icons/BorderPlacementRight/index.js +5 -0
- package/dist/icons/BorderPlacementTop/BorderPlacementTop.d.ts +5 -0
- package/dist/icons/BorderPlacementTop/BorderPlacementTop.js +37 -0
- package/dist/icons/BorderPlacementTop/index.d.ts +3 -0
- package/dist/icons/BorderPlacementTop/index.js +5 -0
- package/dist/icons/BorderStyleDashed/BorderStyleDashed.d.ts +5 -0
- package/dist/icons/BorderStyleDashed/BorderStyleDashed.js +12 -0
- package/dist/icons/BorderStyleDashed/index.d.ts +3 -0
- package/dist/icons/BorderStyleDashed/index.js +5 -0
- package/dist/icons/BorderStyleDotted/BorderStyleDotted.d.ts +5 -0
- package/dist/icons/BorderStyleDotted/BorderStyleDotted.js +12 -0
- package/dist/icons/BorderStyleDotted/index.d.ts +3 -0
- package/dist/icons/BorderStyleDotted/index.js +5 -0
- package/dist/icons/BorderStyleSolid/BorderStyleSolid.d.ts +5 -0
- package/dist/icons/BorderStyleSolid/BorderStyleSolid.js +12 -0
- package/dist/icons/BorderStyleSolid/index.d.ts +3 -0
- package/dist/icons/BorderStyleSolid/index.js +5 -0
- package/dist/icons/BorderWhite/BorderWhite.d.ts +5 -0
- package/dist/icons/BorderWhite/BorderWhite.js +18 -0
- package/dist/icons/BorderWhite/index.d.ts +3 -0
- package/dist/icons/BorderWhite/index.js +5 -0
- package/dist/icons/ClearBoth/ClearBoth.d.ts +5 -0
- package/dist/icons/ClearBoth/ClearBoth.js +26 -0
- package/dist/icons/ClearBoth/index.d.ts +3 -0
- package/dist/icons/ClearBoth/index.js +5 -0
- package/dist/icons/ClearLeft/ClearLeft.d.ts +5 -0
- package/dist/icons/ClearLeft/ClearLeft.js +25 -0
- package/dist/icons/ClearLeft/index.d.ts +3 -0
- package/dist/icons/ClearLeft/index.js +5 -0
- package/dist/icons/ClearRight/ClearRight.d.ts +5 -0
- package/dist/icons/ClearRight/ClearRight.js +25 -0
- package/dist/icons/ClearRight/index.d.ts +3 -0
- package/dist/icons/ClearRight/index.js +5 -0
- package/dist/icons/DesktopWithMobile/DesktopWithMobile.d.ts +5 -0
- package/dist/icons/DesktopWithMobile/DesktopWithMobile.js +16 -0
- package/dist/icons/DesktopWithMobile/index.d.ts +3 -0
- package/dist/icons/DesktopWithMobile/index.js +5 -0
- package/dist/icons/DisplayBlock/DisplayBlock.d.ts +5 -0
- package/dist/icons/DisplayBlock/DisplayBlock.js +23 -0
- package/dist/icons/DisplayBlock/index.d.ts +3 -0
- package/dist/icons/DisplayBlock/index.js +5 -0
- package/dist/icons/DisplayFlex/DisplayFlex.d.ts +5 -0
- package/dist/icons/DisplayFlex/DisplayFlex.js +22 -0
- package/dist/icons/DisplayFlex/index.d.ts +3 -0
- package/dist/icons/DisplayFlex/index.js +5 -0
- package/dist/icons/DisplayGrid/DisplayGrid.d.ts +5 -0
- package/dist/icons/DisplayGrid/DisplayGrid.js +24 -0
- package/dist/icons/DisplayGrid/index.d.ts +3 -0
- package/dist/icons/DisplayGrid/index.js +5 -0
- package/dist/icons/DisplayInline/DisplayInline.d.ts +5 -0
- package/dist/icons/DisplayInline/DisplayInline.js +23 -0
- package/dist/icons/DisplayInline/index.d.ts +3 -0
- package/dist/icons/DisplayInline/index.js +5 -0
- package/dist/icons/DisplayInlineBlock/DisplayInlineBlock.d.ts +5 -0
- package/dist/icons/DisplayInlineBlock/DisplayInlineBlock.js +23 -0
- package/dist/icons/DisplayInlineBlock/index.d.ts +3 -0
- package/dist/icons/DisplayInlineBlock/index.js +5 -0
- package/dist/icons/EffectsTransitionEase/EffectsTransitionEase.d.ts +5 -0
- package/dist/icons/EffectsTransitionEase/EffectsTransitionEase.js +32 -0
- package/dist/icons/EffectsTransitionEase/index.d.ts +3 -0
- package/dist/icons/EffectsTransitionEase/index.js +5 -0
- package/dist/icons/FlexGrowRow/FlexGrowRow.d.ts +5 -0
- package/dist/icons/FlexGrowRow/FlexGrowRow.js +12 -0
- package/dist/icons/FlexGrowRow/index.d.ts +3 -0
- package/dist/icons/FlexGrowRow/index.js +5 -0
- package/dist/icons/FlexNoneRow/FlexNoneRow.d.ts +5 -0
- package/dist/icons/FlexNoneRow/FlexNoneRow.js +17 -0
- package/dist/icons/FlexNoneRow/index.d.ts +3 -0
- package/dist/icons/FlexNoneRow/index.js +5 -0
- package/dist/icons/FlexShrinkRow/FlexShrinkRow.d.ts +5 -0
- package/dist/icons/FlexShrinkRow/FlexShrinkRow.js +12 -0
- package/dist/icons/FlexShrinkRow/index.d.ts +3 -0
- package/dist/icons/FlexShrinkRow/index.js +5 -0
- package/dist/icons/FloatLeft/FloatLeft.d.ts +5 -0
- package/dist/icons/FloatLeft/FloatLeft.js +27 -0
- package/dist/icons/FloatLeft/index.d.ts +3 -0
- package/dist/icons/FloatLeft/index.js +5 -0
- package/dist/icons/FloatRight/FloatRight.d.ts +5 -0
- package/dist/icons/FloatRight/FloatRight.js +27 -0
- package/dist/icons/FloatRight/index.d.ts +3 -0
- package/dist/icons/FloatRight/index.js +5 -0
- package/dist/icons/Form/Form.d.ts +5 -0
- package/dist/icons/Form/Form.js +31 -0
- package/dist/icons/Form/index.d.ts +3 -0
- package/dist/icons/Form/index.js +5 -0
- package/dist/icons/JustifyContentCenterColumn/JustifyContentCenterColumn.d.ts +5 -0
- package/dist/icons/JustifyContentCenterColumn/JustifyContentCenterColumn.js +16 -0
- package/dist/icons/JustifyContentCenterColumn/index.d.ts +3 -0
- package/dist/icons/JustifyContentCenterColumn/index.js +5 -0
- package/dist/icons/JustifyContentCenterRow/JustifyContentCenterRow.d.ts +5 -0
- package/dist/icons/JustifyContentCenterRow/JustifyContentCenterRow.js +16 -0
- package/dist/icons/JustifyContentCenterRow/index.d.ts +3 -0
- package/dist/icons/JustifyContentCenterRow/index.js +5 -0
- package/dist/icons/JustifyContentEndColumn/JustifyContentEndColumn.d.ts +5 -0
- package/dist/icons/JustifyContentEndColumn/JustifyContentEndColumn.js +16 -0
- package/dist/icons/JustifyContentEndColumn/index.d.ts +3 -0
- package/dist/icons/JustifyContentEndColumn/index.js +5 -0
- package/dist/icons/JustifyContentEndColumnReverse/JustifyContentEndColumnReverse.d.ts +5 -0
- package/dist/icons/JustifyContentEndColumnReverse/JustifyContentEndColumnReverse.js +16 -0
- package/dist/icons/JustifyContentEndColumnReverse/index.d.ts +3 -0
- package/dist/icons/JustifyContentEndColumnReverse/index.js +5 -0
- package/dist/icons/JustifyContentEndRow/JustifyContentEndRow.d.ts +5 -0
- package/dist/icons/JustifyContentEndRow/JustifyContentEndRow.js +16 -0
- package/dist/icons/JustifyContentEndRow/index.d.ts +3 -0
- package/dist/icons/JustifyContentEndRow/index.js +5 -0
- package/dist/icons/JustifyContentEndRowReverse/JustifyContentEndRowReverse.d.ts +5 -0
- package/dist/icons/JustifyContentEndRowReverse/JustifyContentEndRowReverse.js +16 -0
- package/dist/icons/JustifyContentEndRowReverse/index.d.ts +3 -0
- package/dist/icons/JustifyContentEndRowReverse/index.js +5 -0
- package/dist/icons/JustifyContentSpaceAroundColumn/JustifyContentSpaceAroundColumn.d.ts +5 -0
- package/dist/icons/JustifyContentSpaceAroundColumn/JustifyContentSpaceAroundColumn.js +16 -0
- package/dist/icons/JustifyContentSpaceAroundColumn/index.d.ts +3 -0
- package/dist/icons/JustifyContentSpaceAroundColumn/index.js +5 -0
- package/dist/icons/JustifyContentSpaceAroundRow/JustifyContentSpaceAroundRow.d.ts +5 -0
- package/dist/icons/JustifyContentSpaceAroundRow/JustifyContentSpaceAroundRow.js +16 -0
- package/dist/icons/JustifyContentSpaceAroundRow/index.d.ts +3 -0
- package/dist/icons/JustifyContentSpaceAroundRow/index.js +5 -0
- package/dist/icons/JustifyContentSpaceBetweenColumn/JustifyContentSpaceBetweenColumn.d.ts +5 -0
- package/dist/icons/JustifyContentSpaceBetweenColumn/JustifyContentSpaceBetweenColumn.js +16 -0
- package/dist/icons/JustifyContentSpaceBetweenColumn/index.d.ts +3 -0
- package/dist/icons/JustifyContentSpaceBetweenColumn/index.js +5 -0
- package/dist/icons/JustifyContentSpaceBetweenRow/JustifyContentSpaceBetweenRow.d.ts +5 -0
- package/dist/icons/JustifyContentSpaceBetweenRow/JustifyContentSpaceBetweenRow.js +16 -0
- package/dist/icons/JustifyContentSpaceBetweenRow/index.d.ts +3 -0
- package/dist/icons/JustifyContentSpaceBetweenRow/index.js +5 -0
- package/dist/icons/JustifyContentStartColumn/JustifyContentStartColumn.d.ts +5 -0
- package/dist/icons/JustifyContentStartColumn/JustifyContentStartColumn.js +16 -0
- package/dist/icons/JustifyContentStartColumn/index.d.ts +3 -0
- package/dist/icons/JustifyContentStartColumn/index.js +5 -0
- package/dist/icons/JustifyContentStartColumnReverse/JustifyContentStartColumnReverse.d.ts +5 -0
- package/dist/icons/JustifyContentStartColumnReverse/JustifyContentStartColumnReverse.js +16 -0
- package/dist/icons/JustifyContentStartColumnReverse/index.d.ts +3 -0
- package/dist/icons/JustifyContentStartColumnReverse/index.js +5 -0
- package/dist/icons/JustifyContentStartRow/JustifyContentStartRow.d.ts +5 -0
- package/dist/icons/JustifyContentStartRow/JustifyContentStartRow.js +16 -0
- package/dist/icons/JustifyContentStartRow/index.d.ts +3 -0
- package/dist/icons/JustifyContentStartRow/index.js +5 -0
- package/dist/icons/JustifyContentStartRowReverse/JustifyContentStartRowReverse.d.ts +5 -0
- package/dist/icons/JustifyContentStartRowReverse/JustifyContentStartRowReverse.js +16 -0
- package/dist/icons/JustifyContentStartRowReverse/index.d.ts +3 -0
- package/dist/icons/JustifyContentStartRowReverse/index.js +5 -0
- package/dist/icons/ListCircles/ListCircles.d.ts +5 -0
- package/dist/icons/ListCircles/ListCircles.js +25 -0
- package/dist/icons/ListCircles/index.d.ts +3 -0
- package/dist/icons/ListCircles/index.js +5 -0
- package/dist/icons/ListDots/ListDots.d.ts +5 -0
- package/dist/icons/ListDots/ListDots.js +26 -0
- package/dist/icons/ListDots/index.d.ts +3 -0
- package/dist/icons/ListDots/index.js +5 -0
- package/dist/icons/ListLetters/ListLetters.d.ts +5 -0
- package/dist/icons/ListLetters/ListLetters.js +26 -0
- package/dist/icons/ListLetters/index.d.ts +3 -0
- package/dist/icons/ListLetters/index.js +5 -0
- package/dist/icons/ListNumbers/ListNumbers.d.ts +5 -0
- package/dist/icons/ListNumbers/ListNumbers.js +25 -0
- package/dist/icons/ListNumbers/index.d.ts +3 -0
- package/dist/icons/ListNumbers/index.js +5 -0
- package/dist/icons/ListRoman/ListRoman.d.ts +5 -0
- package/dist/icons/ListRoman/ListRoman.js +29 -0
- package/dist/icons/ListRoman/index.d.ts +3 -0
- package/dist/icons/ListRoman/index.js +5 -0
- package/dist/icons/ListSquares/ListSquares.d.ts +5 -0
- package/dist/icons/ListSquares/ListSquares.js +25 -0
- package/dist/icons/ListSquares/index.d.ts +3 -0
- package/dist/icons/ListSquares/index.js +5 -0
- package/dist/icons/MarginBottom/MarginBottom.d.ts +5 -0
- package/dist/icons/MarginBottom/MarginBottom.js +18 -0
- package/dist/icons/MarginBottom/index.d.ts +3 -0
- package/dist/icons/MarginBottom/index.js +5 -0
- package/dist/icons/MarginLeft/MarginLeft.d.ts +5 -0
- package/dist/icons/MarginLeft/MarginLeft.js +18 -0
- package/dist/icons/MarginLeft/index.d.ts +3 -0
- package/dist/icons/MarginLeft/index.js +5 -0
- package/dist/icons/MarginRight/MarginRight.d.ts +5 -0
- package/dist/icons/MarginRight/MarginRight.js +18 -0
- package/dist/icons/MarginRight/index.d.ts +3 -0
- package/dist/icons/MarginRight/index.js +5 -0
- package/dist/icons/MarginTop/MarginTop.d.ts +5 -0
- package/dist/icons/MarginTop/MarginTop.js +18 -0
- package/dist/icons/MarginTop/index.d.ts +3 -0
- package/dist/icons/MarginTop/index.js +5 -0
- package/dist/icons/PaddingBottom/PaddingBottom.d.ts +5 -0
- package/dist/icons/PaddingBottom/PaddingBottom.js +20 -0
- package/dist/icons/PaddingBottom/index.d.ts +3 -0
- package/dist/icons/PaddingBottom/index.js +5 -0
- package/dist/icons/PaddingLeft/PaddingLeft.d.ts +5 -0
- package/dist/icons/PaddingLeft/PaddingLeft.js +20 -0
- package/dist/icons/PaddingLeft/index.d.ts +3 -0
- package/dist/icons/PaddingLeft/index.js +5 -0
- package/dist/icons/PaddingRight/PaddingRight.d.ts +5 -0
- package/dist/icons/PaddingRight/PaddingRight.js +20 -0
- package/dist/icons/PaddingRight/index.d.ts +3 -0
- package/dist/icons/PaddingRight/index.js +5 -0
- package/dist/icons/PaddingTop/PaddingTop.d.ts +5 -0
- package/dist/icons/PaddingTop/PaddingTop.js +20 -0
- package/dist/icons/PaddingTop/index.d.ts +3 -0
- package/dist/icons/PaddingTop/index.js +5 -0
- package/dist/icons/PageOverview/PageOverview.d.ts +5 -0
- package/dist/icons/PageOverview/PageOverview.js +23 -0
- package/dist/icons/PageOverview/index.d.ts +3 -0
- package/dist/icons/PageOverview/index.js +5 -0
- package/dist/icons/PageOverviewZoom/PageOverviewZoom.d.ts +5 -0
- package/dist/icons/PageOverviewZoom/PageOverviewZoom.js +23 -0
- package/dist/icons/PageOverviewZoom/index.d.ts +3 -0
- package/dist/icons/PageOverviewZoom/index.js +5 -0
- package/dist/icons/PlitziLogo/PlitziLogo.d.ts +5 -0
- package/dist/icons/PlitziLogo/PlitziLogo.js +77 -0
- package/dist/icons/PlitziLogo/index.d.ts +3 -0
- package/dist/icons/PlitziLogo/index.js +5 -0
- package/dist/icons/PositionAbsolute/PositionAbsolute.d.ts +5 -0
- package/dist/icons/PositionAbsolute/PositionAbsolute.js +20 -0
- package/dist/icons/PositionAbsolute/index.d.ts +3 -0
- package/dist/icons/PositionAbsolute/index.js +5 -0
- package/dist/icons/PositionAll/PositionAll.d.ts +5 -0
- package/dist/icons/PositionAll/PositionAll.js +15 -0
- package/dist/icons/PositionAll/index.d.ts +3 -0
- package/dist/icons/PositionAll/index.js +5 -0
- package/dist/icons/PositionBottom/PositionBottom.d.ts +5 -0
- package/dist/icons/PositionBottom/PositionBottom.js +16 -0
- package/dist/icons/PositionBottom/index.d.ts +3 -0
- package/dist/icons/PositionBottom/index.js +5 -0
- package/dist/icons/PositionBottomLeft/PositionBottomLeft.d.ts +5 -0
- package/dist/icons/PositionBottomLeft/PositionBottomLeft.js +16 -0
- package/dist/icons/PositionBottomLeft/index.d.ts +3 -0
- package/dist/icons/PositionBottomLeft/index.js +5 -0
- package/dist/icons/PositionBottomRight/PositionBottomRight.d.ts +5 -0
- package/dist/icons/PositionBottomRight/PositionBottomRight.js +16 -0
- package/dist/icons/PositionBottomRight/index.d.ts +3 -0
- package/dist/icons/PositionBottomRight/index.js +5 -0
- package/dist/icons/PositionFixed/PositionFixed.d.ts +5 -0
- package/dist/icons/PositionFixed/PositionFixed.js +20 -0
- package/dist/icons/PositionFixed/index.d.ts +3 -0
- package/dist/icons/PositionFixed/index.js +5 -0
- package/dist/icons/PositionLeft/PositionLeft.d.ts +5 -0
- package/dist/icons/PositionLeft/PositionLeft.js +16 -0
- package/dist/icons/PositionLeft/index.d.ts +3 -0
- package/dist/icons/PositionLeft/index.js +5 -0
- package/dist/icons/PositionRelative/PositionRelative.d.ts +5 -0
- package/dist/icons/PositionRelative/PositionRelative.js +14 -0
- package/dist/icons/PositionRelative/index.d.ts +3 -0
- package/dist/icons/PositionRelative/index.js +5 -0
- package/dist/icons/PositionRight/PositionRight.d.ts +5 -0
- package/dist/icons/PositionRight/PositionRight.js +16 -0
- package/dist/icons/PositionRight/index.d.ts +3 -0
- package/dist/icons/PositionRight/index.js +5 -0
- package/dist/icons/PositionTop/PositionTop.d.ts +5 -0
- package/dist/icons/PositionTop/PositionTop.js +16 -0
- package/dist/icons/PositionTop/index.d.ts +3 -0
- package/dist/icons/PositionTop/index.js +5 -0
- package/dist/icons/PositionTopLeft/PositionTopLeft.d.ts +5 -0
- package/dist/icons/PositionTopLeft/PositionTopLeft.js +16 -0
- package/dist/icons/PositionTopLeft/index.d.ts +3 -0
- package/dist/icons/PositionTopLeft/index.js +5 -0
- package/dist/icons/PositionTopRight/PositionTopRight.d.ts +5 -0
- package/dist/icons/PositionTopRight/PositionTopRight.js +16 -0
- package/dist/icons/PositionTopRight/index.d.ts +3 -0
- package/dist/icons/PositionTopRight/index.js +5 -0
- package/dist/icons/SizeOverflowScroll/SizeOverflowScroll.d.ts +5 -0
- package/dist/icons/SizeOverflowScroll/SizeOverflowScroll.js +29 -0
- package/dist/icons/SizeOverflowScroll/index.d.ts +3 -0
- package/dist/icons/SizeOverflowScroll/index.js +5 -0
- package/dist/icons/StateManager/StateManager.d.ts +5 -0
- package/dist/icons/StateManager/StateManager.js +13 -0
- package/dist/icons/StateManager/index.d.ts +3 -0
- package/dist/icons/StateManager/index.js +5 -0
- package/dist/icons/TextDecorationOverline/TextDecorationOverline.d.ts +5 -0
- package/dist/icons/TextDecorationOverline/TextDecorationOverline.js +13 -0
- package/dist/icons/TextDecorationOverline/index.d.ts +3 -0
- package/dist/icons/TextDecorationOverline/index.js +5 -0
- package/dist/icons/TextDirectionLtr/TextDirectionLtr.d.ts +5 -0
- package/dist/icons/TextDirectionLtr/TextDirectionLtr.js +20 -0
- package/dist/icons/TextDirectionLtr/index.d.ts +3 -0
- package/dist/icons/TextDirectionLtr/index.js +5 -0
- package/dist/icons/TextDirectionRtl/TextDirectionRtl.d.ts +5 -0
- package/dist/icons/TextDirectionRtl/TextDirectionRtl.js +20 -0
- package/dist/icons/TextDirectionRtl/index.d.ts +3 -0
- package/dist/icons/TextDirectionRtl/index.js +5 -0
- package/dist/icons/Variable/Variable.d.ts +5 -0
- package/dist/icons/Variable/Variable.js +23 -0
- package/dist/icons/Variable/index.d.ts +3 -0
- package/dist/icons/Variable/index.js +5 -0
- package/dist/icons/XMark/XMark.d.ts +5 -0
- package/dist/icons/XMark/XMark.js +22 -0
- package/dist/icons/XMark/index.d.ts +3 -0
- package/dist/icons/XMark/index.js +5 -0
- package/dist/icons/index.d.ts +239 -0
- package/dist/icons/index.js +244 -0
- package/dist/index.d.ts +11 -0
- package/dist/index.js +158 -0
- package/dist/plitzi-ui.css +3 -0
- package/dist/tailwind/colors.d.ts +275 -0
- package/dist/tailwind/colors.js +142 -0
- package/dist/tailwind/index.d.ts +3 -0
- package/dist/tailwind/index.js +10 -0
- package/dist/utils/deepEqual/deepEqual.d.ts +6 -0
- package/dist/utils/deepEqual/deepEqual.js +45 -0
- package/dist/utils/deepEqual/deepEqual.test.d.ts +1 -0
- package/dist/utils/deepEqual/index.d.ts +3 -0
- package/dist/utils/deepEqual/index.js +5 -0
- package/dist/utils/index.d.ts +3 -0
- package/dist/utils/index.js +6 -0
- package/package.json +208 -0
- package/tailwind.config.js +28 -0
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { cva } from 'class-variance-authority';
|
|
2
|
+
import { ReactNode } from 'react';
|
|
3
|
+
export type ColorMode = 'light' | 'dark';
|
|
4
|
+
export type ColorModeDefaultValue = ColorMode | 'system';
|
|
5
|
+
export type ThemeContextValue = {
|
|
6
|
+
theme: {
|
|
7
|
+
components: {
|
|
8
|
+
[componentName: string]: Record<string, ReturnType<typeof cva>>;
|
|
9
|
+
};
|
|
10
|
+
};
|
|
11
|
+
colorMode: ColorMode;
|
|
12
|
+
toggleColorMode: () => void;
|
|
13
|
+
setColorMode: (mode: ColorMode) => void;
|
|
14
|
+
};
|
|
15
|
+
declare const ThemeContext: import('react').Context<ThemeContextValue>;
|
|
16
|
+
export type ThemeProviderProps = {
|
|
17
|
+
children: ReactNode;
|
|
18
|
+
components?: {
|
|
19
|
+
[componentName: string]: Record<string, ReturnType<typeof cva>>;
|
|
20
|
+
};
|
|
21
|
+
defaultColorMode?: ColorModeDefaultValue;
|
|
22
|
+
colorModeStorageKey?: string;
|
|
23
|
+
applyColorModeClass?: boolean;
|
|
24
|
+
colorModeRoot?: HTMLElement | null;
|
|
25
|
+
};
|
|
26
|
+
declare const ThemeProvider: ({ children, components, defaultColorMode, colorModeStorageKey, applyColorModeClass, colorModeRoot }: ThemeProviderProps) => import("react/jsx-runtime").JSX.Element;
|
|
27
|
+
export { ThemeContext };
|
|
28
|
+
export default ThemeProvider;
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
import e from "./helpers/resolveInitialColorMode.js";
|
|
2
|
+
import { createContext as t, useCallback as n, useEffect as r, useMemo as i, useState as a } from "react";
|
|
3
|
+
import { jsx as o } from "react/jsx-runtime";
|
|
4
|
+
var s = t({
|
|
5
|
+
theme: { components: {} },
|
|
6
|
+
colorMode: "light",
|
|
7
|
+
toggleColorMode: () => {},
|
|
8
|
+
setColorMode: () => {}
|
|
9
|
+
});
|
|
10
|
+
s.displayName = "ThemeContext";
|
|
11
|
+
var c = ({ children: t, components: c, defaultColorMode: l = "light", colorModeStorageKey: u, applyColorModeClass: d = !0, colorModeRoot: f }) => {
|
|
12
|
+
let p = l === "system", [m, h] = a(() => e(u, l));
|
|
13
|
+
r(() => {
|
|
14
|
+
if (!p || typeof window > "u") return;
|
|
15
|
+
let e = window.matchMedia("(prefers-color-scheme: dark)"), t = (e) => h(e.matches ? "dark" : "light");
|
|
16
|
+
return e.addEventListener("change", t), () => {
|
|
17
|
+
e.removeEventListener("change", t);
|
|
18
|
+
};
|
|
19
|
+
}, [p]), r(() => {
|
|
20
|
+
if (!d || typeof document > "u") return;
|
|
21
|
+
let e = f ?? document.documentElement;
|
|
22
|
+
m === "dark" ? e.classList.add("dark") : e.classList.remove("dark");
|
|
23
|
+
}, [
|
|
24
|
+
m,
|
|
25
|
+
d,
|
|
26
|
+
f
|
|
27
|
+
]);
|
|
28
|
+
let g = n(() => {
|
|
29
|
+
p || h((e) => {
|
|
30
|
+
let t = e === "dark" ? "light" : "dark";
|
|
31
|
+
if (u) try {
|
|
32
|
+
localStorage.setItem(u, t);
|
|
33
|
+
} catch {}
|
|
34
|
+
return t;
|
|
35
|
+
});
|
|
36
|
+
}, [p, u]), _ = n((e) => {
|
|
37
|
+
if (!p && (h(e), u)) try {
|
|
38
|
+
localStorage.setItem(u, e);
|
|
39
|
+
} catch {}
|
|
40
|
+
}, [p, u]);
|
|
41
|
+
return /* @__PURE__ */ o(s, {
|
|
42
|
+
value: i(() => ({
|
|
43
|
+
theme: { components: c && Object.keys(c).length > 0 ? c : {} },
|
|
44
|
+
colorMode: m,
|
|
45
|
+
toggleColorMode: g,
|
|
46
|
+
setColorMode: _
|
|
47
|
+
}), [
|
|
48
|
+
c,
|
|
49
|
+
m,
|
|
50
|
+
g,
|
|
51
|
+
_
|
|
52
|
+
]),
|
|
53
|
+
children: t
|
|
54
|
+
});
|
|
55
|
+
};
|
|
56
|
+
//#endregion
|
|
57
|
+
export { s as ThemeContext, c as default };
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
//#region src/components/Provider/providers/ThemeProvider/helpers/getSystemColorMode.ts
|
|
2
|
+
var e = () => {
|
|
3
|
+
if (typeof window > "u") return "light";
|
|
4
|
+
try {
|
|
5
|
+
return window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light";
|
|
6
|
+
} catch {
|
|
7
|
+
return "light";
|
|
8
|
+
}
|
|
9
|
+
};
|
|
10
|
+
//#endregion
|
|
11
|
+
export { e as default };
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import e from "./getSystemColorMode.js";
|
|
2
|
+
//#region src/components/Provider/providers/ThemeProvider/helpers/resolveInitialColorMode.ts
|
|
3
|
+
var t = (t, n) => {
|
|
4
|
+
if (t && typeof localStorage < "u") try {
|
|
5
|
+
let e = localStorage.getItem(t);
|
|
6
|
+
if (e === "dark" || e === "light") return e;
|
|
7
|
+
} catch {}
|
|
8
|
+
return n === "system" ? e() : n;
|
|
9
|
+
};
|
|
10
|
+
//#endregion
|
|
11
|
+
export { t as default };
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { __exportAll as e } from "../../../_virtual/_rolldown/runtime.js";
|
|
2
|
+
import { ThemeContext as t } from "./ThemeProvider/ThemeProvider.js";
|
|
3
|
+
import n from "./ThemeProvider/index.js";
|
|
4
|
+
//#region src/components/Provider/providers/index.ts
|
|
5
|
+
var r = /* @__PURE__ */ e({
|
|
6
|
+
ThemeContext: () => t,
|
|
7
|
+
ThemeProvider: () => n
|
|
8
|
+
});
|
|
9
|
+
//#endregion
|
|
10
|
+
export { t as ThemeContext, n as ThemeProvider, r as providers_exports };
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { Rule as TRule, RuleGroup } from './QueryBuilder';
|
|
2
|
+
import { default as QueryBuilderStyles, variantKeys } from './QueryBuilder.styles';
|
|
3
|
+
import { useThemeSharedProps } from '../../hooks/useTheme';
|
|
4
|
+
export type GroupRulesProps = {
|
|
5
|
+
className?: string;
|
|
6
|
+
id?: string;
|
|
7
|
+
rules?: (TRule | RuleGroup)[];
|
|
8
|
+
combinator?: 'and' | 'or';
|
|
9
|
+
enabled?: boolean;
|
|
10
|
+
showBranches?: boolean;
|
|
11
|
+
mainGroup?: boolean;
|
|
12
|
+
} & useThemeSharedProps<typeof QueryBuilderStyles, typeof variantKeys>;
|
|
13
|
+
declare const GroupRules: ({ className, id: groupId, rules, combinator, enabled, showBranches, mainGroup, direction, size, intent }: GroupRulesProps) => import("react/jsx-runtime").JSX.Element;
|
|
14
|
+
export default GroupRules;
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
import e from "../../hooks/useTheme/index.js";
|
|
2
|
+
import t from "../Flex/index.js";
|
|
3
|
+
import n from "../Button/index.js";
|
|
4
|
+
import r from "../Select/index.js";
|
|
5
|
+
import i from "../Switch/index.js";
|
|
6
|
+
import a from "./QueryBuilderContext.js";
|
|
7
|
+
import o from "./Rule.js";
|
|
8
|
+
import { use as s, useCallback as c } from "react";
|
|
9
|
+
import { jsx as l, jsxs as u } from "react/jsx-runtime";
|
|
10
|
+
//#region src/components/QueryBuilder/GroupRules.tsx
|
|
11
|
+
var d = ({ className: f = "", id: p = "", rules: m, combinator: h = "and", enabled: g = !0, showBranches: _ = !1, mainGroup: v = !1, direction: y, size: b, intent: x }) => {
|
|
12
|
+
let S = e("QueryBuilder", {
|
|
13
|
+
className: f,
|
|
14
|
+
componentKey: [
|
|
15
|
+
"button",
|
|
16
|
+
"ruleGroup",
|
|
17
|
+
"ruleGroupHeader"
|
|
18
|
+
],
|
|
19
|
+
variants: {
|
|
20
|
+
size: b,
|
|
21
|
+
showBranches: _,
|
|
22
|
+
mainGroup: v,
|
|
23
|
+
direction: y,
|
|
24
|
+
intent: x
|
|
25
|
+
}
|
|
26
|
+
}), { addRule: C, addGroup: w, updateCombinator: T, updateEnabled: E, remove: D, allowDisableRules: O, allowSubGroups: k, combinators: A, error: j } = s(a), M = c(() => C(p), [C, p]), N = c(() => w(p), [w, p]), P = c((e) => T(p, e), [p, T]), F = c((e) => E(p, e.target.checked), [p, E]), I = c(() => D(p), [D, p]);
|
|
27
|
+
return /* @__PURE__ */ u("div", {
|
|
28
|
+
className: S.ruleGroup,
|
|
29
|
+
children: [/* @__PURE__ */ u(t, {
|
|
30
|
+
gap: 2,
|
|
31
|
+
items: "center",
|
|
32
|
+
className: S.ruleGroupHeader,
|
|
33
|
+
children: [
|
|
34
|
+
/* @__PURE__ */ l(r, {
|
|
35
|
+
value: h,
|
|
36
|
+
size: b,
|
|
37
|
+
onChange: P,
|
|
38
|
+
disabled: !m || m.length < 2 || A.length < 2,
|
|
39
|
+
error: j ? "Invalid Combinator" : void 0,
|
|
40
|
+
children: A.map((e) => /* @__PURE__ */ l("option", {
|
|
41
|
+
value: e.value,
|
|
42
|
+
children: e.label
|
|
43
|
+
}, e.value))
|
|
44
|
+
}),
|
|
45
|
+
/* @__PURE__ */ l(n, {
|
|
46
|
+
size: b,
|
|
47
|
+
className: S.button,
|
|
48
|
+
title: "+ Rule",
|
|
49
|
+
onClick: M,
|
|
50
|
+
children: "+ Rule"
|
|
51
|
+
}),
|
|
52
|
+
/* @__PURE__ */ l(n, {
|
|
53
|
+
size: b,
|
|
54
|
+
className: S.button,
|
|
55
|
+
title: "+ Group",
|
|
56
|
+
onClick: N,
|
|
57
|
+
disabled: !k,
|
|
58
|
+
children: "+ Group"
|
|
59
|
+
}),
|
|
60
|
+
!v && /* @__PURE__ */ l(n, {
|
|
61
|
+
size: b,
|
|
62
|
+
className: S.button,
|
|
63
|
+
intent: "danger",
|
|
64
|
+
onClick: I,
|
|
65
|
+
children: "X"
|
|
66
|
+
}),
|
|
67
|
+
O && /* @__PURE__ */ l("div", {
|
|
68
|
+
className: "flex items-center",
|
|
69
|
+
title: "Enable Group",
|
|
70
|
+
children: /* @__PURE__ */ l(i, {
|
|
71
|
+
size: b,
|
|
72
|
+
checked: g,
|
|
73
|
+
onChange: F
|
|
74
|
+
})
|
|
75
|
+
})
|
|
76
|
+
]
|
|
77
|
+
}), m && m.map((e, t) => {
|
|
78
|
+
let { id: n, enabled: r } = e;
|
|
79
|
+
if ("rules" in e) {
|
|
80
|
+
let { id: n, rules: r, combinator: i, enabled: a } = e;
|
|
81
|
+
return /* @__PURE__ */ l(d, {
|
|
82
|
+
id: n,
|
|
83
|
+
rules: r,
|
|
84
|
+
combinator: i,
|
|
85
|
+
enabled: a,
|
|
86
|
+
showBranches: _,
|
|
87
|
+
direction: y,
|
|
88
|
+
size: b,
|
|
89
|
+
intent: x
|
|
90
|
+
}, t);
|
|
91
|
+
}
|
|
92
|
+
let { field: i, operator: a, value: s, isBinding: c } = e;
|
|
93
|
+
return /* @__PURE__ */ l(o, {
|
|
94
|
+
id: n,
|
|
95
|
+
field: i,
|
|
96
|
+
operator: a,
|
|
97
|
+
value: s,
|
|
98
|
+
isBinding: c,
|
|
99
|
+
enabled: r,
|
|
100
|
+
size: b,
|
|
101
|
+
showBranches: _,
|
|
102
|
+
mainGroup: v,
|
|
103
|
+
direction: y,
|
|
104
|
+
intent: x
|
|
105
|
+
}, t);
|
|
106
|
+
})]
|
|
107
|
+
});
|
|
108
|
+
};
|
|
109
|
+
//#endregion
|
|
110
|
+
export { d as default };
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
import { default as QueryBuilderStyles, variantKeys } from './QueryBuilder.styles';
|
|
2
|
+
import { useThemeSharedProps } from '../../hooks/useTheme';
|
|
3
|
+
export type RuleValue = Date | string | number | boolean | undefined | null | object;
|
|
4
|
+
export type QueryBuilderParams = Record<string, RuleValue>;
|
|
5
|
+
export type Combinator = 'and' | 'or';
|
|
6
|
+
export type Operator = '' | '=' | '!=' | '<' | '>' | '<=' | '>=' | 'contains' | 'doesNotContain' | 'beginsWith' | 'doesNotBeginWith' | 'endsWith' | 'doesNotEndWith' | 'empty' | 'notEmpty' | 'in' | 'notIn' | 'between' | 'notBetween';
|
|
7
|
+
export type RuleGroup = {
|
|
8
|
+
id?: string;
|
|
9
|
+
combinator: Combinator;
|
|
10
|
+
rules: (Rule | RuleGroup)[];
|
|
11
|
+
enabled?: boolean;
|
|
12
|
+
};
|
|
13
|
+
export type Rule = {
|
|
14
|
+
id?: string;
|
|
15
|
+
field: string;
|
|
16
|
+
operator: Operator;
|
|
17
|
+
enabled?: boolean;
|
|
18
|
+
} & ({
|
|
19
|
+
isBinding: true;
|
|
20
|
+
value: string;
|
|
21
|
+
} | {
|
|
22
|
+
isBinding?: false;
|
|
23
|
+
value: RuleValue;
|
|
24
|
+
});
|
|
25
|
+
export type Field = {
|
|
26
|
+
name: string;
|
|
27
|
+
label: string;
|
|
28
|
+
placeholder?: string;
|
|
29
|
+
defaultOperator?: Operator;
|
|
30
|
+
operators?: {
|
|
31
|
+
value: Operator;
|
|
32
|
+
label: string;
|
|
33
|
+
}[];
|
|
34
|
+
group?: string;
|
|
35
|
+
inputType?: 'checkbox' | 'radio' | 'multiselect' | 'select' | 'text' | 'number' | 'date' | 'time' | 'datetime' | 'textarea';
|
|
36
|
+
defaultValue?: RuleValue;
|
|
37
|
+
validator?: (value?: string | number | boolean) => boolean | string;
|
|
38
|
+
options?: {
|
|
39
|
+
value: RuleValue;
|
|
40
|
+
label: string;
|
|
41
|
+
}[];
|
|
42
|
+
};
|
|
43
|
+
export type QueryBuilderProps = {
|
|
44
|
+
query?: RuleGroup;
|
|
45
|
+
fields?: Record<string, Field>;
|
|
46
|
+
showBranches?: boolean;
|
|
47
|
+
allowDisableRules?: boolean;
|
|
48
|
+
allowSubGroups?: boolean;
|
|
49
|
+
combinators?: {
|
|
50
|
+
value: string;
|
|
51
|
+
label: string;
|
|
52
|
+
}[];
|
|
53
|
+
error?: boolean;
|
|
54
|
+
onChange?: (query: RuleGroup) => void;
|
|
55
|
+
} & useThemeSharedProps<typeof QueryBuilderStyles, typeof variantKeys>;
|
|
56
|
+
declare const QueryBuilder: ({ className, query, fields, showBranches, allowDisableRules, allowSubGroups, combinators, error, size, direction, intent, onChange }: QueryBuilderProps) => import("react/jsx-runtime").JSX.Element;
|
|
57
|
+
export default QueryBuilder;
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { get as e } from "../../helpers/lodash/get.js";
|
|
2
|
+
import t from "../../hooks/useTheme/index.js";
|
|
3
|
+
import n from "../Flex/index.js";
|
|
4
|
+
import { defaultCombinators as r } from "./helpers/QueryBuilderContants.js";
|
|
5
|
+
import i from "./GroupRules.js";
|
|
6
|
+
import a from "./QueryBuilderProvider.js";
|
|
7
|
+
import { useMemo as o } from "react";
|
|
8
|
+
import { jsx as s } from "react/jsx-runtime";
|
|
9
|
+
import { v4 as c } from "uuid";
|
|
10
|
+
//#region src/components/QueryBuilder/QueryBuilder.tsx
|
|
11
|
+
var l = ({ className: l = "", query: u, fields: d, showBranches: f = !1, allowDisableRules: p = !0, allowSubGroups: m = !0, combinators: h = r, error: g = !1, size: _ = "xs", direction: v = "horizontal", intent: y = "primary", onChange: b }) => {
|
|
12
|
+
l = t("QueryBuilder", {
|
|
13
|
+
className: l,
|
|
14
|
+
componentKey: "root",
|
|
15
|
+
variants: {
|
|
16
|
+
size: _,
|
|
17
|
+
intent: y
|
|
18
|
+
}
|
|
19
|
+
});
|
|
20
|
+
let x = o(() => !u || !u.id ? {
|
|
21
|
+
id: c(),
|
|
22
|
+
combinator: e(h, "0.value", "and"),
|
|
23
|
+
rules: [],
|
|
24
|
+
enabled: !0
|
|
25
|
+
} : u, [u, h]), { id: S, combinator: C, enabled: w, rules: T } = x;
|
|
26
|
+
return /* @__PURE__ */ s(n, {
|
|
27
|
+
direction: "column",
|
|
28
|
+
className: l,
|
|
29
|
+
children: /* @__PURE__ */ s(a, {
|
|
30
|
+
query: x,
|
|
31
|
+
fields: d,
|
|
32
|
+
onChange: b,
|
|
33
|
+
allowDisableRules: p,
|
|
34
|
+
allowSubGroups: m,
|
|
35
|
+
combinators: h,
|
|
36
|
+
error: g,
|
|
37
|
+
children: /* @__PURE__ */ s(i, {
|
|
38
|
+
id: S,
|
|
39
|
+
combinator: C,
|
|
40
|
+
enabled: w,
|
|
41
|
+
rules: T,
|
|
42
|
+
showBranches: f,
|
|
43
|
+
mainGroup: !0,
|
|
44
|
+
direction: v,
|
|
45
|
+
size: _,
|
|
46
|
+
intent: y
|
|
47
|
+
})
|
|
48
|
+
})
|
|
49
|
+
});
|
|
50
|
+
};
|
|
51
|
+
//#endregion
|
|
52
|
+
export { l as default };
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
export declare const variantKeys: {
|
|
2
|
+
readonly intent: readonly ["primary", "gray"];
|
|
3
|
+
readonly size: readonly ["md", "sm", "xs", "custom"];
|
|
4
|
+
readonly disabled: readonly [true, false];
|
|
5
|
+
readonly error: readonly [true, false];
|
|
6
|
+
readonly mainGroup: readonly [true, false];
|
|
7
|
+
readonly showBranches: readonly [true, false];
|
|
8
|
+
readonly direction: readonly ["horizontal", "vertical"];
|
|
9
|
+
};
|
|
10
|
+
export declare const STYLES_COMPONENT_NAME = "QueryBuilder";
|
|
11
|
+
declare const _default: {
|
|
12
|
+
root: (props?: ({
|
|
13
|
+
intent?: "primary" | null | undefined;
|
|
14
|
+
size?: "xs" | "md" | "sm" | null | undefined;
|
|
15
|
+
} & import('class-variance-authority/types').ClassProp) | undefined) => string;
|
|
16
|
+
ruleGroup: (props?: ({
|
|
17
|
+
intent?: "primary" | "gray" | null | undefined;
|
|
18
|
+
mainGroup?: boolean | null | undefined;
|
|
19
|
+
showBranches?: boolean | null | undefined;
|
|
20
|
+
error?: boolean | null | undefined;
|
|
21
|
+
} & import('class-variance-authority/types').ClassProp) | undefined) => string;
|
|
22
|
+
ruleGroupHeader: (props?: import('class-variance-authority/types').ClassProp | undefined) => string;
|
|
23
|
+
rule: (props?: ({
|
|
24
|
+
intent?: "primary" | "gray" | null | undefined;
|
|
25
|
+
direction?: "horizontal" | "vertical" | null | undefined;
|
|
26
|
+
showBranches?: boolean | null | undefined;
|
|
27
|
+
error?: boolean | null | undefined;
|
|
28
|
+
} & import('class-variance-authority/types').ClassProp) | undefined) => string;
|
|
29
|
+
ruleField: (props?: import('class-variance-authority/types').ClassProp | undefined) => string;
|
|
30
|
+
ruleOperator: (props?: import('class-variance-authority/types').ClassProp | undefined) => string;
|
|
31
|
+
button: (props?: import('class-variance-authority/types').ClassProp | undefined) => string;
|
|
32
|
+
};
|
|
33
|
+
export default _default;
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
import e from "../../helpers/cvaWrapper.js";
|
|
2
|
+
var t = {
|
|
3
|
+
root: e("", {
|
|
4
|
+
variants: {
|
|
5
|
+
intent: { primary: "" },
|
|
6
|
+
size: {
|
|
7
|
+
md: "",
|
|
8
|
+
sm: "",
|
|
9
|
+
xs: ""
|
|
10
|
+
}
|
|
11
|
+
},
|
|
12
|
+
compoundVariants: [],
|
|
13
|
+
defaultVariants: {
|
|
14
|
+
intent: "primary",
|
|
15
|
+
size: "md"
|
|
16
|
+
}
|
|
17
|
+
}),
|
|
18
|
+
ruleGroup: e("flex flex-col p-2 border rounded-sm relative", {
|
|
19
|
+
variants: {
|
|
20
|
+
intent: {
|
|
21
|
+
primary: "bg-primary-500/20 border-gray-400 dark:border-zinc-700",
|
|
22
|
+
gray: "bg-grayviolet-200 dark:bg-zinc-700/50 border-gray-300 dark:border-zinc-700"
|
|
23
|
+
},
|
|
24
|
+
mainGroup: {
|
|
25
|
+
true: "",
|
|
26
|
+
false: "mt-2 ml-4"
|
|
27
|
+
},
|
|
28
|
+
showBranches: {
|
|
29
|
+
true: "before:top-[0px] before:h-[calc(50%_+_10px)]",
|
|
30
|
+
false: ""
|
|
31
|
+
},
|
|
32
|
+
error: {
|
|
33
|
+
true: "bg-red-500/20 border-red-400",
|
|
34
|
+
false: ""
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
compoundVariants: [
|
|
38
|
+
{
|
|
39
|
+
mainGroup: !1,
|
|
40
|
+
showBranches: !0,
|
|
41
|
+
className: ["before:absolute before:border-l before:border-b before:last:rounded-bl before:-translate-x-1/2 before:translate-y-[-10px] before:left-[-4px] before:w-2", "after:absolute after:border-l after:-translate-x-1/2 after:translate-y-[calc(100%_-_4px)] after:left-[-4px] after:w-2 last:after:border-none after:top-[0px] after:h-[calc(50%_+_4px)]"]
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
mainGroup: !1,
|
|
45
|
+
showBranches: !0,
|
|
46
|
+
intent: "primary",
|
|
47
|
+
className: ["before:border-gray-400 dark:before:border-zinc-700", "after:border-gray-400 dark:after:border-zinc-700"]
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
mainGroup: !1,
|
|
51
|
+
showBranches: !0,
|
|
52
|
+
intent: "gray",
|
|
53
|
+
className: ["before:border-gray-300 dark:before:border-zinc-700", "after:border-gray-300 dark:after:border-zinc-700"]
|
|
54
|
+
}
|
|
55
|
+
],
|
|
56
|
+
defaultVariants: {
|
|
57
|
+
intent: "primary",
|
|
58
|
+
mainGroup: !1,
|
|
59
|
+
showBranches: !1,
|
|
60
|
+
error: !1
|
|
61
|
+
}
|
|
62
|
+
}),
|
|
63
|
+
ruleGroupHeader: e(""),
|
|
64
|
+
rule: e("border p-1 rounded-sm ml-4 [&:not(:first-child)]:mt-3 relative", {
|
|
65
|
+
variants: {
|
|
66
|
+
intent: {
|
|
67
|
+
primary: "border-gray-400 dark:border-zinc-700",
|
|
68
|
+
gray: "border-gray-300 dark:border-zinc-700"
|
|
69
|
+
},
|
|
70
|
+
direction: {
|
|
71
|
+
horizontal: "items-center",
|
|
72
|
+
vertical: "flex-col"
|
|
73
|
+
},
|
|
74
|
+
showBranches: {
|
|
75
|
+
true: ["before:absolute before:border-l before:border-b before:last:rounded-sm-bl before:-translate-x-1/2 before:translate-y-[-0%] before:left-[-4px] before:w-2 before:top-[-13px] before:h-[calc(50%_+_13px)]", "after:absolute after:border-l after:-translate-x-1/2 after:translate-y-[calc(50%_+_3px)] after:left-[-4px] after:w-2 last:after:border-none"],
|
|
76
|
+
false: ""
|
|
77
|
+
},
|
|
78
|
+
error: {
|
|
79
|
+
true: "border-red-400",
|
|
80
|
+
false: ""
|
|
81
|
+
}
|
|
82
|
+
},
|
|
83
|
+
compoundVariants: [
|
|
84
|
+
{
|
|
85
|
+
showBranches: !0,
|
|
86
|
+
direction: "horizontal",
|
|
87
|
+
className: "after:top-[0px] after:h-[calc(50%_+_6px)]"
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
showBranches: !0,
|
|
91
|
+
direction: "vertical",
|
|
92
|
+
className: "after:top-[0px] after:h-[calc(50%_+_26px)]"
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
showBranches: !0,
|
|
96
|
+
intent: "primary",
|
|
97
|
+
className: ["before:border-gray-400 dark:before:border-zinc-700", "after:border-gray-400 dark:after:border-zinc-700"]
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
showBranches: !0,
|
|
101
|
+
intent: "gray",
|
|
102
|
+
className: ["before:border-gray-300 dark:before:border-zinc-700", "after:border-gray-300 dark:after:border-zinc-700"]
|
|
103
|
+
}
|
|
104
|
+
],
|
|
105
|
+
defaultVariants: {
|
|
106
|
+
intent: "primary",
|
|
107
|
+
direction: "horizontal",
|
|
108
|
+
showBranches: !1,
|
|
109
|
+
error: !1
|
|
110
|
+
}
|
|
111
|
+
}),
|
|
112
|
+
ruleField: e("min-w-0"),
|
|
113
|
+
ruleOperator: e("grow basis-0"),
|
|
114
|
+
button: e("truncate")
|
|
115
|
+
};
|
|
116
|
+
//#endregion
|
|
117
|
+
export { t as default };
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { Combinator, Field, Operator, Rule, RuleGroup, RuleValue } from './QueryBuilder';
|
|
2
|
+
export type QueryBuilderContextValue = {
|
|
3
|
+
addGroup: (groupId: string) => void;
|
|
4
|
+
addRule: (groupId: string) => void;
|
|
5
|
+
update: (nodeId: string, rule: Partial<Rule | RuleGroup>) => void;
|
|
6
|
+
updateCombinator: (nodeId: string, combinator: Combinator) => void;
|
|
7
|
+
updateEnabled: (nodeId: string, isEnabled: boolean) => void;
|
|
8
|
+
updateRuleOperator: (nodeId: string, operator: Operator) => void;
|
|
9
|
+
updateRuleValue: (nodeId: string, value: RuleValue) => void;
|
|
10
|
+
remove: (nodeId: string) => void;
|
|
11
|
+
fields?: Record<string, Field>;
|
|
12
|
+
allowDisableRules?: boolean;
|
|
13
|
+
allowSubGroups?: boolean;
|
|
14
|
+
combinators: {
|
|
15
|
+
value: string;
|
|
16
|
+
label: string;
|
|
17
|
+
}[];
|
|
18
|
+
error?: boolean;
|
|
19
|
+
};
|
|
20
|
+
declare const QueryBuilderContext: import('react').Context<QueryBuilderContextValue>;
|
|
21
|
+
export default QueryBuilderContext;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { createContext as e } from "react";
|
|
2
|
+
var t = e({
|
|
3
|
+
addGroup: () => {},
|
|
4
|
+
addRule: () => {},
|
|
5
|
+
update: () => {},
|
|
6
|
+
updateCombinator: () => {},
|
|
7
|
+
updateEnabled: () => {},
|
|
8
|
+
updateRuleOperator: () => {},
|
|
9
|
+
updateRuleValue: () => {},
|
|
10
|
+
remove: () => {},
|
|
11
|
+
fields: {},
|
|
12
|
+
allowDisableRules: !0,
|
|
13
|
+
allowSubGroups: !0,
|
|
14
|
+
combinators: [],
|
|
15
|
+
error: !1
|
|
16
|
+
});
|
|
17
|
+
t.displayName = "QueryBuilderContext";
|
|
18
|
+
//#endregion
|
|
19
|
+
export { t as default };
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Field, QueryBuilderProps, RuleGroup } from './QueryBuilder';
|
|
2
|
+
import { ReactNode } from 'react';
|
|
3
|
+
export type QueryBuilderQueryProviderProps = {
|
|
4
|
+
children: ReactNode;
|
|
5
|
+
query: RuleGroup;
|
|
6
|
+
fields?: Record<string, Field>;
|
|
7
|
+
allowDisableRules: boolean;
|
|
8
|
+
allowSubGroups: boolean;
|
|
9
|
+
combinators: {
|
|
10
|
+
value: string;
|
|
11
|
+
label: string;
|
|
12
|
+
}[];
|
|
13
|
+
error?: boolean;
|
|
14
|
+
onChange?: QueryBuilderProps['onChange'];
|
|
15
|
+
};
|
|
16
|
+
declare const QueryBuilderProvider: ({ children, query, fields, allowDisableRules, allowSubGroups, combinators, error, onChange }: QueryBuilderQueryProviderProps) => import("react/jsx-runtime").JSX.Element;
|
|
17
|
+
export default QueryBuilderProvider;
|