@vc-shell/framework 1.1.4 → 1.1.6

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 (323) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/core/directives/loading/styles.css +1 -1
  3. package/core/plugins/modularity/README.md +347 -17
  4. package/core/plugins/modularity/loader.ts +248 -3
  5. package/dist/core/plugins/modularity/loader.d.ts +4 -0
  6. package/dist/core/plugins/modularity/loader.d.ts.map +1 -1
  7. package/dist/shared/components/common/popup/vc-popup-error.vue.d.ts +2 -2
  8. package/dist/shared/components/common/popup/vc-popup-error.vue.d.ts.map +1 -1
  9. package/dist/shared/components/common/popup/vc-popup-info.vue.d.ts +2 -2
  10. package/dist/shared/components/common/popup/vc-popup-info.vue.d.ts.map +1 -1
  11. package/dist/shared/components/common/popup/vc-popup-warning.vue.d.ts +2 -2
  12. package/dist/shared/components/common/popup/vc-popup-warning.vue.d.ts.map +1 -1
  13. package/dist/shared/components/dashboard-widget-card/dashboard-widget-card.vue.d.ts +3 -3
  14. package/dist/shared/components/dashboard-widget-card/dashboard-widget-card.vue.d.ts.map +1 -1
  15. package/dist/shared/components/draggable-dashboard/composables/useDashboardDragAndDrop.d.ts +4 -4
  16. package/dist/shared/components/generic-dropdown/generic-dropdown.vue.d.ts.map +1 -1
  17. package/dist/shared/components/notifications/components/notification-container/index.d.ts +6 -6
  18. package/dist/shared/components/notifications/components/notification-container/index.d.ts.map +1 -1
  19. package/dist/shared/components/settings-menu-item/settings-menu-item.vue.d.ts.map +1 -1
  20. package/dist/shared/modules/assets-manager/components/assets-manager/assets-manager.vue.d.ts +2 -2
  21. package/dist/shared/modules/dynamic/pages/dynamic-blade-form.vue.d.ts +2 -2
  22. package/dist/shared/modules/dynamic/pages/dynamic-blade-list.vue.d.ts +2 -2
  23. package/dist/shared/pages/InvitePage/components/invite/Invite.vue.d.ts +1 -1
  24. package/dist/shared/pages/InvitePage/components/invite/Invite.vue.d.ts.map +1 -1
  25. package/dist/shared/pages/ResetPasswordPage/components/reset-password/ResetPassword.vue.d.ts +1 -1
  26. package/dist/shared/pages/ResetPasswordPage/components/reset-password/ResetPassword.vue.d.ts.map +1 -1
  27. package/dist/tsconfig.tsbuildinfo +1 -1
  28. package/dist/ui/components/atoms/vc-badge/vc-badge.vue.d.ts +2 -2
  29. package/dist/ui/components/atoms/vc-badge/vc-badge.vue.d.ts.map +1 -1
  30. package/dist/ui/components/atoms/vc-container/vc-container.vue.d.ts +2 -2
  31. package/dist/ui/components/atoms/vc-icon/composables/index.d.ts +3 -0
  32. package/dist/ui/components/atoms/vc-icon/composables/index.d.ts.map +1 -0
  33. package/dist/ui/components/atoms/vc-icon/composables/use-icon-type.d.ts +22 -0
  34. package/dist/ui/components/atoms/vc-icon/composables/use-icon-type.d.ts.map +1 -0
  35. package/dist/ui/components/atoms/vc-icon/composables/use-icon.d.ts +30 -0
  36. package/dist/ui/components/atoms/vc-icon/composables/use-icon.d.ts.map +1 -0
  37. package/dist/ui/components/atoms/vc-icon/index.d.ts +1 -0
  38. package/dist/ui/components/atoms/vc-icon/index.d.ts.map +1 -1
  39. package/dist/ui/components/atoms/vc-icon/types.d.ts +31 -0
  40. package/dist/ui/components/atoms/vc-icon/types.d.ts.map +1 -0
  41. package/dist/ui/components/atoms/vc-icon/vc-bootstrap-icon.vue.d.ts +18 -4
  42. package/dist/ui/components/atoms/vc-icon/vc-bootstrap-icon.vue.d.ts.map +1 -1
  43. package/dist/ui/components/atoms/vc-icon/vc-fontawesome-icon.vue.d.ts +15 -2
  44. package/dist/ui/components/atoms/vc-icon/vc-fontawesome-icon.vue.d.ts.map +1 -1
  45. package/dist/ui/components/atoms/vc-icon/vc-icon-examples.vue.d.ts.map +1 -1
  46. package/dist/ui/components/atoms/vc-icon/vc-icon-test.vue.d.ts.map +1 -1
  47. package/dist/ui/components/atoms/vc-icon/vc-icon.vue.d.ts +11 -6
  48. package/dist/ui/components/atoms/vc-icon/vc-icon.vue.d.ts.map +1 -1
  49. package/dist/ui/components/atoms/vc-icon/vc-lucide-icon.vue.d.ts +21 -4
  50. package/dist/ui/components/atoms/vc-icon/vc-lucide-icon.vue.d.ts.map +1 -1
  51. package/dist/ui/components/atoms/vc-icon/vc-material-icon.vue.d.ts +31 -5
  52. package/dist/ui/components/atoms/vc-icon/vc-material-icon.vue.d.ts.map +1 -1
  53. package/dist/ui/components/atoms/vc-icon/vc-svg-icon.vue.d.ts +33 -0
  54. package/dist/ui/components/atoms/vc-icon/vc-svg-icon.vue.d.ts.map +1 -0
  55. package/dist/ui/components/atoms/vc-label/vc-label.vue.d.ts +2 -2
  56. package/dist/ui/components/atoms/vc-label/vc-label.vue.d.ts.map +1 -1
  57. package/dist/ui/components/atoms/vc-progress/vc-progress.vue.d.ts +1 -1
  58. package/dist/ui/components/atoms/vc-progress/vc-progress.vue.d.ts.map +1 -1
  59. package/dist/ui/components/atoms/vc-tooltip/vc-tooltip.vue.d.ts +2 -2
  60. package/dist/ui/components/atoms/vc-tooltip/vc-tooltip.vue.d.ts.map +1 -1
  61. package/dist/ui/components/molecules/vc-checkbox/vc-checkbox.vue.d.ts +3 -3
  62. package/dist/ui/components/molecules/vc-checkbox/vc-checkbox.vue.d.ts.map +1 -1
  63. package/dist/ui/components/molecules/vc-editor/vc-editor.vue.d.ts +2 -2
  64. package/dist/ui/components/molecules/vc-file-upload/vc-file-upload.vue.d.ts +3 -3
  65. package/dist/ui/components/molecules/vc-file-upload/vc-file-upload.vue.d.ts.map +1 -1
  66. package/dist/ui/components/molecules/vc-input/vc-input.vue.d.ts +4 -4
  67. package/dist/ui/components/molecules/vc-input/vc-input.vue.d.ts.map +1 -1
  68. package/dist/ui/components/molecules/vc-input-currency/vc-input-currency.vue.d.ts +6 -34
  69. package/dist/ui/components/molecules/vc-input-currency/vc-input-currency.vue.d.ts.map +1 -1
  70. package/dist/ui/components/molecules/vc-input-dropdown/index.d.ts +4 -0
  71. package/dist/ui/components/molecules/vc-input-dropdown/index.d.ts.map +1 -0
  72. package/dist/ui/components/molecules/vc-input-dropdown/vc-input-dropdown.vue.d.ts +171 -0
  73. package/dist/ui/components/molecules/vc-input-dropdown/vc-input-dropdown.vue.d.ts.map +1 -0
  74. package/dist/ui/components/molecules/vc-multivalue/vc-multivalue.vue.d.ts +2 -2
  75. package/dist/ui/components/molecules/vc-multivalue/vc-multivalue.vue.d.ts.map +1 -1
  76. package/dist/ui/components/molecules/vc-pagination/vc-pagination.vue.d.ts +1 -1
  77. package/dist/ui/components/molecules/vc-pagination/vc-pagination.vue.d.ts.map +1 -1
  78. package/dist/ui/components/molecules/vc-rating/vc-rating.vue.d.ts +2 -2
  79. package/dist/ui/components/molecules/vc-rating/vc-rating.vue.d.ts.map +1 -1
  80. package/dist/ui/components/molecules/vc-select/vc-select.vue.d.ts +3 -3
  81. package/dist/ui/components/molecules/vc-select/vc-select.vue.d.ts.map +1 -1
  82. package/dist/ui/components/molecules/vc-textarea/vc-textarea.vue.d.ts +1 -1
  83. package/dist/ui/components/molecules/vc-textarea/vc-textarea.vue.d.ts.map +1 -1
  84. package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarWidgetItem.vue.d.ts +2 -2
  85. package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarWidgetItem.vue.d.ts.map +1 -1
  86. package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/MenuSidebar.vue.d.ts +5 -5
  87. package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/MenuSidebar.vue.d.ts.map +1 -1
  88. package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/vc-app-bar.vue.d.ts +3 -3
  89. package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/vc-app-bar.vue.d.ts.map +1 -1
  90. package/dist/ui/components/organisms/vc-app/_internal/vc-app-menu/_internal/vc-app-menu-item/vc-app-menu-item.vue.d.ts +1 -1
  91. package/dist/ui/components/organisms/vc-app/_internal/vc-app-menu/_internal/vc-app-menu-item/vc-app-menu-item.vue.d.ts.map +1 -1
  92. package/dist/ui/components/organisms/vc-app/vc-app.vue.d.ts +1 -1
  93. package/dist/ui/components/organisms/vc-app/vc-app.vue.d.ts.map +1 -1
  94. package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/_internal/vc-blade-toolbar-buttons/_internal/vc-blade-toolbar-button/props.d.ts +14 -0
  95. package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/_internal/vc-blade-toolbar-buttons/_internal/vc-blade-toolbar-button/props.d.ts.map +1 -0
  96. package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/_internal/vc-blade-toolbar-buttons/_internal/vc-blade-toolbar-button/vc-blade-toolbar-base-button.vue.d.ts +3 -14
  97. package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/_internal/vc-blade-toolbar-buttons/_internal/vc-blade-toolbar-button/vc-blade-toolbar-base-button.vue.d.ts.map +1 -1
  98. package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/_internal/vc-blade-toolbar-buttons/_internal/vc-blade-toolbar-button/vc-blade-toolbar-button.vue.d.ts +1 -1
  99. package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/_internal/vc-blade-toolbar-buttons/_internal/vc-blade-toolbar-button/vc-blade-toolbar-button.vue.d.ts.map +1 -1
  100. package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/_internal/vc-blade-toolbar-buttons/_internal/vc-blade-toolbar-button/vc-blade-toolbar-circle-button.vue.d.ts +2 -2
  101. package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/_internal/vc-blade-toolbar-buttons/_internal/vc-blade-toolbar-button/vc-blade-toolbar-circle-button.vue.d.ts.map +1 -1
  102. package/dist/ui/components/organisms/vc-blade/vc-blade.vue.d.ts +5 -5
  103. package/dist/ui/components/organisms/vc-blade/vc-blade.vue.d.ts.map +1 -1
  104. package/dist/ui/components/organisms/vc-gallery/_internal/vc-gallery-item/vc-gallery-item.vue.d.ts +2 -2
  105. package/dist/ui/components/organisms/vc-gallery/_internal/vc-gallery-preview/vc-gallery-preview.vue.d.ts +1 -1
  106. package/dist/ui/components/organisms/vc-gallery/_internal/vc-gallery-preview/vc-gallery-preview.vue.d.ts.map +1 -1
  107. package/dist/ui/components/organisms/vc-gallery/vc-gallery.vue.d.ts +3 -3
  108. package/dist/ui/components/organisms/vc-gallery/vc-gallery.vue.d.ts.map +1 -1
  109. package/dist/ui/components/organisms/vc-login-form/vc-login-form.vue.d.ts +1 -1
  110. package/dist/ui/components/organisms/vc-login-form/vc-login-form.vue.d.ts.map +1 -1
  111. package/dist/ui/components/organisms/vc-popup/vc-popup.vue.d.ts +4 -4
  112. package/dist/ui/components/organisms/vc-popup/vc-popup.vue.d.ts.map +1 -1
  113. package/dist/ui/components/organisms/vc-table/_internal/vc-table-cell/vc-table-cell.vue.d.ts +1 -1
  114. package/dist/ui/components/organisms/vc-table/_internal/vc-table-cell/vc-table-cell.vue.d.ts.map +1 -1
  115. package/dist/ui/components/organisms/vc-table/_internal/vc-table-column-switcher/vc-table-column-switcher.vue.d.ts +1 -1
  116. package/dist/ui/components/organisms/vc-table/_internal/vc-table-column-switcher/vc-table-column-switcher.vue.d.ts.map +1 -1
  117. package/dist/ui/components/organisms/vc-table/_internal/vc-table-counter/vc-table-counter.vue.d.ts +1 -1
  118. package/dist/ui/components/organisms/vc-table/_internal/vc-table-counter/vc-table-counter.vue.d.ts.map +1 -1
  119. package/dist/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/_internal/vc-table-body/vc-table-body.vue.d.ts +1 -1
  120. package/dist/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/_internal/vc-table-body/vc-table-body.vue.d.ts.map +1 -1
  121. package/dist/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/_internal/vc-table-columns-header/vc-table-columns-header.vue.d.ts +1 -1
  122. package/dist/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/_internal/vc-table-columns-header/vc-table-columns-header.vue.d.ts.map +1 -1
  123. package/dist/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/_internal/vc-table-row/vc-table-row.vue.d.ts +1 -1
  124. package/dist/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/_internal/vc-table-row/vc-table-row.vue.d.ts.map +1 -1
  125. package/dist/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/vc-table-desktop-view.vue.d.ts +1 -1
  126. package/dist/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/vc-table-desktop-view.vue.d.ts.map +1 -1
  127. package/dist/ui/components/organisms/vc-table/_internal/vc-table-mobile-view/vc-table-mobile-view.vue.d.ts +1 -1
  128. package/dist/ui/components/organisms/vc-table/_internal/vc-table-mobile-view/vc-table-mobile-view.vue.d.ts.map +1 -1
  129. package/dist/ui/components/organisms/vc-table/composables/useTableActions.d.ts +1 -1
  130. package/dist/ui/components/organisms/vc-table/composables/useTableActions.d.ts.map +1 -1
  131. package/dist/ui/components/organisms/vc-table/composables/useTableColumnReorder.d.ts +1 -1
  132. package/dist/ui/components/organisms/vc-table/composables/useTableColumnReorder.d.ts.map +1 -1
  133. package/dist/ui/components/organisms/vc-table/composables/useTableColumnResize.d.ts +1 -1
  134. package/dist/ui/components/organisms/vc-table/composables/useTableColumnResize.d.ts.map +1 -1
  135. package/dist/ui/components/organisms/vc-table/composables/useTableRowReorder.d.ts +1 -1
  136. package/dist/ui/components/organisms/vc-table/composables/useTableRowReorder.d.ts.map +1 -1
  137. package/dist/ui/components/organisms/vc-table/composables/useTableSelection.d.ts +1 -1
  138. package/dist/ui/components/organisms/vc-table/composables/useTableSelection.d.ts.map +1 -1
  139. package/dist/ui/components/organisms/vc-table/composables/useTableState.d.ts +1 -1
  140. package/dist/ui/components/organisms/vc-table/composables/useTableState.d.ts.map +1 -1
  141. package/dist/ui/components/organisms/vc-table/types.d.ts +36 -0
  142. package/dist/ui/components/organisms/vc-table/types.d.ts.map +1 -0
  143. package/dist/ui/components/organisms/vc-table/vc-table.vue.d.ts +2 -34
  144. package/dist/ui/components/organisms/vc-table/vc-table.vue.d.ts.map +1 -1
  145. package/package.json +4 -4
  146. package/shared/components/common/popup/vc-popup-error.vue +3 -3
  147. package/shared/components/common/popup/vc-popup-info.vue +3 -3
  148. package/shared/components/common/popup/vc-popup-warning.vue +3 -3
  149. package/shared/components/dashboard-widget-card/dashboard-widget-card.vue +4 -4
  150. package/shared/components/generic-dropdown/generic-dropdown.vue +1 -1
  151. package/shared/components/settings-menu-item/settings-menu-item.vue +1 -6
  152. package/shared/components/user-dropdown-button/_internal/user-info.vue +3 -3
  153. package/ui/components/atoms/vc-badge/vc-badge.vue +2 -2
  154. package/ui/components/atoms/vc-icon/README.md +198 -220
  155. package/ui/components/atoms/vc-icon/composables/index.ts +2 -0
  156. package/ui/components/atoms/vc-icon/composables/use-icon-type.ts +83 -0
  157. package/ui/components/atoms/vc-icon/composables/use-icon.ts +129 -0
  158. package/ui/components/atoms/vc-icon/index.ts +1 -0
  159. package/ui/components/atoms/vc-icon/types.ts +36 -0
  160. package/ui/components/atoms/vc-icon/vc-bootstrap-icon.vue +111 -10
  161. package/ui/components/atoms/vc-icon/vc-fontawesome-icon.vue +119 -17
  162. package/ui/components/atoms/vc-icon/vc-icon-examples.vue +485 -124
  163. package/ui/components/atoms/vc-icon/vc-icon-test.vue +399 -209
  164. package/ui/components/atoms/vc-icon/vc-icon.stories.ts +501 -55
  165. package/ui/components/atoms/vc-icon/vc-icon.vue +240 -155
  166. package/ui/components/atoms/vc-icon/vc-lucide-icon.vue +163 -33
  167. package/ui/components/atoms/vc-icon/vc-material-icon.vue +136 -30
  168. package/ui/components/atoms/vc-icon/vc-svg-icon.vue +168 -0
  169. package/ui/components/atoms/vc-label/vc-label.vue +3 -3
  170. package/ui/components/atoms/vc-tooltip/vc-tooltip.vue +3 -3
  171. package/ui/components/atoms/vc-widget/vc-widget.stories.ts +13 -0
  172. package/ui/components/molecules/vc-checkbox/vc-checkbox.vue +4 -4
  173. package/ui/components/molecules/vc-file-upload/vc-file-upload.vue +2 -2
  174. package/ui/components/molecules/vc-input-currency/vc-input-currency.stories.ts +1 -1
  175. package/ui/components/molecules/vc-input-currency/vc-input-currency.vue +36 -115
  176. package/ui/components/molecules/vc-input-dropdown/index.ts +4 -0
  177. package/ui/components/molecules/vc-input-dropdown/vc-input-dropdown.stories.ts +763 -0
  178. package/ui/components/molecules/vc-input-dropdown/vc-input-dropdown.vue +268 -0
  179. package/ui/components/molecules/vc-multivalue/vc-multivalue.vue +3 -3
  180. package/ui/components/molecules/vc-pagination/vc-pagination.vue +23 -14
  181. package/ui/components/molecules/vc-rating/vc-rating.vue +2 -2
  182. package/ui/components/molecules/vc-textarea/vc-textarea.vue +2 -2
  183. package/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarHeader.vue +2 -2
  184. package/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarWidgetItem.vue +3 -3
  185. package/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/MenuSidebar.vue +6 -6
  186. package/ui/components/organisms/vc-app/_internal/vc-app-bar/vc-app-bar.vue +6 -7
  187. package/ui/components/organisms/vc-app/vc-app.vue +2 -3
  188. package/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/_internal/vc-blade-toolbar-buttons/_internal/vc-blade-toolbar-button/props.ts +14 -0
  189. package/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/_internal/vc-blade-toolbar-buttons/_internal/vc-blade-toolbar-button/vc-blade-toolbar-base-button.vue +1 -12
  190. package/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/_internal/vc-blade-toolbar-buttons/_internal/vc-blade-toolbar-button/vc-blade-toolbar-circle-button.vue +1 -1
  191. package/ui/components/organisms/vc-blade/vc-blade.vue +5 -5
  192. package/ui/components/organisms/vc-login-form/vc-login-form.vue +2 -2
  193. package/ui/components/organisms/vc-popup/vc-popup.vue +4 -4
  194. package/ui/components/organisms/vc-table/_internal/vc-table-cell/vc-table-cell.vue +1 -1
  195. package/ui/components/organisms/vc-table/_internal/vc-table-column-switcher/vc-table-column-switcher.vue +1 -1
  196. package/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/_internal/vc-table-body/vc-table-body.vue +1 -1
  197. package/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/_internal/vc-table-columns-header/vc-table-columns-header.vue +1 -1
  198. package/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/_internal/vc-table-row/vc-table-row.vue +1 -1
  199. package/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/vc-table-desktop-view.vue +1 -1
  200. package/ui/components/organisms/vc-table/_internal/vc-table-mobile-view/vc-table-mobile-view.vue +1 -1
  201. package/ui/components/organisms/vc-table/composables/useTableActions.ts +1 -1
  202. package/ui/components/organisms/vc-table/composables/useTableColumnReorder.ts +1 -1
  203. package/ui/components/organisms/vc-table/composables/useTableColumnResize.ts +1 -1
  204. package/ui/components/organisms/vc-table/composables/useTableRowReorder.ts +1 -1
  205. package/ui/components/organisms/vc-table/composables/useTableSelection.ts +1 -1
  206. package/ui/components/organisms/vc-table/composables/useTableState.ts +1 -1
  207. package/ui/components/organisms/vc-table/types.ts +32 -0
  208. package/ui/components/organisms/vc-table/vc-table.vue +2 -30
  209. package/dist/apl-B2DGVGxc.js +0 -76
  210. package/dist/asciiarmor-2LVJmxlE.js +0 -34
  211. package/dist/asn1-jKiBa2Ya.js +0 -95
  212. package/dist/asterisk-DS281yxp.js +0 -271
  213. package/dist/brainfuck-C_p9pTT8.js +0 -34
  214. package/dist/clike-BUuHEmgZ.js +0 -620
  215. package/dist/clojure-CCKyeQKf.js +0 -800
  216. package/dist/cmake-CuaCgAKt.js +0 -28
  217. package/dist/cobol-BlTKFDRj.js +0 -72
  218. package/dist/coffeescript-BVCvwO8I.js +0 -179
  219. package/dist/commonlisp-D_kxz07b.js +0 -75
  220. package/dist/crystal-D309uH6_.js +0 -217
  221. package/dist/css-bIlmDBTK.js +0 -1560
  222. package/dist/cypher-BMq4Fwjl.js +0 -68
  223. package/dist/d-BZcgY6La.js +0 -127
  224. package/dist/diff-Cg9d_RX2.js +0 -18
  225. package/dist/dockerfile-DIy8NleC.js +0 -194
  226. package/dist/dtd-CtLokQ-U.js +0 -84
  227. package/dist/dylan-QYeExnWK.js +0 -234
  228. package/dist/ebnf-DUPDuY4r.js +0 -78
  229. package/dist/ecl-CiXN-g_D.js +0 -121
  230. package/dist/eiffel-yQhjl4T1.js +0 -110
  231. package/dist/elm-CNT9vbN0.js +0 -108
  232. package/dist/erlang-CFOYdy9e.js +0 -487
  233. package/dist/factor-DDOC7X6P.js +0 -65
  234. package/dist/fcl-CPC2WYrI.js +0 -103
  235. package/dist/forth-BmxRyE9S.js +0 -60
  236. package/dist/fortran-9bvPyrOW.js +0 -442
  237. package/dist/framework.js +0 -288
  238. package/dist/gas-BdfkXJT_.js +0 -183
  239. package/dist/gherkin-CJuwpceU.js +0 -34
  240. package/dist/groovy-DZeT_VM-.js +0 -146
  241. package/dist/haskell-Bvt3Qq1t.js +0 -375
  242. package/dist/haxe-70NVW1pR.js +0 -359
  243. package/dist/http-D9LttvKF.js +0 -44
  244. package/dist/idl-B6TRFYjl.js +0 -947
  245. package/dist/index-BBYKbiRX.js +0 -93
  246. package/dist/index-BDm0tcWn.js +0 -145680
  247. package/dist/index-BDqUaIyQ.js +0 -156
  248. package/dist/index-BdflTsg6.js +0 -308
  249. package/dist/index-BpBTtmQ6.js +0 -288
  250. package/dist/index-Br0y2YMn.js +0 -58
  251. package/dist/index-CIcET-ZI.js +0 -71
  252. package/dist/index-CYAMpxnu.js +0 -341
  253. package/dist/index-Cf2H7YZ1.js +0 -98
  254. package/dist/index-Ck055pN8.js +0 -134
  255. package/dist/index-D-fPN3yf.js +0 -75
  256. package/dist/index-DJOis7Nc.js +0 -299
  257. package/dist/index-DKtQMsy4.js +0 -538
  258. package/dist/index-DWTsz5bC.js +0 -611
  259. package/dist/index-DuY7BIGm.js +0 -265
  260. package/dist/index-o6aSdNED.js +0 -137
  261. package/dist/index-wfv8ehcx.js +0 -249
  262. package/dist/index.css +0 -9
  263. package/dist/javascript-WMWNx-Vj.js +0 -690
  264. package/dist/jinja2-DnB6dQmV.js +0 -154
  265. package/dist/julia-DpvXAuO6.js +0 -241
  266. package/dist/livescript-CanGTf8u.js +0 -272
  267. package/dist/lua-XplVlWi_.js +0 -217
  268. package/dist/mathematica-jaRHnSxC.js +0 -35
  269. package/dist/mbox-BctzC1hL.js +0 -76
  270. package/dist/mirc-CFBPAOaF.js +0 -72
  271. package/dist/mllike-BSnXJBGA.js +0 -272
  272. package/dist/modelica-vUgVs--1.js +0 -93
  273. package/dist/mscgen-Cpl0NYLN.js +0 -104
  274. package/dist/mumps-CQoS1kWX.js +0 -25
  275. package/dist/nginx-zDPm3Z74.js +0 -89
  276. package/dist/nsis-fePjrhq7.js +0 -62
  277. package/dist/ntriples-CsNjv2QF.js +0 -79
  278. package/dist/octave-C8PmmSRH.js +0 -143
  279. package/dist/oz-Ce8aN8oE.js +0 -151
  280. package/dist/pascal-De0D6mP7.js +0 -77
  281. package/dist/perl-B4bSCe1C.js +0 -915
  282. package/dist/pig-D24Z8EXi.js +0 -54
  283. package/dist/powershell-DkYVfTzP.js +0 -249
  284. package/dist/properties-Dn9wna3M.js +0 -26
  285. package/dist/protobuf-BPIjwpzm.js +0 -49
  286. package/dist/pug-BqUR2bBq.js +0 -248
  287. package/dist/puppet-nyd4dhjf.js +0 -45
  288. package/dist/python-B5QdSKoL.js +0 -313
  289. package/dist/q-DXjKs-tC.js +0 -83
  290. package/dist/r-LKEuhEGI.js +0 -104
  291. package/dist/rpm-IznJm2Xc.js +0 -57
  292. package/dist/ruby-CcYfvIk6.js +0 -228
  293. package/dist/sas-7E8yHoCW.js +0 -105
  294. package/dist/scheme-DjibxsNh.js +0 -124
  295. package/dist/shell-C0C2sNA_.js +0 -182
  296. package/dist/sieve-Bwz7vjP5.js +0 -72
  297. package/dist/simple-mode-B0dvCdAA.js +0 -89
  298. package/dist/smalltalk-Bhddl2pB.js +0 -48
  299. package/dist/solr-BNlsLglM.js +0 -41
  300. package/dist/sparql-FarWu_Gb.js +0 -197
  301. package/dist/spreadsheet-C-cy4P5N.js +0 -49
  302. package/dist/sql-mMre1Bo3.js +0 -282
  303. package/dist/stex-92raWT1r.js +0 -129
  304. package/dist/stylus-CAdqWld3.js +0 -250
  305. package/dist/swift-DSxqR9R6.js +0 -230
  306. package/dist/tcl-xfoLljhY.js +0 -81
  307. package/dist/textile-D1AWE-pc.js +0 -295
  308. package/dist/tiddlywiki-5wqsXtSk.js +0 -155
  309. package/dist/tiki-__Kn3CeS.js +0 -181
  310. package/dist/toml-BHiuTcfn.js +0 -49
  311. package/dist/troff-D2UO-fKf.js +0 -35
  312. package/dist/ttcn-Bsa4sfRm.js +0 -123
  313. package/dist/ttcn-cfg-Bac_acMi.js +0 -88
  314. package/dist/turtle-xwJUxoPV.js +0 -80
  315. package/dist/vb-c2kQGd6-.js +0 -74
  316. package/dist/vbscript-Dz1TtKsy.js +0 -324
  317. package/dist/velocity-DJd0pTTC.js +0 -96
  318. package/dist/verilog-C4VGD9n1.js +0 -263
  319. package/dist/vhdl-T9HkrbI2.js +0 -106
  320. package/dist/webidl-CjfDENEo.js +0 -155
  321. package/dist/xquery-BUQdORAS.js +0 -422
  322. package/dist/yacas-C0absKBh.js +0 -73
  323. package/dist/z80-C8rPtw-0.js +0 -61
