@supersoniks/concorde 4.8.0 → 4.9.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (701) hide show
  1. package/.github/workflows/ci.yml +21 -0
  2. package/.github-export-ignore +30 -0
  3. package/.gitlab-ci.yml +13 -0
  4. package/CONTRIBUTING.md +59 -0
  5. package/DEV.md +54 -0
  6. package/LICENSE +21 -0
  7. package/OPEN_SOURCE_CHECKPOINT.md +133 -0
  8. package/README.md +29 -15
  9. package/build-infos.json +1 -1
  10. package/concorde-core.bundle.js +271 -271
  11. package/concorde-core.es.js +4503 -4389
  12. package/dist/concorde-core.bundle.js +271 -271
  13. package/dist/concorde-core.es.js +4503 -4389
  14. package/dist/docs-mock-api-sw.js +3 -2
  15. package/dist/docs-mock-api-sw.js.map +2 -2
  16. package/dist/js/components.js +12 -0
  17. package/dist/js/components.js.map +1 -0
  18. package/dist/js/concorde-loaded.js +5 -0
  19. package/dist/js/concorde-loaded.js.map +1 -0
  20. package/dist/js/core/_types/endpoint.js +5 -0
  21. package/dist/js/core/_types/endpoint.js.map +1 -0
  22. package/dist/js/core/_types/key.js +2 -0
  23. package/dist/js/core/_types/key.js.map +1 -0
  24. package/dist/js/core/_types/types.js +3 -0
  25. package/dist/js/core/_types/types.js.map +1 -0
  26. package/dist/js/core/components/functional/date/date.js +272 -0
  27. package/dist/js/core/components/functional/date/date.js.map +1 -0
  28. package/dist/js/core/components/functional/example/example.js +44 -0
  29. package/dist/js/core/components/functional/example/example.js.map +1 -0
  30. package/dist/js/core/components/functional/fetch/fetch.js +79 -0
  31. package/dist/js/core/components/functional/fetch/fetch.js.map +1 -0
  32. package/dist/js/core/components/functional/functional.js +17 -0
  33. package/dist/js/core/components/functional/functional.js.map +1 -0
  34. package/dist/js/core/components/functional/if/if.js +39 -0
  35. package/dist/js/core/components/functional/if/if.js.map +1 -0
  36. package/dist/js/core/components/functional/list/list.js +341 -0
  37. package/dist/js/core/components/functional/list/list.js.map +1 -0
  38. package/dist/js/core/components/functional/mix/mix.js +103 -0
  39. package/dist/js/core/components/functional/mix/mix.js.map +1 -0
  40. package/dist/js/core/components/functional/queue/queue.js +386 -0
  41. package/dist/js/core/components/functional/queue/queue.js.map +1 -0
  42. package/dist/js/core/components/functional/router/redirect.js +54 -0
  43. package/dist/js/core/components/functional/router/redirect.js.map +1 -0
  44. package/dist/js/core/components/functional/router/router.js +179 -0
  45. package/dist/js/core/components/functional/router/router.js.map +1 -0
  46. package/dist/js/core/components/functional/sdui/SDUIDescriptorTransformer.js +216 -0
  47. package/dist/js/core/components/functional/sdui/SDUIDescriptorTransformer.js.map +1 -0
  48. package/dist/js/core/components/functional/sdui/default-library.json +108 -0
  49. package/dist/js/core/components/functional/sdui/sdui-utils.js +64 -0
  50. package/dist/js/core/components/functional/sdui/sdui-utils.js.map +1 -0
  51. package/dist/js/core/components/functional/sdui/sdui.js +266 -0
  52. package/dist/js/core/components/functional/sdui/sdui.js.map +1 -0
  53. package/dist/js/core/components/functional/sdui/types.js +2 -0
  54. package/dist/js/core/components/functional/sdui/types.js.map +1 -0
  55. package/dist/js/core/components/functional/sonic-scope/sonic-scope.js +22 -0
  56. package/dist/js/core/components/functional/sonic-scope/sonic-scope.js.map +1 -0
  57. package/dist/js/core/components/functional/states/states.js +172 -0
  58. package/dist/js/core/components/functional/states/states.js.map +1 -0
  59. package/dist/js/core/components/functional/submit/submit.js +284 -0
  60. package/dist/js/core/components/functional/submit/submit.js.map +1 -0
  61. package/dist/js/core/components/functional/subscriber/subscriber.js +39 -0
  62. package/dist/js/core/components/functional/subscriber/subscriber.js.map +1 -0
  63. package/dist/js/core/components/functional/translation/translation.js +28 -0
  64. package/dist/js/core/components/functional/translation/translation.js.map +1 -0
  65. package/dist/js/core/components/functional/value/value.js +28 -0
  66. package/dist/js/core/components/functional/value/value.js.map +1 -0
  67. package/dist/js/core/components/ui/_css/scroll.js +25 -0
  68. package/dist/js/core/components/ui/_css/scroll.js.map +1 -0
  69. package/dist/js/core/components/ui/_css/shadow.js +22 -0
  70. package/dist/js/core/components/ui/_css/shadow.js.map +1 -0
  71. package/dist/js/core/components/ui/_css/size.js +36 -0
  72. package/dist/js/core/components/ui/_css/size.js.map +1 -0
  73. package/dist/js/core/components/ui/_css/type.js +92 -0
  74. package/dist/js/core/components/ui/_css/type.js.map +1 -0
  75. package/dist/js/core/components/ui/alert/alert.js +213 -0
  76. package/dist/js/core/components/ui/alert/alert.js.map +1 -0
  77. package/dist/js/core/components/ui/alert-messages/alert-messages.js +68 -0
  78. package/dist/js/core/components/ui/alert-messages/alert-messages.js.map +1 -0
  79. package/dist/js/core/components/ui/badge/badge.js +199 -0
  80. package/dist/js/core/components/ui/badge/badge.js.map +1 -0
  81. package/dist/js/core/components/ui/button/button.js +697 -0
  82. package/dist/js/core/components/ui/button/button.js.map +1 -0
  83. package/dist/js/core/components/ui/captcha/altchaStyles.js +226 -0
  84. package/dist/js/core/components/ui/captcha/altchaStyles.js.map +1 -0
  85. package/dist/js/core/components/ui/captcha/captcha.js +167 -0
  86. package/dist/js/core/components/ui/captcha/captcha.js.map +1 -0
  87. package/dist/js/core/components/ui/card/card-footer.js +26 -0
  88. package/dist/js/core/components/ui/card/card-footer.js.map +1 -0
  89. package/dist/js/core/components/ui/card/card-header-descripton.js +30 -0
  90. package/dist/js/core/components/ui/card/card-header-descripton.js.map +1 -0
  91. package/dist/js/core/components/ui/card/card-header.js +79 -0
  92. package/dist/js/core/components/ui/card/card-header.js.map +1 -0
  93. package/dist/js/core/components/ui/card/card-main.js +26 -0
  94. package/dist/js/core/components/ui/card/card-main.js.map +1 -0
  95. package/dist/js/core/components/ui/card/card.js +67 -0
  96. package/dist/js/core/components/ui/card/card.js.map +1 -0
  97. package/dist/js/core/components/ui/divider/divider.js +200 -0
  98. package/dist/js/core/components/ui/divider/divider.js.map +1 -0
  99. package/dist/js/core/components/ui/form/checkbox/checkbox.js +257 -0
  100. package/dist/js/core/components/ui/form/checkbox/checkbox.js.map +1 -0
  101. package/dist/js/core/components/ui/form/css/form-control.js +393 -0
  102. package/dist/js/core/components/ui/form/css/form-control.js.map +1 -0
  103. package/dist/js/core/components/ui/form/fieldset/fieldset.js +124 -0
  104. package/dist/js/core/components/ui/form/fieldset/fieldset.js.map +1 -0
  105. package/dist/js/core/components/ui/form/fieldset/legend-description.js +38 -0
  106. package/dist/js/core/components/ui/form/fieldset/legend-description.js.map +1 -0
  107. package/dist/js/core/components/ui/form/fieldset/legend.js +130 -0
  108. package/dist/js/core/components/ui/form/fieldset/legend.js.map +1 -0
  109. package/dist/js/core/components/ui/form/form-actions/form-actions.js +47 -0
  110. package/dist/js/core/components/ui/form/form-actions/form-actions.js.map +1 -0
  111. package/dist/js/core/components/ui/form/form-layout/form-layout.js +84 -0
  112. package/dist/js/core/components/ui/form/form-layout/form-layout.js.map +1 -0
  113. package/dist/js/core/components/ui/form/input/input.js +316 -0
  114. package/dist/js/core/components/ui/form/input/input.js.map +1 -0
  115. package/dist/js/core/components/ui/form/input/password-helper.js +134 -0
  116. package/dist/js/core/components/ui/form/input/password-helper.js.map +1 -0
  117. package/dist/js/core/components/ui/form/input/same-value-helper.js +85 -0
  118. package/dist/js/core/components/ui/form/input/same-value-helper.js.map +1 -0
  119. package/dist/js/core/components/ui/form/input-autocomplete/input-autocomplete.js +405 -0
  120. package/dist/js/core/components/ui/form/input-autocomplete/input-autocomplete.js.map +1 -0
  121. package/dist/js/core/components/ui/form/radio/radio.js +63 -0
  122. package/dist/js/core/components/ui/form/radio/radio.js.map +1 -0
  123. package/dist/js/core/components/ui/form/select/select.js +323 -0
  124. package/dist/js/core/components/ui/form/select/select.js.map +1 -0
  125. package/dist/js/core/components/ui/form/switch/switch.js +90 -0
  126. package/dist/js/core/components/ui/form/switch/switch.js.map +1 -0
  127. package/dist/js/core/components/ui/form/textarea/textarea.js +162 -0
  128. package/dist/js/core/components/ui/form/textarea/textarea.js.map +1 -0
  129. package/dist/js/core/components/ui/group/group.js +128 -0
  130. package/dist/js/core/components/ui/group/group.js.map +1 -0
  131. package/dist/js/core/components/ui/icon/icon.js +129 -0
  132. package/dist/js/core/components/ui/icon/icon.js.map +1 -0
  133. package/dist/js/core/components/ui/icon/icons.js +163 -0
  134. package/dist/js/core/components/ui/icon/icons.js.map +1 -0
  135. package/dist/js/core/components/ui/icon/icons.json +1 -0
  136. package/dist/js/core/components/ui/image/image.js +160 -0
  137. package/dist/js/core/components/ui/image/image.js.map +1 -0
  138. package/dist/js/core/components/ui/link/link.js +125 -0
  139. package/dist/js/core/components/ui/link/link.js.map +1 -0
  140. package/dist/js/core/components/ui/loader/loader.js +106 -0
  141. package/dist/js/core/components/ui/loader/loader.js.map +1 -0
  142. package/dist/js/core/components/ui/loader/styles/fixed.js +56 -0
  143. package/dist/js/core/components/ui/loader/styles/fixed.js.map +1 -0
  144. package/dist/js/core/components/ui/loader/styles/inline.js +70 -0
  145. package/dist/js/core/components/ui/loader/styles/inline.js.map +1 -0
  146. package/dist/js/core/components/ui/menu/menu-item.js +35 -0
  147. package/dist/js/core/components/ui/menu/menu-item.js.map +1 -0
  148. package/dist/js/core/components/ui/menu/menu.js +436 -0
  149. package/dist/js/core/components/ui/menu/menu.js.map +1 -0
  150. package/dist/js/core/components/ui/modal/modal-actions.js +44 -0
  151. package/dist/js/core/components/ui/modal/modal-actions.js.map +1 -0
  152. package/dist/js/core/components/ui/modal/modal-close.js +56 -0
  153. package/dist/js/core/components/ui/modal/modal-close.js.map +1 -0
  154. package/dist/js/core/components/ui/modal/modal-content.js +27 -0
  155. package/dist/js/core/components/ui/modal/modal-content.js.map +1 -0
  156. package/dist/js/core/components/ui/modal/modal-subtitle.js +34 -0
  157. package/dist/js/core/components/ui/modal/modal-subtitle.js.map +1 -0
  158. package/dist/js/core/components/ui/modal/modal-title.js +35 -0
  159. package/dist/js/core/components/ui/modal/modal-title.js.map +1 -0
  160. package/dist/js/core/components/ui/modal/modal-utils.js +32 -0
  161. package/dist/js/core/components/ui/modal/modal-utils.js.map +1 -0
  162. package/dist/js/core/components/ui/modal/modal.js +568 -0
  163. package/dist/js/core/components/ui/modal/modal.js.map +1 -0
  164. package/dist/js/core/components/ui/pop/pop.js +337 -0
  165. package/dist/js/core/components/ui/pop/pop.js.map +1 -0
  166. package/dist/js/core/components/ui/progress/progress.js +164 -0
  167. package/dist/js/core/components/ui/progress/progress.js.map +1 -0
  168. package/dist/js/core/components/ui/table/table-caption.js +29 -0
  169. package/dist/js/core/components/ui/table/table-caption.js.map +1 -0
  170. package/dist/js/core/components/ui/table/table-tbody.js +41 -0
  171. package/dist/js/core/components/ui/table/table-tbody.js.map +1 -0
  172. package/dist/js/core/components/ui/table/table-td.js +69 -0
  173. package/dist/js/core/components/ui/table/table-td.js.map +1 -0
  174. package/dist/js/core/components/ui/table/table-tfoot.js +28 -0
  175. package/dist/js/core/components/ui/table/table-tfoot.js.map +1 -0
  176. package/dist/js/core/components/ui/table/table-th.js +80 -0
  177. package/dist/js/core/components/ui/table/table-th.js.map +1 -0
  178. package/dist/js/core/components/ui/table/table-thead.js +26 -0
  179. package/dist/js/core/components/ui/table/table-thead.js.map +1 -0
  180. package/dist/js/core/components/ui/table/table-tr.js +67 -0
  181. package/dist/js/core/components/ui/table/table-tr.js.map +1 -0
  182. package/dist/js/core/components/ui/table/table.js +106 -0
  183. package/dist/js/core/components/ui/table/table.js.map +1 -0
  184. package/dist/js/core/components/ui/theme/theme-collection/core-variables.js +74 -0
  185. package/dist/js/core/components/ui/theme/theme-collection/core-variables.js.map +1 -0
  186. package/dist/js/core/components/ui/theme/theme-collection/dark.js +39 -0
  187. package/dist/js/core/components/ui/theme/theme-collection/dark.js.map +1 -0
  188. package/dist/js/core/components/ui/theme/theme-collection/light.js +32 -0
  189. package/dist/js/core/components/ui/theme/theme-collection/light.js.map +1 -0
  190. package/dist/js/core/components/ui/theme/theme.js +150 -0
  191. package/dist/js/core/components/ui/theme/theme.js.map +1 -0
  192. package/dist/js/core/components/ui/toast/message-subscriber.js +41 -0
  193. package/dist/js/core/components/ui/toast/message-subscriber.js.map +1 -0
  194. package/dist/js/core/components/ui/toast/toast-item.js +379 -0
  195. package/dist/js/core/components/ui/toast/toast-item.js.map +1 -0
  196. package/dist/js/core/components/ui/toast/toast.js +269 -0
  197. package/dist/js/core/components/ui/toast/toast.js.map +1 -0
  198. package/dist/js/core/components/ui/toast/types.js +2 -0
  199. package/dist/js/core/components/ui/toast/types.js.map +1 -0
  200. package/dist/js/core/components/ui/tooltip/tooltip.js +219 -0
  201. package/dist/js/core/components/ui/tooltip/tooltip.js.map +1 -0
  202. package/dist/js/core/components/ui/ui.js +41 -0
  203. package/dist/js/core/components/ui/ui.js.map +1 -0
  204. package/dist/js/core/core.js +14 -0
  205. package/dist/js/core/core.js.map +1 -0
  206. package/dist/js/core/decorators/Subscriber.js +9 -0
  207. package/dist/js/core/decorators/Subscriber.js.map +1 -0
  208. package/dist/js/core/decorators/api.js +611 -0
  209. package/dist/js/core/decorators/api.js.map +1 -0
  210. package/dist/js/core/decorators/lifecycle.js +67 -0
  211. package/dist/js/core/decorators/lifecycle.js.map +1 -0
  212. package/dist/js/core/decorators/subscriber/ancestorAttribute.js +27 -0
  213. package/dist/js/core/decorators/subscriber/ancestorAttribute.js.map +1 -0
  214. package/dist/js/core/decorators/subscriber/autoFill.js +26 -0
  215. package/dist/js/core/decorators/subscriber/autoFill.js.map +1 -0
  216. package/dist/js/core/decorators/subscriber/autoSubscribe.js +46 -0
  217. package/dist/js/core/decorators/subscriber/autoSubscribe.js.map +1 -0
  218. package/dist/js/core/decorators/subscriber/bind.js +150 -0
  219. package/dist/js/core/decorators/subscriber/bind.js.map +1 -0
  220. package/dist/js/core/decorators/subscriber/common.js +44 -0
  221. package/dist/js/core/decorators/subscriber/common.js.map +1 -0
  222. package/dist/js/core/decorators/subscriber/dynamicPath.js +75 -0
  223. package/dist/js/core/decorators/subscriber/dynamicPath.js.map +1 -0
  224. package/dist/js/core/decorators/subscriber/dynamicPropertyWatch.js +138 -0
  225. package/dist/js/core/decorators/subscriber/dynamicPropertyWatch.js.map +1 -0
  226. package/dist/js/core/decorators/subscriber/handle.js +22 -0
  227. package/dist/js/core/decorators/subscriber/handle.js.map +1 -0
  228. package/dist/js/core/decorators/subscriber/onAssign.js +199 -0
  229. package/dist/js/core/decorators/subscriber/onAssign.js.map +1 -0
  230. package/dist/js/core/decorators/subscriber/publish.js +108 -0
  231. package/dist/js/core/decorators/subscriber/publish.js.map +1 -0
  232. package/dist/js/core/decorators/subscriber/publisherPath.js +16 -0
  233. package/dist/js/core/decorators/subscriber/publisherPath.js.map +1 -0
  234. package/dist/js/core/decorators/subscriber/subscribe.js +20 -0
  235. package/dist/js/core/decorators/subscriber/subscribe.js.map +1 -0
  236. package/dist/js/core/directives/DataProvider.js +127 -0
  237. package/dist/js/core/directives/DataProvider.js.map +1 -0
  238. package/dist/js/core/directives/Wording.js +221 -0
  239. package/dist/js/core/directives/Wording.js.map +1 -0
  240. package/dist/js/core/mixins/Fetcher.js +325 -0
  241. package/dist/js/core/mixins/Fetcher.js.map +1 -0
  242. package/dist/js/core/mixins/FormCheckable.js +313 -0
  243. package/dist/js/core/mixins/FormCheckable.js.map +1 -0
  244. package/dist/js/core/mixins/FormElement.js +304 -0
  245. package/dist/js/core/mixins/FormElement.js.map +1 -0
  246. package/dist/js/core/mixins/FormInput.js +82 -0
  247. package/dist/js/core/mixins/FormInput.js.map +1 -0
  248. package/dist/js/core/mixins/Subscriber.js +354 -0
  249. package/dist/js/core/mixins/Subscriber.js.map +1 -0
  250. package/dist/js/core/mixins/TemplatesContainer.js +70 -0
  251. package/dist/js/core/mixins/TemplatesContainer.js.map +1 -0
  252. package/dist/js/core/mixins/mixins.js +7 -0
  253. package/dist/js/core/mixins/mixins.js.map +1 -0
  254. package/dist/js/core/utils/AncestorAttributeObserver.js +140 -0
  255. package/dist/js/core/utils/AncestorAttributeObserver.js.map +1 -0
  256. package/dist/js/core/utils/Arrays.js +141 -0
  257. package/dist/js/core/utils/Arrays.js.map +1 -0
  258. package/dist/js/core/utils/DataBindObserver.js +265 -0
  259. package/dist/js/core/utils/DataBindObserver.js.map +1 -0
  260. package/dist/js/core/utils/Electron.js +14 -0
  261. package/dist/js/core/utils/Electron.js.map +1 -0
  262. package/dist/js/core/utils/Format.js +43 -0
  263. package/dist/js/core/utils/Format.js.map +1 -0
  264. package/dist/js/core/utils/HTML.js +248 -0
  265. package/dist/js/core/utils/HTML.js.map +1 -0
  266. package/dist/js/core/utils/LocationHandler.js +143 -0
  267. package/dist/js/core/utils/LocationHandler.js.map +1 -0
  268. package/dist/js/core/utils/Objects.js +111 -0
  269. package/dist/js/core/utils/Objects.js.map +1 -0
  270. package/dist/js/core/utils/PublisherProxy.js +946 -0
  271. package/dist/js/core/utils/PublisherProxy.js.map +1 -0
  272. package/dist/js/core/utils/Utils.js +19 -0
  273. package/dist/js/core/utils/Utils.js.map +1 -0
  274. package/dist/js/core/utils/aesCrypto.js +98 -0
  275. package/dist/js/core/utils/aesCrypto.js.map +1 -0
  276. package/dist/js/core/utils/api.js +574 -0
  277. package/dist/js/core/utils/api.js.map +1 -0
  278. package/dist/js/core/utils/dataProviderKey.js +64 -0
  279. package/dist/js/core/utils/dataProviderKey.js.map +1 -0
  280. package/dist/js/core/utils/endpoint.js +74 -0
  281. package/dist/js/core/utils/endpoint.js.map +1 -0
  282. package/dist/js/core/utils/route.js +149 -0
  283. package/dist/js/core/utils/route.js.map +1 -0
  284. package/dist/js/core/utils/url-pattern.js +3 -0
  285. package/dist/js/core/utils/url-pattern.js.map +1 -0
  286. package/dist/js/dataprovider.js +2 -0
  287. package/dist/js/dataprovider.js.map +1 -0
  288. package/dist/js/decorators.js +39 -0
  289. package/dist/js/decorators.js.map +1 -0
  290. package/dist/js/directives.js +30 -0
  291. package/dist/js/directives.js.map +1 -0
  292. package/dist/js/index.js +8 -0
  293. package/dist/js/index.js.map +1 -0
  294. package/dist/js/mixins.js +23 -0
  295. package/dist/js/mixins.js.map +1 -0
  296. package/dist/js/test-utils/TestUtils.js +10 -0
  297. package/dist/js/test-utils/TestUtils.js.map +1 -0
  298. package/dist/js/utils.js +41 -0
  299. package/dist/js/utils.js.map +1 -0
  300. package/dist/types/components.d.ts +5 -0
  301. package/dist/types/components.d.ts.map +1 -0
  302. package/dist/types/concorde-loaded.d.ts +2 -0
  303. package/dist/types/concorde-loaded.d.ts.map +1 -0
  304. package/dist/types/core/_types/endpoint.d.ts +5 -0
  305. package/dist/types/core/_types/endpoint.d.ts.map +1 -0
  306. package/dist/types/core/_types/key.d.ts +2 -0
  307. package/dist/types/core/_types/key.d.ts.map +1 -0
  308. package/dist/types/core/_types/types.d.ts +28 -0
  309. package/dist/types/core/_types/types.d.ts.map +1 -0
  310. package/dist/types/core/components/functional/date/date.d.ts +52 -0
  311. package/dist/types/core/components/functional/date/date.d.ts.map +1 -0
  312. package/dist/types/core/components/functional/example/example.d.ts +15 -0
  313. package/dist/types/core/components/functional/example/example.d.ts.map +1 -0
  314. package/dist/types/core/components/functional/fetch/fetch.d.ts +102 -0
  315. package/dist/types/core/components/functional/fetch/fetch.d.ts.map +1 -0
  316. package/dist/types/core/components/functional/functional.d.ts +17 -0
  317. package/dist/types/core/components/functional/functional.d.ts.map +1 -0
  318. package/dist/types/core/components/functional/if/if.d.ts +13 -0
  319. package/dist/types/core/components/functional/if/if.d.ts.map +1 -0
  320. package/dist/types/core/components/functional/list/list.d.ts +149 -0
  321. package/dist/types/core/components/functional/list/list.d.ts.map +1 -0
  322. package/dist/types/core/components/functional/mix/mix.d.ts +23 -0
  323. package/dist/types/core/components/functional/mix/mix.d.ts.map +1 -0
  324. package/dist/types/core/components/functional/queue/queue.d.ts +79 -0
  325. package/dist/types/core/components/functional/queue/queue.d.ts.map +1 -0
  326. package/dist/types/core/components/functional/router/redirect.d.ts +19 -0
  327. package/dist/types/core/components/functional/router/redirect.d.ts.map +1 -0
  328. package/dist/types/core/components/functional/router/router.d.ts +46 -0
  329. package/dist/types/core/components/functional/router/router.d.ts.map +1 -0
  330. package/dist/types/core/components/functional/sdui/SDUIDescriptorTransformer.d.ts +59 -0
  331. package/dist/types/core/components/functional/sdui/SDUIDescriptorTransformer.d.ts.map +1 -0
  332. package/dist/types/core/components/functional/sdui/sdui-utils.d.ts +6 -0
  333. package/dist/types/core/components/functional/sdui/sdui-utils.d.ts.map +1 -0
  334. package/dist/types/core/components/functional/sdui/sdui.d.ts +145 -0
  335. package/dist/types/core/components/functional/sdui/sdui.d.ts.map +1 -0
  336. package/dist/types/core/components/functional/sdui/types.d.ts +38 -0
  337. package/dist/types/core/components/functional/sdui/types.d.ts.map +1 -0
  338. package/dist/types/core/components/functional/sonic-scope/sonic-scope.d.ts +6 -0
  339. package/dist/types/core/components/functional/sonic-scope/sonic-scope.d.ts.map +1 -0
  340. package/dist/types/core/components/functional/states/states.d.ts +42 -0
  341. package/dist/types/core/components/functional/states/states.d.ts.map +1 -0
  342. package/dist/types/core/components/functional/submit/submit.d.ts +37 -0
  343. package/dist/types/core/components/functional/submit/submit.d.ts.map +1 -0
  344. package/dist/types/core/components/functional/subscriber/subscriber.d.ts +13 -0
  345. package/dist/types/core/components/functional/subscriber/subscriber.d.ts.map +1 -0
  346. package/dist/types/core/components/functional/translation/translation.d.ts +7 -0
  347. package/dist/types/core/components/functional/translation/translation.d.ts.map +1 -0
  348. package/dist/types/core/components/functional/value/value.d.ts +8 -0
  349. package/dist/types/core/components/functional/value/value.d.ts.map +1 -0
  350. package/dist/types/core/components/ui/_css/scroll.d.ts +2 -0
  351. package/dist/types/core/components/ui/_css/scroll.d.ts.map +1 -0
  352. package/dist/types/core/components/ui/_css/shadow.d.ts +3 -0
  353. package/dist/types/core/components/ui/_css/shadow.d.ts.map +1 -0
  354. package/dist/types/core/components/ui/_css/size.d.ts +3 -0
  355. package/dist/types/core/components/ui/_css/size.d.ts.map +1 -0
  356. package/dist/types/core/components/ui/_css/type.d.ts +3 -0
  357. package/dist/types/core/components/ui/_css/type.d.ts.map +1 -0
  358. package/dist/types/core/components/ui/alert/alert.d.ts +37 -0
  359. package/dist/types/core/components/ui/alert/alert.d.ts.map +1 -0
  360. package/dist/types/core/components/ui/alert-messages/alert-messages.d.ts +15 -0
  361. package/dist/types/core/components/ui/alert-messages/alert-messages.d.ts.map +1 -0
  362. package/dist/types/core/components/ui/badge/badge.d.ts +27 -0
  363. package/dist/types/core/components/ui/badge/badge.d.ts.map +1 -0
  364. package/dist/types/core/components/ui/button/button.d.ts +180 -0
  365. package/dist/types/core/components/ui/button/button.d.ts.map +1 -0
  366. package/dist/types/core/components/ui/captcha/altchaStyles.d.ts +2 -0
  367. package/dist/types/core/components/ui/captcha/altchaStyles.d.ts.map +1 -0
  368. package/dist/types/core/components/ui/captcha/captcha.d.ts +30 -0
  369. package/dist/types/core/components/ui/captcha/captcha.d.ts.map +1 -0
  370. package/dist/types/core/components/ui/card/card-footer.d.ts +6 -0
  371. package/dist/types/core/components/ui/card/card-footer.d.ts.map +1 -0
  372. package/dist/types/core/components/ui/card/card-header-descripton.d.ts +6 -0
  373. package/dist/types/core/components/ui/card/card-header-descripton.d.ts.map +1 -0
  374. package/dist/types/core/components/ui/card/card-header.d.ts +9 -0
  375. package/dist/types/core/components/ui/card/card-header.d.ts.map +1 -0
  376. package/dist/types/core/components/ui/card/card-main.d.ts +6 -0
  377. package/dist/types/core/components/ui/card/card-main.d.ts.map +1 -0
  378. package/dist/types/core/components/ui/card/card.d.ts +13 -0
  379. package/dist/types/core/components/ui/card/card.d.ts.map +1 -0
  380. package/dist/types/core/components/ui/divider/divider.d.ts +16 -0
  381. package/dist/types/core/components/ui/divider/divider.d.ts.map +1 -0
  382. package/dist/types/core/components/ui/form/checkbox/checkbox.d.ts +176 -0
  383. package/dist/types/core/components/ui/form/checkbox/checkbox.d.ts.map +1 -0
  384. package/dist/types/core/components/ui/form/css/form-control.d.ts +5 -0
  385. package/dist/types/core/components/ui/form/css/form-control.d.ts.map +1 -0
  386. package/dist/types/core/components/ui/form/fieldset/fieldset.d.ts +24 -0
  387. package/dist/types/core/components/ui/form/fieldset/fieldset.d.ts.map +1 -0
  388. package/dist/types/core/components/ui/form/fieldset/legend-description.d.ts +6 -0
  389. package/dist/types/core/components/ui/form/fieldset/legend-description.d.ts.map +1 -0
  390. package/dist/types/core/components/ui/form/fieldset/legend.d.ts +17 -0
  391. package/dist/types/core/components/ui/form/fieldset/legend.d.ts.map +1 -0
  392. package/dist/types/core/components/ui/form/form-actions/form-actions.d.ts +8 -0
  393. package/dist/types/core/components/ui/form/form-actions/form-actions.d.ts.map +1 -0
  394. package/dist/types/core/components/ui/form/form-layout/form-layout.d.ts +13 -0
  395. package/dist/types/core/components/ui/form/form-layout/form-layout.d.ts.map +1 -0
  396. package/dist/types/core/components/ui/form/input/input.d.ts +123 -0
  397. package/dist/types/core/components/ui/form/input/input.d.ts.map +1 -0
  398. package/dist/types/core/components/ui/form/input/password-helper.d.ts +26 -0
  399. package/dist/types/core/components/ui/form/input/password-helper.d.ts.map +1 -0
  400. package/dist/types/core/components/ui/form/input/same-value-helper.d.ts +17 -0
  401. package/dist/types/core/components/ui/form/input/same-value-helper.d.ts.map +1 -0
  402. package/dist/types/core/components/ui/form/input-autocomplete/input-autocomplete.d.ts +155 -0
  403. package/dist/types/core/components/ui/form/input-autocomplete/input-autocomplete.d.ts.map +1 -0
  404. package/dist/types/core/components/ui/form/radio/radio.d.ts +15 -0
  405. package/dist/types/core/components/ui/form/radio/radio.d.ts.map +1 -0
  406. package/dist/types/core/components/ui/form/select/select.d.ts +59 -0
  407. package/dist/types/core/components/ui/form/select/select.d.ts.map +1 -0
  408. package/dist/types/core/components/ui/form/switch/switch.d.ts +6 -0
  409. package/dist/types/core/components/ui/form/switch/switch.d.ts.map +1 -0
  410. package/dist/types/core/components/ui/form/textarea/textarea.d.ts +94 -0
  411. package/dist/types/core/components/ui/form/textarea/textarea.d.ts.map +1 -0
  412. package/dist/types/core/components/ui/group/group.d.ts +17 -0
  413. package/dist/types/core/components/ui/group/group.d.ts.map +1 -0
  414. package/dist/types/core/components/ui/icon/icon.d.ts +28 -0
  415. package/dist/types/core/components/ui/icon/icon.d.ts.map +1 -0
  416. package/dist/types/core/components/ui/icon/icons.d.ts +11 -0
  417. package/dist/types/core/components/ui/icon/icons.d.ts.map +1 -0
  418. package/dist/types/core/components/ui/image/image.d.ts +16 -0
  419. package/dist/types/core/components/ui/image/image.d.ts.map +1 -0
  420. package/dist/types/core/components/ui/link/link.d.ts +30 -0
  421. package/dist/types/core/components/ui/link/link.d.ts.map +1 -0
  422. package/dist/types/core/components/ui/loader/loader.d.ts +24 -0
  423. package/dist/types/core/components/ui/loader/loader.d.ts.map +1 -0
  424. package/dist/types/core/components/ui/loader/styles/fixed.d.ts +2 -0
  425. package/dist/types/core/components/ui/loader/styles/fixed.d.ts.map +1 -0
  426. package/dist/types/core/components/ui/loader/styles/inline.d.ts +2 -0
  427. package/dist/types/core/components/ui/loader/styles/inline.d.ts.map +1 -0
  428. package/dist/types/core/components/ui/menu/menu-item.d.ts +6 -0
  429. package/dist/types/core/components/ui/menu/menu-item.d.ts.map +1 -0
  430. package/dist/types/core/components/ui/menu/menu.d.ts +52 -0
  431. package/dist/types/core/components/ui/menu/menu.d.ts.map +1 -0
  432. package/dist/types/core/components/ui/modal/modal-actions.d.ts +9 -0
  433. package/dist/types/core/components/ui/modal/modal-actions.d.ts.map +1 -0
  434. package/dist/types/core/components/ui/modal/modal-close.d.ts +11 -0
  435. package/dist/types/core/components/ui/modal/modal-close.d.ts.map +1 -0
  436. package/dist/types/core/components/ui/modal/modal-content.d.ts +6 -0
  437. package/dist/types/core/components/ui/modal/modal-content.d.ts.map +1 -0
  438. package/dist/types/core/components/ui/modal/modal-subtitle.d.ts +6 -0
  439. package/dist/types/core/components/ui/modal/modal-subtitle.d.ts.map +1 -0
  440. package/dist/types/core/components/ui/modal/modal-title.d.ts +6 -0
  441. package/dist/types/core/components/ui/modal/modal-title.d.ts.map +1 -0
  442. package/dist/types/core/components/ui/modal/modal-utils.d.ts +4 -0
  443. package/dist/types/core/components/ui/modal/modal-utils.d.ts.map +1 -0
  444. package/dist/types/core/components/ui/modal/modal.d.ts +79 -0
  445. package/dist/types/core/components/ui/modal/modal.d.ts.map +1 -0
  446. package/dist/types/core/components/ui/pop/pop.d.ts +42 -0
  447. package/dist/types/core/components/ui/pop/pop.d.ts.map +1 -0
  448. package/dist/types/core/components/ui/progress/progress.d.ts +12 -0
  449. package/dist/types/core/components/ui/progress/progress.d.ts.map +1 -0
  450. package/dist/types/core/components/ui/table/table-caption.d.ts +6 -0
  451. package/dist/types/core/components/ui/table/table-caption.d.ts.map +1 -0
  452. package/dist/types/core/components/ui/table/table-tbody.d.ts +6 -0
  453. package/dist/types/core/components/ui/table/table-tbody.d.ts.map +1 -0
  454. package/dist/types/core/components/ui/table/table-td.d.ts +13 -0
  455. package/dist/types/core/components/ui/table/table-td.d.ts.map +1 -0
  456. package/dist/types/core/components/ui/table/table-tfoot.d.ts +6 -0
  457. package/dist/types/core/components/ui/table/table-tfoot.d.ts.map +1 -0
  458. package/dist/types/core/components/ui/table/table-th.d.ts +12 -0
  459. package/dist/types/core/components/ui/table/table-th.d.ts.map +1 -0
  460. package/dist/types/core/components/ui/table/table-thead.d.ts +6 -0
  461. package/dist/types/core/components/ui/table/table-thead.d.ts.map +1 -0
  462. package/dist/types/core/components/ui/table/table-tr.d.ts +14 -0
  463. package/dist/types/core/components/ui/table/table-tr.d.ts.map +1 -0
  464. package/dist/types/core/components/ui/table/table.d.ts +18 -0
  465. package/dist/types/core/components/ui/table/table.d.ts.map +1 -0
  466. package/dist/types/core/components/ui/theme/theme-collection/core-variables.d.ts +2 -0
  467. package/dist/types/core/components/ui/theme/theme-collection/core-variables.d.ts.map +1 -0
  468. package/dist/types/core/components/ui/theme/theme-collection/dark.d.ts +2 -0
  469. package/dist/types/core/components/ui/theme/theme-collection/dark.d.ts.map +1 -0
  470. package/dist/types/core/components/ui/theme/theme-collection/light.d.ts +2 -0
  471. package/dist/types/core/components/ui/theme/theme-collection/light.d.ts.map +1 -0
  472. package/dist/types/core/components/ui/theme/theme.d.ts +20 -0
  473. package/dist/types/core/components/ui/theme/theme.d.ts.map +1 -0
  474. package/dist/types/core/components/ui/toast/message-subscriber.d.ts +19 -0
  475. package/dist/types/core/components/ui/toast/message-subscriber.d.ts.map +1 -0
  476. package/dist/types/core/components/ui/toast/toast-item.d.ts +41 -0
  477. package/dist/types/core/components/ui/toast/toast-item.d.ts.map +1 -0
  478. package/dist/types/core/components/ui/toast/toast.d.ts +28 -0
  479. package/dist/types/core/components/ui/toast/toast.d.ts.map +1 -0
  480. package/dist/types/core/components/ui/toast/types.d.ts +12 -0
  481. package/dist/types/core/components/ui/toast/types.d.ts.map +1 -0
  482. package/dist/types/core/components/ui/tooltip/tooltip.d.ts +21 -0
  483. package/dist/types/core/components/ui/tooltip/tooltip.d.ts.map +1 -0
  484. package/dist/types/core/components/ui/ui.d.ts +35 -0
  485. package/dist/types/core/components/ui/ui.d.ts.map +1 -0
  486. package/dist/types/core/core.d.ts +5 -0
  487. package/dist/types/core/core.d.ts.map +1 -0
  488. package/dist/types/core/decorators/Subscriber.d.ts +11 -0
  489. package/dist/types/core/decorators/Subscriber.d.ts.map +1 -0
  490. package/dist/types/core/decorators/api.d.ts +119 -0
  491. package/dist/types/core/decorators/api.d.ts.map +1 -0
  492. package/dist/types/core/decorators/lifecycle.d.ts +19 -0
  493. package/dist/types/core/decorators/lifecycle.d.ts.map +1 -0
  494. package/dist/types/core/decorators/subscriber/ancestorAttribute.d.ts +11 -0
  495. package/dist/types/core/decorators/subscriber/ancestorAttribute.d.ts.map +1 -0
  496. package/dist/types/core/decorators/subscriber/autoFill.d.ts +2 -0
  497. package/dist/types/core/decorators/subscriber/autoFill.d.ts.map +1 -0
  498. package/dist/types/core/decorators/subscriber/autoSubscribe.d.ts +2 -0
  499. package/dist/types/core/decorators/subscriber/autoSubscribe.d.ts.map +1 -0
  500. package/dist/types/core/decorators/subscriber/bind.d.ts +28 -0
  501. package/dist/types/core/decorators/subscriber/bind.d.ts.map +1 -0
  502. package/dist/types/core/decorators/subscriber/common.d.ts +14 -0
  503. package/dist/types/core/decorators/subscriber/common.d.ts.map +1 -0
  504. package/dist/types/core/decorators/subscriber/dynamicPath.d.ts +23 -0
  505. package/dist/types/core/decorators/subscriber/dynamicPath.d.ts.map +1 -0
  506. package/dist/types/core/decorators/subscriber/dynamicPropertyWatch.d.ts +42 -0
  507. package/dist/types/core/decorators/subscriber/dynamicPropertyWatch.d.ts.map +1 -0
  508. package/dist/types/core/decorators/subscriber/handle.d.ts +74 -0
  509. package/dist/types/core/decorators/subscriber/handle.d.ts.map +1 -0
  510. package/dist/types/core/decorators/subscriber/onAssign.d.ts +53 -0
  511. package/dist/types/core/decorators/subscriber/onAssign.d.ts.map +1 -0
  512. package/dist/types/core/decorators/subscriber/publish.d.ts +23 -0
  513. package/dist/types/core/decorators/subscriber/publish.d.ts.map +1 -0
  514. package/dist/types/core/decorators/subscriber/publisherPath.d.ts +3 -0
  515. package/dist/types/core/decorators/subscriber/publisherPath.d.ts.map +1 -0
  516. package/dist/types/core/decorators/subscriber/subscribe.d.ts +20 -0
  517. package/dist/types/core/decorators/subscriber/subscribe.d.ts.map +1 -0
  518. package/dist/types/core/directives/DataProvider.d.ts +45 -0
  519. package/dist/types/core/directives/DataProvider.d.ts.map +1 -0
  520. package/dist/types/core/directives/Wording.d.ts +44 -0
  521. package/dist/types/core/directives/Wording.d.ts.map +1 -0
  522. package/dist/types/core/mixins/Fetcher.d.ts +108 -0
  523. package/dist/types/core/mixins/Fetcher.d.ts.map +1 -0
  524. package/dist/types/core/mixins/FormCheckable.d.ts +95 -0
  525. package/dist/types/core/mixins/FormCheckable.d.ts.map +1 -0
  526. package/dist/types/core/mixins/FormElement.d.ts +37 -0
  527. package/dist/types/core/mixins/FormElement.d.ts.map +1 -0
  528. package/dist/types/core/mixins/FormInput.d.ts +79 -0
  529. package/dist/types/core/mixins/FormInput.d.ts.map +1 -0
  530. package/dist/types/core/mixins/Subscriber.d.ts +38 -0
  531. package/dist/types/core/mixins/Subscriber.d.ts.map +1 -0
  532. package/dist/types/core/mixins/TemplatesContainer.d.ts +14 -0
  533. package/dist/types/core/mixins/TemplatesContainer.d.ts.map +1 -0
  534. package/dist/types/core/mixins/mixins.d.ts +7 -0
  535. package/dist/types/core/mixins/mixins.d.ts.map +1 -0
  536. package/dist/types/core/utils/AncestorAttributeObserver.d.ts +38 -0
  537. package/dist/types/core/utils/AncestorAttributeObserver.d.ts.map +1 -0
  538. package/dist/types/core/utils/Arrays.d.ts +98 -0
  539. package/dist/types/core/utils/Arrays.d.ts.map +1 -0
  540. package/dist/types/core/utils/DataBindObserver.d.ts +84 -0
  541. package/dist/types/core/utils/DataBindObserver.d.ts.map +1 -0
  542. package/dist/types/core/utils/Electron.d.ts +8 -0
  543. package/dist/types/core/utils/Electron.d.ts.map +1 -0
  544. package/dist/types/core/utils/Format.d.ts +13 -0
  545. package/dist/types/core/utils/Format.d.ts.map +1 -0
  546. package/dist/types/core/utils/HTML.d.ts +64 -0
  547. package/dist/types/core/utils/HTML.d.ts.map +1 -0
  548. package/dist/types/core/utils/LocationHandler.d.ts +48 -0
  549. package/dist/types/core/utils/LocationHandler.d.ts.map +1 -0
  550. package/dist/types/core/utils/Objects.d.ts +31 -0
  551. package/dist/types/core/utils/Objects.d.ts.map +1 -0
  552. package/dist/types/core/utils/PublisherProxy.d.ts +230 -0
  553. package/dist/types/core/utils/PublisherProxy.d.ts.map +1 -0
  554. package/dist/types/core/utils/Utils.d.ts +6 -0
  555. package/dist/types/core/utils/Utils.d.ts.map +1 -0
  556. package/dist/types/core/utils/aesCrypto.d.ts +53 -0
  557. package/dist/types/core/utils/aesCrypto.d.ts.map +1 -0
  558. package/dist/types/core/utils/api.d.ts +173 -0
  559. package/dist/types/core/utils/api.d.ts.map +1 -0
  560. package/dist/types/core/utils/dataProviderKey.d.ts +56 -0
  561. package/dist/types/core/utils/dataProviderKey.d.ts.map +1 -0
  562. package/dist/types/core/utils/endpoint.d.ts +37 -0
  563. package/dist/types/core/utils/endpoint.d.ts.map +1 -0
  564. package/dist/types/core/utils/route.d.ts +41 -0
  565. package/dist/types/core/utils/route.d.ts.map +1 -0
  566. package/dist/types/core/utils/url-pattern.d.ts +3 -0
  567. package/dist/types/core/utils/url-pattern.d.ts.map +1 -0
  568. package/dist/types/dataprovider.d.ts +2 -0
  569. package/dist/types/dataprovider.d.ts.map +1 -0
  570. package/dist/types/decorators.d.ts +28 -0
  571. package/dist/types/decorators.d.ts.map +1 -0
  572. package/dist/types/directives.d.ts +21 -0
  573. package/dist/types/directives.d.ts.map +1 -0
  574. package/dist/types/index.d.ts +8 -0
  575. package/dist/types/index.d.ts.map +1 -0
  576. package/dist/types/mixins.d.ts +204 -0
  577. package/dist/types/mixins.d.ts.map +1 -0
  578. package/dist/types/test-utils/TestUtils.d.ts +4 -0
  579. package/dist/types/test-utils/TestUtils.d.ts.map +1 -0
  580. package/dist/types/utils.d.ts +17 -0
  581. package/dist/types/utils.d.ts.map +1 -0
  582. package/docs/assets/{index-t0-i22oI.css → index-CZLTFws2.css} +1 -1
  583. package/docs/assets/{index-wyNMyWT9.js → index-nkkwC13U.js} +781 -506
  584. package/docs/index.html +2 -3
  585. package/docs/src/core/components/functional/date/date.md +290 -0
  586. package/docs/src/core/components/functional/fetch/fetch.md +125 -0
  587. package/docs/src/core/components/functional/if/if.md +9 -0
  588. package/docs/src/core/components/functional/list/list.md +65 -0
  589. package/docs/src/core/components/functional/mix/mix.md +41 -0
  590. package/docs/src/core/components/functional/queue/queue.md +72 -0
  591. package/docs/src/core/components/functional/router/router.md +94 -0
  592. package/docs/src/core/components/functional/sdui/default-library.json +108 -0
  593. package/docs/src/core/components/functional/sdui/example.json +99 -0
  594. package/docs/src/core/components/functional/sdui/sdui.md +356 -0
  595. package/docs/src/core/components/functional/states/states.md +87 -0
  596. package/docs/src/core/components/functional/submit/submit.md +114 -0
  597. package/docs/src/core/components/functional/subscriber/subscriber.md +91 -0
  598. package/docs/src/core/components/functional/value/value.md +35 -0
  599. package/docs/src/core/components/ui/alert/alert.md +121 -0
  600. package/docs/src/core/components/ui/alert-messages/alert-messages.md +0 -0
  601. package/docs/src/core/components/ui/badge/badge.md +127 -0
  602. package/docs/src/core/components/ui/button/button.md +182 -0
  603. package/docs/src/core/components/ui/captcha/captcha.md +12 -0
  604. package/docs/src/core/components/ui/card/card.md +97 -0
  605. package/docs/src/core/components/ui/divider/divider.md +35 -0
  606. package/docs/src/core/components/ui/form/checkbox/checkbox.md +77 -0
  607. package/docs/src/core/components/ui/form/fieldset/fieldset.md +129 -0
  608. package/docs/src/core/components/ui/form/form-actions/form-actions.md +77 -0
  609. package/docs/src/core/components/ui/form/form-layout/form-layout.md +44 -0
  610. package/docs/src/core/components/ui/form/input/input.md +142 -0
  611. package/docs/src/core/components/ui/form/input-autocomplete/input-autocomplete.md +133 -0
  612. package/docs/src/core/components/ui/form/radio/radio.md +57 -0
  613. package/docs/src/core/components/ui/form/select/select.md +71 -0
  614. package/docs/src/core/components/ui/form/switch/switch.md +57 -0
  615. package/docs/src/core/components/ui/form/textarea/textarea.md +65 -0
  616. package/docs/src/core/components/ui/group/group.md +75 -0
  617. package/docs/src/core/components/ui/icon/icon.md +125 -0
  618. package/docs/src/core/components/ui/icon/icons.json +1 -0
  619. package/docs/src/core/components/ui/image/image.md +107 -0
  620. package/docs/src/core/components/ui/link/link.md +43 -0
  621. package/docs/src/core/components/ui/loader/loader.md +55 -0
  622. package/docs/src/core/components/ui/menu/menu.md +329 -0
  623. package/docs/src/core/components/ui/modal/modal.md +119 -0
  624. package/docs/src/core/components/ui/pop/pop.md +96 -0
  625. package/docs/src/core/components/ui/progress/progress.md +63 -0
  626. package/docs/src/core/components/ui/table/table.md +455 -0
  627. package/docs/src/core/components/ui/toast/toast.md +166 -0
  628. package/docs/src/core/components/ui/tooltip/tooltip.md +82 -0
  629. package/docs/src/docs/_core-concept/dataFlow.md +79 -0
  630. package/docs/src/docs/_core-concept/overview.md +57 -0
  631. package/docs/src/docs/_core-concept/subscriber.md +75 -0
  632. package/docs/src/docs/_decorators/ancestor-attribute.md +127 -0
  633. package/docs/src/docs/_decorators/auto-subscribe.md +202 -0
  634. package/docs/src/docs/_decorators/bind.md +167 -0
  635. package/docs/src/docs/_decorators/get.md +77 -0
  636. package/docs/src/docs/_decorators/handle.md +175 -0
  637. package/docs/src/docs/_decorators/on-assign.md +390 -0
  638. package/docs/src/docs/_decorators/patch.md +45 -0
  639. package/docs/src/docs/_decorators/post.md +93 -0
  640. package/docs/src/docs/_decorators/publish.md +55 -0
  641. package/docs/src/docs/_decorators/put.md +43 -0
  642. package/docs/src/docs/_decorators/subscribe.md +100 -0
  643. package/docs/src/docs/_decorators/wait-for-ancestors.md +163 -0
  644. package/docs/src/docs/_directives/sub.md +91 -0
  645. package/docs/src/docs/_getting-started/ai-agents.md +56 -0
  646. package/docs/src/docs/_getting-started/concorde-manual-install.md +133 -0
  647. package/docs/src/docs/_getting-started/concorde-outside.md +33 -0
  648. package/docs/src/docs/_getting-started/create-a-component.md +139 -0
  649. package/docs/src/docs/_getting-started/my-first-component.md +236 -0
  650. package/docs/src/docs/_getting-started/my-first-subscriber.md +120 -0
  651. package/docs/src/docs/_getting-started/pubsub.md +37 -0
  652. package/docs/src/docs/_getting-started/start.md +47 -0
  653. package/docs/src/docs/_getting-started/theming.md +91 -0
  654. package/docs/src/docs/_misc/api-configuration.md +81 -0
  655. package/docs/src/docs/_misc/dataProviderKey.md +168 -0
  656. package/docs/src/docs/_misc/docs-mock-api.md +60 -0
  657. package/docs/src/docs/_misc/dynamic-path.md +71 -0
  658. package/docs/src/docs/_misc/endpoint.md +45 -0
  659. package/docs/src/docs/_misc/html-integration.md +13 -0
  660. package/docs/src/docs/search/docs-search.json +9117 -0
  661. package/docs/src/tag-list.json +1 -0
  662. package/docs/src/tsconfig-model.json +23 -0
  663. package/docs/src/tsconfig.declarations.json +22 -0
  664. package/docs/src/tsconfig.emit.json +23 -0
  665. package/docs/src/tsconfig.json +837 -0
  666. package/gitlab/job_github_mirror.sh +39 -0
  667. package/index.html +0 -1
  668. package/package.json +1084 -364
  669. package/public/docs-mock-api-sw.js +3 -2
  670. package/public/docs-mock-api-sw.js.map +2 -2
  671. package/scripts/github-export.mjs +150 -0
  672. package/scripts/post-build.mjs +43 -0
  673. package/scripts/pre-build.mjs +32 -4
  674. package/scripts/pre-publish.mjs +2 -0
  675. package/src/core/components/functional/queue/queue.ts +2 -2
  676. package/src/core/components/ui/modal/modal.ts +1 -1
  677. package/src/core/decorators/Subscriber.ts +1 -0
  678. package/src/core/decorators/api.spec.ts +74 -4
  679. package/src/core/decorators/api.ts +111 -30
  680. package/src/core/decorators/subscriber/ancestorAttribute.spec.ts +197 -0
  681. package/src/core/decorators/subscriber/ancestorAttribute.ts +40 -7
  682. package/src/core/decorators/subscriber/autoSubscribe.ts +7 -3
  683. package/src/core/mixins/Fetcher.ts +12 -6
  684. package/src/core/utils/AncestorAttributeObserver.ts +199 -0
  685. package/src/core/utils/HTML.ts +3 -11
  686. package/src/core/utils/PublisherProxy.ts +28 -37
  687. package/src/core/utils/api.ts +10 -10
  688. package/src/css.d.ts +19 -0
  689. package/src/directives.ts +3 -2
  690. package/src/docs/_decorators/ancestor-attribute.md +56 -8
  691. package/src/docs/_decorators/get.md +47 -1
  692. package/src/docs/components/docs-demo-sources.ts +20 -3
  693. package/src/docs/example/decorators-demo-geo.ts +5 -0
  694. package/src/docs/example/decorators-demo-subscribe-publish-get-demos.ts +72 -31
  695. package/src/docs/example/decorators-demo.ts +164 -8
  696. package/src/docs/mock-api/router.ts +3 -1
  697. package/src/docs/search/docs-search.json +92 -2
  698. package/src/tsconfig.declarations.json +22 -0
  699. package/src/tsconfig.emit.json +23 -0
  700. package/src/tsconfig.json +3 -285
  701. package/src/tsconfig.tsbuildinfo +1 -1
