@angular-wave/angular.ts 0.14.1 → 0.14.2
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.
|
@@ -7,10 +7,10 @@ import type { NodeRef } from "../../shared/noderef.js";
|
|
|
7
7
|
*
|
|
8
8
|
* The function returns the DOM content to be injected (transcluded) into the directive.
|
|
9
9
|
*/
|
|
10
|
-
export type TranscludeFn =
|
|
11
|
-
clone?: Element | Node | ChildNode | NodeList | Node[],
|
|
12
|
-
|
|
13
|
-
|
|
10
|
+
export type TranscludeFn = {
|
|
11
|
+
(clone?: Element | Node | ChildNode | NodeList | Node[], scope?: Scope): void;
|
|
12
|
+
$$slots?: any;
|
|
13
|
+
};
|
|
14
14
|
/**
|
|
15
15
|
* A specialized version of `TranscludeFn` with the scope argument already bound.
|
|
16
16
|
* This function requires no parameters and returns the same result as `TranscludeFn`.
|
|
@@ -26,11 +26,15 @@ export interface SimpleChange {
|
|
|
26
26
|
/**
|
|
27
27
|
* A function returned by the `$compile` service that links a compiled template to a scope.
|
|
28
28
|
*/
|
|
29
|
-
export type PublicLinkFn =
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
29
|
+
export type PublicLinkFn = {
|
|
30
|
+
(
|
|
31
|
+
scope: Scope,
|
|
32
|
+
cloneConnectFn?: TranscludeFn,
|
|
33
|
+
options?: any,
|
|
34
|
+
): Element | Node | ChildNode | Node[];
|
|
35
|
+
pre?: any;
|
|
36
|
+
post?: any;
|
|
37
|
+
};
|
|
34
38
|
/**
|
|
35
39
|
* Entry point for the `$compile` service.
|
|
36
40
|
*/
|
package/@types/namespace.d.ts
CHANGED
|
@@ -108,15 +108,10 @@ declare global {
|
|
|
108
108
|
type NgModule = TNgModule;
|
|
109
109
|
type PubSubProvider = TPubSubProvider;
|
|
110
110
|
type CompositeLinkFn = TCompositeLinkFn;
|
|
111
|
-
type PublicLinkFn = TPublicLinkFn
|
|
112
|
-
pre: any;
|
|
113
|
-
post: any;
|
|
114
|
-
};
|
|
111
|
+
type PublicLinkFn = TPublicLinkFn;
|
|
115
112
|
type NodeLinkFn = TNodeLinkFn;
|
|
116
113
|
type NodeLinkFnCtx = TNodeLinkFnCtx;
|
|
117
|
-
type TranscludeFn = TTranscludeFn
|
|
118
|
-
$$slots: any;
|
|
119
|
-
};
|
|
114
|
+
type TranscludeFn = TTranscludeFn;
|
|
120
115
|
type BoundTranscludeFn = TBoundTranscludeFn;
|
|
121
116
|
type LinkFnMapping = TLinkFnMapping;
|
|
122
117
|
type AnchorScrollProvider = TAnchorScrollProvider;
|
|
@@ -132,9 +127,7 @@ declare global {
|
|
|
132
127
|
type CookieService = TCookieService;
|
|
133
128
|
type ExceptionHandlerService = TExceptionHandler;
|
|
134
129
|
type FilterFn = TFilterFn;
|
|
135
|
-
type FilterFactory = TFilterFactory
|
|
136
|
-
$$moduleName: string;
|
|
137
|
-
};
|
|
130
|
+
type FilterFactory = TFilterFactory;
|
|
138
131
|
type FilterService = TFilterService;
|
|
139
132
|
type HttpParamSerializerSerService = THttpParamSerializer;
|
|
140
133
|
type HttpService = THttpService;
|
|
@@ -163,9 +156,7 @@ declare global {
|
|
|
163
156
|
T extends
|
|
164
157
|
| ((...args: any[]) => any)
|
|
165
158
|
| (abstract new (...args: any[]) => any),
|
|
166
|
-
> = TInjectable<T
|
|
167
|
-
$$moduleName: string;
|
|
168
|
-
};
|
|
159
|
+
> = TInjectable<T>;
|
|
169
160
|
type StorageBackend = TStorageBackend;
|
|
170
161
|
type StorageType = TStorageType;
|
|
171
162
|
type StreamConnectionConfig = TStreamConnectionConfig;
|
package/dist/angular-ts.esm.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* Version: 0.14.
|
|
1
|
+
/* Version: 0.14.2 - December 7, 2025 03:52:37 */
|
|
2
2
|
const VALID_CLASS = "ng-valid";
|
|
3
3
|
const INVALID_CLASS = "ng-invalid";
|
|
4
4
|
const PRISTINE_CLASS = "ng-pristine";
|
|
@@ -40362,7 +40362,7 @@ class Angular {
|
|
|
40362
40362
|
/**
|
|
40363
40363
|
* @type {string} `version` from `package.json`
|
|
40364
40364
|
*/
|
|
40365
|
-
this.version = "0.14.
|
|
40365
|
+
this.version = "0.14.2"; //inserted via rollup plugin
|
|
40366
40366
|
|
|
40367
40367
|
/** @type {!Array<string|any>} */
|
|
40368
40368
|
this.bootsrappedModules = [];
|
package/dist/angular-ts.umd.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* Version: 0.14.
|
|
1
|
+
/* Version: 0.14.2 - December 7, 2025 03:52:36 */
|
|
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) :
|
|
@@ -40368,7 +40368,7 @@
|
|
|
40368
40368
|
/**
|
|
40369
40369
|
* @type {string} `version` from `package.json`
|
|
40370
40370
|
*/
|
|
40371
|
-
this.version = "0.14.
|
|
40371
|
+
this.version = "0.14.2"; //inserted via rollup plugin
|
|
40372
40372
|
|
|
40373
40373
|
/** @type {!Array<string|any>} */
|
|
40374
40374
|
this.bootsrappedModules = [];
|