@angular-wave/angular.ts 0.7.5 → 0.7.8
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/@types/animations/raf-scheduler.d.ts +2 -2
- package/@types/animations/shared.d.ts +0 -1
- package/@types/core/compile/attributes.d.ts +3 -3
- package/@types/core/compile/compile.d.ts +1 -1
- package/@types/core/di/injector.d.ts +0 -1
- package/@types/core/di/internal-injector.d.ts +1 -0
- package/@types/core/di/ng-module.d.ts +5 -0
- package/@types/core/filter/filter.d.ts +11 -13
- package/@types/core/sanitize/sanitize-uri.d.ts +3 -6
- package/@types/core/scope/scope.d.ts +1 -3
- package/@types/directive/attrs/attrs.d.ts +7 -1
- package/@types/directive/events/events.d.ts +9 -3
- package/@types/directive/http/http.d.ts +6 -2
- package/@types/directive/include/include.d.ts +2 -2
- package/@types/directive/input/input.d.ts +2 -12
- package/@types/directive/messages/messages.d.ts +9 -48
- package/@types/directive/model/model.d.ts +3 -3
- package/@types/directive/options/options.d.ts +13 -20
- package/@types/directive/setter/setter.d.ts +2 -2
- package/@types/directive/switch/switch.d.ts +1 -0
- package/@types/directive/transclude/transclude.d.ts +10 -6
- package/@types/interface.d.ts +54 -18
- package/@types/router/common/glob.d.ts +5 -1
- package/@types/router/directives/view-directive.d.ts +2 -19
- package/@types/router/globals.d.ts +1 -2
- package/@types/router/state/state-registry.d.ts +1 -2
- package/@types/router/url/url-service.d.ts +7 -9
- package/@types/services/anchor-scroll.d.ts +1 -1
- package/@types/{core → services/exception}/exception-handler.d.ts +4 -4
- package/@types/{core/error-handler.d.ts → services/exception/interface.d.ts} +1 -1
- package/@types/services/http/http.d.ts +0 -2
- package/@types/services/http/interface.d.ts +2 -2
- package/@types/services/http-backend/http-backend.d.ts +13 -21
- package/@types/services/location/interface.d.ts +8 -0
- package/@types/{core → services}/location/location.d.ts +52 -12
- package/@types/{core → services}/sce/sce.d.ts +1 -1
- package/@types/services/template-cache/interface.d.ts +8 -2
- package/@types/services/template-cache/template-cache.d.ts +1 -1
- package/@types/services/template-request.d.ts +1 -1
- package/@types/shared/cache.d.ts +0 -2
- package/@types/shared/dom.d.ts +6 -0
- package/@types/shared/test-utils.d.ts +1 -0
- package/@types/shared/url-utils/interface.d.ts +47 -0
- package/@types/{core → shared}/url-utils/url-utils.d.ts +26 -13
- package/@types/shared/utils.d.ts +23 -0
- package/Makefile +3 -2
- package/dist/angular-ts.esm.js +1188 -1364
- package/dist/angular-ts.umd.js +1188 -1364
- package/dist/angular-ts.umd.min.js +1 -1
- package/docs/assets/scss/index.scss +12 -0
- package/docs/content/_index.md +15 -4
- package/docs/content/docs/directive/bind.md +72 -0
- package/docs/content/docs/directive/click.md +3 -0
- package/docs/content/docs/directive/dblclick.md +3 -0
- package/docs/content/docs/directive/get.md +203 -0
- package/docs/content/docs/directive/keydown.md +38 -0
- package/docs/content/docs/directive/keyup.md +38 -0
- package/docs/content/docs/directive/load.md +43 -0
- package/docs/content/docs/provider/templateCacheProvider.md +66 -1
- package/docs/content/docs/service/templateCache.md +2 -2
- package/docs/layouts/partials/hooks/head-end.html +1 -1
- package/docs/layouts/shortcodes/showcss.html +2 -0
- package/docs/static/examples/ng-bind/ng-bind.html +9 -0
- package/docs/static/examples/ng-keydown/ng-keydown.html +9 -0
- package/docs/static/examples/ng-keyup/ng-keyup.html +9 -0
- package/docs/static/examples/ng-load/ng-load.html +8 -0
- package/docs/static/typedoc/assets/hierarchy.js +1 -1
- package/docs/static/typedoc/assets/navigation.js +1 -1
- package/docs/static/typedoc/assets/search.js +1 -1
- package/docs/static/typedoc/classes/NgModule.html +32 -0
- package/docs/static/typedoc/classes/TemplateCacheProvider.html +1 -1
- package/docs/static/typedoc/hierarchy.html +1 -1
- package/docs/static/typedoc/index.html +1 -1
- package/docs/static/typedoc/interfaces/Directive.html +5 -4
- package/docs/static/typedoc/interfaces/HttpProviderDefaults.html +1 -1
- package/docs/static/typedoc/interfaces/HttpResponse.html +2 -3
- package/docs/static/typedoc/interfaces/Provider.html +15 -10
- package/docs/static/typedoc/interfaces/RequestConfig.html +1 -1
- package/docs/static/typedoc/interfaces/RequestShortcutConfig.html +1 -1
- package/docs/static/typedoc/interfaces/TemplateCache.html +7 -0
- package/docs/static/typedoc/types/AnnotatedDirectiveFactory.html +1 -0
- package/docs/static/typedoc/types/DirectiveFactory.html +1 -2
- package/docs/static/typedoc/types/DirectiveFactoryFn.html +1 -0
- package/docs/static/typedoc/types/HttpResponseStatus.html +1 -0
- package/docs/static/typedoc/types/{TemplateCache.html → SwapModeType.html} +1 -1
- package/docs/static/typedoc/variables/SwapMode.html +11 -0
- package/legacy.d.ts +0 -14
- package/package.json +1 -3
- package/src/animations/animate-children-directive.js +2 -2
- package/src/animations/raf-scheduler.js +1 -1
- package/src/animations/shared.js +0 -9
- package/src/core/compile/attributes.js +1 -1
- package/src/core/compile/compile.js +3 -3
- package/src/core/di/injector.js +4 -17
- package/src/core/di/internal-injector.js +4 -1
- package/src/core/di/ng-module.js +12 -27
- package/src/core/filter/filter.js +28 -28
- package/src/core/parse/interpreter.js +32 -38
- package/src/core/sanitize/sanitize-uri.js +3 -3
- package/src/core/scope/scope.js +2 -7
- package/src/directive/attrs/attrs.js +7 -4
- package/src/directive/bind/bind.js +16 -4
- package/src/directive/bind/bind.spec.js +13 -0
- package/src/directive/events/events.js +7 -3
- package/src/directive/events/events.md +0 -41
- package/src/directive/http/delete.spec.js +2 -0
- package/src/directive/http/get.spec.js +280 -3
- package/src/directive/http/http.js +100 -12
- package/src/directive/http/http.test.js +2 -2
- package/src/directive/http/post.spec.js +2 -0
- package/src/directive/http/put.spec.js +2 -0
- package/src/directive/include/include.js +7 -7
- package/src/directive/input/input.js +6 -28
- package/src/directive/messages/messages.js +5 -1
- package/src/directive/model/model.js +1 -1
- package/src/directive/options/options.js +454 -464
- package/src/directive/repeat/repeat.js +175 -153
- package/src/directive/setter/setter.js +13 -15
- package/src/directive/setter/setter.spec.js +39 -16
- package/src/directive/switch/switch.js +1 -0
- package/src/directive/switch/switch.spec.js +1 -1
- package/src/directive/transclude/transclude.js +87 -89
- package/src/injection-tokens.js +1 -1
- package/src/interface.ts +68 -19
- package/src/loader.js +4 -9
- package/src/public.js +9 -15
- package/src/router/common/glob.js +5 -0
- package/src/router/directives/state-directives.js +4 -6
- package/src/router/directives/state-directives.spec.js +1 -1
- package/src/router/directives/view-directive.js +9 -1
- package/src/router/globals.js +0 -1
- package/src/router/state/state-registry.js +0 -1
- package/src/router/state-filters.js +2 -2
- package/src/router/url/url-service.js +5 -9
- package/src/services/anchor-scroll.html +0 -7
- package/src/services/anchor-scroll.js +2 -2
- package/src/{core → services/exception}/exception-handler.js +2 -2
- package/src/{core/error-handler.ts → services/exception/interface.ts} +1 -1
- package/src/services/http/http.js +2 -13
- package/src/services/http/interface.ts +2 -2
- package/src/services/http-backend/http-backend.js +4 -14
- package/src/services/http-backend/http-backend.spec.js +1 -4
- package/src/services/location/interface.ts +8 -0
- package/src/{core → services}/location/location.html +4 -1
- package/src/{core → services}/location/location.js +129 -27
- package/src/{core → services}/location/location.spec.js +2 -2
- package/src/{core → services}/location/location.test.js +1 -1
- package/src/{core → services}/sce/sce.html +1 -1
- package/src/{core → services}/sce/sce.js +9 -3
- package/src/{core → services}/sce/sce.spec.js +2 -3
- package/src/{core → services}/sce/sce.test.js +1 -1
- package/src/services/template-cache/interface.ts +8 -2
- package/src/services/template-cache/template-cache.js +3 -1
- package/src/services/template-cache/template-cache.spec.js +72 -0
- package/src/services/template-request.js +2 -1
- package/src/shared/cache.js +0 -2
- package/src/shared/dom.js +10 -0
- package/src/shared/test-utils.js +1 -0
- package/src/shared/url-utils/interface.ts +56 -0
- package/src/{core → shared}/url-utils/url-utils.html +4 -1
- package/src/{core → shared}/url-utils/url-utils.js +26 -23
- package/src/{core → shared}/url-utils/url-utils.spec.js +0 -8
- package/src/{core → shared}/url-utils/url-utils.test.js +1 -1
- package/src/shared/utils.js +47 -1
- package/utils/express.js +9 -1
- package/@types/core/task-tracker-factory.d.ts +0 -76
- package/@types/services/browser.d.ts +0 -101
- package/docs/static/typedoc/types/SwapInsertPosition.html +0 -2
- package/jsdoc.json +0 -22
- package/src/core/task-tracker-factory.js +0 -145
- package/src/services/browser.js +0 -212
- /package/src/{core → services}/location/location.md +0 -0
- /package/src/{core → services}/sce/sce.md +0 -0
- /package/src/{core → shared}/url-utils/url-utils.md +0 -0
|
@@ -1,2 +1 @@
|
|
|
1
|
-
<!DOCTYPE html><html class="default" lang="en" data-base="../"><head><meta charset="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>DirectiveFactory | AngularTS</title><meta name="description" content="Documentation for AngularTS"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script defer src="../assets/main.js"></script><script async src="../assets/icons.js" id="tsd-icons-script"></script><script async src="../assets/search.js" id="tsd-search-script"></script><script async src="../assets/navigation.js" id="tsd-nav-script"></script><script async src="../assets/hierarchy.js" id="tsd-hierarchy-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os";document.body.style.display="none";setTimeout(() => window.app?app.showPage():document.body.style.removeProperty("display"),500)</script><header class="tsd-page-toolbar"><div class="tsd-toolbar-contents container"><a href="../index.html" class="title">AngularTS</a><div id="tsd-toolbar-links"></div><button id="tsd-search-trigger" class="tsd-widget" aria-label="Search"><svg width="16" height="16" viewBox="0 0 16 16" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-search"></use></svg></button><dialog id="tsd-search" aria-label="Search"><input role="combobox" id="tsd-search-input" aria-controls="tsd-search-results" aria-autocomplete="list" aria-expanded="true" autocapitalize="off" autocomplete="off" placeholder="Search the docs" maxLength="100"/><ul role="listbox" id="tsd-search-results"></ul><div id="tsd-search-status" aria-live="polite" aria-atomic="true"><div>Preparing search index...</div></div></dialog><a href="#" class="tsd-widget menu" id="tsd-toolbar-menu-trigger" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-menu"></use></svg></a></div></header><div class="container container-main"><div class="col-content"><div class="tsd-page-title"><ul class="tsd-breadcrumb" aria-label="Breadcrumb"><li><a href="" aria-current="page">DirectiveFactory</a></li></ul><h1>Type Alias DirectiveFactory</h1></div><div class="tsd-signature"><span class="tsd-kind-type-alias">DirectiveFactory</span><span class="tsd-signature-symbol">:</span> <
|
|
2
|
-
</div><div class="tsd-type-declaration"><h4>Type declaration</h4><ul class="tsd-parameters"><li class="tsd-parameter-signature"><ul class="tsd-signatures"><li class="tsd-signature" id="__type"><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">...</span><span class="tsd-kind-parameter">args</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">:</span> <a href="../interfaces/Directive.html" class="tsd-signature-type tsd-kind-interface">Directive</a> <span class="tsd-signature-symbol">|</span> <a href="DirectiveLinkFn.html" class="tsd-signature-type tsd-kind-type-alias">DirectiveLinkFn</a></li><li class="tsd-description"><div class="tsd-parameters"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameter-list"><li><span><span class="tsd-signature-symbol">...</span><span class="tsd-kind-parameter">args</span>: <span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">[]</span></span></li></ul></div><h4 class="tsd-returns-title">Returns <a href="../interfaces/Directive.html" class="tsd-signature-type tsd-kind-interface">Directive</a> <span class="tsd-signature-symbol">|</span> <a href="DirectiveLinkFn.html" class="tsd-signature-type tsd-kind-type-alias">DirectiveLinkFn</a></h4></li></ul></li></ul></div><div class="tsd-comment tsd-typography"></div></div><div class="col-sidebar"><div class="page-menu"><div class="tsd-navigation settings"><details class="tsd-accordion"><summary class="tsd-accordion-summary"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h3>Settings</h3></summary><div class="tsd-accordion-details"><div class="tsd-filter-visibility"><span class="settings-label">Member Visibility</span><ul id="tsd-filter-options"><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-protected" name="protected"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Protected</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-external" name="external"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>External</span></label></li></ul></div><div class="tsd-theme-toggle"><label class="settings-label" for="tsd-theme">Theme</label><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div></div><div class="site-menu"><nav class="tsd-navigation"><a href="../index.html">AngularTS</a><ul class="tsd-small-nested-navigation" id="tsd-nav-container"><li>Loading...</li></ul></nav></div></div></div><footer><p class="tsd-generator">Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></footer><div class="overlay"></div></body></html>
|
|
1
|
+
<!DOCTYPE html><html class="default" lang="en" data-base="../"><head><meta charset="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>DirectiveFactory | AngularTS</title><meta name="description" content="Documentation for AngularTS"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script defer src="../assets/main.js"></script><script async src="../assets/icons.js" id="tsd-icons-script"></script><script async src="../assets/search.js" id="tsd-search-script"></script><script async src="../assets/navigation.js" id="tsd-nav-script"></script><script async src="../assets/hierarchy.js" id="tsd-hierarchy-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os";document.body.style.display="none";setTimeout(() => window.app?app.showPage():document.body.style.removeProperty("display"),500)</script><header class="tsd-page-toolbar"><div class="tsd-toolbar-contents container"><a href="../index.html" class="title">AngularTS</a><div id="tsd-toolbar-links"></div><button id="tsd-search-trigger" class="tsd-widget" aria-label="Search"><svg width="16" height="16" viewBox="0 0 16 16" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-search"></use></svg></button><dialog id="tsd-search" aria-label="Search"><input role="combobox" id="tsd-search-input" aria-controls="tsd-search-results" aria-autocomplete="list" aria-expanded="true" autocapitalize="off" autocomplete="off" placeholder="Search the docs" maxLength="100"/><ul role="listbox" id="tsd-search-results"></ul><div id="tsd-search-status" aria-live="polite" aria-atomic="true"><div>Preparing search index...</div></div></dialog><a href="#" class="tsd-widget menu" id="tsd-toolbar-menu-trigger" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-menu"></use></svg></a></div></header><div class="container container-main"><div class="col-content"><div class="tsd-page-title"><ul class="tsd-breadcrumb" aria-label="Breadcrumb"><li><a href="" aria-current="page">DirectiveFactory</a></li></ul><h1>Type Alias DirectiveFactory</h1></div><div class="tsd-signature"><span class="tsd-kind-type-alias">DirectiveFactory</span><span class="tsd-signature-symbol">:</span> <a href="DirectiveFactoryFn.html" class="tsd-signature-type tsd-kind-type-alias">DirectiveFactoryFn</a> <span class="tsd-signature-symbol">|</span> <a href="AnnotatedDirectiveFactory.html" class="tsd-signature-type tsd-kind-type-alias">AnnotatedDirectiveFactory</a></div></div><div class="col-sidebar"><div class="page-menu"><div class="tsd-navigation settings"><details class="tsd-accordion"><summary class="tsd-accordion-summary"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h3>Settings</h3></summary><div class="tsd-accordion-details"><div class="tsd-filter-visibility"><span class="settings-label">Member Visibility</span><ul id="tsd-filter-options"><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-protected" name="protected"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Protected</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-external" name="external"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>External</span></label></li></ul></div><div class="tsd-theme-toggle"><label class="settings-label" for="tsd-theme">Theme</label><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div></div><div class="site-menu"><nav class="tsd-navigation"><a href="../index.html">AngularTS</a><ul class="tsd-small-nested-navigation" id="tsd-nav-container"><li>Loading...</li></ul></nav></div></div></div><footer><p class="tsd-generator">Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></footer><div class="overlay"></div></body></html>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<!DOCTYPE html><html class="default" lang="en" data-base="../"><head><meta charset="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>DirectiveFactoryFn | AngularTS</title><meta name="description" content="Documentation for AngularTS"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script defer src="../assets/main.js"></script><script async src="../assets/icons.js" id="tsd-icons-script"></script><script async src="../assets/search.js" id="tsd-search-script"></script><script async src="../assets/navigation.js" id="tsd-nav-script"></script><script async src="../assets/hierarchy.js" id="tsd-hierarchy-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os";document.body.style.display="none";setTimeout(() => window.app?app.showPage():document.body.style.removeProperty("display"),500)</script><header class="tsd-page-toolbar"><div class="tsd-toolbar-contents container"><a href="../index.html" class="title">AngularTS</a><div id="tsd-toolbar-links"></div><button id="tsd-search-trigger" class="tsd-widget" aria-label="Search"><svg width="16" height="16" viewBox="0 0 16 16" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-search"></use></svg></button><dialog id="tsd-search" aria-label="Search"><input role="combobox" id="tsd-search-input" aria-controls="tsd-search-results" aria-autocomplete="list" aria-expanded="true" autocapitalize="off" autocomplete="off" placeholder="Search the docs" maxLength="100"/><ul role="listbox" id="tsd-search-results"></ul><div id="tsd-search-status" aria-live="polite" aria-atomic="true"><div>Preparing search index...</div></div></dialog><a href="#" class="tsd-widget menu" id="tsd-toolbar-menu-trigger" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-menu"></use></svg></a></div></header><div class="container container-main"><div class="col-content"><div class="tsd-page-title"><ul class="tsd-breadcrumb" aria-label="Breadcrumb"><li><a href="" aria-current="page">DirectiveFactoryFn</a></li></ul><h1>Type Alias DirectiveFactoryFn</h1></div><div class="tsd-signature"><span class="tsd-kind-type-alias">DirectiveFactoryFn</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">...</span><span class="tsd-kind-parameter">args</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">)</span> <span class="tsd-signature-symbol">=></span> <a href="../interfaces/Directive.html" class="tsd-signature-type tsd-kind-interface">Directive</a> <span class="tsd-signature-symbol">|</span> <a href="DirectiveLinkFn.html" class="tsd-signature-type tsd-kind-type-alias">DirectiveLinkFn</a></div><div class="tsd-type-declaration"><h4>Type declaration</h4><ul class="tsd-parameters"><li class="tsd-parameter-signature"><ul class="tsd-signatures"><li class="tsd-signature" id="__type"><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">...</span><span class="tsd-kind-parameter">args</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">:</span> <a href="../interfaces/Directive.html" class="tsd-signature-type tsd-kind-interface">Directive</a> <span class="tsd-signature-symbol">|</span> <a href="DirectiveLinkFn.html" class="tsd-signature-type tsd-kind-type-alias">DirectiveLinkFn</a></li><li class="tsd-description"><div class="tsd-parameters"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameter-list"><li><span><span class="tsd-signature-symbol">...</span><span class="tsd-kind-parameter">args</span>: <span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">[]</span></span></li></ul></div><h4 class="tsd-returns-title">Returns <a href="../interfaces/Directive.html" class="tsd-signature-type tsd-kind-interface">Directive</a> <span class="tsd-signature-symbol">|</span> <a href="DirectiveLinkFn.html" class="tsd-signature-type tsd-kind-type-alias">DirectiveLinkFn</a></h4></li></ul></li></ul></div></div><div class="col-sidebar"><div class="page-menu"><div class="tsd-navigation settings"><details class="tsd-accordion"><summary class="tsd-accordion-summary"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h3>Settings</h3></summary><div class="tsd-accordion-details"><div class="tsd-filter-visibility"><span class="settings-label">Member Visibility</span><ul id="tsd-filter-options"><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-protected" name="protected"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Protected</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-external" name="external"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>External</span></label></li></ul></div><div class="tsd-theme-toggle"><label class="settings-label" for="tsd-theme">Theme</label><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div></div><div class="site-menu"><nav class="tsd-navigation"><a href="../index.html">AngularTS</a><ul class="tsd-small-nested-navigation" id="tsd-nav-container"><li>Loading...</li></ul></nav></div></div></div><footer><p class="tsd-generator">Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></footer><div class="overlay"></div></body></html>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<!DOCTYPE html><html class="default" lang="en" data-base="../"><head><meta charset="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>HttpResponseStatus | AngularTS</title><meta name="description" content="Documentation for AngularTS"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script defer src="../assets/main.js"></script><script async src="../assets/icons.js" id="tsd-icons-script"></script><script async src="../assets/search.js" id="tsd-search-script"></script><script async src="../assets/navigation.js" id="tsd-nav-script"></script><script async src="../assets/hierarchy.js" id="tsd-hierarchy-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os";document.body.style.display="none";setTimeout(() => window.app?app.showPage():document.body.style.removeProperty("display"),500)</script><header class="tsd-page-toolbar"><div class="tsd-toolbar-contents container"><a href="../index.html" class="title">AngularTS</a><div id="tsd-toolbar-links"></div><button id="tsd-search-trigger" class="tsd-widget" aria-label="Search"><svg width="16" height="16" viewBox="0 0 16 16" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-search"></use></svg></button><dialog id="tsd-search" aria-label="Search"><input role="combobox" id="tsd-search-input" aria-controls="tsd-search-results" aria-autocomplete="list" aria-expanded="true" autocapitalize="off" autocomplete="off" placeholder="Search the docs" maxLength="100"/><ul role="listbox" id="tsd-search-results"></ul><div id="tsd-search-status" aria-live="polite" aria-atomic="true"><div>Preparing search index...</div></div></dialog><a href="#" class="tsd-widget menu" id="tsd-toolbar-menu-trigger" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-menu"></use></svg></a></div></header><div class="container container-main"><div class="col-content"><div class="tsd-page-title"><ul class="tsd-breadcrumb" aria-label="Breadcrumb"><li><a href="" aria-current="page">HttpResponseStatus</a></li></ul><h1>Type Alias HttpResponseStatus</h1></div><div class="tsd-signature"><span class="tsd-kind-type-alias">HttpResponseStatus</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"complete"</span> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">"error"</span> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">"timeout"</span> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">"abort"</span></div></div><div class="col-sidebar"><div class="page-menu"><div class="tsd-navigation settings"><details class="tsd-accordion"><summary class="tsd-accordion-summary"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h3>Settings</h3></summary><div class="tsd-accordion-details"><div class="tsd-filter-visibility"><span class="settings-label">Member Visibility</span><ul id="tsd-filter-options"><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-protected" name="protected"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Protected</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-external" name="external"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>External</span></label></li></ul></div><div class="tsd-theme-toggle"><label class="settings-label" for="tsd-theme">Theme</label><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div></div><div class="site-menu"><nav class="tsd-navigation"><a href="../index.html">AngularTS</a><ul class="tsd-small-nested-navigation" id="tsd-nav-container"><li>Loading...</li></ul></nav></div></div></div><footer><p class="tsd-generator">Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></footer><div class="overlay"></div></body></html>
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
<!DOCTYPE html><html class="default" lang="en" data-base="../"><head><meta charset="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>
|
|
1
|
+
<!DOCTYPE html><html class="default" lang="en" data-base="../"><head><meta charset="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>SwapModeType | AngularTS</title><meta name="description" content="Documentation for AngularTS"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script defer src="../assets/main.js"></script><script async src="../assets/icons.js" id="tsd-icons-script"></script><script async src="../assets/search.js" id="tsd-search-script"></script><script async src="../assets/navigation.js" id="tsd-nav-script"></script><script async src="../assets/hierarchy.js" id="tsd-hierarchy-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os";document.body.style.display="none";setTimeout(() => window.app?app.showPage():document.body.style.removeProperty("display"),500)</script><header class="tsd-page-toolbar"><div class="tsd-toolbar-contents container"><a href="../index.html" class="title">AngularTS</a><div id="tsd-toolbar-links"></div><button id="tsd-search-trigger" class="tsd-widget" aria-label="Search"><svg width="16" height="16" viewBox="0 0 16 16" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-search"></use></svg></button><dialog id="tsd-search" aria-label="Search"><input role="combobox" id="tsd-search-input" aria-controls="tsd-search-results" aria-autocomplete="list" aria-expanded="true" autocapitalize="off" autocomplete="off" placeholder="Search the docs" maxLength="100"/><ul role="listbox" id="tsd-search-results"></ul><div id="tsd-search-status" aria-live="polite" aria-atomic="true"><div>Preparing search index...</div></div></dialog><a href="#" class="tsd-widget menu" id="tsd-toolbar-menu-trigger" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-menu"></use></svg></a></div></header><div class="container container-main"><div class="col-content"><div class="tsd-page-title"><ul class="tsd-breadcrumb" aria-label="Breadcrumb"><li><a href="" aria-current="page">SwapModeType</a></li></ul><h1>Type Alias SwapModeType</h1></div><div class="tsd-signature"><span class="tsd-kind-type-alias">SwapModeType</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-keyword">keyof</span> <span class="tsd-signature-keyword">typeof</span> <a href="../variables/SwapMode.html" class="tsd-signature-type tsd-kind-variable">SwapMode</a></div><div class="tsd-comment tsd-typography"><p>Union type representing all possible DOM insertion modes.</p>
|
|
2
2
|
</div><div class="tsd-comment tsd-typography"></div></div><div class="col-sidebar"><div class="page-menu"><div class="tsd-navigation settings"><details class="tsd-accordion"><summary class="tsd-accordion-summary"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h3>Settings</h3></summary><div class="tsd-accordion-details"><div class="tsd-filter-visibility"><span class="settings-label">Member Visibility</span><ul id="tsd-filter-options"><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-protected" name="protected"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Protected</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-external" name="external"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>External</span></label></li></ul></div><div class="tsd-theme-toggle"><label class="settings-label" for="tsd-theme">Theme</label><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div></div><div class="site-menu"><nav class="tsd-navigation"><a href="../index.html">AngularTS</a><ul class="tsd-small-nested-navigation" id="tsd-nav-container"><li>Loading...</li></ul></nav></div></div></div><footer><p class="tsd-generator">Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></footer><div class="overlay"></div></body></html>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<!DOCTYPE html><html class="default" lang="en" data-base="../"><head><meta charset="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>SwapMode | AngularTS</title><meta name="description" content="Documentation for AngularTS"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script defer src="../assets/main.js"></script><script async src="../assets/icons.js" id="tsd-icons-script"></script><script async src="../assets/search.js" id="tsd-search-script"></script><script async src="../assets/navigation.js" id="tsd-nav-script"></script><script async src="../assets/hierarchy.js" id="tsd-hierarchy-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os";document.body.style.display="none";setTimeout(() => window.app?app.showPage():document.body.style.removeProperty("display"),500)</script><header class="tsd-page-toolbar"><div class="tsd-toolbar-contents container"><a href="../index.html" class="title">AngularTS</a><div id="tsd-toolbar-links"></div><button id="tsd-search-trigger" class="tsd-widget" aria-label="Search"><svg width="16" height="16" viewBox="0 0 16 16" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-search"></use></svg></button><dialog id="tsd-search" aria-label="Search"><input role="combobox" id="tsd-search-input" aria-controls="tsd-search-results" aria-autocomplete="list" aria-expanded="true" autocapitalize="off" autocomplete="off" placeholder="Search the docs" maxLength="100"/><ul role="listbox" id="tsd-search-results"></ul><div id="tsd-search-status" aria-live="polite" aria-atomic="true"><div>Preparing search index...</div></div></dialog><a href="#" class="tsd-widget menu" id="tsd-toolbar-menu-trigger" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-menu"></use></svg></a></div></header><div class="container container-main"><div class="col-content"><div class="tsd-page-title"><ul class="tsd-breadcrumb" aria-label="Breadcrumb"><li><a href="" aria-current="page">SwapMode</a></li></ul><h1>Variable SwapMode<code class="tsd-tag">Const</code></h1></div><div class="tsd-signature"><span class="tsd-kind-variable">SwapMode</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol">{</span><br/> <span class="tsd-kind-property">afterbegin</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"afterbegin"</span><span class="tsd-signature-symbol">;</span><br/> <span class="tsd-kind-property">afterend</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"afterend"</span><span class="tsd-signature-symbol">;</span><br/> <span class="tsd-kind-property">beforebegin</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"beforebegin"</span><span class="tsd-signature-symbol">;</span><br/> <span class="tsd-kind-property">beforeend</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"beforeend"</span><span class="tsd-signature-symbol">;</span><br/> <span class="tsd-kind-property">delete</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"delete"</span><span class="tsd-signature-symbol">;</span><br/> <span class="tsd-kind-property">innerHTML</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"innerHTML"</span><span class="tsd-signature-symbol">;</span><br/> <span class="tsd-kind-property">none</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"none"</span><span class="tsd-signature-symbol">;</span><br/> <span class="tsd-kind-property">outerHTML</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"outerHTML"</span><span class="tsd-signature-symbol">;</span><br/> <span class="tsd-kind-property">textContent</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"textContent"</span><span class="tsd-signature-symbol">;</span><br/><span class="tsd-signature-symbol">}</span><span class="tsd-signature-symbol"> = ...</span></div><div class="tsd-comment tsd-typography"><p>Possible values for <code>data-swap</code> attribute</p>
|
|
2
|
+
</div><div class="tsd-type-declaration"><h4>Type declaration</h4><ul class="tsd-parameters"><li class="tsd-parameter"><h5 id="afterbegin"><code class="tsd-tag">Readonly</code><span class="tsd-kind-property">afterbegin</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">"afterbegin"</span></h5><div class="tsd-comment tsd-typography"><p>Inserts HTML inside the element, before its first child</p>
|
|
3
|
+
</div><div class="tsd-comment tsd-typography"></div></li><li class="tsd-parameter"><h5 id="afterend"><code class="tsd-tag">Readonly</code><span class="tsd-kind-property">afterend</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">"afterend"</span></h5><div class="tsd-comment tsd-typography"><p>Inserts HTML immediately after the element itself</p>
|
|
4
|
+
</div><div class="tsd-comment tsd-typography"></div></li><li class="tsd-parameter"><h5 id="beforebegin"><code class="tsd-tag">Readonly</code><span class="tsd-kind-property">beforebegin</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">"beforebegin"</span></h5><div class="tsd-comment tsd-typography"><p>Inserts HTML immediately before the element itself</p>
|
|
5
|
+
</div><div class="tsd-comment tsd-typography"></div></li><li class="tsd-parameter"><h5 id="beforeend"><code class="tsd-tag">Readonly</code><span class="tsd-kind-property">beforeend</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">"beforeend"</span></h5><div class="tsd-comment tsd-typography"><p>Inserts HTML inside the element, after its last child</p>
|
|
6
|
+
</div><div class="tsd-comment tsd-typography"></div></li><li class="tsd-parameter"><h5 id="delete"><code class="tsd-tag">Readonly</code><span class="tsd-kind-property">delete</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">"delete"</span></h5><div class="tsd-comment tsd-typography"><p>Removes the element entirely</p>
|
|
7
|
+
</div><div class="tsd-comment tsd-typography"></div></li><li class="tsd-parameter"><h5 id="innerhtml"><code class="tsd-tag">Readonly</code><span class="tsd-kind-property">innerHTML</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">"innerHTML"</span></h5><div class="tsd-comment tsd-typography"><p>(default) Replaces the contents inside the element</p>
|
|
8
|
+
</div><div class="tsd-comment tsd-typography"></div></li><li class="tsd-parameter"><h5 id="none"><code class="tsd-tag">Readonly</code><span class="tsd-kind-property">none</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">"none"</span></h5><div class="tsd-comment tsd-typography"><p>Performs no insertion (no-op)</p>
|
|
9
|
+
</div><div class="tsd-comment tsd-typography"></div></li><li class="tsd-parameter"><h5 id="outerhtml"><code class="tsd-tag">Readonly</code><span class="tsd-kind-property">outerHTML</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">"outerHTML"</span></h5><div class="tsd-comment tsd-typography"><p>Replaces the entire element, including the tag itself</p>
|
|
10
|
+
</div><div class="tsd-comment tsd-typography"></div></li><li class="tsd-parameter"><h5 id="textcontent"><code class="tsd-tag">Readonly</code><span class="tsd-kind-property">textContent</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">"textContent"</span></h5><div class="tsd-comment tsd-typography"><p>Inserts plain text (without parsing HTML)</p>
|
|
11
|
+
</div><div class="tsd-comment tsd-typography"></div></li></ul></div><div class="tsd-comment tsd-typography"></div></div><div class="col-sidebar"><div class="page-menu"><div class="tsd-navigation settings"><details class="tsd-accordion"><summary class="tsd-accordion-summary"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h3>Settings</h3></summary><div class="tsd-accordion-details"><div class="tsd-filter-visibility"><span class="settings-label">Member Visibility</span><ul id="tsd-filter-options"><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-protected" name="protected"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Protected</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-external" name="external"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>External</span></label></li></ul></div><div class="tsd-theme-toggle"><label class="settings-label" for="tsd-theme">Theme</label><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div></div><div class="site-menu"><nav class="tsd-navigation"><a href="../index.html">AngularTS</a><ul class="tsd-small-nested-navigation" id="tsd-nav-container"><li>Loading...</li></ul></nav></div></div></div><footer><p class="tsd-generator">Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></footer><div class="overlay"></div></body></html>
|
package/legacy.d.ts
CHANGED
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
/// <reference path="jqlite.d.ts" />
|
|
2
|
-
|
|
3
1
|
declare var angular: angular.IAngularStatic;
|
|
4
2
|
|
|
5
3
|
// Support for painless dependency injection
|
|
@@ -662,10 +660,6 @@ declare namespace angular {
|
|
|
662
660
|
$eval(expression: string, locals?: Object): any;
|
|
663
661
|
$eval(expression: (scope: IScope) => any, locals?: Object): any;
|
|
664
662
|
|
|
665
|
-
$evalAsync(): void;
|
|
666
|
-
$evalAsync(expression: string, locals?: Object): void;
|
|
667
|
-
$evalAsync(expression: (scope: IScope) => void, locals?: Object): void;
|
|
668
|
-
|
|
669
663
|
// Defaults to false by the implementation checking strategy
|
|
670
664
|
$new(isolate?: boolean, parent?: IScope): IScope;
|
|
671
665
|
|
|
@@ -1835,14 +1829,6 @@ declare namespace angular {
|
|
|
1835
1829
|
*/
|
|
1836
1830
|
head<T>(url: string, config?: IRequestShortcutConfig): IHttpPromise<T>;
|
|
1837
1831
|
|
|
1838
|
-
/**
|
|
1839
|
-
* Shortcut method to perform JSONP request.
|
|
1840
|
-
*
|
|
1841
|
-
* @param url Relative or absolute URL specifying the destination of the request
|
|
1842
|
-
* @param config Optional configuration object
|
|
1843
|
-
*/
|
|
1844
|
-
jsonp<T>(url: string, config?: IRequestShortcutConfig): IHttpPromise<T>;
|
|
1845
|
-
|
|
1846
1832
|
/**
|
|
1847
1833
|
* Shortcut method to perform POST request.
|
|
1848
1834
|
*
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@angular-wave/angular.ts",
|
|
3
3
|
"description": "A modern, optimized and type-safe version of AngularJS",
|
|
4
4
|
"license": "MIT",
|
|
5
|
-
"version": "0.7.
|
|
5
|
+
"version": "0.7.8",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "dist/angular-ts.esm.js",
|
|
8
8
|
"module": "dist/angular-ts.esm.js",
|
|
@@ -35,7 +35,6 @@
|
|
|
35
35
|
"@rollup/plugin-node-resolve": "latest",
|
|
36
36
|
"@rollup/plugin-terser": "latest",
|
|
37
37
|
"@types/jasmine": "latest",
|
|
38
|
-
"docdash": "latest",
|
|
39
38
|
"eslint": "^9.28.0",
|
|
40
39
|
"eslint-config-prettier": "^10.1.5",
|
|
41
40
|
"eslint-plugin-import": "latest",
|
|
@@ -45,7 +44,6 @@
|
|
|
45
44
|
"globals": "^16.2.0",
|
|
46
45
|
"husky": "^9.1.7",
|
|
47
46
|
"jasmine-core": "latest",
|
|
48
|
-
"jsdoc": "latest",
|
|
49
47
|
"npm-run-all": "latest",
|
|
50
48
|
"playwright": "latest",
|
|
51
49
|
"prettier": "latest",
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { isString } from "../shared/utils.js";
|
|
2
2
|
import { NG_ANIMATE_CHILDREN_DATA } from "./shared.js";
|
|
3
3
|
import { setCacheData } from "../shared/dom.js";
|
|
4
|
-
import { $injectTokens } from "../injection-tokens.js";
|
|
4
|
+
import { $injectTokens as $t } from "../injection-tokens.js";
|
|
5
5
|
|
|
6
|
-
$$AnimateChildrenDirective.$inject = [$
|
|
6
|
+
$$AnimateChildrenDirective.$inject = [$t.$interpolate];
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
9
|
* @param {*} $interpolate
|
package/src/animations/shared.js
CHANGED
|
@@ -76,15 +76,6 @@ export function assertArg(arg, name, reason) {
|
|
|
76
76
|
return arg;
|
|
77
77
|
}
|
|
78
78
|
|
|
79
|
-
export function mergeClasses(a, b) {
|
|
80
|
-
if (!a && !b) return "";
|
|
81
|
-
if (!a) return b;
|
|
82
|
-
if (!b) return a;
|
|
83
|
-
if (Array.isArray(a)) a = a.join(" ");
|
|
84
|
-
if (Array.isArray(b)) b = b.join(" ");
|
|
85
|
-
return `${a} ${b}`;
|
|
86
|
-
}
|
|
87
|
-
|
|
88
79
|
export function packageStyles(options) {
|
|
89
80
|
const styles = {};
|
|
90
81
|
if (options && (options.to || options.from)) {
|
|
@@ -26,7 +26,7 @@ export class Attributes {
|
|
|
26
26
|
/**
|
|
27
27
|
* @param {import('../scope/scope.js').Scope} $rootScope
|
|
28
28
|
* @param {*} $animate
|
|
29
|
-
* @param {import("
|
|
29
|
+
* @param {import("../../services/exception/exception-handler.js").ErrorHandler} $exceptionHandler
|
|
30
30
|
* @param {*} $sce
|
|
31
31
|
* @param {import("../../shared/noderef.js").NodeRef} [nodeRef]
|
|
32
32
|
* @param {Object} [attributesToCopy]
|
|
@@ -37,7 +37,7 @@ import {
|
|
|
37
37
|
isProxy,
|
|
38
38
|
hasOwn,
|
|
39
39
|
} from "../../shared/utils.js";
|
|
40
|
-
import { SCE_CONTEXTS } from "
|
|
40
|
+
import { SCE_CONTEXTS } from "../../services/sce/sce.js";
|
|
41
41
|
import { PREFIX_REGEXP } from "../../shared/constants.js";
|
|
42
42
|
import { createEventDirective } from "../../directive/events/events.js";
|
|
43
43
|
import { Attributes } from "./attributes.js";
|
|
@@ -291,7 +291,7 @@ export class CompileProvider {
|
|
|
291
291
|
"$exceptionHandler",
|
|
292
292
|
/**
|
|
293
293
|
* @param {import("../../core/di/internal-injector.js").InjectorService} $injector
|
|
294
|
-
* @param {import('
|
|
294
|
+
* @param {import('../../services/exception/exception-handler.js').ErrorHandler} $exceptionHandler
|
|
295
295
|
*/
|
|
296
296
|
function ($injector, $exceptionHandler) {
|
|
297
297
|
const directives = [];
|
|
@@ -619,7 +619,7 @@ export class CompileProvider {
|
|
|
619
619
|
/**
|
|
620
620
|
* @param {import("../../core/di/internal-injector.js").InjectorService} $injector
|
|
621
621
|
* @param {*} $interpolate
|
|
622
|
-
* @param {import("
|
|
622
|
+
* @param {import("../../services/exception/exception-handler.js").ErrorHandler} $exceptionHandler
|
|
623
623
|
* @param {*} $templateRequest
|
|
624
624
|
* @param {import("../parse/interface.ts").ParseService} $parse
|
|
625
625
|
* @param {*} $controller
|
package/src/core/di/injector.js
CHANGED
|
@@ -33,9 +33,6 @@ export function createInjector(modulesToLoad, strictDi = false) {
|
|
|
33
33
|
const loadedModules = new Map(); // Keep track of loaded modules to avoid circular dependencies
|
|
34
34
|
|
|
35
35
|
const providerCache = {
|
|
36
|
-
/**
|
|
37
|
-
* @type {import('../../interface.ts').Provider}
|
|
38
|
-
*/
|
|
39
36
|
$provide: {
|
|
40
37
|
provider: supportObject(provider),
|
|
41
38
|
factory: supportObject(factory),
|
|
@@ -62,15 +59,10 @@ export function createInjector(modulesToLoad, strictDi = false) {
|
|
|
62
59
|
const runBlocks = loadModules(modulesToLoad);
|
|
63
60
|
instanceInjector = protoInstanceInjector.get(INJECTOR_LITERAL);
|
|
64
61
|
|
|
65
|
-
runBlocks.forEach((fn) =>
|
|
66
|
-
if (fn) instanceInjector.invoke(fn);
|
|
67
|
-
});
|
|
62
|
+
runBlocks.forEach((fn) => fn && instanceInjector.invoke(fn));
|
|
68
63
|
|
|
69
|
-
instanceInjector.loadNewModules =
|
|
70
|
-
loadModules(mods).forEach((fn) =>
|
|
71
|
-
if (fn) instanceInjector.invoke(fn);
|
|
72
|
-
});
|
|
73
|
-
};
|
|
64
|
+
instanceInjector.loadNewModules = (mods) =>
|
|
65
|
+
loadModules(mods).forEach((fn) => fn && instanceInjector.invoke(fn));
|
|
74
66
|
|
|
75
67
|
return instanceInjector;
|
|
76
68
|
|
|
@@ -199,7 +191,7 @@ export function createInjector(modulesToLoad, strictDi = false) {
|
|
|
199
191
|
|
|
200
192
|
try {
|
|
201
193
|
if (isString(module)) {
|
|
202
|
-
/** @type {import('./ng-module').NgModule} */
|
|
194
|
+
/** @type {import('./ng-module.js').NgModule} */
|
|
203
195
|
const moduleFn = window["angular"].module(module);
|
|
204
196
|
instanceInjector.modules[/** @type {string } */ (module)] = moduleFn;
|
|
205
197
|
runBlocks = runBlocks
|
|
@@ -265,7 +257,6 @@ function extractArgs(fn) {
|
|
|
265
257
|
}
|
|
266
258
|
|
|
267
259
|
/**
|
|
268
|
-
*
|
|
269
260
|
* @param {any} fn
|
|
270
261
|
* @param {boolean} [strictDi]
|
|
271
262
|
* @param {String} [name]
|
|
@@ -304,10 +295,6 @@ export function annotate(fn, strictDi, name) {
|
|
|
304
295
|
return $inject;
|
|
305
296
|
}
|
|
306
297
|
|
|
307
|
-
/**
|
|
308
|
-
* @param {function(string, any):any} delegate
|
|
309
|
-
* @returns {any}
|
|
310
|
-
*/
|
|
311
298
|
function supportObject(delegate) {
|
|
312
299
|
return function (key, value) {
|
|
313
300
|
if (isObject(key)) {
|
|
@@ -186,8 +186,11 @@ export class InjectorService extends AbstractInjector {
|
|
|
186
186
|
*/
|
|
187
187
|
constructor(providerInjector, strictDi) {
|
|
188
188
|
super(strictDi);
|
|
189
|
+
|
|
190
|
+
/** @type {ProviderInjector} */
|
|
189
191
|
this.providerInjector = providerInjector;
|
|
190
|
-
|
|
192
|
+
/** @type {Object.<string, import("./ng-module.js").NgModule>} */
|
|
193
|
+
this.modules = providerInjector.modules;
|
|
191
194
|
}
|
|
192
195
|
|
|
193
196
|
/**
|
package/src/core/di/ng-module.js
CHANGED
|
@@ -1,10 +1,15 @@
|
|
|
1
|
-
import { $injectTokens } from "../../injection-tokens.js";
|
|
1
|
+
import { $injectTokens as $t } from "../../injection-tokens.js";
|
|
2
2
|
import { isFunction, isString, assert } from "../../shared/utils.js";
|
|
3
3
|
|
|
4
|
+
/** @private */
|
|
4
5
|
export const INJECTOR_LITERAL = "$injector";
|
|
6
|
+
/** @private */
|
|
5
7
|
export const COMPILE_LITERAL = "$compileProvider";
|
|
8
|
+
/** @private */
|
|
6
9
|
export const ANIMATION_LITERAL = "$animateProvider";
|
|
10
|
+
/** @private */
|
|
7
11
|
export const FILTER_LITERAL = "$filterProvider";
|
|
12
|
+
/** @private */
|
|
8
13
|
export const CONTROLLER_LITERAL = "$controllerProvider";
|
|
9
14
|
|
|
10
15
|
/**
|
|
@@ -61,7 +66,7 @@ export class NgModule {
|
|
|
61
66
|
* @returns {NgModule}
|
|
62
67
|
*/
|
|
63
68
|
value(name, object) {
|
|
64
|
-
this.invokeQueue.push([$
|
|
69
|
+
this.invokeQueue.push([$t.$provide, "value", [name, object]]);
|
|
65
70
|
return this;
|
|
66
71
|
}
|
|
67
72
|
|
|
@@ -71,11 +76,7 @@ export class NgModule {
|
|
|
71
76
|
* @returns {NgModule}
|
|
72
77
|
*/
|
|
73
78
|
constant(name, object) {
|
|
74
|
-
this.invokeQueue.unshift([
|
|
75
|
-
$injectTokens.$provide,
|
|
76
|
-
"constant",
|
|
77
|
-
[name, object],
|
|
78
|
-
]);
|
|
79
|
+
this.invokeQueue.unshift([$t.$provide, "constant", [name, object]]);
|
|
79
80
|
return this;
|
|
80
81
|
}
|
|
81
82
|
|
|
@@ -120,11 +121,7 @@ export class NgModule {
|
|
|
120
121
|
if (providerFunction && isFunction(providerFunction)) {
|
|
121
122
|
providerFunction.$$moduleName = name;
|
|
122
123
|
}
|
|
123
|
-
this.invokeQueue.push([
|
|
124
|
-
$injectTokens.$provide,
|
|
125
|
-
"factory",
|
|
126
|
-
[name, providerFunction],
|
|
127
|
-
]);
|
|
124
|
+
this.invokeQueue.push([$t.$provide, "factory", [name, providerFunction]]);
|
|
128
125
|
return this;
|
|
129
126
|
}
|
|
130
127
|
|
|
@@ -137,11 +134,7 @@ export class NgModule {
|
|
|
137
134
|
if (serviceFunction && isFunction(serviceFunction)) {
|
|
138
135
|
serviceFunction.$$moduleName = name;
|
|
139
136
|
}
|
|
140
|
-
this.invokeQueue.push([
|
|
141
|
-
$injectTokens.$provide,
|
|
142
|
-
"service",
|
|
143
|
-
[name, serviceFunction],
|
|
144
|
-
]);
|
|
137
|
+
this.invokeQueue.push([$t.$provide, "service", [name, serviceFunction]]);
|
|
145
138
|
return this;
|
|
146
139
|
}
|
|
147
140
|
|
|
@@ -154,11 +147,7 @@ export class NgModule {
|
|
|
154
147
|
if (providerType && isFunction(providerType)) {
|
|
155
148
|
providerType.$$moduleName = name;
|
|
156
149
|
}
|
|
157
|
-
this.invokeQueue.push([
|
|
158
|
-
$injectTokens.$provide,
|
|
159
|
-
"provider",
|
|
160
|
-
[name, providerType],
|
|
161
|
-
]);
|
|
150
|
+
this.invokeQueue.push([$t.$provide, "provider", [name, providerType]]);
|
|
162
151
|
return this;
|
|
163
152
|
}
|
|
164
153
|
|
|
@@ -171,11 +160,7 @@ export class NgModule {
|
|
|
171
160
|
if (decorFn && isFunction(decorFn)) {
|
|
172
161
|
decorFn.$$moduleName = name;
|
|
173
162
|
}
|
|
174
|
-
this.configBlocks.push([
|
|
175
|
-
$injectTokens.$provide,
|
|
176
|
-
"decorator",
|
|
177
|
-
[name, decorFn],
|
|
178
|
-
]);
|
|
163
|
+
this.configBlocks.push([$t.$provide, "decorator", [name, decorFn]]);
|
|
179
164
|
return this;
|
|
180
165
|
}
|
|
181
166
|
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { $injectTokens as $t } from "../../injection-tokens.js";
|
|
1
2
|
import { isObject } from "../../shared/utils.js";
|
|
2
3
|
import { filterFilter } from "../../filters/filter.js";
|
|
3
4
|
import { jsonFilter } from "../../filters/filters.js";
|
|
@@ -8,48 +9,47 @@ import {
|
|
|
8
9
|
$IsStateFilter,
|
|
9
10
|
} from "../../router/state-filters.js";
|
|
10
11
|
|
|
11
|
-
|
|
12
|
+
const SUFFIX = "Filter";
|
|
12
13
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
14
|
+
export class FilterProvider {
|
|
15
|
+
static $inject = [$t.$provide];
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* @param {import('../../interface.ts').Provider} $provide
|
|
19
|
+
*/
|
|
20
|
+
constructor($provide) {
|
|
21
|
+
this.$provide = $provide;
|
|
22
|
+
this.register({
|
|
23
|
+
filter: filterFilter,
|
|
24
|
+
json: jsonFilter,
|
|
25
|
+
limitTo: limitToFilter,
|
|
26
|
+
orderBy: orderByFilter,
|
|
27
|
+
isState: $IsStateFilter,
|
|
28
|
+
includedByState: $IncludedByStateFilter,
|
|
29
|
+
});
|
|
30
|
+
}
|
|
18
31
|
|
|
19
32
|
/**
|
|
20
33
|
* @param {string|Record<string, import('../../interface.ts').FilterFactory>} name
|
|
21
|
-
* @param {import('../../interface.ts').FilterFactory} factory
|
|
22
|
-
* @return {import('../../interface.ts').
|
|
34
|
+
* @param {import('../../interface.ts').FilterFactory} [factory]
|
|
35
|
+
* @return {import('../../interface.ts').Provider}
|
|
23
36
|
*/
|
|
24
|
-
|
|
37
|
+
register(name, factory) {
|
|
25
38
|
if (isObject(name)) {
|
|
26
39
|
const filters = {};
|
|
27
40
|
Object.entries(name).forEach(([key, filter]) => {
|
|
28
|
-
filters[key] = register(key, filter);
|
|
41
|
+
filters[key] = this.register(key, filter);
|
|
29
42
|
});
|
|
30
43
|
}
|
|
31
|
-
return
|
|
44
|
+
return this.$provide.factory(name + SUFFIX, factory);
|
|
32
45
|
}
|
|
33
46
|
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
this.$get = [
|
|
37
|
-
"$injector",
|
|
47
|
+
$get = [
|
|
48
|
+
$t.$injector,
|
|
38
49
|
/**
|
|
39
50
|
* @param {import("../../core/di/internal-injector.js").InjectorService} $injector
|
|
40
|
-
* @returns
|
|
51
|
+
* @returns {import('../../interface.ts').FilterFn}
|
|
41
52
|
*/
|
|
42
|
-
|
|
43
|
-
return function (name) {
|
|
44
|
-
return $injector.get(name + suffix);
|
|
45
|
-
};
|
|
46
|
-
},
|
|
53
|
+
($injector) => (/** @type {string} */ name) => $injector.get(name + SUFFIX),
|
|
47
54
|
];
|
|
48
|
-
|
|
49
|
-
register("filter", filterFilter);
|
|
50
|
-
register("json", jsonFilter);
|
|
51
|
-
register("limitTo", limitToFilter);
|
|
52
|
-
register("orderBy", orderByFilter);
|
|
53
|
-
register("isState", $IsStateFilter);
|
|
54
|
-
register("includedByState", $IncludedByStateFilter);
|
|
55
55
|
}
|