@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
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { ButtonProps } from '@epam/uui-components';
|
|
3
|
+
import { ControlSize, ButtonMode } from '../types';
|
|
4
|
+
import '../../assets/styles/variables/buttons/button.scss';
|
|
5
|
+
export declare type ButtonColor = 'accent' | 'primary' | 'secondary' | 'negative';
|
|
6
|
+
export declare const allButtonColors: ButtonColor[];
|
|
7
|
+
export interface ButtonMods {
|
|
8
|
+
size?: ControlSize | '18';
|
|
9
|
+
mode?: ButtonMode;
|
|
10
|
+
color?: ButtonColor;
|
|
11
|
+
}
|
|
12
|
+
export declare function applyButtonMods(mods: ButtonMods & ButtonProps): string[];
|
|
13
|
+
export declare const Button: import("react").ForwardRefExoticComponent<Pick<ButtonProps & ButtonMods, "cx" | "onClick" | "rawProps" | "tabIndex" | "isDisabled" | "link" | "count" | "isOpen" | "isDropdown" | "toggleDropdownOpening" | "caption" | "dropdownIcon" | "dropdownIconPosition" | "countPosition" | "isLinkActive" | "href" | "target" | "icon" | "iconPosition" | "onIconClick" | "clickAnalyticsEvent" | "onClear" | "placeholder" | "forwardedRef" | "clearIcon" | "captionCX" | keyof ButtonMods> & import("react").RefAttributes<any>>;
|
|
14
|
+
//# sourceMappingURL=Button.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Button.d.ts","sourceRoot":"","sources":["../../../components/buttons/Button.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAuB,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAExE,OAAO,EAAE,WAAW,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;AAGnD,OAAO,mDAAmD,CAAC;AAE3D,oBAAY,WAAW,GAAG,QAAQ,GAAG,SAAS,GAAG,WAAW,GAAG,UAAU,CAAC;AAC1E,eAAO,MAAM,eAAe,EAAE,WAAW,EAAmD,CAAC;AAI7F,MAAM,WAAW,UAAU;IACvB,IAAI,CAAC,EAAE,WAAW,GAAG,IAAI,CAAC;IAC1B,IAAI,CAAC,EAAE,UAAU,CAAC;IAClB,KAAK,CAAC,EAAE,WAAW,CAAC;CACvB;AAED,wBAAgB,eAAe,CAAC,IAAI,EAAE,UAAU,GAAG,WAAW,YAQ7D;AAED,eAAO,MAAM,MAAM,6fAOlB,CAAC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { IconButtonBaseProps } from '@epam/uui-components';
|
|
3
|
+
import '../../assets/styles/variables/buttons/iconButton.scss';
|
|
4
|
+
export declare type IconColor = 'info' | 'success' | 'warning' | 'error' | 'secondary' | 'default';
|
|
5
|
+
export declare const allIconColors: IconColor[];
|
|
6
|
+
export interface IconButtonMods {
|
|
7
|
+
color?: IconColor;
|
|
8
|
+
}
|
|
9
|
+
export interface IconButtonProps extends IconButtonBaseProps, IconButtonMods {
|
|
10
|
+
}
|
|
11
|
+
export declare const IconButton: import("react").ForwardRefExoticComponent<IconButtonProps & IconButtonMods & import("react").RefAttributes<any>>;
|
|
12
|
+
//# sourceMappingURL=IconButton.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IconButton.d.ts","sourceRoot":"","sources":["../../../components/buttons/IconButton.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAE,mBAAmB,EAA+B,MAAM,sBAAsB,CAAC;AAExF,OAAO,uDAAuD,CAAC;AAG/D,oBAAY,SAAS,GAAG,MAAM,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,GAAG,WAAW,GAAG,SAAS,CAAC;AAC3F,eAAO,MAAM,aAAa,EAAE,SAAS,EAAoE,CAAC;AAE1G,MAAM,WAAW,cAAc;IAC3B,KAAK,CAAC,EAAE,SAAS,CAAC;CACrB;AAED,MAAM,WAAW,eAAgB,SAAQ,mBAAmB,EAAE,cAAc;CAAI;AAShF,eAAO,MAAM,UAAU,kHAAgF,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { ButtonProps } from '@epam/uui-components';
|
|
3
|
+
import * as types from '../types';
|
|
4
|
+
import '../../assets/styles/variables/buttons/linkButton.scss';
|
|
5
|
+
export interface LinkButtonMods {
|
|
6
|
+
size?: types.ControlSize | '42';
|
|
7
|
+
}
|
|
8
|
+
export declare const LinkButton: import("react").ForwardRefExoticComponent<Pick<ButtonProps & LinkButtonMods, "cx" | "onClick" | "rawProps" | "tabIndex" | "isDisabled" | "link" | "count" | "isOpen" | "isDropdown" | "toggleDropdownOpening" | "caption" | "dropdownIcon" | "dropdownIconPosition" | "countPosition" | "isLinkActive" | "href" | "target" | "icon" | "iconPosition" | "onIconClick" | "clickAnalyticsEvent" | "onClear" | "placeholder" | "forwardedRef" | "size" | "clearIcon" | "captionCX"> & import("react").RefAttributes<any>>;
|
|
9
|
+
//# sourceMappingURL=LinkButton.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"LinkButton.d.ts","sourceRoot":"","sources":["../../../components/buttons/LinkButton.tsx"],"names":[],"mappings":";AACA,OAAO,EAAU,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAG3D,OAAO,KAAK,KAAK,MAAM,UAAU,CAAC;AAElC,OAAO,uDAAuD,CAAC;AAI/D,MAAM,WAAW,cAAc;IAC3B,IAAI,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,IAAI,CAAC;CACnC;AAWD,eAAO,MAAM,UAAU,ufAGpB,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { ButtonProps } from '@epam/uui-components';
|
|
3
|
+
import '../../assets/styles/variables/buttons/tabButton.scss';
|
|
4
|
+
export interface TabButtonMods {
|
|
5
|
+
size?: '36' | '48' | '60';
|
|
6
|
+
withNotify?: boolean;
|
|
7
|
+
}
|
|
8
|
+
export declare const TabButton: import("react").ForwardRefExoticComponent<Pick<ButtonProps & TabButtonMods, "cx" | "onClick" | "rawProps" | "tabIndex" | "isDisabled" | "link" | "count" | "isOpen" | "isDropdown" | "toggleDropdownOpening" | "caption" | "dropdownIcon" | "dropdownIconPosition" | "countPosition" | "isLinkActive" | "href" | "target" | "icon" | "iconPosition" | "onIconClick" | "clickAnalyticsEvent" | "onClear" | "placeholder" | "forwardedRef" | "clearIcon" | "captionCX" | keyof TabButtonMods> & import("react").RefAttributes<any>>;
|
|
9
|
+
//# sourceMappingURL=TabButton.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TabButton.d.ts","sourceRoot":"","sources":["../../../components/buttons/TabButton.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAU,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAI3D,OAAO,sDAAsD,CAAC;AAG9D,MAAM,WAAW,aAAa;IAC1B,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IAC1B,UAAU,CAAC,EAAE,OAAO,CAAC;CACxB;AAYD,eAAO,MAAM,SAAS,mgBAMnB,CAAC"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { ButtonProps } from '@epam/uui-components';
|
|
3
|
+
import { TabButtonMods } from './TabButton';
|
|
4
|
+
export declare const VerticalTabButton: import("react").ForwardRefExoticComponent<Pick<ButtonProps & TabButtonMods, "cx" | "onClick" | "rawProps" | "tabIndex" | "isDisabled" | "link" | "count" | "isOpen" | "isDropdown" | "toggleDropdownOpening" | "caption" | "dropdownIcon" | "dropdownIconPosition" | "countPosition" | "isLinkActive" | "href" | "target" | "icon" | "iconPosition" | "onIconClick" | "clickAnalyticsEvent" | "onClear" | "placeholder" | "forwardedRef" | "clearIcon" | "captionCX" | keyof TabButtonMods> & import("react").RefAttributes<any>>;
|
|
5
|
+
//# sourceMappingURL=VerticalTabButton.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"VerticalTabButton.d.ts","sourceRoot":"","sources":["../../../components/buttons/VerticalTabButton.tsx"],"names":[],"mappings":";AAEA,OAAO,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AACnD,OAAO,EAAa,aAAa,EAAE,MAAM,aAAa,CAAC;AAQvD,eAAO,MAAM,iBAAiB,mgBAA+E,CAAC"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { ButtonMods } from '../Button';
|
|
2
|
+
import { DocBuilder } from '@epam/uui-docs';
|
|
3
|
+
import { ButtonProps } from '@epam/uui-components';
|
|
4
|
+
declare const ButtonDoc: DocBuilder<ButtonProps & ButtonMods>;
|
|
5
|
+
export = ButtonDoc;
|
|
6
|
+
//# sourceMappingURL=button.doc.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"button.doc.d.ts","sourceRoot":"","sources":["../../../../components/buttons/docs/button.doc.tsx"],"names":[],"mappings":"AACA,OAAO,EAA2B,UAAU,EAAE,MAAM,WAAW,CAAC;AAChE,OAAO,EAAe,UAAU,EAAE,MAAM,gBAAgB,CAAC;AACzD,OAAO,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAKnD,QAAA,MAAM,SAAS,sCAWkB,CAAC;AAElC,SAAS,SAAS,CAAC"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { LinkButtonMods } from '../LinkButton';
|
|
2
|
+
import { DocBuilder } from '@epam/uui-docs';
|
|
3
|
+
import { ButtonProps } from '@epam/uui-components';
|
|
4
|
+
declare const LinkButtonDoc: DocBuilder<ButtonProps & LinkButtonMods>;
|
|
5
|
+
export = LinkButtonDoc;
|
|
6
|
+
//# sourceMappingURL=linkButton.doc.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"linkButton.doc.d.ts","sourceRoot":"","sources":["../../../../components/buttons/docs/linkButton.doc.ts"],"names":[],"mappings":"AAAA,OAAO,EAAc,cAAc,EAAE,MAAM,eAAe,CAAC;AAC3D,OAAO,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC;AAC5C,OAAO,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAInD,QAAA,MAAM,aAAa,0CAOc,CAAC;AAElC,SAAS,aAAa,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"helper.d.ts","sourceRoot":"","sources":["../../../components/buttons/helper.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAEnD,wBAAgB,YAAY,CAAC,KAAK,EAAE,WAAW,YAsB9C"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../components/buttons/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC;AACzB,cAAc,cAAc,CAAC;AAC7B,cAAc,cAAc,CAAC;AAC7B,cAAc,aAAa,CAAC;AAC5B,cAAc,qBAAqB,CAAC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export * from './buttons';
|
|
2
|
+
export * from './inputs';
|
|
3
|
+
export * from './layout';
|
|
4
|
+
export * from './overlays';
|
|
5
|
+
export * from './pickers';
|
|
6
|
+
export * from './typography';
|
|
7
|
+
export * from './widgets';
|
|
8
|
+
export * from './tables';
|
|
9
|
+
export * from './types';
|
|
10
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../components/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAC;AAC1B,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,YAAY,CAAC;AAC3B,cAAc,WAAW,CAAC;AAC1B,cAAc,cAAc,CAAC;AAC7B,cAAc,WAAW,CAAC;AAC1B,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { CheckboxProps } from '@epam/uui-components';
|
|
3
|
+
import '../../assets/styles/variables/inputs/checkbox.scss';
|
|
4
|
+
export interface CheckboxMods {
|
|
5
|
+
size?: '12' | '18';
|
|
6
|
+
theme?: 'light' | 'dark';
|
|
7
|
+
}
|
|
8
|
+
export declare function applyCheckboxMods(mods: CheckboxMods & CheckboxProps): string[];
|
|
9
|
+
export declare const Checkbox: import("react").ForwardRefExoticComponent<CheckboxProps & CheckboxMods & import("react").RefAttributes<any>>;
|
|
10
|
+
//# sourceMappingURL=Checkbox.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Checkbox.d.ts","sourceRoot":"","sources":["../../../components/inputs/Checkbox.tsx"],"names":[],"mappings":";AACA,OAAO,EAA2B,aAAa,EAAE,MAAM,sBAAsB,CAAC;AAM9E,OAAO,oDAAoD,CAAC;AAE5D,MAAM,WAAW,YAAY;IACzB,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;IACnB,KAAK,CAAC,EAAE,OAAO,GAAG,MAAM,CAAC;CAC5B;AAED,wBAAgB,iBAAiB,CAAC,IAAI,EAAE,YAAY,GAAG,aAAa,YAMnE;AAED,eAAO,MAAM,QAAQ,8GAGlB,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { RadioInputProps } from '@epam/uui-components';
|
|
3
|
+
import '../../assets/styles/variables/inputs/radioInput.scss';
|
|
4
|
+
export interface RadioInputMods {
|
|
5
|
+
size?: '12' | '18';
|
|
6
|
+
}
|
|
7
|
+
export declare const RadioInput: import("react").ForwardRefExoticComponent<RadioInputProps & RadioInputMods & import("react").RefAttributes<any>>;
|
|
8
|
+
//# sourceMappingURL=RadioInput.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RadioInput.d.ts","sourceRoot":"","sources":["../../../components/inputs/RadioInput.tsx"],"names":[],"mappings":";AACA,OAAO,EAA+B,eAAe,EAAE,MAAM,sBAAsB,CAAC;AACpF,OAAO,sDAAsD,CAAC;AAI9D,MAAM,WAAW,cAAc;IAC3B,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;CACtB;AAUD,eAAO,MAAM,UAAU,kHAA8G,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { SwitchProps } from '@epam/uui-components';
|
|
3
|
+
import '../../assets/styles/variables/inputs/switch.scss';
|
|
4
|
+
export interface SwitchMods {
|
|
5
|
+
size?: '12' | '18' | '24';
|
|
6
|
+
}
|
|
7
|
+
export declare function applySwitchMods(mods: SwitchMods & SwitchProps): string[];
|
|
8
|
+
export declare const Switch: import("react").ForwardRefExoticComponent<SwitchProps & SwitchMods & import("react").RefAttributes<any>>;
|
|
9
|
+
//# sourceMappingURL=Switch.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Switch.d.ts","sourceRoot":"","sources":["../../../components/inputs/Switch.tsx"],"names":[],"mappings":";AACA,OAAO,EAAuB,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAExE,OAAO,kDAAkD,CAAC;AAE1D,MAAM,WAAW,UAAU;IACvB,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;CAC7B;AAED,wBAAgB,eAAe,CAAC,IAAI,EAAE,UAAU,GAAG,WAAW,YAM7D;AAED,eAAO,MAAM,MAAM,0GAAgE,CAAC"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IEditableDebouncerOptions } from '@epam/uui-core';
|
|
3
|
+
import { TextInputProps } from '@epam/uui-components';
|
|
4
|
+
import { IHasEditMode, ControlSize } from '../types';
|
|
5
|
+
import '../../assets/styles/variables/inputs/textInput.scss';
|
|
6
|
+
export interface TextInputMods extends IHasEditMode {
|
|
7
|
+
size?: ControlSize;
|
|
8
|
+
}
|
|
9
|
+
export declare function applyTextInputMods(mods: TextInputMods): string[];
|
|
10
|
+
export declare const TextInput: React.ForwardRefExoticComponent<Pick<TextInputProps & TextInputMods, "id" | "value" | "cx" | "onClick" | "rawProps" | "tabIndex" | "isDisabled" | "name" | "onValueChange" | "isInvalid" | "validationMessage" | "validationProps" | "isReadonly" | "isRequired" | "isOpen" | "isDropdown" | "toggleDropdownOpening" | "caption" | "dropdownIcon" | "icon" | "iconPosition" | "onIconClick" | "placeholder" | "type" | "getValueChangeAnalyticsEvent" | "prefix" | "inputMode" | "maxLength" | "onCancel" | "onAccept" | "onKeyDown" | "onFocus" | "onBlur" | "autoFocus" | "autoComplete" | "suffix" | "acceptIcon" | "cancelIcon" | "inputCx" | "renderInput" | keyof TextInputMods> & React.RefAttributes<any>>;
|
|
11
|
+
export declare class SearchInput extends React.Component<TextInputProps & TextInputMods & IEditableDebouncerOptions, {}> {
|
|
12
|
+
render(): JSX.Element;
|
|
13
|
+
}
|
|
14
|
+
//# sourceMappingURL=TextInput.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TextInput.d.ts","sourceRoot":"","sources":["../../../components/inputs/TextInput.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAgC,yBAAyB,EAAE,MAAM,gBAAgB,CAAC;AACzF,OAAO,EAA6B,cAAc,EAAE,MAAM,sBAAsB,CAAC;AACjF,OAAO,EAAE,YAAY,EAAY,WAAW,EAAE,MAAM,UAAU,CAAC;AAG/D,OAAO,qDAAqD,CAAC;AAK7D,MAAM,WAAW,aAAc,SAAQ,YAAY;IAC/C,IAAI,CAAC,EAAE,WAAW,CAAC;CACtB;AAED,wBAAgB,kBAAkB,CAAC,IAAI,EAAE,aAAa,YAOrD;AAED,eAAO,MAAM,SAAS,orBAOrB,CAAC;AAEF,qBAAa,WAAY,SAAQ,KAAK,CAAC,SAAS,CAAC,cAAc,GAAG,aAAa,GAAG,yBAAyB,EAAE,EAAE,CAAC;IAC5G,MAAM;CAmBT"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { DocBuilder } from '@epam/uui-docs';
|
|
2
|
+
import { CheckboxProps } from '@epam/uui-components';
|
|
3
|
+
import { CheckboxMods } from '../Checkbox';
|
|
4
|
+
declare const CheckboxDoc: DocBuilder<CheckboxProps & CheckboxMods>;
|
|
5
|
+
export = CheckboxDoc;
|
|
6
|
+
//# sourceMappingURL=checkbox.doc.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"checkbox.doc.d.ts","sourceRoot":"","sources":["../../../../components/inputs/docs/checkbox.doc.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC;AAC5C,OAAO,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;AACrD,OAAO,EAAY,YAAY,EAAE,MAAM,aAAa,CAAC;AAIrD,QAAA,MAAM,WAAW,0CAKgB,CAAC;AAElC,SAAS,WAAW,CAAC"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { DocBuilder } from '@epam/uui-docs';
|
|
2
|
+
import { RadioInputProps } from '@epam/uui-components';
|
|
3
|
+
import { RadioInputMods } from '../RadioInput';
|
|
4
|
+
declare const RadioInputDoc: DocBuilder<RadioInputProps & RadioInputMods>;
|
|
5
|
+
export = RadioInputDoc;
|
|
6
|
+
//# sourceMappingURL=radioInput.doc.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"radioInput.doc.d.ts","sourceRoot":"","sources":["../../../../components/inputs/docs/radioInput.doc.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAiB,MAAM,gBAAgB,CAAC;AAC3D,OAAO,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAC;AACvD,OAAO,EAAc,cAAc,EAAE,MAAM,eAAe,CAAC;AAI3D,QAAA,MAAM,aAAa,8CAIc,CAAC;AAElC,SAAS,aAAa,CAAC"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { DocBuilder } from '@epam/uui-docs';
|
|
2
|
+
import { SwitchProps } from '@epam/uui-components';
|
|
3
|
+
import { SwitchMods } from '../Switch';
|
|
4
|
+
declare const SwitchDoc: DocBuilder<SwitchProps & SwitchMods>;
|
|
5
|
+
export = SwitchDoc;
|
|
6
|
+
//# sourceMappingURL=switch.doc.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"switch.doc.d.ts","sourceRoot":"","sources":["../../../../components/inputs/docs/switch.doc.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC;AAC5C,OAAO,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AACnD,OAAO,EAAU,UAAU,EAAE,MAAM,WAAW,CAAC;AAI/C,QAAA,MAAM,SAAS,sCAIkB,CAAC;AAElC,SAAS,SAAS,CAAC"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { DocBuilder } from '@epam/uui-docs';
|
|
2
|
+
import { TextInputProps } from '@epam/uui-components';
|
|
3
|
+
import { TextInputMods } from '../TextInput';
|
|
4
|
+
declare const TextInputDoc: DocBuilder<TextInputProps & TextInputMods>;
|
|
5
|
+
export = TextInputDoc;
|
|
6
|
+
//# sourceMappingURL=textInput.doc.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"textInput.doc.d.ts","sourceRoot":"","sources":["../../../../components/inputs/docs/textInput.doc.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAA8B,MAAM,gBAAgB,CAAC;AACxE,OAAO,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAC;AACtD,OAAO,EAAa,aAAa,EAAE,MAAM,cAAc,CAAC;AAIxD,QAAA,MAAM,YAAY,4CAYe,CAAC;AAElC,SAAS,YAAY,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../components/inputs/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAC3B,cAAc,cAAc,CAAC;AAC7B,cAAc,UAAU,CAAC;AACzB,cAAc,aAAa,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { AccordionProps } from '@epam/uui-components';
|
|
3
|
+
import '../../assets/styles/variables/layout/accordion.scss';
|
|
4
|
+
export interface AccordionMods {
|
|
5
|
+
mode?: 'block' | 'inline';
|
|
6
|
+
padding?: '0' | '6' | '12' | '18';
|
|
7
|
+
}
|
|
8
|
+
export declare const Accordion: import("react").ForwardRefExoticComponent<AccordionProps & AccordionMods & import("react").RefAttributes<any>>;
|
|
9
|
+
//# sourceMappingURL=Accordion.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Accordion.d.ts","sourceRoot":"","sources":["../../../components/layout/Accordion.tsx"],"names":[],"mappings":";AACA,OAAO,EAA6B,cAAc,EAAE,MAAM,sBAAsB,CAAC;AAEjF,OAAO,qDAAqD,CAAC;AAG7D,MAAM,WAAW,aAAa;IAC1B,IAAI,CAAC,EAAE,OAAO,GAAG,QAAQ,CAAC;IAC1B,OAAO,CAAC,EAAE,GAAG,GAAG,GAAG,GAAG,IAAI,GAAG,IAAI,CAAC;CACrC;AAWD,eAAO,MAAM,SAAS,gHAEnB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ControlGroup.d.ts","sourceRoot":"","sources":["../../../components/layout/ControlGroup.tsx"],"names":[],"mappings":";AAEA,OAAO,EAAmC,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AAE1F,eAAO,MAAM,YAAY,mGAAiE,CAAC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
export declare type FlexCellMods = {};
|
|
3
|
+
export declare const FlexCell: React.ForwardRefExoticComponent<import("@epam/uui-core").IHasCX & import("@epam/uui-core").IClickable & import("@epam/uui-core").IHasRawProps<HTMLDivElement> & React.Attributes & {
|
|
4
|
+
width?: number | "auto" | "100%";
|
|
5
|
+
minWidth?: number;
|
|
6
|
+
grow?: number;
|
|
7
|
+
shrink?: number;
|
|
8
|
+
textAlign?: "left" | "right" | "center";
|
|
9
|
+
alignSelf?: string;
|
|
10
|
+
children?: any;
|
|
11
|
+
} & React.RefAttributes<any>>;
|
|
12
|
+
//# sourceMappingURL=FlexCell.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FlexCell.d.ts","sourceRoot":"","sources":["../../../../components/layout/FlexItems/FlexCell.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAM/B,oBAAY,YAAY,GAAG,EAAE,CAAC;AAE9B,eAAO,MAAM,QAAQ;;;;;;;;6BAEnB,CAAC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { RowSizeMod } from '../../types';
|
|
3
|
+
export interface RowMods extends RowSizeMod {
|
|
4
|
+
topShadow?: boolean;
|
|
5
|
+
borderBottom?: boolean;
|
|
6
|
+
padding?: '6' | '12' | '18' | '24';
|
|
7
|
+
vPadding?: '12' | '18' | '24' | '36' | '48';
|
|
8
|
+
spacing?: '6' | '12' | '18';
|
|
9
|
+
margin?: '12' | '24';
|
|
10
|
+
}
|
|
11
|
+
export declare const FlexRow: import("react").ForwardRefExoticComponent<import("@epam/uui-core").IHasCX & import("@epam/uui-core").IClickable & import("react").Attributes & import("@epam/uui-core").IHasRawProps<HTMLDivElement> & {
|
|
12
|
+
alignItems?: "top" | "center" | "bottom" | "stretch";
|
|
13
|
+
children?: any;
|
|
14
|
+
} & RowMods & import("react").RefAttributes<any>>;
|
|
15
|
+
//# sourceMappingURL=FlexRow.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FlexRow.d.ts","sourceRoot":"","sources":["../../../../components/layout/FlexItems/FlexRow.tsx"],"names":[],"mappings":";AAEA,OAAO,EAAE,UAAU,EAAE,MAAM,aAAa,CAAC;AAGzC,MAAM,WAAW,OAAQ,SAAQ,UAAU;IACvC,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,OAAO,CAAC,EAAE,GAAG,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IACnC,QAAQ,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IAC5C,OAAO,CAAC,EAAE,GAAG,GAAG,IAAI,GAAG,IAAI,CAAC;IAC5B,MAAM,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;CACxB;AAED,eAAO,MAAM,OAAO;;;iDAWlB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FlexSpacer.d.ts","sourceRoot":"","sources":["../../../../components/layout/FlexItems/FlexSpacer.tsx"],"names":[],"mappings":"AAEA,eAAO,MAAM,UAAU,wEAAgB,CAAC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import '../../../assets/styles/variables/layout/panel.scss';
|
|
3
|
+
export interface PanelMods {
|
|
4
|
+
shadow?: boolean;
|
|
5
|
+
margin?: '24';
|
|
6
|
+
background?: boolean;
|
|
7
|
+
}
|
|
8
|
+
export declare const Panel: import("react").ForwardRefExoticComponent<import("@epam/uui-core").IHasCX & import("@epam/uui-core").IHasChildren & import("@epam/uui-core").IClickable & import("@epam/uui-core").IHasRawProps<HTMLDivElement> & import("@epam/uui-core").IHasForwardedRef<HTMLDivElement> & import("@epam/uui-core").IAnalyticableClick & {
|
|
9
|
+
style?: import("react").CSSProperties;
|
|
10
|
+
} & PanelMods & import("react").RefAttributes<any>>;
|
|
11
|
+
//# sourceMappingURL=Panel.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Panel.d.ts","sourceRoot":"","sources":["../../../../components/layout/FlexItems/Panel.tsx"],"names":[],"mappings":";AAEA,OAAO,oDAAoD,CAAC;AAG5D,MAAM,WAAW,SAAS;IACtB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,MAAM,CAAC,EAAE,IAAI,CAAC;IACd,UAAU,CAAC,EAAE,OAAO,CAAC;CACxB;AAED,eAAO,MAAM,KAAK;;mDAMhB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../components/layout/FlexItems/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAC3B,cAAc,WAAW,CAAC;AAC1B,cAAc,cAAc,CAAC;AAC7B,cAAc,SAAS,CAAC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { ControlIconProps } from '@epam/uui-components';
|
|
3
|
+
import { IconColor } from '../buttons';
|
|
4
|
+
import '../../assets/styles/variables/layout/iconContainer.scss';
|
|
5
|
+
export interface IconContainerMods {
|
|
6
|
+
color?: IconColor;
|
|
7
|
+
}
|
|
8
|
+
export declare function applyIconContainerMods(mods: IconContainerMods): string[];
|
|
9
|
+
export declare const IconContainer: import("react").ForwardRefExoticComponent<ControlIconProps & IconContainerMods & import("react").RefAttributes<any>>;
|
|
10
|
+
//# sourceMappingURL=IconContainer.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IconContainer.d.ts","sourceRoot":"","sources":["../../../components/layout/IconContainer.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAqC,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AAE3F,OAAO,EAAE,SAAS,EAAE,MAAM,YAAY,CAAC;AAEvC,OAAO,yDAAyD,CAAC;AAEjE,MAAM,WAAW,iBAAiB;IAC9B,KAAK,CAAC,EAAE,SAAS,CAAC;CACrB;AAED,wBAAgB,sBAAsB,CAAC,IAAI,EAAE,iBAAiB,YAK7D;AAED,eAAO,MAAM,aAAa,sHAIzB,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import * as types from '../types';
|
|
3
|
+
import { LabeledInputProps } from '@epam/uui-components';
|
|
4
|
+
import '../../assets/styles/variables/layout/labeledInput.scss';
|
|
5
|
+
export interface LabeledInputMods extends types.SizeMod {
|
|
6
|
+
}
|
|
7
|
+
export declare const LabeledInput: import("react").ForwardRefExoticComponent<LabeledInputProps & LabeledInputMods & import("react").RefAttributes<any>>;
|
|
8
|
+
//# sourceMappingURL=LabeledInput.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"LabeledInput.d.ts","sourceRoot":"","sources":["../../../components/layout/LabeledInput.tsx"],"names":[],"mappings":";AAAA,OAAO,KAAK,KAAK,MAAM,UAAU,CAAC;AAElC,OAAO,EAAmC,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AAG1F,OAAO,wDAAwD,CAAC;AAMhE,MAAM,WAAW,gBAAiB,SAAQ,KAAK,CAAC,OAAO;CAAG;AAU1D,eAAO,MAAM,YAAY,sHAGtB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RadioGroup.d.ts","sourceRoot":"","sources":["../../../components/layout/RadioGroup.tsx"],"names":[],"mappings":";AACA,OAAO,EAA+B,eAAe,EAAE,MAAM,sBAAsB,CAAC;AAIpF,eAAO,MAAM,UAAU,sGAEtB,CAAC"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { ScrollbarProps } from '@epam/uui-components';
|
|
3
|
+
import './ScrollBars.scss';
|
|
4
|
+
import '../../assets/styles/variables/layout/scrollBars.scss';
|
|
5
|
+
export declare const ScrollBars: import("react").ForwardRefExoticComponent<ScrollbarProps & import("react").RefAttributes<any>>;
|
|
6
|
+
//# sourceMappingURL=ScrollBars.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ScrollBars.d.ts","sourceRoot":"","sources":["../../../components/layout/ScrollBars.tsx"],"names":[],"mappings":";AAAA,OAAO,EAA+B,cAAc,EAAE,MAAM,sBAAsB,CAAC;AAEnF,OAAO,mBAAmB,CAAC;AAC3B,OAAO,sDAAsD,CAAC;AAQ9D,eAAO,MAAM,UAAU,gGAA+D,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { VirtualListProps } from '@epam/uui-components';
|
|
3
|
+
import '../../assets/styles/variables/layout/scrollBars.scss';
|
|
4
|
+
import './VirtualList.scss';
|
|
5
|
+
export interface VirtualListMods {
|
|
6
|
+
}
|
|
7
|
+
export declare const VirtualList: import("react").ForwardRefExoticComponent<VirtualListProps<any, any> & VirtualListMods & import("react").RefAttributes<any>>;
|
|
8
|
+
//# sourceMappingURL=VirtualList.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"VirtualList.d.ts","sourceRoot":"","sources":["../../../components/layout/VirtualList.tsx"],"names":[],"mappings":";AACA,OAAO,EAAiC,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AACvF,OAAO,sDAAsD,CAAC;AAC9D,OAAO,oBAAoB,CAAC;AAE5B,MAAM,WAAW,eAAe;CAC/B;AAQD,eAAO,MAAM,WAAW,8HAAoF,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export * from './Accordion';
|
|
2
|
+
export * from './ControlGroup';
|
|
3
|
+
export * from './FlexItems';
|
|
4
|
+
export * from './IconContainer';
|
|
5
|
+
export * from './LabeledInput';
|
|
6
|
+
export * from './RadioGroup';
|
|
7
|
+
export * from './ScrollBars';
|
|
8
|
+
export * from './VirtualList';
|
|
9
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../components/layout/index.ts"],"names":[],"mappings":"AAAA,cAAc,aAAa,CAAC;AAC5B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,aAAa,CAAC;AAC5B,cAAc,iBAAiB,CAAC;AAChC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,cAAc,CAAC;AAC7B,cAAc,cAAc,CAAC;AAC7B,cAAc,eAAe,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Dropdown.d.ts","sourceRoot":"","sources":["../../../components/overlays/Dropdown.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAA2B,aAAa,EAAE,MAAM,sBAAsB,CAAC;AAE9E,qBAAa,QAAS,SAAQ,KAAK,CAAC,SAAS,CAAC,aAAa,EAAE,GAAG,CAAC;IAC7D,MAAM;CAKT"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { DropdownContainerProps } from '@epam/uui-components';
|
|
3
|
+
import '../../assets/styles/variables/overlays/dropdownContainer.scss';
|
|
4
|
+
export interface DropdownContainerMods {
|
|
5
|
+
}
|
|
6
|
+
export declare const DropdownContainer: import("react").ForwardRefExoticComponent<DropdownContainerProps & DropdownContainerMods & import("react").RefAttributes<any>>;
|
|
7
|
+
//# sourceMappingURL=DropdownContainer.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DropdownContainer.d.ts","sourceRoot":"","sources":["../../../components/overlays/DropdownContainer.tsx"],"names":[],"mappings":";AACA,OAAO,EAAiD,sBAAsB,EAAE,MAAM,sBAAsB,CAAC;AAC7G,OAAO,+DAA+D,CAAC;AAGvE,MAAM,WAAW,qBAAqB;CAAG;AASzC,eAAO,MAAM,iBAAiB,gIAAgH,CAAC"}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IDropdownToggler, IHasChildren, VPanelProps, IHasIcon, ICanRedirect, IHasCaption, IDisableable, IAnalyticableClick, IHasCX, IClickable } from '@epam/uui-core';
|
|
3
|
+
export interface IDropdownMenuItemProps extends IHasIcon, ICanRedirect, IHasCX, IDisableable, IAnalyticableClick, IDropdownToggler {
|
|
4
|
+
isSelected?: boolean;
|
|
5
|
+
}
|
|
6
|
+
export interface IDropdownMenuContainer extends VPanelProps {
|
|
7
|
+
onClose(): void;
|
|
8
|
+
closeOnKey?: React.KeyboardEvent<HTMLElement>['key'];
|
|
9
|
+
}
|
|
10
|
+
export declare const DropdownControlKeys: {
|
|
11
|
+
ENTER: string;
|
|
12
|
+
ESCAPE: string;
|
|
13
|
+
LEFT_ARROW: string;
|
|
14
|
+
RIGHT_ARROW: string;
|
|
15
|
+
UP_ARROW: string;
|
|
16
|
+
DOWN_ARROW: string;
|
|
17
|
+
};
|
|
18
|
+
export declare const DropdownMenuBody: React.ForwardRefExoticComponent<IDropdownMenuContainer & React.RefAttributes<any>>;
|
|
19
|
+
export declare const DropdownMenuButton: {
|
|
20
|
+
(props: IDropdownMenuItemProps): JSX.Element;
|
|
21
|
+
displayName: string;
|
|
22
|
+
};
|
|
23
|
+
export declare const DropdownMenuSplitter: (props: IHasCX) => JSX.Element;
|
|
24
|
+
interface IDropdownMenuHeader extends IHasCX, IHasCaption {
|
|
25
|
+
}
|
|
26
|
+
export declare const DropdownMenuHeader: (props: IDropdownMenuHeader) => JSX.Element;
|
|
27
|
+
interface IDropdownSubMenu extends IHasChildren, IHasCaption, IHasIcon, IDropdownMenuItemProps {
|
|
28
|
+
openOnHover?: boolean;
|
|
29
|
+
}
|
|
30
|
+
export declare const DropdownSubMenu: (props: IDropdownSubMenu) => JSX.Element;
|
|
31
|
+
interface IDropdownMenuSwitchButton extends IHasCX, IHasCaption, IHasIcon, IDisableable, IAnalyticableClick, IClickable {
|
|
32
|
+
onValueChange: (value: boolean) => void;
|
|
33
|
+
isSelected: boolean;
|
|
34
|
+
}
|
|
35
|
+
export declare const DropdownMenuSwitchButton: (props: IDropdownMenuSwitchButton) => JSX.Element;
|
|
36
|
+
export {};
|
|
37
|
+
//# sourceMappingURL=DropdownMenu.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DropdownMenu.d.ts","sourceRoot":"","sources":["../../../components/overlays/DropdownMenu.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkD,MAAM,OAAO,CAAC;AAEvE,OAAO,EAAM,gBAAgB,EAAgC,YAAY,EAAE,WAAW,EAAE,QAAQ,EAAE,YAAY,EAAE,WAAW,EACvH,YAAY,EAAE,kBAAkB,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC;AAOjF,MAAM,WAAW,sBAAuB,SAAQ,QAAQ,EAAE,YAAY,EAAE,MAAM,EAAE,YAAY,EAAE,kBAAkB,EAAE,gBAAgB;IAC9H,UAAU,CAAC,EAAE,OAAO,CAAC;CACxB;AAED,MAAM,WAAW,sBAAuB,SAAQ,WAAW;IACvD,OAAO,IAAI,IAAI,CAAC;IAChB,UAAU,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC,WAAW,CAAC,CAAC,KAAK,CAAC,CAAC;CACxD;AAED,eAAO,MAAM,mBAAmB;;;;;;;CAO/B,CAAC;AA6CF,eAAO,MAAM,gBAAgB,oFAI5B,CAAC;AAEF,eAAO,MAAM,kBAAkB;YAAW,sBAAsB;;CA8E/D,CAAC;AAIF,eAAO,MAAM,oBAAoB,UAAW,MAAM,gBAIjD,CAAC;AAEF,UAAU,mBAAoB,SAAQ,MAAM,EAAE,WAAW;CAAG;AAE5D,eAAO,MAAM,kBAAkB,UAAW,mBAAmB,gBAI5D,CAAC;AAEF,UAAU,gBAAiB,SAAQ,YAAY,EAAE,WAAW,EAAE,QAAQ,EAAE,sBAAsB;IAC1F,WAAW,CAAC,EAAE,OAAO,CAAC;CACzB;AAED,eAAO,MAAM,eAAe,UAAW,gBAAgB,gBAyBtD,CAAC;AAEF,UAAU,yBAA0B,SAAQ,MAAM,EAAE,WAAW,EAAE,QAAQ,EAAE,YAAY,EAAE,kBAAkB,EAAE,UAAU;IACnH,aAAa,EAAE,CAAC,KAAK,EAAE,OAAO,KAAK,IAAI,CAAC;IACxC,UAAU,EAAE,OAAO,CAAC;CACvB;AAED,eAAO,MAAM,wBAAwB,UAAW,yBAAyB,gBAmCxE,CAAC"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { ModalFooterCoreProps, ModalWindowProps, ModalBlockerProps, ModalHeaderCoreProps } from '@epam/uui-core';
|
|
3
|
+
import { RowMods } from '../layout';
|
|
4
|
+
import '../../assets/styles/variables/overlays/modals.scss';
|
|
5
|
+
export interface ModalBlockerMods {
|
|
6
|
+
overlay?: boolean;
|
|
7
|
+
}
|
|
8
|
+
export declare const ModalBlocker: React.ForwardRefExoticComponent<ModalBlockerProps & ModalBlockerMods & React.RefAttributes<any>>;
|
|
9
|
+
export interface ModalWindowMods {
|
|
10
|
+
width?: number;
|
|
11
|
+
height?: number | 'auto';
|
|
12
|
+
}
|
|
13
|
+
export declare const ModalWindow: React.ForwardRefExoticComponent<ModalWindowProps & ModalWindowMods & React.RefAttributes<any>>;
|
|
14
|
+
export interface ModalHeaderProps extends RowMods, ModalHeaderCoreProps {
|
|
15
|
+
}
|
|
16
|
+
export declare class ModalHeader extends React.Component<ModalHeaderProps> {
|
|
17
|
+
render(): JSX.Element;
|
|
18
|
+
}
|
|
19
|
+
export interface ModalFooterProps extends RowMods, ModalFooterCoreProps {
|
|
20
|
+
}
|
|
21
|
+
export declare class ModalFooter extends React.Component<ModalFooterProps> {
|
|
22
|
+
render(): JSX.Element;
|
|
23
|
+
}
|
|
24
|
+
//# sourceMappingURL=Modals.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Modals.d.ts","sourceRoot":"","sources":["../../../components/overlays/Modals.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAY,oBAAoB,EAAE,gBAAgB,EAAE,iBAAiB,EAAE,oBAAoB,EAAE,MAAM,gBAAgB,CAAC;AAE3H,OAAO,EAAuB,OAAO,EAAY,MAAM,WAAW,CAAC;AAInE,OAAO,oDAAoD,CAAC;AAG5D,MAAM,WAAW,gBAAgB;IAC7B,OAAO,CAAC,EAAE,OAAO,CAAC;CACrB;AAED,eAAO,MAAM,YAAY,kGAIvB,CAAC;AAEH,MAAM,WAAW,eAAe;IAC5B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;CAC5B;AAED,eAAO,MAAM,WAAW,gGAWvB,CAAC;AAEF,MAAM,WAAW,gBAAiB,SAAQ,OAAO,EAAE,oBAAoB;CAAG;AAE1E,qBAAa,WAAY,SAAQ,KAAK,CAAC,SAAS,CAAC,gBAAgB,CAAC;IAC9D,MAAM;CAiBT;AAED,MAAM,WAAW,gBAAiB,SAAQ,OAAO,EAAE,oBAAoB;CAAG;AAE1E,qBAAa,WAAY,SAAQ,KAAK,CAAC,SAAS,CAAC,gBAAgB,CAAC;IAC9D,MAAM;CAaT"}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { INotification, Icon, IHasChildren, IHasCX, UuiContexts } from '@epam/uui-core';
|
|
3
|
+
import '../../assets/styles/variables/overlays/notificationCard.scss';
|
|
4
|
+
declare type notificationAction = {
|
|
5
|
+
name: string;
|
|
6
|
+
action: () => void;
|
|
7
|
+
};
|
|
8
|
+
export interface DefaultNotificationProps extends INotification, IHasChildren, IHasCX {
|
|
9
|
+
actions?: notificationAction[];
|
|
10
|
+
}
|
|
11
|
+
export interface NotificationCardProps extends DefaultNotificationProps {
|
|
12
|
+
icon?: Icon;
|
|
13
|
+
color: 'info' | 'success' | 'warning' | 'error';
|
|
14
|
+
}
|
|
15
|
+
export declare class NotificationCard extends React.Component<NotificationCardProps> {
|
|
16
|
+
notificationCardNode: HTMLElement | null;
|
|
17
|
+
componentDidMount(): void;
|
|
18
|
+
componentWillUnmount(): void;
|
|
19
|
+
render(): JSX.Element;
|
|
20
|
+
}
|
|
21
|
+
export declare const WarningNotification: (props: DefaultNotificationProps) => JSX.Element;
|
|
22
|
+
export declare const SuccessNotification: (props: DefaultNotificationProps) => JSX.Element;
|
|
23
|
+
export declare const HintNotification: (props: DefaultNotificationProps) => JSX.Element;
|
|
24
|
+
export declare const ErrorNotification: (props: DefaultNotificationProps) => JSX.Element;
|
|
25
|
+
export declare class ClearNotification extends React.Component<{}> {
|
|
26
|
+
static contextType: React.Context<import("@epam/uui-core").CommonContexts<any, any>>;
|
|
27
|
+
context: UuiContexts;
|
|
28
|
+
render(): JSX.Element;
|
|
29
|
+
}
|
|
30
|
+
export {};
|
|
31
|
+
//# sourceMappingURL=NotificationCard.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"NotificationCard.d.ts","sourceRoot":"","sources":["../../../components/overlays/NotificationCard.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,OAAO,EAAE,aAAa,EAAE,IAAI,EAAE,YAAY,EAAE,MAAM,EAAc,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAQpG,OAAO,8DAA8D,CAAC;AAGtE,aAAK,kBAAkB,GAAG;IACtB,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,MAAM,IAAI,CAAC;CACtB,CAAC;AAEF,MAAM,WAAW,wBAAyB,SAAQ,aAAa,EAAE,YAAY,EAAE,MAAM;IACjF,OAAO,CAAC,EAAE,kBAAkB,EAAE,CAAC;CAClC;AAED,MAAM,WAAW,qBAAsB,SAAQ,wBAAwB;IACnE,IAAI,CAAC,EAAE,IAAI,CAAC;IACZ,KAAK,EAAE,MAAM,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,CAAC;CACnD;AAED,qBAAa,gBAAiB,SAAQ,KAAK,CAAC,SAAS,CAAC,qBAAqB,CAAC;IACxE,oBAAoB,EAAE,WAAW,GAAG,IAAI,CAAQ;IAEhD,iBAAiB;IAKjB,oBAAoB;IAKpB,MAAM;CA4BT;AAED,eAAO,MAAM,mBAAmB,UAAW,wBAAwB,gBAC2B,CAAC;AAC/F,eAAO,MAAM,mBAAmB,UAAW,wBAAwB,gBAC2B,CAAC;AAC/F,eAAO,MAAM,gBAAgB,UAAW,wBAAwB,gBACwB,CAAC;AACzF,eAAO,MAAM,iBAAiB,UAAW,wBAAwB,gBACyB,CAAC;AAE3F,qBAAa,iBAAkB,SAAQ,KAAK,CAAC,SAAS,CAAC,EAAE,CAAC;IACtD,OAAc,WAAW,mEAAc;IAChC,OAAO,EAAE,WAAW,CAAC;IAE5B,MAAM;CAMT"}
|