@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.
Files changed (970) hide show
  1. package/README.md +778 -0
  2. package/components/index.ts +13 -0
  3. package/components/ui/components/Event/EventAttribute/EventAttribute.style.ts +11 -0
  4. package/components/ui/components/Event/EventAttribute/EventAttribute.ts +28 -0
  5. package/components/ui/components/Event/EventLabel/EventLabel.ts +19 -0
  6. package/components/ui/components/Event/EventValue/EventValue.ts +79 -0
  7. package/components/ui/components/ToastContainer/ToastContainer.ts +126 -0
  8. package/components/ui/components/advanced/AIChat/AIChat.helper.ts +22 -0
  9. package/components/ui/components/advanced/AIChat/AIChat.style.ts +52 -0
  10. package/components/ui/components/advanced/AIChat/AIChat.ts +143 -0
  11. package/components/ui/components/advanced/CodeEditor/CodeEditor.ts +489 -0
  12. package/components/ui/components/advanced/Collapse/Collapse.ts +86 -0
  13. package/components/ui/components/advanced/Collections/Collections.style.ts +21 -0
  14. package/components/ui/components/advanced/Collections/Collections.ts +125 -0
  15. package/components/ui/components/advanced/MicroApp/MicroApp.ts +98 -0
  16. package/components/ui/components/advanced/RefComponent/RefComponent.ts +86 -0
  17. package/components/ui/components/advanced/RichText/RichText.ts +98 -0
  18. package/components/ui/components/advanced/RichText/RichTextEditor.ts +536 -0
  19. package/components/ui/components/base/BaseElement/base-change-detection.ts +18 -0
  20. package/components/ui/components/base/BaseElement/calculateStyles.ts +31 -0
  21. package/components/ui/components/base/BaseElement/drag-events.helpers.ts +71 -0
  22. package/components/ui/components/base/BaseElement/execute-event.helpers.ts +45 -0
  23. package/components/ui/components/base/BaseElement/handler-component-error.ts +28 -0
  24. package/components/ui/components/base/BaseElement/input-handler.helpers.ts +358 -0
  25. package/components/ui/components/base/BaseElement/interactions.helpers.ts +14 -0
  26. package/components/ui/components/base/BaseElement.ts +711 -0
  27. package/components/ui/components/display/Badge/Badge.ts +61 -0
  28. package/components/ui/components/display/BoxModel/BoxModel.ts +372 -0
  29. package/components/ui/components/display/Code/Code.ts +103 -0
  30. package/components/ui/components/display/Divider/Divider.ts +98 -0
  31. package/components/ui/components/display/Icon/Icon.ts +60 -0
  32. package/components/ui/components/display/Image/Image.ts +75 -0
  33. package/components/ui/components/display/Table/Table.style.ts +0 -0
  34. package/components/ui/components/display/Table/Table.ts +178 -0
  35. package/components/ui/components/display/Tag/Tag.ts +49 -0
  36. package/components/ui/components/display/TextLabel/TextLabel.style.ts +21 -0
  37. package/components/ui/components/display/TextLabel/TextLabel.ts +72 -0
  38. package/components/ui/components/display/Video/Video.ts +46 -0
  39. package/components/ui/components/inputs/Button/Button.style.ts +0 -0
  40. package/components/ui/components/inputs/Button/Button.ts +79 -0
  41. package/components/ui/components/inputs/Checkbox/Checkbox.ts +76 -0
  42. package/components/ui/components/inputs/ColorPicker/colorpicker.ts +65 -0
  43. package/components/ui/components/inputs/DatePicker/DatePicker.ts +60 -0
  44. package/components/ui/components/inputs/Dropdown/Dropdown.ts +128 -0
  45. package/components/ui/components/inputs/FileUpload/FileUpload.ts +43 -0
  46. package/components/ui/components/inputs/IconButton/iconbutton.ts +54 -0
  47. package/components/ui/components/inputs/IconPicker/IconPicker.style.ts +109 -0
  48. package/components/ui/components/inputs/IconPicker/IconPicker.ts +61 -0
  49. package/components/ui/components/inputs/InsertDropdown/InsertDropdown.ts +75 -0
  50. package/components/ui/components/inputs/NumberInput/NumberInput.ts +84 -0
  51. package/components/ui/components/inputs/RadioButton/Radio-button.ts +69 -0
  52. package/components/ui/components/inputs/Select/Select.ts +65 -0
  53. package/components/ui/components/inputs/Slider/Slider.ts +63 -0
  54. package/components/ui/components/inputs/TextInput/TextInput.style.ts +0 -0
  55. package/components/ui/components/inputs/TextInput/TextInput.ts +153 -0
  56. package/components/ui/components/inputs/Textarea/Textarea.ts +110 -0
  57. package/components/ui/components/inputs/UsersDropdown/UsersDropdown.ts +30 -0
  58. package/components/ui/components/layout/Card/Card.ts +46 -0
  59. package/components/ui/components/layout/Containers/Container.style.ts +34 -0
  60. package/components/ui/components/layout/Containers/Container.ts +127 -0
  61. package/components/ui/components/layout/Panel/Panel.ts +156 -0
  62. package/components/ui/components/layout/Panel/index.ts +1 -0
  63. package/components/ui/components/layout/Tabs/Tabs.style.ts +5 -0
  64. package/components/ui/components/layout/Tabs/Tabs.ts +120 -0
  65. package/components/ui/components/navigation/EmbedURL/EmbedURL.ts +108 -0
  66. package/components/ui/components/navigation/Link/Link.ts +83 -0
  67. package/components/ui/components/navigation/Menu/Menu.ts +92 -0
  68. package/components/ui/components/runtime/MicroApp/MicroApp.ts +485 -0
  69. package/components/ui/components/runtime/MicroApp/MicroAppDataLoader.ts +240 -0
  70. package/components/ui/components/utility/Border/Border.ts +643 -0
  71. package/components/ui/components/utility/BoxShadow/BoxShadow.ts +253 -0
  72. package/components/ui/components/utility/Document/Document.ts +47 -0
  73. package/components/ui/components/utility/Export-Import/Export-Import.ts +122 -0
  74. package/components/ui/components/utility/Function/InvokeFunction.ts +63 -0
  75. package/components/ui/components/utility/Handlers/Handlers.style.ts +0 -0
  76. package/components/ui/components/utility/Handlers/Handlers.ts +200 -0
  77. package/components/ui/components/wrappers/ComponentTitle/ComponentTitle.ts +95 -0
  78. package/components/ui/components/wrappers/GenerikWrapper/DragWrapper/DragWrapper.style.ts +17 -0
  79. package/components/ui/components/wrappers/GenerikWrapper/DragWrapper/DragWrapper.ts +230 -0
  80. package/components/ui/components/wrappers/GenerikWrapper/GenerikWrapper.style.ts +135 -0
  81. package/components/ui/components/wrappers/GenerikWrapper/GenerikWrapper.ts +230 -0
  82. package/components/ui/components/wrappers/GenerikWrapper/QuickActionWrapper/QuickActionWrapper.style.ts +99 -0
  83. package/components/ui/components/wrappers/GenerikWrapper/QuickActionWrapper/QuickActionWrapper.ts +94 -0
  84. package/components/ui/components/wrappers/GenerikWrapper/ResizeWrapper/ResizeWrapper.style.ts +102 -0
  85. package/components/ui/components/wrappers/GenerikWrapper/ResizeWrapper/ResizeWrapper.ts +258 -0
  86. package/components/ui/components/wrappers/PreviewWrapper.ts +28 -0
  87. package/components/ui/components/wrappers/RectangleSelection/RectangleSelection.ts +154 -0
  88. package/components/ui/nuraly-ui/.storybook/main.ts +31 -0
  89. package/components/ui/nuraly-ui/.storybook/manager.ts +17 -0
  90. package/components/ui/nuraly-ui/.storybook/preview.ts +94 -0
  91. package/components/ui/nuraly-ui/LICENSE +28 -0
  92. package/components/ui/nuraly-ui/README.md +248 -0
  93. package/components/ui/nuraly-ui/examples/README.md +413 -0
  94. package/components/ui/nuraly-ui/packages/common/README.md +137 -0
  95. package/components/ui/nuraly-ui/packages/common/dist/constants/index.js +2 -0
  96. package/components/ui/nuraly-ui/packages/common/dist/constants.js +7 -0
  97. package/components/ui/nuraly-ui/packages/common/dist/controllers/index.js +2 -0
  98. package/components/ui/nuraly-ui/packages/common/dist/controllers.js +22 -0
  99. package/components/ui/nuraly-ui/packages/common/dist/index.js +27 -0
  100. package/components/ui/nuraly-ui/packages/common/dist/mixins/index.js +3 -0
  101. package/components/ui/nuraly-ui/packages/common/dist/mixins.js +29 -0
  102. package/components/ui/nuraly-ui/packages/common/dist/shared/base-mixin.js +38 -0
  103. package/components/ui/nuraly-ui/packages/common/dist/shared/constants.js +2 -0
  104. package/components/ui/nuraly-ui/packages/common/dist/shared/controllers/dropdown.controller.js +341 -0
  105. package/components/ui/nuraly-ui/packages/common/dist/shared/controllers/dropdown.interface.js +2 -0
  106. package/components/ui/nuraly-ui/packages/common/dist/shared/controllers/index.js +4 -0
  107. package/components/ui/nuraly-ui/packages/common/dist/shared/controllers/theme.controller.js +133 -0
  108. package/components/ui/nuraly-ui/packages/common/dist/shared/dependency-mixin.js +141 -0
  109. package/components/ui/nuraly-ui/packages/common/dist/shared/event-handler-mixin.js +95 -0
  110. package/components/ui/nuraly-ui/packages/common/dist/shared/index.js +17 -0
  111. package/components/ui/nuraly-ui/packages/common/dist/shared/theme-mixin.js +194 -0
  112. package/components/ui/nuraly-ui/packages/common/dist/shared/themes.js +85 -0
  113. package/components/ui/nuraly-ui/packages/common/dist/shared/utils.js +85 -0
  114. package/components/ui/nuraly-ui/packages/common/dist/shared/validation.types.js +17 -0
  115. package/components/ui/nuraly-ui/packages/common/dist/themes/index.js +2 -0
  116. package/components/ui/nuraly-ui/packages/common/dist/themes.js +23 -0
  117. package/components/ui/nuraly-ui/packages/common/dist/utils/index.js +2 -0
  118. package/components/ui/nuraly-ui/packages/common/dist/utils.js +22 -0
  119. package/components/ui/nuraly-ui/packages/forms/README.md +84 -0
  120. package/components/ui/nuraly-ui/packages/forms/node_modules/fs-extra/LICENSE +15 -0
  121. package/components/ui/nuraly-ui/packages/forms/node_modules/fs-extra/README.md +294 -0
  122. package/components/ui/nuraly-ui/packages/forms/node_modules/fs-extra/lib/copy/copy-sync.js +171 -0
  123. package/components/ui/nuraly-ui/packages/forms/node_modules/fs-extra/lib/copy/copy.js +175 -0
  124. package/components/ui/nuraly-ui/packages/forms/node_modules/fs-extra/lib/copy/index.js +7 -0
  125. package/components/ui/nuraly-ui/packages/forms/node_modules/fs-extra/lib/empty/index.js +39 -0
  126. package/components/ui/nuraly-ui/packages/forms/node_modules/fs-extra/lib/ensure/file.js +66 -0
  127. package/components/ui/nuraly-ui/packages/forms/node_modules/fs-extra/lib/ensure/index.js +23 -0
  128. package/components/ui/nuraly-ui/packages/forms/node_modules/fs-extra/lib/ensure/link.js +64 -0
  129. package/components/ui/nuraly-ui/packages/forms/node_modules/fs-extra/lib/ensure/symlink-paths.js +101 -0
  130. package/components/ui/nuraly-ui/packages/forms/node_modules/fs-extra/lib/ensure/symlink-type.js +34 -0
  131. package/components/ui/nuraly-ui/packages/forms/node_modules/fs-extra/lib/ensure/symlink.js +67 -0
  132. package/components/ui/nuraly-ui/packages/forms/node_modules/fs-extra/lib/fs/index.js +146 -0
  133. package/components/ui/nuraly-ui/packages/forms/node_modules/fs-extra/lib/index.js +16 -0
  134. package/components/ui/nuraly-ui/packages/forms/node_modules/fs-extra/lib/json/index.js +16 -0
  135. package/components/ui/nuraly-ui/packages/forms/node_modules/fs-extra/lib/json/jsonfile.js +11 -0
  136. package/components/ui/nuraly-ui/packages/forms/node_modules/fs-extra/lib/json/output-json-sync.js +12 -0
  137. package/components/ui/nuraly-ui/packages/forms/node_modules/fs-extra/lib/json/output-json.js +12 -0
  138. package/components/ui/nuraly-ui/packages/forms/node_modules/fs-extra/lib/mkdirs/index.js +14 -0
  139. package/components/ui/nuraly-ui/packages/forms/node_modules/fs-extra/lib/mkdirs/make-dir.js +27 -0
  140. package/components/ui/nuraly-ui/packages/forms/node_modules/fs-extra/lib/mkdirs/utils.js +21 -0
  141. package/components/ui/nuraly-ui/packages/forms/node_modules/fs-extra/lib/move/index.js +7 -0
  142. package/components/ui/nuraly-ui/packages/forms/node_modules/fs-extra/lib/move/move-sync.js +55 -0
  143. package/components/ui/nuraly-ui/packages/forms/node_modules/fs-extra/lib/move/move.js +59 -0
  144. package/components/ui/nuraly-ui/packages/forms/node_modules/fs-extra/lib/output-file/index.js +31 -0
  145. package/components/ui/nuraly-ui/packages/forms/node_modules/fs-extra/lib/path-exists/index.js +12 -0
  146. package/components/ui/nuraly-ui/packages/forms/node_modules/fs-extra/lib/remove/index.js +17 -0
  147. package/components/ui/nuraly-ui/packages/forms/node_modules/fs-extra/lib/util/async.js +29 -0
  148. package/components/ui/nuraly-ui/packages/forms/node_modules/fs-extra/lib/util/stat.js +159 -0
  149. package/components/ui/nuraly-ui/packages/forms/node_modules/fs-extra/lib/util/utimes.js +36 -0
  150. package/components/ui/nuraly-ui/packages/layout/README.md +77 -0
  151. package/components/ui/nuraly-ui/packages/layout/node_modules/fs-extra/LICENSE +15 -0
  152. package/components/ui/nuraly-ui/packages/layout/node_modules/fs-extra/README.md +294 -0
  153. package/components/ui/nuraly-ui/packages/layout/node_modules/fs-extra/lib/copy/copy-sync.js +171 -0
  154. package/components/ui/nuraly-ui/packages/layout/node_modules/fs-extra/lib/copy/copy.js +175 -0
  155. package/components/ui/nuraly-ui/packages/layout/node_modules/fs-extra/lib/copy/index.js +7 -0
  156. package/components/ui/nuraly-ui/packages/layout/node_modules/fs-extra/lib/empty/index.js +39 -0
  157. package/components/ui/nuraly-ui/packages/layout/node_modules/fs-extra/lib/ensure/file.js +66 -0
  158. package/components/ui/nuraly-ui/packages/layout/node_modules/fs-extra/lib/ensure/index.js +23 -0
  159. package/components/ui/nuraly-ui/packages/layout/node_modules/fs-extra/lib/ensure/link.js +64 -0
  160. package/components/ui/nuraly-ui/packages/layout/node_modules/fs-extra/lib/ensure/symlink-paths.js +101 -0
  161. package/components/ui/nuraly-ui/packages/layout/node_modules/fs-extra/lib/ensure/symlink-type.js +34 -0
  162. package/components/ui/nuraly-ui/packages/layout/node_modules/fs-extra/lib/ensure/symlink.js +67 -0
  163. package/components/ui/nuraly-ui/packages/layout/node_modules/fs-extra/lib/fs/index.js +146 -0
  164. package/components/ui/nuraly-ui/packages/layout/node_modules/fs-extra/lib/index.js +16 -0
  165. package/components/ui/nuraly-ui/packages/layout/node_modules/fs-extra/lib/json/index.js +16 -0
  166. package/components/ui/nuraly-ui/packages/layout/node_modules/fs-extra/lib/json/jsonfile.js +11 -0
  167. package/components/ui/nuraly-ui/packages/layout/node_modules/fs-extra/lib/json/output-json-sync.js +12 -0
  168. package/components/ui/nuraly-ui/packages/layout/node_modules/fs-extra/lib/json/output-json.js +12 -0
  169. package/components/ui/nuraly-ui/packages/layout/node_modules/fs-extra/lib/mkdirs/index.js +14 -0
  170. package/components/ui/nuraly-ui/packages/layout/node_modules/fs-extra/lib/mkdirs/make-dir.js +27 -0
  171. package/components/ui/nuraly-ui/packages/layout/node_modules/fs-extra/lib/mkdirs/utils.js +21 -0
  172. package/components/ui/nuraly-ui/packages/layout/node_modules/fs-extra/lib/move/index.js +7 -0
  173. package/components/ui/nuraly-ui/packages/layout/node_modules/fs-extra/lib/move/move-sync.js +55 -0
  174. package/components/ui/nuraly-ui/packages/layout/node_modules/fs-extra/lib/move/move.js +59 -0
  175. package/components/ui/nuraly-ui/packages/layout/node_modules/fs-extra/lib/output-file/index.js +31 -0
  176. package/components/ui/nuraly-ui/packages/layout/node_modules/fs-extra/lib/path-exists/index.js +12 -0
  177. package/components/ui/nuraly-ui/packages/layout/node_modules/fs-extra/lib/remove/index.js +17 -0
  178. package/components/ui/nuraly-ui/packages/layout/node_modules/fs-extra/lib/util/async.js +29 -0
  179. package/components/ui/nuraly-ui/packages/layout/node_modules/fs-extra/lib/util/stat.js +159 -0
  180. package/components/ui/nuraly-ui/packages/layout/node_modules/fs-extra/lib/util/utimes.js +36 -0
  181. package/components/ui/nuraly-ui/packages/themes/README.md +146 -0
  182. package/components/ui/nuraly-ui/packages/themes/scripts/build.js +444 -0
  183. package/components/ui/nuraly-ui/rollup.config.js +144 -0
  184. package/components/ui/nuraly-ui/src/components/alert/README.md +236 -0
  185. package/components/ui/nuraly-ui/src/components/alert/alert.component.ts +225 -0
  186. package/components/ui/nuraly-ui/src/components/alert/alert.stories.ts +466 -0
  187. package/components/ui/nuraly-ui/src/components/alert/alert.style.ts +192 -0
  188. package/components/ui/nuraly-ui/src/components/alert/alert.types.ts +57 -0
  189. package/components/ui/nuraly-ui/src/components/alert/index.ts +8 -0
  190. package/components/ui/nuraly-ui/src/components/alert/react.ts +17 -0
  191. package/components/ui/nuraly-ui/src/components/badge/README.md +319 -0
  192. package/components/ui/nuraly-ui/src/components/badge/badge.component.ts +314 -0
  193. package/components/ui/nuraly-ui/src/components/badge/badge.stories.ts +582 -0
  194. package/components/ui/nuraly-ui/src/components/badge/badge.style.ts +250 -0
  195. package/components/ui/nuraly-ui/src/components/badge/badge.types.ts +100 -0
  196. package/components/ui/nuraly-ui/src/components/badge/index.ts +1 -0
  197. package/components/ui/nuraly-ui/src/components/badge/react.ts +9 -0
  198. package/components/ui/nuraly-ui/src/components/breadcrumb/README.md +243 -0
  199. package/components/ui/nuraly-ui/src/components/breadcrumb/breadcrumb.component.ts +280 -0
  200. package/components/ui/nuraly-ui/src/components/breadcrumb/breadcrumb.stories.ts +389 -0
  201. package/components/ui/nuraly-ui/src/components/breadcrumb/breadcrumb.style.ts +154 -0
  202. package/components/ui/nuraly-ui/src/components/breadcrumb/breadcrumb.types.ts +66 -0
  203. package/components/ui/nuraly-ui/src/components/breadcrumb/index.ts +1 -0
  204. package/components/ui/nuraly-ui/src/components/breadcrumb/react.ts +11 -0
  205. package/components/ui/nuraly-ui/src/components/button/README.md +331 -0
  206. package/components/ui/nuraly-ui/src/components/button/button.component.ts +317 -0
  207. package/components/ui/nuraly-ui/src/components/button/button.stories.ts +861 -0
  208. package/components/ui/nuraly-ui/src/components/button/button.style.ts +520 -0
  209. package/components/ui/nuraly-ui/src/components/button/button.types.ts +68 -0
  210. package/components/ui/nuraly-ui/src/components/button/controllers/base.controller.ts +99 -0
  211. package/components/ui/nuraly-ui/src/components/button/controllers/index.ts +10 -0
  212. package/components/ui/nuraly-ui/src/components/button/controllers/keyboard.controller.ts +89 -0
  213. package/components/ui/nuraly-ui/src/components/button/controllers/link.controller.ts +86 -0
  214. package/components/ui/nuraly-ui/src/components/button/controllers/ripple.controller.ts +79 -0
  215. package/components/ui/nuraly-ui/src/components/button/index.ts +1 -0
  216. package/components/ui/nuraly-ui/src/components/button/interfaces/base-controller.interface.ts +67 -0
  217. package/components/ui/nuraly-ui/src/components/button/interfaces/index.ts +1 -0
  218. package/components/ui/nuraly-ui/src/components/button/react.ts +11 -0
  219. package/components/ui/nuraly-ui/src/components/button/test/nr-button_test.ts +90 -0
  220. package/components/ui/nuraly-ui/src/components/canvas/canvas.component.ts +306 -0
  221. package/components/ui/nuraly-ui/src/components/canvas/demo/canvas-demo.ts +18 -0
  222. package/components/ui/nuraly-ui/src/components/canvas/index.ts +1 -0
  223. package/components/ui/nuraly-ui/src/components/canvas/react.ts +13 -0
  224. package/components/ui/nuraly-ui/src/components/card/card.component.ts +50 -0
  225. package/components/ui/nuraly-ui/src/components/card/card.stories.ts +360 -0
  226. package/components/ui/nuraly-ui/src/components/card/card.style.ts +62 -0
  227. package/components/ui/nuraly-ui/src/components/card/card.types.ts +17 -0
  228. package/components/ui/nuraly-ui/src/components/card/index.ts +2 -0
  229. package/components/ui/nuraly-ui/src/components/card/react.ts +12 -0
  230. package/components/ui/nuraly-ui/src/components/carousel/carousel.component.ts +116 -0
  231. package/components/ui/nuraly-ui/src/components/carousel/carousel.style.ts +69 -0
  232. package/components/ui/nuraly-ui/src/components/carousel/demo/carousel-demo.ts +59 -0
  233. package/components/ui/nuraly-ui/src/components/carousel/index.ts +1 -0
  234. package/components/ui/nuraly-ui/src/components/carousel/react.ts +12 -0
  235. package/components/ui/nuraly-ui/src/components/chatbot/README.md +527 -0
  236. package/components/ui/nuraly-ui/src/components/chatbot/chatbot.component.ts +730 -0
  237. package/components/ui/nuraly-ui/src/components/chatbot/chatbot.stories.ts +2549 -0
  238. package/components/ui/nuraly-ui/src/components/chatbot/chatbot.style.ts +1272 -0
  239. package/components/ui/nuraly-ui/src/components/chatbot/chatbot.types.ts +269 -0
  240. package/components/ui/nuraly-ui/src/components/chatbot/controllers/index.ts +9 -0
  241. package/components/ui/nuraly-ui/src/components/chatbot/controllers/scroll.controller.ts +59 -0
  242. package/components/ui/nuraly-ui/src/components/chatbot/core/README.md +550 -0
  243. package/components/ui/nuraly-ui/src/components/chatbot/core/chatbot-core.controller.ts +918 -0
  244. package/components/ui/nuraly-ui/src/components/chatbot/core/event-bus.ts +104 -0
  245. package/components/ui/nuraly-ui/src/components/chatbot/core/handlers/file-handler.ts +79 -0
  246. package/components/ui/nuraly-ui/src/components/chatbot/core/handlers/index.ts +12 -0
  247. package/components/ui/nuraly-ui/src/components/chatbot/core/handlers/message-handler.ts +117 -0
  248. package/components/ui/nuraly-ui/src/components/chatbot/core/handlers/module-handler.ts +49 -0
  249. package/components/ui/nuraly-ui/src/components/chatbot/core/handlers/state-handler.ts +152 -0
  250. package/components/ui/nuraly-ui/src/components/chatbot/core/handlers/suggestion-handler.ts +38 -0
  251. package/components/ui/nuraly-ui/src/components/chatbot/core/handlers/thread-handler.ts +153 -0
  252. package/components/ui/nuraly-ui/src/components/chatbot/core/index.ts +47 -0
  253. package/components/ui/nuraly-ui/src/components/chatbot/core/services/index.ts +11 -0
  254. package/components/ui/nuraly-ui/src/components/chatbot/core/services/localization.service.ts +20 -0
  255. package/components/ui/nuraly-ui/src/components/chatbot/core/services/plugin.service.ts +103 -0
  256. package/components/ui/nuraly-ui/src/components/chatbot/core/services/provider.service.ts +342 -0
  257. package/components/ui/nuraly-ui/src/components/chatbot/core/services/storage.service.ts +122 -0
  258. package/components/ui/nuraly-ui/src/components/chatbot/core/services/validation.service.ts +107 -0
  259. package/components/ui/nuraly-ui/src/components/chatbot/core/types.ts +456 -0
  260. package/components/ui/nuraly-ui/src/components/chatbot/file-upload-validation.stories.ts +278 -0
  261. package/components/ui/nuraly-ui/src/components/chatbot/index.ts +27 -0
  262. package/components/ui/nuraly-ui/src/components/chatbot/locales/generated/ar.ts +19 -0
  263. package/components/ui/nuraly-ui/src/components/chatbot/locales/generated/fr.ts +19 -0
  264. package/components/ui/nuraly-ui/src/components/chatbot/locales/locale-codes.ts +25 -0
  265. package/components/ui/nuraly-ui/src/components/chatbot/plugins/analytics-plugin.ts +63 -0
  266. package/components/ui/nuraly-ui/src/components/chatbot/plugins/chat-plugin.ts +76 -0
  267. package/components/ui/nuraly-ui/src/components/chatbot/plugins/flight-card-plugin.ts +636 -0
  268. package/components/ui/nuraly-ui/src/components/chatbot/plugins/flight-card.stories.ts +929 -0
  269. package/components/ui/nuraly-ui/src/components/chatbot/plugins/index.ts +14 -0
  270. package/components/ui/nuraly-ui/src/components/chatbot/plugins/markdown-plugin.stories.ts +155 -0
  271. package/components/ui/nuraly-ui/src/components/chatbot/plugins/markdown-plugin.ts +103 -0
  272. package/components/ui/nuraly-ui/src/components/chatbot/plugins/persistence-plugin.ts +97 -0
  273. package/components/ui/nuraly-ui/src/components/chatbot/plugins/print-job-card-plugin.ts +537 -0
  274. package/components/ui/nuraly-ui/src/components/chatbot/plugins/print-job-card.stories.ts +649 -0
  275. package/components/ui/nuraly-ui/src/components/chatbot/providers/custom-api-provider.ts +239 -0
  276. package/components/ui/nuraly-ui/src/components/chatbot/providers/index.ts +11 -0
  277. package/components/ui/nuraly-ui/src/components/chatbot/providers/mock-provider.ts +433 -0
  278. package/components/ui/nuraly-ui/src/components/chatbot/providers/openai-provider.ts +239 -0
  279. package/components/ui/nuraly-ui/src/components/chatbot/react.ts +57 -0
  280. package/components/ui/nuraly-ui/src/components/chatbot/storage/index.ts +8 -0
  281. package/components/ui/nuraly-ui/src/components/chatbot/storage/storage-implementations.ts +167 -0
  282. package/components/ui/nuraly-ui/src/components/chatbot/templates/chatbot-main.template.ts +157 -0
  283. package/components/ui/nuraly-ui/src/components/chatbot/templates/file-preview-modal.template.ts +90 -0
  284. package/components/ui/nuraly-ui/src/components/chatbot/templates/file-upload-area.template.ts +43 -0
  285. package/components/ui/nuraly-ui/src/components/chatbot/templates/index.ts +14 -0
  286. package/components/ui/nuraly-ui/src/components/chatbot/templates/input-box.template.ts +267 -0
  287. package/components/ui/nuraly-ui/src/components/chatbot/templates/message.template.ts +240 -0
  288. package/components/ui/nuraly-ui/src/components/chatbot/templates/suggestion.template.ts +57 -0
  289. package/components/ui/nuraly-ui/src/components/chatbot/templates/thread-sidebar.template.ts +67 -0
  290. package/components/ui/nuraly-ui/src/components/chatbot/templates/url-modal.template.ts +121 -0
  291. package/components/ui/nuraly-ui/src/components/checkbox/checkbox.component.ts +173 -0
  292. package/components/ui/nuraly-ui/src/components/checkbox/checkbox.stories.ts +521 -0
  293. package/components/ui/nuraly-ui/src/components/checkbox/checkbox.style.ts +324 -0
  294. package/components/ui/nuraly-ui/src/components/checkbox/checkbox.types.ts +5 -0
  295. package/components/ui/nuraly-ui/src/components/checkbox/index.ts +1 -0
  296. package/components/ui/nuraly-ui/src/components/checkbox/mixins/checkbox-event-mixin.ts +180 -0
  297. package/components/ui/nuraly-ui/src/components/checkbox/mixins/checkbox-focus-mixin.ts +99 -0
  298. package/components/ui/nuraly-ui/src/components/checkbox/mixins/index.ts +27 -0
  299. package/components/ui/nuraly-ui/src/components/checkbox/react.ts +12 -0
  300. package/components/ui/nuraly-ui/src/components/checkbox/test/checkbox_test.ts +97 -0
  301. package/components/ui/nuraly-ui/src/components/collapse/collapse.component.ts +315 -0
  302. package/components/ui/nuraly-ui/src/components/collapse/collapse.stories.ts +738 -0
  303. package/components/ui/nuraly-ui/src/components/collapse/collapse.style.ts +236 -0
  304. package/components/ui/nuraly-ui/src/components/collapse/collapse.type.ts +95 -0
  305. package/components/ui/nuraly-ui/src/components/collapse/controllers/accordion.controller.ts +169 -0
  306. package/components/ui/nuraly-ui/src/components/collapse/controllers/animation.controller.ts +129 -0
  307. package/components/ui/nuraly-ui/src/components/collapse/controllers/base.controller.ts +114 -0
  308. package/components/ui/nuraly-ui/src/components/collapse/controllers/index.ts +15 -0
  309. package/components/ui/nuraly-ui/src/components/collapse/controllers/keyboard.controller.ts +212 -0
  310. package/components/ui/nuraly-ui/src/components/collapse/index.ts +1 -0
  311. package/components/ui/nuraly-ui/src/components/collapse/react.ts +13 -0
  312. package/components/ui/nuraly-ui/src/components/colorpicker/color-holder.component.ts +104 -0
  313. package/components/ui/nuraly-ui/src/components/colorpicker/color-holder.style.ts +46 -0
  314. package/components/ui/nuraly-ui/src/components/colorpicker/color-picker.component.ts +398 -0
  315. package/components/ui/nuraly-ui/src/components/colorpicker/color-picker.stories.ts +888 -0
  316. package/components/ui/nuraly-ui/src/components/colorpicker/color-picker.style.ts +86 -0
  317. package/components/ui/nuraly-ui/src/components/colorpicker/color-picker.types.ts +64 -0
  318. package/components/ui/nuraly-ui/src/components/colorpicker/controllers/base.controller.ts +64 -0
  319. package/components/ui/nuraly-ui/src/components/colorpicker/controllers/dropdown.controller.ts +268 -0
  320. package/components/ui/nuraly-ui/src/components/colorpicker/controllers/event.controller.ts +147 -0
  321. package/components/ui/nuraly-ui/src/components/colorpicker/controllers/index.ts +3 -0
  322. package/components/ui/nuraly-ui/src/components/colorpicker/default-color-sets.component.ts +119 -0
  323. package/components/ui/nuraly-ui/src/components/colorpicker/default-color-sets.style.ts +35 -0
  324. package/components/ui/nuraly-ui/src/components/colorpicker/index.ts +2 -0
  325. package/components/ui/nuraly-ui/src/components/colorpicker/interfaces/index.ts +67 -0
  326. package/components/ui/nuraly-ui/src/components/colorpicker/react.ts +13 -0
  327. package/components/ui/nuraly-ui/src/components/console/react.ts +12 -0
  328. package/components/ui/nuraly-ui/src/components/datepicker/README.md +60 -0
  329. package/components/ui/nuraly-ui/src/components/datepicker/controllers/calendar.controller.ts +252 -0
  330. package/components/ui/nuraly-ui/src/components/datepicker/controllers/index.ts +11 -0
  331. package/components/ui/nuraly-ui/src/components/datepicker/controllers/keyboard.controller.ts +290 -0
  332. package/components/ui/nuraly-ui/src/components/datepicker/controllers/month-year-dropdown.controller.ts +108 -0
  333. package/components/ui/nuraly-ui/src/components/datepicker/controllers/positioning.controller.ts +278 -0
  334. package/components/ui/nuraly-ui/src/components/datepicker/controllers/selection.controller.ts +303 -0
  335. package/components/ui/nuraly-ui/src/components/datepicker/datepicker.component.ts +659 -0
  336. package/components/ui/nuraly-ui/src/components/datepicker/datepicker.constant.ts +81 -0
  337. package/components/ui/nuraly-ui/src/components/datepicker/datepicker.stories.ts +461 -0
  338. package/components/ui/nuraly-ui/src/components/datepicker/datepicker.style.ts +456 -0
  339. package/components/ui/nuraly-ui/src/components/datepicker/datepicker.style.variables.ts +119 -0
  340. package/components/ui/nuraly-ui/src/components/datepicker/datepicker.types.ts +154 -0
  341. package/components/ui/nuraly-ui/src/components/datepicker/index.ts +3 -0
  342. package/components/ui/nuraly-ui/src/components/datepicker/interfaces/base-controller.interface.ts +42 -0
  343. package/components/ui/nuraly-ui/src/components/datepicker/interfaces/datepicker-controllers.interface.ts +128 -0
  344. package/components/ui/nuraly-ui/src/components/datepicker/interfaces/index.ts +15 -0
  345. package/components/ui/nuraly-ui/src/components/datepicker/react.ts +24 -0
  346. package/components/ui/nuraly-ui/src/components/datepicker/templates/days.template.ts +57 -0
  347. package/components/ui/nuraly-ui/src/components/datepicker/templates/dropdown.template.ts +61 -0
  348. package/components/ui/nuraly-ui/src/components/datepicker/templates/headers.template.ts +7 -0
  349. package/components/ui/nuraly-ui/src/components/datepicker/templates/months.template.ts +16 -0
  350. package/components/ui/nuraly-ui/src/components/datepicker/templates/years.template.ts +18 -0
  351. package/components/ui/nuraly-ui/src/components/datepicker/test/datepicker_test.ts +124 -0
  352. package/components/ui/nuraly-ui/src/components/datepicker/utils/day.helper.ts +56 -0
  353. package/components/ui/nuraly-ui/src/components/datepicker/utils/formatter.ts +8 -0
  354. package/components/ui/nuraly-ui/src/components/datepicker/utils/index.ts +11 -0
  355. package/components/ui/nuraly-ui/src/components/datepicker/utils/locale.helper.ts +152 -0
  356. package/components/ui/nuraly-ui/src/components/datepicker/utils/month.helper.ts +26 -0
  357. package/components/ui/nuraly-ui/src/components/datepicker/utils/string.helper.ts +3 -0
  358. package/components/ui/nuraly-ui/src/components/divider/divider.component.ts +172 -0
  359. package/components/ui/nuraly-ui/src/components/divider/divider.stories.ts +271 -0
  360. package/components/ui/nuraly-ui/src/components/divider/divider.style.ts +139 -0
  361. package/components/ui/nuraly-ui/src/components/divider/divider.types.ts +59 -0
  362. package/components/ui/nuraly-ui/src/components/divider/index.ts +2 -0
  363. package/components/ui/nuraly-ui/src/components/divider/react.ts +9 -0
  364. package/components/ui/nuraly-ui/src/components/document/demo/document-demo.ts +28 -0
  365. package/components/ui/nuraly-ui/src/components/document/document.component.ts +133 -0
  366. package/components/ui/nuraly-ui/src/components/document/document.stories.ts +266 -0
  367. package/components/ui/nuraly-ui/src/components/document/document.style.ts +210 -0
  368. package/components/ui/nuraly-ui/src/components/document/document.types.ts +83 -0
  369. package/components/ui/nuraly-ui/src/components/document/index.ts +2 -0
  370. package/components/ui/nuraly-ui/src/components/document/react.ts +15 -0
  371. package/components/ui/nuraly-ui/src/components/dropdown/controllers/base.controller.ts +85 -0
  372. package/components/ui/nuraly-ui/src/components/dropdown/controllers/dropdown.controller.ts +476 -0
  373. package/components/ui/nuraly-ui/src/components/dropdown/controllers/index.ts +2 -0
  374. package/components/ui/nuraly-ui/src/components/dropdown/dropdown.component.ts +348 -0
  375. package/components/ui/nuraly-ui/src/components/dropdown/dropdown.stories.ts +1271 -0
  376. package/components/ui/nuraly-ui/src/components/dropdown/dropdown.style.ts +462 -0
  377. package/components/ui/nuraly-ui/src/components/dropdown/dropdown.types.ts +109 -0
  378. package/components/ui/nuraly-ui/src/components/dropdown/index.ts +2 -0
  379. package/components/ui/nuraly-ui/src/components/dropdown/interfaces/controller-interfaces.ts +98 -0
  380. package/components/ui/nuraly-ui/src/components/dropdown/interfaces/index.ts +1 -0
  381. package/components/ui/nuraly-ui/src/components/dropdown/react.ts +14 -0
  382. package/components/ui/nuraly-ui/src/components/dropdown/templates/nr-dropdown-item.style.ts +35 -0
  383. package/components/ui/nuraly-ui/src/components/dropdown/templates/nr-dropdown-item.ts +47 -0
  384. package/components/ui/nuraly-ui/src/components/dropdown/templates/nr-dropdown-menu.style.ts +50 -0
  385. package/components/ui/nuraly-ui/src/components/dropdown/templates/nr-dropdown-menu.ts +52 -0
  386. package/components/ui/nuraly-ui/src/components/file-upload/demo/file-upload-demo.ts +151 -0
  387. package/components/ui/nuraly-ui/src/components/file-upload/file-upload.component.ts +371 -0
  388. package/components/ui/nuraly-ui/src/components/file-upload/index.ts +1 -0
  389. package/components/ui/nuraly-ui/src/components/file-upload/react.ts +14 -0
  390. package/components/ui/nuraly-ui/src/components/file-upload/readme.md +98 -0
  391. package/components/ui/nuraly-ui/src/components/file-upload/styles.ts +284 -0
  392. package/components/ui/nuraly-ui/src/components/file-upload/types.ts +10 -0
  393. package/components/ui/nuraly-ui/src/components/file-upload/utils.ts +23 -0
  394. package/components/ui/nuraly-ui/src/components/flex/README.md +235 -0
  395. package/components/ui/nuraly-ui/src/components/flex/flex.component.ts +186 -0
  396. package/components/ui/nuraly-ui/src/components/flex/flex.stories.ts +486 -0
  397. package/components/ui/nuraly-ui/src/components/flex/flex.style.ts +101 -0
  398. package/components/ui/nuraly-ui/src/components/flex/flex.types.ts +70 -0
  399. package/components/ui/nuraly-ui/src/components/flex/index.ts +2 -0
  400. package/components/ui/nuraly-ui/src/components/flex/react.ts +9 -0
  401. package/components/ui/nuraly-ui/src/components/form/README.md +152 -0
  402. package/components/ui/nuraly-ui/src/components/form/controllers/submission.controller.ts +243 -0
  403. package/components/ui/nuraly-ui/src/components/form/controllers/validation.controller.ts +268 -0
  404. package/components/ui/nuraly-ui/src/components/form/form.component.ts +699 -0
  405. package/components/ui/nuraly-ui/src/components/form/form.stories.ts +794 -0
  406. package/components/ui/nuraly-ui/src/components/form/form.style.ts +69 -0
  407. package/components/ui/nuraly-ui/src/components/form/form.types.ts +104 -0
  408. package/components/ui/nuraly-ui/src/components/form/index.ts +15 -0
  409. package/components/ui/nuraly-ui/src/components/form/interfaces/validation.interface.ts +139 -0
  410. package/components/ui/nuraly-ui/src/components/grid/README.md +196 -0
  411. package/components/ui/nuraly-ui/src/components/grid/col.component.ts +262 -0
  412. package/components/ui/nuraly-ui/src/components/grid/col.style.ts +117 -0
  413. package/components/ui/nuraly-ui/src/components/grid/grid.stories.ts +442 -0
  414. package/components/ui/nuraly-ui/src/components/grid/grid.types.ts +89 -0
  415. package/components/ui/nuraly-ui/src/components/grid/index.ts +3 -0
  416. package/components/ui/nuraly-ui/src/components/grid/react.ts +16 -0
  417. package/components/ui/nuraly-ui/src/components/grid/row.component.ts +203 -0
  418. package/components/ui/nuraly-ui/src/components/grid/row.style.ts +68 -0
  419. package/components/ui/nuraly-ui/src/components/icon/icon.component.ts +219 -0
  420. package/components/ui/nuraly-ui/src/components/icon/icon.stories.ts +160 -0
  421. package/components/ui/nuraly-ui/src/components/icon/icon.style.ts +214 -0
  422. package/components/ui/nuraly-ui/src/components/icon/icon.types.ts +4 -0
  423. package/components/ui/nuraly-ui/src/components/icon/icon.variables.ts +132 -0
  424. package/components/ui/nuraly-ui/src/components/icon/index.ts +1 -0
  425. package/components/ui/nuraly-ui/src/components/icon/mixins/clickable-mixin.ts +154 -0
  426. package/components/ui/nuraly-ui/src/components/icon/mixins/index.ts +7 -0
  427. package/components/ui/nuraly-ui/src/components/icon/react.ts +8 -0
  428. package/components/ui/nuraly-ui/src/components/iconpicker/README.md +106 -0
  429. package/components/ui/nuraly-ui/src/components/iconpicker/controllers/event.controller.ts +94 -0
  430. package/components/ui/nuraly-ui/src/components/iconpicker/controllers/index.ts +9 -0
  431. package/components/ui/nuraly-ui/src/components/iconpicker/controllers/search.controller.ts +76 -0
  432. package/components/ui/nuraly-ui/src/components/iconpicker/controllers/selection.controller.ts +50 -0
  433. package/components/ui/nuraly-ui/src/components/iconpicker/icon-picker.component.ts +324 -0
  434. package/components/ui/nuraly-ui/src/components/iconpicker/icon-picker.constant.ts +33 -0
  435. package/components/ui/nuraly-ui/src/components/iconpicker/icon-picker.stories.ts +255 -0
  436. package/components/ui/nuraly-ui/src/components/iconpicker/icon-picker.style.ts +217 -0
  437. package/components/ui/nuraly-ui/src/components/iconpicker/icon-picker.types.ts +56 -0
  438. package/components/ui/nuraly-ui/src/components/iconpicker/index.ts +9 -0
  439. package/components/ui/nuraly-ui/src/components/iconpicker/interfaces/icon-picker.interface.ts +14 -0
  440. package/components/ui/nuraly-ui/src/components/iconpicker/interfaces/index.ts +7 -0
  441. package/components/ui/nuraly-ui/src/components/iconpicker/react.ts +22 -0
  442. package/components/ui/nuraly-ui/src/components/iconpicker/utils/icon-filter.utils.ts +119 -0
  443. package/components/ui/nuraly-ui/src/components/iconpicker/utils/icon-loader.utils.ts +129 -0
  444. package/components/ui/nuraly-ui/src/components/iconpicker/utils/index.ts +8 -0
  445. package/components/ui/nuraly-ui/src/components/iconpicker/utils/lucide-icons.ts +1624 -0
  446. package/components/ui/nuraly-ui/src/components/image/image.component.ts +136 -0
  447. package/components/ui/nuraly-ui/src/components/image/image.stories.ts +236 -0
  448. package/components/ui/nuraly-ui/src/components/image/image.style.ts +83 -0
  449. package/components/ui/nuraly-ui/src/components/image/image.types.ts +83 -0
  450. package/components/ui/nuraly-ui/src/components/image/index.ts +2 -0
  451. package/components/ui/nuraly-ui/src/components/image/react.ts +15 -0
  452. package/components/ui/nuraly-ui/src/components/input/README.md +432 -0
  453. package/components/ui/nuraly-ui/src/components/input/controllers/base.controller.ts +114 -0
  454. package/components/ui/nuraly-ui/src/components/input/controllers/event.controller.ts +421 -0
  455. package/components/ui/nuraly-ui/src/components/input/controllers/index.ts +32 -0
  456. package/components/ui/nuraly-ui/src/components/input/controllers/state.controller.ts +313 -0
  457. package/components/ui/nuraly-ui/src/components/input/controllers/validation.controller.ts +806 -0
  458. package/components/ui/nuraly-ui/src/components/input/index.ts +2 -0
  459. package/components/ui/nuraly-ui/src/components/input/input.component.ts +557 -0
  460. package/components/ui/nuraly-ui/src/components/input/input.stories.ts +1759 -0
  461. package/components/ui/nuraly-ui/src/components/input/input.style.ts +812 -0
  462. package/components/ui/nuraly-ui/src/components/input/input.types.ts +195 -0
  463. package/components/ui/nuraly-ui/src/components/input/mixins/focus-mixin.ts +112 -0
  464. package/components/ui/nuraly-ui/src/components/input/mixins/index.ts +14 -0
  465. package/components/ui/nuraly-ui/src/components/input/mixins/number-mixin.ts +167 -0
  466. package/components/ui/nuraly-ui/src/components/input/mixins/selection-mixin.ts +125 -0
  467. package/components/ui/nuraly-ui/src/components/input/react.ts +15 -0
  468. package/components/ui/nuraly-ui/src/components/input/test/nr-input_test.ts +163 -0
  469. package/components/ui/nuraly-ui/src/components/input/utils/index.ts +8 -0
  470. package/components/ui/nuraly-ui/src/components/input/utils/input-renderers.ts +217 -0
  471. package/components/ui/nuraly-ui/src/components/input/utils/input-validation.utils.ts +133 -0
  472. package/components/ui/nuraly-ui/src/components/input/validation.ts +3 -0
  473. package/components/ui/nuraly-ui/src/components/label/index.ts +1 -0
  474. package/components/ui/nuraly-ui/src/components/label/label.component.ts +52 -0
  475. package/components/ui/nuraly-ui/src/components/label/label.stories.ts +311 -0
  476. package/components/ui/nuraly-ui/src/components/label/label.style.ts +70 -0
  477. package/components/ui/nuraly-ui/src/components/label/label.style.variables.ts +35 -0
  478. package/components/ui/nuraly-ui/src/components/label/label.types.ts +48 -0
  479. package/components/ui/nuraly-ui/src/components/label/react.ts +11 -0
  480. package/components/ui/nuraly-ui/src/components/layout/README.md +200 -0
  481. package/components/ui/nuraly-ui/src/components/layout/content.component.ts +45 -0
  482. package/components/ui/nuraly-ui/src/components/layout/content.style.ts +17 -0
  483. package/components/ui/nuraly-ui/src/components/layout/footer.component.ts +54 -0
  484. package/components/ui/nuraly-ui/src/components/layout/footer.style.ts +17 -0
  485. package/components/ui/nuraly-ui/src/components/layout/header.component.ts +55 -0
  486. package/components/ui/nuraly-ui/src/components/layout/header.style.ts +19 -0
  487. package/components/ui/nuraly-ui/src/components/layout/index.ts +18 -0
  488. package/components/ui/nuraly-ui/src/components/layout/layout.component.ts +87 -0
  489. package/components/ui/nuraly-ui/src/components/layout/layout.stories.ts +616 -0
  490. package/components/ui/nuraly-ui/src/components/layout/layout.style.ts +23 -0
  491. package/components/ui/nuraly-ui/src/components/layout/layout.types.ts +90 -0
  492. package/components/ui/nuraly-ui/src/components/layout/react.ts +41 -0
  493. package/components/ui/nuraly-ui/src/components/layout/sider.component.ts +294 -0
  494. package/components/ui/nuraly-ui/src/components/layout/sider.style.ts +104 -0
  495. package/components/ui/nuraly-ui/src/components/menu/README.md +390 -0
  496. package/components/ui/nuraly-ui/src/components/menu/controllers/accessibility.controller.ts +257 -0
  497. package/components/ui/nuraly-ui/src/components/menu/controllers/base.controller.ts +123 -0
  498. package/components/ui/nuraly-ui/src/components/menu/controllers/index.ts +10 -0
  499. package/components/ui/nuraly-ui/src/components/menu/controllers/keyboard.controller.ts +360 -0
  500. package/components/ui/nuraly-ui/src/components/menu/controllers/state.controller.ts +268 -0
  501. package/components/ui/nuraly-ui/src/components/menu/index.ts +3 -0
  502. package/components/ui/nuraly-ui/src/components/menu/interfaces/controller.interface.ts +56 -0
  503. package/components/ui/nuraly-ui/src/components/menu/interfaces/index.ts +7 -0
  504. package/components/ui/nuraly-ui/src/components/menu/menu.component.ts +341 -0
  505. package/components/ui/nuraly-ui/src/components/menu/menu.constants.ts +12 -0
  506. package/components/ui/nuraly-ui/src/components/menu/menu.stories.ts +807 -0
  507. package/components/ui/nuraly-ui/src/components/menu/menu.style.ts +358 -0
  508. package/components/ui/nuraly-ui/src/components/menu/menu.types.ts +60 -0
  509. package/components/ui/nuraly-ui/src/components/menu/react.ts +11 -0
  510. package/components/ui/nuraly-ui/src/components/modal/controllers/index.ts +8 -0
  511. package/components/ui/nuraly-ui/src/components/modal/controllers/modal-drag-controller.ts +139 -0
  512. package/components/ui/nuraly-ui/src/components/modal/controllers/modal-keyboard-controller.ts +152 -0
  513. package/components/ui/nuraly-ui/src/components/modal/index.ts +10 -0
  514. package/components/ui/nuraly-ui/src/components/modal/modal-manager.ts +209 -0
  515. package/components/ui/nuraly-ui/src/components/modal/modal.component.ts +475 -0
  516. package/components/ui/nuraly-ui/src/components/modal/modal.stories.ts +823 -0
  517. package/components/ui/nuraly-ui/src/components/modal/modal.style.ts +369 -0
  518. package/components/ui/nuraly-ui/src/components/modal/modal.types.ts +148 -0
  519. package/components/ui/nuraly-ui/src/components/modal/react.ts +16 -0
  520. package/components/ui/nuraly-ui/src/components/panel/README.md +218 -0
  521. package/components/ui/nuraly-ui/src/components/panel/controllers/index.ts +8 -0
  522. package/components/ui/nuraly-ui/src/components/panel/controllers/panel-drag-controller.ts +151 -0
  523. package/components/ui/nuraly-ui/src/components/panel/controllers/panel-resize-controller.ts +153 -0
  524. package/components/ui/nuraly-ui/src/components/panel/index.ts +9 -0
  525. package/components/ui/nuraly-ui/src/components/panel/panel.component.ts +760 -0
  526. package/components/ui/nuraly-ui/src/components/panel/panel.stories.ts +978 -0
  527. package/components/ui/nuraly-ui/src/components/panel/panel.style.ts +499 -0
  528. package/components/ui/nuraly-ui/src/components/panel/panel.types.ts +89 -0
  529. package/components/ui/nuraly-ui/src/components/panel/react.ts +18 -0
  530. package/components/ui/nuraly-ui/src/components/popconfirm/README.md +403 -0
  531. package/components/ui/nuraly-ui/src/components/popconfirm/index.ts +2 -0
  532. package/components/ui/nuraly-ui/src/components/popconfirm/popconfirm.component.ts +336 -0
  533. package/components/ui/nuraly-ui/src/components/popconfirm/popconfirm.stories.ts +491 -0
  534. package/components/ui/nuraly-ui/src/components/popconfirm/popconfirm.style.ts +207 -0
  535. package/components/ui/nuraly-ui/src/components/popconfirm/popconfirm.types.ts +66 -0
  536. package/components/ui/nuraly-ui/src/components/popconfirm/react.ts +14 -0
  537. package/components/ui/nuraly-ui/src/components/radio/README.md +95 -0
  538. package/components/ui/nuraly-ui/src/components/radio/index.ts +2 -0
  539. package/components/ui/nuraly-ui/src/components/radio/radio.component.ts +186 -0
  540. package/components/ui/nuraly-ui/src/components/radio/radio.stories.ts +317 -0
  541. package/components/ui/nuraly-ui/src/components/radio/radio.style.ts +150 -0
  542. package/components/ui/nuraly-ui/src/components/radio/radio.types.ts +14 -0
  543. package/components/ui/nuraly-ui/src/components/radio/react.ts +20 -0
  544. package/components/ui/nuraly-ui/src/components/radio-group/controllers/focus.controller.ts +251 -0
  545. package/components/ui/nuraly-ui/src/components/radio-group/controllers/group.controller.ts +198 -0
  546. package/components/ui/nuraly-ui/src/components/radio-group/controllers/index.ts +11 -0
  547. package/components/ui/nuraly-ui/src/components/radio-group/controllers/keyboard.controller.ts +122 -0
  548. package/components/ui/nuraly-ui/src/components/radio-group/controllers/ripple.controller.ts +248 -0
  549. package/components/ui/nuraly-ui/src/components/radio-group/controllers/validation.controller.ts +189 -0
  550. package/components/ui/nuraly-ui/src/components/radio-group/index.ts +2 -0
  551. package/components/ui/nuraly-ui/src/components/radio-group/interfaces/base-controller.interface.ts +87 -0
  552. package/components/ui/nuraly-ui/src/components/radio-group/interfaces/focus-controller.interface.ts +45 -0
  553. package/components/ui/nuraly-ui/src/components/radio-group/interfaces/index.ts +14 -0
  554. package/components/ui/nuraly-ui/src/components/radio-group/interfaces/ripple-controller.interface.ts +35 -0
  555. package/components/ui/nuraly-ui/src/components/radio-group/interfaces/selection-controller.interface.ts +51 -0
  556. package/components/ui/nuraly-ui/src/components/radio-group/interfaces/validation-controller.interface.ts +53 -0
  557. package/components/ui/nuraly-ui/src/components/radio-group/radio-group.component.ts +426 -0
  558. package/components/ui/nuraly-ui/src/components/radio-group/radio-group.stories.ts +1334 -0
  559. package/components/ui/nuraly-ui/src/components/radio-group/radio-group.style.ts +248 -0
  560. package/components/ui/nuraly-ui/src/components/radio-group/radio-group.types.ts +43 -0
  561. package/components/ui/nuraly-ui/src/components/radio-group/radio.constant.ts +1 -0
  562. package/components/ui/nuraly-ui/src/components/radio-group/react.ts +18 -0
  563. package/components/ui/nuraly-ui/src/components/radio-group/test/radio_test.ts +87 -0
  564. package/components/ui/nuraly-ui/src/components/select/README.md +316 -0
  565. package/components/ui/nuraly-ui/src/components/select/controllers/base.controller.ts +93 -0
  566. package/components/ui/nuraly-ui/src/components/select/controllers/dropdown.controller.ts +415 -0
  567. package/components/ui/nuraly-ui/src/components/select/controllers/event.controller.ts +118 -0
  568. package/components/ui/nuraly-ui/src/components/select/controllers/focus.controller.ts +255 -0
  569. package/components/ui/nuraly-ui/src/components/select/controllers/index.ts +8 -0
  570. package/components/ui/nuraly-ui/src/components/select/controllers/keyboard.controller.ts +407 -0
  571. package/components/ui/nuraly-ui/src/components/select/controllers/search.controller.ts +187 -0
  572. package/components/ui/nuraly-ui/src/components/select/controllers/selection.controller.ts +238 -0
  573. package/components/ui/nuraly-ui/src/components/select/controllers/validation.controller.ts +236 -0
  574. package/components/ui/nuraly-ui/src/components/select/index.ts +36 -0
  575. package/components/ui/nuraly-ui/src/components/select/interfaces/base-controller.interface.ts +155 -0
  576. package/components/ui/nuraly-ui/src/components/select/interfaces/controller-interfaces.ts +105 -0
  577. package/components/ui/nuraly-ui/src/components/select/interfaces/index.ts +2 -0
  578. package/components/ui/nuraly-ui/src/components/select/react.ts +30 -0
  579. package/components/ui/nuraly-ui/src/components/select/select.component.ts +804 -0
  580. package/components/ui/nuraly-ui/src/components/select/select.constant.ts +142 -0
  581. package/components/ui/nuraly-ui/src/components/select/select.stories.ts +1653 -0
  582. package/components/ui/nuraly-ui/src/components/select/select.style.ts +593 -0
  583. package/components/ui/nuraly-ui/src/components/select/select.types.ts +120 -0
  584. package/components/ui/nuraly-ui/src/components/skeleton/README.md +373 -0
  585. package/components/ui/nuraly-ui/src/components/skeleton/index.ts +2 -0
  586. package/components/ui/nuraly-ui/src/components/skeleton/react.ts +10 -0
  587. package/components/ui/nuraly-ui/src/components/skeleton/skeleton.component.ts +385 -0
  588. package/components/ui/nuraly-ui/src/components/skeleton/skeleton.stories.ts +425 -0
  589. package/components/ui/nuraly-ui/src/components/skeleton/skeleton.style.ts +224 -0
  590. package/components/ui/nuraly-ui/src/components/skeleton/skeleton.types.ts +90 -0
  591. package/components/ui/nuraly-ui/src/components/slider-input/README.md +145 -0
  592. package/components/ui/nuraly-ui/src/components/slider-input/index.ts +2 -0
  593. package/components/ui/nuraly-ui/src/components/slider-input/react.ts +12 -0
  594. package/components/ui/nuraly-ui/src/components/slider-input/slider-input.component.ts +184 -0
  595. package/components/ui/nuraly-ui/src/components/slider-input/slider-input.stories.ts +361 -0
  596. package/components/ui/nuraly-ui/src/components/slider-input/slider-input.style.ts +171 -0
  597. package/components/ui/nuraly-ui/src/components/slider-input/slider-input.style.variables.ts +59 -0
  598. package/components/ui/nuraly-ui/src/components/slider-input/slider-input.types.ts +24 -0
  599. package/components/ui/nuraly-ui/src/components/slider-input/utils/debounce.ts +7 -0
  600. package/components/ui/nuraly-ui/src/components/slider-input/utils/index.ts +1 -0
  601. package/components/ui/nuraly-ui/src/components/table/controllers/base.controller.ts +99 -0
  602. package/components/ui/nuraly-ui/src/components/table/controllers/filter.controller.ts +163 -0
  603. package/components/ui/nuraly-ui/src/components/table/controllers/index.ts +11 -0
  604. package/components/ui/nuraly-ui/src/components/table/controllers/pagination.controller.ts +83 -0
  605. package/components/ui/nuraly-ui/src/components/table/controllers/selection.controller.ts +143 -0
  606. package/components/ui/nuraly-ui/src/components/table/controllers/sort.controller.ts +115 -0
  607. package/components/ui/nuraly-ui/src/components/table/index.ts +1 -0
  608. package/components/ui/nuraly-ui/src/components/table/interfaces/index.ts +7 -0
  609. package/components/ui/nuraly-ui/src/components/table/interfaces/table-host.interface.ts +53 -0
  610. package/components/ui/nuraly-ui/src/components/table/react.ts +14 -0
  611. package/components/ui/nuraly-ui/src/components/table/table.component.ts +344 -0
  612. package/components/ui/nuraly-ui/src/components/table/table.stories.ts +1072 -0
  613. package/components/ui/nuraly-ui/src/components/table/table.style.ts +689 -0
  614. package/components/ui/nuraly-ui/src/components/table/table.types.ts +91 -0
  615. package/components/ui/nuraly-ui/src/components/table/templates/actions.template.ts +22 -0
  616. package/components/ui/nuraly-ui/src/components/table/templates/column-filter.template.ts +88 -0
  617. package/components/ui/nuraly-ui/src/components/table/templates/content.template.ts +257 -0
  618. package/components/ui/nuraly-ui/src/components/table/templates/empty.template.ts +49 -0
  619. package/components/ui/nuraly-ui/src/components/table/templates/filter.template.ts +35 -0
  620. package/components/ui/nuraly-ui/src/components/table/templates/index.ts +7 -0
  621. package/components/ui/nuraly-ui/src/components/table/templates/loading.template.ts +56 -0
  622. package/components/ui/nuraly-ui/src/components/table/templates/pagination.template.ts +70 -0
  623. package/components/ui/nuraly-ui/src/components/tabs/controllers/base.controller.ts +136 -0
  624. package/components/ui/nuraly-ui/src/components/tabs/controllers/dragdrop.controller.ts +251 -0
  625. package/components/ui/nuraly-ui/src/components/tabs/controllers/editable.controller.ts +292 -0
  626. package/components/ui/nuraly-ui/src/components/tabs/controllers/event.controller.ts +294 -0
  627. package/components/ui/nuraly-ui/src/components/tabs/controllers/index.ts +42 -0
  628. package/components/ui/nuraly-ui/src/components/tabs/controllers/keyboard.controller.ts +276 -0
  629. package/components/ui/nuraly-ui/src/components/tabs/controllers/popout.controller.ts +516 -0
  630. package/components/ui/nuraly-ui/src/components/tabs/index.ts +11 -0
  631. package/components/ui/nuraly-ui/src/components/tabs/react.ts +52 -0
  632. package/components/ui/nuraly-ui/src/components/tabs/tabs.component.ts +499 -0
  633. package/components/ui/nuraly-ui/src/components/tabs/tabs.constant.ts +30 -0
  634. package/components/ui/nuraly-ui/src/components/tabs/tabs.stories.ts +1334 -0
  635. package/components/ui/nuraly-ui/src/components/tabs/tabs.style.ts +569 -0
  636. package/components/ui/nuraly-ui/src/components/tabs/tabs.types.ts +261 -0
  637. package/components/ui/nuraly-ui/src/components/tag/README.md +22 -0
  638. package/components/ui/nuraly-ui/src/components/tag/index.ts +1 -0
  639. package/components/ui/nuraly-ui/src/components/tag/react.ts +13 -0
  640. package/components/ui/nuraly-ui/src/components/tag/tag.component.ts +167 -0
  641. package/components/ui/nuraly-ui/src/components/tag/tag.stories.ts +50 -0
  642. package/components/ui/nuraly-ui/src/components/tag/tag.style.ts +89 -0
  643. package/components/ui/nuraly-ui/src/components/tag/tag.types.ts +30 -0
  644. package/components/ui/nuraly-ui/src/components/textarea/README.md +314 -0
  645. package/components/ui/nuraly-ui/src/components/textarea/controllers/base.controller.ts +142 -0
  646. package/components/ui/nuraly-ui/src/components/textarea/controllers/event.controller.ts +484 -0
  647. package/components/ui/nuraly-ui/src/components/textarea/controllers/index.ts +16 -0
  648. package/components/ui/nuraly-ui/src/components/textarea/controllers/validation.controller.ts +347 -0
  649. package/components/ui/nuraly-ui/src/components/textarea/index.ts +19 -0
  650. package/components/ui/nuraly-ui/src/components/textarea/react.ts +16 -0
  651. package/components/ui/nuraly-ui/src/components/textarea/textarea.component.ts +716 -0
  652. package/components/ui/nuraly-ui/src/components/textarea/textarea.stories.ts +453 -0
  653. package/components/ui/nuraly-ui/src/components/textarea/textarea.style.ts +387 -0
  654. package/components/ui/nuraly-ui/src/components/textarea/textarea.types.ts +113 -0
  655. package/components/ui/nuraly-ui/src/components/timeline/README.md +340 -0
  656. package/components/ui/nuraly-ui/src/components/timeline/index.ts +1 -0
  657. package/components/ui/nuraly-ui/src/components/timeline/react.ts +9 -0
  658. package/components/ui/nuraly-ui/src/components/timeline/timeline.component.ts +235 -0
  659. package/components/ui/nuraly-ui/src/components/timeline/timeline.stories.ts +313 -0
  660. package/components/ui/nuraly-ui/src/components/timeline/timeline.style.ts +235 -0
  661. package/components/ui/nuraly-ui/src/components/timeline/timeline.types.ts +75 -0
  662. package/components/ui/nuraly-ui/src/components/timepicker/README.md +238 -0
  663. package/components/ui/nuraly-ui/src/components/timepicker/controllers/formatting.controller.ts +230 -0
  664. package/components/ui/nuraly-ui/src/components/timepicker/controllers/index.ts +9 -0
  665. package/components/ui/nuraly-ui/src/components/timepicker/controllers/selection.controller.ts +213 -0
  666. package/components/ui/nuraly-ui/src/components/timepicker/controllers/validation.controller.ts +240 -0
  667. package/components/ui/nuraly-ui/src/components/timepicker/index.ts +12 -0
  668. package/components/ui/nuraly-ui/src/components/timepicker/interfaces/timepicker.interface.ts +122 -0
  669. package/components/ui/nuraly-ui/src/components/timepicker/test/timepicker.test.ts +249 -0
  670. package/components/ui/nuraly-ui/src/components/timepicker/timepicker.component.ts +786 -0
  671. package/components/ui/nuraly-ui/src/components/timepicker/timepicker.constants.ts +94 -0
  672. package/components/ui/nuraly-ui/src/components/timepicker/timepicker.stories.ts +643 -0
  673. package/components/ui/nuraly-ui/src/components/timepicker/timepicker.style.ts +569 -0
  674. package/components/ui/nuraly-ui/src/components/timepicker/timepicker.style.variables.ts +122 -0
  675. package/components/ui/nuraly-ui/src/components/timepicker/timepicker.types.ts +183 -0
  676. package/components/ui/nuraly-ui/src/components/timepicker/utils/time.utils.ts +288 -0
  677. package/components/ui/nuraly-ui/src/components/toast/README.md +535 -0
  678. package/components/ui/nuraly-ui/src/components/toast/controllers/base.controller.ts +105 -0
  679. package/components/ui/nuraly-ui/src/components/toast/controllers/index.ts +8 -0
  680. package/components/ui/nuraly-ui/src/components/toast/index.ts +10 -0
  681. package/components/ui/nuraly-ui/src/components/toast/react.ts +19 -0
  682. package/components/ui/nuraly-ui/src/components/toast/toast.component.ts +394 -0
  683. package/components/ui/nuraly-ui/src/components/toast/toast.stories.ts +895 -0
  684. package/components/ui/nuraly-ui/src/components/toast/toast.style.ts +339 -0
  685. package/components/ui/nuraly-ui/src/components/toast/toast.types.ts +155 -0
  686. package/components/ui/nuraly-ui/src/components/tooltips/demo/tooltips-demo.ts +128 -0
  687. package/components/ui/nuraly-ui/src/components/tooltips/index.ts +1 -0
  688. package/components/ui/nuraly-ui/src/components/tooltips/react.ts +0 -0
  689. package/components/ui/nuraly-ui/src/components/tooltips/test/tooltips_test.ts +175 -0
  690. package/components/ui/nuraly-ui/src/components/tooltips/tooltips.component.ts +282 -0
  691. package/components/ui/nuraly-ui/src/components/tooltips/tooltips.constant.ts +15 -0
  692. package/components/ui/nuraly-ui/src/components/tooltips/tooltips.style.ts +103 -0
  693. package/components/ui/nuraly-ui/src/components/tooltips/tooltips.variables.ts +14 -0
  694. package/components/ui/nuraly-ui/src/components/video/index.ts +2 -0
  695. package/components/ui/nuraly-ui/src/components/video/react.ts +17 -0
  696. package/components/ui/nuraly-ui/src/components/video/video.component.ts +179 -0
  697. package/components/ui/nuraly-ui/src/components/video/video.stories.ts +289 -0
  698. package/components/ui/nuraly-ui/src/components/video/video.style.ts +124 -0
  699. package/components/ui/nuraly-ui/src/components/video/video.types.ts +102 -0
  700. package/components/ui/nuraly-ui/src/helpers/ThemeHandler.ts +68 -0
  701. package/components/ui/nuraly-ui/src/helpers/test.ts +8 -0
  702. package/components/ui/nuraly-ui/src/introduction.stories.ts +161 -0
  703. package/components/ui/nuraly-ui/src/shared/README.md +87 -0
  704. package/components/ui/nuraly-ui/src/shared/base-mixin.ts +48 -0
  705. package/components/ui/nuraly-ui/src/shared/constants.ts +0 -0
  706. package/components/ui/nuraly-ui/src/shared/controllers/dropdown.controller.ts +393 -0
  707. package/components/ui/nuraly-ui/src/shared/controllers/dropdown.interface.ts +39 -0
  708. package/components/ui/nuraly-ui/src/shared/controllers/index.ts +3 -0
  709. package/components/ui/nuraly-ui/src/shared/controllers/theme.controller.ts +158 -0
  710. package/components/ui/nuraly-ui/src/shared/dependency-mixin.ts +174 -0
  711. package/components/ui/nuraly-ui/src/shared/event-handler-mixin.ts +190 -0
  712. package/components/ui/nuraly-ui/src/shared/index.ts +20 -0
  713. package/components/ui/nuraly-ui/src/shared/theme-mixin.ts +227 -0
  714. package/components/ui/nuraly-ui/src/shared/themes/README.md +135 -0
  715. package/components/ui/nuraly-ui/src/shared/themes/editor/README.md +202 -0
  716. package/components/ui/nuraly-ui/src/shared/themes/editor.stories.ts +366 -0
  717. package/components/ui/nuraly-ui/src/shared/themes/index.ts +132 -0
  718. package/components/ui/nuraly-ui/src/shared/utils.ts +94 -0
  719. package/components/ui/nuraly-ui/src/shared/validation.types.ts +118 -0
  720. package/components/ui/nuraly-ui/tools/bump-versions.js +83 -0
  721. package/components/ui/nuraly-ui/web-dev-server.config.js +25 -0
  722. package/components/ui/nuraly-ui/web-test-runner.config.js +124 -0
  723. package/dist/CodeEditor-Ch2tv9BE.js +106211 -0
  724. package/dist/SmartAttributeHandler-hoSLpm1Y.js +153 -0
  725. package/dist/abap-B2diVmjb.js +1314 -0
  726. package/dist/apex-3NuJ-nsI.js +315 -0
  727. package/dist/assets/editor.worker-vBWydyGC.js +11 -0
  728. package/dist/assets/html.worker-BSmGlhXp.js +458 -0
  729. package/dist/assets/json.worker-Dqnoedz4.js +42 -0
  730. package/dist/assets/ts.worker-DyHHPhrh.js +37021 -0
  731. package/dist/azcli-XGXuUsMB.js +74 -0
  732. package/dist/bat-B8Vhm634.js +95 -0
  733. package/dist/bicep-Cc8X5S_k.js +108 -0
  734. package/dist/cameligo-Bo3wBh9T.js +168 -0
  735. package/dist/clojure-CPoQlpIK.js +754 -0
  736. package/dist/coffee-BxvTGz39.js +228 -0
  737. package/dist/cpp-5RpEV7vC.js +390 -0
  738. package/dist/csharp-slXXP3fo.js +320 -0
  739. package/dist/csp-B98p6-gH.js +57 -0
  740. package/dist/css-BDsDSAin.js +186 -0
  741. package/dist/cssMode-Bt2uK8XM.js +1446 -0
  742. package/dist/cypher-Dc4IMouD.js +262 -0
  743. package/dist/dart-LhvE3yD2.js +270 -0
  744. package/dist/dockerfile-CwzplJeZ.js +132 -0
  745. package/dist/ecl-DxW3FiJi.js +454 -0
  746. package/dist/elixir-BI40g7TU.js +489 -0
  747. package/dist/flow9-tR2v0bGz.js +141 -0
  748. package/dist/freemarker2-DNc2IxPf.js +643 -0
  749. package/dist/fsharp-BLAma0OT.js +210 -0
  750. package/dist/go-nYcD3y4Z.js +208 -0
  751. package/dist/graphql-Dp1cHWmP.js +141 -0
  752. package/dist/handlebars-CIbFckEw.js +391 -0
  753. package/dist/hcl-6NT8Kbna.js +177 -0
  754. package/dist/html-nRs_fneU.js +281 -0
  755. package/dist/htmlMode-BjehA1YF.js +1456 -0
  756. package/dist/ini-BZCOLrEc.js +68 -0
  757. package/dist/java-DAMcfJbX.js +221 -0
  758. package/dist/javascript-Bn0HduZA.js +75 -0
  759. package/dist/jsonMode-CfGfcJRX.js +1866 -0
  760. package/dist/julia-CQ46G71H.js +496 -0
  761. package/dist/kotlin-CEjVo_6E.js +245 -0
  762. package/dist/less-DreV99nP.js +168 -0
  763. package/dist/lexon-DBVJhqLb.js +151 -0
  764. package/dist/liquid-m4D_LCnC.js +238 -0
  765. package/dist/lua-Dcc_j6L-.js +157 -0
  766. package/dist/m3-B9SlZL4n.js +210 -0
  767. package/dist/markdown-CuGw9_MP.js +202 -0
  768. package/dist/mdx-CakMRbCr.js +171 -0
  769. package/dist/micro-app-entry-CI1Rupdh.js +17479 -0
  770. package/dist/micro-app.bundle.js +8 -0
  771. package/dist/mips-BUWqP-OH.js +194 -0
  772. package/dist/msdax-DtkouYCg.js +377 -0
  773. package/dist/mysql-IkAsWSmF.js +876 -0
  774. package/dist/objective-c-B2-ronfg.js +188 -0
  775. package/dist/pascal-Bsnz2eJA.js +245 -0
  776. package/dist/pascaligo-D_sMUn0Q.js +158 -0
  777. package/dist/perl-BPzHt9SS.js +599 -0
  778. package/dist/pgsql-DlTJB0PD.js +847 -0
  779. package/dist/php-Dmq5OjwK.js +471 -0
  780. package/dist/pla-HJcccrBy.js +131 -0
  781. package/dist/postiats-OQn6DKv-.js +544 -0
  782. package/dist/powerquery-DKaMYC8w.js +890 -0
  783. package/dist/powershell-DWeJHik1.js +233 -0
  784. package/dist/protobuf-CBn_IseU.js +422 -0
  785. package/dist/pug-BoRpCINl.js +393 -0
  786. package/dist/python-oJwaiPUY.js +259 -0
  787. package/dist/qsharp-4rGyVZOw.js +282 -0
  788. package/dist/r-DsgLhBOb.js +245 -0
  789. package/dist/razor-u_dd4rqc.js +512 -0
  790. package/dist/redis-B2fdL4Bg.js +298 -0
  791. package/dist/redshift-DoaeyCkH.js +806 -0
  792. package/dist/restructuredtext-D-6OFBY9.js +162 -0
  793. package/dist/ruby-D1DD6baV.js +444 -0
  794. package/dist/rust-DssUV39M.js +337 -0
  795. package/dist/sb-Dmb6tAdv.js +110 -0
  796. package/dist/scala-Co3ETaym.js +353 -0
  797. package/dist/scheme-CMrqXTty.js +114 -0
  798. package/dist/scss-DkGudv8Q.js +244 -0
  799. package/dist/shell-BHN2BI4L.js +224 -0
  800. package/dist/solidity-b-R-raGB.js +1351 -0
  801. package/dist/sophia-Y4GjyxNB.js +190 -0
  802. package/dist/sparql-CDAPZb88.js +193 -0
  803. package/dist/sql-DkkpPiUq.js +818 -0
  804. package/dist/st-CSPV91Ej.js +415 -0
  805. package/dist/style.css +1 -0
  806. package/dist/swift-DdSC5O48.js +315 -0
  807. package/dist/systemverilog-CI03XpAv.js +556 -0
  808. package/dist/tcl-B8DayMSI.js +232 -0
  809. package/dist/tsMode-DlZ38d3D.js +813 -0
  810. package/dist/twig-B1AUPVB_.js +323 -0
  811. package/dist/typescript-Bjs2N5Be.js +328 -0
  812. package/dist/vb-BIC7ccdG.js +364 -0
  813. package/dist/wgsl-Bv2xeo60.js +420 -0
  814. package/dist/xml-BCveATLl.js +95 -0
  815. package/dist/yaml-BfWQPJQi.js +184 -0
  816. package/handlers/compiler.ts +362 -0
  817. package/handlers/context-setup.ts +349 -0
  818. package/handlers/handler-executor.ts +348 -0
  819. package/handlers/index.ts +184 -0
  820. package/handlers/runtime-api/applications.ts +18 -0
  821. package/handlers/runtime-api/component-properties.ts +78 -0
  822. package/handlers/runtime-api/components.ts +63 -0
  823. package/handlers/runtime-api/editor.ts +29 -0
  824. package/handlers/runtime-api/functions.ts +42 -0
  825. package/handlers/runtime-api/index.ts +221 -0
  826. package/handlers/runtime-api/navigation.ts +52 -0
  827. package/handlers/runtime-api/pages.ts +45 -0
  828. package/handlers/runtime-api/storage.ts +95 -0
  829. package/handlers/runtime-api/toast.ts +108 -0
  830. package/handlers/runtime-api/variables.ts +400 -0
  831. package/index.ts +188 -0
  832. package/micro-app/README.md +565 -0
  833. package/micro-app/index.ts +29 -0
  834. package/micro-app/messaging/MicroAppMessageBus.ts +246 -0
  835. package/micro-app/state/MicroAppPageManager.ts +275 -0
  836. package/micro-app/state/MicroAppRuntimeContext.ts +423 -0
  837. package/micro-app/state/MicroAppStoreContext.ts +441 -0
  838. package/micro-app/state/SharedVariableRegistry.ts +187 -0
  839. package/micro-app/state/VariableScopeManager.ts +310 -0
  840. package/micro-app/utils/ComponentNamespaceManager.ts +88 -0
  841. package/micro-app-entry.ts +34 -0
  842. package/package.json +119 -0
  843. package/redux/actions/aitchat.ts +17 -0
  844. package/redux/actions/application/addPageToApplicationAction.ts +14 -0
  845. package/redux/actions/application/addTempApplication.ts +8 -0
  846. package/redux/actions/application/closeShareApplicationModalAction.ts +5 -0
  847. package/redux/actions/application/index.ts +20 -0
  848. package/redux/actions/application/loadApplicationPermissionAction.ts +10 -0
  849. package/redux/actions/application/resetPermissionMessage.ts +8 -0
  850. package/redux/actions/application/setApplication.ts +5 -0
  851. package/redux/actions/application/setApplicationPermissionAction.ts +6 -0
  852. package/redux/actions/application/setDefaultApplicationPageIfNotSet.ts +12 -0
  853. package/redux/actions/application/setPermissionMessage.ts +8 -0
  854. package/redux/actions/application/showCreateApplicationModalAction.ts +5 -0
  855. package/redux/actions/application/showShareApplicationModalAction.ts +5 -0
  856. package/redux/actions/application/updateApplication.ts +16 -0
  857. package/redux/actions/component/addComponentAction.ts +90 -0
  858. package/redux/actions/component/addComponentAsChildOf.ts +29 -0
  859. package/redux/actions/component/addComponentToCurrentPageAction.ts +32 -0
  860. package/redux/actions/component/copyComponentAction.ts +12 -0
  861. package/redux/actions/component/deleteComponentAction.ts +52 -0
  862. package/redux/actions/component/index.ts +22 -0
  863. package/redux/actions/component/moveDraggedComponent.ts +130 -0
  864. package/redux/actions/component/moveDraggedComponentInside.ts +64 -0
  865. package/redux/actions/component/moveDraggedComponentIntoCurrentPageRoot.ts +50 -0
  866. package/redux/actions/component/setCurrentComponentIdAction.ts +6 -0
  867. package/redux/actions/component/setDraggingComponentInfo.ts +14 -0
  868. package/redux/actions/component/setHoveredComponentAction.ts +5 -0
  869. package/redux/actions/component/setHoveredComponentIdAction.ts +5 -0
  870. package/redux/actions/component/update-component-name.ts +63 -0
  871. package/redux/actions/component/updateComponentAttributes.ts +192 -0
  872. package/redux/actions/component.ts +25 -0
  873. package/redux/actions/debug/index.ts +1 -0
  874. package/redux/actions/debug/store.ts +72 -0
  875. package/redux/actions/editor/closeCreateApplicationModalAction.ts +5 -0
  876. package/redux/actions/editor/closeEditorTab.ts +9 -0
  877. package/redux/actions/editor/index.ts +12 -0
  878. package/redux/actions/editor/openEditorTab.ts +12 -0
  879. package/redux/actions/editor/setCurrentEditorTab.ts +8 -0
  880. package/redux/actions/editor/setEnvirementMode.ts +8 -0
  881. package/redux/actions/environment.ts +5 -0
  882. package/redux/actions/index.ts +28 -0
  883. package/redux/actions/kernel/index.ts +1 -0
  884. package/redux/actions/kernel/set-property.ts +0 -0
  885. package/redux/actions/page/addPageAction.ts +7 -0
  886. package/redux/actions/page/deletePageAction.ts +13 -0
  887. package/redux/actions/page/index.ts +12 -0
  888. package/redux/actions/page/removeComponentToCurrentPageAction.ts +32 -0
  889. package/redux/actions/page/setContextMenuEvent.ts +5 -0
  890. package/redux/actions/page/setCurrentPageAction.ts +6 -0
  891. package/redux/actions/page/setCurrentPageViewPort.ts +5 -0
  892. package/redux/actions/page/setResizing.ts +5 -0
  893. package/redux/actions/page/setShowBorder.ts +5 -0
  894. package/redux/actions/page/updatePageAction.ts +20 -0
  895. package/redux/actions/page/updatePageInfo.ts +5 -0
  896. package/redux/actions/page/updatePageStyleAttributes.ts +13 -0
  897. package/redux/actions/page/updatePageZoom.ts +5 -0
  898. package/redux/handlers/aichat/create-chat.handler.ts +22 -0
  899. package/redux/handlers/api-urls.ts +8 -0
  900. package/redux/handlers/applications/handler.ts +78 -0
  901. package/redux/handlers/applications/index.ts +1 -0
  902. package/redux/handlers/components/add-component.handler.ts +30 -0
  903. package/redux/handlers/components/delete-component.handler.ts +21 -0
  904. package/redux/handlers/components/index.ts +6 -0
  905. package/redux/handlers/components/interfaces/add-component.request.ts +4 -0
  906. package/redux/handlers/components/interfaces/index.ts +2 -0
  907. package/redux/handlers/components/interfaces/update-component.reques.ts +3 -0
  908. package/redux/handlers/components/refresh-component.ts +25 -0
  909. package/redux/handlers/components/update-component.handler.ts +32 -0
  910. package/redux/handlers/components/validation-handler.ts +45 -0
  911. package/redux/handlers/functions/build-function-handler.ts +10 -0
  912. package/redux/handlers/functions/deploy-function-handler.ts +10 -0
  913. package/redux/handlers/functions/index.ts +13 -0
  914. package/redux/handlers/functions/invoke-function-handler.ts +13 -0
  915. package/redux/handlers/functions/load-functions-handler.ts +10 -0
  916. package/redux/handlers/functions/update-function-handler.ts +13 -0
  917. package/redux/handlers/index.ts +10 -0
  918. package/redux/handlers/pages/deletePageHandler.ts +23 -0
  919. package/redux/handlers/pages/handler.ts +59 -0
  920. package/redux/handlers/pages/index.ts +4 -0
  921. package/redux/handlers/pages/page.interface.ts +14 -0
  922. package/redux/handlers/pages/refresh-pages.ts +26 -0
  923. package/redux/handlers/providers/interface.ts +7 -0
  924. package/redux/index.ts +8 -0
  925. package/redux/store/actions/component.ts +9 -0
  926. package/redux/store/apps.ts +160 -0
  927. package/redux/store/component/component.interface.ts +90 -0
  928. package/redux/store/component/helper.ts +78 -0
  929. package/redux/store/component/index.ts +51 -0
  930. package/redux/store/component/runtime-store.ts +0 -0
  931. package/redux/store/component/store.ts +306 -0
  932. package/redux/store/context.ts +138 -0
  933. package/redux/store/debug.ts +28 -0
  934. package/redux/store/environment.ts +20 -0
  935. package/redux/store/index.ts +77 -0
  936. package/redux/store/interfaces/component.interfaces.ts +4 -0
  937. package/redux/store/page.ts +105 -0
  938. package/redux/store/provider.ts +24 -0
  939. package/redux/store/ssr/server-data.ts +4 -0
  940. package/redux/store/toast.ts +26 -0
  941. package/state/editor.ts +370 -0
  942. package/state/index.ts +27 -0
  943. package/state/runtime-context.ts +784 -0
  944. package/types/IRuntimeContext.ts +203 -0
  945. package/types/core.types.ts +28 -0
  946. package/types/database.types.ts +395 -0
  947. package/types/index.ts +7 -0
  948. package/utils/RuntimeContextHelpers.ts +454 -0
  949. package/utils/api-calls-utils.ts +9 -0
  950. package/utils/change-detection.ts +58 -0
  951. package/utils/clipboard-utils.ts +113 -0
  952. package/utils/constants.ts +2 -0
  953. package/utils/envirement.ts +2 -0
  954. package/utils/handler-security-rules.ts +153 -0
  955. package/utils/handler-validator.ts +447 -0
  956. package/utils/index.ts +67 -0
  957. package/utils/local-storage.ts +26 -0
  958. package/utils/logger.ts +90 -0
  959. package/utils/memoize.ts +15 -0
  960. package/utils/naming-generator.ts +6 -0
  961. package/utils/object.utils.ts +15 -0
  962. package/utils/performance-utils.ts +589 -0
  963. package/utils/randomness.ts +3 -0
  964. package/utils/register-components.ts +49 -0
  965. package/utils/render-util.ts +173 -0
  966. package/utils/runtime-helpers.ts +57 -0
  967. package/utils/styleUtil.ts +7 -0
  968. package/utils/time.ts +7 -0
  969. package/utils/validation-error-formatter.ts +11 -0
  970. package/vite.config.ts +83 -0
