@anker-in/headless-ui 1.3.4 → 1.3.6
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/cjs/biz-components/GraphicMore/index.d.ts +3 -1
- package/dist/cjs/biz-components/GraphicMore/index.js +1 -1
- package/dist/cjs/biz-components/GraphicMore/index.js.map +3 -3
- package/dist/cjs/biz-components/Listing/components/ProductCard/ProductDetail/ProductHighlight/index.js +2 -2
- package/dist/cjs/biz-components/Listing/components/ProductCard/ProductDetail/ProductHighlight/index.js.map +2 -2
- package/dist/cjs/biz-components/Listing/components/ProductCard/ProductSummary/index.js +1 -1
- package/dist/cjs/biz-components/Listing/components/ProductCard/ProductSummary/index.js.map +2 -2
- package/dist/cjs/biz-components/Listing/components/PurchaseBar/ProductActions/index.js +1 -1
- package/dist/cjs/biz-components/Listing/components/PurchaseBar/ProductActions/index.js.map +2 -2
- package/dist/cjs/components/input.js +1 -1
- package/dist/cjs/components/input.js.map +2 -2
- package/dist/esm/biz-components/GraphicMore/index.d.ts +3 -1
- package/dist/esm/biz-components/GraphicMore/index.js +1 -1
- package/dist/esm/biz-components/GraphicMore/index.js.map +3 -3
- package/dist/esm/biz-components/Listing/components/ProductCard/ProductDetail/ProductHighlight/index.js +2 -2
- package/dist/esm/biz-components/Listing/components/ProductCard/ProductDetail/ProductHighlight/index.js.map +2 -2
- package/dist/esm/biz-components/Listing/components/ProductCard/ProductSummary/index.js +1 -1
- package/dist/esm/biz-components/Listing/components/ProductCard/ProductSummary/index.js.map +2 -2
- package/dist/esm/biz-components/Listing/components/PurchaseBar/ProductActions/index.js +1 -1
- package/dist/esm/biz-components/Listing/components/PurchaseBar/ProductActions/index.js.map +2 -2
- package/dist/esm/components/input.js +1 -1
- package/dist/esm/components/input.js.map +2 -2
- package/dist/tokens/oneAnker.css +19 -0
- package/package.json +1 -1
- package/style.css +21 -0
package/style.css
CHANGED
|
@@ -2142,6 +2142,12 @@ video {
|
|
|
2142
2142
|
.grid-cols-1 {
|
|
2143
2143
|
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
2144
2144
|
}
|
|
2145
|
+
.grid-cols-10 {
|
|
2146
|
+
grid-template-columns: repeat(10, minmax(0, 1fr));
|
|
2147
|
+
}
|
|
2148
|
+
.grid-cols-11 {
|
|
2149
|
+
grid-template-columns: repeat(11, minmax(0, 1fr));
|
|
2150
|
+
}
|
|
2145
2151
|
.grid-cols-12 {
|
|
2146
2152
|
grid-template-columns: repeat(12, minmax(0, 1fr));
|
|
2147
2153
|
}
|
|
@@ -2154,6 +2160,21 @@ video {
|
|
|
2154
2160
|
.grid-cols-4 {
|
|
2155
2161
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
2156
2162
|
}
|
|
2163
|
+
.grid-cols-5 {
|
|
2164
|
+
grid-template-columns: repeat(5, minmax(0, 1fr));
|
|
2165
|
+
}
|
|
2166
|
+
.grid-cols-6 {
|
|
2167
|
+
grid-template-columns: repeat(6, minmax(0, 1fr));
|
|
2168
|
+
}
|
|
2169
|
+
.grid-cols-7 {
|
|
2170
|
+
grid-template-columns: repeat(7, minmax(0, 1fr));
|
|
2171
|
+
}
|
|
2172
|
+
.grid-cols-8 {
|
|
2173
|
+
grid-template-columns: repeat(8, minmax(0, 1fr));
|
|
2174
|
+
}
|
|
2175
|
+
.grid-cols-9 {
|
|
2176
|
+
grid-template-columns: repeat(9, minmax(0, 1fr));
|
|
2177
|
+
}
|
|
2157
2178
|
.flex-row {
|
|
2158
2179
|
flex-direction: row;
|
|
2159
2180
|
}
|