@webitel/ui-sdk 26.2.18 → 26.2.19
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webitel/ui-sdk",
|
|
3
|
-
"version": "26.2.
|
|
3
|
+
"version": "26.2.19",
|
|
4
4
|
"private": false,
|
|
5
5
|
"scripts": {
|
|
6
6
|
"make-all": "npm version patch --git-tag-version false && npm run build && (npm run build:types || true) && (npm run biome:format:all || true) && npm run publish-lib",
|
|
@@ -1,22 +1,21 @@
|
|
|
1
1
|
.d-none {
|
|
2
|
-
|
|
2
|
+
display: none;
|
|
3
3
|
}
|
|
4
4
|
|
|
5
|
-
@media
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
5
|
+
@media only screen and (max-width: 960px) {
|
|
6
|
+
.d-none-sm {
|
|
7
|
+
display: none;
|
|
8
|
+
}
|
|
9
|
+
.d-block-sm {
|
|
10
|
+
display: block;
|
|
11
|
+
}
|
|
12
12
|
}
|
|
13
13
|
|
|
14
|
-
@media
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
14
|
+
@media only screen and (max-width: 600px) {
|
|
15
|
+
.d-none-xs {
|
|
16
|
+
display: none;
|
|
17
|
+
}
|
|
18
|
+
.d-block-xs {
|
|
19
|
+
display: block;
|
|
20
|
+
}
|
|
21
21
|
}
|
|
22
|
-
|