@tetacom/ng-components 1.1.24 → 1.1.26
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/component/date-picker/date-picker/date-picker.component.d.ts +5 -3
- package/component/date-picker/date-range/date-range.component.d.ts +5 -3
- package/component/three/three-chart/canvas/canvas.component.d.ts +3 -3
- package/component/three/three-chart/service/chart-3d.service.d.ts +1 -1
- package/esm2022/component/chart-3d/chart3d/chart3d.component.mjs +21 -13
- package/esm2022/component/date-picker/date-picker/date-picker.component.mjs +21 -17
- package/esm2022/component/date-picker/date-range/date-range.component.mjs +20 -16
- package/esm2022/component/three/three-chart/axes-3d/axes-3d.component.mjs +3 -3
- package/esm2022/component/three/three-chart/canvas/canvas.component.mjs +4 -4
- package/esm2022/component/three/three-chart/scene/scene.component.mjs +3 -3
- package/esm2022/component/three/three-chart/service/chart-3d.service.mjs +4 -4
- package/esm2022/component/three/three-chart/three-chart.component.mjs +10 -4
- package/esm2022/locale/en.mjs +7 -12
- package/esm2022/locale/ru.mjs +7 -12
- package/esm2022/locale/teta-localisation.mjs +1 -1
- package/fesm2022/tetacom-ng-components.mjs +145 -135
- package/fesm2022/tetacom-ng-components.mjs.map +1 -1
- package/locale/teta-localisation.d.ts +5 -18
- package/package.json +1 -1
- package/style/chips.scss +5 -4
- package/style/tag.scss +7 -2
|
@@ -2,6 +2,9 @@ export interface TetaLocalisation {
|
|
|
2
2
|
apply: string;
|
|
3
3
|
cancel: string;
|
|
4
4
|
clear: string;
|
|
5
|
+
dateRangeMask: string;
|
|
6
|
+
dateMask: string;
|
|
7
|
+
dateTimeMask: string;
|
|
5
8
|
pin: string;
|
|
6
9
|
unpin: string;
|
|
7
10
|
sortAsc: string;
|
|
@@ -40,22 +43,6 @@ export interface TetaLocalisation {
|
|
|
40
43
|
string,
|
|
41
44
|
string
|
|
42
45
|
];
|
|
43
|
-
days: [
|
|
44
|
-
|
|
45
|
-
string,
|
|
46
|
-
string,
|
|
47
|
-
string,
|
|
48
|
-
string,
|
|
49
|
-
string,
|
|
50
|
-
string
|
|
51
|
-
];
|
|
52
|
-
daysShort: [
|
|
53
|
-
string,
|
|
54
|
-
string,
|
|
55
|
-
string,
|
|
56
|
-
string,
|
|
57
|
-
string,
|
|
58
|
-
string,
|
|
59
|
-
string
|
|
60
|
-
];
|
|
46
|
+
days: [string, string, string, string, string, string, string];
|
|
47
|
+
daysShort: [string, string, string, string, string, string, string];
|
|
61
48
|
}
|
package/package.json
CHANGED
package/style/chips.scss
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
height: 28px;
|
|
7
7
|
@include getFont($fonts,'button-2');
|
|
8
8
|
border: solid transparent 0;
|
|
9
|
-
border-radius:
|
|
9
|
+
border-radius: 14px;
|
|
10
10
|
background: var(--color-text-10);
|
|
11
11
|
fill: var(--color-text-50);
|
|
12
12
|
color: var(--color-text-90);
|
|
@@ -14,10 +14,11 @@
|
|
|
14
14
|
margin-top: 4px;
|
|
15
15
|
display: inline-flex;
|
|
16
16
|
align-items: center;
|
|
17
|
-
padding:
|
|
18
|
-
gap: 8px;
|
|
19
|
-
@include getView('base');
|
|
17
|
+
padding: 6px 4px 6px 10px;
|
|
20
18
|
&:hover {
|
|
21
19
|
cursor: pointer;
|
|
22
20
|
}
|
|
21
|
+
&>*:first-child{
|
|
22
|
+
padding-right: 6px;
|
|
23
|
+
}
|
|
23
24
|
}
|
package/style/tag.scss
CHANGED
|
@@ -3,17 +3,19 @@
|
|
|
3
3
|
|
|
4
4
|
.tag{
|
|
5
5
|
display: inline-flex;
|
|
6
|
+
justify-content: center;
|
|
7
|
+
height: 24px;
|
|
8
|
+
align-content: center;
|
|
9
|
+
align-items: center;
|
|
6
10
|
padding: 2px 2px 2px 10px;
|
|
7
11
|
@include getFont($fonts, 'caption');
|
|
8
12
|
border-color: var(--color-text-5);
|
|
9
13
|
border-radius: 14px;
|
|
10
|
-
gap: 4px;
|
|
11
14
|
border-style: solid;
|
|
12
15
|
border-width: 1px;
|
|
13
16
|
fill: var(--color-text-50);
|
|
14
17
|
color: var(--color-text-90);
|
|
15
18
|
transition: border-color 0.4s, background-color 0.4s;
|
|
16
|
-
@include getView('base');
|
|
17
19
|
&_filled {
|
|
18
20
|
background-color: var(--color-text-5);
|
|
19
21
|
border-color: transparent;
|
|
@@ -34,4 +36,7 @@
|
|
|
34
36
|
border-color: var(--color-text-20);
|
|
35
37
|
fill: var(--color-text-70);
|
|
36
38
|
}
|
|
39
|
+
&>*:first-child{
|
|
40
|
+
padding-right: 8px;
|
|
41
|
+
}
|
|
37
42
|
}
|