@speedkit/cli 4.6.0 → 4.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.
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [4.7.0](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v4.6.0...v4.7.0) (2026-06-02)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **customer-config:** improve add2cart disabling ([7d20650](https://gitlab.orestes.info/baqend/speed-kit-cli/commit/7d206503e27919375f78b93876dfa48686aaf5b5))
|
|
7
|
+
|
|
1
8
|
# [4.6.0](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v4.5.0...v4.6.0) (2026-05-29)
|
|
2
9
|
|
|
3
10
|
|
package/README.md
CHANGED
|
@@ -99,11 +99,6 @@ html > body {
|
|
|
99
99
|
}
|
|
100
100
|
}
|
|
101
101
|
|
|
102
|
-
/* Prevent Add2Cart clicks: */
|
|
103
|
-
.dummy-add2cart-class {
|
|
104
|
-
pointer-events: none !important;
|
|
105
|
-
}
|
|
106
|
-
|
|
107
102
|
/* Skeleton loading style: */
|
|
108
103
|
.dummy-add2cart-class,
|
|
109
104
|
.dummy-skeleton-container-class {
|
|
@@ -133,4 +128,11 @@ html > body {
|
|
|
133
128
|
mask-image: linear-gradient(#000, #000), linear-gradient(#000, #000), linear-gradient(#000, #000);
|
|
134
129
|
mask-repeat: no-repeat;
|
|
135
130
|
}
|
|
131
|
+
|
|
132
|
+
/* Disable Add2Cart: */
|
|
133
|
+
.dummy-add2cart-class {
|
|
134
|
+
pointer-events: none !important;
|
|
135
|
+
opacity: 0.5 !important;
|
|
136
|
+
filter: grayscale(1) !important;
|
|
137
|
+
}
|
|
136
138
|
}
|
package/oclif.manifest.json
CHANGED