taon 18.0.18 → 18.0.19
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/assets/shared/shared_folder_info.txt +1 -1
- package/browser/esm2022/lib/base-classes/base-injector.mjs +8 -1
- package/browser/esm2022/lib/create-context.mjs +5 -3
- package/browser/esm2022/lib/decorators/http/http-decorators.mjs +3 -1
- package/browser/esm2022/lib/endpoint-context.mjs +35 -9
- package/browser/esm2022/lib/index.mjs +2 -1
- package/browser/esm2022/lib/ui/directives/index.mjs +6 -0
- package/browser/esm2022/lib/ui/directives/safe.pipe.mjs +43 -0
- package/browser/esm2022/lib/ui/directives/taon-inject-html.directive.mjs +24 -0
- package/browser/esm2022/lib/ui/directives/taon-long-press.directive.mjs +120 -0
- package/browser/esm2022/lib/ui/index.mjs +12 -0
- package/browser/esm2022/lib/ui/taon-admin-mode-configuration/components/taon-admin-edit-mode/index.mjs +5 -0
- package/browser/esm2022/lib/ui/taon-admin-mode-configuration/components/taon-admin-edit-mode/taon-admin-edit-mode.component.mjs +115 -0
- package/browser/esm2022/lib/ui/taon-admin-mode-configuration/components/taon-admin-edit-mode/taon-admin-edit-mode.module.mjs +50 -0
- package/browser/esm2022/lib/ui/taon-admin-mode-configuration/components/taon-file-general-opt/index.mjs +5 -0
- package/browser/esm2022/lib/ui/taon-admin-mode-configuration/components/taon-file-general-opt/taon-file-general-opt.component.mjs +61 -0
- package/browser/esm2022/lib/ui/taon-admin-mode-configuration/components/taon-file-general-opt/taon-file-general-opt.module.mjs +21 -0
- package/browser/esm2022/lib/ui/taon-admin-mode-configuration/index.mjs +6 -0
- package/browser/esm2022/lib/ui/taon-admin-mode-configuration/taon-admin-mode-configuration.component.mjs +14 -3
- package/browser/esm2022/lib/ui/taon-admin-mode-configuration/taon-admin-mode-configuration.module.mjs +54 -0
- package/browser/esm2022/lib/ui/taon-full-material.module.mjs +179 -0
- package/browser/esm2022/lib/ui/taon-github-fork-me-corner/index.mjs +5 -0
- package/browser/esm2022/lib/ui/taon-github-fork-me-corner/taon-github-fork-me-corner.component.mjs +18 -0
- package/browser/esm2022/lib/ui/taon-github-fork-me-corner/taon-github-fork-me-corner.module.mjs +21 -0
- package/browser/esm2022/lib/ui/taon-notifications/index.mjs +7 -0
- package/browser/esm2022/lib/ui/taon-notifications/taon-notifications.component.mjs +25 -0
- package/browser/esm2022/lib/ui/taon-notifications/taon-notifications.models.mjs +5 -0
- package/browser/esm2022/lib/ui/taon-notifications/taon-notifications.module.mjs +21 -0
- package/browser/esm2022/lib/ui/taon-notifications/taon-notifications.service.mjs +48 -0
- package/browser/esm2022/lib/ui/taon-progress-bar/index.mjs +5 -0
- package/browser/esm2022/lib/ui/taon-progress-bar/taon-progress-bar.component.mjs +98 -0
- package/browser/esm2022/lib/ui/taon-progress-bar/taon-progress-bar.module.mjs +22 -0
- package/browser/esm2022/lib/ui/taon-session-passcode/index.mjs +4 -0
- package/browser/esm2022/lib/ui/taon-session-passcode/taon-session-passcode.component.mjs +120 -0
- package/browser/esm2022/lib/ui/taon-table/index.mjs +5 -0
- package/browser/esm2022/lib/ui/taon-table/taon-table.component.mjs +161 -0
- package/browser/esm2022/lib/ui/taon-table/taon-table.module.mjs +57 -0
- package/browser/fesm2022/taon.mjs +1445 -75
- package/browser/fesm2022/taon.mjs.map +1 -1
- package/browser/lib/base-classes/base-context.d.ts +4 -1
- package/browser/lib/base-classes/base-injector.d.ts +5 -0
- package/browser/lib/base-classes/base.d.ts +4 -1
- package/browser/lib/create-context.d.ts +4 -1
- package/browser/lib/decorators/http/http-decorators.d.ts +2 -0
- package/browser/lib/endpoint-context.d.ts +3 -2
- package/browser/lib/index.d.ts +13 -3
- package/browser/lib/ui/directives/index.d.ts +4 -0
- package/browser/lib/ui/directives/safe.pipe.d.ts +11 -0
- package/browser/lib/ui/directives/taon-inject-html.directive.d.ts +10 -0
- package/browser/lib/ui/directives/taon-long-press.directive.d.ts +26 -0
- package/browser/lib/ui/index.d.ts +10 -0
- package/browser/lib/ui/taon-admin-mode-configuration/components/taon-admin-edit-mode/index.d.ts +3 -0
- package/browser/lib/ui/taon-admin-mode-configuration/components/taon-admin-edit-mode/taon-admin-edit-mode.component.d.ts +33 -0
- package/browser/lib/ui/taon-admin-mode-configuration/components/taon-admin-edit-mode/taon-admin-edit-mode.module.d.ts +16 -0
- package/browser/lib/ui/taon-admin-mode-configuration/components/taon-file-general-opt/index.d.ts +3 -0
- package/browser/lib/ui/taon-admin-mode-configuration/components/taon-file-general-opt/taon-file-general-opt.component.d.ts +17 -0
- package/browser/lib/ui/taon-admin-mode-configuration/components/taon-file-general-opt/taon-file-general-opt.module.d.ts +10 -0
- package/browser/lib/ui/taon-admin-mode-configuration/index.d.ts +4 -0
- package/browser/lib/ui/taon-admin-mode-configuration/taon-admin-mode-configuration.module.d.ts +17 -0
- package/browser/lib/ui/taon-full-material.module.d.ts +47 -0
- package/browser/lib/ui/taon-github-fork-me-corner/index.d.ts +3 -0
- package/browser/lib/ui/taon-github-fork-me-corner/taon-github-fork-me-corner.component.d.ts +7 -0
- package/browser/lib/ui/taon-github-fork-me-corner/taon-github-fork-me-corner.module.d.ts +9 -0
- package/browser/lib/ui/taon-notifications/index.d.ts +5 -0
- package/browser/lib/ui/taon-notifications/taon-notifications.component.d.ts +13 -0
- package/browser/lib/ui/taon-notifications/taon-notifications.models.d.ts +7 -0
- package/browser/lib/ui/taon-notifications/taon-notifications.module.d.ts +8 -0
- package/browser/lib/ui/taon-notifications/taon-notifications.service.d.ts +15 -0
- package/browser/lib/ui/taon-progress-bar/index.d.ts +3 -0
- package/browser/lib/ui/taon-progress-bar/taon-progress-bar.component.d.ts +19 -0
- package/browser/lib/ui/taon-progress-bar/taon-progress-bar.module.d.ts +10 -0
- package/browser/lib/ui/taon-session-passcode/index.d.ts +2 -0
- package/browser/lib/ui/taon-session-passcode/taon-session-passcode.component.d.ts +39 -0
- package/browser/lib/ui/taon-table/index.d.ts +3 -0
- package/browser/lib/ui/taon-table/taon-table.component.d.ts +37 -0
- package/browser/lib/ui/taon-table/taon-table.module.d.ts +17 -0
- package/client/esm2022/lib/base-classes/base-injector.mjs +8 -1
- package/client/esm2022/lib/create-context.mjs +5 -3
- package/client/esm2022/lib/decorators/http/http-decorators.mjs +3 -1
- package/client/esm2022/lib/endpoint-context.mjs +35 -9
- package/client/esm2022/lib/index.mjs +2 -1
- package/client/esm2022/lib/ui/directives/index.mjs +6 -0
- package/client/esm2022/lib/ui/directives/safe.pipe.mjs +43 -0
- package/client/esm2022/lib/ui/directives/taon-inject-html.directive.mjs +24 -0
- package/client/esm2022/lib/ui/directives/taon-long-press.directive.mjs +120 -0
- package/client/esm2022/lib/ui/index.mjs +12 -0
- package/client/esm2022/lib/ui/taon-admin-mode-configuration/components/taon-admin-edit-mode/index.mjs +5 -0
- package/client/esm2022/lib/ui/taon-admin-mode-configuration/components/taon-admin-edit-mode/taon-admin-edit-mode.component.mjs +115 -0
- package/client/esm2022/lib/ui/taon-admin-mode-configuration/components/taon-admin-edit-mode/taon-admin-edit-mode.module.mjs +50 -0
- package/client/esm2022/lib/ui/taon-admin-mode-configuration/components/taon-file-general-opt/index.mjs +5 -0
- package/client/esm2022/lib/ui/taon-admin-mode-configuration/components/taon-file-general-opt/taon-file-general-opt.component.mjs +61 -0
- package/client/esm2022/lib/ui/taon-admin-mode-configuration/components/taon-file-general-opt/taon-file-general-opt.module.mjs +21 -0
- package/client/esm2022/lib/ui/taon-admin-mode-configuration/index.mjs +6 -0
- package/client/esm2022/lib/ui/taon-admin-mode-configuration/taon-admin-mode-configuration.component.mjs +14 -3
- package/client/esm2022/lib/ui/taon-admin-mode-configuration/taon-admin-mode-configuration.module.mjs +54 -0
- package/client/esm2022/lib/ui/taon-full-material.module.mjs +179 -0
- package/client/esm2022/lib/ui/taon-github-fork-me-corner/index.mjs +5 -0
- package/client/esm2022/lib/ui/taon-github-fork-me-corner/taon-github-fork-me-corner.component.mjs +18 -0
- package/client/esm2022/lib/ui/taon-github-fork-me-corner/taon-github-fork-me-corner.module.mjs +21 -0
- package/client/esm2022/lib/ui/taon-notifications/index.mjs +7 -0
- package/client/esm2022/lib/ui/taon-notifications/taon-notifications.component.mjs +25 -0
- package/client/esm2022/lib/ui/taon-notifications/taon-notifications.models.mjs +5 -0
- package/client/esm2022/lib/ui/taon-notifications/taon-notifications.module.mjs +21 -0
- package/client/esm2022/lib/ui/taon-notifications/taon-notifications.service.mjs +48 -0
- package/client/esm2022/lib/ui/taon-progress-bar/index.mjs +5 -0
- package/client/esm2022/lib/ui/taon-progress-bar/taon-progress-bar.component.mjs +98 -0
- package/client/esm2022/lib/ui/taon-progress-bar/taon-progress-bar.module.mjs +22 -0
- package/client/esm2022/lib/ui/taon-session-passcode/index.mjs +4 -0
- package/client/esm2022/lib/ui/taon-session-passcode/taon-session-passcode.component.mjs +120 -0
- package/client/esm2022/lib/ui/taon-table/index.mjs +5 -0
- package/client/esm2022/lib/ui/taon-table/taon-table.component.mjs +161 -0
- package/client/esm2022/lib/ui/taon-table/taon-table.module.mjs +57 -0
- package/client/fesm2022/taon.mjs +1445 -75
- package/client/fesm2022/taon.mjs.map +1 -1
- package/client/lib/base-classes/base-context.d.ts +4 -1
- package/client/lib/base-classes/base-injector.d.ts +5 -0
- package/client/lib/base-classes/base.d.ts +4 -1
- package/client/lib/create-context.d.ts +4 -1
- package/client/lib/decorators/http/http-decorators.d.ts +2 -0
- package/client/lib/endpoint-context.d.ts +3 -2
- package/client/lib/index.d.ts +13 -3
- package/client/lib/ui/directives/index.d.ts +4 -0
- package/client/lib/ui/directives/safe.pipe.d.ts +11 -0
- package/client/lib/ui/directives/taon-inject-html.directive.d.ts +10 -0
- package/client/lib/ui/directives/taon-long-press.directive.d.ts +26 -0
- package/client/lib/ui/index.d.ts +10 -0
- package/client/lib/ui/taon-admin-mode-configuration/components/taon-admin-edit-mode/index.d.ts +3 -0
- package/client/lib/ui/taon-admin-mode-configuration/components/taon-admin-edit-mode/taon-admin-edit-mode.component.d.ts +33 -0
- package/client/lib/ui/taon-admin-mode-configuration/components/taon-admin-edit-mode/taon-admin-edit-mode.module.d.ts +16 -0
- package/client/lib/ui/taon-admin-mode-configuration/components/taon-file-general-opt/index.d.ts +3 -0
- package/client/lib/ui/taon-admin-mode-configuration/components/taon-file-general-opt/taon-file-general-opt.component.d.ts +17 -0
- package/client/lib/ui/taon-admin-mode-configuration/components/taon-file-general-opt/taon-file-general-opt.module.d.ts +10 -0
- package/client/lib/ui/taon-admin-mode-configuration/index.d.ts +4 -0
- package/client/lib/ui/taon-admin-mode-configuration/taon-admin-mode-configuration.module.d.ts +17 -0
- package/client/lib/ui/taon-full-material.module.d.ts +47 -0
- package/client/lib/ui/taon-github-fork-me-corner/index.d.ts +3 -0
- package/client/lib/ui/taon-github-fork-me-corner/taon-github-fork-me-corner.component.d.ts +7 -0
- package/client/lib/ui/taon-github-fork-me-corner/taon-github-fork-me-corner.module.d.ts +9 -0
- package/client/lib/ui/taon-notifications/index.d.ts +5 -0
- package/client/lib/ui/taon-notifications/taon-notifications.component.d.ts +13 -0
- package/client/lib/ui/taon-notifications/taon-notifications.models.d.ts +7 -0
- package/client/lib/ui/taon-notifications/taon-notifications.module.d.ts +8 -0
- package/client/lib/ui/taon-notifications/taon-notifications.service.d.ts +15 -0
- package/client/lib/ui/taon-progress-bar/index.d.ts +3 -0
- package/client/lib/ui/taon-progress-bar/taon-progress-bar.component.d.ts +19 -0
- package/client/lib/ui/taon-progress-bar/taon-progress-bar.module.d.ts +10 -0
- package/client/lib/ui/taon-session-passcode/index.d.ts +2 -0
- package/client/lib/ui/taon-session-passcode/taon-session-passcode.component.d.ts +39 -0
- package/client/lib/ui/taon-table/index.d.ts +3 -0
- package/client/lib/ui/taon-table/taon-table.component.d.ts +37 -0
- package/client/lib/ui/taon-table/taon-table.module.d.ts +17 -0
- package/lib/base-classes/base-context.d.ts +4 -1
- package/lib/base-classes/base-injector.d.ts +5 -0
- package/lib/base-classes/base-injector.js +11 -0
- package/lib/base-classes/base-injector.js.map +1 -1
- package/lib/base-classes/base.d.ts +4 -1
- package/lib/create-context.d.ts +4 -1
- package/lib/create-context.js +2 -2
- package/lib/create-context.js.map +1 -1
- package/lib/decorators/http/http-decorators.d.ts +3 -1
- package/lib/decorators/http/http-decorators.js +2 -0
- package/lib/decorators/http/http-decorators.js.map +1 -1
- package/lib/endpoint-context.d.ts +3 -2
- package/lib/endpoint-context.js +136 -97
- package/lib/endpoint-context.js.map +1 -1
- package/lib/index.d.ts +13 -3
- package/lib/ui/directives/index.d.ts +3 -4
- package/lib/ui/directives/index.js +2 -2
- package/lib/ui/index.d.ts +9 -0
- package/lib/ui/index.js +5 -0
- package/lib/ui/index.js.map +1 -0
- package/lib/ui/taon-admin-mode-configuration/components/taon-admin-edit-mode/index.js +2 -2
- package/lib/ui/taon-admin-mode-configuration/components/taon-admin-edit-mode/taon-admin-edit-mode.component.d.ts +3 -5
- package/lib/ui/taon-admin-mode-configuration/components/taon-db-admin/index.js +2 -2
- package/lib/ui/taon-admin-mode-configuration/components/taon-db-admin/taon-db-admin.component.d.ts +2 -3
- package/lib/ui/taon-admin-mode-configuration/components/taon-file-general-opt/index.js +2 -2
- package/lib/ui/taon-admin-mode-configuration/components/taon-file-general-opt/taon-file-general-opt.component.d.ts +1 -2
- package/lib/ui/taon-admin-mode-configuration/index.d.ts +0 -1
- package/lib/ui/taon-admin-mode-configuration/index.js +2 -2
- package/lib/ui/taon-github-fork-me-corner/index.js +2 -2
- package/lib/ui/taon-github-fork-me-ribbon/index.js +2 -2
- package/lib/ui/taon-notifications/taon-notifications.models.js +2 -2
- package/lib/ui/taon-progress-bar/index.js +2 -2
- package/lib/ui/taon-progress-bar/taon-progress-bar.component.d.ts +1 -0
- package/lib/ui/taon-session-passcode/index.js +2 -2
- package/lib/ui/taon-table/index.d.ts +2 -0
- package/lib/ui/taon-table/index.js +5 -0
- package/lib/ui/taon-table/index.js.map +1 -0
- package/lib/ui/taon-table/taon-table.component.d.ts +33 -0
- package/lib/ui/taon-table/taon-table.module.d.ts +2 -0
- package/package.json +7 -7
- package/tmp-environment.json +30 -29
- package/websql/esm2022/lib/base-classes/base-injector.mjs +8 -1
- package/websql/esm2022/lib/create-context.mjs +5 -3
- package/websql/esm2022/lib/decorators/http/http-decorators.mjs +3 -1
- package/websql/esm2022/lib/endpoint-context.mjs +35 -9
- package/websql/esm2022/lib/index.mjs +2 -1
- package/websql/esm2022/lib/ui/directives/index.mjs +6 -0
- package/websql/esm2022/lib/ui/directives/safe.pipe.mjs +43 -0
- package/websql/esm2022/lib/ui/directives/taon-inject-html.directive.mjs +24 -0
- package/websql/esm2022/lib/ui/directives/taon-long-press.directive.mjs +120 -0
- package/websql/esm2022/lib/ui/index.mjs +12 -0
- package/websql/esm2022/lib/ui/taon-admin-mode-configuration/components/taon-admin-edit-mode/index.mjs +5 -0
- package/websql/esm2022/lib/ui/taon-admin-mode-configuration/components/taon-admin-edit-mode/taon-admin-edit-mode.component.mjs +115 -0
- package/websql/esm2022/lib/ui/taon-admin-mode-configuration/components/taon-admin-edit-mode/taon-admin-edit-mode.module.mjs +50 -0
- package/websql/esm2022/lib/ui/taon-admin-mode-configuration/components/taon-file-general-opt/index.mjs +5 -0
- package/websql/esm2022/lib/ui/taon-admin-mode-configuration/components/taon-file-general-opt/taon-file-general-opt.component.mjs +61 -0
- package/websql/esm2022/lib/ui/taon-admin-mode-configuration/components/taon-file-general-opt/taon-file-general-opt.module.mjs +21 -0
- package/websql/esm2022/lib/ui/taon-admin-mode-configuration/index.mjs +6 -0
- package/websql/esm2022/lib/ui/taon-admin-mode-configuration/taon-admin-mode-configuration.component.mjs +14 -3
- package/websql/esm2022/lib/ui/taon-admin-mode-configuration/taon-admin-mode-configuration.module.mjs +54 -0
- package/websql/esm2022/lib/ui/taon-full-material.module.mjs +179 -0
- package/websql/esm2022/lib/ui/taon-github-fork-me-corner/index.mjs +5 -0
- package/websql/esm2022/lib/ui/taon-github-fork-me-corner/taon-github-fork-me-corner.component.mjs +18 -0
- package/websql/esm2022/lib/ui/taon-github-fork-me-corner/taon-github-fork-me-corner.module.mjs +21 -0
- package/websql/esm2022/lib/ui/taon-notifications/index.mjs +7 -0
- package/websql/esm2022/lib/ui/taon-notifications/taon-notifications.component.mjs +25 -0
- package/websql/esm2022/lib/ui/taon-notifications/taon-notifications.models.mjs +5 -0
- package/websql/esm2022/lib/ui/taon-notifications/taon-notifications.module.mjs +21 -0
- package/websql/esm2022/lib/ui/taon-notifications/taon-notifications.service.mjs +48 -0
- package/websql/esm2022/lib/ui/taon-progress-bar/index.mjs +5 -0
- package/websql/esm2022/lib/ui/taon-progress-bar/taon-progress-bar.component.mjs +50 -0
- package/websql/esm2022/lib/ui/taon-progress-bar/taon-progress-bar.module.mjs +22 -0
- package/websql/esm2022/lib/ui/taon-session-passcode/index.mjs +4 -0
- package/websql/esm2022/lib/ui/taon-session-passcode/taon-session-passcode.component.mjs +120 -0
- package/websql/esm2022/lib/ui/taon-table/index.mjs +5 -0
- package/websql/esm2022/lib/ui/taon-table/taon-table.component.mjs +161 -0
- package/websql/esm2022/lib/ui/taon-table/taon-table.module.mjs +57 -0
- package/websql/fesm2022/taon.mjs +1414 -92
- package/websql/fesm2022/taon.mjs.map +1 -1
- package/websql/lib/base-classes/base-context.d.ts +4 -1
- package/websql/lib/base-classes/base-injector.d.ts +5 -0
- package/websql/lib/base-classes/base.d.ts +4 -1
- package/websql/lib/create-context.d.ts +4 -1
- package/websql/lib/decorators/http/http-decorators.d.ts +2 -0
- package/websql/lib/endpoint-context.d.ts +3 -2
- package/websql/lib/index.d.ts +13 -3
- package/websql/lib/ui/directives/index.d.ts +4 -0
- package/websql/lib/ui/directives/safe.pipe.d.ts +11 -0
- package/websql/lib/ui/directives/taon-inject-html.directive.d.ts +10 -0
- package/websql/lib/ui/directives/taon-long-press.directive.d.ts +26 -0
- package/websql/lib/ui/index.d.ts +10 -0
- package/websql/lib/ui/taon-admin-mode-configuration/components/taon-admin-edit-mode/index.d.ts +3 -0
- package/websql/lib/ui/taon-admin-mode-configuration/components/taon-admin-edit-mode/taon-admin-edit-mode.component.d.ts +33 -0
- package/websql/lib/ui/taon-admin-mode-configuration/components/taon-admin-edit-mode/taon-admin-edit-mode.module.d.ts +16 -0
- package/websql/lib/ui/taon-admin-mode-configuration/components/taon-file-general-opt/index.d.ts +3 -0
- package/websql/lib/ui/taon-admin-mode-configuration/components/taon-file-general-opt/taon-file-general-opt.component.d.ts +17 -0
- package/websql/lib/ui/taon-admin-mode-configuration/components/taon-file-general-opt/taon-file-general-opt.module.d.ts +10 -0
- package/websql/lib/ui/taon-admin-mode-configuration/index.d.ts +4 -0
- package/websql/lib/ui/taon-admin-mode-configuration/taon-admin-mode-configuration.module.d.ts +17 -0
- package/websql/lib/ui/taon-full-material.module.d.ts +47 -0
- package/websql/lib/ui/taon-github-fork-me-corner/index.d.ts +3 -0
- package/websql/lib/ui/taon-github-fork-me-corner/taon-github-fork-me-corner.component.d.ts +7 -0
- package/websql/lib/ui/taon-github-fork-me-corner/taon-github-fork-me-corner.module.d.ts +9 -0
- package/websql/lib/ui/taon-notifications/index.d.ts +5 -0
- package/websql/lib/ui/taon-notifications/taon-notifications.component.d.ts +13 -0
- package/websql/lib/ui/taon-notifications/taon-notifications.models.d.ts +7 -0
- package/websql/lib/ui/taon-notifications/taon-notifications.module.d.ts +8 -0
- package/websql/lib/ui/taon-notifications/taon-notifications.service.d.ts +15 -0
- package/websql/lib/ui/taon-progress-bar/index.d.ts +3 -0
- package/websql/lib/ui/taon-progress-bar/taon-progress-bar.component.d.ts +19 -0
- package/websql/lib/ui/taon-progress-bar/taon-progress-bar.module.d.ts +10 -0
- package/websql/lib/ui/taon-session-passcode/index.d.ts +2 -0
- package/websql/lib/ui/taon-session-passcode/taon-session-passcode.component.d.ts +39 -0
- package/websql/lib/ui/taon-table/index.d.ts +3 -0
- package/websql/lib/ui/taon-table/taon-table.component.d.ts +37 -0
- package/websql/lib/ui/taon-table/taon-table.module.d.ts +17 -0
- /package/lib/ui/directives/{firedev-inject-html.directive.d.ts → taon-inject-html.directive.d.ts} +0 -0
- /package/lib/ui/directives/{firedev-long-press.directive.d.ts → taon-long-press.directive.d.ts} +0 -0
- /package/lib/ui/{toan-full-material.module.d.ts → taon-full-material.module.d.ts} +0 -0
|
@@ -16,9 +16,14 @@ export declare class BaseInjector<CloneT extends BaseClass = any> {
|
|
|
16
16
|
*/
|
|
17
17
|
_(): Promise<void>;
|
|
18
18
|
/**
|
|
19
|
+
* @deprecated use ctx instead
|
|
19
20
|
* Current endpoint context
|
|
20
21
|
*/
|
|
21
22
|
get __endpoint_context__(): EndpointContext;
|
|
23
|
+
/**
|
|
24
|
+
* get current endpoint context
|
|
25
|
+
*/
|
|
26
|
+
get ctx(): EndpointContext;
|
|
22
27
|
/**
|
|
23
28
|
* inject crud repo for entity
|
|
24
29
|
*/
|
|
@@ -64,6 +64,7 @@ var BaseInjector = /** @class */ (function () {
|
|
|
64
64
|
//#endregion
|
|
65
65
|
//#region context
|
|
66
66
|
/**
|
|
67
|
+
* @deprecated use ctx instead
|
|
67
68
|
* Current endpoint context
|
|
68
69
|
*/
|
|
69
70
|
get: function () {
|
|
@@ -72,6 +73,16 @@ var BaseInjector = /** @class */ (function () {
|
|
|
72
73
|
enumerable: false,
|
|
73
74
|
configurable: true
|
|
74
75
|
});
|
|
76
|
+
Object.defineProperty(BaseInjector.prototype, "ctx", {
|
|
77
|
+
/**
|
|
78
|
+
* get current endpoint context
|
|
79
|
+
*/
|
|
80
|
+
get: function () {
|
|
81
|
+
return this.__endpoint_context__;
|
|
82
|
+
},
|
|
83
|
+
enumerable: false,
|
|
84
|
+
configurable: true
|
|
85
|
+
});
|
|
75
86
|
//#endregion
|
|
76
87
|
//#region inject
|
|
77
88
|
//#region inject / repo for entity
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"base-injector.js","sourceRoot":"","sources":[""],"names":[],"mappings":";;;;AAAA,iBAAiB;AACjB,qCAAsC;AAEtC,sCAAqC;AACrC,0DAAwD;AAGxD,YAAY;AAEZ;IAAA;
|
|
1
|
+
{"version":3,"file":"base-injector.js","sourceRoot":"","sources":[""],"names":[],"mappings":"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"}
|
|
@@ -28,7 +28,10 @@ export declare namespace Base {
|
|
|
28
28
|
readonly __refSync: import("../endpoint-context").EndpointContext;
|
|
29
29
|
getClassInstance<T>(ctor: new (...args: any[]) => T): T;
|
|
30
30
|
getClass<T>(ctor: new (...args: any[]) => T): new (...args: any[]) => T;
|
|
31
|
-
initialize: (
|
|
31
|
+
initialize: (overrideOptions?: {
|
|
32
|
+
overrideHost?: string;
|
|
33
|
+
overrideRemoteHost?: string;
|
|
34
|
+
}) => Promise<import("../endpoint-context").EndpointContext>;
|
|
32
35
|
readonly realtime: {
|
|
33
36
|
readonly client: import("../realtime/realtime-client").RealtimeClient;
|
|
34
37
|
readonly server: import("../realtime/realtime-server").RealtimeServer;
|
package/lib/create-context.d.ts
CHANGED
|
@@ -25,7 +25,10 @@ export declare const createContext: <CTX extends Record<string, object>, CTRL ex
|
|
|
25
25
|
* - create controller instances for context
|
|
26
26
|
* - init database (if enable) + migation scripts
|
|
27
27
|
*/
|
|
28
|
-
initialize: (
|
|
28
|
+
initialize: (overrideOptions?: {
|
|
29
|
+
overrideHost?: string;
|
|
30
|
+
overrideRemoteHost?: string;
|
|
31
|
+
}) => Promise<EndpointContext>;
|
|
29
32
|
/**
|
|
30
33
|
* realtime communication with server
|
|
31
34
|
* Udp socket.io (or ipc) based.
|
package/lib/create-context.js
CHANGED
|
@@ -112,7 +112,7 @@ var createContext = function (configFn) {
|
|
|
112
112
|
* - create controller instances for context
|
|
113
113
|
* - init database (if enable) + migation scripts
|
|
114
114
|
*/
|
|
115
|
-
initialize: function () { return tslib_1.__awaiter(void 0, void 0, void 0, function () {
|
|
115
|
+
initialize: function (overrideOptions) { return tslib_1.__awaiter(void 0, void 0, void 0, function () {
|
|
116
116
|
return tslib_1.__generator(this, function (_a) {
|
|
117
117
|
switch (_a.label) {
|
|
118
118
|
case 0: return [4 /*yield*/, new Promise(function (resolve, reject) { return tslib_1.__awaiter(void 0, void 0, void 0, function () {
|
|
@@ -121,7 +121,7 @@ var createContext = function (configFn) {
|
|
|
121
121
|
var keepWebsqlDbDataAfterReload;
|
|
122
122
|
return tslib_1.__generator(this, function (_a) {
|
|
123
123
|
switch (_a.label) {
|
|
124
|
-
case 0: return [4 /*yield*/, endpointContextRef.init()];
|
|
124
|
+
case 0: return [4 /*yield*/, endpointContextRef.init(tslib_1.__assign({}, overrideOptions))];
|
|
125
125
|
case 1:
|
|
126
126
|
_a.sent();
|
|
127
127
|
if (config.abstract) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-context.js","sourceRoot":"","sources":[""],"names":[],"mappings":";;;;AAAA,iBAAiB;AACjB,qCAAmC;AACnC,uDAAqD;AAGrD,6BAA4B;AAC5B,KAAK;AACL,KAAK;AAGL,uCAAuC;AACvC,qCAAqC;AACrC,YAAY;AAEL,IAAM,aAAa,GAAG,UAU3B,QAEyE;IAEzE,IAAI,MAAM,GAAG,QAAQ,CAAC,SAAG,CAAC,CAAC;IAE3B,IAAM,kBAAkB,GAAG,IAAI,kCAAe,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;IAEjE,IAAM,GAAG,GAAG;QACV,eAAe;QACf,KAAK,EAAE;YACL,qBAAqB;YACrB,mBAAmB;YACnB,4BAA4B;YAC5B,KAAK;YACL,4CAA4C;YAC5C,mDAAmD;YACnD,2CAA2C;YAC3C,2CAA2C;YAC3C,oEAAoE;YACpE,0DAA0D;YAC1D,4CAA4C;YAC5C,+CAA+C;YAC/C,8BAA8B;YAC9B,QAAQ;YACR,MAAM;YACN,qEAAqE;YACrE,KAAK;YACL,YAAY;YACZ,IAAI,WAAW;gBACb,OAAO,MAAM,CAAC,WAAW,CAAC;YAC5B,CAAC;YACD,IAAI,YAAY;gBACd,OAAO,MAAM,CAAC,YAAY,CAAC;YAC7B,CAAC;YACD,IAAI,SAAS;gBACX,OAAO,MAAM,CAAC,SAAS,CAAC;YAC1B,CAAC;YACD,IAAI,WAAW;gBACb,OAAO,MAAM,CAAC,WAAW,CAAC;YAC5B,CAAC;SACF;QACD,YAAY;QACZ,kBAAkB;QAClB,IAAI,QAAQ;YACV,OAAO,MAAM,CAAC,QAAQ,CAAC;QACzB,CAAC;QACD,IAAI,WAAW;YACb,OAAO,MAAM,CAAC,WAAW,CAAC;QAC5B,CAAC;QACD,YAAY;QACZ,iBAAiB;QACjB;;;WAGG;QACG,KAAK;;;;;iCACL,CAAC,kBAAkB,CAAC,MAAM,EAA1B,wBAA0B;4BAC5B,qBAAM,kBAAkB,CAAC,IAAI,CAAC;oCAC5B,+BAA+B,EAAE,IAAI;iCACtC,CAAC,EAAA;;4BAFF,SAEE,CAAC;;gCAEL,sBAAO,kBAAkB,EAAC;;;;SAC3B;QACD;;;UAGE;QACF,IAAI,SAAS;YACX,OAAO,kBAAkB,CAAC;QAC5B,CAAC;QACD,gBAAgB,YAAI,IAA+B;YACjD,OAAO,kBAAkB,CAAC,aAAa,CAAC,IAAI,CAAC,CAAC;QAChD,CAAC;QAED,QAAQ,YAAI,IAA+B;YACzC,IAAM,QAAQ,GAAG,kBAAkB,CAAC,kBAAkB,CAAC,IAAI,CAAC,CAAC;YAC7D,OAAO,QAAe,CAAC;YACvB,aAAa;YACb,+DAA+D;YAC/D,oGAAoG;YACpG,aAAa;YACb,qEAAqE;YACrE,eAAe;YACf,MAAM;YACN,KAAK;YACL,6DAA6D;YAC7D,WAAW;YACX,+DAA+D;YAC/D,4DAA4D;YAC5D,YAAY;QACd,CAAC;QACD,YAAY;QACZ,oBAAoB;QACpB;;;WAGG;QACH,UAAU,EAAE;;;
|
|
1
|
+
{"version":3,"file":"create-context.js","sourceRoot":"","sources":[""],"names":[],"mappings":"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"}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as methods from './http-methods-decorators';
|
|
2
2
|
import * as params from './http-params-decorators';
|
|
3
|
+
import { Models } from 'ng2-rest/src';
|
|
3
4
|
export declare namespace Http {
|
|
4
5
|
export import GET = methods.GET;
|
|
5
6
|
export import POST = methods.POST;
|
|
@@ -7,6 +8,7 @@ export declare namespace Http {
|
|
|
7
8
|
export import DELETE = methods.DELETE;
|
|
8
9
|
export import PATCH = methods.PATCH;
|
|
9
10
|
export import HEAD = methods.HEAD;
|
|
11
|
+
export import Response = Models.HttpResponse;
|
|
10
12
|
namespace Param {
|
|
11
13
|
export import Query = params.Query;
|
|
12
14
|
export import Path = params.Path;
|
|
@@ -14,4 +16,4 @@ export declare namespace Http {
|
|
|
14
16
|
export import Cookie = params.Cookie;
|
|
15
17
|
export import Header = params.Header;
|
|
16
18
|
}
|
|
17
|
-
}
|
|
19
|
+
}
|
|
@@ -3,6 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.Http = void 0;
|
|
4
4
|
var methods = require("./http-methods-decorators");
|
|
5
5
|
var params = require("./http-params-decorators");
|
|
6
|
+
var ng2_rest_1 = require("ng2-rest");
|
|
6
7
|
var Http;
|
|
7
8
|
(function (Http) {
|
|
8
9
|
Http.GET = methods.GET;
|
|
@@ -11,6 +12,7 @@ var Http;
|
|
|
11
12
|
Http.DELETE = methods.DELETE;
|
|
12
13
|
Http.PATCH = methods.PATCH;
|
|
13
14
|
Http.HEAD = methods.HEAD;
|
|
15
|
+
Http.Response = ng2_rest_1.Models.HttpResponse;
|
|
14
16
|
var Param;
|
|
15
17
|
(function (Param) {
|
|
16
18
|
Param.Query = params.Query;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"http-decorators.js","sourceRoot":"","sources":[""],"names":[],"mappings":";;;AAAA,mDAAqD;AACrD,iDAAmD;
|
|
1
|
+
{"version":3,"file":"http-decorators.js","sourceRoot":"","sources":[""],"names":[],"mappings":";;;AAAA,mDAAqD;AACrD,iDAAmD;AACnD,qCAAkC;AAElC,IAAiB,IAAI,CAepB;AAfD,WAAiB,IAAI;IACL,QAAG,GAAG,OAAO,CAAC,GAAG,CAAC;IAClB,SAAI,GAAG,OAAO,CAAC,IAAI,CAAC;IACpB,QAAG,GAAG,OAAO,CAAC,GAAG,CAAC;IAClB,WAAM,GAAG,OAAO,CAAC,MAAM,CAAC;IACxB,UAAK,GAAG,OAAO,CAAC,KAAK,CAAC;IACtB,SAAI,GAAG,OAAO,CAAC,IAAI,CAAC;IACpB,aAAQ,GAAG,iBAAM,CAAC,YAAY,CAAC;IAC7C,IAAiB,KAAK,CAMrB;IAND,WAAiB,KAAK;QACN,WAAK,GAAG,MAAM,CAAC,KAAK,CAAC;QACrB,UAAI,GAAG,MAAM,CAAC,IAAI,CAAC;QACnB,UAAI,GAAG,MAAM,CAAC,IAAI,CAAC;QACnB,YAAM,GAAG,MAAM,CAAC,MAAM,CAAC;QACvB,YAAM,GAAG,MAAM,CAAC,MAAM,CAAC;IACvC,CAAC,EANgB,KAAK,GAAL,UAAK,KAAL,UAAK,QAMrB;AACH,CAAC,EAfgB,IAAI,oBAAJ,IAAI,QAepB"}
|
|
@@ -10,7 +10,6 @@ export declare class EndpointContext {
|
|
|
10
10
|
private configFn;
|
|
11
11
|
private static ngZone;
|
|
12
12
|
static initNgZone(ngZone: NgZone): void;
|
|
13
|
-
static findForTraget(classFnOrObject: any): EndpointContext;
|
|
14
13
|
disabledRealtime: boolean;
|
|
15
14
|
/**
|
|
16
15
|
* check whether context is inited
|
|
@@ -53,6 +52,8 @@ export declare class EndpointContext {
|
|
|
53
52
|
constructor(originalConfig: Models.ContextOptions<any, any, any, any, any, any>, configFn: (env: any) => Models.ContextOptions<any, any, any, any, any, any>);
|
|
54
53
|
init(options?: {
|
|
55
54
|
initFromRecrusiveContextResovle?: boolean;
|
|
55
|
+
overrideHost?: string;
|
|
56
|
+
overrideRemoteHost?: string;
|
|
56
57
|
}): Promise<void>;
|
|
57
58
|
private getAutoGeneratedConfig;
|
|
58
59
|
get ngZone(): any;
|
|
@@ -108,7 +109,7 @@ export declare class EndpointContext {
|
|
|
108
109
|
initMetadata(): void;
|
|
109
110
|
writeActiveRoutes(): void;
|
|
110
111
|
get middlewares(): Models.MiddlewareType[];
|
|
111
|
-
private
|
|
112
|
+
private initMiddlewares;
|
|
112
113
|
private initServer;
|
|
113
114
|
/**
|
|
114
115
|
* client can be browser or nodejs (when remote host)
|