@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.
@@ -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
- string,
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tetacom/ng-components",
3
- "version": "1.1.24",
3
+ "version": "1.1.26",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^16.1.3",
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: 12px;
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: 4px 4px 4px 10px;
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
  }