@a-type/ui 6.0.75 → 6.0.76

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.
@@ -223,10 +223,16 @@
223
223
  &[data-grow='true'] {
224
224
  flex-grow: 1;
225
225
  }
226
+ &[data-grow='false'] {
227
+ flex-grow: 0;
228
+ }
226
229
  &[data-shrink='true'] {
227
230
  flex-shrink: 1;
228
231
  min-width: 0;
229
232
  }
233
+ &[data-shrink='false'] {
234
+ flex-shrink: 0;
235
+ }
230
236
 
231
237
  @apply --mx-shadow;
232
238
  --mx-shadow-value: var(--shadow-inset) var(--shadow-x, 0)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@a-type/ui",
3
- "version": "6.0.75",
3
+ "version": "6.0.76",
4
4
  "type": "module",
5
5
  "repository": {
6
6
  "url": "https://github.com/a-type/ui"
@@ -223,10 +223,16 @@
223
223
  &[data-grow='true'] {
224
224
  flex-grow: 1;
225
225
  }
226
+ &[data-grow='false'] {
227
+ flex-grow: 0;
228
+ }
226
229
  &[data-shrink='true'] {
227
230
  flex-shrink: 1;
228
231
  min-width: 0;
229
232
  }
233
+ &[data-shrink='false'] {
234
+ flex-shrink: 0;
235
+ }
230
236
 
231
237
  @apply --mx-shadow;
232
238
  --mx-shadow-value: var(--shadow-inset) var(--shadow-x, 0)