@@ -0,0 +1,1351 @@
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 x = {
8
+ comments: {
9
+ lineComment: "//",
10
+ blockComment: ["/*", "*/"]
11
+ },
12
+ brackets: [
13
+ ["{", "}"],
14
+ ["[", "]"],
15
+ ["(", ")"],
16
+ ["<", ">"]
17
+ ],
18
+ autoClosingPairs: [
19
+ { open: '"', close: '"', notIn: ["string", "comment"] },
20
+ { open: "{", close: "}", notIn: ["string", "comment"] },
21
+ { open: "[", close: "]", notIn: ["string", "comment"] },
22
+ { open: "(", close: ")", notIn: ["string", "comment"] }
23
+ ]
24
+ }, e = {
25
+ defaultToken: "",
26
+ tokenPostfix: ".sol",
27
+ brackets: [
28
+ { token: "delimiter.curly", open: "{", close: "}" },
29
+ { token: "delimiter.parenthesis", open: "(", close: ")" },
30
+ { token: "delimiter.square", open: "[", close: "]" },
31
+ { token: "delimiter.angle", open: "<", close: ">" }
32
+ ],
33
+ keywords: [
34
+ "pragma",
35
+ "solidity",
36
+ "contract",
37
+ "library",
38
+ "using",
39
+ "struct",
40
+ "function",
41
+ "modifier",
42
+ "constructor",
43
+ "address",
44
+ "string",
45
+ "bool",
46
+ "Int",
47
+ "Uint",
48
+ "Byte",
49
+ "Fixed",
50
+ "Ufixed",
51
+ "int",
52
+ "int8",
53
+ "int16",
54
+ "int24",
55
+ "int32",
56
+ "int40",
57
+ "int48",
58
+ "int56",
59
+ "int64",
60
+ "int72",
61
+ "int80",
62
+ "int88",
63
+ "int96",
64
+ "int104",
65
+ "int112",
66
+ "int120",
67
+ "int128",
68
+ "int136",
69
+ "int144",
70
+ "int152",
71
+ "int160",
72
+ "int168",
73
+ "int176",
74
+ "int184",
75
+ "int192",
76
+ "int200",
77
+ "int208",
78
+ "int216",
79
+ "int224",
80
+ "int232",
81
+ "int240",
82
+ "int248",
83
+ "int256",
84
+ "uint",
85
+ "uint8",
86
+ "uint16",
87
+ "uint24",
88
+ "uint32",
89
+ "uint40",
90
+ "uint48",
91
+ "uint56",
92
+ "uint64",
93
+ "uint72",
94
+ "uint80",
95
+ "uint88",
96
+ "uint96",
97
+ "uint104",
98
+ "uint112",
99
+ "uint120",
100
+ "uint128",
101
+ "uint136",
102
+ "uint144",
103
+ "uint152",
104
+ "uint160",
105
+ "uint168",
106
+ "uint176",
107
+ "uint184",
108
+ "uint192",
109
+ "uint200",
110
+ "uint208",
111
+ "uint216",
112
+ "uint224",
113
+ "uint232",
114
+ "uint240",
115
+ "uint248",
116
+ "uint256",
117
+ "byte",
118
+ "bytes",
119
+ "bytes1",
120
+ "bytes2",
121
+ "bytes3",
122
+ "bytes4",
123
+ "bytes5",
124
+ "bytes6",
125
+ "bytes7",
126
+ "bytes8",
127
+ "bytes9",
128
+ "bytes10",
129
+ "bytes11",
130
+ "bytes12",
131
+ "bytes13",
132
+ "bytes14",
133
+ "bytes15",
134
+ "bytes16",
135
+ "bytes17",
136
+ "bytes18",
137
+ "bytes19",
138
+ "bytes20",
139
+ "bytes21",
140
+ "bytes22",
141
+ "bytes23",
142
+ "bytes24",
143
+ "bytes25",
144
+ "bytes26",
145
+ "bytes27",
146
+ "bytes28",
147
+ "bytes29",
148
+ "bytes30",
149
+ "bytes31",
150
+ "bytes32",
151
+ "fixed",
152
+ "fixed0x8",
153
+ "fixed0x16",
154
+ "fixed0x24",
155
+ "fixed0x32",
156
+ "fixed0x40",
157
+ "fixed0x48",
158
+ "fixed0x56",
159
+ "fixed0x64",
160
+ "fixed0x72",
161
+ "fixed0x80",
162
+ "fixed0x88",
163
+ "fixed0x96",
164
+ "fixed0x104",
165
+ "fixed0x112",
166
+ "fixed0x120",
167
+ "fixed0x128",
168
+ "fixed0x136",
169
+ "fixed0x144",
170
+ "fixed0x152",
171
+ "fixed0x160",
172
+ "fixed0x168",
173
+ "fixed0x176",
174
+ "fixed0x184",
175
+ "fixed0x192",
176
+ "fixed0x200",
177
+ "fixed0x208",
178
+ "fixed0x216",
179
+ "fixed0x224",
180
+ "fixed0x232",
181
+ "fixed0x240",
182
+ "fixed0x248",
183
+ "fixed0x256",
184
+ "fixed8x8",
185
+ "fixed8x16",
186
+ "fixed8x24",
187
+ "fixed8x32",
188
+ "fixed8x40",
189
+ "fixed8x48",
190
+ "fixed8x56",
191
+ "fixed8x64",
192
+ "fixed8x72",
193
+ "fixed8x80",
194
+ "fixed8x88",
195
+ "fixed8x96",
196
+ "fixed8x104",
197
+ "fixed8x112",
198
+ "fixed8x120",
199
+ "fixed8x128",
200
+ "fixed8x136",
201
+ "fixed8x144",
202
+ "fixed8x152",
203
+ "fixed8x160",
204
+ "fixed8x168",
205
+ "fixed8x176",
206
+ "fixed8x184",
207
+ "fixed8x192",
208
+ "fixed8x200",
209
+ "fixed8x208",
210
+ "fixed8x216",
211
+ "fixed8x224",
212
+ "fixed8x232",
213
+ "fixed8x240",
214
+ "fixed8x248",
215
+ "fixed16x8",
216
+ "fixed16x16",
217
+ "fixed16x24",
218
+ "fixed16x32",
219
+ "fixed16x40",
220
+ "fixed16x48",
221
+ "fixed16x56",
222
+ "fixed16x64",
223
+ "fixed16x72",
224
+ "fixed16x80",
225
+ "fixed16x88",
226
+ "fixed16x96",
227
+ "fixed16x104",
228
+ "fixed16x112",
229
+ "fixed16x120",
230
+ "fixed16x128",
231
+ "fixed16x136",
232
+ "fixed16x144",
233
+ "fixed16x152",
234
+ "fixed16x160",
235
+ "fixed16x168",
236
+ "fixed16x176",
237
+ "fixed16x184",
238
+ "fixed16x192",
239
+ "fixed16x200",
240
+ "fixed16x208",
241
+ "fixed16x216",
242
+ "fixed16x224",
243
+ "fixed16x232",
244
+ "fixed16x240",
245
+ "fixed24x8",
246
+ "fixed24x16",
247
+ "fixed24x24",
248
+ "fixed24x32",
249
+ "fixed24x40",
250
+ "fixed24x48",
251
+ "fixed24x56",
252
+ "fixed24x64",
253
+ "fixed24x72",
254
+ "fixed24x80",
255
+ "fixed24x88",
256
+ "fixed24x96",
257
+ "fixed24x104",
258
+ "fixed24x112",
259
+ "fixed24x120",
260
+ "fixed24x128",
261
+ "fixed24x136",
262
+ "fixed24x144",
263
+ "fixed24x152",
264
+ "fixed24x160",
265
+ "fixed24x168",
266
+ "fixed24x176",
267
+ "fixed24x184",
268
+ "fixed24x192",
269
+ "fixed24x200",
270
+ "fixed24x208",
271
+ "fixed24x216",
272
+ "fixed24x224",
273
+ "fixed24x232",
274
+ "fixed32x8",
275
+ "fixed32x16",
276
+ "fixed32x24",
277
+ "fixed32x32",
278
+ "fixed32x40",
279
+ "fixed32x48",
280
+ "fixed32x56",
281
+ "fixed32x64",
282
+ "fixed32x72",
283
+ "fixed32x80",
284
+ "fixed32x88",
285
+ "fixed32x96",
286
+ "fixed32x104",
287
+ "fixed32x112",
288
+ "fixed32x120",
289
+ "fixed32x128",
290
+ "fixed32x136",
291
+ "fixed32x144",
292
+ "fixed32x152",
293
+ "fixed32x160",
294
+ "fixed32x168",
295
+ "fixed32x176",
296
+ "fixed32x184",
297
+ "fixed32x192",
298
+ "fixed32x200",
299
+ "fixed32x208",
300
+ "fixed32x216",
301
+ "fixed32x224",
302
+ "fixed40x8",
303
+ "fixed40x16",
304
+ "fixed40x24",
305
+ "fixed40x32",
306
+ "fixed40x40",
307
+ "fixed40x48",
308
+ "fixed40x56",
309
+ "fixed40x64",
310
+ "fixed40x72",
311
+ "fixed40x80",
312
+ "fixed40x88",
313
+ "fixed40x96",
314
+ "fixed40x104",
315
+ "fixed40x112",
316
+ "fixed40x120",
317
+ "fixed40x128",
318
+ "fixed40x136",
319
+ "fixed40x144",
320
+ "fixed40x152",
321
+ "fixed40x160",
322
+ "fixed40x168",
323
+ "fixed40x176",
324
+ "fixed40x184",
325
+ "fixed40x192",
326
+ "fixed40x200",
327
+ "fixed40x208",
328
+ "fixed40x216",
329
+ "fixed48x8",
330
+ "fixed48x16",
331
+ "fixed48x24",
332
+ "fixed48x32",
333
+ "fixed48x40",
334
+ "fixed48x48",
335
+ "fixed48x56",
336
+ "fixed48x64",
337
+ "fixed48x72",
338
+ "fixed48x80",
339
+ "fixed48x88",
340
+ "fixed48x96",
341
+ "fixed48x104",
342
+ "fixed48x112",
343
+ "fixed48x120",
344
+ "fixed48x128",
345
+ "fixed48x136",
346
+ "fixed48x144",
347
+ "fixed48x152",
348
+ "fixed48x160",
349
+ "fixed48x168",
350
+ "fixed48x176",
351
+ "fixed48x184",
352
+ "fixed48x192",
353
+ "fixed48x200",
354
+ "fixed48x208",
355
+ "fixed56x8",
356
+ "fixed56x16",
357
+ "fixed56x24",
358
+ "fixed56x32",
359
+ "fixed56x40",
360
+ "fixed56x48",
361
+ "fixed56x56",
362
+ "fixed56x64",
363
+ "fixed56x72",
364
+ "fixed56x80",
365
+ "fixed56x88",
366
+ "fixed56x96",
367
+ "fixed56x104",
368
+ "fixed56x112",
369
+ "fixed56x120",
370
+ "fixed56x128",
371
+ "fixed56x136",
372
+ "fixed56x144",
373
+ "fixed56x152",
374
+ "fixed56x160",
375
+ "fixed56x168",
376
+ "fixed56x176",
377
+ "fixed56x184",
378
+ "fixed56x192",
379
+ "fixed56x200",
380
+ "fixed64x8",
381
+ "fixed64x16",
382
+ "fixed64x24",
383
+ "fixed64x32",
384
+ "fixed64x40",
385
+ "fixed64x48",
386
+ "fixed64x56",
387
+ "fixed64x64",
388
+ "fixed64x72",
389
+ "fixed64x80",
390
+ "fixed64x88",
391
+ "fixed64x96",
392
+ "fixed64x104",
393
+ "fixed64x112",
394
+ "fixed64x120",
395
+ "fixed64x128",
396
+ "fixed64x136",
397
+ "fixed64x144",
398
+ "fixed64x152",
399
+ "fixed64x160",
400
+ "fixed64x168",
401
+ "fixed64x176",
402
+ "fixed64x184",
403
+ "fixed64x192",
404
+ "fixed72x8",
405
+ "fixed72x16",
406
+ "fixed72x24",
407
+ "fixed72x32",
408
+ "fixed72x40",
409
+ "fixed72x48",
410
+ "fixed72x56",
411
+ "fixed72x64",
412
+ "fixed72x72",
413
+ "fixed72x80",
414
+ "fixed72x88",
415
+ "fixed72x96",
416
+ "fixed72x104",
417
+ "fixed72x112",
418
+ "fixed72x120",
419
+ "fixed72x128",
420
+ "fixed72x136",
421
+ "fixed72x144",
422
+ "fixed72x152",
423
+ "fixed72x160",
424
+ "fixed72x168",
425
+ "fixed72x176",
426
+ "fixed72x184",
427
+ "fixed80x8",
428
+ "fixed80x16",
429
+ "fixed80x24",
430
+ "fixed80x32",
431
+ "fixed80x40",
432
+ "fixed80x48",
433
+ "fixed80x56",
434
+ "fixed80x64",
435
+ "fixed80x72",
436
+ "fixed80x80",
437
+ "fixed80x88",
438
+ "fixed80x96",
439
+ "fixed80x104",
440
+ "fixed80x112",
441
+ "fixed80x120",
442
+ "fixed80x128",
443
+ "fixed80x136",
444
+ "fixed80x144",
445
+ "fixed80x152",
446
+ "fixed80x160",
447
+ "fixed80x168",
448
+ "fixed80x176",
449
+ "fixed88x8",
450
+ "fixed88x16",
451
+ "fixed88x24",
452
+ "fixed88x32",
453
+ "fixed88x40",
454
+ "fixed88x48",
455
+ "fixed88x56",
456
+ "fixed88x64",
457
+ "fixed88x72",
458
+ "fixed88x80",
459
+ "fixed88x88",
460
+ "fixed88x96",
461
+ "fixed88x104",
462
+ "fixed88x112",
463
+ "fixed88x120",
464
+ "fixed88x128",
465
+ "fixed88x136",
466
+ "fixed88x144",
467
+ "fixed88x152",
468
+ "fixed88x160",
469
+ "fixed88x168",
470
+ "fixed96x8",
471
+ "fixed96x16",
472
+ "fixed96x24",
473
+ "fixed96x32",
474
+ "fixed96x40",
475
+ "fixed96x48",
476
+ "fixed96x56",
477
+ "fixed96x64",
478
+ "fixed96x72",
479
+ "fixed96x80",
480
+ "fixed96x88",
481
+ "fixed96x96",
482
+ "fixed96x104",
483
+ "fixed96x112",
484
+ "fixed96x120",
485
+ "fixed96x128",
486
+ "fixed96x136",
487
+ "fixed96x144",
488
+ "fixed96x152",
489
+ "fixed96x160",
490
+ "fixed104x8",
491
+ "fixed104x16",
492
+ "fixed104x24",
493
+ "fixed104x32",
494
+ "fixed104x40",
495
+ "fixed104x48",
496
+ "fixed104x56",
497
+ "fixed104x64",
498
+ "fixed104x72",
499
+ "fixed104x80",
500
+ "fixed104x88",
501
+ "fixed104x96",
502
+ "fixed104x104",
503
+ "fixed104x112",
504
+ "fixed104x120",
505
+ "fixed104x128",
506
+ "fixed104x136",
507
+ "fixed104x144",
508
+ "fixed104x152",
509
+ "fixed112x8",
510
+ "fixed112x16",
511
+ "fixed112x24",
512
+ "fixed112x32",
513
+ "fixed112x40",
514
+ "fixed112x48",
515
+ "fixed112x56",
516
+ "fixed112x64",
517
+ "fixed112x72",
518
+ "fixed112x80",
519
+ "fixed112x88",
520
+ "fixed112x96",
521
+ "fixed112x104",
522
+ "fixed112x112",
523
+ "fixed112x120",
524
+ "fixed112x128",
525
+ "fixed112x136",
526
+ "fixed112x144",
527
+ "fixed120x8",
528
+ "fixed120x16",
529
+ "fixed120x24",
530
+ "fixed120x32",
531
+ "fixed120x40",
532
+ "fixed120x48",
533
+ "fixed120x56",
534
+ "fixed120x64",
535
+ "fixed120x72",
536
+ "fixed120x80",
537
+ "fixed120x88",
538
+ "fixed120x96",
539
+ "fixed120x104",
540
+ "fixed120x112",
541
+ "fixed120x120",
542
+ "fixed120x128",
543
+ "fixed120x136",
544
+ "fixed128x8",
545
+ "fixed128x16",
546
+ "fixed128x24",
547
+ "fixed128x32",
548
+ "fixed128x40",
549
+ "fixed128x48",
550
+ "fixed128x56",
551
+ "fixed128x64",
552
+ "fixed128x72",
553
+ "fixed128x80",
554
+ "fixed128x88",
555
+ "fixed128x96",
556
+ "fixed128x104",
557
+ "fixed128x112",
558
+ "fixed128x120",
559
+ "fixed128x128",
560
+ "fixed136x8",
561
+ "fixed136x16",
562
+ "fixed136x24",
563
+ "fixed136x32",
564
+ "fixed136x40",
565
+ "fixed136x48",
566
+ "fixed136x56",
567
+ "fixed136x64",
568
+ "fixed136x72",
569
+ "fixed136x80",
570
+ "fixed136x88",
571
+ "fixed136x96",
572
+ "fixed136x104",
573
+ "fixed136x112",
574
+ "fixed136x120",
575
+ "fixed144x8",
576
+ "fixed144x16",
577
+ "fixed144x24",
578
+ "fixed144x32",
579
+ "fixed144x40",
580
+ "fixed144x48",
581
+ "fixed144x56",
582
+ "fixed144x64",
583
+ "fixed144x72",
584
+ "fixed144x80",
585
+ "fixed144x88",
586
+ "fixed144x96",
587
+ "fixed144x104",
588
+ "fixed144x112",
589
+ "fixed152x8",
590
+ "fixed152x16",
591
+ "fixed152x24",
592
+ "fixed152x32",
593
+ "fixed152x40",
594
+ "fixed152x48",
595
+ "fixed152x56",
596
+ "fixed152x64",
597
+ "fixed152x72",
598
+ "fixed152x80",
599
+ "fixed152x88",
600
+ "fixed152x96",
601
+ "fixed152x104",
602
+ "fixed160x8",
603
+ "fixed160x16",
604
+ "fixed160x24",
605
+ "fixed160x32",
606
+ "fixed160x40",
607
+ "fixed160x48",
608
+ "fixed160x56",
609
+ "fixed160x64",
610
+ "fixed160x72",
611
+ "fixed160x80",
612
+ "fixed160x88",
613
+ "fixed160x96",
614
+ "fixed168x8",
615
+ "fixed168x16",
616
+ "fixed168x24",
617
+ "fixed168x32",
618
+ "fixed168x40",
619
+ "fixed168x48",
620
+ "fixed168x56",
621
+ "fixed168x64",
622
+ "fixed168x72",
623
+ "fixed168x80",
624
+ "fixed168x88",
625
+ "fixed176x8",
626
+ "fixed176x16",
627
+ "fixed176x24",
628
+ "fixed176x32",
629
+ "fixed176x40",
630
+ "fixed176x48",
631
+ "fixed176x56",
632
+ "fixed176x64",
633
+ "fixed176x72",
634
+ "fixed176x80",
635
+ "fixed184x8",
636
+ "fixed184x16",
637
+ "fixed184x24",
638
+ "fixed184x32",
639
+ "fixed184x40",
640
+ "fixed184x48",
641
+ "fixed184x56",
642
+ "fixed184x64",
643
+ "fixed184x72",
644
+ "fixed192x8",
645
+ "fixed192x16",
646
+ "fixed192x24",
647
+ "fixed192x32",
648
+ "fixed192x40",
649
+ "fixed192x48",
650
+ "fixed192x56",
651
+ "fixed192x64",
652
+ "fixed200x8",
653
+ "fixed200x16",
654
+ "fixed200x24",
655
+ "fixed200x32",
656
+ "fixed200x40",
657
+ "fixed200x48",
658
+ "fixed200x56",
659
+ "fixed208x8",
660
+ "fixed208x16",
661
+ "fixed208x24",
662
+ "fixed208x32",
663
+ "fixed208x40",
664
+ "fixed208x48",
665
+ "fixed216x8",
666
+ "fixed216x16",
667
+ "fixed216x24",
668
+ "fixed216x32",
669
+ "fixed216x40",
670
+ "fixed224x8",
671
+ "fixed224x16",
672
+ "fixed224x24",
673
+ "fixed224x32",
674
+ "fixed232x8",
675
+ "fixed232x16",
676
+ "fixed232x24",
677
+ "fixed240x8",
678
+ "fixed240x16",
679
+ "fixed248x8",
680
+ "ufixed",
681
+ "ufixed0x8",
682
+ "ufixed0x16",
683
+ "ufixed0x24",
684
+ "ufixed0x32",
685
+ "ufixed0x40",
686
+ "ufixed0x48",
687
+ "ufixed0x56",
688
+ "ufixed0x64",
689
+ "ufixed0x72",
690
+ "ufixed0x80",
691
+ "ufixed0x88",
692
+ "ufixed0x96",
693
+ "ufixed0x104",
694
+ "ufixed0x112",
695
+ "ufixed0x120",
696
+ "ufixed0x128",
697
+ "ufixed0x136",
698
+ "ufixed0x144",
699
+ "ufixed0x152",
700
+ "ufixed0x160",
701
+ "ufixed0x168",
702
+ "ufixed0x176",
703
+ "ufixed0x184",
704
+ "ufixed0x192",
705
+ "ufixed0x200",
706
+ "ufixed0x208",
707
+ "ufixed0x216",
708
+ "ufixed0x224",
709
+ "ufixed0x232",
710
+ "ufixed0x240",
711
+ "ufixed0x248",
712
+ "ufixed0x256",
713
+ "ufixed8x8",
714
+ "ufixed8x16",
715
+ "ufixed8x24",
716
+ "ufixed8x32",
717
+ "ufixed8x40",
718
+ "ufixed8x48",
719
+ "ufixed8x56",
720
+ "ufixed8x64",
721
+ "ufixed8x72",
722
+ "ufixed8x80",
723
+ "ufixed8x88",
724
+ "ufixed8x96",
725
+ "ufixed8x104",
726
+ "ufixed8x112",
727
+ "ufixed8x120",
728
+ "ufixed8x128",
729
+ "ufixed8x136",
730
+ "ufixed8x144",
731
+ "ufixed8x152",
732
+ "ufixed8x160",
733
+ "ufixed8x168",
734
+ "ufixed8x176",
735
+ "ufixed8x184",
736
+ "ufixed8x192",
737
+ "ufixed8x200",
738
+ "ufixed8x208",
739
+ "ufixed8x216",
740
+ "ufixed8x224",
741
+ "ufixed8x232",
742
+ "ufixed8x240",
743
+ "ufixed8x248",
744
+ "ufixed16x8",
745
+ "ufixed16x16",
746
+ "ufixed16x24",
747
+ "ufixed16x32",
748
+ "ufixed16x40",
749
+ "ufixed16x48",
750
+ "ufixed16x56",
751
+ "ufixed16x64",
752
+ "ufixed16x72",
753
+ "ufixed16x80",
754
+ "ufixed16x88",
755
+ "ufixed16x96",
756
+ "ufixed16x104",
757
+ "ufixed16x112",
758
+ "ufixed16x120",
759
+ "ufixed16x128",
760
+ "ufixed16x136",
761
+ "ufixed16x144",
762
+ "ufixed16x152",
763
+ "ufixed16x160",
764
+ "ufixed16x168",
765
+ "ufixed16x176",
766
+ "ufixed16x184",
767
+ "ufixed16x192",
768
+ "ufixed16x200",
769
+ "ufixed16x208",
770
+ "ufixed16x216",
771
+ "ufixed16x224",
772
+ "ufixed16x232",
773
+ "ufixed16x240",
774
+ "ufixed24x8",
775
+ "ufixed24x16",
776
+ "ufixed24x24",
777
+ "ufixed24x32",
778
+ "ufixed24x40",
779
+ "ufixed24x48",
780
+ "ufixed24x56",
781
+ "ufixed24x64",
782
+ "ufixed24x72",
783
+ "ufixed24x80",
784
+ "ufixed24x88",
785
+ "ufixed24x96",
786
+ "ufixed24x104",
787
+ "ufixed24x112",
788
+ "ufixed24x120",
789
+ "ufixed24x128",
790
+ "ufixed24x136",
791
+ "ufixed24x144",
792
+ "ufixed24x152",
793
+ "ufixed24x160",
794
+ "ufixed24x168",
795
+ "ufixed24x176",
796
+ "ufixed24x184",
797
+ "ufixed24x192",
798
+ "ufixed24x200",
799
+ "ufixed24x208",
800
+ "ufixed24x216",
801
+ "ufixed24x224",
802
+ "ufixed24x232",
803
+ "ufixed32x8",
804
+ "ufixed32x16",
805
+ "ufixed32x24",
806
+ "ufixed32x32",
807
+ "ufixed32x40",
808
+ "ufixed32x48",
809
+ "ufixed32x56",
810
+ "ufixed32x64",
811
+ "ufixed32x72",
812
+ "ufixed32x80",
813
+ "ufixed32x88",
814
+ "ufixed32x96",
815
+ "ufixed32x104",
816
+ "ufixed32x112",
817
+ "ufixed32x120",
818
+ "ufixed32x128",
819
+ "ufixed32x136",
820
+ "ufixed32x144",
821
+ "ufixed32x152",
822
+ "ufixed32x160",
823
+ "ufixed32x168",
824
+ "ufixed32x176",
825
+ "ufixed32x184",
826
+ "ufixed32x192",
827
+ "ufixed32x200",
828
+ "ufixed32x208",
829
+ "ufixed32x216",
830
+ "ufixed32x224",
831
+ "ufixed40x8",
832
+ "ufixed40x16",
833
+ "ufixed40x24",
834
+ "ufixed40x32",
835
+ "ufixed40x40",
836
+ "ufixed40x48",
837
+ "ufixed40x56",
838
+ "ufixed40x64",
839
+ "ufixed40x72",
840
+ "ufixed40x80",
841
+ "ufixed40x88",
842
+ "ufixed40x96",
843
+ "ufixed40x104",
844
+ "ufixed40x112",
845
+ "ufixed40x120",
846
+ "ufixed40x128",
847
+ "ufixed40x136",
848
+ "ufixed40x144",
849
+ "ufixed40x152",
850
+ "ufixed40x160",
851
+ "ufixed40x168",
852
+ "ufixed40x176",
853
+ "ufixed40x184",
854
+ "ufixed40x192",
855
+ "ufixed40x200",
856
+ "ufixed40x208",
857
+ "ufixed40x216",
858
+ "ufixed48x8",
859
+ "ufixed48x16",
860
+ "ufixed48x24",
861
+ "ufixed48x32",
862
+ "ufixed48x40",
863
+ "ufixed48x48",
864
+ "ufixed48x56",
865
+ "ufixed48x64",
866
+ "ufixed48x72",
867
+ "ufixed48x80",
868
+ "ufixed48x88",
869
+ "ufixed48x96",
870
+ "ufixed48x104",
871
+ "ufixed48x112",
872
+ "ufixed48x120",
873
+ "ufixed48x128",
874
+ "ufixed48x136",
875
+ "ufixed48x144",
876
+ "ufixed48x152",
877
+ "ufixed48x160",
878
+ "ufixed48x168",
879
+ "ufixed48x176",
880
+ "ufixed48x184",
881
+ "ufixed48x192",
882
+ "ufixed48x200",
883
+ "ufixed48x208",
884
+ "ufixed56x8",
885
+ "ufixed56x16",
886
+ "ufixed56x24",
887
+ "ufixed56x32",
888
+ "ufixed56x40",
889
+ "ufixed56x48",
890
+ "ufixed56x56",
891
+ "ufixed56x64",
892
+ "ufixed56x72",
893
+ "ufixed56x80",
894
+ "ufixed56x88",
895
+ "ufixed56x96",
896
+ "ufixed56x104",
897
+ "ufixed56x112",
898
+ "ufixed56x120",
899
+ "ufixed56x128",
900
+ "ufixed56x136",
901
+ "ufixed56x144",
902
+ "ufixed56x152",
903
+ "ufixed56x160",
904
+ "ufixed56x168",
905
+ "ufixed56x176",
906
+ "ufixed56x184",
907
+ "ufixed56x192",
908
+ "ufixed56x200",
909
+ "ufixed64x8",
910
+ "ufixed64x16",
911
+ "ufixed64x24",
912
+ "ufixed64x32",
913
+ "ufixed64x40",
914
+ "ufixed64x48",
915
+ "ufixed64x56",
916
+ "ufixed64x64",
917
+ "ufixed64x72",
918
+ "ufixed64x80",
919
+ "ufixed64x88",
920
+ "ufixed64x96",
921
+ "ufixed64x104",
922
+ "ufixed64x112",
923
+ "ufixed64x120",
924
+ "ufixed64x128",
925
+ "ufixed64x136",
926
+ "ufixed64x144",
927
+ "ufixed64x152",
928
+ "ufixed64x160",
929
+ "ufixed64x168",
930
+ "ufixed64x176",
931
+ "ufixed64x184",
932
+ "ufixed64x192",
933
+ "ufixed72x8",
934
+ "ufixed72x16",
935
+ "ufixed72x24",
936
+ "ufixed72x32",
937
+ "ufixed72x40",
938
+ "ufixed72x48",
939
+ "ufixed72x56",
940
+ "ufixed72x64",
941
+ "ufixed72x72",
942
+ "ufixed72x80",
943
+ "ufixed72x88",
944
+ "ufixed72x96",
945
+ "ufixed72x104",
946
+ "ufixed72x112",
947
+ "ufixed72x120",
948
+ "ufixed72x128",
949
+ "ufixed72x136",
950
+ "ufixed72x144",
951
+ "ufixed72x152",
952
+ "ufixed72x160",
953
+ "ufixed72x168",
954
+ "ufixed72x176",
955
+ "ufixed72x184",
956
+ "ufixed80x8",
957
+ "ufixed80x16",
958
+ "ufixed80x24",
959
+ "ufixed80x32",
960
+ "ufixed80x40",
961
+ "ufixed80x48",
962
+ "ufixed80x56",
963
+ "ufixed80x64",
964
+ "ufixed80x72",
965
+ "ufixed80x80",
966
+ "ufixed80x88",
967
+ "ufixed80x96",
968
+ "ufixed80x104",
969
+ "ufixed80x112",
970
+ "ufixed80x120",
971
+ "ufixed80x128",
972
+ "ufixed80x136",
973
+ "ufixed80x144",
974
+ "ufixed80x152",
975
+ "ufixed80x160",
976
+ "ufixed80x168",
977
+ "ufixed80x176",
978
+ "ufixed88x8",
979
+ "ufixed88x16",
980
+ "ufixed88x24",
981
+ "ufixed88x32",
982
+ "ufixed88x40",
983
+ "ufixed88x48",
984
+ "ufixed88x56",
985
+ "ufixed88x64",
986
+ "ufixed88x72",
987
+ "ufixed88x80",
988
+ "ufixed88x88",
989
+ "ufixed88x96",
990
+ "ufixed88x104",
991
+ "ufixed88x112",
992
+ "ufixed88x120",
993
+ "ufixed88x128",
994
+ "ufixed88x136",
995
+ "ufixed88x144",
996
+ "ufixed88x152",
997
+ "ufixed88x160",
998
+ "ufixed88x168",
999
+ "ufixed96x8",
1000
+ "ufixed96x16",
1001
+ "ufixed96x24",
1002
+ "ufixed96x32",
1003
+ "ufixed96x40",
1004
+ "ufixed96x48",
1005
+ "ufixed96x56",
1006
+ "ufixed96x64",
1007
+ "ufixed96x72",
1008
+ "ufixed96x80",
1009
+ "ufixed96x88",
1010
+ "ufixed96x96",
1011
+ "ufixed96x104",
1012
+ "ufixed96x112",
1013
+ "ufixed96x120",
1014
+ "ufixed96x128",
1015
+ "ufixed96x136",
1016
+ "ufixed96x144",
1017
+ "ufixed96x152",
1018
+ "ufixed96x160",
1019
+ "ufixed104x8",
1020
+ "ufixed104x16",
1021
+ "ufixed104x24",
1022
+ "ufixed104x32",
1023
+ "ufixed104x40",
1024
+ "ufixed104x48",
1025
+ "ufixed104x56",
1026
+ "ufixed104x64",
1027
+ "ufixed104x72",
1028
+ "ufixed104x80",
1029
+ "ufixed104x88",
1030
+ "ufixed104x96",
1031
+ "ufixed104x104",
1032
+ "ufixed104x112",
1033
+ "ufixed104x120",
1034
+ "ufixed104x128",
1035
+ "ufixed104x136",
1036
+ "ufixed104x144",
1037
+ "ufixed104x152",
1038
+ "ufixed112x8",
1039
+ "ufixed112x16",
1040
+ "ufixed112x24",
1041
+ "ufixed112x32",
1042
+ "ufixed112x40",
1043
+ "ufixed112x48",
1044
+ "ufixed112x56",
1045
+ "ufixed112x64",
1046
+ "ufixed112x72",
1047
+ "ufixed112x80",
1048
+ "ufixed112x88",
1049
+ "ufixed112x96",
1050
+ "ufixed112x104",
1051
+ "ufixed112x112",
1052
+ "ufixed112x120",
1053
+ "ufixed112x128",
1054
+ "ufixed112x136",
1055
+ "ufixed112x144",
1056
+ "ufixed120x8",
1057
+ "ufixed120x16",
1058
+ "ufixed120x24",
1059
+ "ufixed120x32",
1060
+ "ufixed120x40",
1061
+ "ufixed120x48",
1062
+ "ufixed120x56",
1063
+ "ufixed120x64",
1064
+ "ufixed120x72",
1065
+ "ufixed120x80",
1066
+ "ufixed120x88",
1067
+ "ufixed120x96",
1068
+ "ufixed120x104",
1069
+ "ufixed120x112",
1070
+ "ufixed120x120",
1071
+ "ufixed120x128",
1072
+ "ufixed120x136",
1073
+ "ufixed128x8",
1074
+ "ufixed128x16",
1075
+ "ufixed128x24",
1076
+ "ufixed128x32",
1077
+ "ufixed128x40",
1078
+ "ufixed128x48",
1079
+ "ufixed128x56",
1080
+ "ufixed128x64",
1081
+ "ufixed128x72",
1082
+ "ufixed128x80",
1083
+ "ufixed128x88",
1084
+ "ufixed128x96",
1085
+ "ufixed128x104",
1086
+ "ufixed128x112",
1087
+ "ufixed128x120",
1088
+ "ufixed128x128",
1089
+ "ufixed136x8",
1090
+ "ufixed136x16",
1091
+ "ufixed136x24",
1092
+ "ufixed136x32",
1093
+ "ufixed136x40",
1094
+ "ufixed136x48",
1095
+ "ufixed136x56",
1096
+ "ufixed136x64",
1097
+ "ufixed136x72",
1098
+ "ufixed136x80",
1099
+ "ufixed136x88",
1100
+ "ufixed136x96",
1101
+ "ufixed136x104",
1102
+ "ufixed136x112",
1103
+ "ufixed136x120",
1104
+ "ufixed144x8",
1105
+ "ufixed144x16",
1106
+ "ufixed144x24",
1107
+ "ufixed144x32",
1108
+ "ufixed144x40",
1109
+ "ufixed144x48",
1110
+ "ufixed144x56",
1111
+ "ufixed144x64",
1112
+ "ufixed144x72",
1113
+ "ufixed144x80",
1114
+ "ufixed144x88",
1115
+ "ufixed144x96",
1116
+ "ufixed144x104",
1117
+ "ufixed144x112",
1118
+ "ufixed152x8",
1119
+ "ufixed152x16",
1120
+ "ufixed152x24",
1121
+ "ufixed152x32",
1122
+ "ufixed152x40",
1123
+ "ufixed152x48",
1124
+ "ufixed152x56",
1125
+ "ufixed152x64",
1126
+ "ufixed152x72",
1127
+ "ufixed152x80",
1128
+ "ufixed152x88",
1129
+ "ufixed152x96",
1130
+ "ufixed152x104",
1131
+ "ufixed160x8",
1132
+ "ufixed160x16",
1133
+ "ufixed160x24",
1134
+ "ufixed160x32",
1135
+ "ufixed160x40",
1136
+ "ufixed160x48",
1137
+ "ufixed160x56",
1138
+ "ufixed160x64",
1139
+ "ufixed160x72",
1140
+ "ufixed160x80",
1141
+ "ufixed160x88",
1142
+ "ufixed160x96",
1143
+ "ufixed168x8",
1144
+ "ufixed168x16",
1145
+ "ufixed168x24",
1146
+ "ufixed168x32",
1147
+ "ufixed168x40",
1148
+ "ufixed168x48",
1149
+ "ufixed168x56",
1150
+ "ufixed168x64",
1151
+ "ufixed168x72",
1152
+ "ufixed168x80",
1153
+ "ufixed168x88",
1154
+ "ufixed176x8",
1155
+ "ufixed176x16",
1156
+ "ufixed176x24",
1157
+ "ufixed176x32",
1158
+ "ufixed176x40",
1159
+ "ufixed176x48",
1160
+ "ufixed176x56",
1161
+ "ufixed176x64",
1162
+ "ufixed176x72",
1163
+ "ufixed176x80",
1164
+ "ufixed184x8",
1165
+ "ufixed184x16",
1166
+ "ufixed184x24",
1167
+ "ufixed184x32",
1168
+ "ufixed184x40",
1169
+ "ufixed184x48",
1170
+ "ufixed184x56",
1171
+ "ufixed184x64",
1172
+ "ufixed184x72",
1173
+ "ufixed192x8",
1174
+ "ufixed192x16",
1175
+ "ufixed192x24",
1176
+ "ufixed192x32",
1177
+ "ufixed192x40",
1178
+ "ufixed192x48",
1179
+ "ufixed192x56",
1180
+ "ufixed192x64",
1181
+ "ufixed200x8",
1182
+ "ufixed200x16",
1183
+ "ufixed200x24",
1184
+ "ufixed200x32",
1185
+ "ufixed200x40",
1186
+ "ufixed200x48",
1187
+ "ufixed200x56",
1188
+ "ufixed208x8",
1189
+ "ufixed208x16",
1190
+ "ufixed208x24",
1191
+ "ufixed208x32",
1192
+ "ufixed208x40",
1193
+ "ufixed208x48",
1194
+ "ufixed216x8",
1195
+ "ufixed216x16",
1196
+ "ufixed216x24",
1197
+ "ufixed216x32",
1198
+ "ufixed216x40",
1199
+ "ufixed224x8",
1200
+ "ufixed224x16",
1201
+ "ufixed224x24",
1202
+ "ufixed224x32",
1203
+ "ufixed232x8",
1204
+ "ufixed232x16",
1205
+ "ufixed232x24",
1206
+ "ufixed240x8",
1207
+ "ufixed240x16",
1208
+ "ufixed248x8",
1209
+ "event",
1210
+ "enum",
1211
+ "let",
1212
+ "mapping",
1213
+ "private",
1214
+ "public",
1215
+ "external",
1216
+ "inherited",
1217
+ "payable",
1218
+ "true",
1219
+ "false",
1220
+ "var",
1221
+ "import",
1222
+ "constant",
1223
+ "if",
1224
+ "else",
1225
+ "for",
1226
+ "else",
1227
+ "for",
1228
+ "while",
1229
+ "do",
1230
+ "break",
1231
+ "continue",
1232
+ "throw",
1233
+ "returns",
1234
+ "return",
1235
+ "suicide",
1236
+ "new",
1237
+ "is",
1238
+ "this",
1239
+ "super"
1240
+ ],
1241
+ operators: [
1242
+ "=",
1243
+ ">",
1244
+ "<",
1245
+ "!",
1246
+ "~",
1247
+ "?",
1248
+ ":",
1249
+ "==",
1250
+ "<=",
1251
+ ">=",
1252
+ "!=",
1253
+ "&&",
1254
+ "||",
1255
+ "++",
1256
+ "--",
1257
+ "+",
1258
+ "-",
1259
+ "*",
1260
+ "/",
1261
+ "&",
1262
+ "|",
1263
+ "^",
1264
+ "%",
1265
+ "<<",
1266
+ ">>",
1267
+ ">>>",
1268
+ "+=",
1269
+ "-=",
1270
+ "*=",
1271
+ "/=",
1272
+ "&=",
1273
+ "|=",
1274
+ "^=",
1275
+ "%=",
1276
+ "<<=",
1277
+ ">>=",
1278
+ ">>>="
1279
+ ],
1280
+ symbols: /[=><!~?:&|+\-*\/\^%]+/,
1281
+ escapes: /\\(?:[abfnrtv\\"']|x[0-9A-Fa-f]{1,4}|u[0-9A-Fa-f]{4}|U[0-9A-Fa-f]{8})/,
1282
+ integersuffix: /(ll|LL|u|U|l|L)?(ll|LL|u|U|l|L)?/,
1283
+ floatsuffix: /[fFlL]?/,
1284
+ tokenizer: {
1285
+ root: [
1286
+ [
1287
+ /[a-zA-Z_]\w*/,
1288
+ {
1289
+ cases: {
1290
+ "@keywords": { token: "keyword.$0" },
1291
+ "@default": "identifier"
1292
+ }
1293
+ }
1294
+ ],
1295
+ { include: "@whitespace" },
1296
+ [/\[\[.*\]\]/, "annotation"],
1297
+ [/^\s*#\w+/, "keyword"],
1298
+ [/int\d*/, "keyword"],
1299
+ [/[{}()\[\]]/, "@brackets"],
1300
+ [/[<>](?!@symbols)/, "@brackets"],
1301
+ [
1302
+ /@symbols/,
1303
+ {
1304
+ cases: {
1305
+ "@operators": "delimiter",
1306
+ "@default": ""
1307
+ }
1308
+ }
1309
+ ],
1310
+ [/\d*\d+[eE]([\-+]?\d+)?(@floatsuffix)/, "number.float"],
1311
+ [/\d*\.\d+([eE][\-+]?\d+)?(@floatsuffix)/, "number.float"],
1312
+ [/0[xX][0-9a-fA-F']*[0-9a-fA-F](@integersuffix)/, "number.hex"],
1313
+ [/0[0-7']*[0-7](@integersuffix)/, "number.octal"],
1314
+ [/0[bB][0-1']*[0-1](@integersuffix)/, "number.binary"],
1315
+ [/\d[\d']*\d(@integersuffix)/, "number"],
1316
+ [/\d(@integersuffix)/, "number"],
1317
+ [/[;,.]/, "delimiter"],
1318
+ [/"([^"\\]|\\.)*$/, "string.invalid"],
1319
+ [/"/, "string", "@string"],
1320
+ [/'[^\\']'/, "string"],
1321
+ [/(')(@escapes)(')/, ["string", "string.escape", "string"]],
1322
+ [/'/, "string.invalid"]
1323
+ ],
1324
+ whitespace: [
1325
+ [/[ \t\r\n]+/, ""],
1326
+ [/\/\*\*(?!\/)/, "comment.doc", "@doccomment"],
1327
+ [/\/\*/, "comment", "@comment"],
1328
+ [/\/\/.*$/, "comment"]
1329
+ ],
1330
+ comment: [
1331
+ [/[^\/*]+/, "comment"],
1332
+ [/\*\//, "comment", "@pop"],
1333
+ [/[\/*]/, "comment"]
1334
+ ],
1335
+ doccomment: [
1336
+ [/[^\/*]+/, "comment.doc"],
1337
+ [/\*\//, "comment.doc", "@pop"],
1338
+ [/[\/*]/, "comment.doc"]
1339
+ ],
1340
+ string: [
1341
+ [/[^\\"]+/, "string"],
1342
+ [/@escapes/, "string.escape"],
1343
+ [/\\./, "string.escape.invalid"],
1344
+ [/"/, "string", "@pop"]
1345
+ ]
1346
+ }
1347
+ };
1348
+ export {
1349
+ x as conf,
1350
+ e as language
1351
+ };