@nuraly/runtime 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +778 -0
- package/components/index.ts +13 -0
- package/components/ui/components/Event/EventAttribute/EventAttribute.style.ts +11 -0
- package/components/ui/components/Event/EventAttribute/EventAttribute.ts +28 -0
- package/components/ui/components/Event/EventLabel/EventLabel.ts +19 -0
- package/components/ui/components/Event/EventValue/EventValue.ts +79 -0
- package/components/ui/components/ToastContainer/ToastContainer.ts +126 -0
- package/components/ui/components/advanced/AIChat/AIChat.helper.ts +22 -0
- package/components/ui/components/advanced/AIChat/AIChat.style.ts +52 -0
- package/components/ui/components/advanced/AIChat/AIChat.ts +143 -0
- package/components/ui/components/advanced/CodeEditor/CodeEditor.ts +489 -0
- package/components/ui/components/advanced/Collapse/Collapse.ts +86 -0
- package/components/ui/components/advanced/Collections/Collections.style.ts +21 -0
- package/components/ui/components/advanced/Collections/Collections.ts +125 -0
- package/components/ui/components/advanced/MicroApp/MicroApp.ts +98 -0
- package/components/ui/components/advanced/RefComponent/RefComponent.ts +86 -0
- package/components/ui/components/advanced/RichText/RichText.ts +98 -0
- package/components/ui/components/advanced/RichText/RichTextEditor.ts +536 -0
- package/components/ui/components/base/BaseElement/base-change-detection.ts +18 -0
- package/components/ui/components/base/BaseElement/calculateStyles.ts +31 -0
- package/components/ui/components/base/BaseElement/drag-events.helpers.ts +71 -0
- package/components/ui/components/base/BaseElement/execute-event.helpers.ts +45 -0
- package/components/ui/components/base/BaseElement/handler-component-error.ts +28 -0
- package/components/ui/components/base/BaseElement/input-handler.helpers.ts +358 -0
- package/components/ui/components/base/BaseElement/interactions.helpers.ts +14 -0
- package/components/ui/components/base/BaseElement.ts +711 -0
- package/components/ui/components/display/Badge/Badge.ts +61 -0
- package/components/ui/components/display/BoxModel/BoxModel.ts +372 -0
- package/components/ui/components/display/Code/Code.ts +103 -0
- package/components/ui/components/display/Divider/Divider.ts +98 -0
- package/components/ui/components/display/Icon/Icon.ts +60 -0
- package/components/ui/components/display/Image/Image.ts +75 -0
- package/components/ui/components/display/Table/Table.style.ts +0 -0
- package/components/ui/components/display/Table/Table.ts +178 -0
- package/components/ui/components/display/Tag/Tag.ts +49 -0
- package/components/ui/components/display/TextLabel/TextLabel.style.ts +21 -0
- package/components/ui/components/display/TextLabel/TextLabel.ts +72 -0
- package/components/ui/components/display/Video/Video.ts +46 -0
- package/components/ui/components/inputs/Button/Button.style.ts +0 -0
- package/components/ui/components/inputs/Button/Button.ts +79 -0
- package/components/ui/components/inputs/Checkbox/Checkbox.ts +76 -0
- package/components/ui/components/inputs/ColorPicker/colorpicker.ts +65 -0
- package/components/ui/components/inputs/DatePicker/DatePicker.ts +60 -0
- package/components/ui/components/inputs/Dropdown/Dropdown.ts +128 -0
- package/components/ui/components/inputs/FileUpload/FileUpload.ts +43 -0
- package/components/ui/components/inputs/IconButton/iconbutton.ts +54 -0
- package/components/ui/components/inputs/IconPicker/IconPicker.style.ts +109 -0
- package/components/ui/components/inputs/IconPicker/IconPicker.ts +61 -0
- package/components/ui/components/inputs/InsertDropdown/InsertDropdown.ts +75 -0
- package/components/ui/components/inputs/NumberInput/NumberInput.ts +84 -0
- package/components/ui/components/inputs/RadioButton/Radio-button.ts +69 -0
- package/components/ui/components/inputs/Select/Select.ts +65 -0
- package/components/ui/components/inputs/Slider/Slider.ts +63 -0
- package/components/ui/components/inputs/TextInput/TextInput.style.ts +0 -0
- package/components/ui/components/inputs/TextInput/TextInput.ts +153 -0
- package/components/ui/components/inputs/Textarea/Textarea.ts +110 -0
- package/components/ui/components/inputs/UsersDropdown/UsersDropdown.ts +30 -0
- package/components/ui/components/layout/Card/Card.ts +46 -0
- package/components/ui/components/layout/Containers/Container.style.ts +34 -0
- package/components/ui/components/layout/Containers/Container.ts +127 -0
- package/components/ui/components/layout/Panel/Panel.ts +156 -0
- package/components/ui/components/layout/Panel/index.ts +1 -0
- package/components/ui/components/layout/Tabs/Tabs.style.ts +5 -0
- package/components/ui/components/layout/Tabs/Tabs.ts +120 -0
- package/components/ui/components/navigation/EmbedURL/EmbedURL.ts +108 -0
- package/components/ui/components/navigation/Link/Link.ts +83 -0
- package/components/ui/components/navigation/Menu/Menu.ts +92 -0
- package/components/ui/components/runtime/MicroApp/MicroApp.ts +485 -0
- package/components/ui/components/runtime/MicroApp/MicroAppDataLoader.ts +240 -0
- package/components/ui/components/utility/Border/Border.ts +643 -0
- package/components/ui/components/utility/BoxShadow/BoxShadow.ts +253 -0
- package/components/ui/components/utility/Document/Document.ts +47 -0
- package/components/ui/components/utility/Export-Import/Export-Import.ts +122 -0
- package/components/ui/components/utility/Function/InvokeFunction.ts +63 -0
- package/components/ui/components/utility/Handlers/Handlers.style.ts +0 -0
- package/components/ui/components/utility/Handlers/Handlers.ts +200 -0
- package/components/ui/components/wrappers/ComponentTitle/ComponentTitle.ts +95 -0
- package/components/ui/components/wrappers/GenerikWrapper/DragWrapper/DragWrapper.style.ts +17 -0
- package/components/ui/components/wrappers/GenerikWrapper/DragWrapper/DragWrapper.ts +230 -0
- package/components/ui/components/wrappers/GenerikWrapper/GenerikWrapper.style.ts +135 -0
- package/components/ui/components/wrappers/GenerikWrapper/GenerikWrapper.ts +230 -0
- package/components/ui/components/wrappers/GenerikWrapper/QuickActionWrapper/QuickActionWrapper.style.ts +99 -0
- package/components/ui/components/wrappers/GenerikWrapper/QuickActionWrapper/QuickActionWrapper.ts +94 -0
- package/components/ui/components/wrappers/GenerikWrapper/ResizeWrapper/ResizeWrapper.style.ts +102 -0
- package/components/ui/components/wrappers/GenerikWrapper/ResizeWrapper/ResizeWrapper.ts +258 -0
- package/components/ui/components/wrappers/PreviewWrapper.ts +28 -0
- package/components/ui/components/wrappers/RectangleSelection/RectangleSelection.ts +154 -0
- package/components/ui/nuraly-ui/.storybook/main.ts +31 -0
- package/components/ui/nuraly-ui/.storybook/manager.ts +17 -0
- package/components/ui/nuraly-ui/.storybook/preview.ts +94 -0
- package/components/ui/nuraly-ui/LICENSE +28 -0
- package/components/ui/nuraly-ui/README.md +248 -0
- package/components/ui/nuraly-ui/examples/README.md +413 -0
- package/components/ui/nuraly-ui/packages/common/README.md +137 -0
- package/components/ui/nuraly-ui/packages/common/dist/constants/index.js +2 -0
- package/components/ui/nuraly-ui/packages/common/dist/constants.js +7 -0
- package/components/ui/nuraly-ui/packages/common/dist/controllers/index.js +2 -0
- package/components/ui/nuraly-ui/packages/common/dist/controllers.js +22 -0
- package/components/ui/nuraly-ui/packages/common/dist/index.js +27 -0
- package/components/ui/nuraly-ui/packages/common/dist/mixins/index.js +3 -0
- package/components/ui/nuraly-ui/packages/common/dist/mixins.js +29 -0
- package/components/ui/nuraly-ui/packages/common/dist/shared/base-mixin.js +38 -0
- package/components/ui/nuraly-ui/packages/common/dist/shared/constants.js +2 -0
- package/components/ui/nuraly-ui/packages/common/dist/shared/controllers/dropdown.controller.js +341 -0
- package/components/ui/nuraly-ui/packages/common/dist/shared/controllers/dropdown.interface.js +2 -0
- package/components/ui/nuraly-ui/packages/common/dist/shared/controllers/index.js +4 -0
- package/components/ui/nuraly-ui/packages/common/dist/shared/controllers/theme.controller.js +133 -0
- package/components/ui/nuraly-ui/packages/common/dist/shared/dependency-mixin.js +141 -0
- package/components/ui/nuraly-ui/packages/common/dist/shared/event-handler-mixin.js +95 -0
- package/components/ui/nuraly-ui/packages/common/dist/shared/index.js +17 -0
- package/components/ui/nuraly-ui/packages/common/dist/shared/theme-mixin.js +194 -0
- package/components/ui/nuraly-ui/packages/common/dist/shared/themes.js +85 -0
- package/components/ui/nuraly-ui/packages/common/dist/shared/utils.js +85 -0
- package/components/ui/nuraly-ui/packages/common/dist/shared/validation.types.js +17 -0
- package/components/ui/nuraly-ui/packages/common/dist/themes/index.js +2 -0
- package/components/ui/nuraly-ui/packages/common/dist/themes.js +23 -0
- package/components/ui/nuraly-ui/packages/common/dist/utils/index.js +2 -0
- package/components/ui/nuraly-ui/packages/common/dist/utils.js +22 -0
- package/components/ui/nuraly-ui/packages/forms/README.md +84 -0
- package/components/ui/nuraly-ui/packages/forms/node_modules/fs-extra/LICENSE +15 -0
- package/components/ui/nuraly-ui/packages/forms/node_modules/fs-extra/README.md +294 -0
- package/components/ui/nuraly-ui/packages/forms/node_modules/fs-extra/lib/copy/copy-sync.js +171 -0
- package/components/ui/nuraly-ui/packages/forms/node_modules/fs-extra/lib/copy/copy.js +175 -0
- package/components/ui/nuraly-ui/packages/forms/node_modules/fs-extra/lib/copy/index.js +7 -0
- package/components/ui/nuraly-ui/packages/forms/node_modules/fs-extra/lib/empty/index.js +39 -0
- package/components/ui/nuraly-ui/packages/forms/node_modules/fs-extra/lib/ensure/file.js +66 -0
- package/components/ui/nuraly-ui/packages/forms/node_modules/fs-extra/lib/ensure/index.js +23 -0
- package/components/ui/nuraly-ui/packages/forms/node_modules/fs-extra/lib/ensure/link.js +64 -0
- package/components/ui/nuraly-ui/packages/forms/node_modules/fs-extra/lib/ensure/symlink-paths.js +101 -0
- package/components/ui/nuraly-ui/packages/forms/node_modules/fs-extra/lib/ensure/symlink-type.js +34 -0
- package/components/ui/nuraly-ui/packages/forms/node_modules/fs-extra/lib/ensure/symlink.js +67 -0
- package/components/ui/nuraly-ui/packages/forms/node_modules/fs-extra/lib/fs/index.js +146 -0
- package/components/ui/nuraly-ui/packages/forms/node_modules/fs-extra/lib/index.js +16 -0
- package/components/ui/nuraly-ui/packages/forms/node_modules/fs-extra/lib/json/index.js +16 -0
- package/components/ui/nuraly-ui/packages/forms/node_modules/fs-extra/lib/json/jsonfile.js +11 -0
- package/components/ui/nuraly-ui/packages/forms/node_modules/fs-extra/lib/json/output-json-sync.js +12 -0
- package/components/ui/nuraly-ui/packages/forms/node_modules/fs-extra/lib/json/output-json.js +12 -0
- package/components/ui/nuraly-ui/packages/forms/node_modules/fs-extra/lib/mkdirs/index.js +14 -0
- package/components/ui/nuraly-ui/packages/forms/node_modules/fs-extra/lib/mkdirs/make-dir.js +27 -0
- package/components/ui/nuraly-ui/packages/forms/node_modules/fs-extra/lib/mkdirs/utils.js +21 -0
- package/components/ui/nuraly-ui/packages/forms/node_modules/fs-extra/lib/move/index.js +7 -0
- package/components/ui/nuraly-ui/packages/forms/node_modules/fs-extra/lib/move/move-sync.js +55 -0
- package/components/ui/nuraly-ui/packages/forms/node_modules/fs-extra/lib/move/move.js +59 -0
- package/components/ui/nuraly-ui/packages/forms/node_modules/fs-extra/lib/output-file/index.js +31 -0
- package/components/ui/nuraly-ui/packages/forms/node_modules/fs-extra/lib/path-exists/index.js +12 -0
- package/components/ui/nuraly-ui/packages/forms/node_modules/fs-extra/lib/remove/index.js +17 -0
- package/components/ui/nuraly-ui/packages/forms/node_modules/fs-extra/lib/util/async.js +29 -0
- package/components/ui/nuraly-ui/packages/forms/node_modules/fs-extra/lib/util/stat.js +159 -0
- package/components/ui/nuraly-ui/packages/forms/node_modules/fs-extra/lib/util/utimes.js +36 -0
- package/components/ui/nuraly-ui/packages/layout/README.md +77 -0
- package/components/ui/nuraly-ui/packages/layout/node_modules/fs-extra/LICENSE +15 -0
- package/components/ui/nuraly-ui/packages/layout/node_modules/fs-extra/README.md +294 -0
- package/components/ui/nuraly-ui/packages/layout/node_modules/fs-extra/lib/copy/copy-sync.js +171 -0
- package/components/ui/nuraly-ui/packages/layout/node_modules/fs-extra/lib/copy/copy.js +175 -0
- package/components/ui/nuraly-ui/packages/layout/node_modules/fs-extra/lib/copy/index.js +7 -0
- package/components/ui/nuraly-ui/packages/layout/node_modules/fs-extra/lib/empty/index.js +39 -0
- package/components/ui/nuraly-ui/packages/layout/node_modules/fs-extra/lib/ensure/file.js +66 -0
- package/components/ui/nuraly-ui/packages/layout/node_modules/fs-extra/lib/ensure/index.js +23 -0
- package/components/ui/nuraly-ui/packages/layout/node_modules/fs-extra/lib/ensure/link.js +64 -0
- package/components/ui/nuraly-ui/packages/layout/node_modules/fs-extra/lib/ensure/symlink-paths.js +101 -0
- package/components/ui/nuraly-ui/packages/layout/node_modules/fs-extra/lib/ensure/symlink-type.js +34 -0
- package/components/ui/nuraly-ui/packages/layout/node_modules/fs-extra/lib/ensure/symlink.js +67 -0
- package/components/ui/nuraly-ui/packages/layout/node_modules/fs-extra/lib/fs/index.js +146 -0
- package/components/ui/nuraly-ui/packages/layout/node_modules/fs-extra/lib/index.js +16 -0
- package/components/ui/nuraly-ui/packages/layout/node_modules/fs-extra/lib/json/index.js +16 -0
- package/components/ui/nuraly-ui/packages/layout/node_modules/fs-extra/lib/json/jsonfile.js +11 -0
- package/components/ui/nuraly-ui/packages/layout/node_modules/fs-extra/lib/json/output-json-sync.js +12 -0
- package/components/ui/nuraly-ui/packages/layout/node_modules/fs-extra/lib/json/output-json.js +12 -0
- package/components/ui/nuraly-ui/packages/layout/node_modules/fs-extra/lib/mkdirs/index.js +14 -0
- package/components/ui/nuraly-ui/packages/layout/node_modules/fs-extra/lib/mkdirs/make-dir.js +27 -0
- package/components/ui/nuraly-ui/packages/layout/node_modules/fs-extra/lib/mkdirs/utils.js +21 -0
- package/components/ui/nuraly-ui/packages/layout/node_modules/fs-extra/lib/move/index.js +7 -0
- package/components/ui/nuraly-ui/packages/layout/node_modules/fs-extra/lib/move/move-sync.js +55 -0
- package/components/ui/nuraly-ui/packages/layout/node_modules/fs-extra/lib/move/move.js +59 -0
- package/components/ui/nuraly-ui/packages/layout/node_modules/fs-extra/lib/output-file/index.js +31 -0
- package/components/ui/nuraly-ui/packages/layout/node_modules/fs-extra/lib/path-exists/index.js +12 -0
- package/components/ui/nuraly-ui/packages/layout/node_modules/fs-extra/lib/remove/index.js +17 -0
- package/components/ui/nuraly-ui/packages/layout/node_modules/fs-extra/lib/util/async.js +29 -0
- package/components/ui/nuraly-ui/packages/layout/node_modules/fs-extra/lib/util/stat.js +159 -0
- package/components/ui/nuraly-ui/packages/layout/node_modules/fs-extra/lib/util/utimes.js +36 -0
- package/components/ui/nuraly-ui/packages/themes/README.md +146 -0
- package/components/ui/nuraly-ui/packages/themes/scripts/build.js +444 -0
- package/components/ui/nuraly-ui/rollup.config.js +144 -0
- package/components/ui/nuraly-ui/src/components/alert/README.md +236 -0
- package/components/ui/nuraly-ui/src/components/alert/alert.component.ts +225 -0
- package/components/ui/nuraly-ui/src/components/alert/alert.stories.ts +466 -0
- package/components/ui/nuraly-ui/src/components/alert/alert.style.ts +192 -0
- package/components/ui/nuraly-ui/src/components/alert/alert.types.ts +57 -0
- package/components/ui/nuraly-ui/src/components/alert/index.ts +8 -0
- package/components/ui/nuraly-ui/src/components/alert/react.ts +17 -0
- package/components/ui/nuraly-ui/src/components/badge/README.md +319 -0
- package/components/ui/nuraly-ui/src/components/badge/badge.component.ts +314 -0
- package/components/ui/nuraly-ui/src/components/badge/badge.stories.ts +582 -0
- package/components/ui/nuraly-ui/src/components/badge/badge.style.ts +250 -0
- package/components/ui/nuraly-ui/src/components/badge/badge.types.ts +100 -0
- package/components/ui/nuraly-ui/src/components/badge/index.ts +1 -0
- package/components/ui/nuraly-ui/src/components/badge/react.ts +9 -0
- package/components/ui/nuraly-ui/src/components/breadcrumb/README.md +243 -0
- package/components/ui/nuraly-ui/src/components/breadcrumb/breadcrumb.component.ts +280 -0
- package/components/ui/nuraly-ui/src/components/breadcrumb/breadcrumb.stories.ts +389 -0
- package/components/ui/nuraly-ui/src/components/breadcrumb/breadcrumb.style.ts +154 -0
- package/components/ui/nuraly-ui/src/components/breadcrumb/breadcrumb.types.ts +66 -0
- package/components/ui/nuraly-ui/src/components/breadcrumb/index.ts +1 -0
- package/components/ui/nuraly-ui/src/components/breadcrumb/react.ts +11 -0
- package/components/ui/nuraly-ui/src/components/button/README.md +331 -0
- package/components/ui/nuraly-ui/src/components/button/button.component.ts +317 -0
- package/components/ui/nuraly-ui/src/components/button/button.stories.ts +861 -0
- package/components/ui/nuraly-ui/src/components/button/button.style.ts +520 -0
- package/components/ui/nuraly-ui/src/components/button/button.types.ts +68 -0
- package/components/ui/nuraly-ui/src/components/button/controllers/base.controller.ts +99 -0
- package/components/ui/nuraly-ui/src/components/button/controllers/index.ts +10 -0
- package/components/ui/nuraly-ui/src/components/button/controllers/keyboard.controller.ts +89 -0
- package/components/ui/nuraly-ui/src/components/button/controllers/link.controller.ts +86 -0
- package/components/ui/nuraly-ui/src/components/button/controllers/ripple.controller.ts +79 -0
- package/components/ui/nuraly-ui/src/components/button/index.ts +1 -0
- package/components/ui/nuraly-ui/src/components/button/interfaces/base-controller.interface.ts +67 -0
- package/components/ui/nuraly-ui/src/components/button/interfaces/index.ts +1 -0
- package/components/ui/nuraly-ui/src/components/button/react.ts +11 -0
- package/components/ui/nuraly-ui/src/components/button/test/nr-button_test.ts +90 -0
- package/components/ui/nuraly-ui/src/components/canvas/canvas.component.ts +306 -0
- package/components/ui/nuraly-ui/src/components/canvas/demo/canvas-demo.ts +18 -0
- package/components/ui/nuraly-ui/src/components/canvas/index.ts +1 -0
- package/components/ui/nuraly-ui/src/components/canvas/react.ts +13 -0
- package/components/ui/nuraly-ui/src/components/card/card.component.ts +50 -0
- package/components/ui/nuraly-ui/src/components/card/card.stories.ts +360 -0
- package/components/ui/nuraly-ui/src/components/card/card.style.ts +62 -0
- package/components/ui/nuraly-ui/src/components/card/card.types.ts +17 -0
- package/components/ui/nuraly-ui/src/components/card/index.ts +2 -0
- package/components/ui/nuraly-ui/src/components/card/react.ts +12 -0
- package/components/ui/nuraly-ui/src/components/carousel/carousel.component.ts +116 -0
- package/components/ui/nuraly-ui/src/components/carousel/carousel.style.ts +69 -0
- package/components/ui/nuraly-ui/src/components/carousel/demo/carousel-demo.ts +59 -0
- package/components/ui/nuraly-ui/src/components/carousel/index.ts +1 -0
- package/components/ui/nuraly-ui/src/components/carousel/react.ts +12 -0
- package/components/ui/nuraly-ui/src/components/chatbot/README.md +527 -0
- package/components/ui/nuraly-ui/src/components/chatbot/chatbot.component.ts +730 -0
- package/components/ui/nuraly-ui/src/components/chatbot/chatbot.stories.ts +2549 -0
- package/components/ui/nuraly-ui/src/components/chatbot/chatbot.style.ts +1272 -0
- package/components/ui/nuraly-ui/src/components/chatbot/chatbot.types.ts +269 -0
- package/components/ui/nuraly-ui/src/components/chatbot/controllers/index.ts +9 -0
- package/components/ui/nuraly-ui/src/components/chatbot/controllers/scroll.controller.ts +59 -0
- package/components/ui/nuraly-ui/src/components/chatbot/core/README.md +550 -0
- package/components/ui/nuraly-ui/src/components/chatbot/core/chatbot-core.controller.ts +918 -0
- package/components/ui/nuraly-ui/src/components/chatbot/core/event-bus.ts +104 -0
- package/components/ui/nuraly-ui/src/components/chatbot/core/handlers/file-handler.ts +79 -0
- package/components/ui/nuraly-ui/src/components/chatbot/core/handlers/index.ts +12 -0
- package/components/ui/nuraly-ui/src/components/chatbot/core/handlers/message-handler.ts +117 -0
- package/components/ui/nuraly-ui/src/components/chatbot/core/handlers/module-handler.ts +49 -0
- package/components/ui/nuraly-ui/src/components/chatbot/core/handlers/state-handler.ts +152 -0
- package/components/ui/nuraly-ui/src/components/chatbot/core/handlers/suggestion-handler.ts +38 -0
- package/components/ui/nuraly-ui/src/components/chatbot/core/handlers/thread-handler.ts +153 -0
- package/components/ui/nuraly-ui/src/components/chatbot/core/index.ts +47 -0
- package/components/ui/nuraly-ui/src/components/chatbot/core/services/index.ts +11 -0
- package/components/ui/nuraly-ui/src/components/chatbot/core/services/localization.service.ts +20 -0
- package/components/ui/nuraly-ui/src/components/chatbot/core/services/plugin.service.ts +103 -0
- package/components/ui/nuraly-ui/src/components/chatbot/core/services/provider.service.ts +342 -0
- package/components/ui/nuraly-ui/src/components/chatbot/core/services/storage.service.ts +122 -0
- package/components/ui/nuraly-ui/src/components/chatbot/core/services/validation.service.ts +107 -0
- package/components/ui/nuraly-ui/src/components/chatbot/core/types.ts +456 -0
- package/components/ui/nuraly-ui/src/components/chatbot/file-upload-validation.stories.ts +278 -0
- package/components/ui/nuraly-ui/src/components/chatbot/index.ts +27 -0
- package/components/ui/nuraly-ui/src/components/chatbot/locales/generated/ar.ts +19 -0
- package/components/ui/nuraly-ui/src/components/chatbot/locales/generated/fr.ts +19 -0
- package/components/ui/nuraly-ui/src/components/chatbot/locales/locale-codes.ts +25 -0
- package/components/ui/nuraly-ui/src/components/chatbot/plugins/analytics-plugin.ts +63 -0
- package/components/ui/nuraly-ui/src/components/chatbot/plugins/chat-plugin.ts +76 -0
- package/components/ui/nuraly-ui/src/components/chatbot/plugins/flight-card-plugin.ts +636 -0
- package/components/ui/nuraly-ui/src/components/chatbot/plugins/flight-card.stories.ts +929 -0
- package/components/ui/nuraly-ui/src/components/chatbot/plugins/index.ts +14 -0
- package/components/ui/nuraly-ui/src/components/chatbot/plugins/markdown-plugin.stories.ts +155 -0
- package/components/ui/nuraly-ui/src/components/chatbot/plugins/markdown-plugin.ts +103 -0
- package/components/ui/nuraly-ui/src/components/chatbot/plugins/persistence-plugin.ts +97 -0
- package/components/ui/nuraly-ui/src/components/chatbot/plugins/print-job-card-plugin.ts +537 -0
- package/components/ui/nuraly-ui/src/components/chatbot/plugins/print-job-card.stories.ts +649 -0
- package/components/ui/nuraly-ui/src/components/chatbot/providers/custom-api-provider.ts +239 -0
- package/components/ui/nuraly-ui/src/components/chatbot/providers/index.ts +11 -0
- package/components/ui/nuraly-ui/src/components/chatbot/providers/mock-provider.ts +433 -0
- package/components/ui/nuraly-ui/src/components/chatbot/providers/openai-provider.ts +239 -0
- package/components/ui/nuraly-ui/src/components/chatbot/react.ts +57 -0
- package/components/ui/nuraly-ui/src/components/chatbot/storage/index.ts +8 -0
- package/components/ui/nuraly-ui/src/components/chatbot/storage/storage-implementations.ts +167 -0
- package/components/ui/nuraly-ui/src/components/chatbot/templates/chatbot-main.template.ts +157 -0
- package/components/ui/nuraly-ui/src/components/chatbot/templates/file-preview-modal.template.ts +90 -0
- package/components/ui/nuraly-ui/src/components/chatbot/templates/file-upload-area.template.ts +43 -0
- package/components/ui/nuraly-ui/src/components/chatbot/templates/index.ts +14 -0
- package/components/ui/nuraly-ui/src/components/chatbot/templates/input-box.template.ts +267 -0
- package/components/ui/nuraly-ui/src/components/chatbot/templates/message.template.ts +240 -0
- package/components/ui/nuraly-ui/src/components/chatbot/templates/suggestion.template.ts +57 -0
- package/components/ui/nuraly-ui/src/components/chatbot/templates/thread-sidebar.template.ts +67 -0
- package/components/ui/nuraly-ui/src/components/chatbot/templates/url-modal.template.ts +121 -0
- package/components/ui/nuraly-ui/src/components/checkbox/checkbox.component.ts +173 -0
- package/components/ui/nuraly-ui/src/components/checkbox/checkbox.stories.ts +521 -0
- package/components/ui/nuraly-ui/src/components/checkbox/checkbox.style.ts +324 -0
- package/components/ui/nuraly-ui/src/components/checkbox/checkbox.types.ts +5 -0
- package/components/ui/nuraly-ui/src/components/checkbox/index.ts +1 -0
- package/components/ui/nuraly-ui/src/components/checkbox/mixins/checkbox-event-mixin.ts +180 -0
- package/components/ui/nuraly-ui/src/components/checkbox/mixins/checkbox-focus-mixin.ts +99 -0
- package/components/ui/nuraly-ui/src/components/checkbox/mixins/index.ts +27 -0
- package/components/ui/nuraly-ui/src/components/checkbox/react.ts +12 -0
- package/components/ui/nuraly-ui/src/components/checkbox/test/checkbox_test.ts +97 -0
- package/components/ui/nuraly-ui/src/components/collapse/collapse.component.ts +315 -0
- package/components/ui/nuraly-ui/src/components/collapse/collapse.stories.ts +738 -0
- package/components/ui/nuraly-ui/src/components/collapse/collapse.style.ts +236 -0
- package/components/ui/nuraly-ui/src/components/collapse/collapse.type.ts +95 -0
- package/components/ui/nuraly-ui/src/components/collapse/controllers/accordion.controller.ts +169 -0
- package/components/ui/nuraly-ui/src/components/collapse/controllers/animation.controller.ts +129 -0
- package/components/ui/nuraly-ui/src/components/collapse/controllers/base.controller.ts +114 -0
- package/components/ui/nuraly-ui/src/components/collapse/controllers/index.ts +15 -0
- package/components/ui/nuraly-ui/src/components/collapse/controllers/keyboard.controller.ts +212 -0
- package/components/ui/nuraly-ui/src/components/collapse/index.ts +1 -0
- package/components/ui/nuraly-ui/src/components/collapse/react.ts +13 -0
- package/components/ui/nuraly-ui/src/components/colorpicker/color-holder.component.ts +104 -0
- package/components/ui/nuraly-ui/src/components/colorpicker/color-holder.style.ts +46 -0
- package/components/ui/nuraly-ui/src/components/colorpicker/color-picker.component.ts +398 -0
- package/components/ui/nuraly-ui/src/components/colorpicker/color-picker.stories.ts +888 -0
- package/components/ui/nuraly-ui/src/components/colorpicker/color-picker.style.ts +86 -0
- package/components/ui/nuraly-ui/src/components/colorpicker/color-picker.types.ts +64 -0
- package/components/ui/nuraly-ui/src/components/colorpicker/controllers/base.controller.ts +64 -0
- package/components/ui/nuraly-ui/src/components/colorpicker/controllers/dropdown.controller.ts +268 -0
- package/components/ui/nuraly-ui/src/components/colorpicker/controllers/event.controller.ts +147 -0
- package/components/ui/nuraly-ui/src/components/colorpicker/controllers/index.ts +3 -0
- package/components/ui/nuraly-ui/src/components/colorpicker/default-color-sets.component.ts +119 -0
- package/components/ui/nuraly-ui/src/components/colorpicker/default-color-sets.style.ts +35 -0
- package/components/ui/nuraly-ui/src/components/colorpicker/index.ts +2 -0
- package/components/ui/nuraly-ui/src/components/colorpicker/interfaces/index.ts +67 -0
- package/components/ui/nuraly-ui/src/components/colorpicker/react.ts +13 -0
- package/components/ui/nuraly-ui/src/components/console/react.ts +12 -0
- package/components/ui/nuraly-ui/src/components/datepicker/README.md +60 -0
- package/components/ui/nuraly-ui/src/components/datepicker/controllers/calendar.controller.ts +252 -0
- package/components/ui/nuraly-ui/src/components/datepicker/controllers/index.ts +11 -0
- package/components/ui/nuraly-ui/src/components/datepicker/controllers/keyboard.controller.ts +290 -0
- package/components/ui/nuraly-ui/src/components/datepicker/controllers/month-year-dropdown.controller.ts +108 -0
- package/components/ui/nuraly-ui/src/components/datepicker/controllers/positioning.controller.ts +278 -0
- package/components/ui/nuraly-ui/src/components/datepicker/controllers/selection.controller.ts +303 -0
- package/components/ui/nuraly-ui/src/components/datepicker/datepicker.component.ts +659 -0
- package/components/ui/nuraly-ui/src/components/datepicker/datepicker.constant.ts +81 -0
- package/components/ui/nuraly-ui/src/components/datepicker/datepicker.stories.ts +461 -0
- package/components/ui/nuraly-ui/src/components/datepicker/datepicker.style.ts +456 -0
- package/components/ui/nuraly-ui/src/components/datepicker/datepicker.style.variables.ts +119 -0
- package/components/ui/nuraly-ui/src/components/datepicker/datepicker.types.ts +154 -0
- package/components/ui/nuraly-ui/src/components/datepicker/index.ts +3 -0
- package/components/ui/nuraly-ui/src/components/datepicker/interfaces/base-controller.interface.ts +42 -0
- package/components/ui/nuraly-ui/src/components/datepicker/interfaces/datepicker-controllers.interface.ts +128 -0
- package/components/ui/nuraly-ui/src/components/datepicker/interfaces/index.ts +15 -0
- package/components/ui/nuraly-ui/src/components/datepicker/react.ts +24 -0
- package/components/ui/nuraly-ui/src/components/datepicker/templates/days.template.ts +57 -0
- package/components/ui/nuraly-ui/src/components/datepicker/templates/dropdown.template.ts +61 -0
- package/components/ui/nuraly-ui/src/components/datepicker/templates/headers.template.ts +7 -0
- package/components/ui/nuraly-ui/src/components/datepicker/templates/months.template.ts +16 -0
- package/components/ui/nuraly-ui/src/components/datepicker/templates/years.template.ts +18 -0
- package/components/ui/nuraly-ui/src/components/datepicker/test/datepicker_test.ts +124 -0
- package/components/ui/nuraly-ui/src/components/datepicker/utils/day.helper.ts +56 -0
- package/components/ui/nuraly-ui/src/components/datepicker/utils/formatter.ts +8 -0
- package/components/ui/nuraly-ui/src/components/datepicker/utils/index.ts +11 -0
- package/components/ui/nuraly-ui/src/components/datepicker/utils/locale.helper.ts +152 -0
- package/components/ui/nuraly-ui/src/components/datepicker/utils/month.helper.ts +26 -0
- package/components/ui/nuraly-ui/src/components/datepicker/utils/string.helper.ts +3 -0
- package/components/ui/nuraly-ui/src/components/divider/divider.component.ts +172 -0
- package/components/ui/nuraly-ui/src/components/divider/divider.stories.ts +271 -0
- package/components/ui/nuraly-ui/src/components/divider/divider.style.ts +139 -0
- package/components/ui/nuraly-ui/src/components/divider/divider.types.ts +59 -0
- package/components/ui/nuraly-ui/src/components/divider/index.ts +2 -0
- package/components/ui/nuraly-ui/src/components/divider/react.ts +9 -0
- package/components/ui/nuraly-ui/src/components/document/demo/document-demo.ts +28 -0
- package/components/ui/nuraly-ui/src/components/document/document.component.ts +133 -0
- package/components/ui/nuraly-ui/src/components/document/document.stories.ts +266 -0
- package/components/ui/nuraly-ui/src/components/document/document.style.ts +210 -0
- package/components/ui/nuraly-ui/src/components/document/document.types.ts +83 -0
- package/components/ui/nuraly-ui/src/components/document/index.ts +2 -0
- package/components/ui/nuraly-ui/src/components/document/react.ts +15 -0
- package/components/ui/nuraly-ui/src/components/dropdown/controllers/base.controller.ts +85 -0
- package/components/ui/nuraly-ui/src/components/dropdown/controllers/dropdown.controller.ts +476 -0
- package/components/ui/nuraly-ui/src/components/dropdown/controllers/index.ts +2 -0
- package/components/ui/nuraly-ui/src/components/dropdown/dropdown.component.ts +348 -0
- package/components/ui/nuraly-ui/src/components/dropdown/dropdown.stories.ts +1271 -0
- package/components/ui/nuraly-ui/src/components/dropdown/dropdown.style.ts +462 -0
- package/components/ui/nuraly-ui/src/components/dropdown/dropdown.types.ts +109 -0
- package/components/ui/nuraly-ui/src/components/dropdown/index.ts +2 -0
- package/components/ui/nuraly-ui/src/components/dropdown/interfaces/controller-interfaces.ts +98 -0
- package/components/ui/nuraly-ui/src/components/dropdown/interfaces/index.ts +1 -0
- package/components/ui/nuraly-ui/src/components/dropdown/react.ts +14 -0
- package/components/ui/nuraly-ui/src/components/dropdown/templates/nr-dropdown-item.style.ts +35 -0
- package/components/ui/nuraly-ui/src/components/dropdown/templates/nr-dropdown-item.ts +47 -0
- package/components/ui/nuraly-ui/src/components/dropdown/templates/nr-dropdown-menu.style.ts +50 -0
- package/components/ui/nuraly-ui/src/components/dropdown/templates/nr-dropdown-menu.ts +52 -0
- package/components/ui/nuraly-ui/src/components/file-upload/demo/file-upload-demo.ts +151 -0
- package/components/ui/nuraly-ui/src/components/file-upload/file-upload.component.ts +371 -0
- package/components/ui/nuraly-ui/src/components/file-upload/index.ts +1 -0
- package/components/ui/nuraly-ui/src/components/file-upload/react.ts +14 -0
- package/components/ui/nuraly-ui/src/components/file-upload/readme.md +98 -0
- package/components/ui/nuraly-ui/src/components/file-upload/styles.ts +284 -0
- package/components/ui/nuraly-ui/src/components/file-upload/types.ts +10 -0
- package/components/ui/nuraly-ui/src/components/file-upload/utils.ts +23 -0
- package/components/ui/nuraly-ui/src/components/flex/README.md +235 -0
- package/components/ui/nuraly-ui/src/components/flex/flex.component.ts +186 -0
- package/components/ui/nuraly-ui/src/components/flex/flex.stories.ts +486 -0
- package/components/ui/nuraly-ui/src/components/flex/flex.style.ts +101 -0
- package/components/ui/nuraly-ui/src/components/flex/flex.types.ts +70 -0
- package/components/ui/nuraly-ui/src/components/flex/index.ts +2 -0
- package/components/ui/nuraly-ui/src/components/flex/react.ts +9 -0
- package/components/ui/nuraly-ui/src/components/form/README.md +152 -0
- package/components/ui/nuraly-ui/src/components/form/controllers/submission.controller.ts +243 -0
- package/components/ui/nuraly-ui/src/components/form/controllers/validation.controller.ts +268 -0
- package/components/ui/nuraly-ui/src/components/form/form.component.ts +699 -0
- package/components/ui/nuraly-ui/src/components/form/form.stories.ts +794 -0
- package/components/ui/nuraly-ui/src/components/form/form.style.ts +69 -0
- package/components/ui/nuraly-ui/src/components/form/form.types.ts +104 -0
- package/components/ui/nuraly-ui/src/components/form/index.ts +15 -0
- package/components/ui/nuraly-ui/src/components/form/interfaces/validation.interface.ts +139 -0
- package/components/ui/nuraly-ui/src/components/grid/README.md +196 -0
- package/components/ui/nuraly-ui/src/components/grid/col.component.ts +262 -0
- package/components/ui/nuraly-ui/src/components/grid/col.style.ts +117 -0
- package/components/ui/nuraly-ui/src/components/grid/grid.stories.ts +442 -0
- package/components/ui/nuraly-ui/src/components/grid/grid.types.ts +89 -0
- package/components/ui/nuraly-ui/src/components/grid/index.ts +3 -0
- package/components/ui/nuraly-ui/src/components/grid/react.ts +16 -0
- package/components/ui/nuraly-ui/src/components/grid/row.component.ts +203 -0
- package/components/ui/nuraly-ui/src/components/grid/row.style.ts +68 -0
- package/components/ui/nuraly-ui/src/components/icon/icon.component.ts +219 -0
- package/components/ui/nuraly-ui/src/components/icon/icon.stories.ts +160 -0
- package/components/ui/nuraly-ui/src/components/icon/icon.style.ts +214 -0
- package/components/ui/nuraly-ui/src/components/icon/icon.types.ts +4 -0
- package/components/ui/nuraly-ui/src/components/icon/icon.variables.ts +132 -0
- package/components/ui/nuraly-ui/src/components/icon/index.ts +1 -0
- package/components/ui/nuraly-ui/src/components/icon/mixins/clickable-mixin.ts +154 -0
- package/components/ui/nuraly-ui/src/components/icon/mixins/index.ts +7 -0
- package/components/ui/nuraly-ui/src/components/icon/react.ts +8 -0
- package/components/ui/nuraly-ui/src/components/iconpicker/README.md +106 -0
- package/components/ui/nuraly-ui/src/components/iconpicker/controllers/event.controller.ts +94 -0
- package/components/ui/nuraly-ui/src/components/iconpicker/controllers/index.ts +9 -0
- package/components/ui/nuraly-ui/src/components/iconpicker/controllers/search.controller.ts +76 -0
- package/components/ui/nuraly-ui/src/components/iconpicker/controllers/selection.controller.ts +50 -0
- package/components/ui/nuraly-ui/src/components/iconpicker/icon-picker.component.ts +324 -0
- package/components/ui/nuraly-ui/src/components/iconpicker/icon-picker.constant.ts +33 -0
- package/components/ui/nuraly-ui/src/components/iconpicker/icon-picker.stories.ts +255 -0
- package/components/ui/nuraly-ui/src/components/iconpicker/icon-picker.style.ts +217 -0
- package/components/ui/nuraly-ui/src/components/iconpicker/icon-picker.types.ts +56 -0
- package/components/ui/nuraly-ui/src/components/iconpicker/index.ts +9 -0
- package/components/ui/nuraly-ui/src/components/iconpicker/interfaces/icon-picker.interface.ts +14 -0
- package/components/ui/nuraly-ui/src/components/iconpicker/interfaces/index.ts +7 -0
- package/components/ui/nuraly-ui/src/components/iconpicker/react.ts +22 -0
- package/components/ui/nuraly-ui/src/components/iconpicker/utils/icon-filter.utils.ts +119 -0
- package/components/ui/nuraly-ui/src/components/iconpicker/utils/icon-loader.utils.ts +129 -0
- package/components/ui/nuraly-ui/src/components/iconpicker/utils/index.ts +8 -0
- package/components/ui/nuraly-ui/src/components/iconpicker/utils/lucide-icons.ts +1624 -0
- package/components/ui/nuraly-ui/src/components/image/image.component.ts +136 -0
- package/components/ui/nuraly-ui/src/components/image/image.stories.ts +236 -0
- package/components/ui/nuraly-ui/src/components/image/image.style.ts +83 -0
- package/components/ui/nuraly-ui/src/components/image/image.types.ts +83 -0
- package/components/ui/nuraly-ui/src/components/image/index.ts +2 -0
- package/components/ui/nuraly-ui/src/components/image/react.ts +15 -0
- package/components/ui/nuraly-ui/src/components/input/README.md +432 -0
- package/components/ui/nuraly-ui/src/components/input/controllers/base.controller.ts +114 -0
- package/components/ui/nuraly-ui/src/components/input/controllers/event.controller.ts +421 -0
- package/components/ui/nuraly-ui/src/components/input/controllers/index.ts +32 -0
- package/components/ui/nuraly-ui/src/components/input/controllers/state.controller.ts +313 -0
- package/components/ui/nuraly-ui/src/components/input/controllers/validation.controller.ts +806 -0
- package/components/ui/nuraly-ui/src/components/input/index.ts +2 -0
- package/components/ui/nuraly-ui/src/components/input/input.component.ts +557 -0
- package/components/ui/nuraly-ui/src/components/input/input.stories.ts +1759 -0
- package/components/ui/nuraly-ui/src/components/input/input.style.ts +812 -0
- package/components/ui/nuraly-ui/src/components/input/input.types.ts +195 -0
- package/components/ui/nuraly-ui/src/components/input/mixins/focus-mixin.ts +112 -0
- package/components/ui/nuraly-ui/src/components/input/mixins/index.ts +14 -0
- package/components/ui/nuraly-ui/src/components/input/mixins/number-mixin.ts +167 -0
- package/components/ui/nuraly-ui/src/components/input/mixins/selection-mixin.ts +125 -0
- package/components/ui/nuraly-ui/src/components/input/react.ts +15 -0
- package/components/ui/nuraly-ui/src/components/input/test/nr-input_test.ts +163 -0
- package/components/ui/nuraly-ui/src/components/input/utils/index.ts +8 -0
- package/components/ui/nuraly-ui/src/components/input/utils/input-renderers.ts +217 -0
- package/components/ui/nuraly-ui/src/components/input/utils/input-validation.utils.ts +133 -0
- package/components/ui/nuraly-ui/src/components/input/validation.ts +3 -0
- package/components/ui/nuraly-ui/src/components/label/index.ts +1 -0
- package/components/ui/nuraly-ui/src/components/label/label.component.ts +52 -0
- package/components/ui/nuraly-ui/src/components/label/label.stories.ts +311 -0
- package/components/ui/nuraly-ui/src/components/label/label.style.ts +70 -0
- package/components/ui/nuraly-ui/src/components/label/label.style.variables.ts +35 -0
- package/components/ui/nuraly-ui/src/components/label/label.types.ts +48 -0
- package/components/ui/nuraly-ui/src/components/label/react.ts +11 -0
- package/components/ui/nuraly-ui/src/components/layout/README.md +200 -0
- package/components/ui/nuraly-ui/src/components/layout/content.component.ts +45 -0
- package/components/ui/nuraly-ui/src/components/layout/content.style.ts +17 -0
- package/components/ui/nuraly-ui/src/components/layout/footer.component.ts +54 -0
- package/components/ui/nuraly-ui/src/components/layout/footer.style.ts +17 -0
- package/components/ui/nuraly-ui/src/components/layout/header.component.ts +55 -0
- package/components/ui/nuraly-ui/src/components/layout/header.style.ts +19 -0
- package/components/ui/nuraly-ui/src/components/layout/index.ts +18 -0
- package/components/ui/nuraly-ui/src/components/layout/layout.component.ts +87 -0
- package/components/ui/nuraly-ui/src/components/layout/layout.stories.ts +616 -0
- package/components/ui/nuraly-ui/src/components/layout/layout.style.ts +23 -0
- package/components/ui/nuraly-ui/src/components/layout/layout.types.ts +90 -0
- package/components/ui/nuraly-ui/src/components/layout/react.ts +41 -0
- package/components/ui/nuraly-ui/src/components/layout/sider.component.ts +294 -0
- package/components/ui/nuraly-ui/src/components/layout/sider.style.ts +104 -0
- package/components/ui/nuraly-ui/src/components/menu/README.md +390 -0
- package/components/ui/nuraly-ui/src/components/menu/controllers/accessibility.controller.ts +257 -0
- package/components/ui/nuraly-ui/src/components/menu/controllers/base.controller.ts +123 -0
- package/components/ui/nuraly-ui/src/components/menu/controllers/index.ts +10 -0
- package/components/ui/nuraly-ui/src/components/menu/controllers/keyboard.controller.ts +360 -0
- package/components/ui/nuraly-ui/src/components/menu/controllers/state.controller.ts +268 -0
- package/components/ui/nuraly-ui/src/components/menu/index.ts +3 -0
- package/components/ui/nuraly-ui/src/components/menu/interfaces/controller.interface.ts +56 -0
- package/components/ui/nuraly-ui/src/components/menu/interfaces/index.ts +7 -0
- package/components/ui/nuraly-ui/src/components/menu/menu.component.ts +341 -0
- package/components/ui/nuraly-ui/src/components/menu/menu.constants.ts +12 -0
- package/components/ui/nuraly-ui/src/components/menu/menu.stories.ts +807 -0
- package/components/ui/nuraly-ui/src/components/menu/menu.style.ts +358 -0
- package/components/ui/nuraly-ui/src/components/menu/menu.types.ts +60 -0
- package/components/ui/nuraly-ui/src/components/menu/react.ts +11 -0
- package/components/ui/nuraly-ui/src/components/modal/controllers/index.ts +8 -0
- package/components/ui/nuraly-ui/src/components/modal/controllers/modal-drag-controller.ts +139 -0
- package/components/ui/nuraly-ui/src/components/modal/controllers/modal-keyboard-controller.ts +152 -0
- package/components/ui/nuraly-ui/src/components/modal/index.ts +10 -0
- package/components/ui/nuraly-ui/src/components/modal/modal-manager.ts +209 -0
- package/components/ui/nuraly-ui/src/components/modal/modal.component.ts +475 -0
- package/components/ui/nuraly-ui/src/components/modal/modal.stories.ts +823 -0
- package/components/ui/nuraly-ui/src/components/modal/modal.style.ts +369 -0
- package/components/ui/nuraly-ui/src/components/modal/modal.types.ts +148 -0
- package/components/ui/nuraly-ui/src/components/modal/react.ts +16 -0
- package/components/ui/nuraly-ui/src/components/panel/README.md +218 -0
- package/components/ui/nuraly-ui/src/components/panel/controllers/index.ts +8 -0
- package/components/ui/nuraly-ui/src/components/panel/controllers/panel-drag-controller.ts +151 -0
- package/components/ui/nuraly-ui/src/components/panel/controllers/panel-resize-controller.ts +153 -0
- package/components/ui/nuraly-ui/src/components/panel/index.ts +9 -0
- package/components/ui/nuraly-ui/src/components/panel/panel.component.ts +760 -0
- package/components/ui/nuraly-ui/src/components/panel/panel.stories.ts +978 -0
- package/components/ui/nuraly-ui/src/components/panel/panel.style.ts +499 -0
- package/components/ui/nuraly-ui/src/components/panel/panel.types.ts +89 -0
- package/components/ui/nuraly-ui/src/components/panel/react.ts +18 -0
- package/components/ui/nuraly-ui/src/components/popconfirm/README.md +403 -0
- package/components/ui/nuraly-ui/src/components/popconfirm/index.ts +2 -0
- package/components/ui/nuraly-ui/src/components/popconfirm/popconfirm.component.ts +336 -0
- package/components/ui/nuraly-ui/src/components/popconfirm/popconfirm.stories.ts +491 -0
- package/components/ui/nuraly-ui/src/components/popconfirm/popconfirm.style.ts +207 -0
- package/components/ui/nuraly-ui/src/components/popconfirm/popconfirm.types.ts +66 -0
- package/components/ui/nuraly-ui/src/components/popconfirm/react.ts +14 -0
- package/components/ui/nuraly-ui/src/components/radio/README.md +95 -0
- package/components/ui/nuraly-ui/src/components/radio/index.ts +2 -0
- package/components/ui/nuraly-ui/src/components/radio/radio.component.ts +186 -0
- package/components/ui/nuraly-ui/src/components/radio/radio.stories.ts +317 -0
- package/components/ui/nuraly-ui/src/components/radio/radio.style.ts +150 -0
- package/components/ui/nuraly-ui/src/components/radio/radio.types.ts +14 -0
- package/components/ui/nuraly-ui/src/components/radio/react.ts +20 -0
- package/components/ui/nuraly-ui/src/components/radio-group/controllers/focus.controller.ts +251 -0
- package/components/ui/nuraly-ui/src/components/radio-group/controllers/group.controller.ts +198 -0
- package/components/ui/nuraly-ui/src/components/radio-group/controllers/index.ts +11 -0
- package/components/ui/nuraly-ui/src/components/radio-group/controllers/keyboard.controller.ts +122 -0
- package/components/ui/nuraly-ui/src/components/radio-group/controllers/ripple.controller.ts +248 -0
- package/components/ui/nuraly-ui/src/components/radio-group/controllers/validation.controller.ts +189 -0
- package/components/ui/nuraly-ui/src/components/radio-group/index.ts +2 -0
- package/components/ui/nuraly-ui/src/components/radio-group/interfaces/base-controller.interface.ts +87 -0
- package/components/ui/nuraly-ui/src/components/radio-group/interfaces/focus-controller.interface.ts +45 -0
- package/components/ui/nuraly-ui/src/components/radio-group/interfaces/index.ts +14 -0
- package/components/ui/nuraly-ui/src/components/radio-group/interfaces/ripple-controller.interface.ts +35 -0
- package/components/ui/nuraly-ui/src/components/radio-group/interfaces/selection-controller.interface.ts +51 -0
- package/components/ui/nuraly-ui/src/components/radio-group/interfaces/validation-controller.interface.ts +53 -0
- package/components/ui/nuraly-ui/src/components/radio-group/radio-group.component.ts +426 -0
- package/components/ui/nuraly-ui/src/components/radio-group/radio-group.stories.ts +1334 -0
- package/components/ui/nuraly-ui/src/components/radio-group/radio-group.style.ts +248 -0
- package/components/ui/nuraly-ui/src/components/radio-group/radio-group.types.ts +43 -0
- package/components/ui/nuraly-ui/src/components/radio-group/radio.constant.ts +1 -0
- package/components/ui/nuraly-ui/src/components/radio-group/react.ts +18 -0
- package/components/ui/nuraly-ui/src/components/radio-group/test/radio_test.ts +87 -0
- package/components/ui/nuraly-ui/src/components/select/README.md +316 -0
- package/components/ui/nuraly-ui/src/components/select/controllers/base.controller.ts +93 -0
- package/components/ui/nuraly-ui/src/components/select/controllers/dropdown.controller.ts +415 -0
- package/components/ui/nuraly-ui/src/components/select/controllers/event.controller.ts +118 -0
- package/components/ui/nuraly-ui/src/components/select/controllers/focus.controller.ts +255 -0
- package/components/ui/nuraly-ui/src/components/select/controllers/index.ts +8 -0
- package/components/ui/nuraly-ui/src/components/select/controllers/keyboard.controller.ts +407 -0
- package/components/ui/nuraly-ui/src/components/select/controllers/search.controller.ts +187 -0
- package/components/ui/nuraly-ui/src/components/select/controllers/selection.controller.ts +238 -0
- package/components/ui/nuraly-ui/src/components/select/controllers/validation.controller.ts +236 -0
- package/components/ui/nuraly-ui/src/components/select/index.ts +36 -0
- package/components/ui/nuraly-ui/src/components/select/interfaces/base-controller.interface.ts +155 -0
- package/components/ui/nuraly-ui/src/components/select/interfaces/controller-interfaces.ts +105 -0
- package/components/ui/nuraly-ui/src/components/select/interfaces/index.ts +2 -0
- package/components/ui/nuraly-ui/src/components/select/react.ts +30 -0
- package/components/ui/nuraly-ui/src/components/select/select.component.ts +804 -0
- package/components/ui/nuraly-ui/src/components/select/select.constant.ts +142 -0
- package/components/ui/nuraly-ui/src/components/select/select.stories.ts +1653 -0
- package/components/ui/nuraly-ui/src/components/select/select.style.ts +593 -0
- package/components/ui/nuraly-ui/src/components/select/select.types.ts +120 -0
- package/components/ui/nuraly-ui/src/components/skeleton/README.md +373 -0
- package/components/ui/nuraly-ui/src/components/skeleton/index.ts +2 -0
- package/components/ui/nuraly-ui/src/components/skeleton/react.ts +10 -0
- package/components/ui/nuraly-ui/src/components/skeleton/skeleton.component.ts +385 -0
- package/components/ui/nuraly-ui/src/components/skeleton/skeleton.stories.ts +425 -0
- package/components/ui/nuraly-ui/src/components/skeleton/skeleton.style.ts +224 -0
- package/components/ui/nuraly-ui/src/components/skeleton/skeleton.types.ts +90 -0
- package/components/ui/nuraly-ui/src/components/slider-input/README.md +145 -0
- package/components/ui/nuraly-ui/src/components/slider-input/index.ts +2 -0
- package/components/ui/nuraly-ui/src/components/slider-input/react.ts +12 -0
- package/components/ui/nuraly-ui/src/components/slider-input/slider-input.component.ts +184 -0
- package/components/ui/nuraly-ui/src/components/slider-input/slider-input.stories.ts +361 -0
- package/components/ui/nuraly-ui/src/components/slider-input/slider-input.style.ts +171 -0
- package/components/ui/nuraly-ui/src/components/slider-input/slider-input.style.variables.ts +59 -0
- package/components/ui/nuraly-ui/src/components/slider-input/slider-input.types.ts +24 -0
- package/components/ui/nuraly-ui/src/components/slider-input/utils/debounce.ts +7 -0
- package/components/ui/nuraly-ui/src/components/slider-input/utils/index.ts +1 -0
- package/components/ui/nuraly-ui/src/components/table/controllers/base.controller.ts +99 -0
- package/components/ui/nuraly-ui/src/components/table/controllers/filter.controller.ts +163 -0
- package/components/ui/nuraly-ui/src/components/table/controllers/index.ts +11 -0
- package/components/ui/nuraly-ui/src/components/table/controllers/pagination.controller.ts +83 -0
- package/components/ui/nuraly-ui/src/components/table/controllers/selection.controller.ts +143 -0
- package/components/ui/nuraly-ui/src/components/table/controllers/sort.controller.ts +115 -0
- package/components/ui/nuraly-ui/src/components/table/index.ts +1 -0
- package/components/ui/nuraly-ui/src/components/table/interfaces/index.ts +7 -0
- package/components/ui/nuraly-ui/src/components/table/interfaces/table-host.interface.ts +53 -0
- package/components/ui/nuraly-ui/src/components/table/react.ts +14 -0
- package/components/ui/nuraly-ui/src/components/table/table.component.ts +344 -0
- package/components/ui/nuraly-ui/src/components/table/table.stories.ts +1072 -0
- package/components/ui/nuraly-ui/src/components/table/table.style.ts +689 -0
- package/components/ui/nuraly-ui/src/components/table/table.types.ts +91 -0
- package/components/ui/nuraly-ui/src/components/table/templates/actions.template.ts +22 -0
- package/components/ui/nuraly-ui/src/components/table/templates/column-filter.template.ts +88 -0
- package/components/ui/nuraly-ui/src/components/table/templates/content.template.ts +257 -0
- package/components/ui/nuraly-ui/src/components/table/templates/empty.template.ts +49 -0
- package/components/ui/nuraly-ui/src/components/table/templates/filter.template.ts +35 -0
- package/components/ui/nuraly-ui/src/components/table/templates/index.ts +7 -0
- package/components/ui/nuraly-ui/src/components/table/templates/loading.template.ts +56 -0
- package/components/ui/nuraly-ui/src/components/table/templates/pagination.template.ts +70 -0
- package/components/ui/nuraly-ui/src/components/tabs/controllers/base.controller.ts +136 -0
- package/components/ui/nuraly-ui/src/components/tabs/controllers/dragdrop.controller.ts +251 -0
- package/components/ui/nuraly-ui/src/components/tabs/controllers/editable.controller.ts +292 -0
- package/components/ui/nuraly-ui/src/components/tabs/controllers/event.controller.ts +294 -0
- package/components/ui/nuraly-ui/src/components/tabs/controllers/index.ts +42 -0
- package/components/ui/nuraly-ui/src/components/tabs/controllers/keyboard.controller.ts +276 -0
- package/components/ui/nuraly-ui/src/components/tabs/controllers/popout.controller.ts +516 -0
- package/components/ui/nuraly-ui/src/components/tabs/index.ts +11 -0
- package/components/ui/nuraly-ui/src/components/tabs/react.ts +52 -0
- package/components/ui/nuraly-ui/src/components/tabs/tabs.component.ts +499 -0
- package/components/ui/nuraly-ui/src/components/tabs/tabs.constant.ts +30 -0
- package/components/ui/nuraly-ui/src/components/tabs/tabs.stories.ts +1334 -0
- package/components/ui/nuraly-ui/src/components/tabs/tabs.style.ts +569 -0
- package/components/ui/nuraly-ui/src/components/tabs/tabs.types.ts +261 -0
- package/components/ui/nuraly-ui/src/components/tag/README.md +22 -0
- package/components/ui/nuraly-ui/src/components/tag/index.ts +1 -0
- package/components/ui/nuraly-ui/src/components/tag/react.ts +13 -0
- package/components/ui/nuraly-ui/src/components/tag/tag.component.ts +167 -0
- package/components/ui/nuraly-ui/src/components/tag/tag.stories.ts +50 -0
- package/components/ui/nuraly-ui/src/components/tag/tag.style.ts +89 -0
- package/components/ui/nuraly-ui/src/components/tag/tag.types.ts +30 -0
- package/components/ui/nuraly-ui/src/components/textarea/README.md +314 -0
- package/components/ui/nuraly-ui/src/components/textarea/controllers/base.controller.ts +142 -0
- package/components/ui/nuraly-ui/src/components/textarea/controllers/event.controller.ts +484 -0
- package/components/ui/nuraly-ui/src/components/textarea/controllers/index.ts +16 -0
- package/components/ui/nuraly-ui/src/components/textarea/controllers/validation.controller.ts +347 -0
- package/components/ui/nuraly-ui/src/components/textarea/index.ts +19 -0
- package/components/ui/nuraly-ui/src/components/textarea/react.ts +16 -0
- package/components/ui/nuraly-ui/src/components/textarea/textarea.component.ts +716 -0
- package/components/ui/nuraly-ui/src/components/textarea/textarea.stories.ts +453 -0
- package/components/ui/nuraly-ui/src/components/textarea/textarea.style.ts +387 -0
- package/components/ui/nuraly-ui/src/components/textarea/textarea.types.ts +113 -0
- package/components/ui/nuraly-ui/src/components/timeline/README.md +340 -0
- package/components/ui/nuraly-ui/src/components/timeline/index.ts +1 -0
- package/components/ui/nuraly-ui/src/components/timeline/react.ts +9 -0
- package/components/ui/nuraly-ui/src/components/timeline/timeline.component.ts +235 -0
- package/components/ui/nuraly-ui/src/components/timeline/timeline.stories.ts +313 -0
- package/components/ui/nuraly-ui/src/components/timeline/timeline.style.ts +235 -0
- package/components/ui/nuraly-ui/src/components/timeline/timeline.types.ts +75 -0
- package/components/ui/nuraly-ui/src/components/timepicker/README.md +238 -0
- package/components/ui/nuraly-ui/src/components/timepicker/controllers/formatting.controller.ts +230 -0
- package/components/ui/nuraly-ui/src/components/timepicker/controllers/index.ts +9 -0
- package/components/ui/nuraly-ui/src/components/timepicker/controllers/selection.controller.ts +213 -0
- package/components/ui/nuraly-ui/src/components/timepicker/controllers/validation.controller.ts +240 -0
- package/components/ui/nuraly-ui/src/components/timepicker/index.ts +12 -0
- package/components/ui/nuraly-ui/src/components/timepicker/interfaces/timepicker.interface.ts +122 -0
- package/components/ui/nuraly-ui/src/components/timepicker/test/timepicker.test.ts +249 -0
- package/components/ui/nuraly-ui/src/components/timepicker/timepicker.component.ts +786 -0
- package/components/ui/nuraly-ui/src/components/timepicker/timepicker.constants.ts +94 -0
- package/components/ui/nuraly-ui/src/components/timepicker/timepicker.stories.ts +643 -0
- package/components/ui/nuraly-ui/src/components/timepicker/timepicker.style.ts +569 -0
- package/components/ui/nuraly-ui/src/components/timepicker/timepicker.style.variables.ts +122 -0
- package/components/ui/nuraly-ui/src/components/timepicker/timepicker.types.ts +183 -0
- package/components/ui/nuraly-ui/src/components/timepicker/utils/time.utils.ts +288 -0
- package/components/ui/nuraly-ui/src/components/toast/README.md +535 -0
- package/components/ui/nuraly-ui/src/components/toast/controllers/base.controller.ts +105 -0
- package/components/ui/nuraly-ui/src/components/toast/controllers/index.ts +8 -0
- package/components/ui/nuraly-ui/src/components/toast/index.ts +10 -0
- package/components/ui/nuraly-ui/src/components/toast/react.ts +19 -0
- package/components/ui/nuraly-ui/src/components/toast/toast.component.ts +394 -0
- package/components/ui/nuraly-ui/src/components/toast/toast.stories.ts +895 -0
- package/components/ui/nuraly-ui/src/components/toast/toast.style.ts +339 -0
- package/components/ui/nuraly-ui/src/components/toast/toast.types.ts +155 -0
- package/components/ui/nuraly-ui/src/components/tooltips/demo/tooltips-demo.ts +128 -0
- package/components/ui/nuraly-ui/src/components/tooltips/index.ts +1 -0
- package/components/ui/nuraly-ui/src/components/tooltips/react.ts +0 -0
- package/components/ui/nuraly-ui/src/components/tooltips/test/tooltips_test.ts +175 -0
- package/components/ui/nuraly-ui/src/components/tooltips/tooltips.component.ts +282 -0
- package/components/ui/nuraly-ui/src/components/tooltips/tooltips.constant.ts +15 -0
- package/components/ui/nuraly-ui/src/components/tooltips/tooltips.style.ts +103 -0
- package/components/ui/nuraly-ui/src/components/tooltips/tooltips.variables.ts +14 -0
- package/components/ui/nuraly-ui/src/components/video/index.ts +2 -0
- package/components/ui/nuraly-ui/src/components/video/react.ts +17 -0
- package/components/ui/nuraly-ui/src/components/video/video.component.ts +179 -0
- package/components/ui/nuraly-ui/src/components/video/video.stories.ts +289 -0
- package/components/ui/nuraly-ui/src/components/video/video.style.ts +124 -0
- package/components/ui/nuraly-ui/src/components/video/video.types.ts +102 -0
- package/components/ui/nuraly-ui/src/helpers/ThemeHandler.ts +68 -0
- package/components/ui/nuraly-ui/src/helpers/test.ts +8 -0
- package/components/ui/nuraly-ui/src/introduction.stories.ts +161 -0
- package/components/ui/nuraly-ui/src/shared/README.md +87 -0
- package/components/ui/nuraly-ui/src/shared/base-mixin.ts +48 -0
- package/components/ui/nuraly-ui/src/shared/constants.ts +0 -0
- package/components/ui/nuraly-ui/src/shared/controllers/dropdown.controller.ts +393 -0
- package/components/ui/nuraly-ui/src/shared/controllers/dropdown.interface.ts +39 -0
- package/components/ui/nuraly-ui/src/shared/controllers/index.ts +3 -0
- package/components/ui/nuraly-ui/src/shared/controllers/theme.controller.ts +158 -0
- package/components/ui/nuraly-ui/src/shared/dependency-mixin.ts +174 -0
- package/components/ui/nuraly-ui/src/shared/event-handler-mixin.ts +190 -0
- package/components/ui/nuraly-ui/src/shared/index.ts +20 -0
- package/components/ui/nuraly-ui/src/shared/theme-mixin.ts +227 -0
- package/components/ui/nuraly-ui/src/shared/themes/README.md +135 -0
- package/components/ui/nuraly-ui/src/shared/themes/editor/README.md +202 -0
- package/components/ui/nuraly-ui/src/shared/themes/editor.stories.ts +366 -0
- package/components/ui/nuraly-ui/src/shared/themes/index.ts +132 -0
- package/components/ui/nuraly-ui/src/shared/utils.ts +94 -0
- package/components/ui/nuraly-ui/src/shared/validation.types.ts +118 -0
- package/components/ui/nuraly-ui/tools/bump-versions.js +83 -0
- package/components/ui/nuraly-ui/web-dev-server.config.js +25 -0
- package/components/ui/nuraly-ui/web-test-runner.config.js +124 -0
- package/dist/CodeEditor-Ch2tv9BE.js +106211 -0
- package/dist/SmartAttributeHandler-hoSLpm1Y.js +153 -0
- package/dist/abap-B2diVmjb.js +1314 -0
- package/dist/apex-3NuJ-nsI.js +315 -0
- package/dist/assets/editor.worker-vBWydyGC.js +11 -0
- package/dist/assets/html.worker-BSmGlhXp.js +458 -0
- package/dist/assets/json.worker-Dqnoedz4.js +42 -0
- package/dist/assets/ts.worker-DyHHPhrh.js +37021 -0
- package/dist/azcli-XGXuUsMB.js +74 -0
- package/dist/bat-B8Vhm634.js +95 -0
- package/dist/bicep-Cc8X5S_k.js +108 -0
- package/dist/cameligo-Bo3wBh9T.js +168 -0
- package/dist/clojure-CPoQlpIK.js +754 -0
- package/dist/coffee-BxvTGz39.js +228 -0
- package/dist/cpp-5RpEV7vC.js +390 -0
- package/dist/csharp-slXXP3fo.js +320 -0
- package/dist/csp-B98p6-gH.js +57 -0
- package/dist/css-BDsDSAin.js +186 -0
- package/dist/cssMode-Bt2uK8XM.js +1446 -0
- package/dist/cypher-Dc4IMouD.js +262 -0
- package/dist/dart-LhvE3yD2.js +270 -0
- package/dist/dockerfile-CwzplJeZ.js +132 -0
- package/dist/ecl-DxW3FiJi.js +454 -0
- package/dist/elixir-BI40g7TU.js +489 -0
- package/dist/flow9-tR2v0bGz.js +141 -0
- package/dist/freemarker2-DNc2IxPf.js +643 -0
- package/dist/fsharp-BLAma0OT.js +210 -0
- package/dist/go-nYcD3y4Z.js +208 -0
- package/dist/graphql-Dp1cHWmP.js +141 -0
- package/dist/handlebars-CIbFckEw.js +391 -0
- package/dist/hcl-6NT8Kbna.js +177 -0
- package/dist/html-nRs_fneU.js +281 -0
- package/dist/htmlMode-BjehA1YF.js +1456 -0
- package/dist/ini-BZCOLrEc.js +68 -0
- package/dist/java-DAMcfJbX.js +221 -0
- package/dist/javascript-Bn0HduZA.js +75 -0
- package/dist/jsonMode-CfGfcJRX.js +1866 -0
- package/dist/julia-CQ46G71H.js +496 -0
- package/dist/kotlin-CEjVo_6E.js +245 -0
- package/dist/less-DreV99nP.js +168 -0
- package/dist/lexon-DBVJhqLb.js +151 -0
- package/dist/liquid-m4D_LCnC.js +238 -0
- package/dist/lua-Dcc_j6L-.js +157 -0
- package/dist/m3-B9SlZL4n.js +210 -0
- package/dist/markdown-CuGw9_MP.js +202 -0
- package/dist/mdx-CakMRbCr.js +171 -0
- package/dist/micro-app-entry-CI1Rupdh.js +17479 -0
- package/dist/micro-app.bundle.js +8 -0
- package/dist/mips-BUWqP-OH.js +194 -0
- package/dist/msdax-DtkouYCg.js +377 -0
- package/dist/mysql-IkAsWSmF.js +876 -0
- package/dist/objective-c-B2-ronfg.js +188 -0
- package/dist/pascal-Bsnz2eJA.js +245 -0
- package/dist/pascaligo-D_sMUn0Q.js +158 -0
- package/dist/perl-BPzHt9SS.js +599 -0
- package/dist/pgsql-DlTJB0PD.js +847 -0
- package/dist/php-Dmq5OjwK.js +471 -0
- package/dist/pla-HJcccrBy.js +131 -0
- package/dist/postiats-OQn6DKv-.js +544 -0
- package/dist/powerquery-DKaMYC8w.js +890 -0
- package/dist/powershell-DWeJHik1.js +233 -0
- package/dist/protobuf-CBn_IseU.js +422 -0
- package/dist/pug-BoRpCINl.js +393 -0
- package/dist/python-oJwaiPUY.js +259 -0
- package/dist/qsharp-4rGyVZOw.js +282 -0
- package/dist/r-DsgLhBOb.js +245 -0
- package/dist/razor-u_dd4rqc.js +512 -0
- package/dist/redis-B2fdL4Bg.js +298 -0
- package/dist/redshift-DoaeyCkH.js +806 -0
- package/dist/restructuredtext-D-6OFBY9.js +162 -0
- package/dist/ruby-D1DD6baV.js +444 -0
- package/dist/rust-DssUV39M.js +337 -0
- package/dist/sb-Dmb6tAdv.js +110 -0
- package/dist/scala-Co3ETaym.js +353 -0
- package/dist/scheme-CMrqXTty.js +114 -0
- package/dist/scss-DkGudv8Q.js +244 -0
- package/dist/shell-BHN2BI4L.js +224 -0
- package/dist/solidity-b-R-raGB.js +1351 -0
- package/dist/sophia-Y4GjyxNB.js +190 -0
- package/dist/sparql-CDAPZb88.js +193 -0
- package/dist/sql-DkkpPiUq.js +818 -0
- package/dist/st-CSPV91Ej.js +415 -0
- package/dist/style.css +1 -0
- package/dist/swift-DdSC5O48.js +315 -0
- package/dist/systemverilog-CI03XpAv.js +556 -0
- package/dist/tcl-B8DayMSI.js +232 -0
- package/dist/tsMode-DlZ38d3D.js +813 -0
- package/dist/twig-B1AUPVB_.js +323 -0
- package/dist/typescript-Bjs2N5Be.js +328 -0
- package/dist/vb-BIC7ccdG.js +364 -0
- package/dist/wgsl-Bv2xeo60.js +420 -0
- package/dist/xml-BCveATLl.js +95 -0
- package/dist/yaml-BfWQPJQi.js +184 -0
- package/handlers/compiler.ts +362 -0
- package/handlers/context-setup.ts +349 -0
- package/handlers/handler-executor.ts +348 -0
- package/handlers/index.ts +184 -0
- package/handlers/runtime-api/applications.ts +18 -0
- package/handlers/runtime-api/component-properties.ts +78 -0
- package/handlers/runtime-api/components.ts +63 -0
- package/handlers/runtime-api/editor.ts +29 -0
- package/handlers/runtime-api/functions.ts +42 -0
- package/handlers/runtime-api/index.ts +221 -0
- package/handlers/runtime-api/navigation.ts +52 -0
- package/handlers/runtime-api/pages.ts +45 -0
- package/handlers/runtime-api/storage.ts +95 -0
- package/handlers/runtime-api/toast.ts +108 -0
- package/handlers/runtime-api/variables.ts +400 -0
- package/index.ts +188 -0
- package/micro-app/README.md +565 -0
- package/micro-app/index.ts +29 -0
- package/micro-app/messaging/MicroAppMessageBus.ts +246 -0
- package/micro-app/state/MicroAppPageManager.ts +275 -0
- package/micro-app/state/MicroAppRuntimeContext.ts +423 -0
- package/micro-app/state/MicroAppStoreContext.ts +441 -0
- package/micro-app/state/SharedVariableRegistry.ts +187 -0
- package/micro-app/state/VariableScopeManager.ts +310 -0
- package/micro-app/utils/ComponentNamespaceManager.ts +88 -0
- package/micro-app-entry.ts +34 -0
- package/package.json +119 -0
- package/redux/actions/aitchat.ts +17 -0
- package/redux/actions/application/addPageToApplicationAction.ts +14 -0
- package/redux/actions/application/addTempApplication.ts +8 -0
- package/redux/actions/application/closeShareApplicationModalAction.ts +5 -0
- package/redux/actions/application/index.ts +20 -0
- package/redux/actions/application/loadApplicationPermissionAction.ts +10 -0
- package/redux/actions/application/resetPermissionMessage.ts +8 -0
- package/redux/actions/application/setApplication.ts +5 -0
- package/redux/actions/application/setApplicationPermissionAction.ts +6 -0
- package/redux/actions/application/setDefaultApplicationPageIfNotSet.ts +12 -0
- package/redux/actions/application/setPermissionMessage.ts +8 -0
- package/redux/actions/application/showCreateApplicationModalAction.ts +5 -0
- package/redux/actions/application/showShareApplicationModalAction.ts +5 -0
- package/redux/actions/application/updateApplication.ts +16 -0
- package/redux/actions/component/addComponentAction.ts +90 -0
- package/redux/actions/component/addComponentAsChildOf.ts +29 -0
- package/redux/actions/component/addComponentToCurrentPageAction.ts +32 -0
- package/redux/actions/component/copyComponentAction.ts +12 -0
- package/redux/actions/component/deleteComponentAction.ts +52 -0
- package/redux/actions/component/index.ts +22 -0
- package/redux/actions/component/moveDraggedComponent.ts +130 -0
- package/redux/actions/component/moveDraggedComponentInside.ts +64 -0
- package/redux/actions/component/moveDraggedComponentIntoCurrentPageRoot.ts +50 -0
- package/redux/actions/component/setCurrentComponentIdAction.ts +6 -0
- package/redux/actions/component/setDraggingComponentInfo.ts +14 -0
- package/redux/actions/component/setHoveredComponentAction.ts +5 -0
- package/redux/actions/component/setHoveredComponentIdAction.ts +5 -0
- package/redux/actions/component/update-component-name.ts +63 -0
- package/redux/actions/component/updateComponentAttributes.ts +192 -0
- package/redux/actions/component.ts +25 -0
- package/redux/actions/debug/index.ts +1 -0
- package/redux/actions/debug/store.ts +72 -0
- package/redux/actions/editor/closeCreateApplicationModalAction.ts +5 -0
- package/redux/actions/editor/closeEditorTab.ts +9 -0
- package/redux/actions/editor/index.ts +12 -0
- package/redux/actions/editor/openEditorTab.ts +12 -0
- package/redux/actions/editor/setCurrentEditorTab.ts +8 -0
- package/redux/actions/editor/setEnvirementMode.ts +8 -0
- package/redux/actions/environment.ts +5 -0
- package/redux/actions/index.ts +28 -0
- package/redux/actions/kernel/index.ts +1 -0
- package/redux/actions/kernel/set-property.ts +0 -0
- package/redux/actions/page/addPageAction.ts +7 -0
- package/redux/actions/page/deletePageAction.ts +13 -0
- package/redux/actions/page/index.ts +12 -0
- package/redux/actions/page/removeComponentToCurrentPageAction.ts +32 -0
- package/redux/actions/page/setContextMenuEvent.ts +5 -0
- package/redux/actions/page/setCurrentPageAction.ts +6 -0
- package/redux/actions/page/setCurrentPageViewPort.ts +5 -0
- package/redux/actions/page/setResizing.ts +5 -0
- package/redux/actions/page/setShowBorder.ts +5 -0
- package/redux/actions/page/updatePageAction.ts +20 -0
- package/redux/actions/page/updatePageInfo.ts +5 -0
- package/redux/actions/page/updatePageStyleAttributes.ts +13 -0
- package/redux/actions/page/updatePageZoom.ts +5 -0
- package/redux/handlers/aichat/create-chat.handler.ts +22 -0
- package/redux/handlers/api-urls.ts +8 -0
- package/redux/handlers/applications/handler.ts +78 -0
- package/redux/handlers/applications/index.ts +1 -0
- package/redux/handlers/components/add-component.handler.ts +30 -0
- package/redux/handlers/components/delete-component.handler.ts +21 -0
- package/redux/handlers/components/index.ts +6 -0
- package/redux/handlers/components/interfaces/add-component.request.ts +4 -0
- package/redux/handlers/components/interfaces/index.ts +2 -0
- package/redux/handlers/components/interfaces/update-component.reques.ts +3 -0
- package/redux/handlers/components/refresh-component.ts +25 -0
- package/redux/handlers/components/update-component.handler.ts +32 -0
- package/redux/handlers/components/validation-handler.ts +45 -0
- package/redux/handlers/functions/build-function-handler.ts +10 -0
- package/redux/handlers/functions/deploy-function-handler.ts +10 -0
- package/redux/handlers/functions/index.ts +13 -0
- package/redux/handlers/functions/invoke-function-handler.ts +13 -0
- package/redux/handlers/functions/load-functions-handler.ts +10 -0
- package/redux/handlers/functions/update-function-handler.ts +13 -0
- package/redux/handlers/index.ts +10 -0
- package/redux/handlers/pages/deletePageHandler.ts +23 -0
- package/redux/handlers/pages/handler.ts +59 -0
- package/redux/handlers/pages/index.ts +4 -0
- package/redux/handlers/pages/page.interface.ts +14 -0
- package/redux/handlers/pages/refresh-pages.ts +26 -0
- package/redux/handlers/providers/interface.ts +7 -0
- package/redux/index.ts +8 -0
- package/redux/store/actions/component.ts +9 -0
- package/redux/store/apps.ts +160 -0
- package/redux/store/component/component.interface.ts +90 -0
- package/redux/store/component/helper.ts +78 -0
- package/redux/store/component/index.ts +51 -0
- package/redux/store/component/runtime-store.ts +0 -0
- package/redux/store/component/store.ts +306 -0
- package/redux/store/context.ts +138 -0
- package/redux/store/debug.ts +28 -0
- package/redux/store/environment.ts +20 -0
- package/redux/store/index.ts +77 -0
- package/redux/store/interfaces/component.interfaces.ts +4 -0
- package/redux/store/page.ts +105 -0
- package/redux/store/provider.ts +24 -0
- package/redux/store/ssr/server-data.ts +4 -0
- package/redux/store/toast.ts +26 -0
- package/state/editor.ts +370 -0
- package/state/index.ts +27 -0
- package/state/runtime-context.ts +784 -0
- package/types/IRuntimeContext.ts +203 -0
- package/types/core.types.ts +28 -0
- package/types/database.types.ts +395 -0
- package/types/index.ts +7 -0
- package/utils/RuntimeContextHelpers.ts +454 -0
- package/utils/api-calls-utils.ts +9 -0
- package/utils/change-detection.ts +58 -0
- package/utils/clipboard-utils.ts +113 -0
- package/utils/constants.ts +2 -0
- package/utils/envirement.ts +2 -0
- package/utils/handler-security-rules.ts +153 -0
- package/utils/handler-validator.ts +447 -0
- package/utils/index.ts +67 -0
- package/utils/local-storage.ts +26 -0
- package/utils/logger.ts +90 -0
- package/utils/memoize.ts +15 -0
- package/utils/naming-generator.ts +6 -0
- package/utils/object.utils.ts +15 -0
- package/utils/performance-utils.ts +589 -0
- package/utils/randomness.ts +3 -0
- package/utils/register-components.ts +49 -0
- package/utils/render-util.ts +173 -0
- package/utils/runtime-helpers.ts +57 -0
- package/utils/styleUtil.ts +7 -0
- package/utils/time.ts +7 -0
- package/utils/validation-error-formatter.ts +11 -0
- package/vite.config.ts +83 -0
|
@@ -0,0 +1,1624 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright 2023 Nuraly, Laabidi Aymen
|
|
4
|
+
* SPDX-License-Identifier: MIT
|
|
5
|
+
*
|
|
6
|
+
* Lucide icon names from https://lucide.dev/
|
|
7
|
+
* Updated: 2025-11-11
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
export const lucideIcons: string[] = [
|
|
11
|
+
'a-arrow-down',
|
|
12
|
+
'a-arrow-up',
|
|
13
|
+
'a-large-small',
|
|
14
|
+
'accessibility',
|
|
15
|
+
'activity',
|
|
16
|
+
'air-vent',
|
|
17
|
+
'airplay',
|
|
18
|
+
'alarm-check',
|
|
19
|
+
'alarm-clock',
|
|
20
|
+
'alarm-clock-check',
|
|
21
|
+
'alarm-clock-minus',
|
|
22
|
+
'alarm-clock-off',
|
|
23
|
+
'alarm-clock-plus',
|
|
24
|
+
'alarm-minus',
|
|
25
|
+
'alarm-plus',
|
|
26
|
+
'alarm-smoke',
|
|
27
|
+
'album',
|
|
28
|
+
'align-center',
|
|
29
|
+
'align-center-horizontal',
|
|
30
|
+
'align-center-vertical',
|
|
31
|
+
'align-end-horizontal',
|
|
32
|
+
'align-end-vertical',
|
|
33
|
+
'align-horizontal-distribute-center',
|
|
34
|
+
'align-horizontal-distribute-end',
|
|
35
|
+
'align-horizontal-distribute-start',
|
|
36
|
+
'align-horizontal-justify-center',
|
|
37
|
+
'align-horizontal-justify-end',
|
|
38
|
+
'align-horizontal-justify-start',
|
|
39
|
+
'align-horizontal-space-around',
|
|
40
|
+
'align-horizontal-space-between',
|
|
41
|
+
'align-justify',
|
|
42
|
+
'align-left',
|
|
43
|
+
'align-right',
|
|
44
|
+
'align-start-horizontal',
|
|
45
|
+
'align-start-vertical',
|
|
46
|
+
'align-vertical-distribute-center',
|
|
47
|
+
'align-vertical-distribute-end',
|
|
48
|
+
'align-vertical-distribute-start',
|
|
49
|
+
'align-vertical-justify-center',
|
|
50
|
+
'align-vertical-justify-end',
|
|
51
|
+
'align-vertical-justify-start',
|
|
52
|
+
'align-vertical-space-around',
|
|
53
|
+
'align-vertical-space-between',
|
|
54
|
+
'ambulance',
|
|
55
|
+
'ampersand',
|
|
56
|
+
'ampersands',
|
|
57
|
+
'anchor',
|
|
58
|
+
'angry',
|
|
59
|
+
'annoyed',
|
|
60
|
+
'antenna',
|
|
61
|
+
'anvil',
|
|
62
|
+
'aperture',
|
|
63
|
+
'app-window',
|
|
64
|
+
'app-window-mac',
|
|
65
|
+
'apple',
|
|
66
|
+
'archive',
|
|
67
|
+
'archive-restore',
|
|
68
|
+
'archive-x',
|
|
69
|
+
'area-chart',
|
|
70
|
+
'armchair',
|
|
71
|
+
'arrow-big-down',
|
|
72
|
+
'arrow-big-down-dash',
|
|
73
|
+
'arrow-big-left',
|
|
74
|
+
'arrow-big-left-dash',
|
|
75
|
+
'arrow-big-right',
|
|
76
|
+
'arrow-big-right-dash',
|
|
77
|
+
'arrow-big-up',
|
|
78
|
+
'arrow-big-up-dash',
|
|
79
|
+
'arrow-down',
|
|
80
|
+
'arrow-down-0-1',
|
|
81
|
+
'arrow-down-1-0',
|
|
82
|
+
'arrow-down-a-z',
|
|
83
|
+
'arrow-down-circle',
|
|
84
|
+
'arrow-down-from-line',
|
|
85
|
+
'arrow-down-left',
|
|
86
|
+
'arrow-down-left-from-circle',
|
|
87
|
+
'arrow-down-left-from-square',
|
|
88
|
+
'arrow-down-left-square',
|
|
89
|
+
'arrow-down-narrow-wide',
|
|
90
|
+
'arrow-down-right',
|
|
91
|
+
'arrow-down-right-from-circle',
|
|
92
|
+
'arrow-down-right-from-square',
|
|
93
|
+
'arrow-down-right-square',
|
|
94
|
+
'arrow-down-square',
|
|
95
|
+
'arrow-down-to-dot',
|
|
96
|
+
'arrow-down-to-line',
|
|
97
|
+
'arrow-down-up',
|
|
98
|
+
'arrow-down-wide-narrow',
|
|
99
|
+
'arrow-down-z-a',
|
|
100
|
+
'arrow-left',
|
|
101
|
+
'arrow-left-circle',
|
|
102
|
+
'arrow-left-from-line',
|
|
103
|
+
'arrow-left-right',
|
|
104
|
+
'arrow-left-square',
|
|
105
|
+
'arrow-left-to-line',
|
|
106
|
+
'arrow-right',
|
|
107
|
+
'arrow-right-circle',
|
|
108
|
+
'arrow-right-from-line',
|
|
109
|
+
'arrow-right-left',
|
|
110
|
+
'arrow-right-square',
|
|
111
|
+
'arrow-right-to-line',
|
|
112
|
+
'arrow-up',
|
|
113
|
+
'arrow-up-0-1',
|
|
114
|
+
'arrow-up-1-0',
|
|
115
|
+
'arrow-up-a-z',
|
|
116
|
+
'arrow-up-circle',
|
|
117
|
+
'arrow-up-down',
|
|
118
|
+
'arrow-up-from-dot',
|
|
119
|
+
'arrow-up-from-line',
|
|
120
|
+
'arrow-up-left',
|
|
121
|
+
'arrow-up-left-from-circle',
|
|
122
|
+
'arrow-up-left-from-square',
|
|
123
|
+
'arrow-up-left-square',
|
|
124
|
+
'arrow-up-narrow-wide',
|
|
125
|
+
'arrow-up-right',
|
|
126
|
+
'arrow-up-right-from-circle',
|
|
127
|
+
'arrow-up-right-from-square',
|
|
128
|
+
'arrow-up-right-square',
|
|
129
|
+
'arrow-up-square',
|
|
130
|
+
'arrow-up-to-line',
|
|
131
|
+
'arrow-up-wide-narrow',
|
|
132
|
+
'arrow-up-z-a',
|
|
133
|
+
'arrows-up-from-line',
|
|
134
|
+
'asterisk',
|
|
135
|
+
'asterisk-square',
|
|
136
|
+
'at-sign',
|
|
137
|
+
'atom',
|
|
138
|
+
'audio-lines',
|
|
139
|
+
'audio-waveform',
|
|
140
|
+
'award',
|
|
141
|
+
'axe',
|
|
142
|
+
'axis-3d',
|
|
143
|
+
'baby',
|
|
144
|
+
'backpack',
|
|
145
|
+
'badge',
|
|
146
|
+
'badge-alert',
|
|
147
|
+
'badge-cent',
|
|
148
|
+
'badge-check',
|
|
149
|
+
'badge-dollar-sign',
|
|
150
|
+
'badge-euro',
|
|
151
|
+
'badge-help',
|
|
152
|
+
'badge-indian-rupee',
|
|
153
|
+
'badge-info',
|
|
154
|
+
'badge-japanese-yen',
|
|
155
|
+
'badge-minus',
|
|
156
|
+
'badge-percent',
|
|
157
|
+
'badge-plus',
|
|
158
|
+
'badge-pound-sterling',
|
|
159
|
+
'badge-russian-ruble',
|
|
160
|
+
'badge-swiss-franc',
|
|
161
|
+
'badge-x',
|
|
162
|
+
'baggage-claim',
|
|
163
|
+
'ban',
|
|
164
|
+
'banana',
|
|
165
|
+
'bandage',
|
|
166
|
+
'banknote',
|
|
167
|
+
'bar-chart',
|
|
168
|
+
'bar-chart-2',
|
|
169
|
+
'bar-chart-3',
|
|
170
|
+
'bar-chart-4',
|
|
171
|
+
'bar-chart-big',
|
|
172
|
+
'bar-chart-horizontal',
|
|
173
|
+
'bar-chart-horizontal-big',
|
|
174
|
+
'barcode',
|
|
175
|
+
'baseline',
|
|
176
|
+
'bath',
|
|
177
|
+
'battery',
|
|
178
|
+
'battery-charging',
|
|
179
|
+
'battery-full',
|
|
180
|
+
'battery-low',
|
|
181
|
+
'battery-medium',
|
|
182
|
+
'battery-warning',
|
|
183
|
+
'beaker',
|
|
184
|
+
'bean',
|
|
185
|
+
'bean-off',
|
|
186
|
+
'bed',
|
|
187
|
+
'bed-double',
|
|
188
|
+
'bed-single',
|
|
189
|
+
'beef',
|
|
190
|
+
'beer',
|
|
191
|
+
'beer-off',
|
|
192
|
+
'bell',
|
|
193
|
+
'bell-dot',
|
|
194
|
+
'bell-electric',
|
|
195
|
+
'bell-minus',
|
|
196
|
+
'bell-off',
|
|
197
|
+
'bell-plus',
|
|
198
|
+
'bell-ring',
|
|
199
|
+
'between-horizontal-end',
|
|
200
|
+
'between-horizontal-start',
|
|
201
|
+
'between-vertical-end',
|
|
202
|
+
'between-vertical-start',
|
|
203
|
+
'binoculars',
|
|
204
|
+
'biohazard',
|
|
205
|
+
'bird',
|
|
206
|
+
'bitcoin',
|
|
207
|
+
'blend',
|
|
208
|
+
'blinds',
|
|
209
|
+
'blocks',
|
|
210
|
+
'bluetooth',
|
|
211
|
+
'bluetooth-connected',
|
|
212
|
+
'bluetooth-off',
|
|
213
|
+
'bluetooth-searching',
|
|
214
|
+
'bold',
|
|
215
|
+
'bolt',
|
|
216
|
+
'bomb',
|
|
217
|
+
'bone',
|
|
218
|
+
'book',
|
|
219
|
+
'book-a',
|
|
220
|
+
'book-audio',
|
|
221
|
+
'book-check',
|
|
222
|
+
'book-copy',
|
|
223
|
+
'book-dashed',
|
|
224
|
+
'book-down',
|
|
225
|
+
'book-headphones',
|
|
226
|
+
'book-heart',
|
|
227
|
+
'book-image',
|
|
228
|
+
'book-key',
|
|
229
|
+
'book-lock',
|
|
230
|
+
'book-marked',
|
|
231
|
+
'book-minus',
|
|
232
|
+
'book-open',
|
|
233
|
+
'book-open-check',
|
|
234
|
+
'book-open-text',
|
|
235
|
+
'book-plus',
|
|
236
|
+
'book-text',
|
|
237
|
+
'book-type',
|
|
238
|
+
'book-up',
|
|
239
|
+
'book-up-2',
|
|
240
|
+
'book-user',
|
|
241
|
+
'book-x',
|
|
242
|
+
'bookmark',
|
|
243
|
+
'bookmark-check',
|
|
244
|
+
'bookmark-minus',
|
|
245
|
+
'bookmark-plus',
|
|
246
|
+
'bookmark-x',
|
|
247
|
+
'boom-box',
|
|
248
|
+
'bot',
|
|
249
|
+
'bot-message-square',
|
|
250
|
+
'box',
|
|
251
|
+
'box-select',
|
|
252
|
+
'boxes',
|
|
253
|
+
'braces',
|
|
254
|
+
'brackets',
|
|
255
|
+
'brain',
|
|
256
|
+
'brain-circuit',
|
|
257
|
+
'brain-cog',
|
|
258
|
+
'brick-wall',
|
|
259
|
+
'briefcase',
|
|
260
|
+
'briefcase-business',
|
|
261
|
+
'briefcase-conveyor-belt',
|
|
262
|
+
'briefcase-medical',
|
|
263
|
+
'bring-to-front',
|
|
264
|
+
'brush',
|
|
265
|
+
'bug',
|
|
266
|
+
'bug-off',
|
|
267
|
+
'bug-play',
|
|
268
|
+
'building',
|
|
269
|
+
'building-2',
|
|
270
|
+
'bus',
|
|
271
|
+
'bus-front',
|
|
272
|
+
'cable',
|
|
273
|
+
'cable-car',
|
|
274
|
+
'cake',
|
|
275
|
+
'cake-slice',
|
|
276
|
+
'calculator',
|
|
277
|
+
'calendar',
|
|
278
|
+
'calendar-arrow-down',
|
|
279
|
+
'calendar-arrow-up',
|
|
280
|
+
'calendar-check',
|
|
281
|
+
'calendar-check-2',
|
|
282
|
+
'calendar-clock',
|
|
283
|
+
'calendar-cog',
|
|
284
|
+
'calendar-days',
|
|
285
|
+
'calendar-fold',
|
|
286
|
+
'calendar-heart',
|
|
287
|
+
'calendar-minus',
|
|
288
|
+
'calendar-minus-2',
|
|
289
|
+
'calendar-off',
|
|
290
|
+
'calendar-plus',
|
|
291
|
+
'calendar-plus-2',
|
|
292
|
+
'calendar-range',
|
|
293
|
+
'calendar-search',
|
|
294
|
+
'calendar-x',
|
|
295
|
+
'calendar-x-2',
|
|
296
|
+
'camera',
|
|
297
|
+
'camera-off',
|
|
298
|
+
'candlestick-chart',
|
|
299
|
+
'candy',
|
|
300
|
+
'candy-cane',
|
|
301
|
+
'candy-off',
|
|
302
|
+
'cannabis',
|
|
303
|
+
'captions',
|
|
304
|
+
'captions-off',
|
|
305
|
+
'car',
|
|
306
|
+
'car-front',
|
|
307
|
+
'car-taxi-front',
|
|
308
|
+
'caravan',
|
|
309
|
+
'carrot',
|
|
310
|
+
'case-lower',
|
|
311
|
+
'case-sensitive',
|
|
312
|
+
'case-upper',
|
|
313
|
+
'cassette-tape',
|
|
314
|
+
'cast',
|
|
315
|
+
'castle',
|
|
316
|
+
'cat',
|
|
317
|
+
'cctv',
|
|
318
|
+
'chart-area',
|
|
319
|
+
'chart-bar',
|
|
320
|
+
'chart-bar-big',
|
|
321
|
+
'chart-bar-decreasing',
|
|
322
|
+
'chart-bar-increasing',
|
|
323
|
+
'chart-bar-stacked',
|
|
324
|
+
'chart-candlestick',
|
|
325
|
+
'chart-column',
|
|
326
|
+
'chart-column-big',
|
|
327
|
+
'chart-column-decreasing',
|
|
328
|
+
'chart-column-increasing',
|
|
329
|
+
'chart-column-stacked',
|
|
330
|
+
'chart-gantt',
|
|
331
|
+
'chart-line',
|
|
332
|
+
'chart-network',
|
|
333
|
+
'chart-no-axes-column',
|
|
334
|
+
'chart-no-axes-column-decreasing',
|
|
335
|
+
'chart-no-axes-column-increasing',
|
|
336
|
+
'chart-no-axes-combined',
|
|
337
|
+
'chart-no-axes-gantt',
|
|
338
|
+
'chart-pie',
|
|
339
|
+
'chart-scatter',
|
|
340
|
+
'chart-spline',
|
|
341
|
+
'check',
|
|
342
|
+
'check-check',
|
|
343
|
+
'check-circle',
|
|
344
|
+
'check-circle-2',
|
|
345
|
+
'check-square',
|
|
346
|
+
'chef-hat',
|
|
347
|
+
'cherry',
|
|
348
|
+
'chevron-down',
|
|
349
|
+
'chevron-down-circle',
|
|
350
|
+
'chevron-down-square',
|
|
351
|
+
'chevron-first',
|
|
352
|
+
'chevron-last',
|
|
353
|
+
'chevron-left',
|
|
354
|
+
'chevron-left-circle',
|
|
355
|
+
'chevron-left-square',
|
|
356
|
+
'chevron-right',
|
|
357
|
+
'chevron-right-circle',
|
|
358
|
+
'chevron-right-square',
|
|
359
|
+
'chevron-up',
|
|
360
|
+
'chevron-up-circle',
|
|
361
|
+
'chevron-up-square',
|
|
362
|
+
'chevrons-down',
|
|
363
|
+
'chevrons-down-up',
|
|
364
|
+
'chevrons-left',
|
|
365
|
+
'chevrons-left-right',
|
|
366
|
+
'chevrons-left-right-ellipsis',
|
|
367
|
+
'chevrons-right',
|
|
368
|
+
'chevrons-right-left',
|
|
369
|
+
'chevrons-up',
|
|
370
|
+
'chevrons-up-down',
|
|
371
|
+
'chrome',
|
|
372
|
+
'church',
|
|
373
|
+
'cigarette',
|
|
374
|
+
'cigarette-off',
|
|
375
|
+
'circle',
|
|
376
|
+
'circle-alert',
|
|
377
|
+
'circle-arrow-down',
|
|
378
|
+
'circle-arrow-left',
|
|
379
|
+
'circle-arrow-out-down-left',
|
|
380
|
+
'circle-arrow-out-down-right',
|
|
381
|
+
'circle-arrow-out-up-left',
|
|
382
|
+
'circle-arrow-out-up-right',
|
|
383
|
+
'circle-arrow-right',
|
|
384
|
+
'circle-arrow-up',
|
|
385
|
+
'circle-check',
|
|
386
|
+
'circle-check-big',
|
|
387
|
+
'circle-chevron-down',
|
|
388
|
+
'circle-chevron-left',
|
|
389
|
+
'circle-chevron-right',
|
|
390
|
+
'circle-chevron-up',
|
|
391
|
+
'circle-dashed',
|
|
392
|
+
'circle-divide',
|
|
393
|
+
'circle-dollar-sign',
|
|
394
|
+
'circle-dot',
|
|
395
|
+
'circle-dot-dashed',
|
|
396
|
+
'circle-ellipsis',
|
|
397
|
+
'circle-equal',
|
|
398
|
+
'circle-fading-arrow-up',
|
|
399
|
+
'circle-fading-plus',
|
|
400
|
+
'circle-gauge',
|
|
401
|
+
'circle-help',
|
|
402
|
+
'circle-minus',
|
|
403
|
+
'circle-off',
|
|
404
|
+
'circle-parking',
|
|
405
|
+
'circle-parking-off',
|
|
406
|
+
'circle-pause',
|
|
407
|
+
'circle-percent',
|
|
408
|
+
'circle-play',
|
|
409
|
+
'circle-plus',
|
|
410
|
+
'circle-power',
|
|
411
|
+
'circle-slash',
|
|
412
|
+
'circle-slash-2',
|
|
413
|
+
'circle-stop',
|
|
414
|
+
'circle-user',
|
|
415
|
+
'circle-user-round',
|
|
416
|
+
'circle-x',
|
|
417
|
+
'circuit-board',
|
|
418
|
+
'citrus',
|
|
419
|
+
'clapperboard',
|
|
420
|
+
'clipboard',
|
|
421
|
+
'clipboard-check',
|
|
422
|
+
'clipboard-copy',
|
|
423
|
+
'clipboard-list',
|
|
424
|
+
'clipboard-minus',
|
|
425
|
+
'clipboard-paste',
|
|
426
|
+
'clipboard-pen',
|
|
427
|
+
'clipboard-pen-line',
|
|
428
|
+
'clipboard-plus',
|
|
429
|
+
'clipboard-type',
|
|
430
|
+
'clipboard-x',
|
|
431
|
+
'clock',
|
|
432
|
+
'clock-1',
|
|
433
|
+
'clock-10',
|
|
434
|
+
'clock-11',
|
|
435
|
+
'clock-12',
|
|
436
|
+
'clock-2',
|
|
437
|
+
'clock-3',
|
|
438
|
+
'clock-4',
|
|
439
|
+
'clock-5',
|
|
440
|
+
'clock-6',
|
|
441
|
+
'clock-7',
|
|
442
|
+
'clock-8',
|
|
443
|
+
'clock-9',
|
|
444
|
+
'clock-alert',
|
|
445
|
+
'clock-arrow-down',
|
|
446
|
+
'clock-arrow-up',
|
|
447
|
+
'cloud',
|
|
448
|
+
'cloud-cog',
|
|
449
|
+
'cloud-download',
|
|
450
|
+
'cloud-drizzle',
|
|
451
|
+
'cloud-fog',
|
|
452
|
+
'cloud-hail',
|
|
453
|
+
'cloud-lightning',
|
|
454
|
+
'cloud-moon',
|
|
455
|
+
'cloud-moon-rain',
|
|
456
|
+
'cloud-off',
|
|
457
|
+
'cloud-rain',
|
|
458
|
+
'cloud-rain-wind',
|
|
459
|
+
'cloud-snow',
|
|
460
|
+
'cloud-sun',
|
|
461
|
+
'cloud-sun-rain',
|
|
462
|
+
'cloud-upload',
|
|
463
|
+
'cloudy',
|
|
464
|
+
'clover',
|
|
465
|
+
'club',
|
|
466
|
+
'code',
|
|
467
|
+
'code-xml',
|
|
468
|
+
'codepen',
|
|
469
|
+
'codesandbox',
|
|
470
|
+
'coffee',
|
|
471
|
+
'cog',
|
|
472
|
+
'coins',
|
|
473
|
+
'columns-2',
|
|
474
|
+
'columns-3',
|
|
475
|
+
'columns-4',
|
|
476
|
+
'combine',
|
|
477
|
+
'command',
|
|
478
|
+
'compass',
|
|
479
|
+
'component',
|
|
480
|
+
'computer',
|
|
481
|
+
'concierge-bell',
|
|
482
|
+
'cone',
|
|
483
|
+
'construction',
|
|
484
|
+
'contact',
|
|
485
|
+
'contact-round',
|
|
486
|
+
'container',
|
|
487
|
+
'contrast',
|
|
488
|
+
'cookie',
|
|
489
|
+
'cooking-pot',
|
|
490
|
+
'copy',
|
|
491
|
+
'copy-check',
|
|
492
|
+
'copy-minus',
|
|
493
|
+
'copy-plus',
|
|
494
|
+
'copy-slash',
|
|
495
|
+
'copy-x',
|
|
496
|
+
'copyleft',
|
|
497
|
+
'copyright',
|
|
498
|
+
'corner-down-left',
|
|
499
|
+
'corner-down-right',
|
|
500
|
+
'corner-left-down',
|
|
501
|
+
'corner-left-up',
|
|
502
|
+
'corner-right-down',
|
|
503
|
+
'corner-right-up',
|
|
504
|
+
'corner-up-left',
|
|
505
|
+
'corner-up-right',
|
|
506
|
+
'cpu',
|
|
507
|
+
'creative-commons',
|
|
508
|
+
'credit-card',
|
|
509
|
+
'croissant',
|
|
510
|
+
'crop',
|
|
511
|
+
'cross',
|
|
512
|
+
'crosshair',
|
|
513
|
+
'crown',
|
|
514
|
+
'cuboid',
|
|
515
|
+
'cup-soda',
|
|
516
|
+
'currency',
|
|
517
|
+
'cylindrical-height',
|
|
518
|
+
'database',
|
|
519
|
+
'database-backup',
|
|
520
|
+
'database-zap',
|
|
521
|
+
'delete',
|
|
522
|
+
'dessert',
|
|
523
|
+
'diameter',
|
|
524
|
+
'diamond',
|
|
525
|
+
'diamond-minus',
|
|
526
|
+
'diamond-percent',
|
|
527
|
+
'diamond-plus',
|
|
528
|
+
'dice-1',
|
|
529
|
+
'dice-2',
|
|
530
|
+
'dice-3',
|
|
531
|
+
'dice-4',
|
|
532
|
+
'dice-5',
|
|
533
|
+
'dice-6',
|
|
534
|
+
'dices',
|
|
535
|
+
'diff',
|
|
536
|
+
'disc',
|
|
537
|
+
'disc-2',
|
|
538
|
+
'disc-3',
|
|
539
|
+
'disc-album',
|
|
540
|
+
'divide',
|
|
541
|
+
'dna',
|
|
542
|
+
'dna-off',
|
|
543
|
+
'dock',
|
|
544
|
+
'dog',
|
|
545
|
+
'dollar-sign',
|
|
546
|
+
'donut',
|
|
547
|
+
'door-closed',
|
|
548
|
+
'door-open',
|
|
549
|
+
'dot',
|
|
550
|
+
'dot-square',
|
|
551
|
+
'download',
|
|
552
|
+
'draft',
|
|
553
|
+
'drafting-compass',
|
|
554
|
+
'drama',
|
|
555
|
+
'dribbble',
|
|
556
|
+
'drill',
|
|
557
|
+
'droplet',
|
|
558
|
+
'droplets',
|
|
559
|
+
'drum',
|
|
560
|
+
'drumstick',
|
|
561
|
+
'dumbbell',
|
|
562
|
+
'ear',
|
|
563
|
+
'ear-off',
|
|
564
|
+
'earth',
|
|
565
|
+
'earth-lock',
|
|
566
|
+
'eclipse',
|
|
567
|
+
'egg',
|
|
568
|
+
'egg-fried',
|
|
569
|
+
'egg-off',
|
|
570
|
+
'ellipsis',
|
|
571
|
+
'ellipsis-vertical',
|
|
572
|
+
'equal',
|
|
573
|
+
'equal-approximately',
|
|
574
|
+
'equal-not',
|
|
575
|
+
'equal-square',
|
|
576
|
+
'eraser',
|
|
577
|
+
'ethernet-port',
|
|
578
|
+
'euro',
|
|
579
|
+
'expand',
|
|
580
|
+
'external-link',
|
|
581
|
+
'eye',
|
|
582
|
+
'eye-closed',
|
|
583
|
+
'eye-off',
|
|
584
|
+
'facebook',
|
|
585
|
+
'factory',
|
|
586
|
+
'fan',
|
|
587
|
+
'fast-forward',
|
|
588
|
+
'feather',
|
|
589
|
+
'fence',
|
|
590
|
+
'ferris-wheel',
|
|
591
|
+
'figma',
|
|
592
|
+
'file',
|
|
593
|
+
'file-archive',
|
|
594
|
+
'file-audio',
|
|
595
|
+
'file-audio-2',
|
|
596
|
+
'file-axis-3d',
|
|
597
|
+
'file-badge',
|
|
598
|
+
'file-badge-2',
|
|
599
|
+
'file-bar-chart',
|
|
600
|
+
'file-bar-chart-2',
|
|
601
|
+
'file-box',
|
|
602
|
+
'file-chart-column',
|
|
603
|
+
'file-chart-column-increasing',
|
|
604
|
+
'file-chart-line',
|
|
605
|
+
'file-chart-pie',
|
|
606
|
+
'file-check',
|
|
607
|
+
'file-check-2',
|
|
608
|
+
'file-clock',
|
|
609
|
+
'file-code',
|
|
610
|
+
'file-code-2',
|
|
611
|
+
'file-cog',
|
|
612
|
+
'file-diff',
|
|
613
|
+
'file-digit',
|
|
614
|
+
'file-down',
|
|
615
|
+
'file-heart',
|
|
616
|
+
'file-image',
|
|
617
|
+
'file-input',
|
|
618
|
+
'file-json',
|
|
619
|
+
'file-json-2',
|
|
620
|
+
'file-key',
|
|
621
|
+
'file-key-2',
|
|
622
|
+
'file-lock',
|
|
623
|
+
'file-lock-2',
|
|
624
|
+
'file-minus',
|
|
625
|
+
'file-minus-2',
|
|
626
|
+
'file-music',
|
|
627
|
+
'file-output',
|
|
628
|
+
'file-pen',
|
|
629
|
+
'file-pen-line',
|
|
630
|
+
'file-plus',
|
|
631
|
+
'file-plus-2',
|
|
632
|
+
'file-question',
|
|
633
|
+
'file-scan',
|
|
634
|
+
'file-search',
|
|
635
|
+
'file-search-2',
|
|
636
|
+
'file-sliders',
|
|
637
|
+
'file-spreadsheet',
|
|
638
|
+
'file-stack',
|
|
639
|
+
'file-symlink',
|
|
640
|
+
'file-terminal',
|
|
641
|
+
'file-text',
|
|
642
|
+
'file-type',
|
|
643
|
+
'file-type-2',
|
|
644
|
+
'file-up',
|
|
645
|
+
'file-user',
|
|
646
|
+
'file-video',
|
|
647
|
+
'file-video-2',
|
|
648
|
+
'file-volume',
|
|
649
|
+
'file-volume-2',
|
|
650
|
+
'file-warning',
|
|
651
|
+
'file-x',
|
|
652
|
+
'file-x-2',
|
|
653
|
+
'files',
|
|
654
|
+
'film',
|
|
655
|
+
'filter',
|
|
656
|
+
'filter-x',
|
|
657
|
+
'fingerprint',
|
|
658
|
+
'fire-extinguisher',
|
|
659
|
+
'fish',
|
|
660
|
+
'fish-off',
|
|
661
|
+
'fish-symbol',
|
|
662
|
+
'flag',
|
|
663
|
+
'flag-off',
|
|
664
|
+
'flag-triangle-left',
|
|
665
|
+
'flag-triangle-right',
|
|
666
|
+
'flame',
|
|
667
|
+
'flame-kindling',
|
|
668
|
+
'flashlight',
|
|
669
|
+
'flashlight-off',
|
|
670
|
+
'flask-conical',
|
|
671
|
+
'flask-conical-off',
|
|
672
|
+
'flask-round',
|
|
673
|
+
'flip-horizontal',
|
|
674
|
+
'flip-horizontal-2',
|
|
675
|
+
'flip-vertical',
|
|
676
|
+
'flip-vertical-2',
|
|
677
|
+
'flower',
|
|
678
|
+
'flower-2',
|
|
679
|
+
'focus',
|
|
680
|
+
'fold-horizontal',
|
|
681
|
+
'fold-vertical',
|
|
682
|
+
'folder',
|
|
683
|
+
'folder-archive',
|
|
684
|
+
'folder-check',
|
|
685
|
+
'folder-clock',
|
|
686
|
+
'folder-closed',
|
|
687
|
+
'folder-code',
|
|
688
|
+
'folder-cog',
|
|
689
|
+
'folder-dot',
|
|
690
|
+
'folder-down',
|
|
691
|
+
'folder-git',
|
|
692
|
+
'folder-git-2',
|
|
693
|
+
'folder-heart',
|
|
694
|
+
'folder-input',
|
|
695
|
+
'folder-kanban',
|
|
696
|
+
'folder-key',
|
|
697
|
+
'folder-lock',
|
|
698
|
+
'folder-minus',
|
|
699
|
+
'folder-open',
|
|
700
|
+
'folder-open-dot',
|
|
701
|
+
'folder-output',
|
|
702
|
+
'folder-pen',
|
|
703
|
+
'folder-plus',
|
|
704
|
+
'folder-root',
|
|
705
|
+
'folder-search',
|
|
706
|
+
'folder-search-2',
|
|
707
|
+
'folder-symlink',
|
|
708
|
+
'folder-sync',
|
|
709
|
+
'folder-tree',
|
|
710
|
+
'folder-up',
|
|
711
|
+
'folder-x',
|
|
712
|
+
'folders',
|
|
713
|
+
'footprints',
|
|
714
|
+
'forklift',
|
|
715
|
+
'forward',
|
|
716
|
+
'frame',
|
|
717
|
+
'framer',
|
|
718
|
+
'frown',
|
|
719
|
+
'fuel',
|
|
720
|
+
'fullscreen',
|
|
721
|
+
'gallery-horizontal',
|
|
722
|
+
'gallery-horizontal-end',
|
|
723
|
+
'gallery-thumbnails',
|
|
724
|
+
'gallery-vertical',
|
|
725
|
+
'gallery-vertical-end',
|
|
726
|
+
'gamepad',
|
|
727
|
+
'gamepad-2',
|
|
728
|
+
'gauge',
|
|
729
|
+
'gavel',
|
|
730
|
+
'gem',
|
|
731
|
+
'ghost',
|
|
732
|
+
'gift',
|
|
733
|
+
'git-branch',
|
|
734
|
+
'git-branch-plus',
|
|
735
|
+
'git-commit-horizontal',
|
|
736
|
+
'git-commit-vertical',
|
|
737
|
+
'git-compare',
|
|
738
|
+
'git-compare-arrows',
|
|
739
|
+
'git-fork',
|
|
740
|
+
'git-graph',
|
|
741
|
+
'git-merge',
|
|
742
|
+
'git-pull-request',
|
|
743
|
+
'git-pull-request-arrow',
|
|
744
|
+
'git-pull-request-closed',
|
|
745
|
+
'git-pull-request-create',
|
|
746
|
+
'git-pull-request-create-arrow',
|
|
747
|
+
'git-pull-request-draft',
|
|
748
|
+
'github',
|
|
749
|
+
'gitlab',
|
|
750
|
+
'glass-water',
|
|
751
|
+
'glasses',
|
|
752
|
+
'globe',
|
|
753
|
+
'globe-lock',
|
|
754
|
+
'goal',
|
|
755
|
+
'grab',
|
|
756
|
+
'graduation-cap',
|
|
757
|
+
'grape',
|
|
758
|
+
'grid-2x2',
|
|
759
|
+
'grid-2x2-check',
|
|
760
|
+
'grid-2x2-plus',
|
|
761
|
+
'grid-2x2-x',
|
|
762
|
+
'grid-3x3',
|
|
763
|
+
'grip',
|
|
764
|
+
'grip-horizontal',
|
|
765
|
+
'grip-vertical',
|
|
766
|
+
'group',
|
|
767
|
+
'guitar',
|
|
768
|
+
'ham',
|
|
769
|
+
'hammer',
|
|
770
|
+
'hand',
|
|
771
|
+
'hand-coins',
|
|
772
|
+
'hand-heart',
|
|
773
|
+
'hand-helping',
|
|
774
|
+
'hand-metal',
|
|
775
|
+
'hand-platter',
|
|
776
|
+
'handshake',
|
|
777
|
+
'hard-drive',
|
|
778
|
+
'hard-drive-download',
|
|
779
|
+
'hard-drive-upload',
|
|
780
|
+
'hard-hat',
|
|
781
|
+
'hash',
|
|
782
|
+
'haze',
|
|
783
|
+
'hdmi-port',
|
|
784
|
+
'heading',
|
|
785
|
+
'heading-1',
|
|
786
|
+
'heading-2',
|
|
787
|
+
'heading-3',
|
|
788
|
+
'heading-4',
|
|
789
|
+
'heading-5',
|
|
790
|
+
'heading-6',
|
|
791
|
+
'headphone-off',
|
|
792
|
+
'headphones',
|
|
793
|
+
'headset',
|
|
794
|
+
'heart',
|
|
795
|
+
'heart-crack',
|
|
796
|
+
'heart-handshake',
|
|
797
|
+
'heart-off',
|
|
798
|
+
'heart-pulse',
|
|
799
|
+
'heater',
|
|
800
|
+
'help-circle',
|
|
801
|
+
'helping-hand',
|
|
802
|
+
'hexagon',
|
|
803
|
+
'highlighter',
|
|
804
|
+
'history',
|
|
805
|
+
'home',
|
|
806
|
+
'hop',
|
|
807
|
+
'hop-off',
|
|
808
|
+
'hospital',
|
|
809
|
+
'hotel',
|
|
810
|
+
'hourglass',
|
|
811
|
+
'house',
|
|
812
|
+
'house-plus',
|
|
813
|
+
'house-plug',
|
|
814
|
+
'ice-cream',
|
|
815
|
+
'ice-cream-bowl',
|
|
816
|
+
'ice-cream-cone',
|
|
817
|
+
'id-card',
|
|
818
|
+
'image',
|
|
819
|
+
'image-down',
|
|
820
|
+
'image-minus',
|
|
821
|
+
'image-off',
|
|
822
|
+
'image-play',
|
|
823
|
+
'image-plus',
|
|
824
|
+
'image-up',
|
|
825
|
+
'images',
|
|
826
|
+
'import',
|
|
827
|
+
'inbox',
|
|
828
|
+
'indent-decrease',
|
|
829
|
+
'indent-increase',
|
|
830
|
+
'indian-rupee',
|
|
831
|
+
'infinity',
|
|
832
|
+
'info',
|
|
833
|
+
'inspection-panel',
|
|
834
|
+
'instagram',
|
|
835
|
+
'italic',
|
|
836
|
+
'iteration-ccw',
|
|
837
|
+
'iteration-cw',
|
|
838
|
+
'japanese-yen',
|
|
839
|
+
'joystick',
|
|
840
|
+
'kanban',
|
|
841
|
+
'key',
|
|
842
|
+
'key-round',
|
|
843
|
+
'key-square',
|
|
844
|
+
'keyboard',
|
|
845
|
+
'keyboard-music',
|
|
846
|
+
'keyboard-off',
|
|
847
|
+
'lamp',
|
|
848
|
+
'lamp-ceiling',
|
|
849
|
+
'lamp-desk',
|
|
850
|
+
'lamp-floor',
|
|
851
|
+
'lamp-wall-down',
|
|
852
|
+
'lamp-wall-up',
|
|
853
|
+
'land-plot',
|
|
854
|
+
'landmark',
|
|
855
|
+
'languages',
|
|
856
|
+
'laptop',
|
|
857
|
+
'laptop-minimal',
|
|
858
|
+
'laptop-minimal-check',
|
|
859
|
+
'lasso',
|
|
860
|
+
'lasso-select',
|
|
861
|
+
'laugh',
|
|
862
|
+
'layers',
|
|
863
|
+
'layers-2',
|
|
864
|
+
'layers-3',
|
|
865
|
+
'layout',
|
|
866
|
+
'layout-dashboard',
|
|
867
|
+
'layout-grid',
|
|
868
|
+
'layout-list',
|
|
869
|
+
'layout-panel-left',
|
|
870
|
+
'layout-panel-top',
|
|
871
|
+
'layout-template',
|
|
872
|
+
'leaf',
|
|
873
|
+
'leafy-green',
|
|
874
|
+
'lectern',
|
|
875
|
+
'library',
|
|
876
|
+
'library-big',
|
|
877
|
+
'life-buoy',
|
|
878
|
+
'ligature',
|
|
879
|
+
'lightbulb',
|
|
880
|
+
'lightbulb-off',
|
|
881
|
+
'link',
|
|
882
|
+
'link-2',
|
|
883
|
+
'link-2-off',
|
|
884
|
+
'linkedin',
|
|
885
|
+
'list',
|
|
886
|
+
'list-check',
|
|
887
|
+
'list-checks',
|
|
888
|
+
'list-collapse',
|
|
889
|
+
'list-end',
|
|
890
|
+
'list-filter',
|
|
891
|
+
'list-minus',
|
|
892
|
+
'list-music',
|
|
893
|
+
'list-ordered',
|
|
894
|
+
'list-plus',
|
|
895
|
+
'list-restart',
|
|
896
|
+
'list-start',
|
|
897
|
+
'list-todo',
|
|
898
|
+
'list-tree',
|
|
899
|
+
'list-video',
|
|
900
|
+
'list-x',
|
|
901
|
+
'loader',
|
|
902
|
+
'loader-circle',
|
|
903
|
+
'loader-pinwheel',
|
|
904
|
+
'locate',
|
|
905
|
+
'locate-fixed',
|
|
906
|
+
'locate-off',
|
|
907
|
+
'lock',
|
|
908
|
+
'lock-keyhole',
|
|
909
|
+
'lock-keyhole-open',
|
|
910
|
+
'lock-open',
|
|
911
|
+
'log-in',
|
|
912
|
+
'log-out',
|
|
913
|
+
'logs',
|
|
914
|
+
'lollipop',
|
|
915
|
+
'luggage',
|
|
916
|
+
'magnet',
|
|
917
|
+
'mail',
|
|
918
|
+
'mail-check',
|
|
919
|
+
'mail-minus',
|
|
920
|
+
'mail-open',
|
|
921
|
+
'mail-plus',
|
|
922
|
+
'mail-question',
|
|
923
|
+
'mail-search',
|
|
924
|
+
'mail-warning',
|
|
925
|
+
'mail-x',
|
|
926
|
+
'mailbox',
|
|
927
|
+
'mails',
|
|
928
|
+
'map',
|
|
929
|
+
'map-pin',
|
|
930
|
+
'map-pin-check',
|
|
931
|
+
'map-pin-check-inside',
|
|
932
|
+
'map-pin-house',
|
|
933
|
+
'map-pin-minus',
|
|
934
|
+
'map-pin-minus-inside',
|
|
935
|
+
'map-pin-off',
|
|
936
|
+
'map-pin-plus',
|
|
937
|
+
'map-pin-plus-inside',
|
|
938
|
+
'map-pin-x',
|
|
939
|
+
'map-pin-x-inside',
|
|
940
|
+
'map-pinned',
|
|
941
|
+
'martini',
|
|
942
|
+
'maximize',
|
|
943
|
+
'maximize-2',
|
|
944
|
+
'medal',
|
|
945
|
+
'megaphone',
|
|
946
|
+
'megaphone-off',
|
|
947
|
+
'meh',
|
|
948
|
+
'memory-stick',
|
|
949
|
+
'menu',
|
|
950
|
+
'merge',
|
|
951
|
+
'message-circle',
|
|
952
|
+
'message-circle-code',
|
|
953
|
+
'message-circle-dashed',
|
|
954
|
+
'message-circle-heart',
|
|
955
|
+
'message-circle-more',
|
|
956
|
+
'message-circle-off',
|
|
957
|
+
'message-circle-plus',
|
|
958
|
+
'message-circle-question',
|
|
959
|
+
'message-circle-reply',
|
|
960
|
+
'message-circle-warning',
|
|
961
|
+
'message-circle-x',
|
|
962
|
+
'message-square',
|
|
963
|
+
'message-square-code',
|
|
964
|
+
'message-square-dashed',
|
|
965
|
+
'message-square-diff',
|
|
966
|
+
'message-square-dot',
|
|
967
|
+
'message-square-heart',
|
|
968
|
+
'message-square-more',
|
|
969
|
+
'message-square-off',
|
|
970
|
+
'message-square-plus',
|
|
971
|
+
'message-square-quote',
|
|
972
|
+
'message-square-reply',
|
|
973
|
+
'message-square-share',
|
|
974
|
+
'message-square-text',
|
|
975
|
+
'message-square-warning',
|
|
976
|
+
'message-square-x',
|
|
977
|
+
'messages-square',
|
|
978
|
+
'mic',
|
|
979
|
+
'mic-off',
|
|
980
|
+
'mic-vocal',
|
|
981
|
+
'microchip',
|
|
982
|
+
'microscope',
|
|
983
|
+
'microwave',
|
|
984
|
+
'milestone',
|
|
985
|
+
'milk',
|
|
986
|
+
'milk-off',
|
|
987
|
+
'minimize',
|
|
988
|
+
'minimize-2',
|
|
989
|
+
'minus',
|
|
990
|
+
'minus-circle',
|
|
991
|
+
'minus-square',
|
|
992
|
+
'monitor',
|
|
993
|
+
'monitor-check',
|
|
994
|
+
'monitor-cog',
|
|
995
|
+
'monitor-dot',
|
|
996
|
+
'monitor-down',
|
|
997
|
+
'monitor-off',
|
|
998
|
+
'monitor-pause',
|
|
999
|
+
'monitor-play',
|
|
1000
|
+
'monitor-smartphone',
|
|
1001
|
+
'monitor-speaker',
|
|
1002
|
+
'monitor-stop',
|
|
1003
|
+
'monitor-up',
|
|
1004
|
+
'monitor-x',
|
|
1005
|
+
'moon',
|
|
1006
|
+
'moon-star',
|
|
1007
|
+
'more-horizontal',
|
|
1008
|
+
'more-vertical',
|
|
1009
|
+
'mountain',
|
|
1010
|
+
'mountain-snow',
|
|
1011
|
+
'mouse',
|
|
1012
|
+
'mouse-off',
|
|
1013
|
+
'mouse-pointer',
|
|
1014
|
+
'mouse-pointer-2',
|
|
1015
|
+
'mouse-pointer-ban',
|
|
1016
|
+
'mouse-pointer-click',
|
|
1017
|
+
'move',
|
|
1018
|
+
'move-3d',
|
|
1019
|
+
'move-diagonal',
|
|
1020
|
+
'move-diagonal-2',
|
|
1021
|
+
'move-down',
|
|
1022
|
+
'move-down-left',
|
|
1023
|
+
'move-down-right',
|
|
1024
|
+
'move-horizontal',
|
|
1025
|
+
'move-left',
|
|
1026
|
+
'move-right',
|
|
1027
|
+
'move-up',
|
|
1028
|
+
'move-up-left',
|
|
1029
|
+
'move-up-right',
|
|
1030
|
+
'move-vertical',
|
|
1031
|
+
'music',
|
|
1032
|
+
'music-2',
|
|
1033
|
+
'music-3',
|
|
1034
|
+
'music-4',
|
|
1035
|
+
'navigation',
|
|
1036
|
+
'navigation-2',
|
|
1037
|
+
'navigation-2-off',
|
|
1038
|
+
'navigation-off',
|
|
1039
|
+
'network',
|
|
1040
|
+
'newspaper',
|
|
1041
|
+
'nfc',
|
|
1042
|
+
'notebook',
|
|
1043
|
+
'notebook-pen',
|
|
1044
|
+
'notebook-tabs',
|
|
1045
|
+
'notebook-text',
|
|
1046
|
+
'notepad-text',
|
|
1047
|
+
'notepad-text-dashed',
|
|
1048
|
+
'nut',
|
|
1049
|
+
'nut-off',
|
|
1050
|
+
'octagon',
|
|
1051
|
+
'octagon-alert',
|
|
1052
|
+
'octagon-pause',
|
|
1053
|
+
'octagon-x',
|
|
1054
|
+
'option',
|
|
1055
|
+
'orbit',
|
|
1056
|
+
'origami',
|
|
1057
|
+
'package',
|
|
1058
|
+
'package-2',
|
|
1059
|
+
'package-check',
|
|
1060
|
+
'package-minus',
|
|
1061
|
+
'package-open',
|
|
1062
|
+
'package-plus',
|
|
1063
|
+
'package-search',
|
|
1064
|
+
'package-x',
|
|
1065
|
+
'paintbrush',
|
|
1066
|
+
'paintbrush-vertical',
|
|
1067
|
+
'paintbrush-2',
|
|
1068
|
+
'palette',
|
|
1069
|
+
'palmtree',
|
|
1070
|
+
'panel-bottom',
|
|
1071
|
+
'panel-bottom-close',
|
|
1072
|
+
'panel-bottom-dashed',
|
|
1073
|
+
'panel-bottom-open',
|
|
1074
|
+
'panel-left',
|
|
1075
|
+
'panel-left-close',
|
|
1076
|
+
'panel-left-dashed',
|
|
1077
|
+
'panel-left-open',
|
|
1078
|
+
'panel-right',
|
|
1079
|
+
'panel-right-close',
|
|
1080
|
+
'panel-right-dashed',
|
|
1081
|
+
'panel-right-open',
|
|
1082
|
+
'panel-top',
|
|
1083
|
+
'panel-top-close',
|
|
1084
|
+
'panel-top-dashed',
|
|
1085
|
+
'panel-top-open',
|
|
1086
|
+
'panels-left-bottom',
|
|
1087
|
+
'panels-right-bottom',
|
|
1088
|
+
'panels-top-left',
|
|
1089
|
+
'paperclip',
|
|
1090
|
+
'parentheses',
|
|
1091
|
+
'parking-circle',
|
|
1092
|
+
'parking-circle-off',
|
|
1093
|
+
'parking-meter',
|
|
1094
|
+
'parking-square',
|
|
1095
|
+
'parking-square-off',
|
|
1096
|
+
'party-popper',
|
|
1097
|
+
'pause',
|
|
1098
|
+
'pause-circle',
|
|
1099
|
+
'pause-octagon',
|
|
1100
|
+
'paw-print',
|
|
1101
|
+
'pc-case',
|
|
1102
|
+
'pen',
|
|
1103
|
+
'pen-line',
|
|
1104
|
+
'pen-off',
|
|
1105
|
+
'pen-tool',
|
|
1106
|
+
'pencil',
|
|
1107
|
+
'pencil-line',
|
|
1108
|
+
'pencil-off',
|
|
1109
|
+
'pencil-ruler',
|
|
1110
|
+
'pentagon',
|
|
1111
|
+
'percent',
|
|
1112
|
+
'person-standing',
|
|
1113
|
+
'phone',
|
|
1114
|
+
'phone-call',
|
|
1115
|
+
'phone-forwarded',
|
|
1116
|
+
'phone-incoming',
|
|
1117
|
+
'phone-missed',
|
|
1118
|
+
'phone-off',
|
|
1119
|
+
'phone-outgoing',
|
|
1120
|
+
'pi',
|
|
1121
|
+
'piano',
|
|
1122
|
+
'pickaxe',
|
|
1123
|
+
'picture-in-picture',
|
|
1124
|
+
'picture-in-picture-2',
|
|
1125
|
+
'pie-chart',
|
|
1126
|
+
'pig',
|
|
1127
|
+
'piggy-bank',
|
|
1128
|
+
'pilcrow',
|
|
1129
|
+
'pilcrow-left',
|
|
1130
|
+
'pilcrow-right',
|
|
1131
|
+
'pilcrow-square',
|
|
1132
|
+
'pill',
|
|
1133
|
+
'pill-bottle',
|
|
1134
|
+
'pin',
|
|
1135
|
+
'pin-off',
|
|
1136
|
+
'pipette',
|
|
1137
|
+
'pizza',
|
|
1138
|
+
'plane',
|
|
1139
|
+
'plane-landing',
|
|
1140
|
+
'plane-takeoff',
|
|
1141
|
+
'play',
|
|
1142
|
+
'play-circle',
|
|
1143
|
+
'play-square',
|
|
1144
|
+
'plug',
|
|
1145
|
+
'plug-2',
|
|
1146
|
+
'plug-zap',
|
|
1147
|
+
'plug-zap-2',
|
|
1148
|
+
'plus',
|
|
1149
|
+
'plus-circle',
|
|
1150
|
+
'plus-square',
|
|
1151
|
+
'pocket',
|
|
1152
|
+
'pocket-knife',
|
|
1153
|
+
'podcast',
|
|
1154
|
+
'pointer',
|
|
1155
|
+
'pointer-off',
|
|
1156
|
+
'popcorn',
|
|
1157
|
+
'popsicle',
|
|
1158
|
+
'pound-sterling',
|
|
1159
|
+
'power',
|
|
1160
|
+
'power-circle',
|
|
1161
|
+
'power-off',
|
|
1162
|
+
'power-square',
|
|
1163
|
+
'presentation',
|
|
1164
|
+
'printer',
|
|
1165
|
+
'printer-check',
|
|
1166
|
+
'projector',
|
|
1167
|
+
'proportions',
|
|
1168
|
+
'puzzle',
|
|
1169
|
+
'pyramid',
|
|
1170
|
+
'qr-code',
|
|
1171
|
+
'quote',
|
|
1172
|
+
'rabbit',
|
|
1173
|
+
'radar',
|
|
1174
|
+
'radiation',
|
|
1175
|
+
'radical',
|
|
1176
|
+
'radio',
|
|
1177
|
+
'radio-receiver',
|
|
1178
|
+
'radio-tower',
|
|
1179
|
+
'radius',
|
|
1180
|
+
'rail-symbol',
|
|
1181
|
+
'rainbow',
|
|
1182
|
+
'rat',
|
|
1183
|
+
'ratio',
|
|
1184
|
+
'receipt',
|
|
1185
|
+
'receipt-cent',
|
|
1186
|
+
'receipt-euro',
|
|
1187
|
+
'receipt-indian-rupee',
|
|
1188
|
+
'receipt-japanese-yen',
|
|
1189
|
+
'receipt-pound-sterling',
|
|
1190
|
+
'receipt-russian-ruble',
|
|
1191
|
+
'receipt-swiss-franc',
|
|
1192
|
+
'receipt-text',
|
|
1193
|
+
'rectangle-ellipsis',
|
|
1194
|
+
'rectangle-horizontal',
|
|
1195
|
+
'rectangle-vertical',
|
|
1196
|
+
'recycle',
|
|
1197
|
+
'redo',
|
|
1198
|
+
'redo-2',
|
|
1199
|
+
'redo-dot',
|
|
1200
|
+
'refresh-ccw',
|
|
1201
|
+
'refresh-ccw-dot',
|
|
1202
|
+
'refresh-cw',
|
|
1203
|
+
'refresh-cw-off',
|
|
1204
|
+
'refrigerator',
|
|
1205
|
+
'regex',
|
|
1206
|
+
'remove-formatting',
|
|
1207
|
+
'repeat',
|
|
1208
|
+
'repeat-1',
|
|
1209
|
+
'repeat-2',
|
|
1210
|
+
'replace',
|
|
1211
|
+
'replace-all',
|
|
1212
|
+
'reply',
|
|
1213
|
+
'reply-all',
|
|
1214
|
+
'rewind',
|
|
1215
|
+
'ribbon',
|
|
1216
|
+
'rocket',
|
|
1217
|
+
'rocking-chair',
|
|
1218
|
+
'roller-coaster',
|
|
1219
|
+
'rotate-3d',
|
|
1220
|
+
'rotate-ccw',
|
|
1221
|
+
'rotate-ccw-square',
|
|
1222
|
+
'rotate-cw',
|
|
1223
|
+
'rotate-cw-square',
|
|
1224
|
+
'route',
|
|
1225
|
+
'route-off',
|
|
1226
|
+
'router',
|
|
1227
|
+
'rows-2',
|
|
1228
|
+
'rows-3',
|
|
1229
|
+
'rows-4',
|
|
1230
|
+
'rss',
|
|
1231
|
+
'ruler',
|
|
1232
|
+
'russian-ruble',
|
|
1233
|
+
'sailboat',
|
|
1234
|
+
'salad',
|
|
1235
|
+
'sandwich',
|
|
1236
|
+
'satellite',
|
|
1237
|
+
'satellite-dish',
|
|
1238
|
+
'save',
|
|
1239
|
+
'save-all',
|
|
1240
|
+
'save-off',
|
|
1241
|
+
'scale',
|
|
1242
|
+
'scale-3d',
|
|
1243
|
+
'scaling',
|
|
1244
|
+
'scan',
|
|
1245
|
+
'scan-barcode',
|
|
1246
|
+
'scan-eye',
|
|
1247
|
+
'scan-face',
|
|
1248
|
+
'scan-line',
|
|
1249
|
+
'scan-qr-code',
|
|
1250
|
+
'scan-search',
|
|
1251
|
+
'scan-text',
|
|
1252
|
+
'scatter-chart',
|
|
1253
|
+
'school',
|
|
1254
|
+
'scissors',
|
|
1255
|
+
'scissors-line-dashed',
|
|
1256
|
+
'scissors-square',
|
|
1257
|
+
'scissors-square-dashed-bottom',
|
|
1258
|
+
'screen-share',
|
|
1259
|
+
'screen-share-off',
|
|
1260
|
+
'scroll',
|
|
1261
|
+
'scroll-text',
|
|
1262
|
+
'search',
|
|
1263
|
+
'search-check',
|
|
1264
|
+
'search-code',
|
|
1265
|
+
'search-slash',
|
|
1266
|
+
'search-x',
|
|
1267
|
+
'section',
|
|
1268
|
+
'send',
|
|
1269
|
+
'send-horizontal',
|
|
1270
|
+
'send-to-back',
|
|
1271
|
+
'separator-horizontal',
|
|
1272
|
+
'separator-vertical',
|
|
1273
|
+
'server',
|
|
1274
|
+
'server-cog',
|
|
1275
|
+
'server-crash',
|
|
1276
|
+
'server-off',
|
|
1277
|
+
'settings',
|
|
1278
|
+
'settings-2',
|
|
1279
|
+
'shapes',
|
|
1280
|
+
'share',
|
|
1281
|
+
'share-2',
|
|
1282
|
+
'sheet',
|
|
1283
|
+
'shell',
|
|
1284
|
+
'shield',
|
|
1285
|
+
'shield-alert',
|
|
1286
|
+
'shield-ban',
|
|
1287
|
+
'shield-check',
|
|
1288
|
+
'shield-ellipsis',
|
|
1289
|
+
'shield-half',
|
|
1290
|
+
'shield-minus',
|
|
1291
|
+
'shield-off',
|
|
1292
|
+
'shield-plus',
|
|
1293
|
+
'shield-question',
|
|
1294
|
+
'shield-x',
|
|
1295
|
+
'ship',
|
|
1296
|
+
'ship-wheel',
|
|
1297
|
+
'shirt',
|
|
1298
|
+
'shopping-bag',
|
|
1299
|
+
'shopping-basket',
|
|
1300
|
+
'shopping-cart',
|
|
1301
|
+
'shovel',
|
|
1302
|
+
'shower-head',
|
|
1303
|
+
'shrink',
|
|
1304
|
+
'shrub',
|
|
1305
|
+
'shuffle',
|
|
1306
|
+
'sidebar',
|
|
1307
|
+
'sidebar-close',
|
|
1308
|
+
'sidebar-open',
|
|
1309
|
+
'sigma',
|
|
1310
|
+
'signal',
|
|
1311
|
+
'signal-high',
|
|
1312
|
+
'signal-low',
|
|
1313
|
+
'signal-medium',
|
|
1314
|
+
'signal-zero',
|
|
1315
|
+
'signature',
|
|
1316
|
+
'signpost',
|
|
1317
|
+
'signpost-big',
|
|
1318
|
+
'siren',
|
|
1319
|
+
'skip-back',
|
|
1320
|
+
'skip-forward',
|
|
1321
|
+
'skull',
|
|
1322
|
+
'slack',
|
|
1323
|
+
'slash',
|
|
1324
|
+
'slash-square',
|
|
1325
|
+
'slice',
|
|
1326
|
+
'sliders',
|
|
1327
|
+
'sliders-horizontal',
|
|
1328
|
+
'sliders-vertical',
|
|
1329
|
+
'smartphone',
|
|
1330
|
+
'smartphone-charging',
|
|
1331
|
+
'smartphone-nfc',
|
|
1332
|
+
'smile',
|
|
1333
|
+
'smile-plus',
|
|
1334
|
+
'snail',
|
|
1335
|
+
'snowflake',
|
|
1336
|
+
'sofa',
|
|
1337
|
+
'soup',
|
|
1338
|
+
'space',
|
|
1339
|
+
'spade',
|
|
1340
|
+
'sparkle',
|
|
1341
|
+
'sparkles',
|
|
1342
|
+
'speaker',
|
|
1343
|
+
'speech',
|
|
1344
|
+
'spell-check',
|
|
1345
|
+
'spell-check-2',
|
|
1346
|
+
'spline',
|
|
1347
|
+
'split',
|
|
1348
|
+
'split-square-horizontal',
|
|
1349
|
+
'split-square-vertical',
|
|
1350
|
+
'spray-can',
|
|
1351
|
+
'sprout',
|
|
1352
|
+
'square',
|
|
1353
|
+
'square-activity',
|
|
1354
|
+
'square-arrow-down',
|
|
1355
|
+
'square-arrow-down-left',
|
|
1356
|
+
'square-arrow-down-right',
|
|
1357
|
+
'square-arrow-left',
|
|
1358
|
+
'square-arrow-out-down-left',
|
|
1359
|
+
'square-arrow-out-down-right',
|
|
1360
|
+
'square-arrow-out-up-left',
|
|
1361
|
+
'square-arrow-out-up-right',
|
|
1362
|
+
'square-arrow-right',
|
|
1363
|
+
'square-arrow-up',
|
|
1364
|
+
'square-arrow-up-left',
|
|
1365
|
+
'square-arrow-up-right',
|
|
1366
|
+
'square-asterisk',
|
|
1367
|
+
'square-bottom-dashed-scissors',
|
|
1368
|
+
'square-chart-gantt',
|
|
1369
|
+
'square-check',
|
|
1370
|
+
'square-check-big',
|
|
1371
|
+
'square-chevron-down',
|
|
1372
|
+
'square-chevron-left',
|
|
1373
|
+
'square-chevron-right',
|
|
1374
|
+
'square-chevron-up',
|
|
1375
|
+
'square-code',
|
|
1376
|
+
'square-dashed',
|
|
1377
|
+
'square-dashed-bottom',
|
|
1378
|
+
'square-dashed-bottom-code',
|
|
1379
|
+
'square-dashed-kanban',
|
|
1380
|
+
'square-dashed-mouse-pointer',
|
|
1381
|
+
'square-divide',
|
|
1382
|
+
'square-dot',
|
|
1383
|
+
'square-equal',
|
|
1384
|
+
'square-function',
|
|
1385
|
+
'square-kanban',
|
|
1386
|
+
'square-library',
|
|
1387
|
+
'square-m',
|
|
1388
|
+
'square-menu',
|
|
1389
|
+
'square-minus',
|
|
1390
|
+
'square-mouse-pointer',
|
|
1391
|
+
'square-parking',
|
|
1392
|
+
'square-parking-off',
|
|
1393
|
+
'square-pen',
|
|
1394
|
+
'square-percent',
|
|
1395
|
+
'square-pi',
|
|
1396
|
+
'square-pilcrow',
|
|
1397
|
+
'square-play',
|
|
1398
|
+
'square-plus',
|
|
1399
|
+
'square-power',
|
|
1400
|
+
'square-radical',
|
|
1401
|
+
'square-scissors',
|
|
1402
|
+
'square-sigma',
|
|
1403
|
+
'square-slash',
|
|
1404
|
+
'square-split-horizontal',
|
|
1405
|
+
'square-split-vertical',
|
|
1406
|
+
'square-stack',
|
|
1407
|
+
'square-terminal',
|
|
1408
|
+
'square-user',
|
|
1409
|
+
'square-user-round',
|
|
1410
|
+
'square-x',
|
|
1411
|
+
'squircle',
|
|
1412
|
+
'squirrel',
|
|
1413
|
+
'stamp',
|
|
1414
|
+
'star',
|
|
1415
|
+
'star-half',
|
|
1416
|
+
'star-off',
|
|
1417
|
+
'step-back',
|
|
1418
|
+
'step-forward',
|
|
1419
|
+
'stethoscope',
|
|
1420
|
+
'sticker',
|
|
1421
|
+
'sticky-note',
|
|
1422
|
+
'store',
|
|
1423
|
+
'stretch-horizontal',
|
|
1424
|
+
'stretch-vertical',
|
|
1425
|
+
'strikethrough',
|
|
1426
|
+
'subscript',
|
|
1427
|
+
'sun',
|
|
1428
|
+
'sun-dim',
|
|
1429
|
+
'sun-medium',
|
|
1430
|
+
'sun-moon',
|
|
1431
|
+
'sun-snow',
|
|
1432
|
+
'sunrise',
|
|
1433
|
+
'sunset',
|
|
1434
|
+
'superscript',
|
|
1435
|
+
'swatch-book',
|
|
1436
|
+
'swiss-franc',
|
|
1437
|
+
'switch-camera',
|
|
1438
|
+
'sword',
|
|
1439
|
+
'swords',
|
|
1440
|
+
'syringe',
|
|
1441
|
+
'table',
|
|
1442
|
+
'table-2',
|
|
1443
|
+
'table-cells-merge',
|
|
1444
|
+
'table-cells-split',
|
|
1445
|
+
'table-columns-split',
|
|
1446
|
+
'table-of-contents',
|
|
1447
|
+
'table-properties',
|
|
1448
|
+
'table-rows-split',
|
|
1449
|
+
'tablet',
|
|
1450
|
+
'tablet-smartphone',
|
|
1451
|
+
'tablets',
|
|
1452
|
+
'tag',
|
|
1453
|
+
'tags',
|
|
1454
|
+
'tally-1',
|
|
1455
|
+
'tally-2',
|
|
1456
|
+
'tally-3',
|
|
1457
|
+
'tally-4',
|
|
1458
|
+
'tally-5',
|
|
1459
|
+
'tangent',
|
|
1460
|
+
'target',
|
|
1461
|
+
'telescope',
|
|
1462
|
+
'tent',
|
|
1463
|
+
'tent-tree',
|
|
1464
|
+
'terminal',
|
|
1465
|
+
'test-tube',
|
|
1466
|
+
'test-tube-diagonal',
|
|
1467
|
+
'test-tubes',
|
|
1468
|
+
'text',
|
|
1469
|
+
'text-cursor',
|
|
1470
|
+
'text-cursor-input',
|
|
1471
|
+
'text-quote',
|
|
1472
|
+
'text-search',
|
|
1473
|
+
'text-select',
|
|
1474
|
+
'theater',
|
|
1475
|
+
'thermometer',
|
|
1476
|
+
'thermometer-snowflake',
|
|
1477
|
+
'thermometer-sun',
|
|
1478
|
+
'thumbs-down',
|
|
1479
|
+
'thumbs-up',
|
|
1480
|
+
'ticket',
|
|
1481
|
+
'ticket-check',
|
|
1482
|
+
'ticket-minus',
|
|
1483
|
+
'ticket-percent',
|
|
1484
|
+
'ticket-plus',
|
|
1485
|
+
'ticket-slash',
|
|
1486
|
+
'ticket-x',
|
|
1487
|
+
'tickets',
|
|
1488
|
+
'tickets-plane',
|
|
1489
|
+
'timer',
|
|
1490
|
+
'timer-off',
|
|
1491
|
+
'timer-reset',
|
|
1492
|
+
'toggle-left',
|
|
1493
|
+
'toggle-right',
|
|
1494
|
+
'toilet',
|
|
1495
|
+
'tornado',
|
|
1496
|
+
'torus',
|
|
1497
|
+
'touchpad',
|
|
1498
|
+
'touchpad-off',
|
|
1499
|
+
'tower-control',
|
|
1500
|
+
'toy-brick',
|
|
1501
|
+
'tractor',
|
|
1502
|
+
'traffic-cone',
|
|
1503
|
+
'train-front',
|
|
1504
|
+
'train-front-tunnel',
|
|
1505
|
+
'train-track',
|
|
1506
|
+
'tram-front',
|
|
1507
|
+
'trash',
|
|
1508
|
+
'trash-2',
|
|
1509
|
+
'tree-deciduous',
|
|
1510
|
+
'tree-palm',
|
|
1511
|
+
'tree-pine',
|
|
1512
|
+
'trees',
|
|
1513
|
+
'trello',
|
|
1514
|
+
'trending-down',
|
|
1515
|
+
'trending-up',
|
|
1516
|
+
'trending-up-down',
|
|
1517
|
+
'triangle',
|
|
1518
|
+
'triangle-alert',
|
|
1519
|
+
'triangle-right',
|
|
1520
|
+
'trophy',
|
|
1521
|
+
'truck',
|
|
1522
|
+
'turtle',
|
|
1523
|
+
'tv',
|
|
1524
|
+
'tv-minimal',
|
|
1525
|
+
'tv-minimal-play',
|
|
1526
|
+
'twitch',
|
|
1527
|
+
'twitter',
|
|
1528
|
+
'type',
|
|
1529
|
+
'type-outline',
|
|
1530
|
+
'umbrella',
|
|
1531
|
+
'umbrella-off',
|
|
1532
|
+
'underline',
|
|
1533
|
+
'undo',
|
|
1534
|
+
'undo-2',
|
|
1535
|
+
'undo-dot',
|
|
1536
|
+
'unfold-horizontal',
|
|
1537
|
+
'unfold-vertical',
|
|
1538
|
+
'ungroup',
|
|
1539
|
+
'university',
|
|
1540
|
+
'unlink',
|
|
1541
|
+
'unlink-2',
|
|
1542
|
+
'unplug',
|
|
1543
|
+
'upload',
|
|
1544
|
+
'usb',
|
|
1545
|
+
'user',
|
|
1546
|
+
'user-check',
|
|
1547
|
+
'user-cog',
|
|
1548
|
+
'user-minus',
|
|
1549
|
+
'user-pen',
|
|
1550
|
+
'user-plus',
|
|
1551
|
+
'user-round',
|
|
1552
|
+
'user-round-check',
|
|
1553
|
+
'user-round-cog',
|
|
1554
|
+
'user-round-minus',
|
|
1555
|
+
'user-round-pen',
|
|
1556
|
+
'user-round-plus',
|
|
1557
|
+
'user-round-search',
|
|
1558
|
+
'user-round-x',
|
|
1559
|
+
'user-search',
|
|
1560
|
+
'user-x',
|
|
1561
|
+
'users',
|
|
1562
|
+
'users-round',
|
|
1563
|
+
'utensils',
|
|
1564
|
+
'utensils-crossed',
|
|
1565
|
+
'utility-pole',
|
|
1566
|
+
'variable',
|
|
1567
|
+
'vault',
|
|
1568
|
+
'vegan',
|
|
1569
|
+
'venetian-mask',
|
|
1570
|
+
'vibrate',
|
|
1571
|
+
'vibrate-off',
|
|
1572
|
+
'video',
|
|
1573
|
+
'video-off',
|
|
1574
|
+
'videotape',
|
|
1575
|
+
'view',
|
|
1576
|
+
'voicemail',
|
|
1577
|
+
'volume',
|
|
1578
|
+
'volume-1',
|
|
1579
|
+
'volume-2',
|
|
1580
|
+
'volume-off',
|
|
1581
|
+
'volume-x',
|
|
1582
|
+
'vote',
|
|
1583
|
+
'wallet',
|
|
1584
|
+
'wallet-cards',
|
|
1585
|
+
'wallet-minimal',
|
|
1586
|
+
'wallpaper',
|
|
1587
|
+
'wand',
|
|
1588
|
+
'wand-sparkles',
|
|
1589
|
+
'warehouse',
|
|
1590
|
+
'washing-machine',
|
|
1591
|
+
'watch',
|
|
1592
|
+
'waves',
|
|
1593
|
+
'waves-ladder',
|
|
1594
|
+
'waypoints',
|
|
1595
|
+
'webcam',
|
|
1596
|
+
'webhook',
|
|
1597
|
+
'webhook-off',
|
|
1598
|
+
'weight',
|
|
1599
|
+
'wheat',
|
|
1600
|
+
'wheat-off',
|
|
1601
|
+
'whole-word',
|
|
1602
|
+
'wifi',
|
|
1603
|
+
'wifi-high',
|
|
1604
|
+
'wifi-low',
|
|
1605
|
+
'wifi-off',
|
|
1606
|
+
'wifi-zero',
|
|
1607
|
+
'wind',
|
|
1608
|
+
'wind-arrow-down',
|
|
1609
|
+
'wine',
|
|
1610
|
+
'wine-off',
|
|
1611
|
+
'workflow',
|
|
1612
|
+
'worm',
|
|
1613
|
+
'wrap-text',
|
|
1614
|
+
'wrench',
|
|
1615
|
+
'x',
|
|
1616
|
+
'x-circle',
|
|
1617
|
+
'x-octagon',
|
|
1618
|
+
'x-square',
|
|
1619
|
+
'youtube',
|
|
1620
|
+
'zap',
|
|
1621
|
+
'zap-off',
|
|
1622
|
+
'zoom-in',
|
|
1623
|
+
'zoom-out',
|
|
1624
|
+
];
|