@@ -74,7 +74,7 @@
74
74
  import VcTableRow from "../vc-table-row/vc-table-row.vue";
75
75
  import VcTableEmpty from "../../../vc-table-empty/vc-table-empty.vue";
76
76
  import type { IActionBuilderResult } from "../../../../../../../../core/types";
77
- import type { TableSlots, TableItem, TableColPartial, StatusImage } from "../../../../vc-table.vue";
77
+ import type { TableSlots, TableItem, TableColPartial, StatusImage } from "../../../../types";
78
78
  import { MaybeRef, useSlots } from "vue";
79
79
 
80
80
  defineProps<{
@@ -111,7 +111,7 @@
111
111
  import { toRefs, ref } from "vue";
112
112
  import { VcCheckbox, VcIcon } from "../../../../../..";
113
113
  import VcTableColumnSwitcher from "../../../vc-table-column-switcher/vc-table-column-switcher.vue";
114
- import type { TableItem, TableColPartial } from "../../../../vc-table.vue";
114
+ import type { TableItem, TableColPartial } from "../../../../types";
115
115
  import { useTableColumnReorder } from "../../../../composables/useTableColumnReorder";
116
116
  import { useTableColumnResize } from "../../../../composables/useTableColumnResize";
117
117
  import { ITableColumns } from "../../../../../../../../core/types";
@@ -105,7 +105,7 @@
105
105
  <script lang="ts" setup generic="T extends TableItem | string">
106
106
  import { VcCheckbox, VcIcon, VcTooltip } from "../../../../../../";
107
107
  import VcTableCell from "../../../vc-table-cell/vc-table-cell.vue";
108
- import type { TableItem, TableColPartial } from "../../../../vc-table.vue";
108
+ import type { TableItem, TableColPartial } from "../../../../types";
109
109
  import type { IActionBuilderResult, ITableColumns } from "../../../../../../../../core/types";
110
110
  import { MaybeRef } from "vue";
111
111
  defineProps<{
@@ -94,7 +94,7 @@ import VcTableSelectAllHeader from "./_internal/vc-table-select-all-header/vc-ta
94
94
  import VcTableBody from "./_internal/vc-table-body/vc-table-body.vue";
95
95
  import type { IActionBuilderResult, ITableColumns } from "../../../../../../core/types";
96
96
  import { useTableRowReorder } from "../../composables/useTableRowReorder";
97
- import type { TableSlots, TableItem, TableColPartial, StatusImage } from "../../vc-table.vue";
97
+ import type { TableSlots, TableItem, TableColPartial, StatusImage } from "../../types";
98
98
 
99
99
  const props = defineProps<{
100
100
  items: T[];
@@ -189,7 +189,7 @@ import { computed } from "vue";
189
189
  import VcTableCell from "../vc-table-cell/vc-table-cell.vue";
190
190
  import VcTableEmpty from "../vc-table-empty/vc-table-empty.vue";
191
191
  import VcTableMobileItem from "../vc-table-mobile-item/vc-table-mobile-item.vue";
192
- import type { TableItem, StatusImage } from "../../vc-table.vue";
192
+ import type { TableItem, StatusImage } from "../../types";
193
193
  import { IActionBuilderResult, ITableColumns } from "../../../../../../core/types";
194
194
  import { provideTableSwipe } from "../../composables/useTableSwipe";
195
195
 
@@ -1,6 +1,6 @@
1
1
  import { Ref, ref, shallowRef } from "vue";
2
2
  import { IActionBuilderResult } from "../../../../../core/types";
3
- import type { TableItem } from "./../vc-table.vue";
3
+ import type { TableItem } from "./../types";
4
4
 
5
5
  export interface UseTableActionsOptions<T extends TableItem | string> {
6
6
  enableItemActions?: boolean;
@@ -1,5 +1,5 @@
1
1
  import { ref, Ref } from "vue";
2
- import { TableItem, TableColPartial } from "../vc-table.vue";
2
+ import { TableItem, TableColPartial } from "../types";
3
3
 
4
4
  export function useTableColumnReorder<T extends TableItem | string>(
5
5
  internalColumns: Ref<TableColPartial[]>,
@@ -1,5 +1,5 @@
1
1
  import { ref, Ref } from "vue";
2
- import { TableColPartial } from "../vc-table.vue";
2
+ import { TableColPartial } from "../types";
3
3
  import * as _ from "lodash-es";
4
4
 
5
5
  export function useTableColumnResize(
@@ -1,5 +1,5 @@
1
1
  import { computed, ref, Ref } from "vue";
2
- import { TableItem } from "../vc-table.vue";
2
+ import { TableItem } from "../types";
3
3
 
4
4
  export function useTableRowReorder<T extends TableItem | string>(
5
5
  items: Ref<T[]>,
@@ -1,5 +1,5 @@
1
1
  import { computed, ref, Ref, watch } from "vue";
2
- import { TableItem } from "../vc-table.vue";
2
+ import { TableItem } from "../types";
3
3
  import * as _ from "lodash-es";
4
4
 
5
5
  type TableItemType = TableItem | string;
@@ -2,7 +2,7 @@
2
2
  import { ref, Ref, computed, toValue, toRefs, MaybeRef } from "vue";
3
3
  import { useLocalStorage } from "@vueuse/core";
4
4
  import * as _ from "lodash-es";
5
- import { TableColPartial } from "../vc-table.vue";
5
+ import { TableColPartial } from "../types";
6
6
  import { ITableColumns } from "../../../../../core/types";
7
7
 
8
8
  export interface UseTableStateOptions {
@@ -0,0 +1,32 @@
1
+ /* eslint-disable @typescript-eslint/no-explicit-any */
2
+ import type { Ref, VNode } from "vue";
3
+ import { IActionBuilderResult, ITableColumns } from "../../../../core/types";
4
+
5
+ export interface TableSlots<T> {
6
+ header: (props: { header: VNode }) => any;
7
+ filters: (args: { closePanel: () => void }) => any;
8
+ "mobile-item": (args: { item: T }) => any;
9
+ [key: `header_${string}`]: (props: any) => any;
10
+ [key: `item_${string}`]: (args: { item: T; cell: ITableColumns | TableColPartial; index: number }) => any;
11
+ notfound: (props: any) => any;
12
+ empty: (props: any) => any;
13
+ footer: (props: any) => any;
14
+ }
15
+
16
+ export interface TableItem {
17
+ [x: string]: any;
18
+ actions?: IActionBuilderResult<any>[];
19
+ }
20
+
21
+ export type TableColPartial = Partial<
22
+ ITableColumns & {
23
+ predefined?: boolean;
24
+ }
25
+ >;
26
+
27
+ export interface StatusImage {
28
+ image?: string;
29
+ text: string | Ref<string>;
30
+ action?: string;
31
+ clickHandler?: () => void;
32
+ }
@@ -168,7 +168,7 @@
168
168
  :pages="pages"
169
169
  :current-page="currentPage"
170
170
  :pagination-variant="paginationVariant"
171
- @item-click="
171
+ @pagination-click="
172
172
  (event: number) => {
173
173
  //scroll table to top
174
174
  tableBody?.scrollTo(0, 0);
@@ -197,35 +197,7 @@ import VcTableDesktopView from "./_internal/vc-table-desktop-view/vc-table-deskt
197
197
  import VcTableHeader from "./_internal/vc-table-header/vc-table-header.vue";
198
198
  import VcTableSelectAll from "./_internal/vc-table-select-all/vc-table-select-all.vue";
199
199
  import VcTableFooter from "./_internal/vc-table-footer/vc-table-footer.vue";
200
-
201
- export interface StatusImage {
202
- image?: string;
203
- text: string | Ref<string>;
204
- action?: string;
205
- clickHandler?: () => void;
206
- }
207
-
208
- export interface TableItem {
209
- [x: string]: any;
210
- actions?: IActionBuilderResult<any>[];
211
- }
212
-
213
- export type TableColPartial = Partial<
214
- ITableColumns & {
215
- predefined?: boolean;
216
- }
217
- >;
218
-
219
- export interface TableSlots<T> {
220
- header: (props: { header: VNode }) => any;
221
- filters: (args: { closePanel: () => void }) => any;
222
- "mobile-item": (args: { item: T }) => any;
223
- [key: `header_${string}`]: (props: any) => any;
224
- [key: `item_${string}`]: (args: { item: T; cell: ITableColumns | TableColPartial; index: number }) => any;
225
- notfound: (props: any) => any;
226
- empty: (props: any) => any;
227
- footer: (props: any) => any;
228
- }
200
+ import type { TableSlots, TableItem, TableColPartial, StatusImage } from "./types";
229
201
 
230
202
  defineSlots<TableSlots<T>>();
231
203
 
@@ -1,76 +0,0 @@
1
- var l = {
2
- "+": ["conjugate", "add"],
3
- "−": ["negate", "subtract"],
4
- "×": ["signOf", "multiply"],
5
- "÷": ["reciprocal", "divide"],
6
- "⌈": ["ceiling", "greaterOf"],
7
- "⌊": ["floor", "lesserOf"],
8
- "∣": ["absolute", "residue"],
9
- "⍳": ["indexGenerate", "indexOf"],
10
- "?": ["roll", "deal"],
11
- "⋆": ["exponentiate", "toThePowerOf"],
12
- "⍟": ["naturalLog", "logToTheBase"],
13
- "○": ["piTimes", "circularFuncs"],
14
- "!": ["factorial", "binomial"],
15
- "⌹": ["matrixInverse", "matrixDivide"],
16
- "<": [null, "lessThan"],
17
- "≤": [null, "lessThanOrEqual"],
18
- "=": [null, "equals"],
19
- ">": [null, "greaterThan"],
20
- "≥": [null, "greaterThanOrEqual"],
21
- "≠": [null, "notEqual"],
22
- "≡": ["depth", "match"],
23
- "≢": [null, "notMatch"],
24
- "∈": ["enlist", "membership"],
25
- "⍷": [null, "find"],
26
- "∪": ["unique", "union"],
27
- "∩": [null, "intersection"],
28
- "∼": ["not", "without"],
29
- "∨": [null, "or"],
30
- "∧": [null, "and"],
31
- "⍱": [null, "nor"],
32
- "⍲": [null, "nand"],
33
- "⍴": ["shapeOf", "reshape"],
34
- ",": ["ravel", "catenate"],
35
- "⍪": [null, "firstAxisCatenate"],
36
- "⌽": ["reverse", "rotate"],
37
- "⊖": ["axis1Reverse", "axis1Rotate"],
38
- "⍉": ["transpose", null],
39
- "↑": ["first", "take"],
40
- "↓": [null, "drop"],
41
- "⊂": ["enclose", "partitionWithAxis"],
42
- "⊃": ["diclose", "pick"],
43
- "⌷": [null, "index"],
44
- "⍋": ["gradeUp", null],
45
- "⍒": ["gradeDown", null],
46
- "⊤": ["encode", null],
47
- "⊥": ["decode", null],
48
- "⍕": ["format", "formatByExample"],
49
- "⍎": ["execute", null],
50
- "⊣": ["stop", "left"],
51
- "⊢": ["pass", "right"]
52
- }, t = /[\.\/⌿⍀¨⍣]/, a = /⍬/, i = /[\+−×÷⌈⌊∣⍳\?⋆⍟○!⌹<≤=>≥≠≡≢∈⍷∪∩∼∨∧⍱⍲⍴,⍪⌽⊖⍉↑↓⊂⊃⌷⍋⍒⊤⊥⍕⍎⊣⊢]/, u = /←/, o = /[⍝#].*$/, s = function(r) {
53
- var n;
54
- return n = !1, function(e) {
55
- return n = e, e === r ? n === "\\" : !0;
56
- };
57
- };
58
- const f = {
59
- name: "apl",
60
- startState: function() {
61
- return {
62
- prev: !1,
63
- func: !1,
64
- op: !1,
65
- string: !1,
66
- escape: !1
67
- };
68
- },
69
- token: function(r, n) {
70
- var e;
71
- return r.eatSpace() ? null : (e = r.next(), e === '"' || e === "'" ? (r.eatWhile(s(e)), r.next(), n.prev = !0, "string") : /[\[{\(]/.test(e) ? (n.prev = !1, null) : /[\]}\)]/.test(e) ? (n.prev = !0, null) : a.test(e) ? (n.prev = !1, "atom") : /[¯\d]/.test(e) ? (n.func ? (n.func = !1, n.prev = !1) : n.prev = !0, r.eatWhile(/[\w\.]/), "number") : t.test(e) || u.test(e) ? "operator" : i.test(e) ? (n.func = !0, n.prev = !1, l[e] ? "variableName.function.standard" : "variableName.function") : o.test(e) ? (r.skipToEnd(), "comment") : e === "∘" && r.peek() === "." ? (r.next(), "variableName.function") : (r.eatWhile(/[\w\$_]/), n.prev = !0, "keyword"));
72
- }
73
- };
74
- export {
75
- f as apl
76
- };
@@ -1,34 +0,0 @@
1
- function t(e) {
2
- var r = e.match(/^\s*\S/);
3
- return e.skipToEnd(), r ? "error" : null;
4
- }
5
- const i = {
6
- name: "asciiarmor",
7
- token: function(e, r) {
8
- var n;
9
- if (r.state == "top")
10
- return e.sol() && (n = e.match(/^-----BEGIN (.*)?-----\s*$/)) ? (r.state = "headers", r.type = n[1], "tag") : t(e);
11
- if (r.state == "headers") {
12
- if (e.sol() && e.match(/^\w+:/))
13
- return r.state = "header", "atom";
14
- var o = t(e);
15
- return o && (r.state = "body"), o;
16
- } else {
17
- if (r.state == "header")
18
- return e.skipToEnd(), r.state = "headers", "string";
19
- if (r.state == "body")
20
- return e.sol() && (n = e.match(/^-----END (.*)?-----\s*$/)) ? n[1] != r.type ? "error" : (r.state = "end", "tag") : e.eatWhile(/[A-Za-z0-9+\/=]/) ? null : (e.next(), "error");
21
- if (r.state == "end")
22
- return t(e);
23
- }
24
- },
25
- blankLine: function(e) {
26
- e.state == "headers" && (e.state = "body");
27
- },
28
- startState: function() {
29
- return { state: "top", type: null };
30
- }
31
- };
32
- export {
33
- i as asciiArmor
34
- };
@@ -1,95 +0,0 @@
1
- function u(i) {
2
- for (var s = {}, c = i.split(" "), T = 0; T < c.length; ++T) s[c[T]] = !0;
3
- return s;
4
- }
5
- const o = {
6
- keywords: u("DEFINITIONS OBJECTS IF DERIVED INFORMATION ACTION REPLY ANY NAMED CHARACTERIZED BEHAVIOUR REGISTERED WITH AS IDENTIFIED CONSTRAINED BY PRESENT BEGIN IMPORTS FROM UNITS SYNTAX MIN-ACCESS MAX-ACCESS MINACCESS MAXACCESS REVISION STATUS DESCRIPTION SEQUENCE SET COMPONENTS OF CHOICE DistinguishedName ENUMERATED SIZE MODULE END INDEX AUGMENTS EXTENSIBILITY IMPLIED EXPORTS"),
7
- cmipVerbs: u("ACTIONS ADD GET NOTIFICATIONS REPLACE REMOVE"),
8
- compareTypes: u("OPTIONAL DEFAULT MANAGED MODULE-TYPE MODULE_IDENTITY MODULE-COMPLIANCE OBJECT-TYPE OBJECT-IDENTITY OBJECT-COMPLIANCE MODE CONFIRMED CONDITIONAL SUBORDINATE SUPERIOR CLASS TRUE FALSE NULL TEXTUAL-CONVENTION"),
9
- status: u("current deprecated mandatory obsolete"),
10
- tags: u("APPLICATION AUTOMATIC EXPLICIT IMPLICIT PRIVATE TAGS UNIVERSAL"),
11
- storage: u("BOOLEAN INTEGER OBJECT IDENTIFIER BIT OCTET STRING UTCTime InterfaceIndex IANAifType CMIP-Attribute REAL PACKAGE PACKAGES IpAddress PhysAddress NetworkAddress BITS BMPString TimeStamp TimeTicks TruthValue RowStatus DisplayString GeneralString GraphicString IA5String NumericString PrintableString SnmpAdminString TeletexString UTF8String VideotexString VisibleString StringStore ISO646String T61String UniversalString Unsigned32 Integer32 Gauge Gauge32 Counter Counter32 Counter64"),
12
- modifier: u("ATTRIBUTE ATTRIBUTES MANDATORY-GROUP MANDATORY-GROUPS GROUP GROUPS ELEMENTS EQUALITY ORDERING SUBSTRINGS DEFINED"),
13
- accessTypes: u("not-accessible accessible-for-notify read-only read-create read-write"),
14
- multiLineStrings: !0
15
- };
16
- function g(i) {
17
- var s = i.keywords || o.keywords, c = i.cmipVerbs || o.cmipVerbs, T = i.compareTypes || o.compareTypes, N = i.status || o.status, d = i.tags || o.tags, f = i.storage || o.storage, m = i.modifier || o.modifier, C = i.accessTypes || o.accessTypes;
18
- i.multiLineStrings || o.multiLineStrings;
19
- var R = i.indentStatements !== !1, A = /[\|\^]/, E;
20
- function y(e, n) {
21
- var t = e.next();
22
- if (t == '"' || t == "'")
23
- return n.tokenize = D(t), n.tokenize(e, n);
24
- if (/[\[\]\(\){}:=,;]/.test(t))
25
- return E = t, "punctuation";
26
- if (t == "-" && e.eat("-"))
27
- return e.skipToEnd(), "comment";
28
- if (/\d/.test(t))
29
- return e.eatWhile(/[\w\.]/), "number";
30
- if (A.test(t))
31
- return e.eatWhile(A), "operator";
32
- e.eatWhile(/[\w\-]/);
33
- var r = e.current();
34
- return s.propertyIsEnumerable(r) ? "keyword" : c.propertyIsEnumerable(r) ? "variableName" : T.propertyIsEnumerable(r) ? "atom" : N.propertyIsEnumerable(r) ? "comment" : d.propertyIsEnumerable(r) ? "typeName" : f.propertyIsEnumerable(r) || m.propertyIsEnumerable(r) || C.propertyIsEnumerable(r) ? "modifier" : "variableName";
35
- }
36
- function D(e) {
37
- return function(n, t) {
38
- for (var r = !1, S, O = !1; (S = n.next()) != null; ) {
39
- if (S == e && !r) {
40
- var I = n.peek();
41
- I && (I = I.toLowerCase(), (I == "b" || I == "h" || I == "o") && n.next()), O = !0;
42
- break;
43
- }
44
- r = !r && S == "\\";
45
- }
46
- return O && (t.tokenize = null), "string";
47
- };
48
- }
49
- function p(e, n, t, r, S) {
50
- this.indented = e, this.column = n, this.type = t, this.align = r, this.prev = S;
51
- }
52
- function a(e, n, t) {
53
- var r = e.indented;
54
- return e.context && e.context.type == "statement" && (r = e.context.indented), e.context = new p(r, n, t, null, e.context);
55
- }
56
- function l(e) {
57
- var n = e.context.type;
58
- return (n == ")" || n == "]" || n == "}") && (e.indented = e.context.indented), e.context = e.context.prev;
59
- }
60
- return {
61
- name: "asn1",
62
- startState: function() {
63
- return {
64
- tokenize: null,
65
- context: new p(-2, 0, "top", !1),
66
- indented: 0,
67
- startOfLine: !0
68
- };
69
- },
70
- token: function(e, n) {
71
- var t = n.context;
72
- if (e.sol() && (t.align == null && (t.align = !1), n.indented = e.indentation(), n.startOfLine = !0), e.eatSpace()) return null;
73
- E = null;
74
- var r = (n.tokenize || y)(e, n);
75
- if (r == "comment") return r;
76
- if (t.align == null && (t.align = !0), (E == ";" || E == ":" || E == ",") && t.type == "statement")
77
- l(n);
78
- else if (E == "{") a(n, e.column(), "}");
79
- else if (E == "[") a(n, e.column(), "]");
80
- else if (E == "(") a(n, e.column(), ")");
81
- else if (E == "}") {
82
- for (; t.type == "statement"; ) t = l(n);
83
- for (t.type == "}" && (t = l(n)); t.type == "statement"; ) t = l(n);
84
- } else E == t.type ? l(n) : R && ((t.type == "}" || t.type == "top") && E != ";" || t.type == "statement" && E == "newstatement") && a(n, e.column(), "statement");
85
- return n.startOfLine = !1, r;
86
- },
87
- languageData: {
88
- indentOnInput: /^\s*[{}]$/,
89
- commentTokens: { line: "--" }
90
- }
91
- };
92
- }
93
- export {
94
- g as asn1
95
- };
@@ -1,271 +0,0 @@
1
- var t = ["exten", "same", "include", "ignorepat", "switch"], o = ["#include", "#exec"], c = [
2
- "addqueuemember",
3
- "adsiprog",
4
- "aelsub",
5
- "agentlogin",
6
- "agentmonitoroutgoing",
7
- "agi",
8
- "alarmreceiver",
9
- "amd",
10
- "answer",
11
- "authenticate",
12
- "background",
13
- "backgrounddetect",
14
- "bridge",
15
- "busy",
16
- "callcompletioncancel",
17
- "callcompletionrequest",
18
- "celgenuserevent",
19
- "changemonitor",
20
- "chanisavail",
21
- "channelredirect",
22
- "chanspy",
23
- "clearhash",
24
- "confbridge",
25
- "congestion",
26
- "continuewhile",
27
- "controlplayback",
28
- "dahdiacceptr2call",
29
- "dahdibarge",
30
- "dahdiras",
31
- "dahdiscan",
32
- "dahdisendcallreroutingfacility",
33
- "dahdisendkeypadfacility",
34
- "datetime",
35
- "dbdel",
36
- "dbdeltree",
37
- "deadagi",
38
- "dial",
39
- "dictate",
40
- "directory",
41
- "disa",
42
- "dumpchan",
43
- "eagi",
44
- "echo",
45
- "endwhile",
46
- "exec",
47
- "execif",
48
- "execiftime",
49
- "exitwhile",
50
- "extenspy",
51
- "externalivr",
52
- "festival",
53
- "flash",
54
- "followme",
55
- "forkcdr",
56
- "getcpeid",
57
- "gosub",
58
- "gosubif",
59
- "goto",
60
- "gotoif",
61
- "gotoiftime",
62
- "hangup",
63
- "iax2provision",
64
- "ices",
65
- "importvar",
66
- "incomplete",
67
- "ivrdemo",
68
- "jabberjoin",
69
- "jabberleave",
70
- "jabbersend",
71
- "jabbersendgroup",
72
- "jabberstatus",
73
- "jack",
74
- "log",
75
- "macro",
76
- "macroexclusive",
77
- "macroexit",
78
- "macroif",
79
- "mailboxexists",
80
- "meetme",
81
- "meetmeadmin",
82
- "meetmechanneladmin",
83
- "meetmecount",
84
- "milliwatt",
85
- "minivmaccmess",
86
- "minivmdelete",
87
- "minivmgreet",
88
- "minivmmwi",
89
- "minivmnotify",
90
- "minivmrecord",
91
- "mixmonitor",
92
- "monitor",
93
- "morsecode",
94
- "mp3player",
95
- "mset",
96
- "musiconhold",
97
- "nbscat",
98
- "nocdr",
99
- "noop",
100
- "odbc",
101
- "odbc",
102
- "odbcfinish",
103
- "originate",
104
- "ospauth",
105
- "ospfinish",
106
- "osplookup",
107
- "ospnext",
108
- "page",
109
- "park",
110
- "parkandannounce",
111
- "parkedcall",
112
- "pausemonitor",
113
- "pausequeuemember",
114
- "pickup",
115
- "pickupchan",
116
- "playback",
117
- "playtones",
118
- "privacymanager",
119
- "proceeding",
120
- "progress",
121
- "queue",
122
- "queuelog",
123
- "raiseexception",
124
- "read",
125
- "readexten",
126
- "readfile",
127
- "receivefax",
128
- "receivefax",
129
- "receivefax",
130
- "record",
131
- "removequeuemember",
132
- "resetcdr",
133
- "retrydial",
134
- "return",
135
- "ringing",
136
- "sayalpha",
137
- "saycountedadj",
138
- "saycountednoun",
139
- "saycountpl",
140
- "saydigits",
141
- "saynumber",
142
- "sayphonetic",
143
- "sayunixtime",
144
- "senddtmf",
145
- "sendfax",
146
- "sendfax",
147
- "sendfax",
148
- "sendimage",
149
- "sendtext",
150
- "sendurl",
151
- "set",
152
- "setamaflags",
153
- "setcallerpres",
154
- "setmusiconhold",
155
- "sipaddheader",
156
- "sipdtmfmode",
157
- "sipremoveheader",
158
- "skel",
159
- "slastation",
160
- "slatrunk",
161
- "sms",
162
- "softhangup",
163
- "speechactivategrammar",
164
- "speechbackground",
165
- "speechcreate",
166
- "speechdeactivategrammar",
167
- "speechdestroy",
168
- "speechloadgrammar",
169
- "speechprocessingsound",
170
- "speechstart",
171
- "speechunloadgrammar",
172
- "stackpop",
173
- "startmusiconhold",
174
- "stopmixmonitor",
175
- "stopmonitor",
176
- "stopmusiconhold",
177
- "stopplaytones",
178
- "system",
179
- "testclient",
180
- "testserver",
181
- "transfer",
182
- "tryexec",
183
- "trysystem",
184
- "unpausemonitor",
185
- "unpausequeuemember",
186
- "userevent",
187
- "verbose",
188
- "vmauthenticate",
189
- "vmsayname",
190
- "voicemail",
191
- "voicemailmain",
192
- "wait",
193
- "waitexten",
194
- "waitfornoise",
195
- "waitforring",
196
- "waitforsilence",
197
- "waitmusiconhold",
198
- "waituntil",
199
- "while",
200
- "zapateller"
201
- ];
202
- function l(e, n) {
203
- var i = "", a = e.next();
204
- if (n.blockComment)
205
- return a == "-" && e.match("-;", !0) ? n.blockComment = !1 : e.skipTo("--;") ? (e.next(), e.next(), e.next(), n.blockComment = !1) : e.skipToEnd(), "comment";
206
- if (a == ";")
207
- return e.match("--", !0) && !e.match("-", !1) ? (n.blockComment = !0, "comment") : (e.skipToEnd(), "comment");
208
- if (a == "[")
209
- return e.skipTo("]"), e.eat("]"), "header";
210
- if (a == '"')
211
- return e.skipTo('"'), "string";
212
- if (a == "'")
213
- return e.skipTo("'"), "string.special";
214
- if (a == "#" && (e.eatWhile(/\w/), i = e.current(), o.indexOf(i) !== -1))
215
- return e.skipToEnd(), "strong";
216
- if (a == "$") {
217
- var r = e.peek();
218
- if (r == "{")
219
- return e.skipTo("}"), e.eat("}"), "variableName.special";
220
- }
221
- if (e.eatWhile(/\w/), i = e.current(), t.indexOf(i) !== -1) {
222
- switch (n.extenStart = !0, i) {
223
- case "same":
224
- n.extenSame = !0;
225
- break;
226
- case "include":
227
- case "switch":
228
- case "ignorepat":
229
- n.extenInclude = !0;
230
- break;
231
- }
232
- return "atom";
233
- }
234
- }
235
- const s = {
236
- name: "asterisk",
237
- startState: function() {
238
- return {
239
- blockComment: !1,
240
- extenStart: !1,
241
- extenSame: !1,
242
- extenInclude: !1,
243
- extenExten: !1,
244
- extenPriority: !1,
245
- extenApplication: !1
246
- };
247
- },
248
- token: function(e, n) {
249
- var i = "";
250
- if (e.eatSpace()) return null;
251
- if (n.extenStart)
252
- return e.eatWhile(/[^\s]/), i = e.current(), /^=>?$/.test(i) ? (n.extenExten = !0, n.extenStart = !1, "strong") : (n.extenStart = !1, e.skipToEnd(), "error");
253
- if (n.extenExten)
254
- return n.extenExten = !1, n.extenPriority = !0, e.eatWhile(/[^,]/), n.extenInclude && (e.skipToEnd(), n.extenPriority = !1, n.extenInclude = !1), n.extenSame && (n.extenPriority = !1, n.extenSame = !1, n.extenApplication = !0), "tag";
255
- if (n.extenPriority)
256
- return n.extenPriority = !1, n.extenApplication = !0, e.next(), n.extenSame ? null : (e.eatWhile(/[^,]/), "number");
257
- if (n.extenApplication) {
258
- if (e.eatWhile(/,/), i = e.current(), i === ",") return null;
259
- if (e.eatWhile(/\w/), i = e.current().toLowerCase(), n.extenApplication = !1, c.indexOf(i) !== -1)
260
- return "def";
261
- } else
262
- return l(e, n);
263
- return null;
264
- },
265
- languageData: {
266
- commentTokens: { line: ";", block: { open: ";--", close: "--;" } }
267
- }
268
- };
269
- export {
270
- s as asterisk
271
- };