@angular-wave/angular.ts 0.10.0 → 0.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/@types/angular.d.ts +22 -9
- package/@types/animations/animate-css-driver.d.ts +0 -1
- package/@types/animations/animate-css.d.ts +0 -1
- package/@types/animations/animate-js-driver.d.ts +1 -7
- package/@types/animations/animate-js.d.ts +1 -4
- package/@types/animations/animate-queue.d.ts +2 -3
- package/@types/animations/animate.d.ts +22 -22
- package/@types/animations/animation.d.ts +2 -2
- package/@types/animations/interface.d.ts +12 -0
- package/@types/animations/runner/animate-runner.d.ts +99 -0
- package/@types/core/filter/filter.d.ts +2 -2
- package/@types/core/scope/scope.d.ts +5 -0
- package/@types/directive/class/class.d.ts +3 -3
- package/@types/directive/inject/inject.d.ts +2 -2
- package/@types/directive/input/input.d.ts +10 -10
- package/@types/directive/messages/messages.d.ts +1 -1
- package/@types/interface.d.ts +35 -6
- package/@types/namespace.d.ts +4 -0
- package/@types/ng.d.ts +3 -5
- package/@types/router/params/interface.d.ts +0 -25
- package/@types/router/state/interface.d.ts +0 -9
- package/@types/router/template-factory.d.ts +1 -1
- package/@types/router/transition/interface.d.ts +0 -33
- package/@types/shared/dom.d.ts +4 -5
- package/dist/angular-ts.esm.js +425 -318
- package/dist/angular-ts.umd.js +425 -318
- package/dist/angular-ts.umd.min.js +1 -1
- package/dist/angular.css +1 -1
- package/package.json +1 -2
- package/@types/animations/animate-runner.d.ts +0 -31
package/dist/angular.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.ng-
|
|
1
|
+
.ng-hide:not(.ng-hide-animate),[data-ng-cloak],[ng-cloak]{display:none!important}.ng-animate-shim{visibility:hidden}.ng-anchor{position:absolute}
|
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.
|
|
5
|
+
"version": "0.11.0",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "dist/angular-ts.esm.js",
|
|
8
8
|
"module": "dist/angular-ts.esm.js",
|
|
@@ -31,7 +31,6 @@
|
|
|
31
31
|
"express": "node --watch ./utils/express.js",
|
|
32
32
|
"build": "vite build",
|
|
33
33
|
"playwright": "./node_modules/.bin/playwright test",
|
|
34
|
-
"generate-docs": "node_modules/.bin/typedoc",
|
|
35
34
|
"prepare": "husky"
|
|
36
35
|
},
|
|
37
36
|
"devDependencies": {
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
export function AnimateAsyncRunFactoryProvider(): void;
|
|
2
|
-
export class AnimateAsyncRunFactoryProvider {
|
|
3
|
-
$get: (() => () => (callback: any) => void)[];
|
|
4
|
-
}
|
|
5
|
-
export function AnimateRunnerFactoryProvider(): void;
|
|
6
|
-
export class AnimateRunnerFactoryProvider {
|
|
7
|
-
$get: (string | ((animateAsyncRun: any) => typeof AnimateRunner))[];
|
|
8
|
-
}
|
|
9
|
-
export class AnimateRunner {
|
|
10
|
-
static chain(chain: any, callback: any): void;
|
|
11
|
-
static all(runners: any, callback: any): void;
|
|
12
|
-
constructor(host: any);
|
|
13
|
-
_doneCallbacks: any[];
|
|
14
|
-
_tick: (fn: any) => void;
|
|
15
|
-
_state: number;
|
|
16
|
-
setHost(host: any): void;
|
|
17
|
-
host: any;
|
|
18
|
-
done(fn: any): void;
|
|
19
|
-
progress(): void;
|
|
20
|
-
getPromise(): Promise<any>;
|
|
21
|
-
promise: Promise<any>;
|
|
22
|
-
then(resolveHandler: any, rejectHandler: any): Promise<any>;
|
|
23
|
-
catch(handler: any): Promise<any>;
|
|
24
|
-
finally(handler: any): Promise<any>;
|
|
25
|
-
pause(): void;
|
|
26
|
-
resume(): void;
|
|
27
|
-
end(): void;
|
|
28
|
-
cancel(): void;
|
|
29
|
-
complete(response: any): void;
|
|
30
|
-
_resolve(response: any): void;
|
|
31
|
-
}
|