@volverjs/ui-vue 0.0.1-beta.8 → 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +91 -56
- package/bin/icons.cjs +73 -0
- package/bin/icons.js +75 -0
- package/dist/{DesignSystem.d.ts → Volver.d.ts} +22 -18
- package/dist/components/VvAccordion/VvAccordion.es.js +165 -0
- package/dist/components/VvAccordion/VvAccordion.umd.js +1 -0
- package/dist/components/VvAccordion/VvAccordion.vue.d.ts +32 -97
- package/dist/components/VvAccordion/index.d.ts +46 -0
- package/dist/components/VvAccordionGroup/VvAccordionGroup.es.js +243 -0
- package/dist/components/VvAccordionGroup/VvAccordionGroup.umd.js +1 -0
- package/dist/components/VvAccordionGroup/VvAccordionGroup.vue.d.ts +77 -151
- package/dist/components/VvAccordionGroup/{VvAccordionGroup.d.ts → index.d.ts} +30 -13
- package/dist/components/VvBadge/VvBadge.es.js +62 -0
- package/dist/components/VvBadge/VvBadge.umd.js +1 -0
- package/dist/components/VvBadge/VvBadge.vue.d.ts +13 -54
- package/dist/components/VvBadge/{VvBadge.d.ts → index.d.ts} +1 -1
- package/dist/components/VvBreadcrumb/VvBreadcrumb.es.js +93 -0
- package/dist/components/VvBreadcrumb/VvBreadcrumb.umd.js +1 -0
- package/dist/components/VvBreadcrumb/VvBreadcrumb.vue.d.ts +33 -107
- package/dist/components/VvBreadcrumb/{VvBreadcrumb.d.ts → index.d.ts} +2 -3
- package/dist/components/VvButton/VvButton.es.js +427 -0
- package/dist/components/VvButton/VvButton.umd.js +1 -0
- package/dist/components/VvButton/VvButton.vue.d.ts +108 -199
- package/dist/components/VvButton/index.d.ts +132 -0
- package/dist/components/VvButtonGroup/VvButtonGroup.es.js +108 -0
- package/dist/components/VvButtonGroup/VvButtonGroup.umd.js +1 -0
- package/dist/components/VvButtonGroup/VvButtonGroup.vue.d.ts +89 -183
- package/dist/components/VvButtonGroup/index.d.ts +54 -0
- package/dist/components/VvCard/VvCard.es.js +77 -0
- package/dist/components/VvCard/VvCard.umd.js +1 -0
- package/dist/components/VvCard/VvCard.vue.d.ts +16 -61
- package/dist/components/VvCard/{VvCard.d.ts → index.d.ts} +1 -1
- package/dist/components/VvCheckbox/VvCheckbox.es.js +357 -0
- package/dist/components/VvCheckbox/VvCheckbox.umd.js +1 -0
- package/dist/components/VvCheckbox/VvCheckbox.vue.d.ts +74 -0
- package/dist/components/VvCheckbox/index.d.ts +54 -0
- package/dist/components/VvCheckboxGroup/VvCheckboxGroup.es.js +435 -0
- package/dist/components/VvCheckboxGroup/VvCheckboxGroup.umd.js +1 -0
- package/dist/components/VvCheckboxGroup/VvCheckboxGroup.vue.d.ts +82 -0
- package/dist/components/VvCheckboxGroup/index.d.ts +32 -0
- package/dist/components/VvCombobox/VvCombobox.es.js +594 -0
- package/dist/components/VvCombobox/VvCombobox.umd.js +1 -0
- package/dist/components/VvCombobox/VvCombobox.vue.d.ts +153 -0
- package/dist/components/{VvSelect/VvSelect.d.ts → VvCombobox/index.d.ts} +33 -36
- package/dist/components/VvDialog/VvDialog.es.js +200 -0
- package/dist/components/VvDialog/VvDialog.umd.js +1 -0
- package/dist/components/VvDialog/VvDialog.vue.d.ts +28 -132
- package/dist/components/VvDialog/{VvDialog.d.ts → index.d.ts} +2 -6
- package/dist/components/VvDropdown/VvDropdown.es.js +218 -0
- package/dist/components/VvDropdown/VvDropdown.umd.js +1 -0
- package/dist/components/VvDropdown/VvDropdown.vue.d.ts +41 -147
- package/dist/components/VvDropdown/index.d.ts +37 -0
- package/dist/components/VvIcon/VvIcon.es.js +124 -0
- package/dist/components/VvIcon/VvIcon.umd.js +1 -0
- package/dist/components/VvIcon/VvIcon.vue.d.ts +36 -150
- package/dist/components/VvIcon/{VvIcon.d.ts → index.d.ts} +9 -0
- package/dist/components/VvInputText/VvInputClearAction.d.ts +36 -0
- package/dist/components/VvInputText/VvInputPasswordAction.d.ts +56 -0
- package/dist/components/VvInputText/VvInputStepAction.d.ts +37 -0
- package/dist/components/VvInputText/VvInputText.es.js +764 -0
- package/dist/components/VvInputText/VvInputText.umd.js +1 -0
- package/dist/components/VvInputText/VvInputText.vue.d.ts +210 -287
- package/dist/components/VvInputText/VvInputTextActions.d.ts +1 -1
- package/dist/components/VvInputText/index.d.ts +182 -0
- package/dist/components/VvProgress/VvProgress.es.js +71 -0
- package/dist/components/VvProgress/VvProgress.umd.js +1 -0
- package/dist/components/VvProgress/VvProgress.vue.d.ts +20 -107
- package/dist/components/VvProgress/index.d.ts +30 -0
- package/dist/components/VvRadio/VvRadio.es.js +320 -0
- package/dist/components/VvRadio/VvRadio.umd.js +1 -0
- package/dist/components/VvRadio/VvRadio.vue.d.ts +55 -125
- package/dist/components/VvRadio/index.d.ts +40 -0
- package/dist/components/VvRadioGroup/VvRadioGroup.es.js +398 -0
- package/dist/components/VvRadioGroup/VvRadioGroup.umd.js +1 -0
- package/dist/components/VvRadioGroup/VvRadioGroup.vue.d.ts +56 -238
- package/dist/components/VvRadioGroup/index.d.ts +32 -0
- package/dist/components/VvSelect/VvSelect.es.js +415 -0
- package/dist/components/VvSelect/VvSelect.umd.js +1 -0
- package/dist/components/VvSelect/VvSelect.vue.d.ts +112 -262
- package/dist/components/VvSelect/index.d.ts +96 -0
- package/dist/components/VvTextarea/VvTextarea.es.js +463 -0
- package/dist/components/VvTextarea/VvTextarea.umd.js +1 -0
- package/dist/components/VvTextarea/VvTextarea.vue.d.ts +139 -320
- package/dist/components/VvTextarea/index.d.ts +102 -0
- package/dist/components/common/HintSlot.d.ts +12 -6
- package/dist/components/index.d.ts +19 -12
- package/dist/components/index.es.js +2309 -0
- package/dist/components/index.umd.js +1 -0
- package/dist/composables/group/types/IAccordionGroupState.d.ts +3 -4
- package/dist/composables/group/types/IButtonGroupState.d.ts +5 -11
- package/dist/composables/group/types/IGroupState.d.ts +3 -6
- package/dist/composables/group/types/IInputGroup.d.ts +1 -4
- package/dist/composables/group/useInjectedGroupState.d.ts +4 -4
- package/dist/composables/group/useProvideGroupState.d.ts +2 -2
- package/dist/composables/useComponentFocus.d.ts +4 -0
- package/dist/composables/{icons/useComponentIcons.d.ts → useComponentIcons.d.ts} +3 -2
- package/dist/composables/useDebouncedInput.d.ts +2 -0
- package/dist/composables/useOptions.d.ts +6 -0
- package/dist/composables/useTextCount.d.ts +10 -0
- package/dist/constants.d.ts +4 -4
- package/dist/icons.d.ts +1881 -0
- package/dist/icons.es.js +12 -14
- package/dist/icons.umd.js +1 -1
- package/dist/index.d.ts +9 -4
- package/dist/index.es.js +2350 -0
- package/dist/index.umd.js +1 -0
- package/dist/props/index.d.ts +297 -30
- package/dist/resolvers/unplugin.d.ts +27 -0
- package/dist/resolvers/unplugin.es.js +40 -0
- package/dist/resolvers/unplugin.umd.js +1 -0
- package/dist/stories/Accordion/Accordion.settings.d.ts +63 -0
- package/dist/stories/Accordion/Accordion.test.d.ts +2 -0
- package/dist/stories/AccordionGroup/AccordionGroup.settings.d.ts +58 -0
- package/dist/stories/AccordionGroup/AccordionGroup.test.d.ts +2 -0
- package/dist/stories/Badge/Badge.settings.d.ts +32 -0
- package/dist/stories/Badge/Badge.test.d.ts +2 -0
- package/dist/stories/Breadcrumb/Breadcrumb.settings.d.ts +29 -0
- package/dist/stories/Breadcrumb/Breadcrumb.test.d.ts +2 -0
- package/dist/stories/Button/Button.settings.d.ts +200 -0
- package/dist/stories/Button/Button.test.d.ts +1 -10
- package/dist/stories/ButtonGroup/ButtonGroup.settings.d.ts +38 -0
- package/dist/stories/ButtonGroup/ButtonGroup.test.d.ts +2 -0
- package/dist/stories/Card/Card.settings.d.ts +70 -0
- package/dist/stories/Card/Card.test.d.ts +2 -0
- package/dist/stories/Checkbox/Checkbox.settings.d.ts +165 -0
- package/dist/stories/Checkbox/Checkbox.test.d.ts +2 -0
- package/dist/stories/CheckboxGroup/CheckboxGroup.settings.d.ts +164 -0
- package/dist/stories/CheckboxGroup/CheckboxGroup.test.d.ts +2 -0
- package/dist/stories/Combobox/Combobox.settings.d.ts +267 -0
- package/dist/stories/Combobox/Combobox.test.d.ts +2 -0
- package/dist/stories/Dialog/Dialog.settings.d.ts +55 -0
- package/dist/stories/Dialog/Dialog.test.d.ts +2 -0
- package/dist/stories/Dropdown/Dropdown.settings.d.ts +75 -0
- package/dist/stories/Dropdown/Dropdown.test.d.ts +2 -0
- package/dist/stories/Icon/Icon.settings.d.ts +74 -0
- package/dist/stories/InputText/InputText.settings.d.ts +445 -0
- package/dist/stories/InputText/InputText.test.d.ts +2 -0
- package/dist/stories/Progress/Progress.settings.d.ts +38 -0
- package/dist/stories/Progress/Progress.test.d.ts +2 -0
- package/dist/stories/Radio/Radio.settings.d.ts +139 -0
- package/dist/stories/Radio/Radio.test.d.ts +2 -0
- package/dist/stories/RadioGroup/RadioGroup.settings.d.ts +164 -0
- package/dist/stories/RadioGroup/RadioGroup.test.d.ts +2 -0
- package/dist/stories/Select/Select.settings.d.ts +265 -0
- package/dist/stories/Select/Select.test.d.ts +2 -0
- package/dist/stories/Textarea/Textarea.settings.d.ts +336 -0
- package/dist/stories/Textarea/Textarea.test.d.ts +2 -0
- package/dist/stories/argTypes.d.ts +793 -0
- package/dist/test/expect.d.ts +3 -0
- package/dist/test/options.d.ts +1 -0
- package/dist/test/sleep.d.ts +1 -0
- package/dist/utils/ObjectUtilities.d.ts +82 -95
- package/env.d.ts +1 -0
- package/package.json +198 -126
- package/src/{DesignSystem.ts → Volver.ts} +57 -29
- package/src/assets/icons/detailed.json +1 -1
- package/src/assets/icons/normal.json +1 -1
- package/src/assets/icons/simple.json +1 -1
- package/src/components/VvAccordion/VvAccordion.vue +94 -78
- package/src/components/VvAccordion/index.ts +72 -0
- package/src/components/VvAccordionGroup/VvAccordionGroup.vue +93 -53
- package/src/components/VvAccordionGroup/{VvAccordionGroup.ts → index.ts} +18 -14
- package/src/components/VvBadge/VvBadge.vue +17 -8
- package/src/components/VvBadge/index.ts +6 -0
- package/src/components/VvBreadcrumb/VvBreadcrumb.vue +26 -24
- package/src/components/VvBreadcrumb/{VvBreadcrumb.ts → index.ts} +1 -2
- package/src/components/VvButton/VvButton.vue +174 -153
- package/src/components/VvButton/index.ts +171 -0
- package/src/components/VvButtonGroup/VvButtonGroup.vue +76 -48
- package/src/components/VvButtonGroup/index.ts +19 -0
- package/src/components/VvCard/VvCard.vue +20 -22
- package/src/components/VvCard/{VvCard.ts → index.ts} +1 -1
- package/src/components/VvCheckbox/VvCheckbox.vue +172 -0
- package/src/components/VvCheckbox/index.ts +60 -0
- package/src/components/VvCheckboxGroup/VvCheckboxGroup.vue +85 -0
- package/src/components/VvCheckboxGroup/index.ts +5 -0
- package/src/components/VvCombobox/VvCombobox.vue +227 -0
- package/src/components/VvCombobox/index.ts +82 -0
- package/src/components/VvDialog/VvDialog.vue +69 -67
- package/src/components/VvDialog/index.ts +10 -0
- package/src/components/VvDropdown/VvDropdown.vue +112 -114
- package/src/components/VvDropdown/index.ts +25 -0
- package/src/components/VvIcon/README.md +64 -0
- package/src/components/VvIcon/VvIcon.vue +122 -107
- package/src/components/VvIcon/{VvIcon.ts → index.ts} +17 -8
- package/src/components/VvInputText/VvInputClearAction.ts +53 -0
- package/src/components/VvInputText/VvInputPasswordAction.ts +70 -0
- package/src/components/VvInputText/VvInputStepAction.ts +49 -0
- package/src/components/VvInputText/VvInputText.vue +305 -238
- package/src/components/VvInputText/VvInputTextActions.ts +63 -114
- package/src/components/VvInputText/index.ts +140 -0
- package/src/components/VvProgress/VvProgress.vue +29 -29
- package/src/components/VvProgress/index.ts +32 -0
- package/src/components/VvRadio/VvRadio.vue +90 -119
- package/src/components/VvRadio/index.ts +40 -0
- package/src/components/VvRadioGroup/VvRadioGroup.vue +76 -69
- package/src/components/VvRadioGroup/index.ts +5 -0
- package/src/components/VvSelect/VvSelect.vue +165 -186
- package/src/components/VvSelect/index.ts +74 -0
- package/src/components/VvTextarea/VvTextarea.vue +185 -173
- package/src/components/VvTextarea/index.ts +50 -0
- package/src/components/common/HintSlot.ts +167 -137
- package/src/components/index.ts +19 -12
- package/src/composables/group/types/IAccordionGroupState.ts +3 -4
- package/src/composables/group/types/IButtonGroupState.ts +5 -11
- package/src/composables/group/types/IGroupState.ts +4 -6
- package/src/composables/group/types/IInputGroup.ts +1 -4
- package/src/composables/group/useInjectedGroupState.ts +21 -33
- package/src/composables/group/useProvideGroupState.ts +5 -7
- package/src/composables/useComponentFocus.ts +17 -0
- package/src/composables/{icons/useComponentIcons.ts → useComponentIcons.ts} +29 -20
- package/src/composables/useDebouncedInput.ts +25 -0
- package/src/composables/useModifiers.ts +18 -20
- package/src/composables/useOptions.ts +31 -0
- package/src/composables/useTextCount.ts +57 -0
- package/src/constants.ts +5 -7
- package/src/directives/{.README → .gitkeep} +0 -0
- package/src/icons.ts +7 -0
- package/src/index.ts +12 -5
- package/src/props/index.ts +186 -36
- package/src/resolvers/unplugin.ts +103 -0
- package/src/shims.d.ts +13 -0
- package/src/stories/Accordion/Accordion.settings.ts +46 -0
- package/src/stories/Accordion/Accordion.stories.mdx +21 -21
- package/src/stories/Accordion/Accordion.test.ts +61 -0
- package/src/stories/Accordion/AccordionSlots.stories.mdx +46 -70
- package/src/stories/AccordionGroup/AccordionGroup.settings.ts +55 -0
- package/src/stories/AccordionGroup/AccordionGroup.stories.mdx +24 -27
- package/src/stories/AccordionGroup/AccordionGroup.test.ts +50 -0
- package/src/stories/AccordionGroup/AccordionGroupSlots.stories.mdx +56 -0
- package/src/stories/Badge/Badge.settings.ts +26 -0
- package/src/stories/Badge/Badge.stories.mdx +36 -24
- package/src/stories/Badge/Badge.test.ts +12 -0
- package/src/stories/Badge/BadgeSlots.stories.mdx +20 -0
- package/src/stories/Breadcrumb/Breadcrumb.settings.ts +41 -0
- package/src/stories/Breadcrumb/Breadcrumb.stories.mdx +32 -29
- package/src/stories/Breadcrumb/Breadcrumb.test.ts +50 -0
- package/src/stories/Breadcrumb/BreadcrumbSlots.stories.mdx +43 -0
- package/src/stories/Button/Button.settings.ts +150 -0
- package/src/stories/Button/Button.stories.mdx +20 -54
- package/src/stories/Button/Button.test.ts +35 -46
- package/src/stories/Button/ButtonIcon.stories.mdx +139 -29
- package/src/stories/Button/ButtonLink.stories.mdx +58 -111
- package/src/stories/Button/ButtonLoading.stories.mdx +89 -62
- package/src/stories/Button/ButtonModifiers.stories.mdx +198 -121
- package/src/stories/Button/ButtonSlots.stories.mdx +83 -95
- package/src/stories/Button/ButtonState.stories.mdx +75 -0
- package/src/stories/Button/ButtonToggle.stories.mdx +50 -0
- package/src/stories/ButtonGroup/ButtonGroup.settings.ts +28 -0
- package/src/stories/ButtonGroup/ButtonGroup.stories.mdx +16 -18
- package/src/stories/ButtonGroup/ButtonGroup.test.ts +35 -0
- package/src/stories/ButtonGroup/ButtonGroupModifiers.stories.mdx +52 -0
- package/src/stories/ButtonGroup/ButtonGroupToggle.stories.mdx +45 -114
- package/src/stories/Card/Card.settings.ts +55 -0
- package/src/stories/Card/Card.stories.mdx +27 -11
- package/src/stories/Card/Card.test.ts +23 -0
- package/src/stories/Card/CardSlots.stories.mdx +80 -24
- package/src/stories/Checkbox/Checkbox.settings.ts +43 -0
- package/src/stories/Checkbox/Checkbox.stories.mdx +163 -0
- package/src/stories/Checkbox/Checkbox.test.ts +81 -0
- package/src/stories/Checkbox/CheckboxBinary.stories.mdx +68 -0
- package/src/stories/Checkbox/CheckboxSlots.stories.mdx +46 -0
- package/src/stories/CheckboxGroup/CheckboxGroup.settings.ts +15 -0
- package/src/stories/CheckboxGroup/CheckboxGroup.stories.mdx +134 -0
- package/src/stories/CheckboxGroup/CheckboxGroup.test.ts +83 -0
- package/src/stories/CheckboxGroup/CheckboxGroupOptions.stories.mdx +100 -0
- package/src/stories/CheckboxGroup/CheckboxGroupSlots.stories.mdx +67 -0
- package/src/stories/Combobox/Combobox.settings.ts +122 -0
- package/src/stories/Combobox/Combobox.stories.mdx +153 -0
- package/src/stories/Combobox/Combobox.test.ts +96 -0
- package/src/stories/Combobox/ComboboxMultiple.stories.mdx +74 -0
- package/src/stories/Combobox/ComboboxOptions.stories.mdx +100 -0
- package/src/stories/Combobox/ComboboxSlots.stories.mdx +48 -0
- package/src/stories/Dialog/Dialog.settings.ts +45 -0
- package/src/stories/Dialog/Dialog.stories.mdx +42 -16
- package/src/stories/Dialog/Dialog.test.ts +69 -0
- package/src/stories/Dialog/DialogSlots.stories.mdx +63 -0
- package/src/stories/Dropdown/Dropdown.settings.ts +42 -0
- package/src/stories/Dropdown/Dropdown.stories.mdx +85 -29
- package/src/stories/Dropdown/Dropdown.test.ts +43 -0
- package/src/stories/Dropdown/DropdownOptions.stories.mdx +87 -67
- package/src/stories/Icon/Icon.settings.ts +72 -0
- package/src/stories/Icon/Icon.stories.mdx +76 -59
- package/src/stories/Icon/IconsCollection.stories.mdx +68 -0
- package/src/stories/InputText/InputText.settings.ts +221 -0
- package/src/stories/InputText/InputText.stories.mdx +142 -69
- package/src/stories/InputText/InputText.test.ts +125 -0
- package/src/stories/InputText/InputTextIconPosition.stories.mdx +63 -16
- package/src/stories/InputText/InputTextLength.stories.mdx +110 -0
- package/src/stories/InputText/InputTextMinMax.stories.mdx +112 -0
- package/src/stories/InputText/InputTextSlots.stories.mdx +61 -22
- package/src/stories/InputText/InputTextType.stories.mdx +207 -29
- package/src/stories/Progress/Progress.settings.ts +33 -0
- package/src/stories/Progress/Progress.stories.mdx +12 -14
- package/src/stories/Progress/Progress.test.ts +9 -0
- package/src/stories/Radio/Radio.settings.ts +15 -0
- package/src/stories/Radio/Radio.stories.mdx +102 -42
- package/src/stories/Radio/Radio.test.ts +70 -0
- package/src/stories/Radio/RadioSlots.stories.mdx +39 -22
- package/src/stories/RadioGroup/RadioGroup.settings.ts +15 -0
- package/src/stories/RadioGroup/RadioGroup.stories.mdx +115 -54
- package/src/stories/RadioGroup/RadioGroup.test.ts +83 -0
- package/src/stories/RadioGroup/RadioGroupOptions.stories.mdx +83 -41
- package/src/stories/RadioGroup/RadioGroupSlots.stories.mdx +49 -144
- package/src/stories/Select/Select.settings.ts +100 -0
- package/src/stories/Select/Select.stories.mdx +113 -33
- package/src/stories/Select/Select.test.ts +82 -0
- package/src/stories/Select/SelectOptions.stories.mdx +91 -69
- package/src/stories/Select/SelectSlots.stories.mdx +48 -0
- package/src/stories/Textarea/Textarea.settings.ts +96 -0
- package/src/stories/Textarea/Textarea.stories.mdx +167 -47
- package/src/stories/Textarea/Textarea.test.ts +90 -0
- package/src/stories/Textarea/TextareaLength.stories.mdx +110 -0
- package/src/stories/Textarea/TextareaSlots.stories.mdx +61 -23
- package/src/stories/Textarea/TextareatIconPosition.stories.mdx +78 -0
- package/src/stories/argTypes.ts +433 -0
- package/src/test/expect.ts +27 -6
- package/src/test/options.ts +17 -0
- package/src/test/sleep.ts +2 -0
- package/src/test/types.d.ts +14 -0
- package/src/types/generic.d.ts +5 -0
- package/src/utils/ObjectUtilities.ts +253 -244
- package/dist/components/VvAccordion/VvAccordion.d.ts +0 -32
- package/dist/components/VvAccordion/useAccordionProps.d.ts +0 -16
- package/dist/components/VvAccordion/vv-accordion.es.js +0 -262
- package/dist/components/VvAccordion/vv-accordion.umd.js +0 -1
- package/dist/components/VvAccordionGroup/vv-accordion-group.es.js +0 -315
- package/dist/components/VvAccordionGroup/vv-accordion-group.umd.js +0 -1
- package/dist/components/VvBadge/vv-badge.es.js +0 -18
- package/dist/components/VvBadge/vv-badge.umd.js +0 -1
- package/dist/components/VvBreadcrumb/vv-breadcrumb.es.js +0 -206
- package/dist/components/VvBreadcrumb/vv-breadcrumb.umd.js +0 -1
- package/dist/components/VvButton/VvButton.d.ts +0 -115
- package/dist/components/VvButton/useButtonGroupProps.d.ts +0 -23
- package/dist/components/VvButton/vv-button.es.js +0 -422
- package/dist/components/VvButton/vv-button.umd.js +0 -1
- package/dist/components/VvButtonGroup/VvButtonGroup.d.ts +0 -57
- package/dist/components/VvButtonGroup/vv-button-group.es.js +0 -210
- package/dist/components/VvButtonGroup/vv-button-group.umd.js +0 -1
- package/dist/components/VvCard/vv-card.es.js +0 -188
- package/dist/components/VvCard/vv-card.umd.js +0 -1
- package/dist/components/VvCheck/VvCheck.d.ts +0 -47
- package/dist/components/VvCheck/VvCheck.vue.d.ts +0 -165
- package/dist/components/VvCheck/useCheckProps.d.ts +0 -16
- package/dist/components/VvCheck/vv-check.es.js +0 -321
- package/dist/components/VvCheck/vv-check.umd.js +0 -1
- package/dist/components/VvCheckGroup/VvCheckGroup.d.ts +0 -65
- package/dist/components/VvCheckGroup/VvCheckGroup.vue.d.ts +0 -272
- package/dist/components/VvCheckGroup/vv-check-group.es.js +0 -452
- package/dist/components/VvCheckGroup/vv-check-group.umd.js +0 -2
- package/dist/components/VvDialog/constants.d.ts +0 -5
- package/dist/components/VvDialog/vv-dialog.es.js +0 -315
- package/dist/components/VvDialog/vv-dialog.umd.js +0 -1
- package/dist/components/VvDropdown/VvDropdown.d.ts +0 -52
- package/dist/components/VvDropdown/vv-dropdown.es.js +0 -236
- package/dist/components/VvDropdown/vv-dropdown.umd.js +0 -1
- package/dist/components/VvIcon/vv-icon.es.js +0 -229
- package/dist/components/VvIcon/vv-icon.umd.js +0 -1
- package/dist/components/VvInputText/VvInputText.d.ts +0 -73
- package/dist/components/VvInputText/constants.d.ts +0 -55
- package/dist/components/VvInputText/vv-input-text.es.js +0 -725
- package/dist/components/VvInputText/vv-input-text.umd.js +0 -2
- package/dist/components/VvNativeSelect/VvNativeSelect.d.ts +0 -70
- package/dist/components/VvNativeSelect/VvNativeSelect.vue.d.ts +0 -228
- package/dist/components/VvNativeSelect/vv-native-select.es.js +0 -414
- package/dist/components/VvNativeSelect/vv-native-select.umd.js +0 -2
- package/dist/components/VvProgress/VvProgress.d.ts +0 -29
- package/dist/components/VvProgress/vv-progress.es.js +0 -185
- package/dist/components/VvProgress/vv-progress.umd.js +0 -1
- package/dist/components/VvRadio/VvRadio.d.ts +0 -22
- package/dist/components/VvRadio/useRadioProps.d.ts +0 -15
- package/dist/components/VvRadio/vv-radio.es.js +0 -309
- package/dist/components/VvRadio/vv-radio.umd.js +0 -1
- package/dist/components/VvRadioGroup/VvRadioGroup.d.ts +0 -54
- package/dist/components/VvRadioGroup/vv-radio-group.es.js +0 -441
- package/dist/components/VvRadioGroup/vv-radio-group.umd.js +0 -2
- package/dist/components/VvSelect/vv-select.es.js +0 -445
- package/dist/components/VvSelect/vv-select.umd.js +0 -2
- package/dist/components/VvTextarea/VvTextarea.d.ts +0 -88
- package/dist/components/VvTextarea/constants.d.ts +0 -19
- package/dist/components/VvTextarea/vv-textarea.es.js +0 -548
- package/dist/components/VvTextarea/vv-textarea.umd.js +0 -2
- package/dist/composables/debouncedInput/useDebouncedInput.d.ts +0 -2
- package/dist/composables/focus/useComponentFocus.d.ts +0 -7
- package/dist/composables/options/useOptions.d.ts +0 -5
- package/dist/composables/textLimit/useTextLimit.d.ts +0 -14
- package/dist/stories/Icon/IconList.vue.d.ts +0 -44
- package/dist/stories/utils.d.ts +0 -5
- package/dist/ui-vue.es.js +0 -3001
- package/dist/ui-vue.umd.js +0 -2
- package/src/assets/icons/index.js +0 -7
- package/src/components/VvAccordion/VvAccordion.ts +0 -34
- package/src/components/VvAccordion/useAccordionProps.ts +0 -45
- package/src/components/VvBadge/VvBadge.ts +0 -4
- package/src/components/VvButton/VvButton.ts +0 -117
- package/src/components/VvButton/useButtonGroupProps.ts +0 -51
- package/src/components/VvButtonGroup/VvButtonGroup.ts +0 -37
- package/src/components/VvCheck/VvCheck.ts +0 -48
- package/src/components/VvCheck/VvCheck.vue +0 -149
- package/src/components/VvCheck/useCheckProps.ts +0 -41
- package/src/components/VvCheckGroup/VvCheckGroup.ts +0 -34
- package/src/components/VvCheckGroup/VvCheckGroup.vue +0 -84
- package/src/components/VvDialog/VvDialog.ts +0 -17
- package/src/components/VvDialog/constants.ts +0 -5
- package/src/components/VvDropdown/VvDropdown.ts +0 -46
- package/src/components/VvInputText/VvInputText.ts +0 -66
- package/src/components/VvInputText/constants.ts +0 -34
- package/src/components/VvNativeSelect/VvNativeSelect.ts +0 -70
- package/src/components/VvNativeSelect/VvNativeSelect.vue +0 -106
- package/src/components/VvProgress/VvProgress.ts +0 -28
- package/src/components/VvRadio/VvRadio.ts +0 -25
- package/src/components/VvRadio/useRadioProps.ts +0 -40
- package/src/components/VvRadioGroup/VvRadioGroup.ts +0 -25
- package/src/components/VvSelect/VvSelect.ts +0 -91
- package/src/components/VvTextarea/VvTextarea.ts +0 -64
- package/src/components/VvTextarea/constants.ts +0 -14
- package/src/composables/debouncedInput/useDebouncedInput.ts +0 -19
- package/src/composables/focus/useComponentFocus.ts +0 -22
- package/src/composables/options/useOptions.ts +0 -27
- package/src/composables/textLimit/useTextLimit.ts +0 -44
- package/src/stories/Accordion/AccordionBordered.stories.mdx +0 -26
- package/src/stories/Accordion/AccordionIconRight.stories.mdx +0 -32
- package/src/stories/Accordion/accordionTest.js +0 -36
- package/src/stories/AccordionGroup/Accordion.stories.mdx +0 -42
- package/src/stories/AccordionGroup/AccordionItems.stories.mdx +0 -51
- package/src/stories/AccordionGroup/accordionGroupTest.js +0 -51
- package/src/stories/Badge/BadgeColor.stories.mdx +0 -54
- package/src/stories/Badge/BadgeDot.stories.mdx +0 -20
- package/src/stories/Badge/BadgeTest.js +0 -21
- package/src/stories/Breadcrumb/BreadcrumbMultiline.stories.mdx +0 -41
- package/src/stories/Button/ButtonBadge.stories.mdx +0 -34
- package/src/stories/Button/ButtonIconPosition.stories.mdx +0 -106
- package/src/stories/Button/ButtonVariant.stories.mdx +0 -205
- package/src/stories/Button/test.js +0 -41
- package/src/stories/ButtonGroup/ButtonGroupAction.stories.mdx +0 -83
- package/src/stories/ButtonGroup/ButtonGroupActionQuiet.stories.mdx +0 -50
- package/src/stories/ButtonGroup/ButtonGroupBlock.stories.mdx +0 -40
- package/src/stories/ButtonGroup/ButtonGroupCompact.stories.mdx +0 -38
- package/src/stories/ButtonGroup/ButtonGroupRounded.stories.mdx +0 -77
- package/src/stories/ButtonGroup/ButtonGroupTest.js +0 -61
- package/src/stories/ButtonGroup/ButtonGroupVertical.stories.mdx +0 -38
- package/src/stories/Card/CardVariant.stories.mdx +0 -37
- package/src/stories/Check/Check.stories.mdx +0 -62
- package/src/stories/Check/CheckBinary.stories.mdx +0 -80
- package/src/stories/Check/CheckDisabled.stories.mdx +0 -30
- package/src/stories/Check/CheckError.stories.mdx +0 -64
- package/src/stories/Check/CheckErrorTests.js +0 -72
- package/src/stories/Check/CheckHintLabel.stories.mdx +0 -30
- package/src/stories/Check/CheckPropertyTest.js +0 -101
- package/src/stories/Check/CheckReadonly.stories.mdx +0 -30
- package/src/stories/Check/CheckSlots.stories.mdx +0 -51
- package/src/stories/Check/CheckSwitch.stories.mdx +0 -30
- package/src/stories/CheckGroup/CheckGroup.stories.mdx +0 -69
- package/src/stories/CheckGroup/CheckGroupDisabled.stories.mdx +0 -26
- package/src/stories/CheckGroup/CheckGroupError.stories.mdx +0 -28
- package/src/stories/CheckGroup/CheckGroupHintLabel.stories.mdx +0 -27
- package/src/stories/CheckGroup/CheckGroupLabel.stories.mdx +0 -26
- package/src/stories/CheckGroup/CheckGroupOptionLabel.stories.mdx +0 -48
- package/src/stories/CheckGroup/CheckGroupOptionValue.stories.mdx +0 -48
- package/src/stories/CheckGroup/CheckGroupOptions.stories.mdx +0 -40
- package/src/stories/CheckGroup/CheckGroupReadonly.stories.mdx +0 -26
- package/src/stories/CheckGroup/CheckGroupSlots.stories.mdx +0 -152
- package/src/stories/CheckGroup/CheckGroupValid.stories.mdx +0 -28
- package/src/stories/CheckGroup/CheckGroupVertical.stories.mdx +0 -26
- package/src/stories/Dialog/DialogAutoClose.stories.mdx +0 -18
- package/src/stories/Dialog/DialogSize.stories.mdx +0 -36
- package/src/stories/Dropdown/DropdownDisabled.stories.mdx +0 -25
- package/src/stories/Dropdown/DropdownLabelNoResults.stories.mdx +0 -25
- package/src/stories/Dropdown/DropdownMaxValues.stories.mdx +0 -26
- package/src/stories/Dropdown/DropdownMultiple.stories.mdx +0 -56
- package/src/stories/Dropdown/DropdownUseObject.stories.mdx +0 -58
- package/src/stories/Icon/IconList.vue +0 -34
- package/src/stories/Icon/IconPrefix.stories.mdx +0 -79
- package/src/stories/Icon/IconRemote.stories.mdx +0 -39
- package/src/stories/Icon/IconTest.js +0 -27
- package/src/stories/Icon/IconsList.stories.mdx +0 -35
- package/src/stories/InputText/InputTextAutocomplete.stories.mdx +0 -15
- package/src/stories/InputText/InputTextAutofocus.stories.mdx +0 -20
- package/src/stories/InputText/InputTextDisabled.stories.mdx +0 -19
- package/src/stories/InputText/InputTextError.stories.mdx +0 -19
- package/src/stories/InputText/InputTextFloating.stories.mdx +0 -20
- package/src/stories/InputText/InputTextHintLabel.stories.mdx +0 -18
- package/src/stories/InputText/InputTextIcon.stories.mdx +0 -18
- package/src/stories/InputText/InputTextLabel.stories.mdx +0 -15
- package/src/stories/InputText/InputTextLoading.stories.mdx +0 -19
- package/src/stories/InputText/InputTextMax.stories.mdx +0 -31
- package/src/stories/InputText/InputTextMaxLength.stories.mdx +0 -36
- package/src/stories/InputText/InputTextMin.stories.mdx +0 -31
- package/src/stories/InputText/InputTextMinLength.stories.mdx +0 -15
- package/src/stories/InputText/InputTextPlaceholder.stories.mdx +0 -15
- package/src/stories/InputText/InputTextReadonly.stories.mdx +0 -19
- package/src/stories/InputText/InputTextStep.stories.mdx +0 -31
- package/src/stories/InputText/InputTextValid.stories.mdx +0 -19
- package/src/stories/NativeSelect/NativeSelect.stories.mdx +0 -53
- package/src/stories/NativeSelect/NativeSelectDisabled.stories.mdx +0 -32
- package/src/stories/NativeSelect/NativeSelectError.stories.mdx +0 -36
- package/src/stories/NativeSelect/NativeSelectHintLabel.stories.mdx +0 -34
- package/src/stories/NativeSelect/NativeSelectIconLeftRight.stories.mdx +0 -42
- package/src/stories/NativeSelect/NativeSelectLoading.stories.mdx +0 -27
- package/src/stories/NativeSelect/NativeSelectOptions.stories.mdx +0 -78
- package/src/stories/NativeSelect/NativeSelectReadonly.stories.mdx +0 -34
- package/src/stories/NativeSelect/NativeSelectUseObject.stories.mdx +0 -66
- package/src/stories/NativeSelect/NativeSelectValid.stories.mdx +0 -36
- package/src/stories/NativeSelect/NativeSelectValueKey.stories.mdx +0 -66
- package/src/stories/Progress/ProgressDeterminate.stories.mdx +0 -19
- package/src/stories/Radio/RadioDisabled.stories.mdx +0 -30
- package/src/stories/Radio/RadioError.stories.mdx +0 -64
- package/src/stories/Radio/RadioHintLabel.stories.mdx +0 -30
- package/src/stories/Radio/RadioTest.js +0 -89
- package/src/stories/RadioGroup/RadioGroupDisabled.stories.mdx +0 -29
- package/src/stories/RadioGroup/RadioGroupError.stories.mdx +0 -31
- package/src/stories/RadioGroup/RadioGroupHintLabel.stories.mdx +0 -28
- package/src/stories/RadioGroup/RadioGroupLabel.stories.mdx +0 -29
- package/src/stories/RadioGroup/RadioGroupOptionLabel.stories.mdx +0 -65
- package/src/stories/RadioGroup/RadioGroupOptionValue.stories.mdx +0 -65
- package/src/stories/RadioGroup/RadioGroupReadonly.stories.mdx +0 -29
- package/src/stories/RadioGroup/RadioGroupValid.stories.mdx +0 -31
- package/src/stories/RadioGroup/RadioGroupVertical.stories.mdx +0 -29
- package/src/stories/RadioGroup/RadioOptionsTest.js +0 -78
- package/src/stories/RadioGroup/RadioPropertyTest.js +0 -131
- package/src/stories/RadioGroup/RadioSlotsTest.js +0 -20
- package/src/stories/Select/SelectDisabled.stories.mdx +0 -32
- package/src/stories/Select/SelectMaxValues.stories.mdx +0 -33
- package/src/stories/Select/SelectMultiple.stories.mdx +0 -64
- package/src/stories/Select/SelectSearchable.stories.mdx +0 -80
- package/src/stories/Select/SelectSeparator.stories.mdx +0 -64
- package/src/stories/Select/SelectUseObject.stories.mdx +0 -66
- package/src/stories/Textarea/TextareaAutoclear.stories.mdx +0 -23
- package/src/stories/Textarea/TextareaAutocomplete.stories.mdx +0 -23
- package/src/stories/Textarea/TextareaAutofocus.stories.mdx +0 -24
- package/src/stories/Textarea/TextareaDebounce.stories.mdx +0 -23
- package/src/stories/Textarea/TextareaDisabled.stories.mdx +0 -23
- package/src/stories/Textarea/TextareaError.stories.mdx +0 -22
- package/src/stories/Textarea/TextareaErrorLabel.stories.mdx +0 -37
- package/src/stories/Textarea/TextareaFloating.stories.mdx +0 -25
- package/src/stories/Textarea/TextareaHintLabel.stories.mdx +0 -22
- package/src/stories/Textarea/TextareaIcon.stories.mdx +0 -22
- package/src/stories/Textarea/TextareaIconPosition.stories.mdx +0 -39
- package/src/stories/Textarea/TextareaId.stories.mdx +0 -19
- package/src/stories/Textarea/TextareaLabel.stories.mdx +0 -19
- package/src/stories/Textarea/TextareaLimit.stories.mdx +0 -50
- package/src/stories/Textarea/TextareaLoading.stories.mdx +0 -22
- package/src/stories/Textarea/TextareaLoadingLabel.stories.mdx +0 -23
- package/src/stories/Textarea/TextareaMaxLength.stories.mdx +0 -19
- package/src/stories/Textarea/TextareaMinLength.stories.mdx +0 -19
- package/src/stories/Textarea/TextareaModifiers.stories.mdx +0 -24
- package/src/stories/Textarea/TextareaName.stories.mdx +0 -23
- package/src/stories/Textarea/TextareaPlaceholder.stories.mdx +0 -19
- package/src/stories/Textarea/TextareaReadonly.stories.mdx +0 -23
- package/src/stories/Textarea/TextareaRequired.stories.mdx +0 -22
- package/src/stories/Textarea/TextareaResizable.stories.mdx +0 -22
- package/src/stories/Textarea/TextareaRowsCols.stories.mdx +0 -39
- package/src/stories/Textarea/TextareaValid.stories.mdx +0 -22
- package/src/stories/Textarea/TextareaValidLabel.stories.mdx +0 -35
- package/src/stories/stories.scss +0 -35
- package/src/stories/utils.ts +0 -12
- package/src/stories/volver-ui-vue.stories.mdx +0 -77
- package/src/types/.README +0 -0
package/dist/icons.d.ts
ADDED
|
@@ -0,0 +1,1881 @@
|
|
|
1
|
+
import normal from './assets/icons/normal.json';
|
|
2
|
+
declare const _default: ({
|
|
3
|
+
prefix: string;
|
|
4
|
+
lastModified: number;
|
|
5
|
+
icons: {
|
|
6
|
+
add: {
|
|
7
|
+
body: string;
|
|
8
|
+
};
|
|
9
|
+
"add-circle": {
|
|
10
|
+
body: string;
|
|
11
|
+
};
|
|
12
|
+
"align-center": {
|
|
13
|
+
body: string;
|
|
14
|
+
};
|
|
15
|
+
"align-justify": {
|
|
16
|
+
body: string;
|
|
17
|
+
};
|
|
18
|
+
"align-left": {
|
|
19
|
+
body: string;
|
|
20
|
+
};
|
|
21
|
+
"align-right": {
|
|
22
|
+
body: string;
|
|
23
|
+
};
|
|
24
|
+
analysis: {
|
|
25
|
+
body: string;
|
|
26
|
+
};
|
|
27
|
+
"analysis-2": {
|
|
28
|
+
body: string;
|
|
29
|
+
};
|
|
30
|
+
"analysis-3": {
|
|
31
|
+
body: string;
|
|
32
|
+
};
|
|
33
|
+
apple: {
|
|
34
|
+
body: string;
|
|
35
|
+
};
|
|
36
|
+
"arrow-down": {
|
|
37
|
+
body: string;
|
|
38
|
+
};
|
|
39
|
+
"arrow-left": {
|
|
40
|
+
body: string;
|
|
41
|
+
};
|
|
42
|
+
"arrow-right": {
|
|
43
|
+
body: string;
|
|
44
|
+
};
|
|
45
|
+
"arrow-up": {
|
|
46
|
+
body: string;
|
|
47
|
+
};
|
|
48
|
+
attachment: {
|
|
49
|
+
body: string;
|
|
50
|
+
};
|
|
51
|
+
"back-to-front": {
|
|
52
|
+
body: string;
|
|
53
|
+
};
|
|
54
|
+
bell: {
|
|
55
|
+
body: string;
|
|
56
|
+
};
|
|
57
|
+
"bell-active": {
|
|
58
|
+
body: string;
|
|
59
|
+
};
|
|
60
|
+
bold: {
|
|
61
|
+
body: string;
|
|
62
|
+
};
|
|
63
|
+
bookmark: {
|
|
64
|
+
body: string;
|
|
65
|
+
};
|
|
66
|
+
"bookmark-active": {
|
|
67
|
+
body: string;
|
|
68
|
+
};
|
|
69
|
+
building: {
|
|
70
|
+
body: string;
|
|
71
|
+
};
|
|
72
|
+
"bulleted-list": {
|
|
73
|
+
body: string;
|
|
74
|
+
};
|
|
75
|
+
calendar: {
|
|
76
|
+
body: string;
|
|
77
|
+
};
|
|
78
|
+
"camera-off": {
|
|
79
|
+
body: string;
|
|
80
|
+
};
|
|
81
|
+
"camera-on": {
|
|
82
|
+
body: string;
|
|
83
|
+
};
|
|
84
|
+
catalog: {
|
|
85
|
+
body: string;
|
|
86
|
+
};
|
|
87
|
+
certificate: {
|
|
88
|
+
body: string;
|
|
89
|
+
};
|
|
90
|
+
chat: {
|
|
91
|
+
body: string;
|
|
92
|
+
};
|
|
93
|
+
check: {
|
|
94
|
+
body: string;
|
|
95
|
+
};
|
|
96
|
+
"check-badge": {
|
|
97
|
+
body: string;
|
|
98
|
+
};
|
|
99
|
+
"check-circle": {
|
|
100
|
+
body: string;
|
|
101
|
+
};
|
|
102
|
+
checkbox: {
|
|
103
|
+
body: string;
|
|
104
|
+
};
|
|
105
|
+
"chevron-down": {
|
|
106
|
+
body: string;
|
|
107
|
+
};
|
|
108
|
+
"chevron-down-circle": {
|
|
109
|
+
body: string;
|
|
110
|
+
};
|
|
111
|
+
"chevron-left": {
|
|
112
|
+
body: string;
|
|
113
|
+
};
|
|
114
|
+
"chevron-left-circle": {
|
|
115
|
+
body: string;
|
|
116
|
+
};
|
|
117
|
+
"chevron-right": {
|
|
118
|
+
body: string;
|
|
119
|
+
};
|
|
120
|
+
"chevron-right-circle": {
|
|
121
|
+
body: string;
|
|
122
|
+
};
|
|
123
|
+
"chevron-up": {
|
|
124
|
+
body: string;
|
|
125
|
+
};
|
|
126
|
+
"chevron-up-circle": {
|
|
127
|
+
body: string;
|
|
128
|
+
};
|
|
129
|
+
classroom: {
|
|
130
|
+
body: string;
|
|
131
|
+
};
|
|
132
|
+
"clear-field": {
|
|
133
|
+
body: string;
|
|
134
|
+
};
|
|
135
|
+
"clear-style": {
|
|
136
|
+
body: string;
|
|
137
|
+
};
|
|
138
|
+
close: {
|
|
139
|
+
body: string;
|
|
140
|
+
};
|
|
141
|
+
"close-circle": {
|
|
142
|
+
body: string;
|
|
143
|
+
};
|
|
144
|
+
"close-loader": {
|
|
145
|
+
body: string;
|
|
146
|
+
};
|
|
147
|
+
coffee: {
|
|
148
|
+
body: string;
|
|
149
|
+
width: number;
|
|
150
|
+
height: number;
|
|
151
|
+
};
|
|
152
|
+
color: {
|
|
153
|
+
body: string;
|
|
154
|
+
};
|
|
155
|
+
"contact-us": {
|
|
156
|
+
body: string;
|
|
157
|
+
};
|
|
158
|
+
copy: {
|
|
159
|
+
body: string;
|
|
160
|
+
};
|
|
161
|
+
courses: {
|
|
162
|
+
body: string;
|
|
163
|
+
};
|
|
164
|
+
dashboard: {
|
|
165
|
+
body: string;
|
|
166
|
+
};
|
|
167
|
+
download: {
|
|
168
|
+
body: string;
|
|
169
|
+
};
|
|
170
|
+
drag: {
|
|
171
|
+
body: string;
|
|
172
|
+
};
|
|
173
|
+
dulicate: {
|
|
174
|
+
body: string;
|
|
175
|
+
};
|
|
176
|
+
edit: {
|
|
177
|
+
body: string;
|
|
178
|
+
};
|
|
179
|
+
elearning: {
|
|
180
|
+
body: string;
|
|
181
|
+
};
|
|
182
|
+
email: {
|
|
183
|
+
body: string;
|
|
184
|
+
};
|
|
185
|
+
error: {
|
|
186
|
+
body: string;
|
|
187
|
+
};
|
|
188
|
+
"error-2": {
|
|
189
|
+
body: string;
|
|
190
|
+
};
|
|
191
|
+
exercise: {
|
|
192
|
+
body: string;
|
|
193
|
+
};
|
|
194
|
+
"external-link": {
|
|
195
|
+
body: string;
|
|
196
|
+
};
|
|
197
|
+
extract: {
|
|
198
|
+
body: string;
|
|
199
|
+
};
|
|
200
|
+
"eye-off": {
|
|
201
|
+
body: string;
|
|
202
|
+
};
|
|
203
|
+
"eye-on": {
|
|
204
|
+
body: string;
|
|
205
|
+
};
|
|
206
|
+
fail: {
|
|
207
|
+
body: string;
|
|
208
|
+
};
|
|
209
|
+
"fast-back": {
|
|
210
|
+
body: string;
|
|
211
|
+
};
|
|
212
|
+
"fast-forward": {
|
|
213
|
+
body: string;
|
|
214
|
+
};
|
|
215
|
+
file: {
|
|
216
|
+
body: string;
|
|
217
|
+
};
|
|
218
|
+
"file-add": {
|
|
219
|
+
body: string;
|
|
220
|
+
};
|
|
221
|
+
"file-duplicate": {
|
|
222
|
+
body: string;
|
|
223
|
+
};
|
|
224
|
+
"file-remove": {
|
|
225
|
+
body: string;
|
|
226
|
+
};
|
|
227
|
+
"file-required": {
|
|
228
|
+
body: string;
|
|
229
|
+
};
|
|
230
|
+
filter: {
|
|
231
|
+
body: string;
|
|
232
|
+
};
|
|
233
|
+
"filter-2": {
|
|
234
|
+
body: string;
|
|
235
|
+
};
|
|
236
|
+
"filter-active": {
|
|
237
|
+
body: string;
|
|
238
|
+
};
|
|
239
|
+
flag: {
|
|
240
|
+
body: string;
|
|
241
|
+
};
|
|
242
|
+
folder: {
|
|
243
|
+
body: string;
|
|
244
|
+
};
|
|
245
|
+
"full-width": {
|
|
246
|
+
body: string;
|
|
247
|
+
};
|
|
248
|
+
"go-to-back": {
|
|
249
|
+
body: string;
|
|
250
|
+
};
|
|
251
|
+
grid: {
|
|
252
|
+
body: string;
|
|
253
|
+
};
|
|
254
|
+
group: {
|
|
255
|
+
body: string;
|
|
256
|
+
};
|
|
257
|
+
"group-add": {
|
|
258
|
+
body: string;
|
|
259
|
+
};
|
|
260
|
+
heart: {
|
|
261
|
+
body: string;
|
|
262
|
+
};
|
|
263
|
+
"heart-active": {
|
|
264
|
+
body: string;
|
|
265
|
+
};
|
|
266
|
+
highlighter: {
|
|
267
|
+
body: string;
|
|
268
|
+
};
|
|
269
|
+
home: {
|
|
270
|
+
body: string;
|
|
271
|
+
};
|
|
272
|
+
hourglass: {
|
|
273
|
+
body: string;
|
|
274
|
+
};
|
|
275
|
+
image: {
|
|
276
|
+
body: string;
|
|
277
|
+
};
|
|
278
|
+
"info-badge": {
|
|
279
|
+
body: string;
|
|
280
|
+
};
|
|
281
|
+
information: {
|
|
282
|
+
body: string;
|
|
283
|
+
};
|
|
284
|
+
italic: {
|
|
285
|
+
body: string;
|
|
286
|
+
};
|
|
287
|
+
key: {
|
|
288
|
+
body: string;
|
|
289
|
+
};
|
|
290
|
+
language: {
|
|
291
|
+
body: string;
|
|
292
|
+
};
|
|
293
|
+
"learning-path": {
|
|
294
|
+
body: string;
|
|
295
|
+
};
|
|
296
|
+
"light-off": {
|
|
297
|
+
body: string;
|
|
298
|
+
};
|
|
299
|
+
"light-on": {
|
|
300
|
+
body: string;
|
|
301
|
+
};
|
|
302
|
+
link: {
|
|
303
|
+
body: string;
|
|
304
|
+
};
|
|
305
|
+
lock: {
|
|
306
|
+
body: string;
|
|
307
|
+
};
|
|
308
|
+
login: {
|
|
309
|
+
body: string;
|
|
310
|
+
};
|
|
311
|
+
logout: {
|
|
312
|
+
body: string;
|
|
313
|
+
};
|
|
314
|
+
maximize: {
|
|
315
|
+
body: string;
|
|
316
|
+
};
|
|
317
|
+
menu: {
|
|
318
|
+
body: string;
|
|
319
|
+
};
|
|
320
|
+
merge: {
|
|
321
|
+
body: string;
|
|
322
|
+
};
|
|
323
|
+
minimize: {
|
|
324
|
+
body: string;
|
|
325
|
+
};
|
|
326
|
+
"mixed-class": {
|
|
327
|
+
body: string;
|
|
328
|
+
};
|
|
329
|
+
"more-horizontal": {
|
|
330
|
+
body: string;
|
|
331
|
+
};
|
|
332
|
+
"more-vertical": {
|
|
333
|
+
body: string;
|
|
334
|
+
};
|
|
335
|
+
news: {
|
|
336
|
+
body: string;
|
|
337
|
+
};
|
|
338
|
+
"no-prerequisites": {
|
|
339
|
+
body: string;
|
|
340
|
+
};
|
|
341
|
+
notes: {
|
|
342
|
+
body: string;
|
|
343
|
+
};
|
|
344
|
+
"number-code": {
|
|
345
|
+
body: string;
|
|
346
|
+
};
|
|
347
|
+
"numbered-list": {
|
|
348
|
+
body: string;
|
|
349
|
+
};
|
|
350
|
+
"on-site": {
|
|
351
|
+
body: string;
|
|
352
|
+
};
|
|
353
|
+
"order-down": {
|
|
354
|
+
body: string;
|
|
355
|
+
};
|
|
356
|
+
"order-up": {
|
|
357
|
+
body: string;
|
|
358
|
+
};
|
|
359
|
+
paste: {
|
|
360
|
+
body: string;
|
|
361
|
+
};
|
|
362
|
+
pausa: {
|
|
363
|
+
body: string;
|
|
364
|
+
};
|
|
365
|
+
pdf: {
|
|
366
|
+
body: string;
|
|
367
|
+
};
|
|
368
|
+
phone: {
|
|
369
|
+
body: string;
|
|
370
|
+
};
|
|
371
|
+
pin: {
|
|
372
|
+
body: string;
|
|
373
|
+
};
|
|
374
|
+
"pin-map": {
|
|
375
|
+
body: string;
|
|
376
|
+
};
|
|
377
|
+
pizza: {
|
|
378
|
+
body: string;
|
|
379
|
+
};
|
|
380
|
+
play: {
|
|
381
|
+
body: string;
|
|
382
|
+
};
|
|
383
|
+
"plug-in": {
|
|
384
|
+
body: string;
|
|
385
|
+
};
|
|
386
|
+
pointer: {
|
|
387
|
+
body: string;
|
|
388
|
+
};
|
|
389
|
+
printer: {
|
|
390
|
+
body: string;
|
|
391
|
+
};
|
|
392
|
+
profile: {
|
|
393
|
+
body: string;
|
|
394
|
+
};
|
|
395
|
+
"profile-add": {
|
|
396
|
+
body: string;
|
|
397
|
+
};
|
|
398
|
+
"push-pin-off": {
|
|
399
|
+
body: string;
|
|
400
|
+
};
|
|
401
|
+
"push-pin-on": {
|
|
402
|
+
body: string;
|
|
403
|
+
};
|
|
404
|
+
qrcode: {
|
|
405
|
+
body: string;
|
|
406
|
+
};
|
|
407
|
+
"question-badge": {
|
|
408
|
+
body: string;
|
|
409
|
+
};
|
|
410
|
+
radio: {
|
|
411
|
+
body: string;
|
|
412
|
+
};
|
|
413
|
+
redo: {
|
|
414
|
+
body: string;
|
|
415
|
+
};
|
|
416
|
+
relations: {
|
|
417
|
+
body: string;
|
|
418
|
+
};
|
|
419
|
+
reload: {
|
|
420
|
+
body: string;
|
|
421
|
+
};
|
|
422
|
+
remove: {
|
|
423
|
+
body: string;
|
|
424
|
+
};
|
|
425
|
+
"remove-circle": {
|
|
426
|
+
body: string;
|
|
427
|
+
};
|
|
428
|
+
reorder: {
|
|
429
|
+
body: string;
|
|
430
|
+
};
|
|
431
|
+
repeat: {
|
|
432
|
+
body: string;
|
|
433
|
+
};
|
|
434
|
+
repository: {
|
|
435
|
+
body: string;
|
|
436
|
+
};
|
|
437
|
+
"request-form": {
|
|
438
|
+
body: string;
|
|
439
|
+
};
|
|
440
|
+
"resize-100": {
|
|
441
|
+
body: string;
|
|
442
|
+
};
|
|
443
|
+
"resize-height": {
|
|
444
|
+
body: string;
|
|
445
|
+
};
|
|
446
|
+
"resize-width": {
|
|
447
|
+
body: string;
|
|
448
|
+
};
|
|
449
|
+
search: {
|
|
450
|
+
body: string;
|
|
451
|
+
};
|
|
452
|
+
"sequential-prerequisites": {
|
|
453
|
+
body: string;
|
|
454
|
+
};
|
|
455
|
+
settings: {
|
|
456
|
+
body: string;
|
|
457
|
+
};
|
|
458
|
+
share: {
|
|
459
|
+
body: string;
|
|
460
|
+
};
|
|
461
|
+
sketch: {
|
|
462
|
+
body: string;
|
|
463
|
+
};
|
|
464
|
+
skills: {
|
|
465
|
+
body: string;
|
|
466
|
+
};
|
|
467
|
+
"skip-back": {
|
|
468
|
+
body: string;
|
|
469
|
+
};
|
|
470
|
+
"skip-forward": {
|
|
471
|
+
body: string;
|
|
472
|
+
};
|
|
473
|
+
sms: {
|
|
474
|
+
body: string;
|
|
475
|
+
};
|
|
476
|
+
"sso-access": {
|
|
477
|
+
body: string;
|
|
478
|
+
};
|
|
479
|
+
star: {
|
|
480
|
+
body: string;
|
|
481
|
+
};
|
|
482
|
+
"star-active": {
|
|
483
|
+
body: string;
|
|
484
|
+
};
|
|
485
|
+
success: {
|
|
486
|
+
body: string;
|
|
487
|
+
};
|
|
488
|
+
sun: {
|
|
489
|
+
body: string;
|
|
490
|
+
};
|
|
491
|
+
sunrise: {
|
|
492
|
+
body: string;
|
|
493
|
+
};
|
|
494
|
+
support: {
|
|
495
|
+
body: string;
|
|
496
|
+
};
|
|
497
|
+
survey: {
|
|
498
|
+
body: string;
|
|
499
|
+
};
|
|
500
|
+
table: {
|
|
501
|
+
body: string;
|
|
502
|
+
};
|
|
503
|
+
"tematic-channels": {
|
|
504
|
+
body: string;
|
|
505
|
+
};
|
|
506
|
+
test: {
|
|
507
|
+
body: string;
|
|
508
|
+
};
|
|
509
|
+
"text-body": {
|
|
510
|
+
body: string;
|
|
511
|
+
};
|
|
512
|
+
"text-edit": {
|
|
513
|
+
body: string;
|
|
514
|
+
};
|
|
515
|
+
"text-style": {
|
|
516
|
+
body: string;
|
|
517
|
+
};
|
|
518
|
+
time: {
|
|
519
|
+
body: string;
|
|
520
|
+
};
|
|
521
|
+
"toilet-paper": {
|
|
522
|
+
body: string;
|
|
523
|
+
};
|
|
524
|
+
"training-points": {
|
|
525
|
+
body: string;
|
|
526
|
+
};
|
|
527
|
+
trash: {
|
|
528
|
+
body: string;
|
|
529
|
+
};
|
|
530
|
+
underline: {
|
|
531
|
+
body: string;
|
|
532
|
+
};
|
|
533
|
+
undo: {
|
|
534
|
+
body: string;
|
|
535
|
+
};
|
|
536
|
+
unlock: {
|
|
537
|
+
body: string;
|
|
538
|
+
};
|
|
539
|
+
upload: {
|
|
540
|
+
body: string;
|
|
541
|
+
};
|
|
542
|
+
user: {
|
|
543
|
+
body: string;
|
|
544
|
+
};
|
|
545
|
+
"user-add": {
|
|
546
|
+
body: string;
|
|
547
|
+
};
|
|
548
|
+
"user-badge": {
|
|
549
|
+
body: string;
|
|
550
|
+
};
|
|
551
|
+
"video-off": {
|
|
552
|
+
body: string;
|
|
553
|
+
};
|
|
554
|
+
"video-on": {
|
|
555
|
+
body: string;
|
|
556
|
+
};
|
|
557
|
+
"video-rec": {
|
|
558
|
+
body: string;
|
|
559
|
+
};
|
|
560
|
+
view: {
|
|
561
|
+
body: string;
|
|
562
|
+
};
|
|
563
|
+
"view-card": {
|
|
564
|
+
body: string;
|
|
565
|
+
};
|
|
566
|
+
"view-list": {
|
|
567
|
+
body: string;
|
|
568
|
+
};
|
|
569
|
+
"voice-off": {
|
|
570
|
+
body: string;
|
|
571
|
+
};
|
|
572
|
+
"voice-on": {
|
|
573
|
+
body: string;
|
|
574
|
+
};
|
|
575
|
+
"volume-down": {
|
|
576
|
+
body: string;
|
|
577
|
+
};
|
|
578
|
+
"volume-off": {
|
|
579
|
+
body: string;
|
|
580
|
+
};
|
|
581
|
+
"volume-up": {
|
|
582
|
+
body: string;
|
|
583
|
+
};
|
|
584
|
+
warning: {
|
|
585
|
+
body: string;
|
|
586
|
+
};
|
|
587
|
+
webinar: {
|
|
588
|
+
body: string;
|
|
589
|
+
};
|
|
590
|
+
whiteboard: {
|
|
591
|
+
body: string;
|
|
592
|
+
};
|
|
593
|
+
wine: {
|
|
594
|
+
body: string;
|
|
595
|
+
};
|
|
596
|
+
zip: {
|
|
597
|
+
body: string;
|
|
598
|
+
};
|
|
599
|
+
"zoom-in": {
|
|
600
|
+
body: string;
|
|
601
|
+
};
|
|
602
|
+
"zoom-out": {
|
|
603
|
+
body: string;
|
|
604
|
+
};
|
|
605
|
+
};
|
|
606
|
+
width: number;
|
|
607
|
+
height: number;
|
|
608
|
+
} | {
|
|
609
|
+
prefix: string;
|
|
610
|
+
lastModified: number;
|
|
611
|
+
icons: {
|
|
612
|
+
add: {
|
|
613
|
+
body: string;
|
|
614
|
+
};
|
|
615
|
+
"add-circle": {
|
|
616
|
+
body: string;
|
|
617
|
+
};
|
|
618
|
+
"align-center": {
|
|
619
|
+
body: string;
|
|
620
|
+
};
|
|
621
|
+
"align-justify": {
|
|
622
|
+
body: string;
|
|
623
|
+
};
|
|
624
|
+
"align-left": {
|
|
625
|
+
body: string;
|
|
626
|
+
};
|
|
627
|
+
"align-right": {
|
|
628
|
+
body: string;
|
|
629
|
+
};
|
|
630
|
+
analysis: {
|
|
631
|
+
body: string;
|
|
632
|
+
};
|
|
633
|
+
"analysis-2": {
|
|
634
|
+
body: string;
|
|
635
|
+
};
|
|
636
|
+
"analysis-3": {
|
|
637
|
+
body: string;
|
|
638
|
+
};
|
|
639
|
+
apple: {
|
|
640
|
+
body: string;
|
|
641
|
+
};
|
|
642
|
+
"arrow-down": {
|
|
643
|
+
body: string;
|
|
644
|
+
};
|
|
645
|
+
"arrow-left": {
|
|
646
|
+
body: string;
|
|
647
|
+
};
|
|
648
|
+
"arrow-right": {
|
|
649
|
+
body: string;
|
|
650
|
+
};
|
|
651
|
+
"arrow-up": {
|
|
652
|
+
body: string;
|
|
653
|
+
};
|
|
654
|
+
attachment: {
|
|
655
|
+
body: string;
|
|
656
|
+
};
|
|
657
|
+
"back-to-front": {
|
|
658
|
+
body: string;
|
|
659
|
+
};
|
|
660
|
+
bell: {
|
|
661
|
+
body: string;
|
|
662
|
+
};
|
|
663
|
+
"bell-active": {
|
|
664
|
+
body: string;
|
|
665
|
+
};
|
|
666
|
+
bold: {
|
|
667
|
+
body: string;
|
|
668
|
+
};
|
|
669
|
+
bookmark: {
|
|
670
|
+
body: string;
|
|
671
|
+
};
|
|
672
|
+
"bookmark-active": {
|
|
673
|
+
body: string;
|
|
674
|
+
};
|
|
675
|
+
building: {
|
|
676
|
+
body: string;
|
|
677
|
+
};
|
|
678
|
+
"bullet-list": {
|
|
679
|
+
body: string;
|
|
680
|
+
};
|
|
681
|
+
calendar: {
|
|
682
|
+
body: string;
|
|
683
|
+
};
|
|
684
|
+
"camera-off": {
|
|
685
|
+
body: string;
|
|
686
|
+
};
|
|
687
|
+
"camera-on": {
|
|
688
|
+
body: string;
|
|
689
|
+
};
|
|
690
|
+
catalog: {
|
|
691
|
+
body: string;
|
|
692
|
+
};
|
|
693
|
+
certificate: {
|
|
694
|
+
body: string;
|
|
695
|
+
};
|
|
696
|
+
chat: {
|
|
697
|
+
body: string;
|
|
698
|
+
};
|
|
699
|
+
check: {
|
|
700
|
+
body: string;
|
|
701
|
+
};
|
|
702
|
+
"check-badge": {
|
|
703
|
+
body: string;
|
|
704
|
+
};
|
|
705
|
+
"check-circle": {
|
|
706
|
+
body: string;
|
|
707
|
+
};
|
|
708
|
+
checkbox: {
|
|
709
|
+
body: string;
|
|
710
|
+
};
|
|
711
|
+
"chevron-down": {
|
|
712
|
+
body: string;
|
|
713
|
+
};
|
|
714
|
+
"chevron-down-circle": {
|
|
715
|
+
body: string;
|
|
716
|
+
};
|
|
717
|
+
"chevron-left": {
|
|
718
|
+
body: string;
|
|
719
|
+
};
|
|
720
|
+
"chevron-left-circle": {
|
|
721
|
+
body: string;
|
|
722
|
+
};
|
|
723
|
+
"chevron-right-circle": {
|
|
724
|
+
body: string;
|
|
725
|
+
};
|
|
726
|
+
"chevron-up": {
|
|
727
|
+
body: string;
|
|
728
|
+
};
|
|
729
|
+
"chevron-up-circle": {
|
|
730
|
+
body: string;
|
|
731
|
+
};
|
|
732
|
+
classroom: {
|
|
733
|
+
body: string;
|
|
734
|
+
};
|
|
735
|
+
"clear-field": {
|
|
736
|
+
body: string;
|
|
737
|
+
};
|
|
738
|
+
"clear-style": {
|
|
739
|
+
body: string;
|
|
740
|
+
};
|
|
741
|
+
close: {
|
|
742
|
+
body: string;
|
|
743
|
+
};
|
|
744
|
+
"close-circle": {
|
|
745
|
+
body: string;
|
|
746
|
+
};
|
|
747
|
+
"close-loader": {
|
|
748
|
+
body: string;
|
|
749
|
+
};
|
|
750
|
+
coffee: {
|
|
751
|
+
body: string;
|
|
752
|
+
};
|
|
753
|
+
color: {
|
|
754
|
+
body: string;
|
|
755
|
+
};
|
|
756
|
+
"contact-us": {
|
|
757
|
+
body: string;
|
|
758
|
+
};
|
|
759
|
+
copy: {
|
|
760
|
+
body: string;
|
|
761
|
+
};
|
|
762
|
+
courses: {
|
|
763
|
+
body: string;
|
|
764
|
+
};
|
|
765
|
+
dashboard: {
|
|
766
|
+
body: string;
|
|
767
|
+
};
|
|
768
|
+
download: {
|
|
769
|
+
body: string;
|
|
770
|
+
};
|
|
771
|
+
drag: {
|
|
772
|
+
body: string;
|
|
773
|
+
};
|
|
774
|
+
duplicate: {
|
|
775
|
+
body: string;
|
|
776
|
+
};
|
|
777
|
+
edit: {
|
|
778
|
+
body: string;
|
|
779
|
+
};
|
|
780
|
+
elearning: {
|
|
781
|
+
body: string;
|
|
782
|
+
};
|
|
783
|
+
email: {
|
|
784
|
+
body: string;
|
|
785
|
+
};
|
|
786
|
+
error: {
|
|
787
|
+
body: string;
|
|
788
|
+
};
|
|
789
|
+
"error-2": {
|
|
790
|
+
body: string;
|
|
791
|
+
};
|
|
792
|
+
exercise: {
|
|
793
|
+
body: string;
|
|
794
|
+
};
|
|
795
|
+
"external-link": {
|
|
796
|
+
body: string;
|
|
797
|
+
};
|
|
798
|
+
extract: {
|
|
799
|
+
body: string;
|
|
800
|
+
width: number;
|
|
801
|
+
height: number;
|
|
802
|
+
};
|
|
803
|
+
"eye-off": {
|
|
804
|
+
body: string;
|
|
805
|
+
};
|
|
806
|
+
"eye-on": {
|
|
807
|
+
body: string;
|
|
808
|
+
};
|
|
809
|
+
fail: {
|
|
810
|
+
body: string;
|
|
811
|
+
};
|
|
812
|
+
"fast-back": {
|
|
813
|
+
body: string;
|
|
814
|
+
};
|
|
815
|
+
"fast-forward": {
|
|
816
|
+
body: string;
|
|
817
|
+
};
|
|
818
|
+
file: {
|
|
819
|
+
body: string;
|
|
820
|
+
};
|
|
821
|
+
"file-add": {
|
|
822
|
+
body: string;
|
|
823
|
+
};
|
|
824
|
+
"file-duplicate": {
|
|
825
|
+
body: string;
|
|
826
|
+
};
|
|
827
|
+
"file-remove": {
|
|
828
|
+
body: string;
|
|
829
|
+
};
|
|
830
|
+
"file-required": {
|
|
831
|
+
body: string;
|
|
832
|
+
};
|
|
833
|
+
filter: {
|
|
834
|
+
body: string;
|
|
835
|
+
};
|
|
836
|
+
"filter-2": {
|
|
837
|
+
body: string;
|
|
838
|
+
};
|
|
839
|
+
"filter-active": {
|
|
840
|
+
body: string;
|
|
841
|
+
};
|
|
842
|
+
flag: {
|
|
843
|
+
body: string;
|
|
844
|
+
};
|
|
845
|
+
folder: {
|
|
846
|
+
body: string;
|
|
847
|
+
};
|
|
848
|
+
"full-width": {
|
|
849
|
+
body: string;
|
|
850
|
+
};
|
|
851
|
+
"go-to-back": {
|
|
852
|
+
body: string;
|
|
853
|
+
};
|
|
854
|
+
grid: {
|
|
855
|
+
body: string;
|
|
856
|
+
};
|
|
857
|
+
group: {
|
|
858
|
+
body: string;
|
|
859
|
+
};
|
|
860
|
+
"group-add": {
|
|
861
|
+
body: string;
|
|
862
|
+
};
|
|
863
|
+
heart: {
|
|
864
|
+
body: string;
|
|
865
|
+
};
|
|
866
|
+
"heart-active": {
|
|
867
|
+
body: string;
|
|
868
|
+
};
|
|
869
|
+
highlighter: {
|
|
870
|
+
body: string;
|
|
871
|
+
};
|
|
872
|
+
home: {
|
|
873
|
+
body: string;
|
|
874
|
+
};
|
|
875
|
+
hourglass: {
|
|
876
|
+
body: string;
|
|
877
|
+
};
|
|
878
|
+
image: {
|
|
879
|
+
body: string;
|
|
880
|
+
};
|
|
881
|
+
"info-badge": {
|
|
882
|
+
body: string;
|
|
883
|
+
};
|
|
884
|
+
information: {
|
|
885
|
+
body: string;
|
|
886
|
+
};
|
|
887
|
+
italic: {
|
|
888
|
+
body: string;
|
|
889
|
+
};
|
|
890
|
+
key: {
|
|
891
|
+
body: string;
|
|
892
|
+
};
|
|
893
|
+
language: {
|
|
894
|
+
body: string;
|
|
895
|
+
};
|
|
896
|
+
"learning-path": {
|
|
897
|
+
body: string;
|
|
898
|
+
};
|
|
899
|
+
"light-off": {
|
|
900
|
+
body: string;
|
|
901
|
+
};
|
|
902
|
+
"light-on": {
|
|
903
|
+
body: string;
|
|
904
|
+
};
|
|
905
|
+
link: {
|
|
906
|
+
body: string;
|
|
907
|
+
};
|
|
908
|
+
lock: {
|
|
909
|
+
body: string;
|
|
910
|
+
};
|
|
911
|
+
login: {
|
|
912
|
+
body: string;
|
|
913
|
+
};
|
|
914
|
+
logout: {
|
|
915
|
+
body: string;
|
|
916
|
+
};
|
|
917
|
+
maximaze: {
|
|
918
|
+
body: string;
|
|
919
|
+
};
|
|
920
|
+
menu: {
|
|
921
|
+
body: string;
|
|
922
|
+
};
|
|
923
|
+
merge: {
|
|
924
|
+
body: string;
|
|
925
|
+
};
|
|
926
|
+
minimize: {
|
|
927
|
+
body: string;
|
|
928
|
+
};
|
|
929
|
+
"mixed-class": {
|
|
930
|
+
body: string;
|
|
931
|
+
};
|
|
932
|
+
"more-horizontal": {
|
|
933
|
+
body: string;
|
|
934
|
+
};
|
|
935
|
+
"more-vertical": {
|
|
936
|
+
body: string;
|
|
937
|
+
};
|
|
938
|
+
news: {
|
|
939
|
+
body: string;
|
|
940
|
+
};
|
|
941
|
+
"no-prerequisites": {
|
|
942
|
+
body: string;
|
|
943
|
+
};
|
|
944
|
+
notes: {
|
|
945
|
+
body: string;
|
|
946
|
+
};
|
|
947
|
+
"number-code": {
|
|
948
|
+
body: string;
|
|
949
|
+
};
|
|
950
|
+
"numbered-list": {
|
|
951
|
+
body: string;
|
|
952
|
+
};
|
|
953
|
+
"on-site": {
|
|
954
|
+
body: string;
|
|
955
|
+
};
|
|
956
|
+
"order-down": {
|
|
957
|
+
body: string;
|
|
958
|
+
};
|
|
959
|
+
"order-up": {
|
|
960
|
+
body: string;
|
|
961
|
+
};
|
|
962
|
+
paste: {
|
|
963
|
+
body: string;
|
|
964
|
+
};
|
|
965
|
+
pausa: {
|
|
966
|
+
body: string;
|
|
967
|
+
};
|
|
968
|
+
pdf: {
|
|
969
|
+
body: string;
|
|
970
|
+
};
|
|
971
|
+
phone: {
|
|
972
|
+
body: string;
|
|
973
|
+
};
|
|
974
|
+
pin: {
|
|
975
|
+
body: string;
|
|
976
|
+
};
|
|
977
|
+
"pin-map": {
|
|
978
|
+
body: string;
|
|
979
|
+
};
|
|
980
|
+
pizza: {
|
|
981
|
+
body: string;
|
|
982
|
+
};
|
|
983
|
+
play: {
|
|
984
|
+
body: string;
|
|
985
|
+
};
|
|
986
|
+
"plug-in": {
|
|
987
|
+
body: string;
|
|
988
|
+
};
|
|
989
|
+
pointer: {
|
|
990
|
+
body: string;
|
|
991
|
+
};
|
|
992
|
+
printer: {
|
|
993
|
+
body: string;
|
|
994
|
+
};
|
|
995
|
+
profile: {
|
|
996
|
+
body: string;
|
|
997
|
+
};
|
|
998
|
+
"profile-add": {
|
|
999
|
+
body: string;
|
|
1000
|
+
};
|
|
1001
|
+
"push-pin-off": {
|
|
1002
|
+
body: string;
|
|
1003
|
+
};
|
|
1004
|
+
"push-pin-on": {
|
|
1005
|
+
body: string;
|
|
1006
|
+
};
|
|
1007
|
+
qrcode: {
|
|
1008
|
+
body: string;
|
|
1009
|
+
};
|
|
1010
|
+
"question-badge": {
|
|
1011
|
+
body: string;
|
|
1012
|
+
};
|
|
1013
|
+
radio: {
|
|
1014
|
+
body: string;
|
|
1015
|
+
};
|
|
1016
|
+
redo: {
|
|
1017
|
+
body: string;
|
|
1018
|
+
};
|
|
1019
|
+
relations: {
|
|
1020
|
+
body: string;
|
|
1021
|
+
};
|
|
1022
|
+
reload: {
|
|
1023
|
+
body: string;
|
|
1024
|
+
};
|
|
1025
|
+
remove: {
|
|
1026
|
+
body: string;
|
|
1027
|
+
};
|
|
1028
|
+
"remove-circle": {
|
|
1029
|
+
body: string;
|
|
1030
|
+
};
|
|
1031
|
+
reorder: {
|
|
1032
|
+
body: string;
|
|
1033
|
+
};
|
|
1034
|
+
repeat: {
|
|
1035
|
+
body: string;
|
|
1036
|
+
};
|
|
1037
|
+
repository: {
|
|
1038
|
+
body: string;
|
|
1039
|
+
};
|
|
1040
|
+
"request-form": {
|
|
1041
|
+
body: string;
|
|
1042
|
+
};
|
|
1043
|
+
"resize-100": {
|
|
1044
|
+
body: string;
|
|
1045
|
+
};
|
|
1046
|
+
"resize-height": {
|
|
1047
|
+
body: string;
|
|
1048
|
+
};
|
|
1049
|
+
"resize-width": {
|
|
1050
|
+
body: string;
|
|
1051
|
+
};
|
|
1052
|
+
search: {
|
|
1053
|
+
body: string;
|
|
1054
|
+
};
|
|
1055
|
+
"sequential-prerequisites": {
|
|
1056
|
+
body: string;
|
|
1057
|
+
};
|
|
1058
|
+
settings: {
|
|
1059
|
+
body: string;
|
|
1060
|
+
};
|
|
1061
|
+
share: {
|
|
1062
|
+
body: string;
|
|
1063
|
+
};
|
|
1064
|
+
sketch: {
|
|
1065
|
+
body: string;
|
|
1066
|
+
};
|
|
1067
|
+
skills: {
|
|
1068
|
+
body: string;
|
|
1069
|
+
};
|
|
1070
|
+
"skip-back": {
|
|
1071
|
+
body: string;
|
|
1072
|
+
};
|
|
1073
|
+
"skip-forward": {
|
|
1074
|
+
body: string;
|
|
1075
|
+
};
|
|
1076
|
+
sms: {
|
|
1077
|
+
body: string;
|
|
1078
|
+
};
|
|
1079
|
+
"sso-access": {
|
|
1080
|
+
body: string;
|
|
1081
|
+
};
|
|
1082
|
+
star: {
|
|
1083
|
+
body: string;
|
|
1084
|
+
};
|
|
1085
|
+
"star-active": {
|
|
1086
|
+
body: string;
|
|
1087
|
+
};
|
|
1088
|
+
success: {
|
|
1089
|
+
body: string;
|
|
1090
|
+
};
|
|
1091
|
+
sun: {
|
|
1092
|
+
body: string;
|
|
1093
|
+
};
|
|
1094
|
+
sunrise: {
|
|
1095
|
+
body: string;
|
|
1096
|
+
};
|
|
1097
|
+
support: {
|
|
1098
|
+
body: string;
|
|
1099
|
+
};
|
|
1100
|
+
survey: {
|
|
1101
|
+
body: string;
|
|
1102
|
+
};
|
|
1103
|
+
table: {
|
|
1104
|
+
body: string;
|
|
1105
|
+
};
|
|
1106
|
+
"tematic-channels": {
|
|
1107
|
+
body: string;
|
|
1108
|
+
};
|
|
1109
|
+
test: {
|
|
1110
|
+
body: string;
|
|
1111
|
+
};
|
|
1112
|
+
"text-body": {
|
|
1113
|
+
body: string;
|
|
1114
|
+
};
|
|
1115
|
+
"text-edit": {
|
|
1116
|
+
body: string;
|
|
1117
|
+
};
|
|
1118
|
+
"text-style": {
|
|
1119
|
+
body: string;
|
|
1120
|
+
};
|
|
1121
|
+
time: {
|
|
1122
|
+
body: string;
|
|
1123
|
+
};
|
|
1124
|
+
"toilet-piper": {
|
|
1125
|
+
body: string;
|
|
1126
|
+
};
|
|
1127
|
+
"training-points": {
|
|
1128
|
+
body: string;
|
|
1129
|
+
};
|
|
1130
|
+
trash: {
|
|
1131
|
+
body: string;
|
|
1132
|
+
};
|
|
1133
|
+
underline: {
|
|
1134
|
+
body: string;
|
|
1135
|
+
};
|
|
1136
|
+
undo: {
|
|
1137
|
+
body: string;
|
|
1138
|
+
};
|
|
1139
|
+
unlock: {
|
|
1140
|
+
body: string;
|
|
1141
|
+
};
|
|
1142
|
+
upload: {
|
|
1143
|
+
body: string;
|
|
1144
|
+
};
|
|
1145
|
+
user: {
|
|
1146
|
+
body: string;
|
|
1147
|
+
};
|
|
1148
|
+
"user-add": {
|
|
1149
|
+
body: string;
|
|
1150
|
+
};
|
|
1151
|
+
"user-badge": {
|
|
1152
|
+
body: string;
|
|
1153
|
+
};
|
|
1154
|
+
"video-off": {
|
|
1155
|
+
body: string;
|
|
1156
|
+
};
|
|
1157
|
+
"video-on": {
|
|
1158
|
+
body: string;
|
|
1159
|
+
};
|
|
1160
|
+
"video-rec": {
|
|
1161
|
+
body: string;
|
|
1162
|
+
};
|
|
1163
|
+
view: {
|
|
1164
|
+
body: string;
|
|
1165
|
+
};
|
|
1166
|
+
"view-card": {
|
|
1167
|
+
body: string;
|
|
1168
|
+
};
|
|
1169
|
+
"view-list": {
|
|
1170
|
+
body: string;
|
|
1171
|
+
};
|
|
1172
|
+
"voice-off": {
|
|
1173
|
+
body: string;
|
|
1174
|
+
width: number;
|
|
1175
|
+
};
|
|
1176
|
+
"voice-on": {
|
|
1177
|
+
body: string;
|
|
1178
|
+
};
|
|
1179
|
+
"volume-down": {
|
|
1180
|
+
body: string;
|
|
1181
|
+
};
|
|
1182
|
+
"volume-off": {
|
|
1183
|
+
body: string;
|
|
1184
|
+
};
|
|
1185
|
+
"volume-up": {
|
|
1186
|
+
body: string;
|
|
1187
|
+
};
|
|
1188
|
+
warning: {
|
|
1189
|
+
body: string;
|
|
1190
|
+
};
|
|
1191
|
+
webinar: {
|
|
1192
|
+
body: string;
|
|
1193
|
+
};
|
|
1194
|
+
whiteboard: {
|
|
1195
|
+
body: string;
|
|
1196
|
+
};
|
|
1197
|
+
wine: {
|
|
1198
|
+
body: string;
|
|
1199
|
+
};
|
|
1200
|
+
zip: {
|
|
1201
|
+
body: string;
|
|
1202
|
+
};
|
|
1203
|
+
"zoom-in": {
|
|
1204
|
+
body: string;
|
|
1205
|
+
};
|
|
1206
|
+
"zoom-out": {
|
|
1207
|
+
body: string;
|
|
1208
|
+
};
|
|
1209
|
+
};
|
|
1210
|
+
width: number;
|
|
1211
|
+
height: number;
|
|
1212
|
+
} | {
|
|
1213
|
+
prefix: string;
|
|
1214
|
+
lastModified: number;
|
|
1215
|
+
icons: {
|
|
1216
|
+
add: {
|
|
1217
|
+
body: string;
|
|
1218
|
+
};
|
|
1219
|
+
"add-circle": {
|
|
1220
|
+
body: string;
|
|
1221
|
+
};
|
|
1222
|
+
"align-center": {
|
|
1223
|
+
body: string;
|
|
1224
|
+
};
|
|
1225
|
+
"align-justify": {
|
|
1226
|
+
body: string;
|
|
1227
|
+
};
|
|
1228
|
+
"align-left": {
|
|
1229
|
+
body: string;
|
|
1230
|
+
};
|
|
1231
|
+
"align-right": {
|
|
1232
|
+
body: string;
|
|
1233
|
+
};
|
|
1234
|
+
analysis: {
|
|
1235
|
+
body: string;
|
|
1236
|
+
};
|
|
1237
|
+
"analysis-2": {
|
|
1238
|
+
body: string;
|
|
1239
|
+
};
|
|
1240
|
+
"analysis-3": {
|
|
1241
|
+
body: string;
|
|
1242
|
+
};
|
|
1243
|
+
apple: {
|
|
1244
|
+
body: string;
|
|
1245
|
+
height: number;
|
|
1246
|
+
};
|
|
1247
|
+
"arrow-down": {
|
|
1248
|
+
body: string;
|
|
1249
|
+
height: number;
|
|
1250
|
+
};
|
|
1251
|
+
"arrow-left": {
|
|
1252
|
+
body: string;
|
|
1253
|
+
};
|
|
1254
|
+
"arrow-right": {
|
|
1255
|
+
body: string;
|
|
1256
|
+
};
|
|
1257
|
+
"arrow-up": {
|
|
1258
|
+
body: string;
|
|
1259
|
+
};
|
|
1260
|
+
attachment: {
|
|
1261
|
+
body: string;
|
|
1262
|
+
width: number;
|
|
1263
|
+
height: number;
|
|
1264
|
+
};
|
|
1265
|
+
"bck-to-front": {
|
|
1266
|
+
body: string;
|
|
1267
|
+
height: number;
|
|
1268
|
+
};
|
|
1269
|
+
bell: {
|
|
1270
|
+
body: string;
|
|
1271
|
+
};
|
|
1272
|
+
"bell-active": {
|
|
1273
|
+
body: string;
|
|
1274
|
+
};
|
|
1275
|
+
bold: {
|
|
1276
|
+
body: string;
|
|
1277
|
+
};
|
|
1278
|
+
bookmark: {
|
|
1279
|
+
body: string;
|
|
1280
|
+
};
|
|
1281
|
+
"bookmark-active": {
|
|
1282
|
+
body: string;
|
|
1283
|
+
};
|
|
1284
|
+
building: {
|
|
1285
|
+
body: string;
|
|
1286
|
+
height: number;
|
|
1287
|
+
};
|
|
1288
|
+
"bulleted-list": {
|
|
1289
|
+
body: string;
|
|
1290
|
+
};
|
|
1291
|
+
calendar: {
|
|
1292
|
+
body: string;
|
|
1293
|
+
};
|
|
1294
|
+
"camera-off": {
|
|
1295
|
+
body: string;
|
|
1296
|
+
};
|
|
1297
|
+
"camera-on": {
|
|
1298
|
+
body: string;
|
|
1299
|
+
};
|
|
1300
|
+
catalog: {
|
|
1301
|
+
body: string;
|
|
1302
|
+
};
|
|
1303
|
+
certificate: {
|
|
1304
|
+
body: string;
|
|
1305
|
+
width: number;
|
|
1306
|
+
height: number;
|
|
1307
|
+
};
|
|
1308
|
+
chat: {
|
|
1309
|
+
body: string;
|
|
1310
|
+
width: number;
|
|
1311
|
+
height: number;
|
|
1312
|
+
};
|
|
1313
|
+
check: {
|
|
1314
|
+
body: string;
|
|
1315
|
+
};
|
|
1316
|
+
"check-badge": {
|
|
1317
|
+
body: string;
|
|
1318
|
+
};
|
|
1319
|
+
"check-circle": {
|
|
1320
|
+
body: string;
|
|
1321
|
+
};
|
|
1322
|
+
checkbox: {
|
|
1323
|
+
body: string;
|
|
1324
|
+
};
|
|
1325
|
+
"chevron-down": {
|
|
1326
|
+
body: string;
|
|
1327
|
+
};
|
|
1328
|
+
"chevron-down-circle": {
|
|
1329
|
+
body: string;
|
|
1330
|
+
};
|
|
1331
|
+
"chevron-left": {
|
|
1332
|
+
body: string;
|
|
1333
|
+
};
|
|
1334
|
+
"chevron-left-circle": {
|
|
1335
|
+
body: string;
|
|
1336
|
+
};
|
|
1337
|
+
"chevron-right": {
|
|
1338
|
+
body: string;
|
|
1339
|
+
};
|
|
1340
|
+
"chevron-right-circle": {
|
|
1341
|
+
body: string;
|
|
1342
|
+
};
|
|
1343
|
+
"chevron-up": {
|
|
1344
|
+
body: string;
|
|
1345
|
+
};
|
|
1346
|
+
"chevron-up-circle": {
|
|
1347
|
+
body: string;
|
|
1348
|
+
};
|
|
1349
|
+
classroom: {
|
|
1350
|
+
body: string;
|
|
1351
|
+
};
|
|
1352
|
+
"clear-field": {
|
|
1353
|
+
body: string;
|
|
1354
|
+
width: number;
|
|
1355
|
+
height: number;
|
|
1356
|
+
};
|
|
1357
|
+
"clear-style": {
|
|
1358
|
+
body: string;
|
|
1359
|
+
height: number;
|
|
1360
|
+
};
|
|
1361
|
+
close: {
|
|
1362
|
+
body: string;
|
|
1363
|
+
width: number;
|
|
1364
|
+
height: number;
|
|
1365
|
+
};
|
|
1366
|
+
"close-circle": {
|
|
1367
|
+
body: string;
|
|
1368
|
+
};
|
|
1369
|
+
"close-loader": {
|
|
1370
|
+
body: string;
|
|
1371
|
+
};
|
|
1372
|
+
coffee: {
|
|
1373
|
+
body: string;
|
|
1374
|
+
width: number;
|
|
1375
|
+
height: number;
|
|
1376
|
+
};
|
|
1377
|
+
color: {
|
|
1378
|
+
body: string;
|
|
1379
|
+
};
|
|
1380
|
+
"contact-us": {
|
|
1381
|
+
body: string;
|
|
1382
|
+
};
|
|
1383
|
+
copy: {
|
|
1384
|
+
body: string;
|
|
1385
|
+
};
|
|
1386
|
+
courses: {
|
|
1387
|
+
body: string;
|
|
1388
|
+
};
|
|
1389
|
+
dashboard: {
|
|
1390
|
+
body: string;
|
|
1391
|
+
};
|
|
1392
|
+
download: {
|
|
1393
|
+
body: string;
|
|
1394
|
+
};
|
|
1395
|
+
drag: {
|
|
1396
|
+
body: string;
|
|
1397
|
+
};
|
|
1398
|
+
duplicate: {
|
|
1399
|
+
body: string;
|
|
1400
|
+
height: number;
|
|
1401
|
+
};
|
|
1402
|
+
edit: {
|
|
1403
|
+
body: string;
|
|
1404
|
+
height: number;
|
|
1405
|
+
};
|
|
1406
|
+
elearning: {
|
|
1407
|
+
body: string;
|
|
1408
|
+
height: number;
|
|
1409
|
+
};
|
|
1410
|
+
email: {
|
|
1411
|
+
body: string;
|
|
1412
|
+
};
|
|
1413
|
+
error: {
|
|
1414
|
+
body: string;
|
|
1415
|
+
};
|
|
1416
|
+
"error-2": {
|
|
1417
|
+
body: string;
|
|
1418
|
+
};
|
|
1419
|
+
exercise: {
|
|
1420
|
+
body: string;
|
|
1421
|
+
};
|
|
1422
|
+
"external-link": {
|
|
1423
|
+
body: string;
|
|
1424
|
+
width: number;
|
|
1425
|
+
height: number;
|
|
1426
|
+
};
|
|
1427
|
+
extract: {
|
|
1428
|
+
body: string;
|
|
1429
|
+
};
|
|
1430
|
+
"eye-off": {
|
|
1431
|
+
body: string;
|
|
1432
|
+
width: number;
|
|
1433
|
+
};
|
|
1434
|
+
"eye-on": {
|
|
1435
|
+
body: string;
|
|
1436
|
+
width: number;
|
|
1437
|
+
};
|
|
1438
|
+
fail: {
|
|
1439
|
+
body: string;
|
|
1440
|
+
height: number;
|
|
1441
|
+
};
|
|
1442
|
+
"fast-back": {
|
|
1443
|
+
body: string;
|
|
1444
|
+
};
|
|
1445
|
+
"fast-forward": {
|
|
1446
|
+
body: string;
|
|
1447
|
+
};
|
|
1448
|
+
file: {
|
|
1449
|
+
body: string;
|
|
1450
|
+
};
|
|
1451
|
+
"file-add": {
|
|
1452
|
+
body: string;
|
|
1453
|
+
};
|
|
1454
|
+
"file-duplicate": {
|
|
1455
|
+
body: string;
|
|
1456
|
+
};
|
|
1457
|
+
"file-remove": {
|
|
1458
|
+
body: string;
|
|
1459
|
+
};
|
|
1460
|
+
"file-required": {
|
|
1461
|
+
body: string;
|
|
1462
|
+
};
|
|
1463
|
+
filter: {
|
|
1464
|
+
body: string;
|
|
1465
|
+
height: number;
|
|
1466
|
+
};
|
|
1467
|
+
"filter-2": {
|
|
1468
|
+
body: string;
|
|
1469
|
+
};
|
|
1470
|
+
"filter-active": {
|
|
1471
|
+
body: string;
|
|
1472
|
+
height: number;
|
|
1473
|
+
};
|
|
1474
|
+
flag: {
|
|
1475
|
+
body: string;
|
|
1476
|
+
};
|
|
1477
|
+
folder: {
|
|
1478
|
+
body: string;
|
|
1479
|
+
};
|
|
1480
|
+
"full-width": {
|
|
1481
|
+
body: string;
|
|
1482
|
+
};
|
|
1483
|
+
"go-to-back": {
|
|
1484
|
+
body: string;
|
|
1485
|
+
width: number;
|
|
1486
|
+
};
|
|
1487
|
+
grid: {
|
|
1488
|
+
body: string;
|
|
1489
|
+
};
|
|
1490
|
+
group: {
|
|
1491
|
+
body: string;
|
|
1492
|
+
};
|
|
1493
|
+
"group-add": {
|
|
1494
|
+
body: string;
|
|
1495
|
+
height: number;
|
|
1496
|
+
};
|
|
1497
|
+
heart: {
|
|
1498
|
+
body: string;
|
|
1499
|
+
};
|
|
1500
|
+
"heart-active": {
|
|
1501
|
+
body: string;
|
|
1502
|
+
};
|
|
1503
|
+
highlighter: {
|
|
1504
|
+
body: string;
|
|
1505
|
+
};
|
|
1506
|
+
home: {
|
|
1507
|
+
body: string;
|
|
1508
|
+
};
|
|
1509
|
+
hourglass: {
|
|
1510
|
+
body: string;
|
|
1511
|
+
};
|
|
1512
|
+
image: {
|
|
1513
|
+
body: string;
|
|
1514
|
+
};
|
|
1515
|
+
"info-badge": {
|
|
1516
|
+
body: string;
|
|
1517
|
+
height: number;
|
|
1518
|
+
};
|
|
1519
|
+
information: {
|
|
1520
|
+
body: string;
|
|
1521
|
+
};
|
|
1522
|
+
italic: {
|
|
1523
|
+
body: string;
|
|
1524
|
+
height: number;
|
|
1525
|
+
};
|
|
1526
|
+
key: {
|
|
1527
|
+
body: string;
|
|
1528
|
+
height: number;
|
|
1529
|
+
};
|
|
1530
|
+
language: {
|
|
1531
|
+
body: string;
|
|
1532
|
+
};
|
|
1533
|
+
"learning-path": {
|
|
1534
|
+
body: string;
|
|
1535
|
+
height: number;
|
|
1536
|
+
};
|
|
1537
|
+
"light-off": {
|
|
1538
|
+
body: string;
|
|
1539
|
+
};
|
|
1540
|
+
"light-on": {
|
|
1541
|
+
body: string;
|
|
1542
|
+
};
|
|
1543
|
+
link: {
|
|
1544
|
+
body: string;
|
|
1545
|
+
height: number;
|
|
1546
|
+
};
|
|
1547
|
+
lock: {
|
|
1548
|
+
body: string;
|
|
1549
|
+
};
|
|
1550
|
+
login: {
|
|
1551
|
+
body: string;
|
|
1552
|
+
width: number;
|
|
1553
|
+
};
|
|
1554
|
+
logout: {
|
|
1555
|
+
body: string;
|
|
1556
|
+
};
|
|
1557
|
+
maximaze: {
|
|
1558
|
+
body: string;
|
|
1559
|
+
};
|
|
1560
|
+
menu: {
|
|
1561
|
+
body: string;
|
|
1562
|
+
};
|
|
1563
|
+
merge: {
|
|
1564
|
+
body: string;
|
|
1565
|
+
};
|
|
1566
|
+
minimaze: {
|
|
1567
|
+
body: string;
|
|
1568
|
+
};
|
|
1569
|
+
"mixed-class": {
|
|
1570
|
+
body: string;
|
|
1571
|
+
width: number;
|
|
1572
|
+
height: number;
|
|
1573
|
+
};
|
|
1574
|
+
"more-horizontal": {
|
|
1575
|
+
body: string;
|
|
1576
|
+
};
|
|
1577
|
+
"more-vertical": {
|
|
1578
|
+
body: string;
|
|
1579
|
+
height: number;
|
|
1580
|
+
};
|
|
1581
|
+
news: {
|
|
1582
|
+
body: string;
|
|
1583
|
+
};
|
|
1584
|
+
"no-prerequisites": {
|
|
1585
|
+
body: string;
|
|
1586
|
+
};
|
|
1587
|
+
notes: {
|
|
1588
|
+
body: string;
|
|
1589
|
+
};
|
|
1590
|
+
"number-code": {
|
|
1591
|
+
body: string;
|
|
1592
|
+
height: number;
|
|
1593
|
+
};
|
|
1594
|
+
"numbered-list": {
|
|
1595
|
+
body: string;
|
|
1596
|
+
};
|
|
1597
|
+
"on-site": {
|
|
1598
|
+
body: string;
|
|
1599
|
+
};
|
|
1600
|
+
"order-down": {
|
|
1601
|
+
body: string;
|
|
1602
|
+
};
|
|
1603
|
+
"order-up": {
|
|
1604
|
+
body: string;
|
|
1605
|
+
};
|
|
1606
|
+
paste: {
|
|
1607
|
+
body: string;
|
|
1608
|
+
height: number;
|
|
1609
|
+
};
|
|
1610
|
+
pausa: {
|
|
1611
|
+
body: string;
|
|
1612
|
+
};
|
|
1613
|
+
pdf: {
|
|
1614
|
+
body: string;
|
|
1615
|
+
};
|
|
1616
|
+
phone: {
|
|
1617
|
+
body: string;
|
|
1618
|
+
};
|
|
1619
|
+
pin: {
|
|
1620
|
+
body: string;
|
|
1621
|
+
};
|
|
1622
|
+
"pin-map": {
|
|
1623
|
+
body: string;
|
|
1624
|
+
height: number;
|
|
1625
|
+
};
|
|
1626
|
+
pizza: {
|
|
1627
|
+
body: string;
|
|
1628
|
+
width: number;
|
|
1629
|
+
};
|
|
1630
|
+
play: {
|
|
1631
|
+
body: string;
|
|
1632
|
+
};
|
|
1633
|
+
"plug-in": {
|
|
1634
|
+
body: string;
|
|
1635
|
+
width: number;
|
|
1636
|
+
};
|
|
1637
|
+
pointer: {
|
|
1638
|
+
body: string;
|
|
1639
|
+
};
|
|
1640
|
+
printer: {
|
|
1641
|
+
body: string;
|
|
1642
|
+
};
|
|
1643
|
+
profile: {
|
|
1644
|
+
body: string;
|
|
1645
|
+
};
|
|
1646
|
+
"profile-add": {
|
|
1647
|
+
body: string;
|
|
1648
|
+
};
|
|
1649
|
+
"push-pin-off": {
|
|
1650
|
+
body: string;
|
|
1651
|
+
};
|
|
1652
|
+
"push-pin-on": {
|
|
1653
|
+
body: string;
|
|
1654
|
+
width: number;
|
|
1655
|
+
height: number;
|
|
1656
|
+
};
|
|
1657
|
+
qrcode: {
|
|
1658
|
+
body: string;
|
|
1659
|
+
};
|
|
1660
|
+
"question-badge": {
|
|
1661
|
+
body: string;
|
|
1662
|
+
};
|
|
1663
|
+
radio: {
|
|
1664
|
+
body: string;
|
|
1665
|
+
};
|
|
1666
|
+
redo: {
|
|
1667
|
+
body: string;
|
|
1668
|
+
};
|
|
1669
|
+
relations: {
|
|
1670
|
+
body: string;
|
|
1671
|
+
};
|
|
1672
|
+
reload: {
|
|
1673
|
+
body: string;
|
|
1674
|
+
};
|
|
1675
|
+
remove: {
|
|
1676
|
+
body: string;
|
|
1677
|
+
};
|
|
1678
|
+
"remove-circle": {
|
|
1679
|
+
body: string;
|
|
1680
|
+
};
|
|
1681
|
+
repeart: {
|
|
1682
|
+
body: string;
|
|
1683
|
+
width: number;
|
|
1684
|
+
height: number;
|
|
1685
|
+
};
|
|
1686
|
+
repository: {
|
|
1687
|
+
body: string;
|
|
1688
|
+
};
|
|
1689
|
+
"request-form": {
|
|
1690
|
+
body: string;
|
|
1691
|
+
};
|
|
1692
|
+
"resize-100": {
|
|
1693
|
+
body: string;
|
|
1694
|
+
};
|
|
1695
|
+
"resize-height": {
|
|
1696
|
+
body: string;
|
|
1697
|
+
};
|
|
1698
|
+
"resize-width": {
|
|
1699
|
+
body: string;
|
|
1700
|
+
height: number;
|
|
1701
|
+
};
|
|
1702
|
+
search: {
|
|
1703
|
+
body: string;
|
|
1704
|
+
};
|
|
1705
|
+
"sequential-prerequisites": {
|
|
1706
|
+
body: string;
|
|
1707
|
+
};
|
|
1708
|
+
settings: {
|
|
1709
|
+
body: string;
|
|
1710
|
+
};
|
|
1711
|
+
share: {
|
|
1712
|
+
body: string;
|
|
1713
|
+
width: number;
|
|
1714
|
+
};
|
|
1715
|
+
sketch: {
|
|
1716
|
+
body: string;
|
|
1717
|
+
};
|
|
1718
|
+
skills: {
|
|
1719
|
+
body: string;
|
|
1720
|
+
};
|
|
1721
|
+
"skip-back": {
|
|
1722
|
+
body: string;
|
|
1723
|
+
};
|
|
1724
|
+
"skip-forward": {
|
|
1725
|
+
body: string;
|
|
1726
|
+
};
|
|
1727
|
+
sms: {
|
|
1728
|
+
body: string;
|
|
1729
|
+
};
|
|
1730
|
+
"sso-access": {
|
|
1731
|
+
body: string;
|
|
1732
|
+
};
|
|
1733
|
+
star: {
|
|
1734
|
+
body: string;
|
|
1735
|
+
};
|
|
1736
|
+
"star-active": {
|
|
1737
|
+
body: string;
|
|
1738
|
+
};
|
|
1739
|
+
success: {
|
|
1740
|
+
body: string;
|
|
1741
|
+
height: number;
|
|
1742
|
+
};
|
|
1743
|
+
sun: {
|
|
1744
|
+
body: string;
|
|
1745
|
+
};
|
|
1746
|
+
sunrise: {
|
|
1747
|
+
body: string;
|
|
1748
|
+
};
|
|
1749
|
+
support: {
|
|
1750
|
+
body: string;
|
|
1751
|
+
};
|
|
1752
|
+
survey: {
|
|
1753
|
+
body: string;
|
|
1754
|
+
width: number;
|
|
1755
|
+
height: number;
|
|
1756
|
+
};
|
|
1757
|
+
table: {
|
|
1758
|
+
body: string;
|
|
1759
|
+
};
|
|
1760
|
+
"tematic-channels": {
|
|
1761
|
+
body: string;
|
|
1762
|
+
width: number;
|
|
1763
|
+
height: number;
|
|
1764
|
+
};
|
|
1765
|
+
test: {
|
|
1766
|
+
body: string;
|
|
1767
|
+
};
|
|
1768
|
+
"text-body": {
|
|
1769
|
+
body: string;
|
|
1770
|
+
};
|
|
1771
|
+
"text-edit": {
|
|
1772
|
+
body: string;
|
|
1773
|
+
};
|
|
1774
|
+
"text-style": {
|
|
1775
|
+
body: string;
|
|
1776
|
+
};
|
|
1777
|
+
time: {
|
|
1778
|
+
body: string;
|
|
1779
|
+
};
|
|
1780
|
+
"toilet-paper": {
|
|
1781
|
+
body: string;
|
|
1782
|
+
height: number;
|
|
1783
|
+
};
|
|
1784
|
+
"training-points": {
|
|
1785
|
+
body: string;
|
|
1786
|
+
width: number;
|
|
1787
|
+
height: number;
|
|
1788
|
+
};
|
|
1789
|
+
trash: {
|
|
1790
|
+
body: string;
|
|
1791
|
+
};
|
|
1792
|
+
underline: {
|
|
1793
|
+
body: string;
|
|
1794
|
+
};
|
|
1795
|
+
undo: {
|
|
1796
|
+
body: string;
|
|
1797
|
+
width: number;
|
|
1798
|
+
};
|
|
1799
|
+
unlock: {
|
|
1800
|
+
body: string;
|
|
1801
|
+
height: number;
|
|
1802
|
+
};
|
|
1803
|
+
upload: {
|
|
1804
|
+
body: string;
|
|
1805
|
+
};
|
|
1806
|
+
user: {
|
|
1807
|
+
body: string;
|
|
1808
|
+
};
|
|
1809
|
+
"user-add": {
|
|
1810
|
+
body: string;
|
|
1811
|
+
};
|
|
1812
|
+
"user-badge": {
|
|
1813
|
+
body: string;
|
|
1814
|
+
width: number;
|
|
1815
|
+
height: number;
|
|
1816
|
+
};
|
|
1817
|
+
"video-off": {
|
|
1818
|
+
body: string;
|
|
1819
|
+
};
|
|
1820
|
+
"video-on": {
|
|
1821
|
+
body: string;
|
|
1822
|
+
};
|
|
1823
|
+
"video-rec": {
|
|
1824
|
+
body: string;
|
|
1825
|
+
};
|
|
1826
|
+
view: {
|
|
1827
|
+
body: string;
|
|
1828
|
+
width: number;
|
|
1829
|
+
};
|
|
1830
|
+
"view-card": {
|
|
1831
|
+
body: string;
|
|
1832
|
+
};
|
|
1833
|
+
"view-list": {
|
|
1834
|
+
body: string;
|
|
1835
|
+
};
|
|
1836
|
+
"voice-off": {
|
|
1837
|
+
body: string;
|
|
1838
|
+
};
|
|
1839
|
+
"voice-on": {
|
|
1840
|
+
body: string;
|
|
1841
|
+
height: number;
|
|
1842
|
+
};
|
|
1843
|
+
"volume-down": {
|
|
1844
|
+
body: string;
|
|
1845
|
+
width: number;
|
|
1846
|
+
};
|
|
1847
|
+
"volume-off": {
|
|
1848
|
+
body: string;
|
|
1849
|
+
width: number;
|
|
1850
|
+
};
|
|
1851
|
+
"volume-up": {
|
|
1852
|
+
body: string;
|
|
1853
|
+
width: number;
|
|
1854
|
+
};
|
|
1855
|
+
warning: {
|
|
1856
|
+
body: string;
|
|
1857
|
+
};
|
|
1858
|
+
webinar: {
|
|
1859
|
+
body: string;
|
|
1860
|
+
};
|
|
1861
|
+
whiteboard: {
|
|
1862
|
+
body: string;
|
|
1863
|
+
height: number;
|
|
1864
|
+
};
|
|
1865
|
+
wine: {
|
|
1866
|
+
body: string;
|
|
1867
|
+
height: number;
|
|
1868
|
+
};
|
|
1869
|
+
zip: {
|
|
1870
|
+
body: string;
|
|
1871
|
+
};
|
|
1872
|
+
"zoom-in": {
|
|
1873
|
+
body: string;
|
|
1874
|
+
};
|
|
1875
|
+
"zoom-out": {
|
|
1876
|
+
body: string;
|
|
1877
|
+
};
|
|
1878
|
+
};
|
|
1879
|
+
})[];
|
|
1880
|
+
export default _default;
|
|
1881
|
+
export { normal };
|