@taiga-ui/experimental 3.72.0-canary.e5fa8b1 → 3.73.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/bundles/taiga-ui-experimental-components-avatar-labeled.umd.js +387 -533
- package/bundles/taiga-ui-experimental-components-avatar-labeled.umd.js.map +1 -1
- package/bundles/taiga-ui-experimental-components-rating.umd.js +489 -635
- package/bundles/taiga-ui-experimental-components-rating.umd.js.map +1 -1
- package/bundles/taiga-ui-experimental-components-tooltip.umd.js +478 -624
- package/bundles/taiga-ui-experimental-components-tooltip.umd.js.map +1 -1
- package/bundles/taiga-ui-experimental-directives-avatar-outline.umd.js +111 -0
- package/bundles/taiga-ui-experimental-directives-avatar-outline.umd.js.map +1 -0
- package/bundles/taiga-ui-experimental-directives-sensitive.umd.js +6 -152
- package/bundles/taiga-ui-experimental-directives-sensitive.umd.js.map +1 -1
- package/bundles/taiga-ui-experimental-directives-skeleton.umd.js +6 -152
- package/bundles/taiga-ui-experimental-directives-skeleton.umd.js.map +1 -1
- package/bundles/taiga-ui-experimental-directives.umd.js +10 -4
- package/bundles/taiga-ui-experimental-directives.umd.js.map +1 -1
- package/bundles/taiga-ui-experimental-pipes-initials.umd.js +379 -525
- package/bundles/taiga-ui-experimental-pipes-initials.umd.js.map +1 -1
- package/directives/avatar-outline/avatar-outline.component.d.ts +5 -0
- package/directives/avatar-outline/avatar-outline.directive.d.ts +9 -0
- package/directives/avatar-outline/avatar-outline.module.d.ts +8 -0
- package/directives/avatar-outline/index.d.ts +3 -0
- package/directives/avatar-outline/package.json +10 -0
- package/directives/avatar-outline/taiga-ui-experimental-directives-avatar-outline.d.ts +5 -0
- package/directives/index.d.ts +1 -0
- package/esm2015/components/tooltip/tooltip.component.js +1 -1
- package/esm2015/directives/avatar-outline/avatar-outline.component.js +19 -0
- package/esm2015/directives/avatar-outline/avatar-outline.directive.js +34 -0
- package/esm2015/directives/avatar-outline/avatar-outline.module.js +17 -0
- package/esm2015/directives/avatar-outline/index.js +4 -0
- package/esm2015/directives/avatar-outline/taiga-ui-experimental-directives-avatar-outline.js +5 -0
- package/esm2015/directives/index.js +2 -1
- package/fesm2015/taiga-ui-experimental-components-tooltip.js +1 -1
- package/fesm2015/taiga-ui-experimental-components-tooltip.js.map +1 -1
- package/fesm2015/taiga-ui-experimental-directives-avatar-outline.js +70 -0
- package/fesm2015/taiga-ui-experimental-directives-avatar-outline.js.map +1 -0
- package/fesm2015/taiga-ui-experimental-directives.js +1 -0
- package/fesm2015/taiga-ui-experimental-directives.js.map +1 -1
- package/package.json +31 -31
package/package.json
CHANGED
|
@@ -1,33 +1,33 @@
|
|
|
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
|
-
|
|
2
|
+
"name": "@taiga-ui/experimental",
|
|
3
|
+
"version": "3.73.0",
|
|
4
|
+
"description": "A package with Taiga UI experimental components",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"angular",
|
|
7
|
+
"component",
|
|
8
|
+
"layout"
|
|
9
|
+
],
|
|
10
|
+
"homepage": "https://github.com/taiga-family/taiga-ui",
|
|
11
|
+
"repository": "https://github.com/taiga-family/taiga-ui",
|
|
12
|
+
"license": "Apache-2.0",
|
|
13
|
+
"peerDependencies": {
|
|
14
|
+
"@angular/common": ">=12.0.0",
|
|
15
|
+
"@angular/core": ">=12.0.0",
|
|
16
|
+
"@taiga-ui/addon-commerce": "^3.73.0",
|
|
17
|
+
"@taiga-ui/cdk": "^3.73.0",
|
|
18
|
+
"@taiga-ui/core": "^3.73.0",
|
|
19
|
+
"@taiga-ui/kit": "^3.73.0",
|
|
20
|
+
"@tinkoff/ng-polymorpheus": "4.3.0",
|
|
21
|
+
"rxjs": ">=6.0.0"
|
|
22
|
+
},
|
|
23
|
+
"main": "bundles/taiga-ui-experimental.umd.js",
|
|
24
|
+
"module": "fesm2015/taiga-ui-experimental.js",
|
|
25
|
+
"es2015": "fesm2015/taiga-ui-experimental.js",
|
|
26
|
+
"esm2015": "esm2015/taiga-ui-experimental.js",
|
|
27
|
+
"fesm2015": "fesm2015/taiga-ui-experimental.js",
|
|
28
|
+
"typings": "taiga-ui-experimental.d.ts",
|
|
29
|
+
"sideEffects": false,
|
|
30
|
+
"dependencies": {
|
|
31
|
+
"tslib": "2.6.2"
|
|
32
|
+
}
|
|
33
33
|
}
|