@snabcentr/client-ui 0.0.26 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- package/banner/sc-banner.component.d.ts +4 -4
- package/esm2020/banner/sc-banner.component.mjs +3 -3
- package/esm2020/files/file-tree-item/file-tree-item.component.mjs +2 -2
- package/fesm2015/snabcentr-client-ui.mjs +4 -4
- package/fesm2015/snabcentr-client-ui.mjs.map +1 -1
- package/fesm2020/snabcentr-client-ui.mjs +4 -4
- package/fesm2020/snabcentr-client-ui.mjs.map +1 -1
- package/package.json +2 -2
- package/release_notes.tmp +1 -4
- package/styles/tailwind/tailwind.scss +7 -3
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@snabcentr/client-ui",
|
3
|
-
"version": "0.0
|
3
|
+
"version": "0.1.0",
|
4
4
|
"author": "Snabcentr Ltd.",
|
5
5
|
"repository": "https://gitlab.snabcentr.met/web/angular/snabcentr-client-ui-lib",
|
6
6
|
"license": "Commercial",
|
@@ -14,7 +14,7 @@
|
|
14
14
|
"@angular/platform-browser": ">=14.2.12",
|
15
15
|
"@angular/platform-browser-dynamic": ">=14.2.12",
|
16
16
|
"@angular/material": ">=14.2.7",
|
17
|
-
"@snabcentr/client-core": ">=0.0
|
17
|
+
"@snabcentr/client-core": ">=0.3.0",
|
18
18
|
"@taiga-ui/addon-charts": ">=3.42.1",
|
19
19
|
"@taiga-ui/addon-commerce": ">=3.42.1",
|
20
20
|
"@taiga-ui/addon-doc": ">=3.42.1",
|
package/release_notes.tmp
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*
|
2
|
-
! tailwindcss v3.
|
2
|
+
! tailwindcss v3.4.1 | MIT License | https://tailwindcss.com
|
3
3
|
*/
|
4
4
|
|
5
5
|
/*
|
@@ -32,9 +32,11 @@
|
|
32
32
|
4. Use the user's configured `sans` font-family by default.
|
33
33
|
5. Use the user's configured `sans` font-feature-settings by default.
|
34
34
|
6. Use the user's configured `sans` font-variation-settings by default.
|
35
|
+
7. Disable tap highlights on iOS
|
35
36
|
*/
|
36
37
|
|
37
|
-
html
|
38
|
+
html,
|
39
|
+
:host {
|
38
40
|
line-height: 1.5;
|
39
41
|
/* 1 */
|
40
42
|
-webkit-text-size-adjust: 100%;
|
@@ -44,12 +46,14 @@ html {
|
|
44
46
|
-o-tab-size: 4;
|
45
47
|
tab-size: 4;
|
46
48
|
/* 3 */
|
47
|
-
font-family: ui-sans-serif, system-ui,
|
49
|
+
font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
48
50
|
/* 4 */
|
49
51
|
font-feature-settings: normal;
|
50
52
|
/* 5 */
|
51
53
|
font-variation-settings: normal;
|
52
54
|
/* 6 */
|
55
|
+
-webkit-tap-highlight-color: transparent;
|
56
|
+
/* 7 */
|
53
57
|
}
|
54
58
|
|
55
59
|
/*
|