@angular-wave/angular.ts 0.9.1 → 0.9.3
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/angular.d.ts +150 -0
- package/@types/animations/animate-cache.d.ts +50 -0
- package/@types/animations/animate-children-directive.d.ts +10 -0
- package/@types/animations/animate-css-driver.d.ts +18 -0
- package/@types/animations/animate-css.d.ts +18 -0
- package/@types/animations/animate-js-driver.d.ts +14 -0
- package/@types/animations/animate-js.d.ts +23 -0
- package/@types/animations/animate-queue.d.ts +28 -0
- package/@types/animations/animate-runner.d.ts +31 -0
- package/@types/animations/animate-swap.d.ts +9 -0
- package/@types/animations/animate.d.ts +450 -0
- package/@types/animations/animation.d.ts +14 -0
- package/@types/animations/interface.d.ts +17 -0
- package/@types/animations/raf-scheduler.d.ts +37 -0
- package/@types/animations/shared.d.ts +74 -0
- package/@types/core/compile/compile.d.ts +201 -0
- package/@types/core/controller/controller.d.ts +54 -0
- package/@types/core/di/injector.d.ts +22 -0
- package/@types/core/filter/filter.d.ts +23 -0
- package/@types/core/interpolate/interpolate.d.ts +38 -0
- package/@types/core/parse/ast/ast-node.d.ts +56 -0
- package/@types/core/parse/ast/ast.d.ts +164 -0
- package/@types/core/parse/lexer/lexer.d.ts +119 -0
- package/@types/core/parse/lexer/token.d.ts +17 -0
- package/@types/core/parse/parse.d.ts +33 -0
- package/@types/core/parse/parser/parser.d.ts +41 -0
- package/@types/core/sanitize/sanitize-uri.d.ts +40 -0
- package/@types/directive/aria/aria.d.ts +104 -0
- package/@types/directive/attrs/attrs.d.ts +8 -0
- package/@types/directive/bind/bind.d.ts +18 -0
- package/@types/directive/channel/channel.d.ts +10 -0
- package/@types/directive/class/class.d.ts +3 -0
- package/@types/directive/cloak/cloak.d.ts +4 -0
- package/@types/directive/controller/controller.d.ts +4 -0
- package/@types/directive/events/events.d.ts +21 -0
- package/@types/directive/form/form.d.ts +264 -0
- package/@types/directive/http/http.d.ts +46 -0
- package/@types/directive/if/if.d.ts +10 -0
- package/@types/directive/include/include.d.ts +28 -0
- package/@types/directive/init/init.d.ts +4 -0
- package/@types/directive/input/input.d.ts +70 -0
- package/@types/directive/messages/messages.d.ts +63 -0
- package/@types/directive/model/model.d.ts +515 -0
- package/@types/directive/model-options/model-options.d.ts +56 -0
- package/@types/directive/non-bindable/non-bindable.d.ts +4 -0
- package/@types/directive/observe/observe.d.ts +9 -0
- package/@types/directive/options/options.d.ts +13 -0
- package/@types/directive/ref/ref.d.ts +11 -0
- package/@types/directive/repeat/repeat.d.ts +11 -0
- package/@types/directive/script/script.d.ts +10 -0
- package/@types/directive/select/select.d.ts +15 -0
- package/@types/directive/setter/setter.d.ts +12 -0
- package/@types/directive/show-hide/show-hide.d.ts +19 -0
- package/@types/directive/style/style.d.ts +4 -0
- package/@types/directive/switch/switch.d.ts +18 -0
- package/@types/directive/transclude/transclude.d.ts +10 -0
- package/@types/directive/validators/validators.d.ts +149 -0
- package/@types/filters/filter.d.ts +4 -0
- package/@types/filters/filters.d.ts +38 -0
- package/@types/filters/limit-to.d.ts +4 -0
- package/@types/filters/order-by.d.ts +7 -0
- package/@types/index.d.ts +2 -0
- package/@types/interface.d.ts +5 -4
- package/@types/ng.d.ts +8 -0
- package/@types/router/common/trace.d.ts +66 -0
- package/@types/router/directives/state-directives.d.ts +46 -0
- package/@types/router/directives/view-directive.d.ts +138 -0
- package/@types/router/glob/glob.d.ts +81 -0
- package/@types/router/hooks/core-resolvables.d.ts +2 -0
- package/@types/router/hooks/ignored-transition.d.ts +1 -0
- package/@types/router/hooks/invalid-transition.d.ts +1 -0
- package/@types/router/hooks/lazy-load.d.ts +42 -0
- package/@types/router/hooks/on-enter-exit-retain.d.ts +3 -0
- package/@types/router/hooks/redirect-to.d.ts +4 -0
- package/@types/router/hooks/resolve.d.ts +4 -0
- package/@types/router/hooks/update-globals.d.ts +1 -0
- package/@types/router/hooks/url.d.ts +5 -0
- package/@types/router/hooks/views.d.ts +5 -0
- package/@types/router/params/interface.d.ts +606 -0
- package/@types/router/params/param-factory.d.ts +16 -0
- package/@types/router/params/param-type.d.ts +59 -0
- package/@types/router/params/param.d.ts +71 -0
- package/@types/router/params/state-params.d.ts +12 -0
- package/@types/router/path/path-node.d.ts +38 -0
- package/@types/router/path/path-utils.d.ts +88 -0
- package/@types/router/resolve/interface.d.ts +200 -0
- package/@types/router/resolve/resolvable.d.ts +50 -0
- package/@types/router/resolve/resolve-context.d.ts +93 -0
- package/@types/router/router.d.ts +47 -0
- package/@types/router/state/interface.d.ts +983 -0
- package/@types/router/state/state-builder.d.ts +95 -0
- package/@types/router/state/state-matcher.d.ts +7 -0
- package/@types/router/state/state-object.d.ts +83 -0
- package/@types/router/state/state-queue-manager.d.ts +29 -0
- package/@types/router/state/state-registry.d.ts +133 -0
- package/@types/router/state/state-service.d.ts +425 -0
- package/@types/router/state/target-state.d.ts +102 -0
- package/@types/router/state/views.d.ts +58 -0
- package/@types/router/state-filters.d.ts +39 -0
- package/@types/router/template-factory.d.ts +117 -0
- package/@types/router/transition/hook-builder.d.ts +45 -0
- package/@types/router/transition/hook-registry.d.ts +102 -0
- package/@types/router/transition/interface.d.ts +880 -0
- package/@types/router/transition/reject-factory.d.ts +43 -0
- package/@types/router/transition/transition-event-type.d.ts +24 -0
- package/@types/router/transition/transition-hook.d.ts +86 -0
- package/@types/router/transition/transition-service.d.ts +116 -0
- package/@types/router/transition/transition.d.ts +331 -0
- package/@types/router/url/url-config.d.ts +99 -0
- package/@types/router/url/url-matcher.d.ts +174 -0
- package/@types/router/url/url-rule.d.ts +161 -0
- package/@types/router/url/url-rules.d.ts +249 -0
- package/@types/router/url/url-service.d.ts +254 -0
- package/@types/router/view/interface.d.ts +44 -0
- package/@types/router/view/view.d.ts +149 -0
- package/@types/router/view-scroll.d.ts +10 -0
- package/@types/services/anchor-scroll.d.ts +25 -0
- package/@types/services/cookie-reader.d.ts +4 -0
- package/@types/services/http/http.d.ts +134 -0
- package/@types/services/http-backend/http-backend.d.ts +58 -0
- package/@types/services/sce/sce.d.ts +238 -0
- package/@types/services/template-request.d.ts +55 -0
- package/@types/shared/common.d.ts +197 -0
- package/@types/shared/hof.d.ts +108 -0
- package/@types/shared/predicates.d.ts +17 -0
- package/@types/shared/queue.d.ts +64 -0
- package/@types/shared/strings.d.ts +58 -0
- package/dist/angular-ts.esm.js +2 -3
- package/dist/angular-ts.umd.js +2 -3
- package/dist/angular-ts.umd.min.js +1 -1
- package/docs/layouts/shortcodes/version.html +1 -1
- package/package.json +1 -1
- package/src/interface.ts +5 -4
- package/src/services/pubsub/pubsub.js +0 -1
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Functions that manipulate strings
|
|
3
|
+
*/
|
|
4
|
+
/**
|
|
5
|
+
* Returns a string shortened to a maximum length
|
|
6
|
+
*
|
|
7
|
+
* If the string is already less than the `max` length, return the string.
|
|
8
|
+
* Else return the string, shortened to `max - 3` and append three dots ("...").
|
|
9
|
+
*
|
|
10
|
+
* @param max the maximum length of the string to return
|
|
11
|
+
* @param str the input string
|
|
12
|
+
*/
|
|
13
|
+
export function maxLength(max: any, str: any): any;
|
|
14
|
+
/**
|
|
15
|
+
* Returns a string, with spaces added to the end, up to a desired str length
|
|
16
|
+
*
|
|
17
|
+
* If the string is already longer than the desired length, return the string.
|
|
18
|
+
* Else returns the string, with extra spaces on the end, such that it reaches `length` characters.
|
|
19
|
+
*
|
|
20
|
+
* @param length the desired length of the string to return
|
|
21
|
+
* @param str the input string
|
|
22
|
+
*/
|
|
23
|
+
export function padString(length: any, str: any): any;
|
|
24
|
+
export function kebobString(camelCase: any): any;
|
|
25
|
+
export function functionToString(fn: any): any;
|
|
26
|
+
export function fnToString(fn: any): any;
|
|
27
|
+
export function stringify(o: any): any;
|
|
28
|
+
/**
|
|
29
|
+
* Splits on a delimiter, but returns the delimiters in the array
|
|
30
|
+
*
|
|
31
|
+
* #### Example:
|
|
32
|
+
* ```js
|
|
33
|
+
* var splitOnSlashes = splitOnDelim('/');
|
|
34
|
+
* splitOnSlashes("/foo"); // ["/", "foo"]
|
|
35
|
+
* splitOnSlashes("/foo/"); // ["/", "foo", "/"]
|
|
36
|
+
* ```
|
|
37
|
+
*/
|
|
38
|
+
export function splitOnDelim(delim: any): (str: any) => any;
|
|
39
|
+
/**
|
|
40
|
+
* Reduce fn that joins neighboring strings
|
|
41
|
+
*
|
|
42
|
+
* Given an array of strings, returns a new array
|
|
43
|
+
* where all neighboring strings have been joined.
|
|
44
|
+
*
|
|
45
|
+
* #### Example:
|
|
46
|
+
* ```js
|
|
47
|
+
* let arr = ["foo", "bar", 1, "baz", "", "qux" ];
|
|
48
|
+
* arr.reduce(joinNeighborsR, []) // ["foobar", 1, "bazqux" ]
|
|
49
|
+
* ```
|
|
50
|
+
*/
|
|
51
|
+
export function joinNeighborsR(acc: any, x: any): any;
|
|
52
|
+
export function beforeAfterSubstr(char: any): (str: any) => any[];
|
|
53
|
+
export const hostRegex: RegExp;
|
|
54
|
+
export function stripLastPathElement(str: any): any;
|
|
55
|
+
export function splitHash(str: any): any[];
|
|
56
|
+
export function splitQuery(str: any): any[];
|
|
57
|
+
export function splitEqual(str: any): any[];
|
|
58
|
+
export function trimHashVal(str: any): any;
|
package/dist/angular-ts.esm.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* Version: 0.9.
|
|
1
|
+
/* Version: 0.9.3 - October 9, 2025 19:24:12 */
|
|
2
2
|
const VALID_CLASS = "ng-valid";
|
|
3
3
|
const INVALID_CLASS = "ng-invalid";
|
|
4
4
|
const PRISTINE_CLASS = "ng-pristine";
|
|
@@ -28571,7 +28571,6 @@ class Rejection {
|
|
|
28571
28571
|
* @extends {ServiceProvider}
|
|
28572
28572
|
*/
|
|
28573
28573
|
class PubSubProvider {
|
|
28574
|
-
/** @private */
|
|
28575
28574
|
constructor() {
|
|
28576
28575
|
/**
|
|
28577
28576
|
* @type {PubSub}
|
|
@@ -35702,7 +35701,7 @@ class Angular {
|
|
|
35702
35701
|
/**
|
|
35703
35702
|
* @type {string} `version` from `package.json`
|
|
35704
35703
|
*/
|
|
35705
|
-
this.version = "0.9.
|
|
35704
|
+
this.version = "0.9.3"; //inserted via rollup plugin
|
|
35706
35705
|
|
|
35707
35706
|
/** @type {!Array<string|any>} */
|
|
35708
35707
|
this.bootsrappedModules = [];
|
package/dist/angular-ts.umd.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* Version: 0.9.
|
|
1
|
+
/* Version: 0.9.3 - October 9, 2025 19:24:11 */
|
|
2
2
|
(function (global, factory) {
|
|
3
3
|
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
|
|
4
4
|
typeof define === 'function' && define.amd ? define(['exports'], factory) :
|
|
@@ -28577,7 +28577,6 @@
|
|
|
28577
28577
|
* @extends {ServiceProvider}
|
|
28578
28578
|
*/
|
|
28579
28579
|
class PubSubProvider {
|
|
28580
|
-
/** @private */
|
|
28581
28580
|
constructor() {
|
|
28582
28581
|
/**
|
|
28583
28582
|
* @type {PubSub}
|
|
@@ -35708,7 +35707,7 @@
|
|
|
35708
35707
|
/**
|
|
35709
35708
|
* @type {string} `version` from `package.json`
|
|
35710
35709
|
*/
|
|
35711
|
-
this.version = "0.9.
|
|
35710
|
+
this.version = "0.9.3"; //inserted via rollup plugin
|
|
35712
35711
|
|
|
35713
35712
|
/** @type {!Array<string|any>} */
|
|
35714
35713
|
this.bootsrappedModules = [];
|