@angular-wave/angular.ts 0.9.8 → 0.10.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 +2 -2
- package/@types/animations/animate-js.d.ts +1 -1
- package/@types/animations/animate-queue.d.ts +0 -1
- package/@types/animations/animate-swap.d.ts +2 -4
- package/@types/animations/animate.d.ts +2 -2
- package/@types/animations/raf-scheduler.d.ts +4 -4
- package/@types/animations/shared.d.ts +30 -2
- package/@types/core/compile/attributes.d.ts +5 -8
- package/@types/core/compile/compile.d.ts +6 -63
- package/@types/core/compile/inteface.d.ts +82 -0
- package/@types/core/controller/controller.d.ts +1 -1
- package/@types/core/di/ng-module.d.ts +14 -14
- package/@types/core/scope/interface.d.ts +18 -0
- package/@types/core/scope/scope.d.ts +16 -97
- package/@types/directive/aria/aria.d.ts +11 -13
- package/@types/directive/attrs/attrs.d.ts +2 -2
- package/@types/directive/channel/channel.d.ts +3 -5
- package/@types/directive/cloak/cloak.d.ts +2 -2
- package/@types/directive/events/events.d.ts +16 -0
- package/@types/directive/http/http.d.ts +4 -22
- package/@types/directive/if/if.d.ts +2 -4
- package/@types/directive/include/include.d.ts +4 -4
- package/@types/directive/messages/messages.d.ts +3 -3
- package/@types/directive/observe/observe.d.ts +2 -5
- package/@types/directive/options/options.d.ts +2 -2
- package/@types/directive/transclude/transclude.d.ts +4 -4
- package/@types/directive/viewport/viewport.d.ts +4 -0
- package/@types/directive/worker/worker.d.ts +15 -0
- package/@types/interface.d.ts +6 -5
- package/@types/namespace.d.ts +69 -40
- package/@types/router/directives/view-directive.d.ts +2 -2
- package/@types/router/path/path-utils.d.ts +2 -2
- package/@types/router/state/state-object.d.ts +6 -6
- package/@types/router/state/state-service.d.ts +3 -3
- package/@types/router/template-factory.d.ts +1 -1
- package/@types/router/transition/hook-builder.d.ts +1 -1
- package/@types/router/transition/interface.d.ts +1 -12
- package/@types/router/transition/transition-hook.d.ts +31 -0
- package/@types/router/transition/transition-service.d.ts +1 -1
- package/@types/router/transition/transition.d.ts +2 -2
- package/@types/services/pubsub/pubsub.d.ts +2 -2
- package/@types/services/sse/interface.d.ts +27 -1
- package/@types/services/sse/sse.d.ts +4 -3
- package/@types/services/worker/interface.d.ts +12 -0
- package/@types/services/worker/worker.d.ts +31 -0
- package/@types/shared/url-utils/url-utils.d.ts +14 -14
- package/README.md +2 -2
- package/dist/angular-ts.esm.js +1462 -1147
- package/dist/angular-ts.umd.js +1462 -1147
- package/dist/angular-ts.umd.min.js +1 -1
- package/dist/angular.css +1 -0
- package/package.json +4 -3
- package/css/angular.css +0 -16
package/dist/angular.css
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.ng-cloak,.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.10.0",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "dist/angular-ts.esm.js",
|
|
8
8
|
"module": "dist/angular-ts.esm.js",
|
|
@@ -10,14 +10,13 @@
|
|
|
10
10
|
"types": "@types/namespace.d.ts",
|
|
11
11
|
"files": [
|
|
12
12
|
"@types",
|
|
13
|
-
"css/",
|
|
14
13
|
"dist/",
|
|
15
14
|
"README.md",
|
|
16
15
|
"LICENSE"
|
|
17
16
|
],
|
|
18
17
|
"repository": {
|
|
19
18
|
"type": "git",
|
|
20
|
-
"url": "https://github.com/
|
|
19
|
+
"url": "https://github.com/angular-wave/angular.ts.git"
|
|
21
20
|
},
|
|
22
21
|
"keywords": [
|
|
23
22
|
"AngularJS",
|
|
@@ -42,6 +41,7 @@
|
|
|
42
41
|
"@rollup/plugin-node-resolve": "latest",
|
|
43
42
|
"@rollup/plugin-terser": "latest",
|
|
44
43
|
"@types/jasmine": "latest",
|
|
44
|
+
"cssnano": "^7.1.1",
|
|
45
45
|
"eslint": "^9.28.0",
|
|
46
46
|
"eslint-config-prettier": "^10.1.5",
|
|
47
47
|
"eslint-plugin-import": "latest",
|
|
@@ -53,6 +53,7 @@
|
|
|
53
53
|
"jasmine-core": "latest",
|
|
54
54
|
"npm-run-all": "latest",
|
|
55
55
|
"playwright": "latest",
|
|
56
|
+
"postcss": "^8.5.6",
|
|
56
57
|
"prettier": "latest",
|
|
57
58
|
"rollup": "latest",
|
|
58
59
|
"rollup-plugin-version-injector": "latest",
|
package/css/angular.css
DELETED