@snabcentr/client-ui 3.6.2 → 3.7.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.
Potentially problematic release.
This version of @snabcentr/client-ui might be problematic. Click here for more details.
- package/catalog/hover-image-carousel/hover-image-carousel.component.d.ts +7 -0
- package/dialogs/index.d.ts +1 -0
- package/dialogs/sc-resource-preview/sc-resource-preview.component.d.ts +42 -0
- package/esm2022/catalog/hover-image-carousel/hover-image-carousel.component.mjs +16 -4
- package/esm2022/catalog/sc-catalog.module.mjs +1 -2
- package/esm2022/dialogs/index.mjs +2 -0
- package/esm2022/dialogs/sc-resource-preview/sc-resource-preview.component.mjs +68 -0
- package/esm2022/public-api.mjs +2 -1
- package/fesm2022/snabcentr-client-ui.mjs +80 -8
- package/fesm2022/snabcentr-client-ui.mjs.map +1 -1
- package/package.json +2 -2
- package/public-api.d.ts +1 -0
- package/release_notes.tmp +7 -3
- package/styles/tailwind/tailwind.scss +10 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@snabcentr/client-ui",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.7.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
|
"@maskito/angular": "^3.2.0",
|
|
15
15
|
"@maskito/core": "^3.2.0",
|
|
16
16
|
"@ng-web-apis/intersection-observer": "^4.11.1",
|
|
17
|
-
"@snabcentr/client-core": "^2.
|
|
17
|
+
"@snabcentr/client-core": "^2.11.8",
|
|
18
18
|
"@taiga-ui/addon-charts": "^4.16.0",
|
|
19
19
|
"@taiga-ui/addon-commerce": "^4.16.0",
|
|
20
20
|
"@taiga-ui/cdk": "^4.16.0",
|
package/public-api.d.ts
CHANGED
package/release_notes.tmp
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
|
-
## 3.
|
|
1
|
+
## 3.7.0 (2024-12-19)
|
|
2
2
|
|
|
3
|
-
###
|
|
3
|
+
### added (1 change)
|
|
4
4
|
|
|
5
|
-
- [#
|
|
5
|
+
- [#10871: Добавлен компонент предпросмотра видео по ссылке](web_soft/libs/angular/snabcentr-client-ui-lib@c9edb5820a8b34011d305a964fdf5fee35ff40fd) ([merge request](web_soft/libs/angular/snabcentr-client-ui-lib!202))
|
|
6
|
+
|
|
7
|
+
### fixed (1 change)
|
|
8
|
+
|
|
9
|
+
- [#10774: Исправлено переключение изображений плитки товара по точкам](web_soft/libs/angular/snabcentr-client-ui-lib@db962372c3d448ce202d98c0971402ce560236b6) ([merge request](web_soft/libs/angular/snabcentr-client-ui-lib!201))
|
|
6
10
|
|
|
@@ -107,7 +107,7 @@
|
|
|
107
107
|
}
|
|
108
108
|
|
|
109
109
|
/*
|
|
110
|
-
! tailwindcss v3.4.
|
|
110
|
+
! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com
|
|
111
111
|
*/
|
|
112
112
|
|
|
113
113
|
/*
|
|
@@ -754,6 +754,10 @@ video {
|
|
|
754
754
|
margin-top: 0.5rem;
|
|
755
755
|
}
|
|
756
756
|
|
|
757
|
+
.mt-4 {
|
|
758
|
+
margin-top: 1rem;
|
|
759
|
+
}
|
|
760
|
+
|
|
757
761
|
.line-clamp-3 {
|
|
758
762
|
overflow: hidden;
|
|
759
763
|
display: -webkit-box;
|
|
@@ -1177,6 +1181,11 @@ video {
|
|
|
1177
1181
|
border-color: var(--tui-border-normal);
|
|
1178
1182
|
}
|
|
1179
1183
|
|
|
1184
|
+
.bg-black {
|
|
1185
|
+
--tw-bg-opacity: 1;
|
|
1186
|
+
background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
|
|
1187
|
+
}
|
|
1188
|
+
|
|
1180
1189
|
.bg-tui-base-02 {
|
|
1181
1190
|
background-color: var(--tui-background-base-alt);
|
|
1182
1191
|
}
|