@@ -0,0 +1,67 @@
1
+ import HTML from "../utils/HTML";
2
+ /** Event dispatched when a component's connectedCallback has completed. Can be listened to from anywhere (bubbles). */
3
+ export const CONNECTED = "sonic-connected";
4
+ const READY_TIMEOUT_MS = 5000;
5
+ const CONNECTED_SYMBOL = Symbol.for("sonic-connected");
6
+ function isWebComponent(element) {
7
+ return element.tagName.includes("-");
8
+ }
9
+ function waitForAncestorReady(ancestor, timeoutMs = READY_TIMEOUT_MS) {
10
+ if (!isWebComponent(ancestor))
11
+ return Promise.resolve();
12
+ if (ancestor[CONNECTED_SYMBOL])
13
+ return Promise.resolve();
14
+ return new Promise((resolve) => {
15
+ const handler = () => {
16
+ ancestor[CONNECTED_SYMBOL] = true;
17
+ ancestor.removeEventListener(CONNECTED, handler);
18
+ resolve();
19
+ };
20
+ ancestor.addEventListener(CONNECTED, handler);
21
+ setTimeout(() => {
22
+ ancestor.removeEventListener(CONNECTED, handler);
23
+ resolve();
24
+ }, timeoutMs);
25
+ });
26
+ }
27
+ /**
28
+ * Décorateur de classe qui retarde le connectedCallback jusqu'à ce que tous les ancêtres
29
+ * correspondant aux sélecteurs CSS fournis aient exécuté leur connectedCallback.
30
+ * Les nœuds qui ne sont pas des web components sont considérés comme connectés par défaut.
31
+ * S'applique uniquement aux web components (classes étendant HTMLElement).
32
+ */
33
+ export function awaitConnectedAncestors(...selectors) {
34
+ return function (constructor) {
35
+ if (!selectors.length)
36
+ return constructor;
37
+ const originalConnectedCallback = constructor.prototype.connectedCallback;
38
+ constructor.prototype.connectedCallback = function () {
39
+ const ancestors = HTML.getAncestorsBySelectors(this, selectors);
40
+ const webComponentAncestors = ancestors.filter(isWebComponent);
41
+ const whenDefinedPromises = [
42
+ ...new Set(webComponentAncestors.map((a) => a.tagName.toLowerCase())),
43
+ ].map((tag) => customElements.whenDefined(tag));
44
+ const readyPromises = ancestors.map((a) => waitForAncestorReady(a));
45
+ Promise.all([...whenDefinedPromises, ...readyPromises]).then(() => {
46
+ originalConnectedCallback?.call(this);
47
+ });
48
+ };
49
+ return constructor;
50
+ };
51
+ }
52
+ /**
53
+ * Décorateur de classe pour les ancêtres qui veulent signaler qu'ils sont prêts.
54
+ * Dispatche l'événement "sonic-connected" à la fin du connectedCallback (bubbles).
55
+ */
56
+ export function dispatchConnectedEvent() {
57
+ return function (constructor) {
58
+ const original = constructor.prototype.connectedCallback;
59
+ constructor.prototype.connectedCallback = function () {
60
+ original?.call(this);
61
+ this[CONNECTED_SYMBOL] = true;
62
+ this.dispatchEvent(new CustomEvent(CONNECTED, { bubbles: true }));
63
+ };
64
+ return constructor;
65
+ };
66
+ }
67
+ //# sourceMappingURL=lifecycle.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"lifecycle.js","sourceRoot":"","sources":["../../../../src/core/decorators/lifecycle.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,27 @@
1
+ import AncestorAttributeObserver, { syncAncestorAttributeValue, } from "../../utils/AncestorAttributeObserver";
2
+ import { setSubscribable } from "./common";
3
+ export function ancestorAttribute(attributeName, options) {
4
+ const dynamic = options?.dynamic ?? false;
5
+ const assignNull = dynamic;
6
+ return function (target, propertyKey) {
7
+ if (!target)
8
+ return;
9
+ setSubscribable(target);
10
+ target.__onBeforeConnected__((component) => {
11
+ syncAncestorAttributeValue(component, attributeName, propertyKey, {
12
+ assignNull,
13
+ });
14
+ });
15
+ if (!dynamic)
16
+ return;
17
+ let unsubscribe = null;
18
+ target.__onConnected__((component) => {
19
+ unsubscribe = AncestorAttributeObserver.subscribe(component, attributeName, propertyKey, { assignNull: true });
20
+ });
21
+ target.__onDisconnected__(() => {
22
+ unsubscribe?.();
23
+ unsubscribe = null;
24
+ });
25
+ };
26
+ }
27
+ //# sourceMappingURL=ancestorAttribute.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ancestorAttribute.js","sourceRoot":"","sources":["../../../../../src/core/decorators/subscriber/ancestorAttribute.ts"],"names":[],"mappings":"AAAA,OAAO,yBAAyB,EAAE,EAChC,0BAA0B,GAC3B,MAAM,uCAAuC,CAAC;AAC/C,OAAO,EAAsB,eAAe,EAAE,MAAM,UAAU,CAAC;AAY/D,MAAM,UAAU,iBAAiB,CAC/B,aAAqB,EACrB,OAAkC;IAElC,MAAM,OAAO,GAAG,OAAO,EAAE,OAAO,IAAI,KAAK,CAAC;IAC1C,MAAM,UAAU,GAAG,OAAO,CAAC;IAE3B,OAAO,UAAU,MAAe,EAAE,WAAmB;QACnD,IAAI,CAAC,MAAM;YAAE,OAAO;QACpB,eAAe,CAAC,MAAM,CAAC,CAAC;QAEvB,MAA6B,CAAC,qBAAqB,CAAC,CAAC,SAAS,EAAE,EAAE;YACjE,0BAA0B,CAAC,SAAS,EAAE,aAAa,EAAE,WAAW,EAAE;gBAChE,UAAU;aACX,CAAC,CAAC;QACL,CAAC,CAAC,CAAC;QAEH,IAAI,CAAC,OAAO;YAAE,OAAO;QAErB,IAAI,WAAW,GAAwB,IAAI,CAAC;QAE3C,MAA6B,CAAC,eAAe,CAAC,CAAC,SAAS,EAAE,EAAE;YAC3D,WAAW,GAAG,yBAAyB,CAAC,SAAS,CAC/C,SAAmC,EACnC,aAAa,EACb,WAAW,EACX,EAAE,UAAU,EAAE,IAAI,EAAE,CACrB,CAAC;QACJ,CAAC,CAAC,CAAC;QAEF,MAA6B,CAAC,kBAAkB,CAAC,GAAG,EAAE;YACrD,WAAW,EAAE,EAAE,CAAC;YAChB,WAAW,GAAG,IAAI,CAAC;QACrB,CAAC,CAAC,CAAC;IACL,CAAC,CAAC;AACJ,CAAC"}
@@ -0,0 +1,26 @@
1
+ import { Objects } from "@supersoniks/concorde/utils";
2
+ import { PublisherManager } from "../../utils/PublisherProxy";
3
+ import { setSubscribable } from "./common";
4
+ export function autoFill(values) {
5
+ return function (target) {
6
+ setSubscribable(target);
7
+ for (const value of values) {
8
+ const split = value.split(".");
9
+ if (split.length === 0) {
10
+ continue;
11
+ }
12
+ const dataProvider = split.shift() || "";
13
+ let publisher = PublisherManager.get(dataProvider);
14
+ publisher = Objects.traverse(publisher, split);
15
+ target.__onConnected__((component) => {
16
+ publisher.startTemplateFilling(component);
17
+ });
18
+ target.__onDisconnected__(() => {
19
+ (component) => {
20
+ publisher.stopTemplateFilling(component);
21
+ };
22
+ });
23
+ }
24
+ };
25
+ }
26
+ //# sourceMappingURL=autoFill.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"autoFill.js","sourceRoot":"","sources":["../../../../../src/core/decorators/subscriber/autoFill.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,6BAA6B,CAAC;AAEtD,OAAO,EAAE,gBAAgB,EAAE,MAAM,4BAA4B,CAAC;AAC9D,OAAO,EAAsB,eAAe,EAAE,MAAM,UAAU,CAAC;AAE/D,MAAM,UAAU,QAAQ,CAAC,MAAgB;IACvC,OAAO,UAAU,MAAe;QAC9B,eAAe,CAAC,MAAM,CAAC,CAAC;QACxB,KAAK,MAAM,KAAK,IAAI,MAAM,EAAE,CAAC;YAC3B,MAAM,KAAK,GAAG,KAAK,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;YAC/B,IAAI,KAAK,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;gBACvB,SAAS;YACX,CAAC;YACD,MAAM,YAAY,GAAW,KAAK,CAAC,KAAK,EAAE,IAAI,EAAE,CAAC;YACjD,IAAI,SAAS,GAAG,gBAAgB,CAAC,GAAG,CAAC,YAAY,CAAC,CAAC;YACnD,SAAS,GAAG,OAAO,CAAC,QAAQ,CAAC,SAAS,EAAE,KAAK,CAAC,CAAC;YAC9C,MAA6B,CAAC,eAAe,CAAC,CAAC,SAAkB,EAAE,EAAE;gBACpE,SAAS,CAAC,oBAAoB,CAAC,SAAS,CAAC,CAAC;YAC5C,CAAC,CAAC,CAAC;YACF,MAA6B,CAAC,kBAAkB,CAAC,GAAG,EAAE;gBACrD,CAAC,SAAkB,EAAE,EAAE;oBACrB,SAAS,CAAC,mBAAmB,CAAC,SAAS,CAAC,CAAC;gBAC3C,CAAC,CAAC;YACJ,CAAC,CAAC,CAAC;QACL,CAAC;IACH,CAAC,CAAC;AACJ,CAAC"}
@@ -0,0 +1,46 @@
1
+ import { collectModifiedPublisher, getModifiedPublishers, } from "../../utils/PublisherProxy";
2
+ export function autoSubscribe() {
3
+ return function (target, propertyKey, descriptor) {
4
+ let renderId = 0;
5
+ const originalMethod = descriptor.value;
6
+ const originalDisconnectedCallback = target.constructor.prototype.disconnectedCallback;
7
+ target.constructor.prototype.disconnectedCallback = function () {
8
+ originalDisconnectedCallback?.apply(this);
9
+ this.__removeAutoSubscribe__();
10
+ };
11
+ const originalConnectedCallback = target.connectedCallback;
12
+ target.connectedCallback = function () {
13
+ originalConnectedCallback?.call(this);
14
+ this[propertyKey]();
15
+ };
16
+ descriptor.value = function (...args) {
17
+ let publishers = new Set();
18
+ const onAssign = () => {
19
+ renderId++;
20
+ const id = renderId;
21
+ window.queueMicrotask(() => {
22
+ if (id !== renderId)
23
+ return;
24
+ this[propertyKey]();
25
+ });
26
+ };
27
+ publishers.forEach((publisher) => {
28
+ publisher.offAssign(onAssign);
29
+ });
30
+ collectModifiedPublisher();
31
+ const result = originalMethod.apply(this, args);
32
+ publishers =
33
+ getModifiedPublishers() || new Set();
34
+ publishers.forEach((publisher) => {
35
+ publisher.onAssign(onAssign, false);
36
+ });
37
+ this.__removeAutoSubscribe__ = () => {
38
+ publishers.forEach((publisher) => {
39
+ publisher.offAssign(onAssign);
40
+ });
41
+ };
42
+ return result;
43
+ };
44
+ };
45
+ }
46
+ //# sourceMappingURL=autoSubscribe.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"autoSubscribe.js","sourceRoot":"","sources":["../../../../../src/core/decorators/subscriber/autoSubscribe.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,wBAAwB,EACxB,qBAAqB,GACtB,MAAM,4BAA4B,CAAC;AAEpC,MAAM,UAAU,aAAa;IAC3B,OAAO,UACL,MAAW,EACX,WAAmB,EACnB,UAA8B;QAE9B,IAAI,QAAQ,GAAG,CAAC,CAAC;QAEjB,MAAM,cAAc,GAAG,UAAU,CAAC,KAAK,CAAC;QACxC,MAAM,4BAA4B,GAChC,MAAM,CAAC,WAAW,CAAC,SAAS,CAAC,oBAAoB,CAAC;QACpD,MAAM,CAAC,WAAW,CAAC,SAAS,CAAC,oBAAoB,GAAG;YAClD,4BAA4B,EAAE,KAAK,CAAC,IAAI,CAAC,CAAC;YAC1C,IAAI,CAAC,uBAAuB,EAAE,CAAC;QACjC,CAAC,CAAC;QACF,MAAM,yBAAyB,GAAG,MAAM,CAAC,iBAAiB,CAAC;QAC3D,MAAM,CAAC,iBAAiB,GAAG;YACzB,yBAAyB,EAAE,IAAI,CAAC,IAAI,CAAC,CAAC;YACtC,IAAI,CAAC,WAAW,CAAC,EAAE,CAAC;QACtB,CAAC,CAAC;QACF,UAAU,CAAC,KAAK,GAAG,UAAU,GAAG,IAAe;YAC7C,IAAI,UAAU,GAAwB,IAAI,GAAG,EAAE,CAAC;YAChD,MAAM,QAAQ,GAAG,GAAG,EAAE;gBACpB,QAAQ,EAAE,CAAC;gBACX,MAAM,EAAE,GAAG,QAAQ,CAAC;gBACpB,MAAM,CAAC,cAAc,CAAC,GAAG,EAAE;oBACzB,IAAI,EAAE,KAAK,QAAQ;wBAAE,OAAO;oBAC3B,IAAY,CAAC,WAAW,CAAC,EAAE,CAAC;gBAC/B,CAAC,CAAC,CAAC;YACL,CAAC,CAAC;YACF,UAAU,CAAC,OAAO,CAAC,CAAC,SAAyB,EAAE,EAAE;gBAC/C,SAAS,CAAC,SAAS,CAAC,QAAQ,CAAC,CAAC;YAChC,CAAC,CAAC,CAAC;YACH,wBAAwB,EAAE,CAAC;YAC3B,MAAM,MAAM,GAAG,cAAc,CAAC,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;YAChD,UAAU;gBACR,qBAAqB,EAAE,IAAI,IAAI,GAAG,EAAkB,CAAC;YAEvD,UAAU,CAAC,OAAO,CAAC,CAAC,SAAyB,EAAE,EAAE;gBAC/C,SAAS,CAAC,QAAQ,CAAC,QAAQ,EAAE,KAAK,CAAC,CAAC;YACtC,CAAC,CAAC,CAAC;YAED,IACD,CAAC,uBAAuB,GAAG,GAAG,EAAE;gBAC/B,UAAU,CAAC,OAAO,CAAC,CAAC,SAAyB,EAAE,EAAE;oBAC/C,SAAS,CAAC,SAAS,CAAC,QAAQ,CAAC,CAAC;gBAChC,CAAC,CAAC,CAAC;YACL,CAAC,CAAC;YACF,OAAO,MAAM,CAAC;QAChB,CAAC,CAAC;IACJ,CAAC,CAAC;AACJ,CAAC"}
@@ -0,0 +1,150 @@
1
+ import { setSubscribable } from "./common";
2
+ import { extractDynamicDependencies, hasPath, resolveDynamicPath, } from "./dynamicPath";
3
+ import { bindDynamicWatchKeys, observeDynamicProperty, } from "./dynamicPropertyWatch";
4
+ import { getPublisherFromPath } from "./publisherPath";
5
+ function bindImpl(path, options) {
6
+ const reflect = options?.reflect ?? false;
7
+ const pathOptions = {
8
+ skipEmptyPlaceholder: options?.skipEmptyPlaceholder,
9
+ };
10
+ const dynamicDependencies = extractDynamicDependencies(path);
11
+ const isDynamicPath = dynamicDependencies.length > 0;
12
+ return function (target, propertyKey) {
13
+ if (!target)
14
+ return;
15
+ setSubscribable(target);
16
+ const stateKey = `__bind_state_${propertyKey}`;
17
+ const publisherKey = `__bind_${propertyKey}_publisher__`;
18
+ const isUpdatingFromPublisherKey = reflect
19
+ ? `__bind_${propertyKey}_updating_from_publisher__`
20
+ : null;
21
+ if (reflect) {
22
+ const existingDescriptor = Object.getOwnPropertyDescriptor(target, propertyKey);
23
+ const internalValueKey = `__bind_${propertyKey}_value__`;
24
+ const reflectUpdateFlagKey = `__bind_${propertyKey}_updating_from_publisher__`;
25
+ const initialValue = existingDescriptor && !existingDescriptor.get && !existingDescriptor.set
26
+ ? existingDescriptor.value
27
+ : undefined;
28
+ Object.defineProperty(target, propertyKey, {
29
+ get() {
30
+ if (existingDescriptor?.get) {
31
+ return existingDescriptor.get.call(this);
32
+ }
33
+ if (!Object.prototype.hasOwnProperty.call(this, internalValueKey) &&
34
+ initialValue !== undefined) {
35
+ this[internalValueKey] = initialValue;
36
+ }
37
+ return this[internalValueKey];
38
+ },
39
+ set(newValue) {
40
+ if (existingDescriptor?.set) {
41
+ existingDescriptor.set.call(this, newValue);
42
+ }
43
+ else {
44
+ this[internalValueKey] = newValue;
45
+ }
46
+ if (!this[reflectUpdateFlagKey] &&
47
+ this[publisherKey]) {
48
+ this[publisherKey].set(newValue);
49
+ }
50
+ },
51
+ enumerable: existingDescriptor?.enumerable ?? true,
52
+ configurable: existingDescriptor?.configurable ?? true,
53
+ });
54
+ }
55
+ target.__onConnected__((component) => {
56
+ const state = component[stateKey] ||
57
+ (component[stateKey] = {
58
+ cleanupWatchers: [],
59
+ unsubscribePublisher: null,
60
+ currentPath: null,
61
+ });
62
+ if (state.unsubscribePublisher) {
63
+ state.unsubscribePublisher();
64
+ state.unsubscribePublisher = null;
65
+ }
66
+ state.cleanupWatchers.forEach((cleanup) => cleanup());
67
+ state.cleanupWatchers = [];
68
+ state.currentPath = null;
69
+ const subscribeToPath = (resolvedPath) => {
70
+ if (!resolvedPath) {
71
+ if (state.unsubscribePublisher) {
72
+ state.unsubscribePublisher();
73
+ state.unsubscribePublisher = null;
74
+ }
75
+ state.currentPath = null;
76
+ component[publisherKey] = null;
77
+ return;
78
+ }
79
+ if (resolvedPath === state.currentPath) {
80
+ return;
81
+ }
82
+ if (state.unsubscribePublisher) {
83
+ state.unsubscribePublisher();
84
+ state.unsubscribePublisher = null;
85
+ }
86
+ const publisher = getPublisherFromPath(resolvedPath);
87
+ if (!publisher) {
88
+ state.currentPath = null;
89
+ component[publisherKey] = null;
90
+ return;
91
+ }
92
+ const onAssign = (value) => {
93
+ if (reflect && isUpdatingFromPublisherKey) {
94
+ component[isUpdatingFromPublisherKey] = true;
95
+ }
96
+ component[propertyKey] = value;
97
+ if (reflect && isUpdatingFromPublisherKey) {
98
+ component[isUpdatingFromPublisherKey] = false;
99
+ }
100
+ };
101
+ publisher.onAssign(onAssign);
102
+ state.unsubscribePublisher = () => {
103
+ publisher.offAssign(onAssign);
104
+ if (component[publisherKey] === publisher) {
105
+ component[publisherKey] = null;
106
+ }
107
+ };
108
+ state.currentPath = resolvedPath;
109
+ component[publisherKey] = publisher;
110
+ };
111
+ const refreshSubscription = () => {
112
+ if (isDynamicPath) {
113
+ const resolution = resolveDynamicPath(component, path, pathOptions);
114
+ if (!resolution.ready) {
115
+ subscribeToPath(null);
116
+ return;
117
+ }
118
+ subscribeToPath(resolution.path);
119
+ return;
120
+ }
121
+ subscribeToPath(path);
122
+ };
123
+ if (isDynamicPath) {
124
+ for (const dependency of dynamicDependencies) {
125
+ const unsubscribe = observeDynamicProperty(bindDynamicWatchKeys.watcherStore, bindDynamicWatchKeys.hooked, component, dependency, () => refreshSubscription());
126
+ state.cleanupWatchers.push(unsubscribe);
127
+ }
128
+ }
129
+ refreshSubscription();
130
+ });
131
+ target.__onDisconnected__((component) => {
132
+ const state = component[stateKey];
133
+ if (!state)
134
+ return;
135
+ if (state.unsubscribePublisher) {
136
+ state.unsubscribePublisher();
137
+ state.unsubscribePublisher = null;
138
+ }
139
+ state.cleanupWatchers.forEach((cleanup) => cleanup());
140
+ state.cleanupWatchers = [];
141
+ state.currentPath = null;
142
+ component[publisherKey] = null;
143
+ });
144
+ };
145
+ }
146
+ export function bind(pathOrKey, options) {
147
+ const path = hasPath(pathOrKey) ? pathOrKey.path : pathOrKey;
148
+ return bindImpl(path, options);
149
+ }
150
+ //# sourceMappingURL=bind.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"bind.js","sourceRoot":"","sources":["../../../../../src/core/decorators/subscriber/bind.ts"],"names":[],"mappings":"AAIA,OAAO,EAAsB,eAAe,EAAE,MAAM,UAAU,CAAC;AAC/D,OAAO,EAEL,0BAA0B,EAC1B,OAAO,EACP,kBAAkB,GACnB,MAAM,eAAe,CAAC;AAKvB,OAAO,EACL,oBAAoB,EACpB,sBAAsB,GACvB,MAAM,wBAAwB,CAAC;AAChC,OAAO,EAAE,oBAAoB,EAAE,MAAM,iBAAiB,CAAC;AAEvD,SAAS,QAAQ,CACf,IAAY,EACZ,OAAqB;IAErB,MAAM,OAAO,GAAG,OAAO,EAAE,OAAO,IAAI,KAAK,CAAC;IAC1C,MAAM,WAAW,GAAuB;QACtC,oBAAoB,EAAE,OAAO,EAAE,oBAAoB;KACpD,CAAC;IACF,MAAM,mBAAmB,GAAG,0BAA0B,CAAC,IAAI,CAAC,CAAC;IAC7D,MAAM,aAAa,GAAG,mBAAmB,CAAC,MAAM,GAAG,CAAC,CAAC;IAErD,OAAO,UAAU,MAAe,EAAE,WAAmB;QACnD,IAAI,CAAC,MAAM;YAAE,OAAO;QACpB,eAAe,CAAC,MAAM,CAAC,CAAC;QACxB,MAAM,QAAQ,GAAG,gBAAgB,WAAW,EAAE,CAAC;QAC/C,MAAM,YAAY,GAAG,UAAU,WAAW,cAAc,CAAC;QACzD,MAAM,0BAA0B,GAAG,OAAO;YACxC,CAAC,CAAC,UAAU,WAAW,4BAA4B;YACnD,CAAC,CAAC,IAAI,CAAC;QAET,IAAI,OAAO,EAAE,CAAC;YACZ,MAAM,kBAAkB,GAAG,MAAM,CAAC,wBAAwB,CACxD,MAAa,EACb,WAAW,CACZ,CAAC;YACF,MAAM,gBAAgB,GAAG,UAAU,WAAW,UAAU,CAAC;YACzD,MAAM,oBAAoB,GAAG,UAAU,WAAW,4BAA4B,CAAC;YAC/E,MAAM,YAAY,GAChB,kBAAkB,IAAI,CAAC,kBAAkB,CAAC,GAAG,IAAI,CAAC,kBAAkB,CAAC,GAAG;gBACtE,CAAC,CAAC,kBAAkB,CAAC,KAAK;gBAC1B,CAAC,CAAC,SAAS,CAAC;YAEhB,MAAM,CAAC,cAAc,CAAC,MAAa,EAAE,WAAW,EAAE;gBAChD,GAAG;oBACD,IAAI,kBAAkB,EAAE,GAAG,EAAE,CAAC;wBAC5B,OAAO,kBAAkB,CAAC,GAAG,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;oBAC3C,CAAC;oBACD,IACE,CAAC,MAAM,CAAC,SAAS,CAAC,cAAc,CAAC,IAAI,CAAC,IAAI,EAAE,gBAAgB,CAAC;wBAC7D,YAAY,KAAK,SAAS,EAC1B,CAAC;wBACA,IAAY,CAAC,gBAAgB,CAAC,GAAG,YAAY,CAAC;oBACjD,CAAC;oBACD,OAAQ,IAAY,CAAC,gBAAgB,CAAC,CAAC;gBACzC,CAAC;gBACD,GAAG,CAAC,QAAiB;oBACnB,IAAI,kBAAkB,EAAE,GAAG,EAAE,CAAC;wBAC5B,kBAAkB,CAAC,GAAG,CAAC,IAAI,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC;oBAC9C,CAAC;yBAAM,CAAC;wBACL,IAAY,CAAC,gBAAgB,CAAC,GAAG,QAAQ,CAAC;oBAC7C,CAAC;oBACD,IACE,CAAE,IAAY,CAAC,oBAAoB,CAAC;wBACnC,IAAY,CAAC,YAAY,CAAC,EAC3B,CAAC;wBACA,IAAY,CAAC,YAAY,CAAC,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC;oBAC5C,CAAC;gBACH,CAAC;gBACD,UAAU,EAAE,kBAAkB,EAAE,UAAU,IAAI,IAAI;gBAClD,YAAY,EAAE,kBAAkB,EAAE,YAAY,IAAI,IAAI;aACvD,CAAC,CAAC;QACL,CAAC;QAEA,MAA6B,CAAC,eAAe,CAAC,CAAC,SAAS,EAAE,EAAE;YAC3D,MAAM,KAAK,GACR,SAAiB,CAAC,QAAQ,CAAC;gBAC5B,CAAE,SAAiB,CAAC,QAAQ,CAAC,GAAG;oBAC9B,eAAe,EAAE,EAAuB;oBACxC,oBAAoB,EAAE,IAA2B;oBACjD,WAAW,EAAE,IAAqB;iBACnC,CAAC,CAAC;YAEL,IAAI,KAAK,CAAC,oBAAoB,EAAE,CAAC;gBAC/B,KAAK,CAAC,oBAAoB,EAAE,CAAC;gBAC7B,KAAK,CAAC,oBAAoB,GAAG,IAAI,CAAC;YACpC,CAAC;YACD,KAAK,CAAC,eAAe,CAAC,OAAO,CAAC,CAAC,OAAmB,EAAE,EAAE,CAAC,OAAO,EAAE,CAAC,CAAC;YAClE,KAAK,CAAC,eAAe,GAAG,EAAE,CAAC;YAC3B,KAAK,CAAC,WAAW,GAAG,IAAI,CAAC;YAEzB,MAAM,eAAe,GAAG,CAAC,YAA2B,EAAE,EAAE;gBACtD,IAAI,CAAC,YAAY,EAAE,CAAC;oBAClB,IAAI,KAAK,CAAC,oBAAoB,EAAE,CAAC;wBAC/B,KAAK,CAAC,oBAAoB,EAAE,CAAC;wBAC7B,KAAK,CAAC,oBAAoB,GAAG,IAAI,CAAC;oBACpC,CAAC;oBACD,KAAK,CAAC,WAAW,GAAG,IAAI,CAAC;oBACxB,SAAiB,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC;oBACxC,OAAO;gBACT,CAAC;gBACD,IAAI,YAAY,KAAK,KAAK,CAAC,WAAW,EAAE,CAAC;oBACvC,OAAO;gBACT,CAAC;gBACD,IAAI,KAAK,CAAC,oBAAoB,EAAE,CAAC;oBAC/B,KAAK,CAAC,oBAAoB,EAAE,CAAC;oBAC7B,KAAK,CAAC,oBAAoB,GAAG,IAAI,CAAC;gBACpC,CAAC;gBAED,MAAM,SAAS,GAAG,oBAAoB,CAAC,YAAY,CAAC,CAAC;gBACrD,IAAI,CAAC,SAAS,EAAE,CAAC;oBACf,KAAK,CAAC,WAAW,GAAG,IAAI,CAAC;oBACxB,SAAiB,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC;oBACxC,OAAO;gBACT,CAAC;gBAED,MAAM,QAAQ,GAAG,CAAC,KAAc,EAAE,EAAE;oBAClC,IAAI,OAAO,IAAI,0BAA0B,EAAE,CAAC;wBACzC,SAAiB,CAAC,0BAA0B,CAAC,GAAG,IAAI,CAAC;oBACxD,CAAC;oBACD,SAAS,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC;oBAC/B,IAAI,OAAO,IAAI,0BAA0B,EAAE,CAAC;wBACzC,SAAiB,CAAC,0BAA0B,CAAC,GAAG,KAAK,CAAC;oBACzD,CAAC;gBACH,CAAC,CAAC;gBAEF,SAAS,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC;gBAC7B,KAAK,CAAC,oBAAoB,GAAG,GAAG,EAAE;oBAChC,SAAS,CAAC,SAAS,CAAC,QAAQ,CAAC,CAAC;oBAC9B,IAAK,SAAiB,CAAC,YAAY,CAAC,KAAK,SAAS,EAAE,CAAC;wBAClD,SAAiB,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC;oBAC1C,CAAC;gBACH,CAAC,CAAC;gBACF,KAAK,CAAC,WAAW,GAAG,YAAY,CAAC;gBAChC,SAAiB,CAAC,YAAY,CAAC,GAAG,SAAS,CAAC;YAC/C,CAAC,CAAC;YAEF,MAAM,mBAAmB,GAAG,GAAG,EAAE;gBAC/B,IAAI,aAAa,EAAE,CAAC;oBAClB,MAAM,UAAU,GAAG,kBAAkB,CAAC,SAAS,EAAE,IAAI,EAAE,WAAW,CAAC,CAAC;oBACpE,IAAI,CAAC,UAAU,CAAC,KAAK,EAAE,CAAC;wBACtB,eAAe,CAAC,IAAI,CAAC,CAAC;wBACtB,OAAO;oBACT,CAAC;oBACD,eAAe,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;oBACjC,OAAO;gBACT,CAAC;gBACD,eAAe,CAAC,IAAI,CAAC,CAAC;YACxB,CAAC,CAAC;YAEF,IAAI,aAAa,EAAE,CAAC;gBAClB,KAAK,MAAM,UAAU,IAAI,mBAAmB,EAAE,CAAC;oBAC7C,MAAM,WAAW,GAAG,sBAAsB,CACxC,oBAAoB,CAAC,YAAY,EACjC,oBAAoB,CAAC,MAAM,EAC3B,SAAS,EACT,UAAU,EACV,GAAG,EAAE,CAAC,mBAAmB,EAAE,CAC5B,CAAC;oBACF,KAAK,CAAC,eAAe,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;gBAC1C,CAAC;YACH,CAAC;YAED,mBAAmB,EAAE,CAAC;QACxB,CAAC,CAAC,CAAC;QAEF,MAA6B,CAAC,kBAAkB,CAAC,CAAC,SAAS,EAAE,EAAE;YAC9D,MAAM,KAAK,GAAI,SAAiB,CAAC,QAAQ,CAAC,CAAC;YAC3C,IAAI,CAAC,KAAK;gBAAE,OAAO;YACnB,IAAI,KAAK,CAAC,oBAAoB,EAAE,CAAC;gBAC/B,KAAK,CAAC,oBAAoB,EAAE,CAAC;gBAC7B,KAAK,CAAC,oBAAoB,GAAG,IAAI,CAAC;YACpC,CAAC;YACD,KAAK,CAAC,eAAe,CAAC,OAAO,CAAC,CAAC,OAAmB,EAAE,EAAE,CAAC,OAAO,EAAE,CAAC,CAAC;YAClE,KAAK,CAAC,eAAe,GAAG,EAAE,CAAC;YAC3B,KAAK,CAAC,WAAW,GAAG,IAAI,CAAC;YACxB,SAAiB,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC;QAC1C,CAAC,CAAC,CAAC;IACL,CAAC,CAAC;AACJ,CAAC;AA+BD,MAAM,UAAU,IAAI,CAClB,SAAqD,EACrD,OAAqB;IAErB,MAAM,IAAI,GAAG,OAAO,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;IAC7D,OAAO,QAAQ,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;AACjC,CAAC"}
@@ -0,0 +1,44 @@
1
+ function onBeforeConnected(callback) {
2
+ if (!this.__beforeConnectedCallbackCalls__) {
3
+ this.__beforeConnectedCallbackCalls__ = new Set();
4
+ }
5
+ this.__beforeConnectedCallbackCalls__.add(callback);
6
+ }
7
+ function onConnected(callback) {
8
+ if (!this.__connectedCallbackCalls__) {
9
+ this.__connectedCallbackCalls__ = new Set();
10
+ }
11
+ this.__connectedCallbackCalls__.add(callback);
12
+ }
13
+ function onDisconnected(callback) {
14
+ if (!this.__disconnectedCallbackCalls__) {
15
+ this.__disconnectedCallbackCalls__ = new Set();
16
+ }
17
+ this.__disconnectedCallbackCalls__.add(callback);
18
+ }
19
+ export function setSubscribable(target) {
20
+ if (target.__is__setSubscribable__)
21
+ return;
22
+ target.__is__setSubscribable__ = true;
23
+ target.__onBeforeConnected__ = onBeforeConnected;
24
+ target.__onConnected__ = onConnected;
25
+ target.__onDisconnected__ = onDisconnected;
26
+ const originalConnectedCallback = target.connectedCallback;
27
+ target.connectedCallback = function () {
28
+ if (this.__beforeConnectedCallbackCalls__) {
29
+ this.__beforeConnectedCallbackCalls__.forEach((callback) => callback(this));
30
+ }
31
+ originalConnectedCallback?.call(this);
32
+ if (this.__connectedCallbackCalls__) {
33
+ this.__connectedCallbackCalls__.forEach((callback) => callback(this));
34
+ }
35
+ };
36
+ const originalDisconnectedCallback = target.disconnectedCallback;
37
+ target.disconnectedCallback = function () {
38
+ originalDisconnectedCallback?.call(this);
39
+ if (this.__disconnectedCallbackCalls__) {
40
+ this.__disconnectedCallbackCalls__.forEach((callback) => callback(this));
41
+ }
42
+ };
43
+ }
44
+ //# sourceMappingURL=common.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"common.js","sourceRoot":"","sources":["../../../../../src/core/decorators/subscriber/common.ts"],"names":[],"mappings":"AAaA,SAAS,iBAAiB,CAExB,QAA2B;IAE3B,IAAI,CAAC,IAAI,CAAC,gCAAgC,EAAE,CAAC;QAC3C,IAAI,CAAC,gCAAgC,GAAG,IAAI,GAAG,EAAE,CAAC;IACpD,CAAC;IACD,IAAI,CAAC,gCAAgC,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC;AACtD,CAAC;AAED,SAAS,WAAW,CAA2B,QAA2B;IACxE,IAAI,CAAC,IAAI,CAAC,0BAA0B,EAAE,CAAC;QACrC,IAAI,CAAC,0BAA0B,GAAG,IAAI,GAAG,EAAE,CAAC;IAC9C,CAAC;IACD,IAAI,CAAC,0BAA0B,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC;AAChD,CAAC;AAED,SAAS,cAAc,CAA2B,QAA2B;IAC3E,IAAI,CAAC,IAAI,CAAC,6BAA6B,EAAE,CAAC;QACxC,IAAI,CAAC,6BAA6B,GAAG,IAAI,GAAG,EAAE,CAAC;IACjD,CAAC;IACD,IAAI,CAAC,6BAA6B,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC;AACnD,CAAC;AAED,MAAM,UAAU,eAAe,CAAC,MAAW;IACzC,IAAI,MAAM,CAAC,uBAAuB;QAAE,OAAO;IAC3C,MAAM,CAAC,uBAAuB,GAAG,IAAI,CAAC;IAEtC,MAAM,CAAC,qBAAqB,GAAG,iBAAiB,CAAC;IACjD,MAAM,CAAC,eAAe,GAAG,WAAW,CAAC;IACrC,MAAM,CAAC,kBAAkB,GAAG,cAAc,CAAC;IAE3C,MAAM,yBAAyB,GAAG,MAAM,CAAC,iBAAiB,CAAC;IAC3D,MAAM,CAAC,iBAAiB,GAAG;QACzB,IAAI,IAAI,CAAC,gCAAgC,EAAE,CAAC;YAC1C,IAAI,CAAC,gCAAgC,CAAC,OAAO,CAC3C,CAAC,QAA2B,EAAE,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,CAChD,CAAC;QACJ,CAAC;QACD,yBAAyB,EAAE,IAAI,CAAC,IAAI,CAAC,CAAC;QACtC,IAAI,IAAI,CAAC,0BAA0B,EAAE,CAAC;YACpC,IAAI,CAAC,0BAA0B,CAAC,OAAO,CAAC,CAAC,QAA2B,EAAE,EAAE,CACtE,QAAQ,CAAC,IAAI,CAAC,CACf,CAAC;QACJ,CAAC;IACH,CAAC,CAAC;IAEF,MAAM,4BAA4B,GAAG,MAAM,CAAC,oBAAoB,CAAC;IACjE,MAAM,CAAC,oBAAoB,GAAG;QAC5B,4BAA4B,EAAE,IAAI,CAAC,IAAI,CAAC,CAAC;QACzC,IAAI,IAAI,CAAC,6BAA6B,EAAE,CAAC;YACvC,IAAI,CAAC,6BAA6B,CAAC,OAAO,CACxC,CAAC,QAA2B,EAAE,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,CAChD,CAAC;QACJ,CAAC;IACH,CAAC,CAAC;AACJ,CAAC"}
@@ -0,0 +1,75 @@
1
+ /** Lit / décorateurs : chemins publisher avec `${prop}` ou `{$prop}`. */
2
+ export function cleanPlaceholder(value) {
3
+ return value.trim().replace(/^this\./, "");
4
+ }
5
+ export function getValueFromExpression(component, expression) {
6
+ if (!expression)
7
+ return undefined;
8
+ const segments = expression.split(".").filter(Boolean);
9
+ if (segments.length === 0)
10
+ return undefined;
11
+ let current = component;
12
+ for (const segment of segments) {
13
+ if (current === undefined ||
14
+ current === null ||
15
+ typeof current !== "object") {
16
+ return undefined;
17
+ }
18
+ current = current[segment];
19
+ }
20
+ return current;
21
+ }
22
+ function isPlaceholderUnresolved(resolved, options) {
23
+ if (resolved === undefined || resolved === null)
24
+ return true;
25
+ if (options?.skipEmptyPlaceholder && resolved === "")
26
+ return true;
27
+ return false;
28
+ }
29
+ export function resolveDynamicPath(component, template, options) {
30
+ let missing = false;
31
+ const replaceValue = (_match, expression) => {
32
+ const cleaned = cleanPlaceholder(expression);
33
+ const resolved = getValueFromExpression(component, cleaned);
34
+ if (isPlaceholderUnresolved(resolved, options)) {
35
+ missing = true;
36
+ return "";
37
+ }
38
+ return `${resolved}`;
39
+ };
40
+ const resolvedPath = template
41
+ .replace(/\$\{([^}]+)\}/g, replaceValue)
42
+ .replace(/\{\$([^}]+)\}/g, replaceValue)
43
+ .trim();
44
+ if (missing || !resolvedPath.length) {
45
+ return { ready: false, path: null };
46
+ }
47
+ const segments = resolvedPath.split(".").filter(Boolean);
48
+ if (segments.length === 0 || !segments[0]) {
49
+ return { ready: false, path: null };
50
+ }
51
+ return { ready: true, path: resolvedPath };
52
+ }
53
+ export function extractDynamicDependencies(path) {
54
+ const patterns = [/\$\{([^}]+)\}/g, /\{\$([^}]+)\}/g];
55
+ const deps = new Set();
56
+ for (const pattern of patterns) {
57
+ let match;
58
+ while ((match = pattern.exec(path)) !== null) {
59
+ const cleaned = (match[1] || "").trim().replace(/^this\./, "");
60
+ if (!cleaned)
61
+ continue;
62
+ const [root] = cleaned.split(".");
63
+ if (root)
64
+ deps.add(root);
65
+ }
66
+ }
67
+ return Array.from(deps);
68
+ }
69
+ export function hasPath(obj) {
70
+ return (typeof obj === "object" &&
71
+ obj !== null &&
72
+ "path" in obj &&
73
+ typeof obj.path === "string");
74
+ }
75
+ //# sourceMappingURL=dynamicPath.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"dynamicPath.js","sourceRoot":"","sources":["../../../../../src/core/decorators/subscriber/dynamicPath.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,138 @@
1
+ /**
2
+ * Surveillance des props utilisées dans les chemins dynamiques (`${userIndex}`, etc.).
3
+ *
4
+ * Modèle :
5
+ * - `observeDynamicProperty()` enregistre une prop + un handler à appeler si elle change ;
6
+ * - un seul `requestAnimationFrame` appelle `notifyObservedPropertyChanges()` ;
7
+ * - pour chaque prop observée : `lastValue` vs valeur lue sur le composant ;
8
+ * - plusieurs passes dans la même frame si un handler en modifie une autre ;
9
+ * - garde anti-boucle si une prop ne cesse de changer.
10
+ */
11
+ import { getValueFromExpression } from "./dynamicPath";
12
+ const observedPropertiesByComponent = new WeakMap();
13
+ /** Composants ayant au moins une prop observée. */
14
+ const componentsBeingPolled = new Set();
15
+ /** Un seul rAF pour toutes les instances et toutes les props observées. */
16
+ let animationFrameId = null;
17
+ /** Passes de réconciliation dans une même frame avant alerte boucle infinie. */
18
+ const MAX_NOTIFICATION_PASSES_PER_FRAME = 8;
19
+ function getObservedProperties(component) {
20
+ let observedProperties = observedPropertiesByComponent.get(component);
21
+ if (!observedProperties) {
22
+ observedProperties = new Map();
23
+ observedPropertiesByComponent.set(component, observedProperties);
24
+ }
25
+ return observedProperties;
26
+ }
27
+ /** Compare lastValue à la valeur actuelle ; retourne les handlers à exécuter. */
28
+ function findHandlersForChangedProperties(component, observedProperties) {
29
+ const handlersToRun = new Set();
30
+ for (const [propertyName, observed] of observedProperties) {
31
+ const currentValue = getValueFromExpression(component, propertyName);
32
+ if (!Object.is(observed.lastValue, currentValue)) {
33
+ observed.lastValue = currentValue;
34
+ observed.onChangeHandlers.forEach((handler) => handlersToRun.add(handler));
35
+ }
36
+ }
37
+ return handlersToRun;
38
+ }
39
+ /** Détecte les props observées qui ont changé et appelle leurs handlers (plusieurs passes si cascade). */
40
+ function notifyObservedPropertyChanges() {
41
+ animationFrameId = null;
42
+ let pass = 0;
43
+ let propertiesChangedThisFrame = true;
44
+ while (propertiesChangedThisFrame && pass < MAX_NOTIFICATION_PASSES_PER_FRAME) {
45
+ propertiesChangedThisFrame = false;
46
+ pass += 1;
47
+ for (const component of componentsBeingPolled) {
48
+ const observedProperties = observedPropertiesByComponent.get(component);
49
+ if (!observedProperties || observedProperties.size === 0)
50
+ continue;
51
+ const handlersToRun = findHandlersForChangedProperties(component, observedProperties);
52
+ if (handlersToRun.size === 0)
53
+ continue;
54
+ propertiesChangedThisFrame = true;
55
+ handlersToRun.forEach((handler) => handler());
56
+ }
57
+ }
58
+ if (propertiesChangedThisFrame) {
59
+ console.warn("[concorde] dynamic property watch: limite de passes atteinte, boucle infinie probable");
60
+ }
61
+ if (componentsBeingPolled.size > 0) {
62
+ scheduleObservedPropertyChanges();
63
+ }
64
+ }
65
+ function scheduleObservedPropertyChanges() {
66
+ if (animationFrameId !== null)
67
+ return;
68
+ animationFrameId = requestAnimationFrame(notifyObservedPropertyChanges);
69
+ }
70
+ function cancelScheduledObservedPropertyChangesIfIdle() {
71
+ if (componentsBeingPolled.size === 0 && animationFrameId !== null) {
72
+ cancelAnimationFrame(animationFrameId);
73
+ animationFrameId = null;
74
+ }
75
+ }
76
+ /**
77
+ * Observe une prop du composant utilisée dans un chemin dynamique.
78
+ * Retourne une fonction de désinscription.
79
+ *
80
+ * Les deux premiers paramètres sont ignorés (legacy API des décorateurs).
81
+ */
82
+ export function observeDynamicProperty(_legacyWatcherStoreKey, _legacyHookedStoreKey, component, dependencyPropertyName, onDependencyChange) {
83
+ const propertyName = String(dependencyPropertyName);
84
+ const observedProperties = getObservedProperties(component);
85
+ let observed = observedProperties.get(propertyName);
86
+ if (!observed) {
87
+ observed = {
88
+ lastValue: getValueFromExpression(component, propertyName),
89
+ onChangeHandlers: new Set(),
90
+ };
91
+ observedProperties.set(propertyName, observed);
92
+ }
93
+ observed.onChangeHandlers.add(onDependencyChange);
94
+ componentsBeingPolled.add(component);
95
+ scheduleObservedPropertyChanges();
96
+ return () => {
97
+ const currentObservedProperties = observedPropertiesByComponent.get(component);
98
+ if (!currentObservedProperties)
99
+ return;
100
+ const currentObserved = currentObservedProperties.get(propertyName);
101
+ if (!currentObserved)
102
+ return;
103
+ currentObserved.onChangeHandlers.delete(onDependencyChange);
104
+ if (currentObserved.onChangeHandlers.size === 0) {
105
+ currentObservedProperties.delete(propertyName);
106
+ }
107
+ if (currentObservedProperties.size === 0) {
108
+ observedPropertiesByComponent.delete(component);
109
+ componentsBeingPolled.delete(component);
110
+ cancelScheduledObservedPropertyChangesIfIdle();
111
+ }
112
+ };
113
+ }
114
+ /** @deprecated Alias conservé pour les décorateurs existants. */
115
+ export const registerDynamicPropertyWatcher = observeDynamicProperty;
116
+ /** @deprecated No-op conservé pour compatibilité API. */
117
+ export function ensureDynamicPropertiesWillUpdate(_watcherStoreKey, _hookedStoreKey, _instance) { }
118
+ /** Clés legacy ignorées par `@bind`. */
119
+ export const bindDynamicWatchKeys = {
120
+ watcherStore: Symbol("__bindDynamicWatcherStore__"),
121
+ hooked: Symbol("__bindDynamicWillUpdateHooked__"),
122
+ };
123
+ /** Clés legacy ignorées par `@publish`. */
124
+ export const publishDynamicWatchKeys = {
125
+ watcherStore: "__publishDynamicWatcherStore__",
126
+ hooked: "__publishDynamicWillUpdateHooked__",
127
+ };
128
+ /** Clés legacy ignorées par `@get`. */
129
+ export const getDynamicWatchKeys = {
130
+ watcherStore: "__getDynamicWatcherStore__",
131
+ hooked: "__getDynamicWillUpdateHooked__",
132
+ };
133
+ /** Clés legacy ignorées par `@onAssign`. */
134
+ export const onAssignDynamicWatchKeys = {
135
+ watcherStore: Symbol("__onAssignDynamicWatcherStore__"),
136
+ hooked: Symbol("__onAssignDynamicWillUpdateHooked__"),
137
+ };
138
+ //# sourceMappingURL=dynamicPropertyWatch.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"dynamicPropertyWatch.js","sourceRoot":"","sources":["../../../../../src/core/decorators/subscriber/dynamicPropertyWatch.ts"],"names":[],"mappings":"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"}