@snabcentr/client-ui 3.52.1 → 3.52.2
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/catalog/catalog-filters/collapsible/sc-catalog-filter-collapsible.component.d.ts +47 -0
- package/catalog/catalog-filters/index.d.ts +1 -0
- package/catalog/catalog-filters/sc-catalog-filters.component.d.ts +87 -19
- package/esm2022/catalog/catalog-filters/collapsible/sc-catalog-filter-collapsible.component.mjs +59 -0
- package/esm2022/catalog/catalog-filters/index.mjs +2 -1
- package/esm2022/catalog/catalog-filters/sc-catalog-filters.component.mjs +246 -58
- package/fesm2022/snabcentr-client-ui.mjs +296 -55
- package/fesm2022/snabcentr-client-ui.mjs.map +1 -1
- package/package.json +2 -2
- package/release_notes.tmp +2 -2
- package/styles/tailwind/tailwind.scss +17 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@snabcentr/client-ui",
|
|
3
|
-
"version": "3.52.
|
|
3
|
+
"version": "3.52.2",
|
|
4
4
|
"author": "Snabcentr Ltd.",
|
|
5
5
|
"repository": "https://gitlab.snabcentr.met/web/angular/snabcentr-client-ui-lib",
|
|
6
6
|
"license": "Commercial",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"@maskito/core": "^3.11.1",
|
|
16
16
|
"@ng-web-apis/intersection-observer": "^4.14.0",
|
|
17
17
|
"@ng-web-apis/common": "^4.14.0",
|
|
18
|
-
"@snabcentr/client-core": "^2.66.
|
|
18
|
+
"@snabcentr/client-core": "^2.66.19",
|
|
19
19
|
"@taiga-ui/addon-charts": "^4.66.0",
|
|
20
20
|
"@taiga-ui/addon-commerce": "^4.66.0",
|
|
21
21
|
"@taiga-ui/cdk": "^4.66.0",
|
package/release_notes.tmp
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
## 3.52.
|
|
1
|
+
## 3.52.2 (2026-05-22)
|
|
2
2
|
|
|
3
3
|
### changed (1 change)
|
|
4
4
|
|
|
5
|
-
- [#
|
|
5
|
+
- [#13137: Доработан компонент фильтров каталога](web_soft/libs/angular/snabcentr-client-ui-lib@e317a8dd99654a7d15fcd887558920b9e37f009b) ([merge request](web_soft/libs/angular/snabcentr-client-ui-lib!410))
|
|
6
6
|
|
|
@@ -679,6 +679,11 @@ video {
|
|
|
679
679
|
margin-bottom: 0.625rem;
|
|
680
680
|
}
|
|
681
681
|
|
|
682
|
+
.my-3 {
|
|
683
|
+
margin-top: 0.75rem;
|
|
684
|
+
margin-bottom: 0.75rem;
|
|
685
|
+
}
|
|
686
|
+
|
|
682
687
|
.my-4 {
|
|
683
688
|
margin-top: 1rem;
|
|
684
689
|
margin-bottom: 1rem;
|
|
@@ -1332,10 +1337,6 @@ video {
|
|
|
1332
1337
|
background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
|
|
1333
1338
|
}
|
|
1334
1339
|
|
|
1335
|
-
.bg-tui-base-01 {
|
|
1336
|
-
background-color: var(--tui-background-base);
|
|
1337
|
-
}
|
|
1338
|
-
|
|
1339
1340
|
.bg-tui-base-02 {
|
|
1340
1341
|
background-color: var(--tui-background-base-alt);
|
|
1341
1342
|
}
|
|
@@ -1545,6 +1546,12 @@ video {
|
|
|
1545
1546
|
font-weight: 800 !important;
|
|
1546
1547
|
}
|
|
1547
1548
|
|
|
1549
|
+
.\!text-body-s {
|
|
1550
|
+
font-size: 0.8125rem !important;
|
|
1551
|
+
line-height: 1.25rem !important;
|
|
1552
|
+
font-weight: 500 !important;
|
|
1553
|
+
}
|
|
1554
|
+
|
|
1548
1555
|
.\!text-body-s-bold {
|
|
1549
1556
|
font-size: 0.8125rem !important;
|
|
1550
1557
|
line-height: 1.25rem !important;
|
|
@@ -1819,6 +1826,12 @@ video {
|
|
|
1819
1826
|
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
1820
1827
|
}
|
|
1821
1828
|
|
|
1829
|
+
.transition {
|
|
1830
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
|
|
1831
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1832
|
+
transition-duration: 150ms;
|
|
1833
|
+
}
|
|
1834
|
+
|
|
1822
1835
|
.duration-200 {
|
|
1823
1836
|
transition-duration: 200ms;
|
|
1824
1837
|
}
|