@taiga-ui/core 3.62.0 → 3.64.0-canary.0c1cd7d
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/bundles/taiga-ui-core-components-button.umd.js +1 -1
- package/bundles/taiga-ui-core-components-button.umd.js.map +1 -1
- package/bundles/taiga-ui-core-components-hosted-dropdown.umd.js +2 -7
- package/bundles/taiga-ui-core-components-hosted-dropdown.umd.js.map +1 -1
- package/bundles/taiga-ui-core-components-notification.umd.js +1 -1
- package/bundles/taiga-ui-core-components-notification.umd.js.map +1 -1
- package/bundles/taiga-ui-core-components-root.umd.js +6 -6
- package/bundles/taiga-ui-core-components-root.umd.js.map +1 -1
- package/components/hosted-dropdown/hosted-dropdown.component.d.ts +0 -1
- package/components/root/root.component.d.ts +1 -1
- package/constants/cache-basting-payload.d.ts +1 -1
- package/esm2015/components/button/button.component.js +1 -1
- package/esm2015/components/hosted-dropdown/hosted-dropdown.component.js +3 -8
- package/esm2015/components/notification/notification.component.js +1 -1
- package/esm2015/components/root/root.component.js +5 -4
- package/fesm2015/taiga-ui-core-components-button.js +1 -1
- package/fesm2015/taiga-ui-core-components-button.js.map +1 -1
- package/fesm2015/taiga-ui-core-components-hosted-dropdown.js +2 -7
- package/fesm2015/taiga-ui-core-components-hosted-dropdown.js.map +1 -1
- package/fesm2015/taiga-ui-core-components-notification.js +1 -1
- package/fesm2015/taiga-ui-core-components-notification.js.map +1 -1
- package/fesm2015/taiga-ui-core-components-root.js +4 -3
- package/fesm2015/taiga-ui-core-components-root.js.map +1 -1
- package/package.json +42 -42
- package/styles/mixins/mixins.less +1 -3
- package/styles/theme/appearance/link.less +11 -0
- package/styles/theme/appearance/outline.less +1 -0
- package/styles/theme/appearance.less +1 -0
package/package.json
CHANGED
|
@@ -1,44 +1,44 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
2
|
+
"name": "@taiga-ui/core",
|
|
3
|
+
"version": "3.64.0-canary.0c1cd7d",
|
|
4
|
+
"description": "Core library for creating Angular components and applications using Taiga UI",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"angular",
|
|
7
|
+
"kit",
|
|
8
|
+
"ui",
|
|
9
|
+
"component-library",
|
|
10
|
+
"component",
|
|
11
|
+
"service",
|
|
12
|
+
"directive"
|
|
13
|
+
],
|
|
14
|
+
"homepage": "https://github.com/taiga-family/taiga-ui",
|
|
15
|
+
"repository": "https://github.com/taiga-family/taiga-ui",
|
|
16
|
+
"license": "Apache-2.0",
|
|
17
|
+
"dependencies": {
|
|
18
|
+
"@taiga-ui/i18n": "^3.64.0-canary.0c1cd7d",
|
|
19
|
+
"tslib": "2.6.2"
|
|
20
|
+
},
|
|
21
|
+
"peerDependencies": {
|
|
22
|
+
"@angular/animations": ">=12.0.0",
|
|
23
|
+
"@angular/common": ">=12.0.0",
|
|
24
|
+
"@angular/core": ">=12.0.0",
|
|
25
|
+
"@angular/forms": ">=12.0.0",
|
|
26
|
+
"@angular/platform-browser": ">=12.0.0",
|
|
27
|
+
"@angular/router": ">=12.0.0",
|
|
28
|
+
"@ng-web-apis/common": "3.0.6",
|
|
29
|
+
"@ng-web-apis/mutation-observer": "3.1.0",
|
|
30
|
+
"@taiga-ui/cdk": "^3.64.0-canary.0c1cd7d",
|
|
31
|
+
"@taiga-ui/i18n": "^3.64.0-canary.0c1cd7d",
|
|
32
|
+
"@tinkoff/ng-event-plugins": "3.1.0",
|
|
33
|
+
"@tinkoff/ng-polymorpheus": "4.3.0",
|
|
34
|
+
"rxjs": ">=6.0.0"
|
|
35
|
+
},
|
|
36
|
+
"schematics": "./schematics/collection.json",
|
|
37
|
+
"main": "bundles/taiga-ui-core.umd.js",
|
|
38
|
+
"module": "fesm2015/taiga-ui-core.js",
|
|
39
|
+
"es2015": "fesm2015/taiga-ui-core.js",
|
|
40
|
+
"esm2015": "esm2015/taiga-ui-core.js",
|
|
41
|
+
"fesm2015": "fesm2015/taiga-ui-core.js",
|
|
42
|
+
"typings": "taiga-ui-core.d.ts",
|
|
43
|
+
"sideEffects": false
|
|
44
44
|
}
|