@supersoniks/concorde 4.7.4 → 4.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/ci.yml +21 -0
- package/.github-export-ignore +30 -0
- package/.gitlab-ci.yml +13 -0
- package/CONTRIBUTING.md +59 -0
- package/DEV.md +54 -0
- package/LICENSE +21 -0
- package/OPEN_SOURCE_CHECKPOINT.md +133 -0
- package/README.md +30 -16
- package/ai/cursor/rules/concorde.mdc +1 -1
- package/ai/skills/concorde-scope/SKILL.md +2 -2
- package/build-infos.json +1 -1
- package/concorde-core.bundle.js +214 -214
- package/concorde-core.es.js +4517 -4133
- package/dist/concorde-core.bundle.js +214 -214
- package/dist/concorde-core.es.js +4517 -4133
- package/dist/docs-mock-api-sw.js +19 -0
- package/dist/docs-mock-api-sw.js.map +2 -2
- package/dist/js/components.js +12 -0
- package/dist/js/components.js.map +1 -0
- package/dist/js/concorde-loaded.js +5 -0
- package/dist/js/concorde-loaded.js.map +1 -0
- package/dist/js/core/_types/endpoint.js +5 -0
- package/dist/js/core/_types/endpoint.js.map +1 -0
- package/dist/js/core/_types/key.js +2 -0
- package/dist/js/core/_types/key.js.map +1 -0
- package/dist/js/core/_types/types.js +3 -0
- package/dist/js/core/_types/types.js.map +1 -0
- package/dist/js/core/components/functional/date/date.js +272 -0
- package/dist/js/core/components/functional/date/date.js.map +1 -0
- package/dist/js/core/components/functional/example/example.js +44 -0
- package/dist/js/core/components/functional/example/example.js.map +1 -0
- package/dist/js/core/components/functional/fetch/fetch.js +79 -0
- package/dist/js/core/components/functional/fetch/fetch.js.map +1 -0
- package/dist/js/core/components/functional/functional.js +17 -0
- package/dist/js/core/components/functional/functional.js.map +1 -0
- package/dist/js/core/components/functional/if/if.js +39 -0
- package/dist/js/core/components/functional/if/if.js.map +1 -0
- package/dist/js/core/components/functional/list/list.js +341 -0
- package/dist/js/core/components/functional/list/list.js.map +1 -0
- package/dist/js/core/components/functional/mix/mix.js +103 -0
- package/dist/js/core/components/functional/mix/mix.js.map +1 -0
- package/dist/js/core/components/functional/queue/queue.js +386 -0
- package/dist/js/core/components/functional/queue/queue.js.map +1 -0
- package/dist/js/core/components/functional/router/redirect.js +54 -0
- package/dist/js/core/components/functional/router/redirect.js.map +1 -0
- package/dist/js/core/components/functional/router/router.js +179 -0
- package/dist/js/core/components/functional/router/router.js.map +1 -0
- package/dist/js/core/components/functional/sdui/SDUIDescriptorTransformer.js +216 -0
- package/dist/js/core/components/functional/sdui/SDUIDescriptorTransformer.js.map +1 -0
- package/dist/js/core/components/functional/sdui/default-library.json +108 -0
- package/dist/js/core/components/functional/sdui/sdui-utils.js +64 -0
- package/dist/js/core/components/functional/sdui/sdui-utils.js.map +1 -0
- package/dist/js/core/components/functional/sdui/sdui.js +266 -0
- package/dist/js/core/components/functional/sdui/sdui.js.map +1 -0
- package/dist/js/core/components/functional/sdui/types.js +2 -0
- package/dist/js/core/components/functional/sdui/types.js.map +1 -0
- package/dist/js/core/components/functional/sonic-scope/sonic-scope.js +22 -0
- package/dist/js/core/components/functional/sonic-scope/sonic-scope.js.map +1 -0
- package/dist/js/core/components/functional/states/states.js +172 -0
- package/dist/js/core/components/functional/states/states.js.map +1 -0
- package/dist/js/core/components/functional/submit/submit.js +284 -0
- package/dist/js/core/components/functional/submit/submit.js.map +1 -0
- package/dist/js/core/components/functional/subscriber/subscriber.js +39 -0
- package/dist/js/core/components/functional/subscriber/subscriber.js.map +1 -0
- package/dist/js/core/components/functional/translation/translation.js +28 -0
- package/dist/js/core/components/functional/translation/translation.js.map +1 -0
- package/dist/js/core/components/functional/value/value.js +28 -0
- package/dist/js/core/components/functional/value/value.js.map +1 -0
- package/dist/js/core/components/ui/_css/scroll.js +25 -0
- package/dist/js/core/components/ui/_css/scroll.js.map +1 -0
- package/dist/js/core/components/ui/_css/shadow.js +22 -0
- package/dist/js/core/components/ui/_css/shadow.js.map +1 -0
- package/dist/js/core/components/ui/_css/size.js +36 -0
- package/dist/js/core/components/ui/_css/size.js.map +1 -0
- package/dist/js/core/components/ui/_css/type.js +92 -0
- package/dist/js/core/components/ui/_css/type.js.map +1 -0
- package/dist/js/core/components/ui/alert/alert.js +213 -0
- package/dist/js/core/components/ui/alert/alert.js.map +1 -0
- package/dist/js/core/components/ui/alert-messages/alert-messages.js +68 -0
- package/dist/js/core/components/ui/alert-messages/alert-messages.js.map +1 -0
- package/dist/js/core/components/ui/badge/badge.js +199 -0
- package/dist/js/core/components/ui/badge/badge.js.map +1 -0
- package/dist/js/core/components/ui/button/button.js +697 -0
- package/dist/js/core/components/ui/button/button.js.map +1 -0
- package/dist/js/core/components/ui/captcha/altchaStyles.js +226 -0
- package/dist/js/core/components/ui/captcha/altchaStyles.js.map +1 -0
- package/dist/js/core/components/ui/captcha/captcha.js +167 -0
- package/dist/js/core/components/ui/captcha/captcha.js.map +1 -0
- package/dist/js/core/components/ui/card/card-footer.js +26 -0
- package/dist/js/core/components/ui/card/card-footer.js.map +1 -0
- package/dist/js/core/components/ui/card/card-header-descripton.js +30 -0
- package/dist/js/core/components/ui/card/card-header-descripton.js.map +1 -0
- package/dist/js/core/components/ui/card/card-header.js +79 -0
- package/dist/js/core/components/ui/card/card-header.js.map +1 -0
- package/dist/js/core/components/ui/card/card-main.js +26 -0
- package/dist/js/core/components/ui/card/card-main.js.map +1 -0
- package/dist/js/core/components/ui/card/card.js +67 -0
- package/dist/js/core/components/ui/card/card.js.map +1 -0
- package/dist/js/core/components/ui/divider/divider.js +200 -0
- package/dist/js/core/components/ui/divider/divider.js.map +1 -0
- package/dist/js/core/components/ui/form/checkbox/checkbox.js +257 -0
- package/dist/js/core/components/ui/form/checkbox/checkbox.js.map +1 -0
- package/dist/js/core/components/ui/form/css/form-control.js +393 -0
- package/dist/js/core/components/ui/form/css/form-control.js.map +1 -0
- package/dist/js/core/components/ui/form/fieldset/fieldset.js +124 -0
- package/dist/js/core/components/ui/form/fieldset/fieldset.js.map +1 -0
- package/dist/js/core/components/ui/form/fieldset/legend-description.js +38 -0
- package/dist/js/core/components/ui/form/fieldset/legend-description.js.map +1 -0
- package/dist/js/core/components/ui/form/fieldset/legend.js +130 -0
- package/dist/js/core/components/ui/form/fieldset/legend.js.map +1 -0
- package/dist/js/core/components/ui/form/form-actions/form-actions.js +47 -0
- package/dist/js/core/components/ui/form/form-actions/form-actions.js.map +1 -0
- package/dist/js/core/components/ui/form/form-layout/form-layout.js +84 -0
- package/dist/js/core/components/ui/form/form-layout/form-layout.js.map +1 -0
- package/dist/js/core/components/ui/form/input/input.js +316 -0
- package/dist/js/core/components/ui/form/input/input.js.map +1 -0
- package/dist/js/core/components/ui/form/input/password-helper.js +134 -0
- package/dist/js/core/components/ui/form/input/password-helper.js.map +1 -0
- package/dist/js/core/components/ui/form/input/same-value-helper.js +85 -0
- package/dist/js/core/components/ui/form/input/same-value-helper.js.map +1 -0
- package/dist/js/core/components/ui/form/input-autocomplete/input-autocomplete.js +405 -0
- package/dist/js/core/components/ui/form/input-autocomplete/input-autocomplete.js.map +1 -0
- package/dist/js/core/components/ui/form/radio/radio.js +63 -0
- package/dist/js/core/components/ui/form/radio/radio.js.map +1 -0
- package/dist/js/core/components/ui/form/select/select.js +323 -0
- package/dist/js/core/components/ui/form/select/select.js.map +1 -0
- package/dist/js/core/components/ui/form/switch/switch.js +90 -0
- package/dist/js/core/components/ui/form/switch/switch.js.map +1 -0
- package/dist/js/core/components/ui/form/textarea/textarea.js +162 -0
- package/dist/js/core/components/ui/form/textarea/textarea.js.map +1 -0
- package/dist/js/core/components/ui/group/group.js +128 -0
- package/dist/js/core/components/ui/group/group.js.map +1 -0
- package/dist/js/core/components/ui/icon/icon.js +129 -0
- package/dist/js/core/components/ui/icon/icon.js.map +1 -0
- package/dist/js/core/components/ui/icon/icons.js +163 -0
- package/dist/js/core/components/ui/icon/icons.js.map +1 -0
- package/dist/js/core/components/ui/icon/icons.json +1 -0
- package/dist/js/core/components/ui/image/image.js +160 -0
- package/dist/js/core/components/ui/image/image.js.map +1 -0
- package/dist/js/core/components/ui/link/link.js +125 -0
- package/dist/js/core/components/ui/link/link.js.map +1 -0
- package/dist/js/core/components/ui/loader/loader.js +106 -0
- package/dist/js/core/components/ui/loader/loader.js.map +1 -0
- package/dist/js/core/components/ui/loader/styles/fixed.js +56 -0
- package/dist/js/core/components/ui/loader/styles/fixed.js.map +1 -0
- package/dist/js/core/components/ui/loader/styles/inline.js +70 -0
- package/dist/js/core/components/ui/loader/styles/inline.js.map +1 -0
- package/dist/js/core/components/ui/menu/menu-item.js +35 -0
- package/dist/js/core/components/ui/menu/menu-item.js.map +1 -0
- package/dist/js/core/components/ui/menu/menu.js +436 -0
- package/dist/js/core/components/ui/menu/menu.js.map +1 -0
- package/dist/js/core/components/ui/modal/modal-actions.js +44 -0
- package/dist/js/core/components/ui/modal/modal-actions.js.map +1 -0
- package/dist/js/core/components/ui/modal/modal-close.js +56 -0
- package/dist/js/core/components/ui/modal/modal-close.js.map +1 -0
- package/dist/js/core/components/ui/modal/modal-content.js +27 -0
- package/dist/js/core/components/ui/modal/modal-content.js.map +1 -0
- package/dist/js/core/components/ui/modal/modal-subtitle.js +34 -0
- package/dist/js/core/components/ui/modal/modal-subtitle.js.map +1 -0
- package/dist/js/core/components/ui/modal/modal-title.js +35 -0
- package/dist/js/core/components/ui/modal/modal-title.js.map +1 -0
- package/dist/js/core/components/ui/modal/modal-utils.js +32 -0
- package/dist/js/core/components/ui/modal/modal-utils.js.map +1 -0
- package/dist/js/core/components/ui/modal/modal.js +568 -0
- package/dist/js/core/components/ui/modal/modal.js.map +1 -0
- package/dist/js/core/components/ui/pop/pop.js +337 -0
- package/dist/js/core/components/ui/pop/pop.js.map +1 -0
- package/dist/js/core/components/ui/progress/progress.js +164 -0
- package/dist/js/core/components/ui/progress/progress.js.map +1 -0
- package/dist/js/core/components/ui/table/table-caption.js +29 -0
- package/dist/js/core/components/ui/table/table-caption.js.map +1 -0
- package/dist/js/core/components/ui/table/table-tbody.js +41 -0
- package/dist/js/core/components/ui/table/table-tbody.js.map +1 -0
- package/dist/js/core/components/ui/table/table-td.js +69 -0
- package/dist/js/core/components/ui/table/table-td.js.map +1 -0
- package/dist/js/core/components/ui/table/table-tfoot.js +28 -0
- package/dist/js/core/components/ui/table/table-tfoot.js.map +1 -0
- package/dist/js/core/components/ui/table/table-th.js +80 -0
- package/dist/js/core/components/ui/table/table-th.js.map +1 -0
- package/dist/js/core/components/ui/table/table-thead.js +26 -0
- package/dist/js/core/components/ui/table/table-thead.js.map +1 -0
- package/dist/js/core/components/ui/table/table-tr.js +67 -0
- package/dist/js/core/components/ui/table/table-tr.js.map +1 -0
- package/dist/js/core/components/ui/table/table.js +106 -0
- package/dist/js/core/components/ui/table/table.js.map +1 -0
- package/dist/js/core/components/ui/theme/theme-collection/core-variables.js +74 -0
- package/dist/js/core/components/ui/theme/theme-collection/core-variables.js.map +1 -0
- package/dist/js/core/components/ui/theme/theme-collection/dark.js +39 -0
- package/dist/js/core/components/ui/theme/theme-collection/dark.js.map +1 -0
- package/dist/js/core/components/ui/theme/theme-collection/light.js +32 -0
- package/dist/js/core/components/ui/theme/theme-collection/light.js.map +1 -0
- package/dist/js/core/components/ui/theme/theme.js +150 -0
- package/dist/js/core/components/ui/theme/theme.js.map +1 -0
- package/dist/js/core/components/ui/toast/message-subscriber.js +41 -0
- package/dist/js/core/components/ui/toast/message-subscriber.js.map +1 -0
- package/dist/js/core/components/ui/toast/toast-item.js +379 -0
- package/dist/js/core/components/ui/toast/toast-item.js.map +1 -0
- package/dist/js/core/components/ui/toast/toast.js +269 -0
- package/dist/js/core/components/ui/toast/toast.js.map +1 -0
- package/dist/js/core/components/ui/toast/types.js +2 -0
- package/dist/js/core/components/ui/toast/types.js.map +1 -0
- package/dist/js/core/components/ui/tooltip/tooltip.js +219 -0
- package/dist/js/core/components/ui/tooltip/tooltip.js.map +1 -0
- package/dist/js/core/components/ui/ui.js +41 -0
- package/dist/js/core/components/ui/ui.js.map +1 -0
- package/dist/js/core/core.js +14 -0
- package/dist/js/core/core.js.map +1 -0
- package/dist/js/core/decorators/Subscriber.js +9 -0
- package/dist/js/core/decorators/Subscriber.js.map +1 -0
- package/dist/js/core/decorators/api.js +559 -0
- package/dist/js/core/decorators/api.js.map +1 -0
- package/dist/js/core/decorators/lifecycle.js +67 -0
- package/dist/js/core/decorators/lifecycle.js.map +1 -0
- package/dist/js/core/decorators/subscriber/ancestorAttribute.js +27 -0
- package/dist/js/core/decorators/subscriber/ancestorAttribute.js.map +1 -0
- package/dist/js/core/decorators/subscriber/autoFill.js +26 -0
- package/dist/js/core/decorators/subscriber/autoFill.js.map +1 -0
- package/dist/js/core/decorators/subscriber/autoSubscribe.js +46 -0
- package/dist/js/core/decorators/subscriber/autoSubscribe.js.map +1 -0
- package/dist/js/core/decorators/subscriber/bind.js +150 -0
- package/dist/js/core/decorators/subscriber/bind.js.map +1 -0
- package/dist/js/core/decorators/subscriber/common.js +44 -0
- package/dist/js/core/decorators/subscriber/common.js.map +1 -0
- package/dist/js/core/decorators/subscriber/dynamicPath.js +75 -0
- package/dist/js/core/decorators/subscriber/dynamicPath.js.map +1 -0
- package/dist/js/core/decorators/subscriber/dynamicPropertyWatch.js +138 -0
- package/dist/js/core/decorators/subscriber/dynamicPropertyWatch.js.map +1 -0
- package/dist/js/core/decorators/subscriber/handle.js +22 -0
- package/dist/js/core/decorators/subscriber/handle.js.map +1 -0
- package/dist/js/core/decorators/subscriber/onAssign.js +199 -0
- package/dist/js/core/decorators/subscriber/onAssign.js.map +1 -0
- package/dist/js/core/decorators/subscriber/publish.js +108 -0
- package/dist/js/core/decorators/subscriber/publish.js.map +1 -0
- package/dist/js/core/decorators/subscriber/publisherPath.js +16 -0
- package/dist/js/core/decorators/subscriber/publisherPath.js.map +1 -0
- package/dist/js/core/decorators/subscriber/subscribe.js +20 -0
- package/dist/js/core/decorators/subscriber/subscribe.js.map +1 -0
- package/dist/js/core/directives/DataProvider.js +127 -0
- package/dist/js/core/directives/DataProvider.js.map +1 -0
- package/dist/js/core/directives/Wording.js +221 -0
- package/dist/js/core/directives/Wording.js.map +1 -0
- package/dist/js/core/mixins/Fetcher.js +325 -0
- package/dist/js/core/mixins/Fetcher.js.map +1 -0
- package/dist/js/core/mixins/FormCheckable.js +313 -0
- package/dist/js/core/mixins/FormCheckable.js.map +1 -0
- package/dist/js/core/mixins/FormElement.js +304 -0
- package/dist/js/core/mixins/FormElement.js.map +1 -0
- package/dist/js/core/mixins/FormInput.js +82 -0
- package/dist/js/core/mixins/FormInput.js.map +1 -0
- package/dist/js/core/mixins/Subscriber.js +354 -0
- package/dist/js/core/mixins/Subscriber.js.map +1 -0
- package/dist/js/core/mixins/TemplatesContainer.js +70 -0
- package/dist/js/core/mixins/TemplatesContainer.js.map +1 -0
- package/dist/js/core/mixins/mixins.js +7 -0
- package/dist/js/core/mixins/mixins.js.map +1 -0
- package/dist/js/core/utils/AncestorAttributeObserver.js +140 -0
- package/dist/js/core/utils/AncestorAttributeObserver.js.map +1 -0
- package/dist/js/core/utils/Arrays.js +141 -0
- package/dist/js/core/utils/Arrays.js.map +1 -0
- package/dist/js/core/utils/DataBindObserver.js +265 -0
- package/dist/js/core/utils/DataBindObserver.js.map +1 -0
- package/dist/js/core/utils/Electron.js +14 -0
- package/dist/js/core/utils/Electron.js.map +1 -0
- package/dist/js/core/utils/Format.js +43 -0
- package/dist/js/core/utils/Format.js.map +1 -0
- package/dist/js/core/utils/HTML.js +248 -0
- package/dist/js/core/utils/HTML.js.map +1 -0
- package/dist/js/core/utils/LocationHandler.js +143 -0
- package/dist/js/core/utils/LocationHandler.js.map +1 -0
- package/dist/js/core/utils/Objects.js +111 -0
- package/dist/js/core/utils/Objects.js.map +1 -0
- package/dist/js/core/utils/PublisherProxy.js +946 -0
- package/dist/js/core/utils/PublisherProxy.js.map +1 -0
- package/dist/js/core/utils/Utils.js +19 -0
- package/dist/js/core/utils/Utils.js.map +1 -0
- package/dist/js/core/utils/aesCrypto.js +98 -0
- package/dist/js/core/utils/aesCrypto.js.map +1 -0
- package/dist/js/core/utils/api.js +574 -0
- package/dist/js/core/utils/api.js.map +1 -0
- package/dist/js/core/utils/dataProviderKey.js +64 -0
- package/dist/js/core/utils/dataProviderKey.js.map +1 -0
- package/dist/js/core/utils/endpoint.js +74 -0
- package/dist/js/core/utils/endpoint.js.map +1 -0
- package/dist/js/core/utils/route.js +149 -0
- package/dist/js/core/utils/route.js.map +1 -0
- package/dist/js/core/utils/url-pattern.js +3 -0
- package/dist/js/core/utils/url-pattern.js.map +1 -0
- package/dist/js/dataprovider.js +2 -0
- package/dist/js/dataprovider.js.map +1 -0
- package/dist/js/decorators.js +39 -0
- package/dist/js/decorators.js.map +1 -0
- package/dist/js/directives.js +30 -0
- package/dist/js/directives.js.map +1 -0
- package/dist/js/index.js +8 -0
- package/dist/js/index.js.map +1 -0
- package/dist/js/mixins.js +23 -0
- package/dist/js/mixins.js.map +1 -0
- package/dist/js/test-utils/TestUtils.js +10 -0
- package/dist/js/test-utils/TestUtils.js.map +1 -0
- package/dist/js/utils.js +41 -0
- package/dist/js/utils.js.map +1 -0
- package/dist/types/components.d.ts +5 -0
- package/dist/types/components.d.ts.map +1 -0
- package/dist/types/concorde-loaded.d.ts +2 -0
- package/dist/types/concorde-loaded.d.ts.map +1 -0
- package/dist/types/core/_types/endpoint.d.ts +5 -0
- package/dist/types/core/_types/endpoint.d.ts.map +1 -0
- package/dist/types/core/_types/key.d.ts +2 -0
- package/dist/types/core/_types/key.d.ts.map +1 -0
- package/dist/types/core/_types/types.d.ts +28 -0
- package/dist/types/core/_types/types.d.ts.map +1 -0
- package/dist/types/core/components/functional/date/date.d.ts +52 -0
- package/dist/types/core/components/functional/date/date.d.ts.map +1 -0
- package/dist/types/core/components/functional/example/example.d.ts +15 -0
- package/dist/types/core/components/functional/example/example.d.ts.map +1 -0
- package/dist/types/core/components/functional/fetch/fetch.d.ts +102 -0
- package/dist/types/core/components/functional/fetch/fetch.d.ts.map +1 -0
- package/dist/types/core/components/functional/functional.d.ts +17 -0
- package/dist/types/core/components/functional/functional.d.ts.map +1 -0
- package/dist/types/core/components/functional/if/if.d.ts +13 -0
- package/dist/types/core/components/functional/if/if.d.ts.map +1 -0
- package/dist/types/core/components/functional/list/list.d.ts +149 -0
- package/dist/types/core/components/functional/list/list.d.ts.map +1 -0
- package/dist/types/core/components/functional/mix/mix.d.ts +23 -0
- package/dist/types/core/components/functional/mix/mix.d.ts.map +1 -0
- package/dist/types/core/components/functional/queue/queue.d.ts +79 -0
- package/dist/types/core/components/functional/queue/queue.d.ts.map +1 -0
- package/dist/types/core/components/functional/router/redirect.d.ts +19 -0
- package/dist/types/core/components/functional/router/redirect.d.ts.map +1 -0
- package/dist/types/core/components/functional/router/router.d.ts +46 -0
- package/dist/types/core/components/functional/router/router.d.ts.map +1 -0
- package/dist/types/core/components/functional/sdui/SDUIDescriptorTransformer.d.ts +59 -0
- package/dist/types/core/components/functional/sdui/SDUIDescriptorTransformer.d.ts.map +1 -0
- package/dist/types/core/components/functional/sdui/sdui-utils.d.ts +6 -0
- package/dist/types/core/components/functional/sdui/sdui-utils.d.ts.map +1 -0
- package/dist/types/core/components/functional/sdui/sdui.d.ts +145 -0
- package/dist/types/core/components/functional/sdui/sdui.d.ts.map +1 -0
- package/dist/types/core/components/functional/sdui/types.d.ts +38 -0
- package/dist/types/core/components/functional/sdui/types.d.ts.map +1 -0
- package/dist/types/core/components/functional/sonic-scope/sonic-scope.d.ts +6 -0
- package/dist/types/core/components/functional/sonic-scope/sonic-scope.d.ts.map +1 -0
- package/dist/types/core/components/functional/states/states.d.ts +42 -0
- package/dist/types/core/components/functional/states/states.d.ts.map +1 -0
- package/dist/types/core/components/functional/submit/submit.d.ts +37 -0
- package/dist/types/core/components/functional/submit/submit.d.ts.map +1 -0
- package/dist/types/core/components/functional/subscriber/subscriber.d.ts +13 -0
- package/dist/types/core/components/functional/subscriber/subscriber.d.ts.map +1 -0
- package/dist/types/core/components/functional/translation/translation.d.ts +7 -0
- package/dist/types/core/components/functional/translation/translation.d.ts.map +1 -0
- package/dist/types/core/components/functional/value/value.d.ts +8 -0
- package/dist/types/core/components/functional/value/value.d.ts.map +1 -0
- package/dist/types/core/components/ui/_css/scroll.d.ts +2 -0
- package/dist/types/core/components/ui/_css/scroll.d.ts.map +1 -0
- package/dist/types/core/components/ui/_css/shadow.d.ts +3 -0
- package/dist/types/core/components/ui/_css/shadow.d.ts.map +1 -0
- package/dist/types/core/components/ui/_css/size.d.ts +3 -0
- package/dist/types/core/components/ui/_css/size.d.ts.map +1 -0
- package/dist/types/core/components/ui/_css/type.d.ts +3 -0
- package/dist/types/core/components/ui/_css/type.d.ts.map +1 -0
- package/dist/types/core/components/ui/alert/alert.d.ts +37 -0
- package/dist/types/core/components/ui/alert/alert.d.ts.map +1 -0
- package/dist/types/core/components/ui/alert-messages/alert-messages.d.ts +15 -0
- package/dist/types/core/components/ui/alert-messages/alert-messages.d.ts.map +1 -0
- package/dist/types/core/components/ui/badge/badge.d.ts +27 -0
- package/dist/types/core/components/ui/badge/badge.d.ts.map +1 -0
- package/dist/types/core/components/ui/button/button.d.ts +180 -0
- package/dist/types/core/components/ui/button/button.d.ts.map +1 -0
- package/dist/types/core/components/ui/captcha/altchaStyles.d.ts +2 -0
- package/dist/types/core/components/ui/captcha/altchaStyles.d.ts.map +1 -0
- package/dist/types/core/components/ui/captcha/captcha.d.ts +30 -0
- package/dist/types/core/components/ui/captcha/captcha.d.ts.map +1 -0
- package/dist/types/core/components/ui/card/card-footer.d.ts +6 -0
- package/dist/types/core/components/ui/card/card-footer.d.ts.map +1 -0
- package/dist/types/core/components/ui/card/card-header-descripton.d.ts +6 -0
- package/dist/types/core/components/ui/card/card-header-descripton.d.ts.map +1 -0
- package/dist/types/core/components/ui/card/card-header.d.ts +9 -0
- package/dist/types/core/components/ui/card/card-header.d.ts.map +1 -0
- package/dist/types/core/components/ui/card/card-main.d.ts +6 -0
- package/dist/types/core/components/ui/card/card-main.d.ts.map +1 -0
- package/dist/types/core/components/ui/card/card.d.ts +13 -0
- package/dist/types/core/components/ui/card/card.d.ts.map +1 -0
- package/dist/types/core/components/ui/divider/divider.d.ts +16 -0
- package/dist/types/core/components/ui/divider/divider.d.ts.map +1 -0
- package/dist/types/core/components/ui/form/checkbox/checkbox.d.ts +176 -0
- package/dist/types/core/components/ui/form/checkbox/checkbox.d.ts.map +1 -0
- package/dist/types/core/components/ui/form/css/form-control.d.ts +5 -0
- package/dist/types/core/components/ui/form/css/form-control.d.ts.map +1 -0
- package/dist/types/core/components/ui/form/fieldset/fieldset.d.ts +24 -0
- package/dist/types/core/components/ui/form/fieldset/fieldset.d.ts.map +1 -0
- package/dist/types/core/components/ui/form/fieldset/legend-description.d.ts +6 -0
- package/dist/types/core/components/ui/form/fieldset/legend-description.d.ts.map +1 -0
- package/dist/types/core/components/ui/form/fieldset/legend.d.ts +17 -0
- package/dist/types/core/components/ui/form/fieldset/legend.d.ts.map +1 -0
- package/dist/types/core/components/ui/form/form-actions/form-actions.d.ts +8 -0
- package/dist/types/core/components/ui/form/form-actions/form-actions.d.ts.map +1 -0
- package/dist/types/core/components/ui/form/form-layout/form-layout.d.ts +13 -0
- package/dist/types/core/components/ui/form/form-layout/form-layout.d.ts.map +1 -0
- package/dist/types/core/components/ui/form/input/input.d.ts +123 -0
- package/dist/types/core/components/ui/form/input/input.d.ts.map +1 -0
- package/dist/types/core/components/ui/form/input/password-helper.d.ts +26 -0
- package/dist/types/core/components/ui/form/input/password-helper.d.ts.map +1 -0
- package/dist/types/core/components/ui/form/input/same-value-helper.d.ts +17 -0
- package/dist/types/core/components/ui/form/input/same-value-helper.d.ts.map +1 -0
- package/dist/types/core/components/ui/form/input-autocomplete/input-autocomplete.d.ts +155 -0
- package/dist/types/core/components/ui/form/input-autocomplete/input-autocomplete.d.ts.map +1 -0
- package/dist/types/core/components/ui/form/radio/radio.d.ts +15 -0
- package/dist/types/core/components/ui/form/radio/radio.d.ts.map +1 -0
- package/dist/types/core/components/ui/form/select/select.d.ts +59 -0
- package/dist/types/core/components/ui/form/select/select.d.ts.map +1 -0
- package/dist/types/core/components/ui/form/switch/switch.d.ts +6 -0
- package/dist/types/core/components/ui/form/switch/switch.d.ts.map +1 -0
- package/dist/types/core/components/ui/form/textarea/textarea.d.ts +94 -0
- package/dist/types/core/components/ui/form/textarea/textarea.d.ts.map +1 -0
- package/dist/types/core/components/ui/group/group.d.ts +17 -0
- package/dist/types/core/components/ui/group/group.d.ts.map +1 -0
- package/dist/types/core/components/ui/icon/icon.d.ts +28 -0
- package/dist/types/core/components/ui/icon/icon.d.ts.map +1 -0
- package/dist/types/core/components/ui/icon/icons.d.ts +11 -0
- package/dist/types/core/components/ui/icon/icons.d.ts.map +1 -0
- package/dist/types/core/components/ui/image/image.d.ts +16 -0
- package/dist/types/core/components/ui/image/image.d.ts.map +1 -0
- package/dist/types/core/components/ui/link/link.d.ts +30 -0
- package/dist/types/core/components/ui/link/link.d.ts.map +1 -0
- package/dist/types/core/components/ui/loader/loader.d.ts +24 -0
- package/dist/types/core/components/ui/loader/loader.d.ts.map +1 -0
- package/dist/types/core/components/ui/loader/styles/fixed.d.ts +2 -0
- package/dist/types/core/components/ui/loader/styles/fixed.d.ts.map +1 -0
- package/dist/types/core/components/ui/loader/styles/inline.d.ts +2 -0
- package/dist/types/core/components/ui/loader/styles/inline.d.ts.map +1 -0
- package/dist/types/core/components/ui/menu/menu-item.d.ts +6 -0
- package/dist/types/core/components/ui/menu/menu-item.d.ts.map +1 -0
- package/dist/types/core/components/ui/menu/menu.d.ts +52 -0
- package/dist/types/core/components/ui/menu/menu.d.ts.map +1 -0
- package/dist/types/core/components/ui/modal/modal-actions.d.ts +9 -0
- package/dist/types/core/components/ui/modal/modal-actions.d.ts.map +1 -0
- package/dist/types/core/components/ui/modal/modal-close.d.ts +11 -0
- package/dist/types/core/components/ui/modal/modal-close.d.ts.map +1 -0
- package/dist/types/core/components/ui/modal/modal-content.d.ts +6 -0
- package/dist/types/core/components/ui/modal/modal-content.d.ts.map +1 -0
- package/dist/types/core/components/ui/modal/modal-subtitle.d.ts +6 -0
- package/dist/types/core/components/ui/modal/modal-subtitle.d.ts.map +1 -0
- package/dist/types/core/components/ui/modal/modal-title.d.ts +6 -0
- package/dist/types/core/components/ui/modal/modal-title.d.ts.map +1 -0
- package/dist/types/core/components/ui/modal/modal-utils.d.ts +4 -0
- package/dist/types/core/components/ui/modal/modal-utils.d.ts.map +1 -0
- package/dist/types/core/components/ui/modal/modal.d.ts +79 -0
- package/dist/types/core/components/ui/modal/modal.d.ts.map +1 -0
- package/dist/types/core/components/ui/pop/pop.d.ts +42 -0
- package/dist/types/core/components/ui/pop/pop.d.ts.map +1 -0
- package/dist/types/core/components/ui/progress/progress.d.ts +12 -0
- package/dist/types/core/components/ui/progress/progress.d.ts.map +1 -0
- package/dist/types/core/components/ui/table/table-caption.d.ts +6 -0
- package/dist/types/core/components/ui/table/table-caption.d.ts.map +1 -0
- package/dist/types/core/components/ui/table/table-tbody.d.ts +6 -0
- package/dist/types/core/components/ui/table/table-tbody.d.ts.map +1 -0
- package/dist/types/core/components/ui/table/table-td.d.ts +13 -0
- package/dist/types/core/components/ui/table/table-td.d.ts.map +1 -0
- package/dist/types/core/components/ui/table/table-tfoot.d.ts +6 -0
- package/dist/types/core/components/ui/table/table-tfoot.d.ts.map +1 -0
- package/dist/types/core/components/ui/table/table-th.d.ts +12 -0
- package/dist/types/core/components/ui/table/table-th.d.ts.map +1 -0
- package/dist/types/core/components/ui/table/table-thead.d.ts +6 -0
- package/dist/types/core/components/ui/table/table-thead.d.ts.map +1 -0
- package/dist/types/core/components/ui/table/table-tr.d.ts +14 -0
- package/dist/types/core/components/ui/table/table-tr.d.ts.map +1 -0
- package/dist/types/core/components/ui/table/table.d.ts +18 -0
- package/dist/types/core/components/ui/table/table.d.ts.map +1 -0
- package/dist/types/core/components/ui/theme/theme-collection/core-variables.d.ts +2 -0
- package/dist/types/core/components/ui/theme/theme-collection/core-variables.d.ts.map +1 -0
- package/dist/types/core/components/ui/theme/theme-collection/dark.d.ts +2 -0
- package/dist/types/core/components/ui/theme/theme-collection/dark.d.ts.map +1 -0
- package/dist/types/core/components/ui/theme/theme-collection/light.d.ts +2 -0
- package/dist/types/core/components/ui/theme/theme-collection/light.d.ts.map +1 -0
- package/dist/types/core/components/ui/theme/theme.d.ts +20 -0
- package/dist/types/core/components/ui/theme/theme.d.ts.map +1 -0
- package/dist/types/core/components/ui/toast/message-subscriber.d.ts +19 -0
- package/dist/types/core/components/ui/toast/message-subscriber.d.ts.map +1 -0
- package/dist/types/core/components/ui/toast/toast-item.d.ts +41 -0
- package/dist/types/core/components/ui/toast/toast-item.d.ts.map +1 -0
- package/dist/types/core/components/ui/toast/toast.d.ts +28 -0
- package/dist/types/core/components/ui/toast/toast.d.ts.map +1 -0
- package/dist/types/core/components/ui/toast/types.d.ts +12 -0
- package/dist/types/core/components/ui/toast/types.d.ts.map +1 -0
- package/dist/types/core/components/ui/tooltip/tooltip.d.ts +21 -0
- package/dist/types/core/components/ui/tooltip/tooltip.d.ts.map +1 -0
- package/dist/types/core/components/ui/ui.d.ts +35 -0
- package/dist/types/core/components/ui/ui.d.ts.map +1 -0
- package/dist/types/core/core.d.ts +5 -0
- package/dist/types/core/core.d.ts.map +1 -0
- package/dist/types/core/decorators/Subscriber.d.ts +11 -0
- package/dist/types/core/decorators/Subscriber.d.ts.map +1 -0
- package/dist/types/core/decorators/api.d.ts +106 -0
- package/dist/types/core/decorators/api.d.ts.map +1 -0
- package/dist/types/core/decorators/lifecycle.d.ts +19 -0
- package/dist/types/core/decorators/lifecycle.d.ts.map +1 -0
- package/dist/types/core/decorators/subscriber/ancestorAttribute.d.ts +11 -0
- package/dist/types/core/decorators/subscriber/ancestorAttribute.d.ts.map +1 -0
- package/dist/types/core/decorators/subscriber/autoFill.d.ts +2 -0
- package/dist/types/core/decorators/subscriber/autoFill.d.ts.map +1 -0
- package/dist/types/core/decorators/subscriber/autoSubscribe.d.ts +2 -0
- package/dist/types/core/decorators/subscriber/autoSubscribe.d.ts.map +1 -0
- package/dist/types/core/decorators/subscriber/bind.d.ts +28 -0
- package/dist/types/core/decorators/subscriber/bind.d.ts.map +1 -0
- package/dist/types/core/decorators/subscriber/common.d.ts +14 -0
- package/dist/types/core/decorators/subscriber/common.d.ts.map +1 -0
- package/dist/types/core/decorators/subscriber/dynamicPath.d.ts +23 -0
- package/dist/types/core/decorators/subscriber/dynamicPath.d.ts.map +1 -0
- package/dist/types/core/decorators/subscriber/dynamicPropertyWatch.d.ts +42 -0
- package/dist/types/core/decorators/subscriber/dynamicPropertyWatch.d.ts.map +1 -0
- package/dist/types/core/decorators/subscriber/handle.d.ts +74 -0
- package/dist/types/core/decorators/subscriber/handle.d.ts.map +1 -0
- package/dist/types/core/decorators/subscriber/onAssign.d.ts +53 -0
- package/dist/types/core/decorators/subscriber/onAssign.d.ts.map +1 -0
- package/dist/types/core/decorators/subscriber/publish.d.ts +23 -0
- package/dist/types/core/decorators/subscriber/publish.d.ts.map +1 -0
- package/dist/types/core/decorators/subscriber/publisherPath.d.ts +3 -0
- package/dist/types/core/decorators/subscriber/publisherPath.d.ts.map +1 -0
- package/dist/types/core/decorators/subscriber/subscribe.d.ts +20 -0
- package/dist/types/core/decorators/subscriber/subscribe.d.ts.map +1 -0
- package/dist/types/core/directives/DataProvider.d.ts +45 -0
- package/dist/types/core/directives/DataProvider.d.ts.map +1 -0
- package/dist/types/core/directives/Wording.d.ts +44 -0
- package/dist/types/core/directives/Wording.d.ts.map +1 -0
- package/dist/types/core/mixins/Fetcher.d.ts +108 -0
- package/dist/types/core/mixins/Fetcher.d.ts.map +1 -0
- package/dist/types/core/mixins/FormCheckable.d.ts +95 -0
- package/dist/types/core/mixins/FormCheckable.d.ts.map +1 -0
- package/dist/types/core/mixins/FormElement.d.ts +37 -0
- package/dist/types/core/mixins/FormElement.d.ts.map +1 -0
- package/dist/types/core/mixins/FormInput.d.ts +79 -0
- package/dist/types/core/mixins/FormInput.d.ts.map +1 -0
- package/dist/types/core/mixins/Subscriber.d.ts +38 -0
- package/dist/types/core/mixins/Subscriber.d.ts.map +1 -0
- package/dist/types/core/mixins/TemplatesContainer.d.ts +14 -0
- package/dist/types/core/mixins/TemplatesContainer.d.ts.map +1 -0
- package/dist/types/core/mixins/mixins.d.ts +7 -0
- package/dist/types/core/mixins/mixins.d.ts.map +1 -0
- package/dist/types/core/utils/AncestorAttributeObserver.d.ts +38 -0
- package/dist/types/core/utils/AncestorAttributeObserver.d.ts.map +1 -0
- package/dist/types/core/utils/Arrays.d.ts +98 -0
- package/dist/types/core/utils/Arrays.d.ts.map +1 -0
- package/dist/types/core/utils/DataBindObserver.d.ts +84 -0
- package/dist/types/core/utils/DataBindObserver.d.ts.map +1 -0
- package/dist/types/core/utils/Electron.d.ts +8 -0
- package/dist/types/core/utils/Electron.d.ts.map +1 -0
- package/dist/types/core/utils/Format.d.ts +13 -0
- package/dist/types/core/utils/Format.d.ts.map +1 -0
- package/dist/types/core/utils/HTML.d.ts +64 -0
- package/dist/types/core/utils/HTML.d.ts.map +1 -0
- package/dist/types/core/utils/LocationHandler.d.ts +48 -0
- package/dist/types/core/utils/LocationHandler.d.ts.map +1 -0
- package/dist/types/core/utils/Objects.d.ts +31 -0
- package/dist/types/core/utils/Objects.d.ts.map +1 -0
- package/dist/types/core/utils/PublisherProxy.d.ts +230 -0
- package/dist/types/core/utils/PublisherProxy.d.ts.map +1 -0
- package/dist/types/core/utils/Utils.d.ts +6 -0
- package/dist/types/core/utils/Utils.d.ts.map +1 -0
- package/dist/types/core/utils/aesCrypto.d.ts +53 -0
- package/dist/types/core/utils/aesCrypto.d.ts.map +1 -0
- package/dist/types/core/utils/api.d.ts +173 -0
- package/dist/types/core/utils/api.d.ts.map +1 -0
- package/dist/types/core/utils/dataProviderKey.d.ts +56 -0
- package/dist/types/core/utils/dataProviderKey.d.ts.map +1 -0
- package/dist/types/core/utils/endpoint.d.ts +37 -0
- package/dist/types/core/utils/endpoint.d.ts.map +1 -0
- package/dist/types/core/utils/route.d.ts +41 -0
- package/dist/types/core/utils/route.d.ts.map +1 -0
- package/dist/types/core/utils/url-pattern.d.ts +3 -0
- package/dist/types/core/utils/url-pattern.d.ts.map +1 -0
- package/dist/types/dataprovider.d.ts +2 -0
- package/dist/types/dataprovider.d.ts.map +1 -0
- package/dist/types/decorators.d.ts +28 -0
- package/dist/types/decorators.d.ts.map +1 -0
- package/dist/types/directives.d.ts +21 -0
- package/dist/types/directives.d.ts.map +1 -0
- package/dist/types/index.d.ts +8 -0
- package/dist/types/index.d.ts.map +1 -0
- package/dist/types/mixins.d.ts +204 -0
- package/dist/types/mixins.d.ts.map +1 -0
- package/dist/types/test-utils/TestUtils.d.ts +4 -0
- package/dist/types/test-utils/TestUtils.d.ts.map +1 -0
- package/dist/types/utils.d.ts +17 -0
- package/dist/types/utils.d.ts.map +1 -0
- package/docs/assets/index-BEgZEIbv.js +11196 -0
- package/docs/docs-mock-api-sw.js +19 -0
- package/docs/docs-mock-api-sw.js.map +2 -2
- package/docs/index.html +1 -1
- package/docs/src/docs/_core-concept/dataFlow.md +9 -3
- package/docs/src/docs/_decorators/bind.md +2 -2
- package/docs/src/docs/_decorators/get.md +13 -4
- package/docs/src/docs/_decorators/handle.md +5 -1
- package/docs/src/docs/_decorators/on-assign.md +2 -0
- package/docs/src/docs/_decorators/patch.md +45 -0
- package/docs/src/docs/_decorators/post.md +93 -0
- package/docs/src/docs/_decorators/publish.md +1 -1
- package/docs/src/docs/_decorators/put.md +43 -0
- package/docs/src/docs/_decorators/subscribe.md +4 -1
- package/docs/src/docs/_directives/sub.md +1 -1
- package/docs/src/docs/_getting-started/my-first-component.md +1 -1
- package/docs/src/docs/_misc/api-configuration.md +3 -1
- package/docs/src/docs/_misc/dataProviderKey.md +2 -2
- package/docs/src/docs/_misc/dynamic-path.md +71 -0
- package/docs/src/docs/_misc/endpoint.md +5 -3
- package/docs/src/docs/search/docs-search.json +540 -15
- package/docs/src/tsconfig.json +377 -353
- package/gitlab/job_github_mirror.sh +39 -0
- package/index.html +0 -1
- package/package.json +1084 -356
- package/public/docs-mock-api-sw.js +19 -0
- package/public/docs-mock-api-sw.js.map +2 -2
- package/scripts/github-export.mjs +150 -0
- package/scripts/post-build.mjs +43 -0
- package/scripts/pre-build.mjs +32 -4
- package/scripts/pre-publish.mjs +2 -0
- package/src/core/components/functional/example/example.ts +3 -3
- package/src/core/components/functional/queue/queue.ts +2 -2
- package/src/core/components/ui/icon/icon.ts +17 -2
- package/src/core/components/ui/menu/menu.ts +12 -3
- package/src/core/components/ui/modal/modal.ts +1 -1
- package/src/core/decorators/Subscriber.ts +1 -0
- package/src/core/decorators/api.post.spec.ts +293 -0
- package/src/core/decorators/api.spec.ts +6 -6
- package/src/core/decorators/api.ts +641 -12
- package/src/core/decorators/subscriber/ancestorAttribute.spec.ts +197 -0
- package/src/core/decorators/subscriber/ancestorAttribute.ts +40 -7
- package/src/core/decorators/subscriber/autoSubscribe.ts +7 -3
- package/src/core/decorators/subscriber/bind.ts +13 -5
- package/src/core/decorators/subscriber/dynamicPath.spec.ts +53 -0
- package/src/core/decorators/subscriber/dynamicPath.ts +23 -1
- package/src/core/decorators/subscriber/handle.ts +3 -1
- package/src/core/decorators/subscriber/onAssign.ts +10 -2
- package/src/core/decorators/subscriber/publish.ts +12 -2
- package/src/core/mixins/Fetcher.ts +12 -6
- package/src/core/utils/AncestorAttributeObserver.ts +199 -0
- package/src/core/utils/HTML.ts +3 -11
- package/src/core/utils/PublisherProxy.ts +123 -48
- package/src/core/utils/api.ts +82 -13
- package/src/core/utils/dpOptions.spec.ts +56 -0
- package/src/core/utils/endpoint.ts +3 -3
- package/src/css.d.ts +19 -0
- package/src/decorators.ts +17 -1
- package/src/directives.ts +3 -2
- package/src/docs/_core-concept/dataFlow.md +9 -3
- package/src/docs/_decorators/ancestor-attribute.md +56 -8
- package/src/docs/_decorators/bind.md +2 -2
- package/src/docs/_decorators/get.md +13 -4
- package/src/docs/_decorators/handle.md +5 -1
- package/src/docs/_decorators/on-assign.md +2 -0
- package/src/docs/_decorators/patch.md +45 -0
- package/src/docs/_decorators/post.md +93 -0
- package/src/docs/_decorators/publish.md +1 -1
- package/src/docs/_decorators/put.md +43 -0
- package/src/docs/_decorators/subscribe.md +4 -1
- package/src/docs/_directives/sub.md +1 -1
- package/src/docs/_getting-started/my-first-component.md +1 -1
- package/src/docs/_misc/api-configuration.md +3 -1
- package/src/docs/_misc/dataProviderKey.md +2 -2
- package/src/docs/_misc/dynamic-path.md +71 -0
- package/src/docs/_misc/endpoint.md +5 -3
- package/src/docs/components/docs-demo-sources.ts +115 -4
- package/src/docs/components/docs-lit-demo-raw.ts +2 -26
- package/src/docs/components/docs-lit-demo.ts +9 -42
- package/src/docs/components/docs-source-excerpt.ts +53 -0
- package/src/docs/components/docs-source-link.ts +24 -8
- package/src/docs/components/docs-source-raw.ts +34 -0
- package/src/docs/example/decorators-demo-geo.ts +2 -2
- package/src/docs/example/decorators-demo-post.ts +249 -0
- package/src/docs/example/decorators-demo-subscribe-publish-get-demos.ts +5 -5
- package/src/docs/example/decorators-demo.ts +165 -8
- package/src/docs/example/docs-api-config-demos.ts +5 -5
- package/src/docs/mock-api/router.ts +20 -0
- package/src/docs/navigation/navigation.ts +16 -0
- package/src/docs/search/docs-search.json +602 -17
- package/src/tsconfig.declarations.json +22 -0
- package/src/tsconfig.emit.json +23 -0
- package/src/tsconfig.json +3 -261
- package/src/tsconfig.tsbuildinfo +1 -1
- package/vite.config.mts +1 -1
- package/docs/assets/index-CwtPzTFq.js +0 -7508
|
@@ -0,0 +1,199 @@
|
|
|
1
|
+
import { setSubscribable } from "./common";
|
|
2
|
+
import { extractDynamicDependencies, resolveDynamicPath, } from "./dynamicPath";
|
|
3
|
+
import { onAssignDynamicWatchKeys, observeDynamicProperty, } from "./dynamicPropertyWatch";
|
|
4
|
+
import { getPublisherFromPath } from "./publisherPath";
|
|
5
|
+
/**
|
|
6
|
+
* Catégories de valeurs « ignorables » par le garde `skip`. Chaque catégorie est
|
|
7
|
+
* un prédicat nommé (et non une égalité de valeur), ce qui lève toute ambiguïté
|
|
8
|
+
* entre « valeur » et « motif » (notamment pour l'objet vide).
|
|
9
|
+
*/
|
|
10
|
+
export var Skip;
|
|
11
|
+
(function (Skip) {
|
|
12
|
+
/**
|
|
13
|
+
* `null` ou `undefined`. En pratique un publisher renvoie toujours `null`
|
|
14
|
+
* (jamais `undefined`) car `get()` coerce `undefined → null`.
|
|
15
|
+
*/
|
|
16
|
+
Skip["Nullish"] = "nullish";
|
|
17
|
+
/** Chaîne vide `""`. */
|
|
18
|
+
Skip["EmptyString"] = "emptyString";
|
|
19
|
+
/** Objet sans clé (`{}`), tableau exclu. */
|
|
20
|
+
Skip["EmptyObject"] = "emptyObject";
|
|
21
|
+
/** Tableau vide (`[]`). */
|
|
22
|
+
Skip["EmptyArray"] = "emptyArray";
|
|
23
|
+
})(Skip || (Skip = {}));
|
|
24
|
+
const SKIP_PREDICATES = {
|
|
25
|
+
[Skip.Nullish]: (v) => v === null || v === undefined,
|
|
26
|
+
[Skip.EmptyString]: (v) => v === "",
|
|
27
|
+
[Skip.EmptyObject]: (v) => typeof v === "object" &&
|
|
28
|
+
v !== null &&
|
|
29
|
+
!Array.isArray(v) &&
|
|
30
|
+
Object.keys(v).length === 0,
|
|
31
|
+
[Skip.EmptyArray]: (v) => Array.isArray(v) && v.length === 0,
|
|
32
|
+
};
|
|
33
|
+
/**
|
|
34
|
+
* `true` si `value` appartient à au moins une des catégories `kinds`.
|
|
35
|
+
*/
|
|
36
|
+
export function isSkipped(value, kinds) {
|
|
37
|
+
return kinds.some((kind) => SKIP_PREDICATES[kind](value));
|
|
38
|
+
}
|
|
39
|
+
function shouldDispatch(currentValues, expectedCount, options) {
|
|
40
|
+
// Garde structurelle : toutes les valeurs doivent être définies.
|
|
41
|
+
if (!options.dispatchWhenUndefined) {
|
|
42
|
+
const definedCount = currentValues
|
|
43
|
+
.slice(0, expectedCount)
|
|
44
|
+
.filter((v) => v !== null && v !== undefined).length;
|
|
45
|
+
if (definedCount !== expectedCount)
|
|
46
|
+
return false;
|
|
47
|
+
}
|
|
48
|
+
// Garde de contenu : catégories skip.
|
|
49
|
+
if (options.skip && options.skip.length > 0) {
|
|
50
|
+
for (let i = 0; i < expectedCount; i++) {
|
|
51
|
+
if (isSkipped(currentValues[i], options.skip))
|
|
52
|
+
return false;
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
return true;
|
|
56
|
+
}
|
|
57
|
+
/**
|
|
58
|
+
* @deprecated Utiliser `@handle` à la place.
|
|
59
|
+
*
|
|
60
|
+
* `@onAssign` prend des chemins sous forme de **chaînes** non typées et n'appelle
|
|
61
|
+
* la méthode que lorsque **toutes** les valeurs sont définies. `@handle` offre la
|
|
62
|
+
* même chose en **typé** (via `DataProviderKey`), avec des options explicites :
|
|
63
|
+
*
|
|
64
|
+
* - équivalent direct : `@onAssign("a", "b")` → `@handle(keyA, keyB, { waitForAllDefined: true })`
|
|
65
|
+
* - comportement par défaut de `@handle` : appel à chaque assignation (même `null`/`undefined`)
|
|
66
|
+
* - `skip` pour ignorer des catégories de valeurs (ex. `[Skip.Nullish, Skip.EmptyObject]`)
|
|
67
|
+
*
|
|
68
|
+
* `@onAssign` reste fonctionnel et inchangé le temps de la migration.
|
|
69
|
+
*/
|
|
70
|
+
export function onAssign(...values) {
|
|
71
|
+
return createOnAssign({}, values);
|
|
72
|
+
}
|
|
73
|
+
export function createOnAssign(options, values) {
|
|
74
|
+
const pathConfigs = values.map((path) => {
|
|
75
|
+
const dynamicDependencies = extractDynamicDependencies(path);
|
|
76
|
+
return {
|
|
77
|
+
originalPath: path,
|
|
78
|
+
dynamicDependencies,
|
|
79
|
+
isDynamic: dynamicDependencies.length > 0,
|
|
80
|
+
};
|
|
81
|
+
});
|
|
82
|
+
const pathOptions = {
|
|
83
|
+
skipEmptyPlaceholder: options.skipEmptyPlaceholder,
|
|
84
|
+
};
|
|
85
|
+
return function (target, _propertyKey, descriptor) {
|
|
86
|
+
setSubscribable(target);
|
|
87
|
+
const stateKey = `__onAssign_state_${_propertyKey}__`;
|
|
88
|
+
let callback;
|
|
89
|
+
target.__onConnected__((component) => {
|
|
90
|
+
const state = component[stateKey] ||
|
|
91
|
+
(component[stateKey] = {
|
|
92
|
+
cleanupWatchers: [],
|
|
93
|
+
configurations: [],
|
|
94
|
+
});
|
|
95
|
+
// Nettoyage des watchers et configurations précédentes
|
|
96
|
+
state.cleanupWatchers.forEach((cleanup) => cleanup());
|
|
97
|
+
state.cleanupWatchers = [];
|
|
98
|
+
state.configurations.forEach((conf) => {
|
|
99
|
+
if (conf.unsubscribePublisher) {
|
|
100
|
+
conf.unsubscribePublisher();
|
|
101
|
+
}
|
|
102
|
+
});
|
|
103
|
+
state.configurations = [];
|
|
104
|
+
const onAssignValues = [];
|
|
105
|
+
const confs = [];
|
|
106
|
+
// Initialisation des configurations
|
|
107
|
+
for (let i = 0; i < values.length; i++) {
|
|
108
|
+
const pathConfig = pathConfigs[i];
|
|
109
|
+
const callbacks = new Set();
|
|
110
|
+
const onAssign = (assignedValue) => {
|
|
111
|
+
onAssignValues[i] = assignedValue;
|
|
112
|
+
if (shouldDispatch(onAssignValues, values.length, options)) {
|
|
113
|
+
callbacks.forEach((callback) => callback(...onAssignValues));
|
|
114
|
+
}
|
|
115
|
+
};
|
|
116
|
+
confs.push({
|
|
117
|
+
publisher: null,
|
|
118
|
+
onAssign,
|
|
119
|
+
callbacks,
|
|
120
|
+
unsubscribePublisher: null,
|
|
121
|
+
pathConfig,
|
|
122
|
+
index: i,
|
|
123
|
+
});
|
|
124
|
+
}
|
|
125
|
+
const subscribeToPath = (conf, resolvedPath) => {
|
|
126
|
+
// Désabonnement de l'ancien publisher
|
|
127
|
+
if (conf.unsubscribePublisher) {
|
|
128
|
+
conf.unsubscribePublisher();
|
|
129
|
+
conf.unsubscribePublisher = null;
|
|
130
|
+
}
|
|
131
|
+
// Réinitialiser la valeur pour ce chemin lors du changement
|
|
132
|
+
onAssignValues[conf.index] = null;
|
|
133
|
+
conf.publisher = null;
|
|
134
|
+
if (!resolvedPath) {
|
|
135
|
+
return;
|
|
136
|
+
}
|
|
137
|
+
const publisher = getPublisherFromPath(resolvedPath);
|
|
138
|
+
if (!publisher) {
|
|
139
|
+
return;
|
|
140
|
+
}
|
|
141
|
+
publisher.onAssign(conf.onAssign);
|
|
142
|
+
conf.unsubscribePublisher = () => {
|
|
143
|
+
publisher.offAssign(conf.onAssign);
|
|
144
|
+
if (conf.publisher === publisher) {
|
|
145
|
+
conf.publisher = null;
|
|
146
|
+
}
|
|
147
|
+
};
|
|
148
|
+
conf.publisher = publisher;
|
|
149
|
+
};
|
|
150
|
+
const refreshSubscriptions = () => {
|
|
151
|
+
for (const conf of confs) {
|
|
152
|
+
if (conf.pathConfig.isDynamic) {
|
|
153
|
+
const resolution = resolveDynamicPath(component, conf.pathConfig.originalPath, pathOptions);
|
|
154
|
+
if (!resolution.ready) {
|
|
155
|
+
subscribeToPath(conf, null);
|
|
156
|
+
continue;
|
|
157
|
+
}
|
|
158
|
+
subscribeToPath(conf, resolution.path);
|
|
159
|
+
}
|
|
160
|
+
else {
|
|
161
|
+
subscribeToPath(conf, conf.pathConfig.originalPath);
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
};
|
|
165
|
+
// Enregistrement des watchers pour les chemins dynamiques
|
|
166
|
+
for (const conf of confs) {
|
|
167
|
+
if (conf.pathConfig.isDynamic) {
|
|
168
|
+
for (const dependency of conf.pathConfig.dynamicDependencies) {
|
|
169
|
+
const unsubscribe = observeDynamicProperty(onAssignDynamicWatchKeys.watcherStore, onAssignDynamicWatchKeys.hooked, component, dependency, () => refreshSubscriptions());
|
|
170
|
+
state.cleanupWatchers.push(unsubscribe);
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
// Initialisation du callback
|
|
175
|
+
callback = descriptor.value.bind(component);
|
|
176
|
+
for (const conf of confs) {
|
|
177
|
+
conf.callbacks.add(callback);
|
|
178
|
+
}
|
|
179
|
+
// Initialisation des abonnements
|
|
180
|
+
refreshSubscriptions();
|
|
181
|
+
state.configurations = confs;
|
|
182
|
+
});
|
|
183
|
+
target.__onDisconnected__((component) => {
|
|
184
|
+
const state = component[stateKey];
|
|
185
|
+
if (!state)
|
|
186
|
+
return;
|
|
187
|
+
state.cleanupWatchers.forEach((cleanup) => cleanup());
|
|
188
|
+
state.cleanupWatchers = [];
|
|
189
|
+
state.configurations.forEach((conf) => {
|
|
190
|
+
if (conf.unsubscribePublisher) {
|
|
191
|
+
conf.unsubscribePublisher();
|
|
192
|
+
}
|
|
193
|
+
conf.callbacks.delete(callback);
|
|
194
|
+
});
|
|
195
|
+
state.configurations = [];
|
|
196
|
+
});
|
|
197
|
+
};
|
|
198
|
+
}
|
|
199
|
+
//# sourceMappingURL=onAssign.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"onAssign.js","sourceRoot":"","sources":["../../../../../src/core/decorators/subscriber/onAssign.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
import { setSubscribable } from "./common";
|
|
2
|
+
import { extractDynamicDependencies, resolveDynamicPath, } from "./dynamicPath";
|
|
3
|
+
import { publishDynamicWatchKeys, observeDynamicProperty, } from "./dynamicPropertyWatch";
|
|
4
|
+
import { getPublisherFromPath } from "./publisherPath";
|
|
5
|
+
/**
|
|
6
|
+
* Publishes property writes to a publisher path. Inverse of @subscribe.
|
|
7
|
+
* When the property is set, the value is written to the publisher (reflect-only, no subscription).
|
|
8
|
+
* The decorated property is typed as `T` (or optional / `| null` / `| undefined` for Lit / TS 5).
|
|
9
|
+
* Supports dynamic paths: use placeholders like "users.${userIndex}.email" in the DataProviderKey.
|
|
10
|
+
*
|
|
11
|
+
* @example
|
|
12
|
+
* const formKey = new DataProviderKey<FormData>("formData");
|
|
13
|
+
* @publish(formKey.email)
|
|
14
|
+
* @state()
|
|
15
|
+
* email = "";
|
|
16
|
+
*
|
|
17
|
+
* // Dynamic path + hôte typé via le 2ᵉ générique de la clé :
|
|
18
|
+
* @publish(new DataProviderKey<string, { userIndex: number }>("users.${userIndex}.email"))
|
|
19
|
+
* email = "";
|
|
20
|
+
*/
|
|
21
|
+
export function publish(key, options) {
|
|
22
|
+
const path = key.path;
|
|
23
|
+
const pathOptions = {
|
|
24
|
+
skipEmptyPlaceholder: options?.skipEmptyPlaceholder,
|
|
25
|
+
};
|
|
26
|
+
const dynamicDependencies = extractDynamicDependencies(path);
|
|
27
|
+
return function (target, propertyKey) {
|
|
28
|
+
setSubscribable(target);
|
|
29
|
+
const publisherKey = `__publish_${propertyKey}_publisher__`;
|
|
30
|
+
const internalValueKey = `__publish_${propertyKey}_value__`;
|
|
31
|
+
const existingDescriptor = Object.getOwnPropertyDescriptor(target, propertyKey);
|
|
32
|
+
const initialValue = existingDescriptor && !existingDescriptor.get && !existingDescriptor.set
|
|
33
|
+
? existingDescriptor.value
|
|
34
|
+
: undefined;
|
|
35
|
+
Object.defineProperty(target, propertyKey, {
|
|
36
|
+
get() {
|
|
37
|
+
if (existingDescriptor?.get) {
|
|
38
|
+
return existingDescriptor.get.call(this);
|
|
39
|
+
}
|
|
40
|
+
if (!Object.prototype.hasOwnProperty.call(this, internalValueKey) &&
|
|
41
|
+
initialValue !== undefined) {
|
|
42
|
+
this[internalValueKey] = initialValue;
|
|
43
|
+
}
|
|
44
|
+
return this[internalValueKey];
|
|
45
|
+
},
|
|
46
|
+
set(newValue) {
|
|
47
|
+
if (existingDescriptor?.set) {
|
|
48
|
+
existingDescriptor.set.call(this, newValue);
|
|
49
|
+
}
|
|
50
|
+
else {
|
|
51
|
+
this[internalValueKey] = newValue;
|
|
52
|
+
}
|
|
53
|
+
const publisher = this[publisherKey];
|
|
54
|
+
if (publisher) {
|
|
55
|
+
publisher.set(newValue);
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
enumerable: existingDescriptor?.enumerable ?? true,
|
|
59
|
+
configurable: existingDescriptor?.configurable ?? true,
|
|
60
|
+
});
|
|
61
|
+
target.__onConnected__((component) => {
|
|
62
|
+
const comp = component;
|
|
63
|
+
const stateKey = `__publish_state_${propertyKey}`;
|
|
64
|
+
const state = comp[stateKey] ||
|
|
65
|
+
(comp[stateKey] = {
|
|
66
|
+
cleanupWatchers: [],
|
|
67
|
+
});
|
|
68
|
+
const updatePublisher = () => {
|
|
69
|
+
let resolvedPath;
|
|
70
|
+
if (dynamicDependencies.length) {
|
|
71
|
+
const resolution = resolveDynamicPath(component, path, pathOptions);
|
|
72
|
+
resolvedPath = resolution.ready ? resolution.path : null;
|
|
73
|
+
}
|
|
74
|
+
else {
|
|
75
|
+
resolvedPath = path;
|
|
76
|
+
}
|
|
77
|
+
const publisher = resolvedPath
|
|
78
|
+
? getPublisherFromPath(resolvedPath)
|
|
79
|
+
: undefined;
|
|
80
|
+
comp[publisherKey] = publisher ?? null;
|
|
81
|
+
if (publisher && propertyKey in component) {
|
|
82
|
+
const currentValue = comp[propertyKey];
|
|
83
|
+
if (currentValue !== undefined) {
|
|
84
|
+
publisher.set(currentValue);
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
};
|
|
88
|
+
state.cleanupWatchers.forEach((cleanup) => cleanup());
|
|
89
|
+
state.cleanupWatchers = [];
|
|
90
|
+
if (dynamicDependencies.length) {
|
|
91
|
+
for (const dependency of dynamicDependencies) {
|
|
92
|
+
state.cleanupWatchers.push(observeDynamicProperty(publishDynamicWatchKeys.watcherStore, publishDynamicWatchKeys.hooked, comp, dependency, updatePublisher));
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
updatePublisher();
|
|
96
|
+
});
|
|
97
|
+
target.__onDisconnected__((component) => {
|
|
98
|
+
const comp = component;
|
|
99
|
+
const stateKey = `__publish_state_${propertyKey}`;
|
|
100
|
+
const state = comp[stateKey];
|
|
101
|
+
if (state?.cleanupWatchers) {
|
|
102
|
+
state.cleanupWatchers.forEach((cleanup) => cleanup());
|
|
103
|
+
}
|
|
104
|
+
comp[publisherKey] = undefined;
|
|
105
|
+
});
|
|
106
|
+
};
|
|
107
|
+
}
|
|
108
|
+
//# sourceMappingURL=publish.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"publish.js","sourceRoot":"","sources":["../../../../../src/core/decorators/subscriber/publish.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Objects } from "@supersoniks/concorde/utils";
|
|
2
|
+
import { PublisherManager } from "../../utils/PublisherProxy";
|
|
3
|
+
export function getPublisherFromPath(path) {
|
|
4
|
+
const segments = path.split(".").filter((segment) => segment.length > 0);
|
|
5
|
+
if (segments.length === 0)
|
|
6
|
+
return null;
|
|
7
|
+
const dataProvider = segments.shift() || "";
|
|
8
|
+
if (!dataProvider)
|
|
9
|
+
return null;
|
|
10
|
+
let publisher = PublisherManager.get(dataProvider);
|
|
11
|
+
if (!publisher)
|
|
12
|
+
return null;
|
|
13
|
+
publisher = Objects.traverse(publisher, segments);
|
|
14
|
+
return publisher;
|
|
15
|
+
}
|
|
16
|
+
//# sourceMappingURL=publisherPath.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"publisherPath.js","sourceRoot":"","sources":["../../../../../src/core/decorators/subscriber/publisherPath.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,6BAA6B,CAAC;AACtD,OAAqB,EAAE,gBAAgB,EAAE,MAAM,4BAA4B,CAAC;AAE5E,MAAM,UAAU,oBAAoB,CAAC,IAAY;IAC/C,MAAM,QAAQ,GAAG,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,MAAM,CAAC,CAAC,OAAO,EAAE,EAAE,CAAC,OAAO,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;IACzE,IAAI,QAAQ,CAAC,MAAM,KAAK,CAAC;QAAE,OAAO,IAAI,CAAC;IACvC,MAAM,YAAY,GAAG,QAAQ,CAAC,KAAK,EAAE,IAAI,EAAE,CAAC;IAC5C,IAAI,CAAC,YAAY;QAAE,OAAO,IAAI,CAAC;IAC/B,IAAI,SAAS,GAAG,gBAAgB,CAAC,GAAG,CAAC,YAAY,CAAC,CAAC;IACnD,IAAI,CAAC,SAAS;QAAE,OAAO,IAAI,CAAC;IAC5B,SAAS,GAAG,OAAO,CAAC,QAAQ,CAAC,SAAS,EAAE,QAAQ,CAAC,CAAC;IAClD,OAAO,SAAgC,CAAC;AAC1C,CAAC"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { bind } from "./bind";
|
|
2
|
+
/**
|
|
3
|
+
* Read-only subscription to a publisher path via DataProviderKey<T>. No reflect.
|
|
4
|
+
* The decorated property is typed as `T` (or optional / `| null` / `| undefined` for Lit / TS 5).
|
|
5
|
+
* Supports dynamic paths: use placeholders like "users.${userIndex}" in the DataProviderKey.
|
|
6
|
+
*
|
|
7
|
+
* @example
|
|
8
|
+
* const dataKey = new DataProviderKey<Data>("data");
|
|
9
|
+
* @subscribe(dataKey.count)
|
|
10
|
+
* @state()
|
|
11
|
+
* count: number;
|
|
12
|
+
*
|
|
13
|
+
* // Dynamic path:
|
|
14
|
+
* @subscribe(new DataProviderKey<User>("users.${userIndex}"))
|
|
15
|
+
* user: User | null;
|
|
16
|
+
*/
|
|
17
|
+
export function subscribe(key) {
|
|
18
|
+
return bind(key);
|
|
19
|
+
}
|
|
20
|
+
//# sourceMappingURL=subscribe.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"subscribe.js","sourceRoot":"","sources":["../../../../../src/core/decorators/subscriber/subscribe.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC;AAE9B;;;;;;;;;;;;;;GAcG;AACH,MAAM,UAAU,SAAS,CACvB,GAA0B;IAK1B,OAAO,IAAI,CAAC,GAAG,CAGN,CAAC;AACZ,CAAC"}
|
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
import { AsyncDirective } from "lit/async-directive.js";
|
|
2
|
+
import { directive } from "lit/directive.js";
|
|
3
|
+
import { noChange } from "lit";
|
|
4
|
+
import { extractDynamicDependencies, hasPath, resolveDynamicPath, } from "../decorators/subscriber/dynamicPath";
|
|
5
|
+
import { bindDynamicWatchKeys, observeDynamicProperty, } from "../decorators/subscriber/dynamicPropertyWatch";
|
|
6
|
+
import { getObservables, get as pubGet, set as pubSet, dataProvider as pubDataProvider, dp as pubDp, } from "../utils/PublisherProxy";
|
|
7
|
+
class ObserveDirective extends AsyncDirective {
|
|
8
|
+
/* eslint-disable @typescript-eslint/no-explicit-any*/
|
|
9
|
+
constructor(partInfo) {
|
|
10
|
+
super(partInfo);
|
|
11
|
+
this.observables = new Set();
|
|
12
|
+
this.cleanupWatchers = [];
|
|
13
|
+
this.onAssign = (v) => {
|
|
14
|
+
this.setValue(v);
|
|
15
|
+
};
|
|
16
|
+
this.node = partInfo.options?.host;
|
|
17
|
+
}
|
|
18
|
+
/* eslint-enable @typescript-eslint/no-explicit-any*/
|
|
19
|
+
teardownWatchers() {
|
|
20
|
+
this.cleanupWatchers.forEach((cleanup) => cleanup());
|
|
21
|
+
this.cleanupWatchers = [];
|
|
22
|
+
}
|
|
23
|
+
normalizeInput(input) {
|
|
24
|
+
return hasPath(input) ? input.path : input;
|
|
25
|
+
}
|
|
26
|
+
render(input) {
|
|
27
|
+
const path = this.normalizeInput(input);
|
|
28
|
+
const pathChanged = this.pathTemplate !== path;
|
|
29
|
+
if (pathChanged) {
|
|
30
|
+
this.pathTemplate = path;
|
|
31
|
+
this.teardownWatchers();
|
|
32
|
+
}
|
|
33
|
+
if (pathChanged || !this.resolvedPath) {
|
|
34
|
+
queueMicrotask(() => {
|
|
35
|
+
if (!this.isConnected || !this.pathTemplate)
|
|
36
|
+
return;
|
|
37
|
+
this.setupSubscription();
|
|
38
|
+
});
|
|
39
|
+
}
|
|
40
|
+
return noChange;
|
|
41
|
+
}
|
|
42
|
+
setupSubscription() {
|
|
43
|
+
const host = this.node;
|
|
44
|
+
const path = this.pathTemplate;
|
|
45
|
+
if (!host || !path)
|
|
46
|
+
return;
|
|
47
|
+
this.teardownWatchers();
|
|
48
|
+
const dependencies = extractDynamicDependencies(path);
|
|
49
|
+
if (dependencies.length > 0) {
|
|
50
|
+
for (const dependency of dependencies) {
|
|
51
|
+
this.cleanupWatchers.push(observeDynamicProperty(bindDynamicWatchKeys.watcherStore, bindDynamicWatchKeys.hooked, host, dependency, () => this.refreshSubscription()));
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
this.refreshSubscription();
|
|
55
|
+
}
|
|
56
|
+
refreshSubscription() {
|
|
57
|
+
const host = this.node;
|
|
58
|
+
const path = this.pathTemplate;
|
|
59
|
+
if (!path)
|
|
60
|
+
return;
|
|
61
|
+
const isDynamic = extractDynamicDependencies(path).length > 0;
|
|
62
|
+
let resolved = path;
|
|
63
|
+
if (isDynamic) {
|
|
64
|
+
if (!host) {
|
|
65
|
+
resolved = null;
|
|
66
|
+
}
|
|
67
|
+
else {
|
|
68
|
+
const resolution = resolveDynamicPath(host, path);
|
|
69
|
+
resolved = resolution.ready ? resolution.path : null;
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
if (resolved === this.resolvedPath)
|
|
73
|
+
return;
|
|
74
|
+
if (!resolved) {
|
|
75
|
+
this.unsubscribe();
|
|
76
|
+
this.resolvedPath = undefined;
|
|
77
|
+
this.setValue(undefined);
|
|
78
|
+
return;
|
|
79
|
+
}
|
|
80
|
+
this.resolvedPath = resolved;
|
|
81
|
+
this.subscribe(resolved);
|
|
82
|
+
}
|
|
83
|
+
subscribe(observable) {
|
|
84
|
+
this.unsubscribe();
|
|
85
|
+
this.onAssign = (v) => {
|
|
86
|
+
this.setValue(v);
|
|
87
|
+
};
|
|
88
|
+
this.observables = getObservables(observable);
|
|
89
|
+
this.observables.forEach((publisher) => {
|
|
90
|
+
publisher.onAssign(this.onAssign);
|
|
91
|
+
});
|
|
92
|
+
}
|
|
93
|
+
unsubscribe() {
|
|
94
|
+
this.observables.forEach((publisher) => publisher.offAssign(this.onAssign));
|
|
95
|
+
this.observables.clear();
|
|
96
|
+
}
|
|
97
|
+
disconnected() {
|
|
98
|
+
this.teardownWatchers();
|
|
99
|
+
this.unsubscribe();
|
|
100
|
+
this.resolvedPath = undefined;
|
|
101
|
+
}
|
|
102
|
+
reconnected() {
|
|
103
|
+
if (!this.pathTemplate)
|
|
104
|
+
return;
|
|
105
|
+
this.setupSubscription();
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
const dir = directive(ObserveDirective);
|
|
109
|
+
export const subscribe = dir;
|
|
110
|
+
export const sub = dir;
|
|
111
|
+
/**
|
|
112
|
+
* @deprecated @see {@link "/src/core/utils/PublisherProxy.ts#get"}
|
|
113
|
+
*/
|
|
114
|
+
export const get = pubGet;
|
|
115
|
+
/**
|
|
116
|
+
* @deprecated @see {@link "/src/core/utils/PublisherProxy.ts#dataProvider"}
|
|
117
|
+
*/
|
|
118
|
+
export const dataProvider = pubDataProvider;
|
|
119
|
+
/**
|
|
120
|
+
* @deprecated @see {@link "/src/core/utils/PublisherProxy.ts#dp"}
|
|
121
|
+
*/
|
|
122
|
+
export const dp = pubDp;
|
|
123
|
+
/**
|
|
124
|
+
* @deprecated @see {@link "/src/core/utils/PublisherProxy.ts#set"}
|
|
125
|
+
*/
|
|
126
|
+
export const set = pubSet;
|
|
127
|
+
//# sourceMappingURL=DataProvider.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DataProvider.js","sourceRoot":"","sources":["../../../../src/core/directives/DataProvider.ts"],"names":[],"mappings":"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"}
|