hasting-swatchcart-module 1.0.60 → 1.0.62
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/dist/assets/index.css +4 -8
- package/dist/cdn/lib/vite-env.d.ts +1 -1
- package/dist/cdn/main.css +4 -8
- package/dist/cdn/main.js +7698 -7567
- package/dist/cdn/src/features/MultiProduct/model/types.d.ts +1 -1
- package/dist/cdn/src/features/MultiProduct/ui/MaterialMultiProductList/MaterialMultiProductList.d.ts +6 -37
- package/dist/cdn/src/features/swatches/model/types.d.ts +1 -0
- package/dist/main.cjs +95 -96
- package/dist/main.cjs.map +1 -1
- package/dist/main.js +5330 -5199
- package/dist/main.js.map +1 -1
- package/package.json +6 -5
package/dist/assets/index.css
CHANGED
|
@@ -1306,10 +1306,6 @@ template, [hidden] {
|
|
|
1306
1306
|
resize: both;
|
|
1307
1307
|
}
|
|
1308
1308
|
|
|
1309
|
-
#root-container .grid-cols-1 {
|
|
1310
|
-
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
1311
|
-
}
|
|
1312
|
-
|
|
1313
1309
|
#root-container .grid-cols-2 {
|
|
1314
1310
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
1315
1311
|
}
|
|
@@ -2373,10 +2369,6 @@ template, [hidden] {
|
|
|
2373
2369
|
min-width: 250px;
|
|
2374
2370
|
}
|
|
2375
2371
|
|
|
2376
|
-
#root-container .sm\:grid-cols-3 {
|
|
2377
|
-
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
2378
|
-
}
|
|
2379
|
-
|
|
2380
2372
|
#root-container .sm\:grid-cols-4 {
|
|
2381
2373
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
2382
2374
|
}
|
|
@@ -2569,6 +2561,10 @@ template, [hidden] {
|
|
|
2569
2561
|
#root-container .xl\:grid-cols-8 {
|
|
2570
2562
|
grid-template-columns: repeat(8, minmax(0, 1fr));
|
|
2571
2563
|
}
|
|
2564
|
+
|
|
2565
|
+
#root-container .xl\:pb-\[130px\] {
|
|
2566
|
+
padding-bottom: 130px;
|
|
2567
|
+
}
|
|
2572
2568
|
}
|
|
2573
2569
|
|
|
2574
2570
|
@media (min-width: 96rem) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
/// <reference types="vite/client" />
|
|
1
|
+
/// <reference types="vite/client" />
|
package/dist/cdn/main.css
CHANGED
|
@@ -1306,10 +1306,6 @@ template, [hidden] {
|
|
|
1306
1306
|
resize: both;
|
|
1307
1307
|
}
|
|
1308
1308
|
|
|
1309
|
-
#root-container .grid-cols-1 {
|
|
1310
|
-
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
1311
|
-
}
|
|
1312
|
-
|
|
1313
1309
|
#root-container .grid-cols-2 {
|
|
1314
1310
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
1315
1311
|
}
|
|
@@ -2373,10 +2369,6 @@ template, [hidden] {
|
|
|
2373
2369
|
min-width: 250px;
|
|
2374
2370
|
}
|
|
2375
2371
|
|
|
2376
|
-
#root-container .sm\:grid-cols-3 {
|
|
2377
|
-
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
2378
|
-
}
|
|
2379
|
-
|
|
2380
2372
|
#root-container .sm\:grid-cols-4 {
|
|
2381
2373
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
2382
2374
|
}
|
|
@@ -2569,6 +2561,10 @@ template, [hidden] {
|
|
|
2569
2561
|
#root-container .xl\:grid-cols-8 {
|
|
2570
2562
|
grid-template-columns: repeat(8, minmax(0, 1fr));
|
|
2571
2563
|
}
|
|
2564
|
+
|
|
2565
|
+
#root-container .xl\:pb-\[130px\] {
|
|
2566
|
+
padding-bottom: 130px;
|
|
2567
|
+
}
|
|
2572
2568
|
}
|
|
2573
2569
|
|
|
2574
2570
|
@media (min-width: 96rem) {
|