linear-react-components-ui 1.1.26-beta.7 → 1.1.26-beta.8
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/lib/@types/Align.d.ts +2 -0
- package/lib/@types/ButtonTypes.d.ts +1 -0
- package/lib/@types/ColorStyles.d.ts +1 -0
- package/lib/@types/DataCombo.d.ts +1 -0
- package/lib/@types/Icon.d.ts +2 -0
- package/lib/@types/LabelStyles.d.ts +1 -0
- package/lib/@types/Period.d.ts +4 -0
- package/lib/@types/PermissionAttr.d.ts +12 -0
- package/lib/@types/PointerEvents.d.ts +1 -0
- package/lib/@types/Position.d.ts +1 -0
- package/lib/@types/PositionAlert.d.ts +1 -0
- package/lib/@types/Size.d.ts +1 -0
- package/lib/@types/SizePixels.d.ts +1 -0
- package/lib/@types/StorageMock.d.ts +3 -0
- package/lib/alerts/AlertContainer.d.ts +12 -0
- package/lib/alerts/AlertContainer.js +70 -0
- package/lib/alerts/AlertProvider.d.ts +3 -0
- package/lib/alerts/AlertProvider.js +46 -0
- package/lib/alerts/BaseAlert.d.ts +3 -0
- package/lib/alerts/BaseAlert.js +20 -0
- package/lib/alerts/Message.d.ts +3 -0
- package/lib/alerts/Message.js +94 -0
- package/lib/alerts/alert.spec.d.ts +0 -0
- package/lib/alerts/helpers.d.ts +3 -0
- package/lib/alerts/helpers.js +5 -0
- package/lib/alerts/index.d.ts +4 -0
- package/lib/alerts/index.js +6 -0
- package/lib/alerts/types.d.ts +47 -0
- package/lib/alerts/withAlert.d.ts +4 -0
- package/lib/alerts/withAlert.js +14 -0
- package/lib/assets/BaseAlert.css +1 -0
- package/lib/assets/Content.css +1 -0
- package/lib/assets/DefaultFile.css +1 -0
- package/lib/assets/Drawer.css +1 -0
- package/lib/assets/InputTextBase.css +1 -0
- package/lib/assets/button.css +1 -0
- package/lib/assets/gridlayout.css +1 -0
- package/lib/assets/index.css +1 -0
- package/lib/assets/index10.css +1 -0
- package/lib/assets/index11.css +1 -0
- package/lib/assets/index12.css +1 -0
- package/lib/assets/index13.css +1 -0
- package/lib/assets/index14.css +1 -0
- package/lib/assets/index15.css +1 -0
- package/lib/assets/index16.css +1 -0
- package/lib/assets/index17.css +1 -0
- package/lib/assets/index18.css +1 -0
- package/lib/assets/index19.css +1 -0
- package/lib/assets/index2.css +1 -0
- package/lib/assets/index20.css +1 -0
- package/lib/assets/index21.css +1 -0
- package/lib/assets/index22.css +1 -0
- package/lib/assets/index23.css +1 -0
- package/lib/assets/index24.css +1 -0
- package/lib/assets/index25.css +1 -0
- package/lib/assets/index26.css +1 -0
- package/lib/assets/index27.css +1 -0
- package/lib/assets/index28.css +1 -0
- package/lib/assets/index3.css +1 -0
- package/lib/assets/index4.css +1 -0
- package/lib/assets/index5.css +1 -0
- package/lib/assets/index6.css +1 -0
- package/lib/assets/index7.css +1 -0
- package/lib/assets/index8.css +1 -0
- package/lib/assets/index9.css +1 -0
- package/lib/assets/label.css +1 -0
- package/lib/assets/noPermission.css +1 -0
- package/lib/assets/panel.css +1 -0
- package/lib/assets/progressbar.css +1 -0
- package/lib/assets/radio.css +1 -0
- package/lib/assets/skeleton.css +1 -0
- package/lib/assets/table.css +1 -0
- package/lib/assets/tabs.css +1 -0
- package/lib/assets/toolbar.css +1 -0
- package/lib/assets/withDropdown.css +1 -0
- package/lib/avatar/avatar.spec.d.ts +1 -0
- package/lib/avatar/index.d.ts +6 -0
- package/lib/avatar/index.js +55 -0
- package/lib/avatar/types.d.ts +27 -0
- package/lib/badge/badge.spec.d.ts +1 -0
- package/lib/badge/index.d.ts +3 -0
- package/lib/badge/index.js +28 -0
- package/lib/badge/types.d.ts +10 -0
- package/lib/buttons/ActivateButton.d.ts +3 -0
- package/lib/buttons/ActivateButton.js +11 -0
- package/lib/buttons/AddButton.d.ts +3 -0
- package/lib/buttons/AddButton.js +14 -0
- package/lib/buttons/Button.d.ts +6 -0
- package/lib/buttons/Button.js +19 -0
- package/lib/buttons/ButtonGroups.d.ts +6 -0
- package/lib/buttons/ButtonGroups.js +12 -0
- package/lib/buttons/CancelButton.d.ts +3 -0
- package/lib/buttons/CancelButton.js +16 -0
- package/lib/buttons/DangerButton.d.ts +3 -0
- package/lib/buttons/DangerButton.js +17 -0
- package/lib/buttons/DefaultButton.d.ts +6 -0
- package/lib/buttons/DefaultButton.js +95 -0
- package/lib/buttons/DestroyButton.d.ts +3 -0
- package/lib/buttons/DestroyButton.js +23 -0
- package/lib/buttons/EditButton.d.ts +3 -0
- package/lib/buttons/EditButton.js +11 -0
- package/lib/buttons/InactivateButton.d.ts +3 -0
- package/lib/buttons/InactivateButton.js +11 -0
- package/lib/buttons/InfoButton.d.ts +3 -0
- package/lib/buttons/InfoButton.js +17 -0
- package/lib/buttons/PrimaryButton.d.ts +3 -0
- package/lib/buttons/PrimaryButton.js +17 -0
- package/lib/buttons/RestoreButton.d.ts +3 -0
- package/lib/buttons/RestoreButton.js +11 -0
- package/lib/buttons/SaveButton.d.ts +3 -0
- package/lib/buttons/SaveButton.js +16 -0
- package/lib/buttons/SuccessButton.d.ts +3 -0
- package/lib/buttons/SuccessButton.js +17 -0
- package/lib/buttons/WarningButton.d.ts +3 -0
- package/lib/buttons/WarningButton.js +17 -0
- package/lib/buttons/button_container/index.d.ts +10 -0
- package/lib/buttons/button_container/index.js +23 -0
- package/lib/buttons/buttons.spec.d.ts +0 -0
- package/lib/buttons/index.d.ts +17 -0
- package/lib/buttons/index.js +33 -0
- package/lib/buttons/split_button/index.d.ts +3 -0
- package/lib/buttons/split_button/index.js +58 -0
- package/lib/buttons/types.d.ts +46 -0
- package/lib/calendar/DangerCalendar.d.ts +3 -0
- package/lib/calendar/DangerCalendar.js +20 -0
- package/lib/calendar/InfoCalendar.d.ts +3 -0
- package/lib/calendar/InfoCalendar.js +20 -0
- package/lib/calendar/PrimaryCalendar.d.ts +3 -0
- package/lib/calendar/PrimaryCalendar.js +20 -0
- package/lib/calendar/SuccessCalendar.d.ts +3 -0
- package/lib/calendar/SuccessCalendar.js +20 -0
- package/lib/calendar/WarningCalendar.d.ts +3 -0
- package/lib/calendar/WarningCalendar.js +20 -0
- package/lib/calendar/base/Day.d.ts +3 -0
- package/lib/calendar/base/Day.js +37 -0
- package/lib/calendar/base/Month.d.ts +3 -0
- package/lib/calendar/base/Month.js +28 -0
- package/lib/calendar/base/Week.d.ts +3 -0
- package/lib/calendar/base/Week.js +24 -0
- package/lib/calendar/base/helpers.d.ts +59 -0
- package/lib/calendar/base/helpers.js +100 -0
- package/lib/calendar/base/index.d.ts +3 -0
- package/lib/calendar/base/index.js +137 -0
- package/lib/calendar/calendar.spec.d.ts +0 -0
- package/lib/calendar/index.d.ts +8 -0
- package/lib/calendar/index.js +14 -0
- package/lib/calendar/types.d.ts +27 -0
- package/lib/checkbox/checkbox.spec.d.ts +1 -0
- package/lib/checkbox/index.d.ts +9 -0
- package/lib/checkbox/index.js +32 -0
- package/lib/checkbox/types.d.ts +45 -0
- package/lib/chunks/compiler-runtime.Cu50tn6L.js +54 -0
- package/lib/chunks/index.Df3kt2LQ.js +667 -0
- package/lib/chunks/index.aw0XaUkg.js +266 -0
- package/lib/chunks/jsx-runtime.D1SHvdVE.js +282 -0
- package/lib/chunks/lodash.CIAK_hAg.js +3684 -0
- package/lib/chunks/moment.DMLRxgRE.js +2589 -0
- package/lib/chunks/tabs.BvKfeA6Y.js +244 -0
- package/lib/chunks/v1.Ds1rkxUj.js +49 -0
- package/lib/dialog/Alert.d.ts +3 -0
- package/lib/dialog/Alert.js +24 -0
- package/lib/dialog/Custom.d.ts +3 -0
- package/lib/dialog/Custom.js +47 -0
- package/lib/dialog/Error.d.ts +3 -0
- package/lib/dialog/Error.js +24 -0
- package/lib/dialog/Information.d.ts +3 -0
- package/lib/dialog/Information.js +24 -0
- package/lib/dialog/Question.d.ts +3 -0
- package/lib/dialog/Question.js +47 -0
- package/lib/dialog/Warning.d.ts +3 -0
- package/lib/dialog/Warning.js +24 -0
- package/lib/dialog/base/Content.d.ts +3 -0
- package/lib/dialog/base/Content.js +15 -0
- package/lib/dialog/base/Footer.d.ts +3 -0
- package/lib/dialog/base/Footer.js +10 -0
- package/lib/dialog/base/Header.d.ts +3 -0
- package/lib/dialog/base/Header.js +8 -0
- package/lib/dialog/base/index.d.ts +10 -0
- package/lib/dialog/base/index.js +10 -0
- package/lib/dialog/base/style.d.ts +7 -0
- package/lib/dialog/dialog.spec.d.ts +0 -0
- package/lib/dialog/form/index.d.ts +5 -0
- package/lib/dialog/form/index.js +16 -0
- package/lib/dialog/index.d.ts +9 -0
- package/lib/dialog/index.js +16 -0
- package/lib/dialog/types.d.ts +107 -0
- package/lib/dialog/wizard/index.d.ts +9 -0
- package/lib/dialog/wizard/index.js +15 -0
- package/lib/dialog/wizard/progressbar.d.ts +11 -0
- package/lib/dialog/wizard/progressbar.js +98 -0
- package/lib/dialog/wizard/step.d.ts +2 -0
- package/lib/dialog/wizard/step.js +6 -0
- package/lib/dialog/wizard/useWizard.d.ts +2 -0
- package/lib/dialog/wizard/useWizard.js +45 -0
- package/lib/dialog/wizard/wizard.spec.d.ts +0 -0
- package/lib/drawer/Content.d.ts +3 -0
- package/lib/drawer/Content.js +18 -0
- package/lib/drawer/Drawer.d.ts +4 -0
- package/lib/drawer/Drawer.js +75 -0
- package/lib/drawer/Drawer.spec.d.ts +1 -0
- package/lib/drawer/Header.d.ts +3 -0
- package/lib/drawer/Header.js +56 -0
- package/lib/drawer/helpers.d.ts +4 -0
- package/lib/drawer/helpers.js +5 -0
- package/lib/drawer/index.d.ts +5 -0
- package/lib/drawer/index.js +10 -0
- package/lib/drawer/types.d.ts +37 -0
- package/lib/dropdown/Popup.d.ts +3 -0
- package/lib/dropdown/Popup.js +51 -0
- package/lib/dropdown/dropdown.spec.d.ts +1 -0
- package/lib/dropdown/helper.d.ts +2 -0
- package/lib/dropdown/helper.js +8 -0
- package/lib/dropdown/types.d.ts +45 -0
- package/lib/dropdown/withDropdown.d.ts +9 -0
- package/lib/dropdown/withDropdown.js +80 -0
- package/lib/fieldset/fieldset.spec.d.ts +1 -0
- package/lib/fieldset/index.d.ts +3 -0
- package/lib/fieldset/index.js +70 -0
- package/lib/fieldset/types.d.ts +27 -0
- package/lib/form/Field.d.ts +2 -0
- package/lib/form/Field.js +98 -0
- package/lib/form/FieldArray.d.ts +2 -0
- package/lib/form/FieldArray.js +68 -0
- package/lib/form/FieldNumber.d.ts +2 -0
- package/lib/form/FieldNumber.js +48 -0
- package/lib/form/FieldPeriod.d.ts +2 -0
- package/lib/form/FieldPeriod.js +95 -0
- package/lib/form/form.spec.d.ts +0 -0
- package/lib/form/helpers.d.ts +8 -0
- package/lib/form/helpers.js +28 -0
- package/lib/form/index.d.ts +8 -0
- package/lib/form/index.js +150 -0
- package/lib/form/types.d.ts +233 -0
- package/lib/form/withFieldHOC.d.ts +4 -0
- package/lib/form/withFieldHOC.js +62 -0
- package/lib/form/withFormSecurity.d.ts +6 -0
- package/lib/form/withFormSecurity.js +30 -0
- package/lib/gridlayout/GridCol.d.ts +3 -0
- package/lib/gridlayout/GridCol.js +27 -0
- package/lib/gridlayout/GridRow.d.ts +3 -0
- package/lib/gridlayout/GridRow.js +26 -0
- package/lib/gridlayout/gridLayout.spec.d.ts +1 -0
- package/lib/gridlayout/index.d.ts +4 -0
- package/lib/gridlayout/index.js +6 -0
- package/lib/gridlayout/types.d.ts +17 -0
- package/lib/hint/helpers.d.ts +1 -0
- package/lib/hint/helpers.js +12 -0
- package/lib/hint/hint.spec.d.ts +1 -0
- package/lib/hint/index.d.ts +3 -0
- package/lib/hint/index.js +30 -0
- package/lib/hint/types.d.ts +11 -0
- package/lib/icons/helper.d.ts +635 -0
- package/lib/icons/helper.js +637 -0
- package/lib/icons/icons.spec.d.ts +1 -0
- package/lib/icons/index.d.ts +6 -0
- package/lib/icons/index.js +66 -0
- package/lib/icons/types.d.ts +46 -0
- package/lib/index.d.ts +10 -0
- package/lib/index.js +28 -0
- package/lib/inputs/base/InputTextBase.d.ts +3 -0
- package/lib/inputs/base/InputTextBase.js +183 -0
- package/lib/inputs/base/Label.d.ts +6 -0
- package/lib/inputs/base/Label.js +30 -0
- package/lib/inputs/base/base.spec.d.ts +1 -0
- package/lib/inputs/base/helpers.d.ts +10 -0
- package/lib/inputs/base/helpers.js +30 -0
- package/lib/inputs/base/types.d.ts +98 -0
- package/lib/inputs/color/color_input.spec.d.ts +0 -0
- package/lib/inputs/color/index.d.ts +3 -0
- package/lib/inputs/color/index.js +57 -0
- package/lib/inputs/color/types.d.ts +16 -0
- package/lib/inputs/date/Dialog.d.ts +3 -0
- package/lib/inputs/date/Dialog.js +17 -0
- package/lib/inputs/date/Dropdown.d.ts +3 -0
- package/lib/inputs/date/Dropdown.js +19 -0
- package/lib/inputs/date/date.spec.d.ts +1 -0
- package/lib/inputs/date/helpers.d.ts +5 -0
- package/lib/inputs/date/helpers.js +10 -0
- package/lib/inputs/date/index.d.ts +3 -0
- package/lib/inputs/date/index.js +136 -0
- package/lib/inputs/date/types.d.ts +56 -0
- package/lib/inputs/errorMessage/error.spec.d.ts +1 -0
- package/lib/inputs/errorMessage/index.d.ts +4 -0
- package/lib/inputs/errorMessage/index.js +24 -0
- package/lib/inputs/file/DefaultFile.d.ts +3 -0
- package/lib/inputs/file/DefaultFile.js +68 -0
- package/lib/inputs/file/DragDropFile.d.ts +3 -0
- package/lib/inputs/file/DragDropFile.js +135 -0
- package/lib/inputs/file/File.d.ts +3 -0
- package/lib/inputs/file/File.js +31 -0
- package/lib/inputs/file/FileButtonSettings.d.ts +3 -0
- package/lib/inputs/file/FileButtonSettings.js +24 -0
- package/lib/inputs/file/filefield.spec.d.ts +1 -0
- package/lib/inputs/file/helpers.d.ts +2 -0
- package/lib/inputs/file/helpers.js +11 -0
- package/lib/inputs/file/index.d.ts +5 -0
- package/lib/inputs/file/index.js +8 -0
- package/lib/inputs/file/types.d.ts +49 -0
- package/lib/inputs/inputHOC.d.ts +4 -0
- package/lib/inputs/inputHOC.js +42 -0
- package/lib/inputs/mask/BaseMask.d.ts +3 -0
- package/lib/inputs/mask/BaseMask.js +2672 -0
- package/lib/inputs/mask/Cnpj.d.ts +6 -0
- package/lib/inputs/mask/Cnpj.js +46 -0
- package/lib/inputs/mask/Cpf.d.ts +6 -0
- package/lib/inputs/mask/Cpf.js +48 -0
- package/lib/inputs/mask/Phone.d.ts +3 -0
- package/lib/inputs/mask/Phone.js +13 -0
- package/lib/inputs/mask/ZipCode.d.ts +3 -0
- package/lib/inputs/mask/ZipCode.js +11 -0
- package/lib/inputs/mask/helpers.d.ts +52 -0
- package/lib/inputs/mask/helpers.js +63 -0
- package/lib/inputs/mask/index.d.ts +7 -0
- package/lib/inputs/mask/index.js +12 -0
- package/lib/inputs/mask/input_mask.spec.d.ts +0 -0
- package/lib/inputs/mask/types.d.ts +73 -0
- package/lib/inputs/multiSelect/ActionButtons.d.ts +3 -0
- package/lib/inputs/multiSelect/ActionButtons.js +39 -0
- package/lib/inputs/multiSelect/Dropdown.d.ts +3 -0
- package/lib/inputs/multiSelect/Dropdown.js +98 -0
- package/lib/inputs/multiSelect/helper.d.ts +3 -0
- package/lib/inputs/multiSelect/helper.js +8 -0
- package/lib/inputs/multiSelect/index.d.ts +3 -0
- package/lib/inputs/multiSelect/index.js +180 -0
- package/lib/inputs/multiSelect/multiSelect.spec.d.ts +1 -0
- package/lib/inputs/multiSelect/types.d.ts +57 -0
- package/lib/inputs/number/BaseNumber.d.ts +3 -0
- package/lib/inputs/number/BaseNumber.js +59 -0
- package/lib/inputs/number/Currency.d.ts +3 -0
- package/lib/inputs/number/Currency.js +22 -0
- package/lib/inputs/number/Decimal.d.ts +3 -0
- package/lib/inputs/number/Decimal.js +11 -0
- package/lib/inputs/number/format_number.d.ts +3 -0
- package/lib/inputs/number/format_number.js +9 -0
- package/lib/inputs/number/index.d.ts +6 -0
- package/lib/inputs/number/index.js +34 -0
- package/lib/inputs/number/numberfield.spec.d.ts +1 -0
- package/lib/inputs/number/types.d.ts +28 -0
- package/lib/inputs/period/Dialog.d.ts +3 -0
- package/lib/inputs/period/Dialog.js +18 -0
- package/lib/inputs/period/Dropdown.d.ts +3 -0
- package/lib/inputs/period/Dropdown.js +18 -0
- package/lib/inputs/period/PeriodList.d.ts +3 -0
- package/lib/inputs/period/PeriodList.js +43 -0
- package/lib/inputs/period/helper.d.ts +11 -0
- package/lib/inputs/period/helper.js +39 -0
- package/lib/inputs/period/index.d.ts +3 -0
- package/lib/inputs/period/index.js +213 -0
- package/lib/inputs/period/types.d.ts +69 -0
- package/lib/inputs/search/index.d.ts +3 -0
- package/lib/inputs/search/index.js +104 -0
- package/lib/inputs/search/search_input.spec.d.ts +1 -0
- package/lib/inputs/select/ActionButtons.d.ts +3 -0
- package/lib/inputs/select/ActionButtons.js +28 -0
- package/lib/inputs/select/Dropdown.d.ts +3 -0
- package/lib/inputs/select/Dropdown.js +70 -0
- package/lib/inputs/select/helper.d.ts +11 -0
- package/lib/inputs/select/helper.js +48 -0
- package/lib/inputs/select/index.d.ts +3 -0
- package/lib/inputs/select/index.js +27 -0
- package/lib/inputs/select/multiple/Selecteds.d.ts +3 -0
- package/lib/inputs/select/multiple/Selecteds.js +25 -0
- package/lib/inputs/select/multiple/index.d.ts +3 -0
- package/lib/inputs/select/multiple/index.js +126 -0
- package/lib/inputs/select/select.spec.d.ts +1 -0
- package/lib/inputs/select/simple/index.d.ts +3 -0
- package/lib/inputs/select/simple/index.js +156 -0
- package/lib/inputs/select/types.d.ts +117 -0
- package/lib/inputs/text/index.d.ts +3 -0
- package/lib/inputs/text/index.js +11 -0
- package/lib/inputs/text/textfield.spec.d.ts +1 -0
- package/lib/inputs/text/types.d.ts +21 -0
- package/lib/inputs/textarea/index.d.ts +3 -0
- package/lib/inputs/textarea/index.js +16 -0
- package/lib/inputs/textarea/textarea.spec.d.ts +1 -0
- package/lib/inputs/textarea/types.d.ts +7 -0
- package/lib/inputs/types.d.ts +151 -0
- package/lib/internals/colorStyles.d.ts +8 -0
- package/lib/internals/colorStyles.js +10 -0
- package/lib/internals/constants.d.ts +9 -0
- package/lib/internals/constants.js +12 -0
- package/lib/internals/types.d.ts +22 -0
- package/lib/internals/withTooltip.d.ts +8 -0
- package/lib/internals/withTooltip.js +122 -0
- package/lib/labelMessages/index.d.ts +3 -0
- package/lib/labelMessages/index.js +53 -0
- package/lib/labelMessages/labelMessages.spec.d.ts +1 -0
- package/lib/labelMessages/types.d.ts +16 -0
- package/lib/labels/DangerLabel.d.ts +3 -0
- package/lib/labels/DangerLabel.js +20 -0
- package/lib/labels/DefaultLabel.d.ts +6 -0
- package/lib/labels/DefaultLabel.js +55 -0
- package/lib/labels/InfoLabel.d.ts +3 -0
- package/lib/labels/InfoLabel.js +20 -0
- package/lib/labels/PrimaryLabel.d.ts +3 -0
- package/lib/labels/PrimaryLabel.js +20 -0
- package/lib/labels/SuccessLabel.d.ts +3 -0
- package/lib/labels/SuccessLabel.js +20 -0
- package/lib/labels/WarningLabel.d.ts +3 -0
- package/lib/labels/WarningLabel.js +20 -0
- package/lib/labels/index.d.ts +9 -0
- package/lib/labels/index.js +17 -0
- package/lib/labels/label.spec.d.ts +1 -0
- package/lib/labels/label_container/index.d.ts +10 -0
- package/lib/labels/label_container/index.js +18 -0
- package/lib/labels/types.d.ts +22 -0
- package/lib/list/Header.d.ts +3 -0
- package/lib/list/Header.js +20 -0
- package/lib/list/Item.d.ts +6 -0
- package/lib/list/Item.js +14 -0
- package/lib/list/Separator.d.ts +2 -0
- package/lib/list/Separator.js +10 -0
- package/lib/list/helpers.d.ts +9 -0
- package/lib/list/helpers.js +10 -0
- package/lib/list/index.d.ts +7 -0
- package/lib/list/index.js +104 -0
- package/lib/list/list.spec.d.ts +1 -0
- package/lib/list/types.d.ts +69 -0
- package/lib/menus/float/MenuItem.d.ts +3 -0
- package/lib/menus/float/MenuItem.js +55 -0
- package/lib/menus/float/SubMenuContainer.d.ts +29 -0
- package/lib/menus/float/float-menu.spec.d.ts +0 -0
- package/lib/menus/float/helpers.d.ts +4 -0
- package/lib/menus/float/helpers.js +5 -0
- package/lib/menus/float/index.d.ts +6 -0
- package/lib/menus/float/index.js +113 -0
- package/lib/menus/float/types.d.ts +26 -0
- package/lib/menus/index.d.ts +2 -0
- package/lib/menus/index.js +4 -0
- package/lib/menus/sidenav/ExpandMenu.d.ts +3 -0
- package/lib/menus/sidenav/ExpandMenu.js +19 -0
- package/lib/menus/sidenav/MenuLink.d.ts +6 -0
- package/lib/menus/sidenav/MenuLink.js +24 -0
- package/lib/menus/sidenav/NavMenuGroup.d.ts +3 -0
- package/lib/menus/sidenav/NavMenuGroup.js +22 -0
- package/lib/menus/sidenav/NavMenuItem.d.ts +6 -0
- package/lib/menus/sidenav/NavMenuItem.js +136 -0
- package/lib/menus/sidenav/NavSubMenuItem.d.ts +3 -0
- package/lib/menus/sidenav/NavSubMenuItem.js +39 -0
- package/lib/menus/sidenav/helpers.d.ts +6 -0
- package/lib/menus/sidenav/helpers.js +10 -0
- package/lib/menus/sidenav/index.d.ts +8 -0
- package/lib/menus/sidenav/index.js +150 -0
- package/lib/menus/sidenav/popup_menu_search/EmptyList.d.ts +3 -0
- package/lib/menus/sidenav/popup_menu_search/EmptyList.js +23 -0
- package/lib/menus/sidenav/popup_menu_search/index.d.ts +4 -0
- package/lib/menus/sidenav/popup_menu_search/index.js +56 -0
- package/lib/menus/sidenav/sidenav.spec.d.ts +1 -0
- package/lib/menus/sidenav/types.d.ts +85 -0
- package/lib/noPermission/index.d.ts +2 -0
- package/lib/noPermission/index.js +16 -0
- package/lib/panel/Content.d.ts +3 -0
- package/lib/panel/Content.js +55 -0
- package/lib/panel/DangerPanel.d.ts +3 -0
- package/lib/panel/DangerPanel.js +12 -0
- package/lib/panel/Default.d.ts +3 -0
- package/lib/panel/Default.js +68 -0
- package/lib/panel/Header.d.ts +3 -0
- package/lib/panel/Header.js +58 -0
- package/lib/panel/InfoPanel.d.ts +3 -0
- package/lib/panel/InfoPanel.js +12 -0
- package/lib/panel/PrimaryPanel.d.ts +3 -0
- package/lib/panel/PrimaryPanel.js +12 -0
- package/lib/panel/SuccessPanel.d.ts +3 -0
- package/lib/panel/SuccessPanel.js +12 -0
- package/lib/panel/ToolBar.d.ts +3 -0
- package/lib/panel/ToolBar.js +19 -0
- package/lib/panel/WarningPanel.d.ts +3 -0
- package/lib/panel/WarningPanel.js +12 -0
- package/lib/panel/helpers.d.ts +5 -0
- package/lib/panel/helpers.js +15 -0
- package/lib/panel/index.d.ts +10 -0
- package/lib/panel/index.js +19 -0
- package/lib/panel/panel.spec.d.ts +0 -0
- package/lib/panel/types.d.ts +43 -0
- package/lib/permissionValidations.d.ts +12 -0
- package/lib/permissionValidations.js +46 -0
- package/lib/popover/PopoverText.d.ts +4 -0
- package/lib/popover/PopoverText.js +14 -0
- package/lib/popover/PopoverTitle.d.ts +3 -0
- package/lib/popover/PopoverTitle.js +12 -0
- package/lib/popover/index.d.ts +6 -0
- package/lib/popover/index.js +39 -0
- package/lib/popover/popover.spec.d.ts +1 -0
- package/lib/popover/types.d.ts +31 -0
- package/lib/progress/Bar.d.ts +3 -0
- package/lib/progress/Bar.js +51 -0
- package/lib/progress/index.d.ts +5 -0
- package/lib/progress/index.js +26 -0
- package/lib/progress/progress.spec.d.ts +1 -0
- package/lib/progress/types.d.ts +34 -0
- package/lib/radio/index.d.ts +8 -0
- package/lib/radio/index.js +112 -0
- package/lib/radio/radio.spec.d.ts +1 -0
- package/lib/radio/types.d.ts +25 -0
- package/lib/shortcuts/index.d.ts +3 -0
- package/lib/shortcuts/index.js +22 -0
- package/lib/shortcuts/shortcuts.spec.d.ts +0 -0
- package/lib/shortcuts/types.d.ts +9 -0
- package/lib/skeleton/SkeletonContainer.d.ts +3 -0
- package/lib/skeleton/SkeletonContainer.js +19 -0
- package/lib/skeleton/index.d.ts +5 -0
- package/lib/skeleton/index.js +49 -0
- package/lib/skeleton/types.d.ts +18 -0
- package/lib/spinner/SpinnerLoading.d.ts +3 -0
- package/lib/spinner/SpinnerLoading.js +55 -0
- package/lib/spinner/index.d.ts +3 -0
- package/lib/spinner/index.js +51 -0
- package/lib/spinner/spinner.spec.d.ts +1 -0
- package/lib/spinner/types.d.ts +17 -0
- package/lib/split/Split.d.ts +3 -0
- package/lib/split/Split.js +193 -0
- package/lib/split/SplitSide.d.ts +3 -0
- package/lib/split/SplitSide.js +27 -0
- package/lib/split/helpers.d.ts +8 -0
- package/lib/split/helpers.js +5 -0
- package/lib/split/index.d.ts +4 -0
- package/lib/split/index.js +6 -0
- package/lib/split/split.spec.d.ts +0 -0
- package/lib/split/types.d.ts +31 -0
- package/lib/table/Body.d.ts +3 -0
- package/lib/table/Body.js +46 -0
- package/lib/table/Header.d.ts +3 -0
- package/lib/table/Header.js +52 -0
- package/lib/table/HeaderColumn.d.ts +3 -0
- package/lib/table/HeaderColumn.js +43 -0
- package/lib/table/Row.d.ts +3 -0
- package/lib/table/Row.js +53 -0
- package/lib/table/RowColumn.d.ts +3 -0
- package/lib/table/RowColumn.js +58 -0
- package/lib/table/helpers.d.ts +7 -0
- package/lib/table/helpers.js +9 -0
- package/lib/table/index.d.ts +9 -0
- package/lib/table/index.js +106 -0
- package/lib/table/table.spec.d.ts +1 -0
- package/lib/table/types.d.ts +94 -0
- package/lib/tabs/DropdownTabs.d.ts +3 -0
- package/lib/tabs/DropdownTabs.js +84 -0
- package/lib/tabs/Menu.d.ts +3 -0
- package/lib/tabs/Menu.js +38 -0
- package/lib/tabs/MenuTabs.d.ts +4 -0
- package/lib/tabs/MenuTabs.js +64 -0
- package/lib/tabs/Panel.d.ts +3 -0
- package/lib/tabs/Panel.js +62 -0
- package/lib/tabs/context.d.ts +4 -0
- package/lib/tabs/context.js +64 -0
- package/lib/tabs/index.d.ts +5 -0
- package/lib/tabs/index.js +73 -0
- package/lib/tabs/tabHelpers.d.ts +9 -0
- package/lib/tabs/tabHelpers.js +48 -0
- package/lib/tabs/tabs.spec.d.ts +0 -0
- package/lib/tabs/types.d.ts +95 -0
- package/lib/tabs/useTabs.d.ts +1 -0
- package/lib/tabs/useTabs.js +8 -0
- package/lib/textContent/index.d.ts +18 -0
- package/lib/textContent/index.js +33 -0
- package/lib/textContent/textContent.spec.d.ts +1 -0
- package/lib/toolbar/ButtonBar.d.ts +3 -0
- package/lib/toolbar/ButtonBar.js +67 -0
- package/lib/toolbar/LabelBar.d.ts +3 -0
- package/lib/toolbar/LabelBar.js +51 -0
- package/lib/toolbar/Separator.d.ts +2 -0
- package/lib/toolbar/Separator.js +10 -0
- package/lib/toolbar/ToolBarGroup.d.ts +3 -0
- package/lib/toolbar/ToolBarGroup.js +16 -0
- package/lib/toolbar/helpers.d.ts +3 -0
- package/lib/toolbar/helpers.js +5 -0
- package/lib/toolbar/index.d.ts +8 -0
- package/lib/toolbar/index.js +39 -0
- package/lib/toolbar/toolbar.spec.d.ts +1 -0
- package/lib/toolbar/types.d.ts +43 -0
- package/lib/tooltip/index.d.ts +4 -0
- package/lib/tooltip/index.js +39 -0
- package/lib/tooltip/tooltip.spec.d.ts +1 -0
- package/lib/tooltip/types.d.ts +15 -0
- package/lib/treetable/Body.d.ts +2 -0
- package/lib/treetable/Body.js +34 -0
- package/lib/treetable/Header.d.ts +2 -0
- package/lib/treetable/Header.js +30 -0
- package/lib/treetable/Row.d.ts +3 -0
- package/lib/treetable/Row.js +220 -0
- package/lib/treetable/helpers.d.ts +13 -0
- package/lib/treetable/helpers.js +17 -0
- package/lib/treetable/index.d.ts +4 -0
- package/lib/treetable/index.js +28 -0
- package/lib/treeview/Header.d.ts +3 -0
- package/lib/treeview/Header.js +16 -0
- package/lib/treeview/Node.d.ts +3 -0
- package/lib/treeview/Node.js +206 -0
- package/lib/treeview/constants.d.ts +3 -0
- package/lib/treeview/constants.js +5 -0
- package/lib/treeview/index.d.ts +6 -0
- package/lib/treeview/index.js +268 -0
- package/lib/treeview/treeview.spec.d.ts +0 -0
- package/lib/treeview/types.d.ts +106 -0
- package/lib/uitour/helpers.d.ts +7 -0
- package/lib/uitour/helpers.js +9 -0
- package/lib/uitour/index.d.ts +4 -0
- package/lib/uitour/index.js +187 -0
- package/lib/uitour/types.d.ts +35 -0
- package/lib/uitour/uitour.spec.d.ts +0 -0
- package/package.json +1 -1
|
@@ -0,0 +1,635 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
paperplane: {
|
|
3
|
+
viewbox: string;
|
|
4
|
+
paths: string[];
|
|
5
|
+
};
|
|
6
|
+
city: {
|
|
7
|
+
viewbox: string;
|
|
8
|
+
paths: string[];
|
|
9
|
+
};
|
|
10
|
+
user_group: {
|
|
11
|
+
viewbox: string;
|
|
12
|
+
paths: string[];
|
|
13
|
+
};
|
|
14
|
+
padlock: {
|
|
15
|
+
viewbox: string;
|
|
16
|
+
paths: string[];
|
|
17
|
+
};
|
|
18
|
+
user: {
|
|
19
|
+
viewbox: string;
|
|
20
|
+
paths: string[];
|
|
21
|
+
};
|
|
22
|
+
supplier: {
|
|
23
|
+
viewbox: string;
|
|
24
|
+
paths: string[];
|
|
25
|
+
};
|
|
26
|
+
mail: {
|
|
27
|
+
viewbox: string;
|
|
28
|
+
paths: string[];
|
|
29
|
+
};
|
|
30
|
+
envelop: {
|
|
31
|
+
viewbox: string;
|
|
32
|
+
paths: string[];
|
|
33
|
+
};
|
|
34
|
+
key: {
|
|
35
|
+
viewbox: string;
|
|
36
|
+
paths: string[];
|
|
37
|
+
};
|
|
38
|
+
mail2: {
|
|
39
|
+
viewbox: string;
|
|
40
|
+
paths: string[];
|
|
41
|
+
};
|
|
42
|
+
pencil: {
|
|
43
|
+
viewbox: string;
|
|
44
|
+
paths: string[];
|
|
45
|
+
};
|
|
46
|
+
calendar: {
|
|
47
|
+
viewbox: string;
|
|
48
|
+
paths: string[];
|
|
49
|
+
};
|
|
50
|
+
block: {
|
|
51
|
+
viewbox: string;
|
|
52
|
+
paths: string[];
|
|
53
|
+
};
|
|
54
|
+
warning: {
|
|
55
|
+
viewbox: string;
|
|
56
|
+
paths: string[];
|
|
57
|
+
};
|
|
58
|
+
exclamation: {
|
|
59
|
+
viewbox: string;
|
|
60
|
+
paths: string[];
|
|
61
|
+
};
|
|
62
|
+
question: {
|
|
63
|
+
viewbox: string;
|
|
64
|
+
paths: string[];
|
|
65
|
+
};
|
|
66
|
+
information: {
|
|
67
|
+
viewbox: string;
|
|
68
|
+
paths: string[];
|
|
69
|
+
};
|
|
70
|
+
grid: {
|
|
71
|
+
viewbox: string;
|
|
72
|
+
paths: string[];
|
|
73
|
+
};
|
|
74
|
+
grid2: {
|
|
75
|
+
viewbox: string;
|
|
76
|
+
paths: string[];
|
|
77
|
+
};
|
|
78
|
+
grid3: {
|
|
79
|
+
viewbox: string;
|
|
80
|
+
paths: string[];
|
|
81
|
+
};
|
|
82
|
+
home: {
|
|
83
|
+
viewbox: string;
|
|
84
|
+
paths: string[];
|
|
85
|
+
};
|
|
86
|
+
folder_close: {
|
|
87
|
+
viewbox: string;
|
|
88
|
+
paths: string[];
|
|
89
|
+
};
|
|
90
|
+
code: {
|
|
91
|
+
viewbox: string;
|
|
92
|
+
paths: string[];
|
|
93
|
+
};
|
|
94
|
+
up: {
|
|
95
|
+
viewbox: string;
|
|
96
|
+
paths: string[];
|
|
97
|
+
};
|
|
98
|
+
down: {
|
|
99
|
+
viewbox: string;
|
|
100
|
+
paths: string[];
|
|
101
|
+
};
|
|
102
|
+
arrow_left: {
|
|
103
|
+
viewbox: string;
|
|
104
|
+
paths: string[];
|
|
105
|
+
};
|
|
106
|
+
arrow_right: {
|
|
107
|
+
viewbox: string;
|
|
108
|
+
paths: string[];
|
|
109
|
+
};
|
|
110
|
+
config: {
|
|
111
|
+
viewbox: string;
|
|
112
|
+
paths: string[];
|
|
113
|
+
};
|
|
114
|
+
file_download: {
|
|
115
|
+
viewbox: string;
|
|
116
|
+
paths: string[];
|
|
117
|
+
};
|
|
118
|
+
file_excel: {
|
|
119
|
+
viewbox: string;
|
|
120
|
+
paths: string[];
|
|
121
|
+
};
|
|
122
|
+
search: {
|
|
123
|
+
viewbox: string;
|
|
124
|
+
paths: string[];
|
|
125
|
+
};
|
|
126
|
+
close: {
|
|
127
|
+
viewbox: string;
|
|
128
|
+
paths: string[];
|
|
129
|
+
};
|
|
130
|
+
box: {
|
|
131
|
+
viewbox: string;
|
|
132
|
+
paths: string[];
|
|
133
|
+
};
|
|
134
|
+
dollar: {
|
|
135
|
+
viewbox: string;
|
|
136
|
+
paths: string[];
|
|
137
|
+
};
|
|
138
|
+
coin_dollar: {
|
|
139
|
+
viewbox: string;
|
|
140
|
+
paths: string[];
|
|
141
|
+
};
|
|
142
|
+
file_lock: {
|
|
143
|
+
viewbox: string;
|
|
144
|
+
paths: string[];
|
|
145
|
+
};
|
|
146
|
+
new_file: {
|
|
147
|
+
viewbox: string;
|
|
148
|
+
paths: string[];
|
|
149
|
+
};
|
|
150
|
+
folder_plus: {
|
|
151
|
+
viewbox: string;
|
|
152
|
+
paths: string[];
|
|
153
|
+
};
|
|
154
|
+
cube: {
|
|
155
|
+
viewbox: string;
|
|
156
|
+
paths: string[];
|
|
157
|
+
};
|
|
158
|
+
stats: {
|
|
159
|
+
viewbox: string;
|
|
160
|
+
paths: string[];
|
|
161
|
+
};
|
|
162
|
+
user_lock: {
|
|
163
|
+
viewbox: string;
|
|
164
|
+
paths: string[];
|
|
165
|
+
};
|
|
166
|
+
stack: {
|
|
167
|
+
viewbox: string;
|
|
168
|
+
paths: string[];
|
|
169
|
+
};
|
|
170
|
+
cash: {
|
|
171
|
+
viewbox: string;
|
|
172
|
+
paths: string[];
|
|
173
|
+
};
|
|
174
|
+
calc: {
|
|
175
|
+
viewbox: string;
|
|
176
|
+
paths: string[];
|
|
177
|
+
};
|
|
178
|
+
bell: {
|
|
179
|
+
viewbox: string;
|
|
180
|
+
paths: string[];
|
|
181
|
+
};
|
|
182
|
+
bell_alert: {
|
|
183
|
+
viewbox: string;
|
|
184
|
+
paths: string[];
|
|
185
|
+
};
|
|
186
|
+
cabinet: {
|
|
187
|
+
viewbox: string;
|
|
188
|
+
paths: string[];
|
|
189
|
+
};
|
|
190
|
+
checkmark: {
|
|
191
|
+
viewbox: string;
|
|
192
|
+
paths: string[];
|
|
193
|
+
};
|
|
194
|
+
power: {
|
|
195
|
+
viewbox: string;
|
|
196
|
+
paths: string[];
|
|
197
|
+
};
|
|
198
|
+
arroba: {
|
|
199
|
+
viewbox: string;
|
|
200
|
+
paths: string[];
|
|
201
|
+
};
|
|
202
|
+
store: {
|
|
203
|
+
viewbox: string;
|
|
204
|
+
paths: string[];
|
|
205
|
+
};
|
|
206
|
+
mini_up: {
|
|
207
|
+
viewbox: string;
|
|
208
|
+
paths: string[];
|
|
209
|
+
};
|
|
210
|
+
mini_down: {
|
|
211
|
+
viewbox: string;
|
|
212
|
+
paths: string[];
|
|
213
|
+
};
|
|
214
|
+
bin: {
|
|
215
|
+
viewbox: string;
|
|
216
|
+
paths: string[];
|
|
217
|
+
};
|
|
218
|
+
print: {
|
|
219
|
+
viewbox: string;
|
|
220
|
+
paths: string[];
|
|
221
|
+
};
|
|
222
|
+
print2: {
|
|
223
|
+
viewbox: string;
|
|
224
|
+
paths: string[];
|
|
225
|
+
};
|
|
226
|
+
print3: {
|
|
227
|
+
viewbox: string;
|
|
228
|
+
paths: string[];
|
|
229
|
+
};
|
|
230
|
+
stackCheck: {
|
|
231
|
+
viewbox: string;
|
|
232
|
+
paths: string[];
|
|
233
|
+
};
|
|
234
|
+
checkboxChecked: {
|
|
235
|
+
viewbox: string;
|
|
236
|
+
paths: string[];
|
|
237
|
+
};
|
|
238
|
+
checkboxUnchecked: {
|
|
239
|
+
viewbox: string;
|
|
240
|
+
paths: string[];
|
|
241
|
+
};
|
|
242
|
+
checkboxChecked2: {
|
|
243
|
+
viewbox: string;
|
|
244
|
+
paths: string[];
|
|
245
|
+
};
|
|
246
|
+
checkboxUnchecked2: {
|
|
247
|
+
viewbox: string;
|
|
248
|
+
paths: string[];
|
|
249
|
+
};
|
|
250
|
+
plus2: {
|
|
251
|
+
viewbox: string;
|
|
252
|
+
paths: string[];
|
|
253
|
+
};
|
|
254
|
+
plus3: {
|
|
255
|
+
viewbox: string;
|
|
256
|
+
paths: string[];
|
|
257
|
+
};
|
|
258
|
+
plusCircle: {
|
|
259
|
+
viewbox: string;
|
|
260
|
+
paths: string[];
|
|
261
|
+
};
|
|
262
|
+
menu: {
|
|
263
|
+
viewbox: string;
|
|
264
|
+
paths: string[];
|
|
265
|
+
};
|
|
266
|
+
menu2: {
|
|
267
|
+
viewbox: string;
|
|
268
|
+
paths: string[];
|
|
269
|
+
};
|
|
270
|
+
menu3: {
|
|
271
|
+
viewbox: string;
|
|
272
|
+
paths: string[];
|
|
273
|
+
};
|
|
274
|
+
menu4: {
|
|
275
|
+
viewbox: string;
|
|
276
|
+
paths: string[];
|
|
277
|
+
};
|
|
278
|
+
more1: {
|
|
279
|
+
viewbox: string;
|
|
280
|
+
paths: string[];
|
|
281
|
+
};
|
|
282
|
+
more2: {
|
|
283
|
+
viewbox: string;
|
|
284
|
+
paths: string[];
|
|
285
|
+
};
|
|
286
|
+
cog3: {
|
|
287
|
+
viewbox: string;
|
|
288
|
+
paths: string[];
|
|
289
|
+
};
|
|
290
|
+
exit3: {
|
|
291
|
+
viewbox: string;
|
|
292
|
+
paths: string[];
|
|
293
|
+
};
|
|
294
|
+
cancel: {
|
|
295
|
+
viewbox: string;
|
|
296
|
+
paths: string[];
|
|
297
|
+
};
|
|
298
|
+
cancel2: {
|
|
299
|
+
viewbox: string;
|
|
300
|
+
paths: string[];
|
|
301
|
+
};
|
|
302
|
+
filter1: {
|
|
303
|
+
viewbox: string;
|
|
304
|
+
paths: string[];
|
|
305
|
+
};
|
|
306
|
+
filter2: {
|
|
307
|
+
viewbox: string;
|
|
308
|
+
paths: string[];
|
|
309
|
+
};
|
|
310
|
+
filterFlat: {
|
|
311
|
+
viewbox: string;
|
|
312
|
+
paths: string[];
|
|
313
|
+
};
|
|
314
|
+
equalize: {
|
|
315
|
+
viewbox: string;
|
|
316
|
+
paths: string[];
|
|
317
|
+
};
|
|
318
|
+
eyeblocked: {
|
|
319
|
+
viewbox: string;
|
|
320
|
+
paths: string[];
|
|
321
|
+
};
|
|
322
|
+
eyeblocked2: {
|
|
323
|
+
viewbox: string;
|
|
324
|
+
paths: string[];
|
|
325
|
+
};
|
|
326
|
+
spinner: {
|
|
327
|
+
viewbox: string;
|
|
328
|
+
paths: string[];
|
|
329
|
+
};
|
|
330
|
+
barcode1: {
|
|
331
|
+
viewbox: string;
|
|
332
|
+
paths: string[];
|
|
333
|
+
};
|
|
334
|
+
barcode2: {
|
|
335
|
+
viewbox: string;
|
|
336
|
+
paths: string[];
|
|
337
|
+
};
|
|
338
|
+
basket: {
|
|
339
|
+
viewbox: string;
|
|
340
|
+
paths: string[];
|
|
341
|
+
};
|
|
342
|
+
bag: {
|
|
343
|
+
viewbox: string;
|
|
344
|
+
paths: string[];
|
|
345
|
+
};
|
|
346
|
+
cart: {
|
|
347
|
+
viewbox: string;
|
|
348
|
+
paths: string[];
|
|
349
|
+
};
|
|
350
|
+
cart2: {
|
|
351
|
+
viewbox: string;
|
|
352
|
+
paths: string[];
|
|
353
|
+
};
|
|
354
|
+
fileeye: {
|
|
355
|
+
viewbox: string;
|
|
356
|
+
paths: string[];
|
|
357
|
+
};
|
|
358
|
+
priceTag: {
|
|
359
|
+
viewbox: string;
|
|
360
|
+
paths: string[];
|
|
361
|
+
};
|
|
362
|
+
fileText: {
|
|
363
|
+
viewbox: string;
|
|
364
|
+
paths: string[];
|
|
365
|
+
};
|
|
366
|
+
drawer: {
|
|
367
|
+
viewbox: string;
|
|
368
|
+
paths: string[];
|
|
369
|
+
};
|
|
370
|
+
drawer3: {
|
|
371
|
+
viewbox: string;
|
|
372
|
+
paths: string[];
|
|
373
|
+
};
|
|
374
|
+
asterisk: {
|
|
375
|
+
viewbox: string;
|
|
376
|
+
paths: string[];
|
|
377
|
+
};
|
|
378
|
+
pdf: {
|
|
379
|
+
viewbox: string;
|
|
380
|
+
paths: string[];
|
|
381
|
+
};
|
|
382
|
+
stackPicture: {
|
|
383
|
+
viewbox: string;
|
|
384
|
+
paths: string[];
|
|
385
|
+
};
|
|
386
|
+
image: {
|
|
387
|
+
viewbox: string;
|
|
388
|
+
paths: string[];
|
|
389
|
+
};
|
|
390
|
+
reset: {
|
|
391
|
+
viewbox: string;
|
|
392
|
+
paths: string[];
|
|
393
|
+
};
|
|
394
|
+
upload4: {
|
|
395
|
+
viewbox: string;
|
|
396
|
+
paths: string[];
|
|
397
|
+
};
|
|
398
|
+
percent: {
|
|
399
|
+
viewbox: string;
|
|
400
|
+
paths: string[];
|
|
401
|
+
};
|
|
402
|
+
mobile: {
|
|
403
|
+
viewbox: string;
|
|
404
|
+
paths: string[];
|
|
405
|
+
};
|
|
406
|
+
refresh: {
|
|
407
|
+
viewbox: string;
|
|
408
|
+
paths: string[];
|
|
409
|
+
};
|
|
410
|
+
radioChecked: {
|
|
411
|
+
viewbox: string;
|
|
412
|
+
paths: string[];
|
|
413
|
+
};
|
|
414
|
+
radioUnchecked: {
|
|
415
|
+
viewbox: string;
|
|
416
|
+
paths: string[];
|
|
417
|
+
};
|
|
418
|
+
circle: {
|
|
419
|
+
viewbox: string;
|
|
420
|
+
paths: string[];
|
|
421
|
+
};
|
|
422
|
+
circleSelected: {
|
|
423
|
+
viewbox: string;
|
|
424
|
+
paths: string[];
|
|
425
|
+
};
|
|
426
|
+
play4: {
|
|
427
|
+
viewbox: string;
|
|
428
|
+
paths: string[];
|
|
429
|
+
};
|
|
430
|
+
pause2: {
|
|
431
|
+
viewbox: string;
|
|
432
|
+
paths: string[];
|
|
433
|
+
};
|
|
434
|
+
xmlFile: {
|
|
435
|
+
viewbox: string;
|
|
436
|
+
paths: string[];
|
|
437
|
+
};
|
|
438
|
+
table: {
|
|
439
|
+
viewbox: string;
|
|
440
|
+
paths: string[];
|
|
441
|
+
};
|
|
442
|
+
database1: {
|
|
443
|
+
viewbox: string;
|
|
444
|
+
paths: string[];
|
|
445
|
+
};
|
|
446
|
+
certificate: {
|
|
447
|
+
viewbox: string;
|
|
448
|
+
paths: string[];
|
|
449
|
+
};
|
|
450
|
+
starEmpty: {
|
|
451
|
+
viewbox: string;
|
|
452
|
+
paths: string[];
|
|
453
|
+
};
|
|
454
|
+
starFull: {
|
|
455
|
+
viewbox: string;
|
|
456
|
+
paths: string[];
|
|
457
|
+
};
|
|
458
|
+
clock: {
|
|
459
|
+
viewbox: string;
|
|
460
|
+
paths: string[];
|
|
461
|
+
};
|
|
462
|
+
hourGlass: {
|
|
463
|
+
viewbox: string;
|
|
464
|
+
paths: string[];
|
|
465
|
+
};
|
|
466
|
+
boxAdd: {
|
|
467
|
+
viewbox: string;
|
|
468
|
+
paths: string[];
|
|
469
|
+
};
|
|
470
|
+
attachment: {
|
|
471
|
+
viewbox: string;
|
|
472
|
+
paths: string[];
|
|
473
|
+
};
|
|
474
|
+
chart: {
|
|
475
|
+
viewbox: string;
|
|
476
|
+
paths: string[];
|
|
477
|
+
};
|
|
478
|
+
spreadsheet: {
|
|
479
|
+
viewbox: string;
|
|
480
|
+
paths: string[];
|
|
481
|
+
};
|
|
482
|
+
consult: {
|
|
483
|
+
viewbox: string;
|
|
484
|
+
paths: string[];
|
|
485
|
+
};
|
|
486
|
+
bubbles: {
|
|
487
|
+
viewbox: string;
|
|
488
|
+
paths: string[];
|
|
489
|
+
};
|
|
490
|
+
fileInfo: {
|
|
491
|
+
viewbox: string;
|
|
492
|
+
paths: string[];
|
|
493
|
+
};
|
|
494
|
+
popup: {
|
|
495
|
+
viewbox: string;
|
|
496
|
+
paths: string[];
|
|
497
|
+
};
|
|
498
|
+
enlarge7: {
|
|
499
|
+
viewbox: string;
|
|
500
|
+
paths: string[];
|
|
501
|
+
};
|
|
502
|
+
emoji: {
|
|
503
|
+
viewbox: string;
|
|
504
|
+
paths: string[];
|
|
505
|
+
};
|
|
506
|
+
stackCancel: {
|
|
507
|
+
viewbox: string;
|
|
508
|
+
paths: string[];
|
|
509
|
+
};
|
|
510
|
+
pallete: {
|
|
511
|
+
viewbox: string;
|
|
512
|
+
paths: string[];
|
|
513
|
+
};
|
|
514
|
+
profile: {
|
|
515
|
+
viewbox: string;
|
|
516
|
+
paths: string[];
|
|
517
|
+
};
|
|
518
|
+
arrowBack: {
|
|
519
|
+
viewbox: string;
|
|
520
|
+
paths: string[];
|
|
521
|
+
};
|
|
522
|
+
bullhorn: {
|
|
523
|
+
viewbox: string;
|
|
524
|
+
paths: string[];
|
|
525
|
+
};
|
|
526
|
+
loop: {
|
|
527
|
+
viewbox: string;
|
|
528
|
+
paths: string[];
|
|
529
|
+
};
|
|
530
|
+
question2: {
|
|
531
|
+
viewbox: string;
|
|
532
|
+
paths: string[];
|
|
533
|
+
};
|
|
534
|
+
undo: {
|
|
535
|
+
viewbox: string;
|
|
536
|
+
paths: string[];
|
|
537
|
+
};
|
|
538
|
+
minusCircle: {
|
|
539
|
+
viewbox: string;
|
|
540
|
+
paths: string[];
|
|
541
|
+
};
|
|
542
|
+
zoomIn: {
|
|
543
|
+
viewbox: string;
|
|
544
|
+
paths: string[];
|
|
545
|
+
};
|
|
546
|
+
zoomOut: {
|
|
547
|
+
viewbox: string;
|
|
548
|
+
paths: string[];
|
|
549
|
+
};
|
|
550
|
+
flipVertical3: {
|
|
551
|
+
viewbox: string;
|
|
552
|
+
paths: string[];
|
|
553
|
+
};
|
|
554
|
+
flipVertical4: {
|
|
555
|
+
viewbox: string;
|
|
556
|
+
paths: string[];
|
|
557
|
+
};
|
|
558
|
+
tools: {
|
|
559
|
+
viewbox: string;
|
|
560
|
+
paths: string[];
|
|
561
|
+
};
|
|
562
|
+
checkmarkCircle: {
|
|
563
|
+
viewbox: string;
|
|
564
|
+
paths: string[];
|
|
565
|
+
};
|
|
566
|
+
products: {
|
|
567
|
+
viewbox: string;
|
|
568
|
+
paths: string[];
|
|
569
|
+
};
|
|
570
|
+
records: {
|
|
571
|
+
viewbox: string;
|
|
572
|
+
paths: string[];
|
|
573
|
+
};
|
|
574
|
+
cash3: {
|
|
575
|
+
viewbox: string;
|
|
576
|
+
paths: string[];
|
|
577
|
+
};
|
|
578
|
+
wallet: {
|
|
579
|
+
viewbox: string;
|
|
580
|
+
paths: string[];
|
|
581
|
+
};
|
|
582
|
+
stackEmpty: {
|
|
583
|
+
viewbox: string;
|
|
584
|
+
paths: string[];
|
|
585
|
+
};
|
|
586
|
+
select2: {
|
|
587
|
+
viewbox: string;
|
|
588
|
+
paths: string[];
|
|
589
|
+
};
|
|
590
|
+
keyboard: {
|
|
591
|
+
viewbox: string;
|
|
592
|
+
paths: string[];
|
|
593
|
+
};
|
|
594
|
+
download: {
|
|
595
|
+
viewbox: string;
|
|
596
|
+
paths: string[];
|
|
597
|
+
};
|
|
598
|
+
lamp8: {
|
|
599
|
+
viewbox: string;
|
|
600
|
+
paths: string[];
|
|
601
|
+
};
|
|
602
|
+
videoCamFill: {
|
|
603
|
+
viewbox: string;
|
|
604
|
+
paths: string[];
|
|
605
|
+
};
|
|
606
|
+
videoCamOutline: {
|
|
607
|
+
viewbox: string;
|
|
608
|
+
paths: string[];
|
|
609
|
+
};
|
|
610
|
+
user_block: {
|
|
611
|
+
viewbox: string;
|
|
612
|
+
paths: string[];
|
|
613
|
+
};
|
|
614
|
+
similarity: {
|
|
615
|
+
viewbox: string;
|
|
616
|
+
paths: string[];
|
|
617
|
+
};
|
|
618
|
+
fileStack: {
|
|
619
|
+
viewbox: string;
|
|
620
|
+
paths: string[];
|
|
621
|
+
};
|
|
622
|
+
tree: {
|
|
623
|
+
viewbox: string;
|
|
624
|
+
paths: string[];
|
|
625
|
+
};
|
|
626
|
+
bank: {
|
|
627
|
+
viewbox: string;
|
|
628
|
+
paths: string[];
|
|
629
|
+
};
|
|
630
|
+
earth: {
|
|
631
|
+
viewbox: string;
|
|
632
|
+
paths: string[];
|
|
633
|
+
};
|
|
634
|
+
};
|
|
635
|
+
export default _default;
|