@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,1314 @@
|
|
|
1
|
+
/*!-----------------------------------------------------------------------------
|
|
2
|
+
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3
|
+
* Version: 0.45.0(5e5af013f8d295555a7210df0d5f2cea0bf5dd56)
|
|
4
|
+
* Released under the MIT license
|
|
5
|
+
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
|
6
|
+
*-----------------------------------------------------------------------------*/
|
|
7
|
+
var e = {
|
|
8
|
+
comments: {
|
|
9
|
+
lineComment: "*"
|
|
10
|
+
},
|
|
11
|
+
brackets: [
|
|
12
|
+
["[", "]"],
|
|
13
|
+
["(", ")"]
|
|
14
|
+
]
|
|
15
|
+
}, t = {
|
|
16
|
+
defaultToken: "invalid",
|
|
17
|
+
ignoreCase: !0,
|
|
18
|
+
tokenPostfix: ".abap",
|
|
19
|
+
keywords: [
|
|
20
|
+
"abap-source",
|
|
21
|
+
"abbreviated",
|
|
22
|
+
"abstract",
|
|
23
|
+
"accept",
|
|
24
|
+
"accepting",
|
|
25
|
+
"according",
|
|
26
|
+
"activation",
|
|
27
|
+
"actual",
|
|
28
|
+
"add",
|
|
29
|
+
"add-corresponding",
|
|
30
|
+
"adjacent",
|
|
31
|
+
"after",
|
|
32
|
+
"alias",
|
|
33
|
+
"aliases",
|
|
34
|
+
"align",
|
|
35
|
+
"all",
|
|
36
|
+
"allocate",
|
|
37
|
+
"alpha",
|
|
38
|
+
"analysis",
|
|
39
|
+
"analyzer",
|
|
40
|
+
"and",
|
|
41
|
+
"append",
|
|
42
|
+
"appendage",
|
|
43
|
+
"appending",
|
|
44
|
+
"application",
|
|
45
|
+
"archive",
|
|
46
|
+
"area",
|
|
47
|
+
"arithmetic",
|
|
48
|
+
"as",
|
|
49
|
+
"ascending",
|
|
50
|
+
"aspect",
|
|
51
|
+
"assert",
|
|
52
|
+
"assign",
|
|
53
|
+
"assigned",
|
|
54
|
+
"assigning",
|
|
55
|
+
"association",
|
|
56
|
+
"asynchronous",
|
|
57
|
+
"at",
|
|
58
|
+
"attributes",
|
|
59
|
+
"authority",
|
|
60
|
+
"authority-check",
|
|
61
|
+
"avg",
|
|
62
|
+
"back",
|
|
63
|
+
"background",
|
|
64
|
+
"backup",
|
|
65
|
+
"backward",
|
|
66
|
+
"badi",
|
|
67
|
+
"base",
|
|
68
|
+
"before",
|
|
69
|
+
"begin",
|
|
70
|
+
"between",
|
|
71
|
+
"big",
|
|
72
|
+
"binary",
|
|
73
|
+
"bintohex",
|
|
74
|
+
"bit",
|
|
75
|
+
"black",
|
|
76
|
+
"blank",
|
|
77
|
+
"blanks",
|
|
78
|
+
"blob",
|
|
79
|
+
"block",
|
|
80
|
+
"blocks",
|
|
81
|
+
"blue",
|
|
82
|
+
"bound",
|
|
83
|
+
"boundaries",
|
|
84
|
+
"bounds",
|
|
85
|
+
"boxed",
|
|
86
|
+
"break-point",
|
|
87
|
+
"buffer",
|
|
88
|
+
"by",
|
|
89
|
+
"bypassing",
|
|
90
|
+
"byte",
|
|
91
|
+
"byte-order",
|
|
92
|
+
"call",
|
|
93
|
+
"calling",
|
|
94
|
+
"case",
|
|
95
|
+
"cast",
|
|
96
|
+
"casting",
|
|
97
|
+
"catch",
|
|
98
|
+
"center",
|
|
99
|
+
"centered",
|
|
100
|
+
"chain",
|
|
101
|
+
"chain-input",
|
|
102
|
+
"chain-request",
|
|
103
|
+
"change",
|
|
104
|
+
"changing",
|
|
105
|
+
"channels",
|
|
106
|
+
"character",
|
|
107
|
+
"char-to-hex",
|
|
108
|
+
"check",
|
|
109
|
+
"checkbox",
|
|
110
|
+
"ci_",
|
|
111
|
+
"circular",
|
|
112
|
+
"class",
|
|
113
|
+
"class-coding",
|
|
114
|
+
"class-data",
|
|
115
|
+
"class-events",
|
|
116
|
+
"class-methods",
|
|
117
|
+
"class-pool",
|
|
118
|
+
"cleanup",
|
|
119
|
+
"clear",
|
|
120
|
+
"client",
|
|
121
|
+
"clob",
|
|
122
|
+
"clock",
|
|
123
|
+
"close",
|
|
124
|
+
"coalesce",
|
|
125
|
+
"code",
|
|
126
|
+
"coding",
|
|
127
|
+
"col_background",
|
|
128
|
+
"col_group",
|
|
129
|
+
"col_heading",
|
|
130
|
+
"col_key",
|
|
131
|
+
"col_negative",
|
|
132
|
+
"col_normal",
|
|
133
|
+
"col_positive",
|
|
134
|
+
"col_total",
|
|
135
|
+
"collect",
|
|
136
|
+
"color",
|
|
137
|
+
"column",
|
|
138
|
+
"columns",
|
|
139
|
+
"comment",
|
|
140
|
+
"comments",
|
|
141
|
+
"commit",
|
|
142
|
+
"common",
|
|
143
|
+
"communication",
|
|
144
|
+
"comparing",
|
|
145
|
+
"component",
|
|
146
|
+
"components",
|
|
147
|
+
"compression",
|
|
148
|
+
"compute",
|
|
149
|
+
"concat",
|
|
150
|
+
"concat_with_space",
|
|
151
|
+
"concatenate",
|
|
152
|
+
"cond",
|
|
153
|
+
"condense",
|
|
154
|
+
"condition",
|
|
155
|
+
"connect",
|
|
156
|
+
"connection",
|
|
157
|
+
"constants",
|
|
158
|
+
"context",
|
|
159
|
+
"contexts",
|
|
160
|
+
"continue",
|
|
161
|
+
"control",
|
|
162
|
+
"controls",
|
|
163
|
+
"conv",
|
|
164
|
+
"conversion",
|
|
165
|
+
"convert",
|
|
166
|
+
"copies",
|
|
167
|
+
"copy",
|
|
168
|
+
"corresponding",
|
|
169
|
+
"country",
|
|
170
|
+
"cover",
|
|
171
|
+
"cpi",
|
|
172
|
+
"create",
|
|
173
|
+
"creating",
|
|
174
|
+
"critical",
|
|
175
|
+
"currency",
|
|
176
|
+
"currency_conversion",
|
|
177
|
+
"current",
|
|
178
|
+
"cursor",
|
|
179
|
+
"cursor-selection",
|
|
180
|
+
"customer",
|
|
181
|
+
"customer-function",
|
|
182
|
+
"dangerous",
|
|
183
|
+
"data",
|
|
184
|
+
"database",
|
|
185
|
+
"datainfo",
|
|
186
|
+
"dataset",
|
|
187
|
+
"date",
|
|
188
|
+
"dats_add_days",
|
|
189
|
+
"dats_add_months",
|
|
190
|
+
"dats_days_between",
|
|
191
|
+
"dats_is_valid",
|
|
192
|
+
"daylight",
|
|
193
|
+
"dd/mm/yy",
|
|
194
|
+
"dd/mm/yyyy",
|
|
195
|
+
"ddmmyy",
|
|
196
|
+
"deallocate",
|
|
197
|
+
"decimal_shift",
|
|
198
|
+
"decimals",
|
|
199
|
+
"declarations",
|
|
200
|
+
"deep",
|
|
201
|
+
"default",
|
|
202
|
+
"deferred",
|
|
203
|
+
"define",
|
|
204
|
+
"defining",
|
|
205
|
+
"definition",
|
|
206
|
+
"delete",
|
|
207
|
+
"deleting",
|
|
208
|
+
"demand",
|
|
209
|
+
"department",
|
|
210
|
+
"descending",
|
|
211
|
+
"describe",
|
|
212
|
+
"destination",
|
|
213
|
+
"detail",
|
|
214
|
+
"dialog",
|
|
215
|
+
"directory",
|
|
216
|
+
"disconnect",
|
|
217
|
+
"display",
|
|
218
|
+
"display-mode",
|
|
219
|
+
"distinct",
|
|
220
|
+
"divide",
|
|
221
|
+
"divide-corresponding",
|
|
222
|
+
"division",
|
|
223
|
+
"do",
|
|
224
|
+
"dummy",
|
|
225
|
+
"duplicate",
|
|
226
|
+
"duplicates",
|
|
227
|
+
"duration",
|
|
228
|
+
"during",
|
|
229
|
+
"dynamic",
|
|
230
|
+
"dynpro",
|
|
231
|
+
"edit",
|
|
232
|
+
"editor-call",
|
|
233
|
+
"else",
|
|
234
|
+
"elseif",
|
|
235
|
+
"empty",
|
|
236
|
+
"enabled",
|
|
237
|
+
"enabling",
|
|
238
|
+
"encoding",
|
|
239
|
+
"end",
|
|
240
|
+
"endat",
|
|
241
|
+
"endcase",
|
|
242
|
+
"endcatch",
|
|
243
|
+
"endchain",
|
|
244
|
+
"endclass",
|
|
245
|
+
"enddo",
|
|
246
|
+
"endenhancement",
|
|
247
|
+
"end-enhancement-section",
|
|
248
|
+
"endexec",
|
|
249
|
+
"endform",
|
|
250
|
+
"endfunction",
|
|
251
|
+
"endian",
|
|
252
|
+
"endif",
|
|
253
|
+
"ending",
|
|
254
|
+
"endinterface",
|
|
255
|
+
"end-lines",
|
|
256
|
+
"endloop",
|
|
257
|
+
"endmethod",
|
|
258
|
+
"endmodule",
|
|
259
|
+
"end-of-definition",
|
|
260
|
+
"end-of-editing",
|
|
261
|
+
"end-of-file",
|
|
262
|
+
"end-of-page",
|
|
263
|
+
"end-of-selection",
|
|
264
|
+
"endon",
|
|
265
|
+
"endprovide",
|
|
266
|
+
"endselect",
|
|
267
|
+
"end-test-injection",
|
|
268
|
+
"end-test-seam",
|
|
269
|
+
"endtry",
|
|
270
|
+
"endwhile",
|
|
271
|
+
"endwith",
|
|
272
|
+
"engineering",
|
|
273
|
+
"enhancement",
|
|
274
|
+
"enhancement-point",
|
|
275
|
+
"enhancements",
|
|
276
|
+
"enhancement-section",
|
|
277
|
+
"entries",
|
|
278
|
+
"entry",
|
|
279
|
+
"enum",
|
|
280
|
+
"environment",
|
|
281
|
+
"equiv",
|
|
282
|
+
"errormessage",
|
|
283
|
+
"errors",
|
|
284
|
+
"escaping",
|
|
285
|
+
"event",
|
|
286
|
+
"events",
|
|
287
|
+
"exact",
|
|
288
|
+
"except",
|
|
289
|
+
"exception",
|
|
290
|
+
"exceptions",
|
|
291
|
+
"exception-table",
|
|
292
|
+
"exclude",
|
|
293
|
+
"excluding",
|
|
294
|
+
"exec",
|
|
295
|
+
"execute",
|
|
296
|
+
"exists",
|
|
297
|
+
"exit",
|
|
298
|
+
"exit-command",
|
|
299
|
+
"expand",
|
|
300
|
+
"expanding",
|
|
301
|
+
"expiration",
|
|
302
|
+
"explicit",
|
|
303
|
+
"exponent",
|
|
304
|
+
"export",
|
|
305
|
+
"exporting",
|
|
306
|
+
"extend",
|
|
307
|
+
"extended",
|
|
308
|
+
"extension",
|
|
309
|
+
"extract",
|
|
310
|
+
"fail",
|
|
311
|
+
"fetch",
|
|
312
|
+
"field",
|
|
313
|
+
"field-groups",
|
|
314
|
+
"fields",
|
|
315
|
+
"field-symbol",
|
|
316
|
+
"field-symbols",
|
|
317
|
+
"file",
|
|
318
|
+
"filter",
|
|
319
|
+
"filters",
|
|
320
|
+
"filter-table",
|
|
321
|
+
"final",
|
|
322
|
+
"find",
|
|
323
|
+
"first",
|
|
324
|
+
"first-line",
|
|
325
|
+
"fixed-point",
|
|
326
|
+
"fkeq",
|
|
327
|
+
"fkge",
|
|
328
|
+
"flush",
|
|
329
|
+
"font",
|
|
330
|
+
"for",
|
|
331
|
+
"form",
|
|
332
|
+
"format",
|
|
333
|
+
"forward",
|
|
334
|
+
"found",
|
|
335
|
+
"frame",
|
|
336
|
+
"frames",
|
|
337
|
+
"free",
|
|
338
|
+
"friends",
|
|
339
|
+
"from",
|
|
340
|
+
"function",
|
|
341
|
+
"functionality",
|
|
342
|
+
"function-pool",
|
|
343
|
+
"further",
|
|
344
|
+
"gaps",
|
|
345
|
+
"generate",
|
|
346
|
+
"get",
|
|
347
|
+
"giving",
|
|
348
|
+
"gkeq",
|
|
349
|
+
"gkge",
|
|
350
|
+
"global",
|
|
351
|
+
"grant",
|
|
352
|
+
"green",
|
|
353
|
+
"group",
|
|
354
|
+
"groups",
|
|
355
|
+
"handle",
|
|
356
|
+
"handler",
|
|
357
|
+
"harmless",
|
|
358
|
+
"hashed",
|
|
359
|
+
"having",
|
|
360
|
+
"hdb",
|
|
361
|
+
"header",
|
|
362
|
+
"headers",
|
|
363
|
+
"heading",
|
|
364
|
+
"head-lines",
|
|
365
|
+
"help-id",
|
|
366
|
+
"help-request",
|
|
367
|
+
"hextobin",
|
|
368
|
+
"hide",
|
|
369
|
+
"high",
|
|
370
|
+
"hint",
|
|
371
|
+
"hold",
|
|
372
|
+
"hotspot",
|
|
373
|
+
"icon",
|
|
374
|
+
"id",
|
|
375
|
+
"identification",
|
|
376
|
+
"identifier",
|
|
377
|
+
"ids",
|
|
378
|
+
"if",
|
|
379
|
+
"ignore",
|
|
380
|
+
"ignoring",
|
|
381
|
+
"immediately",
|
|
382
|
+
"implementation",
|
|
383
|
+
"implementations",
|
|
384
|
+
"implemented",
|
|
385
|
+
"implicit",
|
|
386
|
+
"import",
|
|
387
|
+
"importing",
|
|
388
|
+
"in",
|
|
389
|
+
"inactive",
|
|
390
|
+
"incl",
|
|
391
|
+
"include",
|
|
392
|
+
"includes",
|
|
393
|
+
"including",
|
|
394
|
+
"increment",
|
|
395
|
+
"index",
|
|
396
|
+
"index-line",
|
|
397
|
+
"infotypes",
|
|
398
|
+
"inheriting",
|
|
399
|
+
"init",
|
|
400
|
+
"initial",
|
|
401
|
+
"initialization",
|
|
402
|
+
"inner",
|
|
403
|
+
"inout",
|
|
404
|
+
"input",
|
|
405
|
+
"insert",
|
|
406
|
+
"instance",
|
|
407
|
+
"instances",
|
|
408
|
+
"instr",
|
|
409
|
+
"intensified",
|
|
410
|
+
"interface",
|
|
411
|
+
"interface-pool",
|
|
412
|
+
"interfaces",
|
|
413
|
+
"internal",
|
|
414
|
+
"intervals",
|
|
415
|
+
"into",
|
|
416
|
+
"inverse",
|
|
417
|
+
"inverted-date",
|
|
418
|
+
"is",
|
|
419
|
+
"iso",
|
|
420
|
+
"job",
|
|
421
|
+
"join",
|
|
422
|
+
"keep",
|
|
423
|
+
"keeping",
|
|
424
|
+
"kernel",
|
|
425
|
+
"key",
|
|
426
|
+
"keys",
|
|
427
|
+
"keywords",
|
|
428
|
+
"kind",
|
|
429
|
+
"language",
|
|
430
|
+
"last",
|
|
431
|
+
"late",
|
|
432
|
+
"layout",
|
|
433
|
+
"leading",
|
|
434
|
+
"leave",
|
|
435
|
+
"left",
|
|
436
|
+
"left-justified",
|
|
437
|
+
"leftplus",
|
|
438
|
+
"leftspace",
|
|
439
|
+
"legacy",
|
|
440
|
+
"length",
|
|
441
|
+
"let",
|
|
442
|
+
"level",
|
|
443
|
+
"levels",
|
|
444
|
+
"like",
|
|
445
|
+
"line",
|
|
446
|
+
"lines",
|
|
447
|
+
"line-count",
|
|
448
|
+
"linefeed",
|
|
449
|
+
"line-selection",
|
|
450
|
+
"line-size",
|
|
451
|
+
"list",
|
|
452
|
+
"listbox",
|
|
453
|
+
"list-processing",
|
|
454
|
+
"little",
|
|
455
|
+
"llang",
|
|
456
|
+
"load",
|
|
457
|
+
"load-of-program",
|
|
458
|
+
"lob",
|
|
459
|
+
"local",
|
|
460
|
+
"locale",
|
|
461
|
+
"locator",
|
|
462
|
+
"logfile",
|
|
463
|
+
"logical",
|
|
464
|
+
"log-point",
|
|
465
|
+
"long",
|
|
466
|
+
"loop",
|
|
467
|
+
"low",
|
|
468
|
+
"lower",
|
|
469
|
+
"lpad",
|
|
470
|
+
"lpi",
|
|
471
|
+
"ltrim",
|
|
472
|
+
"mail",
|
|
473
|
+
"main",
|
|
474
|
+
"major-id",
|
|
475
|
+
"mapping",
|
|
476
|
+
"margin",
|
|
477
|
+
"mark",
|
|
478
|
+
"mask",
|
|
479
|
+
"match",
|
|
480
|
+
"matchcode",
|
|
481
|
+
"max",
|
|
482
|
+
"maximum",
|
|
483
|
+
"medium",
|
|
484
|
+
"members",
|
|
485
|
+
"memory",
|
|
486
|
+
"mesh",
|
|
487
|
+
"message",
|
|
488
|
+
"message-id",
|
|
489
|
+
"messages",
|
|
490
|
+
"messaging",
|
|
491
|
+
"method",
|
|
492
|
+
"methods",
|
|
493
|
+
"min",
|
|
494
|
+
"minimum",
|
|
495
|
+
"minor-id",
|
|
496
|
+
"mm/dd/yy",
|
|
497
|
+
"mm/dd/yyyy",
|
|
498
|
+
"mmddyy",
|
|
499
|
+
"mode",
|
|
500
|
+
"modif",
|
|
501
|
+
"modifier",
|
|
502
|
+
"modify",
|
|
503
|
+
"module",
|
|
504
|
+
"move",
|
|
505
|
+
"move-corresponding",
|
|
506
|
+
"multiply",
|
|
507
|
+
"multiply-corresponding",
|
|
508
|
+
"name",
|
|
509
|
+
"nametab",
|
|
510
|
+
"native",
|
|
511
|
+
"nested",
|
|
512
|
+
"nesting",
|
|
513
|
+
"new",
|
|
514
|
+
"new-line",
|
|
515
|
+
"new-page",
|
|
516
|
+
"new-section",
|
|
517
|
+
"next",
|
|
518
|
+
"no",
|
|
519
|
+
"no-display",
|
|
520
|
+
"no-extension",
|
|
521
|
+
"no-gap",
|
|
522
|
+
"no-gaps",
|
|
523
|
+
"no-grouping",
|
|
524
|
+
"no-heading",
|
|
525
|
+
"no-scrolling",
|
|
526
|
+
"no-sign",
|
|
527
|
+
"no-title",
|
|
528
|
+
"no-topofpage",
|
|
529
|
+
"no-zero",
|
|
530
|
+
"node",
|
|
531
|
+
"nodes",
|
|
532
|
+
"non-unicode",
|
|
533
|
+
"non-unique",
|
|
534
|
+
"not",
|
|
535
|
+
"null",
|
|
536
|
+
"number",
|
|
537
|
+
"object",
|
|
538
|
+
"objects",
|
|
539
|
+
"obligatory",
|
|
540
|
+
"occurrence",
|
|
541
|
+
"occurrences",
|
|
542
|
+
"occurs",
|
|
543
|
+
"of",
|
|
544
|
+
"off",
|
|
545
|
+
"offset",
|
|
546
|
+
"ole",
|
|
547
|
+
"on",
|
|
548
|
+
"only",
|
|
549
|
+
"open",
|
|
550
|
+
"option",
|
|
551
|
+
"optional",
|
|
552
|
+
"options",
|
|
553
|
+
"or",
|
|
554
|
+
"order",
|
|
555
|
+
"other",
|
|
556
|
+
"others",
|
|
557
|
+
"out",
|
|
558
|
+
"outer",
|
|
559
|
+
"output",
|
|
560
|
+
"output-length",
|
|
561
|
+
"overflow",
|
|
562
|
+
"overlay",
|
|
563
|
+
"pack",
|
|
564
|
+
"package",
|
|
565
|
+
"pad",
|
|
566
|
+
"padding",
|
|
567
|
+
"page",
|
|
568
|
+
"pages",
|
|
569
|
+
"parameter",
|
|
570
|
+
"parameters",
|
|
571
|
+
"parameter-table",
|
|
572
|
+
"part",
|
|
573
|
+
"partially",
|
|
574
|
+
"pattern",
|
|
575
|
+
"percentage",
|
|
576
|
+
"perform",
|
|
577
|
+
"performing",
|
|
578
|
+
"person",
|
|
579
|
+
"pf1",
|
|
580
|
+
"pf10",
|
|
581
|
+
"pf11",
|
|
582
|
+
"pf12",
|
|
583
|
+
"pf13",
|
|
584
|
+
"pf14",
|
|
585
|
+
"pf15",
|
|
586
|
+
"pf2",
|
|
587
|
+
"pf3",
|
|
588
|
+
"pf4",
|
|
589
|
+
"pf5",
|
|
590
|
+
"pf6",
|
|
591
|
+
"pf7",
|
|
592
|
+
"pf8",
|
|
593
|
+
"pf9",
|
|
594
|
+
"pf-status",
|
|
595
|
+
"pink",
|
|
596
|
+
"places",
|
|
597
|
+
"pool",
|
|
598
|
+
"pos_high",
|
|
599
|
+
"pos_low",
|
|
600
|
+
"position",
|
|
601
|
+
"pragmas",
|
|
602
|
+
"precompiled",
|
|
603
|
+
"preferred",
|
|
604
|
+
"preserving",
|
|
605
|
+
"primary",
|
|
606
|
+
"print",
|
|
607
|
+
"print-control",
|
|
608
|
+
"priority",
|
|
609
|
+
"private",
|
|
610
|
+
"procedure",
|
|
611
|
+
"process",
|
|
612
|
+
"program",
|
|
613
|
+
"property",
|
|
614
|
+
"protected",
|
|
615
|
+
"provide",
|
|
616
|
+
"public",
|
|
617
|
+
"push",
|
|
618
|
+
"pushbutton",
|
|
619
|
+
"put",
|
|
620
|
+
"queue-only",
|
|
621
|
+
"quickinfo",
|
|
622
|
+
"radiobutton",
|
|
623
|
+
"raise",
|
|
624
|
+
"raising",
|
|
625
|
+
"range",
|
|
626
|
+
"ranges",
|
|
627
|
+
"read",
|
|
628
|
+
"reader",
|
|
629
|
+
"read-only",
|
|
630
|
+
"receive",
|
|
631
|
+
"received",
|
|
632
|
+
"receiver",
|
|
633
|
+
"receiving",
|
|
634
|
+
"red",
|
|
635
|
+
"redefinition",
|
|
636
|
+
"reduce",
|
|
637
|
+
"reduced",
|
|
638
|
+
"ref",
|
|
639
|
+
"reference",
|
|
640
|
+
"refresh",
|
|
641
|
+
"regex",
|
|
642
|
+
"reject",
|
|
643
|
+
"remote",
|
|
644
|
+
"renaming",
|
|
645
|
+
"replace",
|
|
646
|
+
"replacement",
|
|
647
|
+
"replacing",
|
|
648
|
+
"report",
|
|
649
|
+
"request",
|
|
650
|
+
"requested",
|
|
651
|
+
"reserve",
|
|
652
|
+
"reset",
|
|
653
|
+
"resolution",
|
|
654
|
+
"respecting",
|
|
655
|
+
"responsible",
|
|
656
|
+
"result",
|
|
657
|
+
"results",
|
|
658
|
+
"resumable",
|
|
659
|
+
"resume",
|
|
660
|
+
"retry",
|
|
661
|
+
"return",
|
|
662
|
+
"returncode",
|
|
663
|
+
"returning",
|
|
664
|
+
"returns",
|
|
665
|
+
"right",
|
|
666
|
+
"right-justified",
|
|
667
|
+
"rightplus",
|
|
668
|
+
"rightspace",
|
|
669
|
+
"risk",
|
|
670
|
+
"rmc_communication_failure",
|
|
671
|
+
"rmc_invalid_status",
|
|
672
|
+
"rmc_system_failure",
|
|
673
|
+
"role",
|
|
674
|
+
"rollback",
|
|
675
|
+
"rows",
|
|
676
|
+
"rpad",
|
|
677
|
+
"rtrim",
|
|
678
|
+
"run",
|
|
679
|
+
"sap",
|
|
680
|
+
"sap-spool",
|
|
681
|
+
"saving",
|
|
682
|
+
"scale_preserving",
|
|
683
|
+
"scale_preserving_scientific",
|
|
684
|
+
"scan",
|
|
685
|
+
"scientific",
|
|
686
|
+
"scientific_with_leading_zero",
|
|
687
|
+
"scroll",
|
|
688
|
+
"scroll-boundary",
|
|
689
|
+
"scrolling",
|
|
690
|
+
"search",
|
|
691
|
+
"secondary",
|
|
692
|
+
"seconds",
|
|
693
|
+
"section",
|
|
694
|
+
"select",
|
|
695
|
+
"selection",
|
|
696
|
+
"selections",
|
|
697
|
+
"selection-screen",
|
|
698
|
+
"selection-set",
|
|
699
|
+
"selection-sets",
|
|
700
|
+
"selection-table",
|
|
701
|
+
"select-options",
|
|
702
|
+
"send",
|
|
703
|
+
"separate",
|
|
704
|
+
"separated",
|
|
705
|
+
"set",
|
|
706
|
+
"shared",
|
|
707
|
+
"shift",
|
|
708
|
+
"short",
|
|
709
|
+
"shortdump-id",
|
|
710
|
+
"sign_as_postfix",
|
|
711
|
+
"single",
|
|
712
|
+
"size",
|
|
713
|
+
"skip",
|
|
714
|
+
"skipping",
|
|
715
|
+
"smart",
|
|
716
|
+
"some",
|
|
717
|
+
"sort",
|
|
718
|
+
"sortable",
|
|
719
|
+
"sorted",
|
|
720
|
+
"source",
|
|
721
|
+
"specified",
|
|
722
|
+
"split",
|
|
723
|
+
"spool",
|
|
724
|
+
"spots",
|
|
725
|
+
"sql",
|
|
726
|
+
"sqlscript",
|
|
727
|
+
"stable",
|
|
728
|
+
"stamp",
|
|
729
|
+
"standard",
|
|
730
|
+
"starting",
|
|
731
|
+
"start-of-editing",
|
|
732
|
+
"start-of-selection",
|
|
733
|
+
"state",
|
|
734
|
+
"statement",
|
|
735
|
+
"statements",
|
|
736
|
+
"static",
|
|
737
|
+
"statics",
|
|
738
|
+
"statusinfo",
|
|
739
|
+
"step-loop",
|
|
740
|
+
"stop",
|
|
741
|
+
"structure",
|
|
742
|
+
"structures",
|
|
743
|
+
"style",
|
|
744
|
+
"subkey",
|
|
745
|
+
"submatches",
|
|
746
|
+
"submit",
|
|
747
|
+
"subroutine",
|
|
748
|
+
"subscreen",
|
|
749
|
+
"subtract",
|
|
750
|
+
"subtract-corresponding",
|
|
751
|
+
"suffix",
|
|
752
|
+
"sum",
|
|
753
|
+
"summary",
|
|
754
|
+
"summing",
|
|
755
|
+
"supplied",
|
|
756
|
+
"supply",
|
|
757
|
+
"suppress",
|
|
758
|
+
"switch",
|
|
759
|
+
"switchstates",
|
|
760
|
+
"symbol",
|
|
761
|
+
"syncpoints",
|
|
762
|
+
"syntax",
|
|
763
|
+
"syntax-check",
|
|
764
|
+
"syntax-trace",
|
|
765
|
+
"system-call",
|
|
766
|
+
"system-exceptions",
|
|
767
|
+
"system-exit",
|
|
768
|
+
"tab",
|
|
769
|
+
"tabbed",
|
|
770
|
+
"table",
|
|
771
|
+
"tables",
|
|
772
|
+
"tableview",
|
|
773
|
+
"tabstrip",
|
|
774
|
+
"target",
|
|
775
|
+
"task",
|
|
776
|
+
"tasks",
|
|
777
|
+
"test",
|
|
778
|
+
"testing",
|
|
779
|
+
"test-injection",
|
|
780
|
+
"test-seam",
|
|
781
|
+
"text",
|
|
782
|
+
"textpool",
|
|
783
|
+
"then",
|
|
784
|
+
"throw",
|
|
785
|
+
"time",
|
|
786
|
+
"times",
|
|
787
|
+
"timestamp",
|
|
788
|
+
"timezone",
|
|
789
|
+
"tims_is_valid",
|
|
790
|
+
"title",
|
|
791
|
+
"titlebar",
|
|
792
|
+
"title-lines",
|
|
793
|
+
"to",
|
|
794
|
+
"tokenization",
|
|
795
|
+
"tokens",
|
|
796
|
+
"top-lines",
|
|
797
|
+
"top-of-page",
|
|
798
|
+
"trace-file",
|
|
799
|
+
"trace-table",
|
|
800
|
+
"trailing",
|
|
801
|
+
"transaction",
|
|
802
|
+
"transfer",
|
|
803
|
+
"transformation",
|
|
804
|
+
"translate",
|
|
805
|
+
"transporting",
|
|
806
|
+
"trmac",
|
|
807
|
+
"truncate",
|
|
808
|
+
"truncation",
|
|
809
|
+
"try",
|
|
810
|
+
"tstmp_add_seconds",
|
|
811
|
+
"tstmp_current_utctimestamp",
|
|
812
|
+
"tstmp_is_valid",
|
|
813
|
+
"tstmp_seconds_between",
|
|
814
|
+
"type",
|
|
815
|
+
"type-pool",
|
|
816
|
+
"type-pools",
|
|
817
|
+
"types",
|
|
818
|
+
"uline",
|
|
819
|
+
"unassign",
|
|
820
|
+
"under",
|
|
821
|
+
"unicode",
|
|
822
|
+
"union",
|
|
823
|
+
"unique",
|
|
824
|
+
"unit_conversion",
|
|
825
|
+
"unix",
|
|
826
|
+
"unpack",
|
|
827
|
+
"until",
|
|
828
|
+
"unwind",
|
|
829
|
+
"up",
|
|
830
|
+
"update",
|
|
831
|
+
"upper",
|
|
832
|
+
"user",
|
|
833
|
+
"user-command",
|
|
834
|
+
"using",
|
|
835
|
+
"utf-8",
|
|
836
|
+
"valid",
|
|
837
|
+
"value",
|
|
838
|
+
"value-request",
|
|
839
|
+
"values",
|
|
840
|
+
"vary",
|
|
841
|
+
"varying",
|
|
842
|
+
"verification-message",
|
|
843
|
+
"version",
|
|
844
|
+
"via",
|
|
845
|
+
"view",
|
|
846
|
+
"visible",
|
|
847
|
+
"wait",
|
|
848
|
+
"warning",
|
|
849
|
+
"when",
|
|
850
|
+
"whenever",
|
|
851
|
+
"where",
|
|
852
|
+
"while",
|
|
853
|
+
"width",
|
|
854
|
+
"window",
|
|
855
|
+
"windows",
|
|
856
|
+
"with",
|
|
857
|
+
"with-heading",
|
|
858
|
+
"without",
|
|
859
|
+
"with-title",
|
|
860
|
+
"word",
|
|
861
|
+
"work",
|
|
862
|
+
"write",
|
|
863
|
+
"writer",
|
|
864
|
+
"xml",
|
|
865
|
+
"xsd",
|
|
866
|
+
"yellow",
|
|
867
|
+
"yes",
|
|
868
|
+
"yymmdd",
|
|
869
|
+
"zero",
|
|
870
|
+
"zone",
|
|
871
|
+
"abap_system_timezone",
|
|
872
|
+
"abap_user_timezone",
|
|
873
|
+
"access",
|
|
874
|
+
"action",
|
|
875
|
+
"adabas",
|
|
876
|
+
"adjust_numbers",
|
|
877
|
+
"allow_precision_loss",
|
|
878
|
+
"allowed",
|
|
879
|
+
"amdp",
|
|
880
|
+
"applicationuser",
|
|
881
|
+
"as_geo_json",
|
|
882
|
+
"as400",
|
|
883
|
+
"associations",
|
|
884
|
+
"balance",
|
|
885
|
+
"behavior",
|
|
886
|
+
"breakup",
|
|
887
|
+
"bulk",
|
|
888
|
+
"cds",
|
|
889
|
+
"cds_client",
|
|
890
|
+
"check_before_save",
|
|
891
|
+
"child",
|
|
892
|
+
"clients",
|
|
893
|
+
"corr",
|
|
894
|
+
"corr_spearman",
|
|
895
|
+
"cross",
|
|
896
|
+
"cycles",
|
|
897
|
+
"datn_add_days",
|
|
898
|
+
"datn_add_months",
|
|
899
|
+
"datn_days_between",
|
|
900
|
+
"dats_from_datn",
|
|
901
|
+
"dats_tims_to_tstmp",
|
|
902
|
+
"dats_to_datn",
|
|
903
|
+
"db2",
|
|
904
|
+
"db6",
|
|
905
|
+
"ddl",
|
|
906
|
+
"dense_rank",
|
|
907
|
+
"depth",
|
|
908
|
+
"deterministic",
|
|
909
|
+
"discarding",
|
|
910
|
+
"entities",
|
|
911
|
+
"entity",
|
|
912
|
+
"error",
|
|
913
|
+
"failed",
|
|
914
|
+
"finalize",
|
|
915
|
+
"first_value",
|
|
916
|
+
"fltp_to_dec",
|
|
917
|
+
"following",
|
|
918
|
+
"fractional",
|
|
919
|
+
"full",
|
|
920
|
+
"graph",
|
|
921
|
+
"grouping",
|
|
922
|
+
"hierarchy",
|
|
923
|
+
"hierarchy_ancestors",
|
|
924
|
+
"hierarchy_ancestors_aggregate",
|
|
925
|
+
"hierarchy_descendants",
|
|
926
|
+
"hierarchy_descendants_aggregate",
|
|
927
|
+
"hierarchy_siblings",
|
|
928
|
+
"incremental",
|
|
929
|
+
"indicators",
|
|
930
|
+
"lag",
|
|
931
|
+
"last_value",
|
|
932
|
+
"lead",
|
|
933
|
+
"leaves",
|
|
934
|
+
"like_regexpr",
|
|
935
|
+
"link",
|
|
936
|
+
"locale_sap",
|
|
937
|
+
"lock",
|
|
938
|
+
"locks",
|
|
939
|
+
"many",
|
|
940
|
+
"mapped",
|
|
941
|
+
"matched",
|
|
942
|
+
"measures",
|
|
943
|
+
"median",
|
|
944
|
+
"mssqlnt",
|
|
945
|
+
"multiple",
|
|
946
|
+
"nodetype",
|
|
947
|
+
"ntile",
|
|
948
|
+
"nulls",
|
|
949
|
+
"occurrences_regexpr",
|
|
950
|
+
"one",
|
|
951
|
+
"operations",
|
|
952
|
+
"oracle",
|
|
953
|
+
"orphans",
|
|
954
|
+
"over",
|
|
955
|
+
"parent",
|
|
956
|
+
"parents",
|
|
957
|
+
"partition",
|
|
958
|
+
"pcre",
|
|
959
|
+
"period",
|
|
960
|
+
"pfcg_mapping",
|
|
961
|
+
"preceding",
|
|
962
|
+
"privileged",
|
|
963
|
+
"product",
|
|
964
|
+
"projection",
|
|
965
|
+
"rank",
|
|
966
|
+
"redirected",
|
|
967
|
+
"replace_regexpr",
|
|
968
|
+
"reported",
|
|
969
|
+
"response",
|
|
970
|
+
"responses",
|
|
971
|
+
"root",
|
|
972
|
+
"row",
|
|
973
|
+
"row_number",
|
|
974
|
+
"sap_system_date",
|
|
975
|
+
"save",
|
|
976
|
+
"schema",
|
|
977
|
+
"session",
|
|
978
|
+
"sets",
|
|
979
|
+
"shortdump",
|
|
980
|
+
"siblings",
|
|
981
|
+
"spantree",
|
|
982
|
+
"start",
|
|
983
|
+
"stddev",
|
|
984
|
+
"string_agg",
|
|
985
|
+
"subtotal",
|
|
986
|
+
"sybase",
|
|
987
|
+
"tims_from_timn",
|
|
988
|
+
"tims_to_timn",
|
|
989
|
+
"to_blob",
|
|
990
|
+
"to_clob",
|
|
991
|
+
"total",
|
|
992
|
+
"trace-entry",
|
|
993
|
+
"tstmp_to_dats",
|
|
994
|
+
"tstmp_to_dst",
|
|
995
|
+
"tstmp_to_tims",
|
|
996
|
+
"tstmpl_from_utcl",
|
|
997
|
+
"tstmpl_to_utcl",
|
|
998
|
+
"unbounded",
|
|
999
|
+
"utcl_add_seconds",
|
|
1000
|
+
"utcl_current",
|
|
1001
|
+
"utcl_seconds_between",
|
|
1002
|
+
"uuid",
|
|
1003
|
+
"var",
|
|
1004
|
+
"verbatim"
|
|
1005
|
+
],
|
|
1006
|
+
builtinFunctions: [
|
|
1007
|
+
"abs",
|
|
1008
|
+
"acos",
|
|
1009
|
+
"asin",
|
|
1010
|
+
"atan",
|
|
1011
|
+
"bit-set",
|
|
1012
|
+
"boolc",
|
|
1013
|
+
"boolx",
|
|
1014
|
+
"ceil",
|
|
1015
|
+
"char_off",
|
|
1016
|
+
"charlen",
|
|
1017
|
+
"cmax",
|
|
1018
|
+
"cmin",
|
|
1019
|
+
"concat_lines_of",
|
|
1020
|
+
"contains",
|
|
1021
|
+
"contains_any_not_of",
|
|
1022
|
+
"contains_any_of",
|
|
1023
|
+
"cos",
|
|
1024
|
+
"cosh",
|
|
1025
|
+
"count",
|
|
1026
|
+
"count_any_not_of",
|
|
1027
|
+
"count_any_of",
|
|
1028
|
+
"dbmaxlen",
|
|
1029
|
+
"distance",
|
|
1030
|
+
"escape",
|
|
1031
|
+
"exp",
|
|
1032
|
+
"find_any_not_of",
|
|
1033
|
+
"find_any_of",
|
|
1034
|
+
"find_end",
|
|
1035
|
+
"floor",
|
|
1036
|
+
"frac",
|
|
1037
|
+
"from_mixed",
|
|
1038
|
+
"ipow",
|
|
1039
|
+
"line_exists",
|
|
1040
|
+
"line_index",
|
|
1041
|
+
"log",
|
|
1042
|
+
"log10",
|
|
1043
|
+
"matches",
|
|
1044
|
+
"nmax",
|
|
1045
|
+
"nmin",
|
|
1046
|
+
"numofchar",
|
|
1047
|
+
"repeat",
|
|
1048
|
+
"rescale",
|
|
1049
|
+
"reverse",
|
|
1050
|
+
"round",
|
|
1051
|
+
"segment",
|
|
1052
|
+
"shift_left",
|
|
1053
|
+
"shift_right",
|
|
1054
|
+
"sign",
|
|
1055
|
+
"sin",
|
|
1056
|
+
"sinh",
|
|
1057
|
+
"sqrt",
|
|
1058
|
+
"strlen",
|
|
1059
|
+
"substring",
|
|
1060
|
+
"substring_after",
|
|
1061
|
+
"substring_before",
|
|
1062
|
+
"substring_from",
|
|
1063
|
+
"substring_to",
|
|
1064
|
+
"tan",
|
|
1065
|
+
"tanh",
|
|
1066
|
+
"to_lower",
|
|
1067
|
+
"to_mixed",
|
|
1068
|
+
"to_upper",
|
|
1069
|
+
"trunc",
|
|
1070
|
+
"utclong_add",
|
|
1071
|
+
"utclong_current",
|
|
1072
|
+
"utclong_diff",
|
|
1073
|
+
"xsdbool",
|
|
1074
|
+
"xstrlen"
|
|
1075
|
+
],
|
|
1076
|
+
typeKeywords: [
|
|
1077
|
+
"b",
|
|
1078
|
+
"c",
|
|
1079
|
+
"d",
|
|
1080
|
+
"decfloat16",
|
|
1081
|
+
"decfloat34",
|
|
1082
|
+
"f",
|
|
1083
|
+
"i",
|
|
1084
|
+
"int8",
|
|
1085
|
+
"n",
|
|
1086
|
+
"p",
|
|
1087
|
+
"s",
|
|
1088
|
+
"string",
|
|
1089
|
+
"t",
|
|
1090
|
+
"utclong",
|
|
1091
|
+
"x",
|
|
1092
|
+
"xstring",
|
|
1093
|
+
"any",
|
|
1094
|
+
"clike",
|
|
1095
|
+
"csequence",
|
|
1096
|
+
"decfloat",
|
|
1097
|
+
"numeric",
|
|
1098
|
+
"simple",
|
|
1099
|
+
"xsequence",
|
|
1100
|
+
"accp",
|
|
1101
|
+
"char",
|
|
1102
|
+
"clnt",
|
|
1103
|
+
"cuky",
|
|
1104
|
+
"curr",
|
|
1105
|
+
"datn",
|
|
1106
|
+
"dats",
|
|
1107
|
+
"d16d",
|
|
1108
|
+
"d16n",
|
|
1109
|
+
"d16r",
|
|
1110
|
+
"d34d",
|
|
1111
|
+
"d34n",
|
|
1112
|
+
"d34r",
|
|
1113
|
+
"dec",
|
|
1114
|
+
"df16_dec",
|
|
1115
|
+
"df16_raw",
|
|
1116
|
+
"df34_dec",
|
|
1117
|
+
"df34_raw",
|
|
1118
|
+
"fltp",
|
|
1119
|
+
"geom_ewkb",
|
|
1120
|
+
"int1",
|
|
1121
|
+
"int2",
|
|
1122
|
+
"int4",
|
|
1123
|
+
"lang",
|
|
1124
|
+
"lchr",
|
|
1125
|
+
"lraw",
|
|
1126
|
+
"numc",
|
|
1127
|
+
"quan",
|
|
1128
|
+
"raw",
|
|
1129
|
+
"rawstring",
|
|
1130
|
+
"sstring",
|
|
1131
|
+
"timn",
|
|
1132
|
+
"tims",
|
|
1133
|
+
"unit",
|
|
1134
|
+
"utcl",
|
|
1135
|
+
"df16_scl",
|
|
1136
|
+
"df34_scl",
|
|
1137
|
+
"prec",
|
|
1138
|
+
"varc",
|
|
1139
|
+
"abap_bool",
|
|
1140
|
+
"abap_false",
|
|
1141
|
+
"abap_true",
|
|
1142
|
+
"abap_undefined",
|
|
1143
|
+
"me",
|
|
1144
|
+
"screen",
|
|
1145
|
+
"space",
|
|
1146
|
+
"super",
|
|
1147
|
+
"sy",
|
|
1148
|
+
"syst",
|
|
1149
|
+
"table_line",
|
|
1150
|
+
"*sys*"
|
|
1151
|
+
],
|
|
1152
|
+
builtinMethods: ["class_constructor", "constructor"],
|
|
1153
|
+
derivedTypes: [
|
|
1154
|
+
"%CID",
|
|
1155
|
+
"%CID_REF",
|
|
1156
|
+
"%CONTROL",
|
|
1157
|
+
"%DATA",
|
|
1158
|
+
"%ELEMENT",
|
|
1159
|
+
"%FAIL",
|
|
1160
|
+
"%KEY",
|
|
1161
|
+
"%MSG",
|
|
1162
|
+
"%PARAM",
|
|
1163
|
+
"%PID",
|
|
1164
|
+
"%PID_ASSOC",
|
|
1165
|
+
"%PID_PARENT",
|
|
1166
|
+
"%_HINTS"
|
|
1167
|
+
],
|
|
1168
|
+
cdsLanguage: [
|
|
1169
|
+
"@AbapAnnotation",
|
|
1170
|
+
"@AbapCatalog",
|
|
1171
|
+
"@AccessControl",
|
|
1172
|
+
"@API",
|
|
1173
|
+
"@ClientDependent",
|
|
1174
|
+
"@ClientHandling",
|
|
1175
|
+
"@CompatibilityContract",
|
|
1176
|
+
"@DataAging",
|
|
1177
|
+
"@EndUserText",
|
|
1178
|
+
"@Environment",
|
|
1179
|
+
"@LanguageDependency",
|
|
1180
|
+
"@MappingRole",
|
|
1181
|
+
"@Metadata",
|
|
1182
|
+
"@MetadataExtension",
|
|
1183
|
+
"@ObjectModel",
|
|
1184
|
+
"@Scope",
|
|
1185
|
+
"@Semantics",
|
|
1186
|
+
"$EXTENSION",
|
|
1187
|
+
"$SELF"
|
|
1188
|
+
],
|
|
1189
|
+
selectors: ["->", "->*", "=>", "~", "~*"],
|
|
1190
|
+
operators: [
|
|
1191
|
+
" +",
|
|
1192
|
+
" -",
|
|
1193
|
+
"/",
|
|
1194
|
+
"*",
|
|
1195
|
+
"**",
|
|
1196
|
+
"div",
|
|
1197
|
+
"mod",
|
|
1198
|
+
"=",
|
|
1199
|
+
"#",
|
|
1200
|
+
"@",
|
|
1201
|
+
"+=",
|
|
1202
|
+
"-=",
|
|
1203
|
+
"*=",
|
|
1204
|
+
"/=",
|
|
1205
|
+
"**=",
|
|
1206
|
+
"&&=",
|
|
1207
|
+
"?=",
|
|
1208
|
+
"&",
|
|
1209
|
+
"&&",
|
|
1210
|
+
"bit-and",
|
|
1211
|
+
"bit-not",
|
|
1212
|
+
"bit-or",
|
|
1213
|
+
"bit-xor",
|
|
1214
|
+
"m",
|
|
1215
|
+
"o",
|
|
1216
|
+
"z",
|
|
1217
|
+
"<",
|
|
1218
|
+
" >",
|
|
1219
|
+
"<=",
|
|
1220
|
+
">=",
|
|
1221
|
+
"<>",
|
|
1222
|
+
"><",
|
|
1223
|
+
"=<",
|
|
1224
|
+
"=>",
|
|
1225
|
+
"bt",
|
|
1226
|
+
"byte-ca",
|
|
1227
|
+
"byte-cn",
|
|
1228
|
+
"byte-co",
|
|
1229
|
+
"byte-cs",
|
|
1230
|
+
"byte-na",
|
|
1231
|
+
"byte-ns",
|
|
1232
|
+
"ca",
|
|
1233
|
+
"cn",
|
|
1234
|
+
"co",
|
|
1235
|
+
"cp",
|
|
1236
|
+
"cs",
|
|
1237
|
+
"eq",
|
|
1238
|
+
"ge",
|
|
1239
|
+
"gt",
|
|
1240
|
+
"le",
|
|
1241
|
+
"lt",
|
|
1242
|
+
"na",
|
|
1243
|
+
"nb",
|
|
1244
|
+
"ne",
|
|
1245
|
+
"np",
|
|
1246
|
+
"ns",
|
|
1247
|
+
"*/",
|
|
1248
|
+
"*:",
|
|
1249
|
+
"--",
|
|
1250
|
+
"/*",
|
|
1251
|
+
"//"
|
|
1252
|
+
],
|
|
1253
|
+
symbols: /[=><!~?&+\-*\/\^%#@]+/,
|
|
1254
|
+
tokenizer: {
|
|
1255
|
+
root: [
|
|
1256
|
+
[
|
|
1257
|
+
/[a-z_\/$%@]([\w\/$%]|-(?!>))*/,
|
|
1258
|
+
{
|
|
1259
|
+
cases: {
|
|
1260
|
+
"@typeKeywords": "type",
|
|
1261
|
+
"@keywords": "keyword",
|
|
1262
|
+
"@cdsLanguage": "annotation",
|
|
1263
|
+
"@derivedTypes": "type",
|
|
1264
|
+
"@builtinFunctions": "type",
|
|
1265
|
+
"@builtinMethods": "type",
|
|
1266
|
+
"@operators": "key",
|
|
1267
|
+
"@default": "identifier"
|
|
1268
|
+
}
|
|
1269
|
+
}
|
|
1270
|
+
],
|
|
1271
|
+
[/<[\w]+>/, "identifier"],
|
|
1272
|
+
[/##[\w|_]+/, "comment"],
|
|
1273
|
+
{ include: "@whitespace" },
|
|
1274
|
+
[/[:,.]/, "delimiter"],
|
|
1275
|
+
[/[{}()\[\]]/, "@brackets"],
|
|
1276
|
+
[
|
|
1277
|
+
/@symbols/,
|
|
1278
|
+
{
|
|
1279
|
+
cases: {
|
|
1280
|
+
"@selectors": "tag",
|
|
1281
|
+
"@operators": "key",
|
|
1282
|
+
"@default": ""
|
|
1283
|
+
}
|
|
1284
|
+
}
|
|
1285
|
+
],
|
|
1286
|
+
[/'/, { token: "string", bracket: "@open", next: "@stringquote" }],
|
|
1287
|
+
[/`/, { token: "string", bracket: "@open", next: "@stringping" }],
|
|
1288
|
+
[/\|/, { token: "string", bracket: "@open", next: "@stringtemplate" }],
|
|
1289
|
+
[/\d+/, "number"]
|
|
1290
|
+
],
|
|
1291
|
+
stringtemplate: [
|
|
1292
|
+
[/[^\\\|]+/, "string"],
|
|
1293
|
+
[/\\\|/, "string"],
|
|
1294
|
+
[/\|/, { token: "string", bracket: "@close", next: "@pop" }]
|
|
1295
|
+
],
|
|
1296
|
+
stringping: [
|
|
1297
|
+
[/[^\\`]+/, "string"],
|
|
1298
|
+
[/`/, { token: "string", bracket: "@close", next: "@pop" }]
|
|
1299
|
+
],
|
|
1300
|
+
stringquote: [
|
|
1301
|
+
[/[^\\']+/, "string"],
|
|
1302
|
+
[/'/, { token: "string", bracket: "@close", next: "@pop" }]
|
|
1303
|
+
],
|
|
1304
|
+
whitespace: [
|
|
1305
|
+
[/[ \t\r\n]+/, ""],
|
|
1306
|
+
[/^\*.*$/, "comment"],
|
|
1307
|
+
[/\".*$/, "comment"]
|
|
1308
|
+
]
|
|
1309
|
+
}
|
|
1310
|
+
};
|
|
1311
|
+
export {
|
|
1312
|
+
e as conf,
|
|
1313
|
+
t as language
|
|
1314
|
+
};
|