@epam/uui 4.5.4 → 4.6.1-alpha.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/assets/styles/buttonLayout.scss +66 -0
- package/assets/styles/controlLayout.scss +12 -0
- package/assets/styles/effects.scss +9 -0
- package/assets/styles/font-faces.scss +52 -0
- package/assets/styles/fonts-variables.scss +24 -0
- package/assets/styles/icons.scss +19 -0
- package/assets/styles/index.scss +8 -0
- package/assets/styles/inputs.scss +70 -0
- package/assets/styles/layout-mixins.scss +9 -0
- package/assets/styles/prettifyScrollBar.scss +45 -0
- package/assets/styles/text-layout.scss +81 -0
- package/assets/styles/text-size.scss +37 -0
- package/assets/styles/typography.scss +4 -0
- package/assets/styles/variables/buttons/button.scss +71 -0
- package/assets/styles/variables/buttons/iconButton.scss +41 -0
- package/assets/styles/variables/buttons/linkButton.scss +6 -0
- package/assets/styles/variables/buttons/tabButton.scss +8 -0
- package/assets/styles/variables/inputs/checkbox.scss +18 -0
- package/assets/styles/variables/inputs/radioInput.scss +15 -0
- package/assets/styles/variables/inputs/switch.scss +24 -0
- package/assets/styles/variables/inputs/textInput.scss +21 -0
- package/assets/styles/variables/layout/accordion.scss +11 -0
- package/assets/styles/variables/layout/iconContainer.scss +23 -0
- package/assets/styles/variables/layout/labeledInput.scss +8 -0
- package/assets/styles/variables/layout/panel.scss +6 -0
- package/assets/styles/variables/layout/scrollBars.scss +4 -0
- package/assets/styles/variables/overlays/dropdownContainer.scss +5 -0
- package/assets/styles/variables/overlays/modals.scss +6 -0
- package/assets/styles/variables/overlays/notificationCard.scss +28 -0
- package/assets/styles/variables/overlays/tooltip.scss +8 -0
- package/assets/styles/variables/pickers/pickerToggler.scss +16 -0
- package/assets/styles/variables/typography/text.scss +19 -0
- package/assets/styles/variables/typography/textPlaceholder.scss +4 -0
- package/assets/styles/variables/widgets/badge.scss +51 -0
- package/assets/styles/variables/widgets/tag.scss +9 -0
- package/bundle-stats.json +1 -1
- package/components/buttons/Button.d.ts +14 -0
- package/components/buttons/Button.d.ts.map +1 -0
- package/components/buttons/IconButton.d.ts +12 -0
- package/components/buttons/IconButton.d.ts.map +1 -0
- package/components/buttons/LinkButton.d.ts +9 -0
- package/components/buttons/LinkButton.d.ts.map +1 -0
- package/components/buttons/TabButton.d.ts +9 -0
- package/components/buttons/TabButton.d.ts.map +1 -0
- package/components/buttons/VerticalTabButton.d.ts +5 -0
- package/components/buttons/VerticalTabButton.d.ts.map +1 -0
- package/components/buttons/docs/button.doc.d.ts +6 -0
- package/components/buttons/docs/button.doc.d.ts.map +1 -0
- package/components/buttons/docs/linkButton.doc.d.ts +6 -0
- package/components/buttons/docs/linkButton.doc.d.ts.map +1 -0
- package/components/buttons/helper.d.ts +3 -0
- package/components/buttons/helper.d.ts.map +1 -0
- package/components/buttons/index.d.ts +6 -0
- package/components/buttons/index.d.ts.map +1 -0
- package/components/index.d.ts +10 -0
- package/components/index.d.ts.map +1 -0
- package/components/inputs/Checkbox.d.ts +10 -0
- package/components/inputs/Checkbox.d.ts.map +1 -0
- package/components/inputs/RadioInput.d.ts +8 -0
- package/components/inputs/RadioInput.d.ts.map +1 -0
- package/components/inputs/Switch.d.ts +9 -0
- package/components/inputs/Switch.d.ts.map +1 -0
- package/components/inputs/TextInput.d.ts +14 -0
- package/components/inputs/TextInput.d.ts.map +1 -0
- package/components/inputs/docs/checkbox.doc.d.ts +6 -0
- package/components/inputs/docs/checkbox.doc.d.ts.map +1 -0
- package/components/inputs/docs/radioInput.doc.d.ts +6 -0
- package/components/inputs/docs/radioInput.doc.d.ts.map +1 -0
- package/components/inputs/docs/switch.doc.d.ts +6 -0
- package/components/inputs/docs/switch.doc.d.ts.map +1 -0
- package/components/inputs/docs/textInput.doc.d.ts +6 -0
- package/components/inputs/docs/textInput.doc.d.ts.map +1 -0
- package/components/inputs/index.d.ts +5 -0
- package/components/inputs/index.d.ts.map +1 -0
- package/components/layout/Accordion.d.ts +9 -0
- package/components/layout/Accordion.d.ts.map +1 -0
- package/components/layout/ControlGroup.d.ts +4 -0
- package/components/layout/ControlGroup.d.ts.map +1 -0
- package/components/layout/FlexItems/FlexCell.d.ts +12 -0
- package/components/layout/FlexItems/FlexCell.d.ts.map +1 -0
- package/components/layout/FlexItems/FlexRow.d.ts +15 -0
- package/components/layout/FlexItems/FlexRow.d.ts.map +1 -0
- package/components/layout/FlexItems/FlexSpacer.d.ts +2 -0
- package/components/layout/FlexItems/FlexSpacer.d.ts.map +1 -0
- package/components/layout/FlexItems/Panel.d.ts +11 -0
- package/components/layout/FlexItems/Panel.d.ts.map +1 -0
- package/components/layout/FlexItems/index.d.ts +5 -0
- package/components/layout/FlexItems/index.d.ts.map +1 -0
- package/components/layout/IconContainer.d.ts +10 -0
- package/components/layout/IconContainer.d.ts.map +1 -0
- package/components/layout/LabeledInput.d.ts +8 -0
- package/components/layout/LabeledInput.d.ts.map +1 -0
- package/components/layout/RadioGroup.d.ts +4 -0
- package/components/layout/RadioGroup.d.ts.map +1 -0
- package/components/layout/ScrollBars.d.ts +6 -0
- package/components/layout/ScrollBars.d.ts.map +1 -0
- package/components/layout/VirtualList.d.ts +8 -0
- package/components/layout/VirtualList.d.ts.map +1 -0
- package/components/layout/index.d.ts +9 -0
- package/components/layout/index.d.ts.map +1 -0
- package/components/overlays/Dropdown.d.ts +6 -0
- package/components/overlays/Dropdown.d.ts.map +1 -0
- package/components/overlays/DropdownContainer.d.ts +7 -0
- package/components/overlays/DropdownContainer.d.ts.map +1 -0
- package/components/overlays/DropdownMenu.d.ts +37 -0
- package/components/overlays/DropdownMenu.d.ts.map +1 -0
- package/components/overlays/Modals.d.ts +24 -0
- package/components/overlays/Modals.d.ts.map +1 -0
- package/components/overlays/NotificationCard.d.ts +31 -0
- package/components/overlays/NotificationCard.d.ts.map +1 -0
- package/components/overlays/Tooltip.d.ts +7 -0
- package/components/overlays/Tooltip.d.ts.map +1 -0
- package/components/overlays/index.d.ts +7 -0
- package/components/overlays/index.d.ts.map +1 -0
- package/components/pickers/DataPickerBody.d.ts +16 -0
- package/components/pickers/DataPickerBody.d.ts.map +1 -0
- package/components/pickers/DataPickerFooter.d.ts +9 -0
- package/components/pickers/DataPickerFooter.d.ts.map +1 -0
- package/components/pickers/DataPickerHeader.d.ts +8 -0
- package/components/pickers/DataPickerHeader.d.ts.map +1 -0
- package/components/pickers/DataPickerRow.d.ts +16 -0
- package/components/pickers/DataPickerRow.d.ts.map +1 -0
- package/components/pickers/MobileDropdownWrapper.d.ts +11 -0
- package/components/pickers/MobileDropdownWrapper.d.ts.map +1 -0
- package/components/pickers/PickerInput.d.ts +17 -0
- package/components/pickers/PickerInput.d.ts.map +1 -0
- package/components/pickers/PickerItem.d.ts +13 -0
- package/components/pickers/PickerItem.d.ts.map +1 -0
- package/components/pickers/PickerList.d.ts +18 -0
- package/components/pickers/PickerList.d.ts.map +1 -0
- package/components/pickers/PickerListItem.d.ts +9 -0
- package/components/pickers/PickerListItem.d.ts.map +1 -0
- package/components/pickers/PickerModal.d.ts +16 -0
- package/components/pickers/PickerModal.d.ts.map +1 -0
- package/components/pickers/PickerToggler.d.ts +9 -0
- package/components/pickers/PickerToggler.d.ts.map +1 -0
- package/components/pickers/docs/common.d.ts +28 -0
- package/components/pickers/docs/common.d.ts.map +1 -0
- package/components/pickers/docs/pickerInput.doc.d.ts +5 -0
- package/components/pickers/docs/pickerInput.doc.d.ts.map +1 -0
- package/components/pickers/docs/pickerToggler.doc.d.ts +6 -0
- package/components/pickers/docs/pickerToggler.doc.d.ts.map +1 -0
- package/components/pickers/index.d.ts +12 -0
- package/components/pickers/index.d.ts.map +1 -0
- package/components/tables/DataTableCell.d.ts +10 -0
- package/components/tables/DataTableCell.d.ts.map +1 -0
- package/components/tables/Presets/Preset.d.ts +15 -0
- package/components/tables/Presets/Preset.d.ts.map +1 -0
- package/components/tables/Presets/Presets.d.ts +9 -0
- package/components/tables/Presets/Presets.d.ts.map +1 -0
- package/components/tables/Presets/index.d.ts +3 -0
- package/components/tables/Presets/index.d.ts.map +1 -0
- package/components/tables/index.d.ts +4 -0
- package/components/tables/index.d.ts.map +1 -0
- package/components/tables/types.d.ts +9 -0
- package/components/tables/types.d.ts.map +1 -0
- package/components/types.d.ts +29 -0
- package/components/types.d.ts.map +1 -0
- package/components/typography/Text.d.ts +12 -0
- package/components/typography/Text.d.ts.map +1 -0
- package/components/typography/TextPlaceholder.d.ts +8 -0
- package/components/typography/TextPlaceholder.d.ts.map +1 -0
- package/components/typography/docs/textPlaceholder.doc.d.ts +5 -0
- package/components/typography/docs/textPlaceholder.doc.d.ts.map +1 -0
- package/components/typography/index.d.ts +3 -0
- package/components/typography/index.d.ts.map +1 -0
- package/components/widgets/Avatar.d.ts +4 -0
- package/components/widgets/Avatar.d.ts.map +1 -0
- package/components/widgets/Badge.d.ts +16 -0
- package/components/widgets/Badge.d.ts.map +1 -0
- package/components/widgets/Tag.d.ts +9 -0
- package/components/widgets/Tag.d.ts.map +1 -0
- package/components/widgets/index.d.ts +4 -0
- package/components/widgets/index.d.ts.map +1 -0
- package/docs/common.d.ts +11 -0
- package/docs/common.d.ts.map +1 -0
- package/docs/contexts/DefaultContext.d.ts +7 -0
- package/docs/contexts/DefaultContext.d.ts.map +1 -0
- package/docs/contexts/index.d.ts +2 -0
- package/docs/contexts/index.d.ts.map +1 -0
- package/docs/index.d.ts +3 -0
- package/docs/index.d.ts.map +1 -0
- package/helpers/textLayout.d.ts +9 -0
- package/helpers/textLayout.d.ts.map +1 -0
- package/i18n.d.ts +46 -6
- package/i18n.d.ts.map +1 -1
- package/icons/icons.d.ts +4 -0
- package/icons/icons.d.ts.map +1 -0
- package/index.d.ts +3 -7
- package/index.d.ts.map +1 -1
- package/index.docs.d.ts +6 -0
- package/index.docs.d.ts.map +1 -0
- package/index.js +4190 -6044
- package/index.js.map +1 -1
- package/package.json +8 -29
- package/readme.md +2 -8
- package/styles.css +3207 -0
- package/styles.css.map +1 -0
- package/__mocks__/reactDom.mock.d.ts +0 -4
- package/__mocks__/reactDom.mock.d.ts.map +0 -1
- package/constants/index.d.ts +0 -2
- package/constants/index.d.ts.map +0 -1
- package/constants/selectors.d.ts +0 -76
- package/constants/selectors.d.ts.map +0 -1
- package/data/Stateful.d.ts +0 -12
- package/data/Stateful.d.ts.map +0 -1
- package/data/forms/Form.d.ts +0 -38
- package/data/forms/Form.d.ts.map +0 -1
- package/data/forms/index.d.ts +0 -3
- package/data/forms/index.d.ts.map +0 -1
- package/data/forms/useForm.d.ts +0 -4
- package/data/forms/useForm.d.ts.map +0 -1
- package/data/forms/useLock.d.ts +0 -6
- package/data/forms/useLock.d.ts.map +0 -1
- package/data/index.d.ts +0 -7
- package/data/index.d.ts.map +0 -1
- package/data/lenses/LensBuilder.d.ts +0 -18
- package/data/lenses/LensBuilder.d.ts.map +0 -1
- package/data/lenses/builders.d.ts +0 -6
- package/data/lenses/builders.d.ts.map +0 -1
- package/data/lenses/hooks.d.ts +0 -8
- package/data/lenses/hooks.d.ts.map +0 -1
- package/data/lenses/index.d.ts +0 -5
- package/data/lenses/index.d.ts.map +0 -1
- package/data/lenses/lensesImpl.d.ts +0 -17
- package/data/lenses/lensesImpl.d.ts.map +0 -1
- package/data/lenses/types.d.ts +0 -13
- package/data/lenses/types.d.ts.map +0 -1
- package/data/processing/ArrayDataSource.d.ts +0 -27
- package/data/processing/ArrayDataSource.d.ts.map +0 -1
- package/data/processing/AsyncDataSource.d.ts +0 -17
- package/data/processing/AsyncDataSource.d.ts.map +0 -1
- package/data/processing/BaseDataSource.d.ts +0 -18
- package/data/processing/BaseDataSource.d.ts.map +0 -1
- package/data/processing/LazyDataSource.d.ts +0 -19
- package/data/processing/LazyDataSource.d.ts.map +0 -1
- package/data/processing/ListApiCache.d.ts +0 -71
- package/data/processing/ListApiCache.d.ts.map +0 -1
- package/data/processing/hooks/index.d.ts +0 -4
- package/data/processing/hooks/index.d.ts.map +0 -1
- package/data/processing/hooks/useArrayDataSource.d.ts +0 -3
- package/data/processing/hooks/useArrayDataSource.d.ts.map +0 -1
- package/data/processing/hooks/useAsyncDataSource.d.ts +0 -3
- package/data/processing/hooks/useAsyncDataSource.d.ts.map +0 -1
- package/data/processing/hooks/useLazyDataSource.d.ts +0 -3
- package/data/processing/hooks/useLazyDataSource.d.ts.map +0 -1
- package/data/processing/index.d.ts +0 -9
- package/data/processing/index.d.ts.map +0 -1
- package/data/processing/types.d.ts +0 -77
- package/data/processing/types.d.ts.map +0 -1
- package/data/processing/views/ArrayListView.d.ts +0 -27
- package/data/processing/views/ArrayListView.d.ts.map +0 -1
- package/data/processing/views/BaseListView.d.ts +0 -70
- package/data/processing/views/BaseListView.d.ts.map +0 -1
- package/data/processing/views/LazyListView.d.ts +0 -88
- package/data/processing/views/LazyListView.d.ts.map +0 -1
- package/data/processing/views/LazyTree.d.ts +0 -25
- package/data/processing/views/LazyTree.d.ts.map +0 -1
- package/data/processing/views/LoadingListView.d.ts +0 -15
- package/data/processing/views/LoadingListView.d.ts.map +0 -1
- package/data/processing/views/index.d.ts +0 -6
- package/data/processing/views/index.d.ts.map +0 -1
- package/data/processing/views/types.d.ts +0 -31
- package/data/processing/views/types.d.ts.map +0 -1
- package/data/querying/getOrderComparer.d.ts +0 -3
- package/data/querying/getOrderComparer.d.ts.map +0 -1
- package/data/querying/getPatternPredicate.d.ts +0 -4
- package/data/querying/getPatternPredicate.d.ts.map +0 -1
- package/data/querying/getSearchFilter.d.ts +0 -2
- package/data/querying/getSearchFilter.d.ts.map +0 -1
- package/data/querying/index.d.ts +0 -5
- package/data/querying/index.d.ts.map +0 -1
- package/data/querying/runDataQuery.d.ts +0 -6
- package/data/querying/runDataQuery.d.ts.map +0 -1
- package/data/validation/index.d.ts +0 -4
- package/data/validation/index.d.ts.map +0 -1
- package/data/validation/mergeValidation.d.ts +0 -3
- package/data/validation/mergeValidation.d.ts.map +0 -1
- package/data/validation/validate.d.ts +0 -6
- package/data/validation/validate.d.ts.map +0 -1
- package/data/validation/validateServerErrorState.d.ts +0 -3
- package/data/validation/validateServerErrorState.d.ts.map +0 -1
- package/helpers/Debouncer.d.ts +0 -15
- package/helpers/Debouncer.d.ts.map +0 -1
- package/helpers/IEditableDebouncer.d.ts +0 -27
- package/helpers/IEditableDebouncer.d.ts.map +0 -1
- package/helpers/LazyLoadedMap.d.ts +0 -46
- package/helpers/LazyLoadedMap.d.ts.map +0 -1
- package/helpers/applyColumnsConfig.d.ts +0 -4
- package/helpers/applyColumnsConfig.d.ts.map +0 -1
- package/helpers/arrayToMatrix.d.ts +0 -2
- package/helpers/arrayToMatrix.d.ts.map +0 -1
- package/helpers/batchOnNextTick.d.ts +0 -2
- package/helpers/batchOnNextTick.d.ts.map +0 -1
- package/helpers/browser.d.ts +0 -11
- package/helpers/browser.d.ts.map +0 -1
- package/helpers/closest.d.ts +0 -2
- package/helpers/closest.d.ts.map +0 -1
- package/helpers/cookie.d.ts +0 -4
- package/helpers/cookie.d.ts.map +0 -1
- package/helpers/cx.d.ts +0 -4
- package/helpers/cx.d.ts.map +0 -1
- package/helpers/events.d.ts +0 -6
- package/helpers/events.d.ts.map +0 -1
- package/helpers/formatBytes.d.ts +0 -2
- package/helpers/formatBytes.d.ts.map +0 -1
- package/helpers/getDefaultColumnsConfig.d.ts +0 -3
- package/helpers/getDefaultColumnsConfig.d.ts.map +0 -1
- package/helpers/getOffset.d.ts +0 -5
- package/helpers/getOffset.d.ts.map +0 -1
- package/helpers/getOrderBetween.d.ts +0 -2
- package/helpers/getOrderBetween.d.ts.map +0 -1
- package/helpers/index.d.ts +0 -25
- package/helpers/index.d.ts.map +0 -1
- package/helpers/mobile.d.ts +0 -4
- package/helpers/mobile.d.ts.map +0 -1
- package/helpers/mouseCoords.d.ts +0 -12
- package/helpers/mouseCoords.d.ts.map +0 -1
- package/helpers/numericInputCalculations.d.ts +0 -9
- package/helpers/numericInputCalculations.d.ts.map +0 -1
- package/helpers/parseIconViewbox.d.ts +0 -6
- package/helpers/parseIconViewbox.d.ts.map +0 -1
- package/helpers/parseToCSSProperties.d.ts +0 -2
- package/helpers/parseToCSSProperties.d.ts.map +0 -1
- package/helpers/screenSize.d.ts +0 -5
- package/helpers/screenSize.d.ts.map +0 -1
- package/helpers/ssr.d.ts +0 -2
- package/helpers/ssr.d.ts.map +0 -1
- package/helpers/urlParser.d.ts +0 -8
- package/helpers/urlParser.d.ts.map +0 -1
- package/helpers/urlUtils.d.ts +0 -5
- package/helpers/urlUtils.d.ts.map +0 -1
- package/helpers/useMemoWithDestructor.d.ts +0 -2
- package/helpers/useMemoWithDestructor.d.ts.map +0 -1
- package/helpers/withMods.d.ts +0 -4
- package/helpers/withMods.d.ts.map +0 -1
- package/hooks/index.d.ts +0 -8
- package/hooks/index.d.ts.map +0 -1
- package/hooks/useAppMobileHeight.d.ts +0 -2
- package/hooks/useAppMobileHeight.d.ts.map +0 -1
- package/hooks/useColumnsConfig.d.ts +0 -7
- package/hooks/useColumnsConfig.d.ts.map +0 -1
- package/hooks/useForceUpdate.d.ts +0 -2
- package/hooks/useForceUpdate.d.ts.map +0 -1
- package/hooks/useScrollShadows.d.ts +0 -11
- package/hooks/useScrollShadows.d.ts.map +0 -1
- package/hooks/useUuiError.d.ts +0 -25
- package/hooks/useUuiError.d.ts.map +0 -1
- package/hooks/useUuiServices.d.ts +0 -10
- package/hooks/useUuiServices.d.ts.map +0 -1
- package/hooks/useVirtualList.d.ts +0 -23
- package/hooks/useVirtualList.d.ts.map +0 -1
- package/services/AnalyticsContext.d.ts +0 -16
- package/services/AnalyticsContext.d.ts.map +0 -1
- package/services/ApiContext.d.ts +0 -53
- package/services/ApiContext.d.ts.map +0 -1
- package/services/BaseContext.d.ts +0 -7
- package/services/BaseContext.d.ts.map +0 -1
- package/services/ContextProvider.d.ts +0 -21
- package/services/ContextProvider.d.ts.map +0 -1
- package/services/ErrorContext.d.ts +0 -16
- package/services/ErrorContext.d.ts.map +0 -1
- package/services/LayoutContext.d.ts +0 -9
- package/services/LayoutContext.d.ts.map +0 -1
- package/services/LegacyContextProvider.d.ts +0 -36
- package/services/LegacyContextProvider.d.ts.map +0 -1
- package/services/LockContext.d.ts +0 -21
- package/services/LockContext.d.ts.map +0 -1
- package/services/ModalContext.d.ts +0 -33
- package/services/ModalContext.d.ts.map +0 -1
- package/services/NotificationContext.d.ts +0 -21
- package/services/NotificationContext.d.ts.map +0 -1
- package/services/ScrollManager.d.ts +0 -36
- package/services/ScrollManager.d.ts.map +0 -1
- package/services/SkinContext.d.ts +0 -44
- package/services/SkinContext.d.ts.map +0 -1
- package/services/UserSettingsContext.d.ts +0 -5
- package/services/UserSettingsContext.d.ts.map +0 -1
- package/services/analytics/GAListener.d.ts +0 -11
- package/services/analytics/GAListener.d.ts.map +0 -1
- package/services/analytics/index.d.ts +0 -2
- package/services/analytics/index.d.ts.map +0 -1
- package/services/dnd/DndActor.d.ts +0 -31
- package/services/dnd/DndActor.d.ts.map +0 -1
- package/services/dnd/DndContext.d.ts +0 -23
- package/services/dnd/DndContext.d.ts.map +0 -1
- package/services/dnd/DragGhost.d.ts +0 -26
- package/services/dnd/DragGhost.d.ts.map +0 -1
- package/services/dnd/helpers.d.ts +0 -2
- package/services/dnd/helpers.d.ts.map +0 -1
- package/services/dnd/index.d.ts +0 -4
- package/services/dnd/index.d.ts.map +0 -1
- package/services/index.d.ts +0 -15
- package/services/index.d.ts.map +0 -1
- package/services/routing/HistoryAdaptedRouter.d.ts +0 -21
- package/services/routing/HistoryAdaptedRouter.d.ts.map +0 -1
- package/services/routing/NextRouterAdapter.d.ts +0 -18
- package/services/routing/NextRouterAdapter.d.ts.map +0 -1
- package/services/routing/StubAdaptedRouter.d.ts +0 -13
- package/services/routing/StubAdaptedRouter.d.ts.map +0 -1
- package/services/routing/index.d.ts +0 -4
- package/services/routing/index.d.ts.map +0 -1
- package/types/components/Button.d.ts +0 -16
- package/types/components/Button.d.ts.map +0 -1
- package/types/components/Checkbox.d.ts +0 -4
- package/types/components/Checkbox.d.ts.map +0 -1
- package/types/components/LabeledInput.d.ts +0 -8
- package/types/components/LabeledInput.d.ts.map +0 -1
- package/types/components/Modals.d.ts +0 -14
- package/types/components/Modals.d.ts.map +0 -1
- package/types/components/Spinner.d.ts +0 -4
- package/types/components/Spinner.d.ts.map +0 -1
- package/types/components/TextInput.d.ts +0 -18
- package/types/components/TextInput.d.ts.map +0 -1
- package/types/components/index.d.ts +0 -7
- package/types/components/index.d.ts.map +0 -1
- package/types/contexts.d.ts +0 -161
- package/types/contexts.d.ts.map +0 -1
- package/types/dataQuery.d.ts +0 -27
- package/types/dataQuery.d.ts.map +0 -1
- package/types/dnd.d.ts +0 -56
- package/types/dnd.d.ts.map +0 -1
- package/types/index.d.ts +0 -9
- package/types/index.d.ts.map +0 -1
- package/types/objects.d.ts +0 -25
- package/types/objects.d.ts.map +0 -1
- package/types/props.d.ts +0 -147
- package/types/props.d.ts.map +0 -1
- package/types/tables.d.ts +0 -162
- package/types/tables.d.ts.map +0 -1
- package/types/validation.d.ts +0 -21
- package/types/validation.d.ts.map +0 -1
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"getSearchFilter.d.ts","sourceRoot":"","sources":["../../../data/querying/getSearchFilter.ts"],"names":[],"mappings":"AAAA,wBAAgB,eAAe,CAAC,YAAY,EAAE,MAAM,GAAG,CAAC,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,OAAO,CAAC,CAsBnF"}
|
package/data/querying/index.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../data/querying/index.ts"],"names":[],"mappings":"AAAA,cAAc,uBAAuB,CAAC;AACtC,cAAc,oBAAoB,CAAC;AACnC,cAAc,mBAAmB,CAAC;AAClC,cAAc,gBAAgB,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"runDataQuery.d.ts","sourceRoot":"","sources":["../../../data/querying/runDataQuery.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAMxC,wBAAgB,YAAY,CAAC,KAAK,EAAE,QAAQ,EAAE,KAAK,EAAE,EAAE,OAAO,EAAE,SAAS,CAAC,KAAK,CAAC,EAAE,QAAQ,CAAC,EAAE,CAAC,IAAI,EAAE,KAAK,KAAK,MAAM,EAAE;;;EAkCrH"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../data/validation/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,QAAQ,EAAE,oBAAoB,EAAC,MAAM,YAAY,CAAC;AAC1D,OAAO,EAAC,wBAAwB,EAAC,MAAM,4BAA4B,CAAC;AACpE,OAAO,EAAC,eAAe,EAAC,MAAM,mBAAmB,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"mergeValidation.d.ts","sourceRoot":"","sources":["../../../data/validation/mergeValidation.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,aAAa,EAAC,MAAM,aAAa,CAAC;AAE1C,wBAAgB,eAAe,CAAC,CAAC,EAAE,gBAAgB,EAAE,aAAa,EAAE,gBAAgB,EAAE,aAAa,iBAMlG"}
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { ICanBeInvalid } from '../../types';
|
|
2
|
-
import { Metadata } from "../../types";
|
|
3
|
-
export declare const blankValidationState: ICanBeInvalid;
|
|
4
|
-
export declare function validate<T>(value: T, meta: Metadata<T>): ICanBeInvalid;
|
|
5
|
-
export declare function validateRec<T>(value: T, path: any[], meta: Metadata<T>): ICanBeInvalid;
|
|
6
|
-
//# sourceMappingURL=validate.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"validate.d.ts","sourceRoot":"","sources":["../../../data/validation/validate.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,aAAa,EAAC,MAAM,aAAa,CAAC;AAE1C,OAAO,EAAC,QAAQ,EAAC,MAAM,aAAa,CAAC;AAErC,eAAO,MAAM,oBAAoB,EAAE,aAAkB,CAAC;AAEtD,wBAAgB,QAAQ,CAAC,CAAC,EAAE,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,CAAC,CAAC,CAAC,GAAG,aAAa,CAEtE;AAED,wBAAgB,WAAW,CAAC,CAAC,EAAE,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,GAAG,EAAE,EAAE,IAAI,EAAE,QAAQ,CAAC,CAAC,CAAC,GAAG,aAAa,CA4BtF"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"validateServerErrorState.d.ts","sourceRoot":"","sources":["../../../data/validation/validateServerErrorState.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,aAAa,EAAC,MAAM,aAAa,CAAC;AAE1C,wBAAgB,wBAAwB,CAAC,CAAC,SAAS,GAAG,EAAE,gBAAgB,EAAE,CAAC,EAAE,iBAAiB,EAAE,CAAC,EAAE,gBAAgB,EAAE,aAAa,iBAmBjI"}
|
package/helpers/Debouncer.d.ts
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
export declare class Debouncer<Request, Response> {
|
|
2
|
-
private execute;
|
|
3
|
-
private handleResult;
|
|
4
|
-
constructor(execute: (rq: Request) => Promise<Response>, handleResult: (res: Response, rq: Request) => void);
|
|
5
|
-
private isLoading;
|
|
6
|
-
private isPending;
|
|
7
|
-
pendingRequest: Request;
|
|
8
|
-
private lastPendingRequestTime;
|
|
9
|
-
private debounceDelay;
|
|
10
|
-
private timer;
|
|
11
|
-
run(rq: Request): void;
|
|
12
|
-
private onTimer;
|
|
13
|
-
isInProgress(): boolean;
|
|
14
|
-
}
|
|
15
|
-
//# sourceMappingURL=Debouncer.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Debouncer.d.ts","sourceRoot":"","sources":["../../helpers/Debouncer.ts"],"names":[],"mappings":"AAAA,qBAAa,SAAS,CAAC,OAAO,EAAE,QAAQ;IAEhC,OAAO,CAAC,OAAO;IACf,OAAO,CAAC,YAAY;gBADZ,OAAO,EAAE,CAAC,EAAE,EAAE,OAAO,KAAK,OAAO,CAAC,QAAQ,CAAC,EAC3C,YAAY,EAAE,CAAC,GAAG,EAAE,QAAQ,EAAE,EAAE,EAAE,OAAO,KAAK,IAAI;IAI9D,OAAO,CAAC,SAAS,CAAS;IAC1B,OAAO,CAAC,SAAS,CAAS;IACnB,cAAc,EAAE,OAAO,CAAC;IAC/B,OAAO,CAAC,sBAAsB,CAAqB;IACnD,OAAO,CAAC,aAAa,CAAO;IAC5B,OAAO,CAAC,KAAK,CAAa;IAEnB,GAAG,CAAC,EAAE,EAAE,OAAO,GAAG,IAAI;IAO7B,OAAO,CAAC,OAAO;IAwBR,YAAY;CAGtB"}
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { IEditable, IAnalyticableOnChange } from "../types";
|
|
3
|
-
/**
|
|
4
|
-
* IEditableDebouncer component options.
|
|
5
|
-
*/
|
|
6
|
-
export interface IEditableDebouncerOptions {
|
|
7
|
-
/** Pass true to disable debouncing */
|
|
8
|
-
disableDebounce?: boolean;
|
|
9
|
-
/** Debounce delay in ms */
|
|
10
|
-
debounceDelay?: number;
|
|
11
|
-
}
|
|
12
|
-
/**
|
|
13
|
-
* IEditableDebouncer component props.
|
|
14
|
-
*/
|
|
15
|
-
export interface IEditableDebouncerProps<T> extends IEditable<T>, IEditableDebouncerOptions, IAnalyticableOnChange<T> {
|
|
16
|
-
/**
|
|
17
|
-
* Render wrapped component.
|
|
18
|
-
*/
|
|
19
|
-
render: (props: IEditable<T>) => React.ReactNode;
|
|
20
|
-
}
|
|
21
|
-
/**
|
|
22
|
-
* Wrap other IEditable components into the IEditableDebouncer to debounce onValueChange calls.
|
|
23
|
-
* Useful for search inputs, or any other components that cause expensive computations on change.
|
|
24
|
-
* Wrapped component still behaves as controlled component, and will react to external value changes immediately.
|
|
25
|
-
*/
|
|
26
|
-
export declare const IEditableDebouncer: <T>(props: IEditableDebouncerProps<T>) => React.ReactElement<any, string | React.JSXElementConstructor<any>>;
|
|
27
|
-
//# sourceMappingURL=IEditableDebouncer.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"IEditableDebouncer.d.ts","sourceRoot":"","sources":["../../helpers/IEditableDebouncer.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,SAAS,EAAE,qBAAqB,EAAE,MAAM,UAAU,CAAC;AAK5D;;GAEG;AACH,MAAM,WAAW,yBAAyB;IACtC,sCAAsC;IACtC,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,2BAA2B;IAC3B,aAAa,CAAC,EAAE,MAAM,CAAC;CAC1B;AAED;;GAEG;AACH,MAAM,WAAW,uBAAuB,CAAC,CAAC,CAAE,SAAQ,SAAS,CAAC,CAAC,CAAC,EAAE,yBAAyB,EAAE,qBAAqB,CAAC,CAAC,CAAC;IACjH;;OAEG;IACH,MAAM,EAAE,CAAC,KAAK,EAAE,SAAS,CAAC,CAAC,CAAC,KAAK,KAAK,CAAC,SAAS,CAAC;CACpD;AA+CD;;;;GAIG;AACH,eAAO,MAAM,kBAAkB,8GAAsE,CAAC"}
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
interface MapRecord<TValue> {
|
|
2
|
-
status: LoadingStatus;
|
|
3
|
-
value?: TValue | null;
|
|
4
|
-
}
|
|
5
|
-
/**
|
|
6
|
-
* An callback to pass to LazyLoadedMap constructor
|
|
7
|
-
*/
|
|
8
|
-
export declare type LazyLoadedMapLoadCallback<TKey, TValue> = (pending: TKey[]) => Promise<[TKey, TValue][]>;
|
|
9
|
-
export declare const UNKNOWN: unique symbol;
|
|
10
|
-
export declare const LOADING: unique symbol;
|
|
11
|
-
export declare const LOADED: unique symbol;
|
|
12
|
-
export declare const PENDING: unique symbol;
|
|
13
|
-
export declare const FAILED: unique symbol;
|
|
14
|
-
export declare type LoadingStatus = (typeof UNKNOWN) | (typeof LOADING) | (typeof PENDING) | (typeof LOADED) | (typeof FAILED);
|
|
15
|
-
/**
|
|
16
|
-
* Represents a Map (key/value collection), which can be batch-loaded as required with async requests.
|
|
17
|
-
* TKey is expected to be value type - i.e. can be used as Map key.
|
|
18
|
-
*/
|
|
19
|
-
export declare class LazyLoadedMap<TKey, TValue> {
|
|
20
|
-
private runBatch;
|
|
21
|
-
private onBatchComplete?;
|
|
22
|
-
map: Map<TKey, MapRecord<TValue>>;
|
|
23
|
-
/**
|
|
24
|
-
* Creates new LazyLoadedMap
|
|
25
|
-
* @param runBatch Will be called with all missing Keys was requested with get() method on previous JS tick.
|
|
26
|
-
* @param onBatchComplete Will be called each time another batch is completed, and result is added to the map.
|
|
27
|
-
*/
|
|
28
|
-
constructor(runBatch: LazyLoadedMapLoadCallback<TKey, TValue>, onBatchComplete?: () => void);
|
|
29
|
-
/**
|
|
30
|
-
* Gets an element from map.
|
|
31
|
-
* If the element is missing, it will be scheduled for loading at the next JS tick, and null will be returned.
|
|
32
|
-
* @param key Key to fetch.
|
|
33
|
-
* @param fetchIfAbsent Should we enqueue the key for loading, if it's missing. True by default.
|
|
34
|
-
* Pass false to understand if element is fetched, without forcing it to fetch.
|
|
35
|
-
*/
|
|
36
|
-
get(key: TKey, fetchIfAbsent?: boolean): TValue | null;
|
|
37
|
-
/**
|
|
38
|
-
* Adds an element to the map. Added element can be queried with get() method, no fetch will occur for elements added with set() method.
|
|
39
|
-
* @param key Element's key
|
|
40
|
-
* @param value Element's value
|
|
41
|
-
*/
|
|
42
|
-
set(key: TKey, value: TValue): void;
|
|
43
|
-
private fetch;
|
|
44
|
-
}
|
|
45
|
-
export {};
|
|
46
|
-
//# sourceMappingURL=LazyLoadedMap.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"LazyLoadedMap.d.ts","sourceRoot":"","sources":["../../helpers/LazyLoadedMap.ts"],"names":[],"mappings":"AAEA,UAAU,SAAS,CAAC,MAAM;IACtB,MAAM,EAAE,aAAa,CAAC;IACtB,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CACzB;AAED;;GAEG;AACH,oBAAY,yBAAyB,CAAC,IAAI,EAAE,MAAM,IAAI,CAAC,OAAO,EAAE,IAAI,EAAE,KAAK,OAAO,CAAC,CAAC,IAAI,EAAE,MAAM,CAAC,EAAE,CAAC,CAAC;AAErG,eAAO,MAAM,OAAO,eAAoB,CAAC;AACzC,eAAO,MAAM,OAAO,eAAoB,CAAC;AACzC,eAAO,MAAM,MAAM,eAAmB,CAAC;AACvC,eAAO,MAAM,OAAO,eAAoB,CAAC;AACzC,eAAO,MAAM,MAAM,eAAmB,CAAC;AAEvC,oBAAY,aAAa,GAAG,CAAC,OAAO,OAAO,CAAC,GAAG,CAAC,OAAO,OAAO,CAAC,GAAG,CAAC,OAAO,OAAO,CAAC,GAAG,CAAC,OAAO,MAAM,CAAC,GAAG,CAAC,OAAO,MAAM,CAAC,CAAC;AAEvH;;;GAGG;AACH,qBAAa,aAAa,CAAC,IAAI,EAAE,MAAM;IAQvB,OAAO,CAAC,QAAQ;IAA2C,OAAO,CAAC,eAAe,CAAC;IAP/F,GAAG,EAAE,GAAG,CAAC,IAAI,EAAE,SAAS,CAAC,MAAM,CAAC,CAAC,CAAa;IAE9C;;;;OAIG;gBACiB,QAAQ,EAAE,yBAAyB,CAAC,IAAI,EAAE,MAAM,CAAC,EAAU,eAAe,CAAC,EAAE,MAAM,IAAI;IAI3G;;;;;;OAMG;IACI,GAAG,CAAC,GAAG,EAAE,IAAI,EAAE,aAAa,GAAE,OAAc,GAAG,MAAM,GAAG,IAAI;IAYnE;;;;OAIG;IACI,GAAG,CAAC,GAAG,EAAE,IAAI,EAAE,KAAK,EAAE,MAAM;IAInC,OAAO,CAAC,KAAK,CAqBV;CACN"}
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
import { ColumnsConfig, DataColumnProps } from '../types';
|
|
2
|
-
export declare const applyColumnsConfig: <TItem, TId>(columns: DataColumnProps<TItem, TId, any>[], config: ColumnsConfig) => DataColumnProps<TItem, TId, any>[];
|
|
3
|
-
export declare const getColumnsConfig: <TItem, TId>(columns: DataColumnProps<TItem, TId, any>[], config: ColumnsConfig) => ColumnsConfig;
|
|
4
|
-
//# sourceMappingURL=applyColumnsConfig.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"applyColumnsConfig.d.ts","sourceRoot":"","sources":["../../helpers/applyColumnsConfig.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AAI1D,eAAO,MAAM,kBAAkB,oEAAgE,aAAa,uCAI3G,CAAC;AAEF,eAAO,MAAM,gBAAgB,oEAAgE,aAAa,kBAkBzG,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"arrayToMatrix.d.ts","sourceRoot":"","sources":["../../helpers/arrayToMatrix.ts"],"names":[],"mappings":"AAAA,wBAAgB,aAAa,CAAC,KAAK,EAAE,KAAK,CAAC,GAAG,CAAC,EAAE,OAAO,EAAE,MAAM,WAM/D"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"batchOnNextTick.d.ts","sourceRoot":"","sources":["../../helpers/batchOnNextTick.ts"],"names":[],"mappings":"AAAA,wBAAgB,eAAe,CAAC,CAAC,EAAE,QAAQ,EAAE,CAAC,KAAK,EAAE,CAAC,EAAE,KAAK,IAAI,GAAG,CAAC,GAAG,CAAC,EAAE,CAAC,KAAK,IAAI,CAepF"}
|
package/helpers/browser.d.ts
DELETED
package/helpers/browser.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"browser.d.ts","sourceRoot":"","sources":["../../helpers/browser.ts"],"names":[],"mappings":"AAAA,oBAAY,OAAO;IACf,OAAO,IAAA;IACP,KAAK,IAAA;IACL,EAAE,IAAA;IACF,IAAI,IAAA;IACJ,MAAM,IAAA;IACN,MAAM,IAAA;IACN,KAAK,IAAA;CACR;AAED,wBAAgB,UAAU,YAuBzB"}
|
package/helpers/closest.d.ts
DELETED
package/helpers/closest.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"closest.d.ts","sourceRoot":"","sources":["../../helpers/closest.ts"],"names":[],"mappings":"AAAA,wBAAgB,OAAO,CAAC,OAAO,EAAE,WAAW,EAAE,QAAQ,EAAE,MAAM,GAAG,WAAW,GAAG,WAAW,GAAG,IAAI,CAiBhG"}
|
package/helpers/cookie.d.ts
DELETED
package/helpers/cookie.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"cookie.d.ts","sourceRoot":"","sources":["../../helpers/cookie.ts"],"names":[],"mappings":"AAAA,wBAAgB,SAAS,CAAC,IAAI,EAAE,MAAM,UAGrC;AAGD,wBAAgB,SAAS,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,GAAG,QA2BnE;AAED,wBAAgB,YAAY,CAAC,IAAI,EAAE,MAAM,QAExC"}
|
package/helpers/cx.d.ts
DELETED
package/helpers/cx.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"cx.d.ts","sourceRoot":"","sources":["../../helpers/cx.ts"],"names":[],"mappings":";AAAA,OAAO,UAAU,MAAM,YAAY,CAAC;AAEpC,wBAAgB,EAAE,CAAC,GAAG,IAAI,EAAE,QAAQ,CAAC,OAAO,UAAU,CAAC,UAEtD"}
|
package/helpers/events.d.ts
DELETED
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
export declare function isClickableChildClicked(e: React.SyntheticEvent<Element>): boolean;
|
|
3
|
-
export declare function isChildFocusable(e: React.FocusEvent<HTMLElement>): boolean;
|
|
4
|
-
export declare function isChildHasClass(target: EventTarget, currentTarget: Node, classNames: string[]): boolean;
|
|
5
|
-
export declare function handleSpaceKey(e: any, cb: any): void;
|
|
6
|
-
//# sourceMappingURL=events.d.ts.map
|
package/helpers/events.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"events.d.ts","sourceRoot":"","sources":["../../helpers/events.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAG/B,wBAAgB,uBAAuB,CAAC,CAAC,EAAE,KAAK,CAAC,cAAc,CAAC,OAAO,CAAC,GAAG,OAAO,CAEjF;AAED,wBAAgB,gBAAgB,CAAC,CAAC,EAAE,KAAK,CAAC,UAAU,CAAC,WAAW,CAAC,GAAG,OAAO,CAE1E;AAED,wBAAgB,eAAe,CAAC,MAAM,EAAE,WAAW,EAAE,aAAa,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,GAAG,OAAO,CASvG;AAED,wBAAgB,cAAc,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,GAAG,GAAG,IAAI,CAKpD"}
|
package/helpers/formatBytes.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"formatBytes.d.ts","sourceRoot":"","sources":["../../helpers/formatBytes.ts"],"names":[],"mappings":"AAAA,wBAAgB,WAAW,CAAC,KAAK,EAAE,MAAM,EAAE,QAAQ,SAAI,UAUtD"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"getDefaultColumnsConfig.d.ts","sourceRoot":"","sources":["../../helpers/getDefaultColumnsConfig.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AAG1D,eAAO,MAAM,uBAAuB,4EAWnC,CAAC"}
|
package/helpers/getOffset.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"getOffset.d.ts","sourceRoot":"","sources":["../../helpers/getOffset.ts"],"names":[],"mappings":"AAAA,wBAAgB,SAAS,CAAC,OAAO,EAAE,OAAO;;;EAOzC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"getOrderBetween.d.ts","sourceRoot":"","sources":["../../helpers/getOrderBetween.ts"],"names":[],"mappings":"AAEA,wBAAgB,eAAe,CAAC,MAAM,EAAE,MAAM,GAAG,IAAI,EAAE,MAAM,EAAE,MAAM,GAAG,IAAI,GAAG,MAAM,CA+BpF"}
|
package/helpers/index.d.ts
DELETED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
export * from './withMods';
|
|
2
|
-
export * from './events';
|
|
3
|
-
export * from './parseIconViewbox';
|
|
4
|
-
export * from './Debouncer';
|
|
5
|
-
export * from './arrayToMatrix';
|
|
6
|
-
export * from './cx';
|
|
7
|
-
export * from './mouseCoords';
|
|
8
|
-
export * from './browser';
|
|
9
|
-
export * from './LazyLoadedMap';
|
|
10
|
-
export * from './IEditableDebouncer';
|
|
11
|
-
export * from './urlParser';
|
|
12
|
-
export * from './cookie';
|
|
13
|
-
export * from './screenSize';
|
|
14
|
-
export * from './getOrderBetween';
|
|
15
|
-
export * from './urlUtils';
|
|
16
|
-
export * from './parseToCSSProperties';
|
|
17
|
-
export * from './getOffset';
|
|
18
|
-
export * from './closest';
|
|
19
|
-
export * from './applyColumnsConfig';
|
|
20
|
-
export * from './getDefaultColumnsConfig';
|
|
21
|
-
export * from './formatBytes';
|
|
22
|
-
export * from './numericInputCalculations';
|
|
23
|
-
export * from './mobile';
|
|
24
|
-
export * from './ssr';
|
|
25
|
-
//# sourceMappingURL=index.d.ts.map
|
package/helpers/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../helpers/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAC3B,cAAc,UAAU,CAAC;AACzB,cAAc,oBAAoB,CAAC;AACnC,cAAc,aAAa,CAAC;AAC5B,cAAc,iBAAiB,CAAC;AAChC,cAAc,MAAM,CAAC;AACrB,cAAc,eAAe,CAAC;AAC9B,cAAc,WAAW,CAAC;AAC1B,cAAc,iBAAiB,CAAC;AAChC,cAAc,sBAAsB,CAAC;AACrC,cAAc,aAAa,CAAC;AAC5B,cAAc,UAAU,CAAC;AACzB,cAAc,cAAc,CAAC;AAC7B,cAAc,mBAAmB,CAAC;AAClC,cAAc,YAAY,CAAC;AAC3B,cAAc,wBAAwB,CAAC;AACvC,cAAc,aAAa,CAAC;AAC5B,cAAc,WAAW,CAAC;AAC1B,cAAc,sBAAsB,CAAC;AACrC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,eAAe,CAAC;AAC9B,cAAc,4BAA4B,CAAC;AAC3C,cAAc,UAAU,CAAC;AACzB,cAAc,OAAO,CAAC"}
|
package/helpers/mobile.d.ts
DELETED
package/helpers/mobile.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"mobile.d.ts","sourceRoot":"","sources":["../../helpers/mobile.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AAGxC,eAAO,MAAM,QAAQ,eAGpB,CAAC;AAEF,eAAO,MAAM,oBAAoB,EAAE,QAAQ,CAAC,GAAG,CAQ9C,CAAC"}
|
package/helpers/mouseCoords.d.ts
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
export declare const mouseCoords: {
|
|
2
|
-
mousePageX: number;
|
|
3
|
-
mousePageY: number;
|
|
4
|
-
mouseDx: number;
|
|
5
|
-
mouseDy: number;
|
|
6
|
-
mouseDxSmooth: number;
|
|
7
|
-
mouseDySmooth: number;
|
|
8
|
-
mouseDownPageX: number;
|
|
9
|
-
mouseDownPageY: number;
|
|
10
|
-
buttons: number;
|
|
11
|
-
};
|
|
12
|
-
//# sourceMappingURL=mouseCoords.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"mouseCoords.d.ts","sourceRoot":"","sources":["../../helpers/mouseCoords.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,WAAW;;;;;;;;;;CAUvB,CAAC"}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
declare type calculatedDTO = {
|
|
2
|
-
value: number;
|
|
3
|
-
step?: number;
|
|
4
|
-
action?: "incr" | "decr";
|
|
5
|
-
};
|
|
6
|
-
export declare const getCalculatedValue: ({ value, step, action }: calculatedDTO) => number;
|
|
7
|
-
export declare const getDecimalLength: (value: number) => number;
|
|
8
|
-
export {};
|
|
9
|
-
//# sourceMappingURL=numericInputCalculations.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"numericInputCalculations.d.ts","sourceRoot":"","sources":["../../helpers/numericInputCalculations.ts"],"names":[],"mappings":"AAAA,aAAK,aAAa,GAAG;IACjB,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;CAC3B,CAAC;AAEF,eAAO,MAAM,kBAAkB,4BAAuC,aAAa,KAAE,MAiBpF,CAAA;AAED,eAAO,MAAM,gBAAgB,UAAU,MAAM,KAAE,MAI9C,CAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"parseIconViewbox.d.ts","sourceRoot":"","sources":["../../helpers/parseIconViewbox.ts"],"names":[],"mappings":";AAEA,eAAO,MAAM,gBAAgB,aAAqB,MAAM;;;sCAGtD,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"parseToCSSProperties.d.ts","sourceRoot":"","sources":["../../helpers/parseToCSSProperties.tsx"],"names":[],"mappings":"AAAA,wBAAgB,0BAA0B,CAAC,MAAM,EAAE,MAAM,OAWxD"}
|
package/helpers/screenSize.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"screenSize.d.ts","sourceRoot":"","sources":["../../helpers/screenSize.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,UAAU;;;CAGtB,CAAC"}
|
package/helpers/ssr.d.ts
DELETED
package/helpers/ssr.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ssr.d.ts","sourceRoot":"","sources":["../../helpers/ssr.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,YAAY,SAAgC,CAAC"}
|
package/helpers/urlParser.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"urlParser.d.ts","sourceRoot":"","sources":["../../helpers/urlParser.ts"],"names":[],"mappings":"AAGA,iBAAS,SAAS,CAAC,KAAK,EAAE,GAAG,OAS5B;AAED,iBAAS,KAAK,CAAC,WAAW,EAAE,MAAM,OAQjC;AAWD,eAAO,MAAM,SAAS;;;CAGrB,CAAC"}
|
package/helpers/urlUtils.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"urlUtils.d.ts","sourceRoot":"","sources":["../../helpers/urlUtils.ts"],"names":[],"mappings":"AAAA,wBAAgB,KAAK,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAI1C;AAED,wBAAgB,WAAW,CAAC,GAAG,EAAE,MAAM,EAAE,OAAO,EAAE;IAAE,KAAK,EAAE,OAAO,CAAA;CAAE,UAYnE"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"useMemoWithDestructor.d.ts","sourceRoot":"","sources":["../../helpers/useMemoWithDestructor.ts"],"names":[],"mappings":"AAEA,wBAAgB,qBAAqB,CAAC,CAAC,EAAE,OAAO,EAAE,MAAM,CAAC,EAAE,UAAU,EAAE,CAAC,KAAK,EAAE,CAAC,KAAK,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,KAQpG"}
|
package/helpers/withMods.d.ts
DELETED
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
import { IHasCX, CX } from '../types';
|
|
3
|
-
export declare function withMods<TProps extends IHasCX, TMods = {}>(Component: React.ComponentType<TProps> | React.NamedExoticComponent<TProps>, getCx: (props: Readonly<TProps & TMods>) => CX, getProps?: (props: Readonly<TProps & TMods>) => Partial<TProps>): React.ForwardRefExoticComponent<React.PropsWithoutRef<TProps & TMods> & React.RefAttributes<any>>;
|
|
4
|
-
//# sourceMappingURL=withMods.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"withMods.d.ts","sourceRoot":"","sources":["../../helpers/withMods.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,UAAU,CAAC;AAEtC,wBAAgB,QAAQ,CAAC,MAAM,SAAS,MAAM,EAAE,KAAK,GAAG,EAAE,EACtD,SAAS,EAAE,KAAK,CAAC,aAAa,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,oBAAoB,CAAC,MAAM,CAAC,EAC3E,KAAK,EAAE,CAAC,KAAK,EAAE,QAAQ,CAAC,MAAM,GAAG,KAAK,CAAC,KAAK,EAAE,EAC9C,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,QAAQ,CAAC,MAAM,GAAG,KAAK,CAAC,KAAK,OAAO,CAAC,MAAM,CAAC,qGAOlE"}
|
package/hooks/index.d.ts
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
export * from './useAppMobileHeight';
|
|
2
|
-
export * from './useColumnsConfig';
|
|
3
|
-
export * from './useVirtualList';
|
|
4
|
-
export * from './useScrollShadows';
|
|
5
|
-
export * from './useUuiError';
|
|
6
|
-
export * from './useForceUpdate';
|
|
7
|
-
export * from './useUuiServices';
|
|
8
|
-
//# sourceMappingURL=index.d.ts.map
|
package/hooks/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../hooks/index.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAC;AACrC,cAAc,oBAAoB,CAAC;AACnC,cAAc,kBAAkB,CAAC;AACjC,cAAc,oBAAoB,CAAC;AACnC,cAAc,eAAe,CAAC;AAC9B,cAAc,kBAAkB,CAAC;AACjC,cAAc,kBAAkB,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"useAppMobileHeight.d.ts","sourceRoot":"","sources":["../../hooks/useAppMobileHeight.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,kBAAkB,YAc9B,CAAC"}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { ColumnsConfig, DataColumnProps } from '../types';
|
|
2
|
-
export declare const useColumnsConfig: <TItem, TId>(initialColumns: DataColumnProps<TItem, TId, any>[], columnsConfig: ColumnsConfig) => {
|
|
3
|
-
columns: DataColumnProps<TItem, TId, any>[];
|
|
4
|
-
config: ColumnsConfig;
|
|
5
|
-
defaultConfig: ColumnsConfig;
|
|
6
|
-
};
|
|
7
|
-
//# sourceMappingURL=useColumnsConfig.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"useColumnsConfig.d.ts","sourceRoot":"","sources":["../../hooks/useColumnsConfig.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AAG1D,eAAO,MAAM,gBAAgB,kFAA8E,aAAa;;;;CAMvH,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"useForceUpdate.d.ts","sourceRoot":"","sources":["../../hooks/useForceUpdate.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,cAAc,kBAG1B,CAAC"}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
interface UseScrollShadowsProps {
|
|
2
|
-
root?: HTMLElement;
|
|
3
|
-
}
|
|
4
|
-
interface UseScrollShadowsApi {
|
|
5
|
-
vertical: boolean;
|
|
6
|
-
horizontalLeft: boolean;
|
|
7
|
-
horizontalRight: boolean;
|
|
8
|
-
}
|
|
9
|
-
export declare function useScrollShadows({ root }: UseScrollShadowsProps): UseScrollShadowsApi;
|
|
10
|
-
export {};
|
|
11
|
-
//# sourceMappingURL=useScrollShadows.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"useScrollShadows.d.ts","sourceRoot":"","sources":["../../hooks/useScrollShadows.ts"],"names":[],"mappings":"AAEA,UAAU,qBAAqB;IAC3B,IAAI,CAAC,EAAE,WAAW,CAAC;CACtB;AAED,UAAU,mBAAmB;IACzB,QAAQ,EAAE,OAAO,CAAC;IAClB,cAAc,EAAE,OAAO,CAAC;IACxB,eAAe,EAAE,OAAO,CAAC;CAC5B;AAED,wBAAgB,gBAAgB,CAAC,EAAE,IAAI,EAAE,EAAE,qBAAqB,GAAG,mBAAmB,CAwErF"}
|
package/hooks/useUuiError.d.ts
DELETED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { ApiCallInfo, ApiRecoveryReason, UuiError, UuiErrorInfo } from '../types';
|
|
2
|
-
export declare type UuiErrorType = 'error' | 'notification' | 'recovery';
|
|
3
|
-
export declare type UuiRecoveryErrorInfo = {
|
|
4
|
-
title: string;
|
|
5
|
-
subtitle: string;
|
|
6
|
-
};
|
|
7
|
-
export interface UseUuiErrorOptions {
|
|
8
|
-
errorConfig: Record<string, UuiErrorInfo>;
|
|
9
|
-
recoveryConfig: Record<ApiRecoveryReason, UuiRecoveryErrorInfo>;
|
|
10
|
-
}
|
|
11
|
-
export interface UseUuiErrorProps {
|
|
12
|
-
getErrorInfo: (error: Error | UuiError | ApiCallInfo, defaultErrorInfo: UuiErrorInfo) => UuiErrorInfo;
|
|
13
|
-
options: UseUuiErrorOptions;
|
|
14
|
-
}
|
|
15
|
-
export declare const useUuiError: (props: UseUuiErrorProps) => {
|
|
16
|
-
errorType: string;
|
|
17
|
-
errorInfo: UuiErrorInfo;
|
|
18
|
-
} | {
|
|
19
|
-
errorType: string;
|
|
20
|
-
errorInfo: ApiCallInfo[];
|
|
21
|
-
} | {
|
|
22
|
-
errorType: string;
|
|
23
|
-
errorInfo: UuiRecoveryErrorInfo;
|
|
24
|
-
};
|
|
25
|
-
//# sourceMappingURL=useUuiError.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"useUuiError.d.ts","sourceRoot":"","sources":["../../hooks/useUuiError.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,iBAAiB,EAAE,QAAQ,EAAE,YAAY,EAAE,MAAM,UAAU,CAAC;AAGlF,oBAAY,YAAY,GAAG,OAAO,GAAG,cAAc,GAAG,UAAU,CAAC;AAEjE,oBAAY,oBAAoB,GAAG;IAC/B,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,MAAM,CAAC;CACpB,CAAC;AAEF,MAAM,WAAW,kBAAkB;IAC/B,WAAW,EAAE,MAAM,CAAC,MAAM,EAAE,YAAY,CAAC,CAAC;IAC1C,cAAc,EAAE,MAAM,CAAC,iBAAiB,EAAE,oBAAoB,CAAC,CAAC;CACnE;AAED,MAAM,WAAW,gBAAgB;IAC7B,YAAY,EAAE,CAAC,KAAK,EAAE,KAAK,GAAG,QAAQ,GAAG,WAAW,EAAE,gBAAgB,EAAE,YAAY,KAAK,YAAY,CAAC;IACtG,OAAO,EAAE,kBAAkB,CAAC;CAC/B;AAED,eAAO,MAAM,WAAW,UAAW,gBAAgB;;;;;;;;;CAuElD,CAAC"}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { IUuiServicesProps } from "../services";
|
|
2
|
-
import { CommonContexts, IRouterContext } from "../types";
|
|
3
|
-
export interface IUseUuiServicesProps<TApi, TAppContext> extends IUuiServicesProps<TApi> {
|
|
4
|
-
appContext?: TAppContext;
|
|
5
|
-
router: IRouterContext;
|
|
6
|
-
}
|
|
7
|
-
export declare const useUuiServices: <TApi, TAppContext>(props: IUseUuiServicesProps<TApi, TAppContext>) => {
|
|
8
|
-
services: CommonContexts<TApi, TAppContext>;
|
|
9
|
-
};
|
|
10
|
-
//# sourceMappingURL=useUuiServices.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"useUuiServices.d.ts","sourceRoot":"","sources":["../../hooks/useUuiServices.ts"],"names":[],"mappings":"AAAA,OAAO,EACqD,iBAAiB,EAK5E,MAAM,aAAa,CAAC;AACrB,OAAO,EAAkB,cAAc,EAAE,cAAc,EAAE,MAAM,UAAU,CAAC;AAI1E,MAAM,WAAW,oBAAoB,CAAC,IAAI,EAAE,WAAW,CAAE,SAAQ,iBAAiB,CAAC,IAAI,CAAC;IACpF,UAAU,CAAC,EAAE,WAAW,CAAC;IACzB,MAAM,EAAE,cAAc,CAAC;CAC1B;AAED,eAAO,MAAM,cAAc;;CA2C1B,CAAC"}
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import * as React from "react";
|
|
2
|
-
import type { IEditable, DataTableState } from '../';
|
|
3
|
-
interface UuiScrollPositionValues {
|
|
4
|
-
scrollTop: number;
|
|
5
|
-
clientHeight: number;
|
|
6
|
-
}
|
|
7
|
-
interface UseVirtualListApi<List, ScrollContainer> {
|
|
8
|
-
offsetY: number;
|
|
9
|
-
listOffset: number;
|
|
10
|
-
estimatedHeight: number;
|
|
11
|
-
handleScroll: React.DOMAttributes<ScrollContainer>['onScroll'];
|
|
12
|
-
listContainerRef: React.MutableRefObject<List>;
|
|
13
|
-
scrollContainerRef: React.MutableRefObject<ScrollContainer>;
|
|
14
|
-
scrollToIndex(index: number): void;
|
|
15
|
-
}
|
|
16
|
-
interface UseVirtualListProps extends IEditable<Pick<DataTableState, 'focusedIndex' | 'topIndex' | 'visibleCount'>> {
|
|
17
|
-
rowsCount: number;
|
|
18
|
-
blockAlign?: number;
|
|
19
|
-
onScroll?(value: Partial<UuiScrollPositionValues>): void;
|
|
20
|
-
}
|
|
21
|
-
export declare function useVirtualList<List extends HTMLElement = any, ScrollContainer extends HTMLElement = any>({ onValueChange, value, rowsCount, onScroll, blockAlign, }: UseVirtualListProps): UseVirtualListApi<List, ScrollContainer>;
|
|
22
|
-
export {};
|
|
23
|
-
//# sourceMappingURL=useVirtualList.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"useVirtualList.d.ts","sourceRoot":"","sources":["../../hooks/useVirtualList.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,KAAK,EAAE,SAAS,EAAE,cAAc,EAAE,MAAM,KAAK,CAAC;AAErD,UAAU,uBAAuB;IAC7B,SAAS,EAAE,MAAM,CAAC;IAClB,YAAY,EAAE,MAAM,CAAC;CACxB;AAED,UAAU,iBAAiB,CAAC,IAAI,EAAE,eAAe;IAC7C,OAAO,EAAE,MAAM,CAAC;IAChB,UAAU,EAAE,MAAM,CAAC;IACnB,eAAe,EAAE,MAAM,CAAC;IACxB,YAAY,EAAE,KAAK,CAAC,aAAa,CAAC,eAAe,CAAC,CAAC,UAAU,CAAC,CAAC;IAC/D,gBAAgB,EAAE,KAAK,CAAC,gBAAgB,CAAC,IAAI,CAAC,CAAC;IAC/C,kBAAkB,EAAE,KAAK,CAAC,gBAAgB,CAAC,eAAe,CAAC,CAAC;IAC5D,aAAa,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC;CACtC;AAED,UAAU,mBAAoB,SAAQ,SAAS,CAAC,IAAI,CAAC,cAAc,EAAE,cAAc,GAAG,UAAU,GAAG,cAAc,CAAC,CAAC;IAC/G,SAAS,EAAE,MAAM,CAAC;IAClB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,QAAQ,CAAC,CAAC,KAAK,EAAE,OAAO,CAAC,uBAAuB,CAAC,GAAG,IAAI,CAAC;CAC5D;AAED,wBAAgB,cAAc,CAAC,IAAI,SAAS,WAAW,GAAG,GAAG,EAAE,eAAe,SAAS,WAAW,GAAG,GAAG,EAAE,EACtG,aAAa,EACb,KAAK,EACL,SAAS,EACT,QAAQ,EACR,UAAe,GAClB,EAAE,mBAAmB,GAAG,iBAAiB,CAAC,IAAI,EAAE,eAAe,CAAC,CAqGhE"}
|