@nasa-jpl/stellar-svelte 2.0.0-alpha.66 → 2.0.0-alpha.71

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.
@@ -20,6 +20,6 @@ export { className as class };
20
20
  >
21
21
  <slot {builder} />
22
22
  <div>
23
- <ChevronDown class="h-4 w-4 opacity-50" />
23
+ <ChevronDown class="h-4 w-4 opacity-50 flex-shrink-0" />
24
24
  </div>
25
25
  </SelectPrimitive.Trigger>
package/dist/index.css CHANGED
@@ -1424,6 +1424,10 @@ body {
1424
1424
  flex: 1 1 0%;
1425
1425
  }
1426
1426
 
1427
+ .flex-shrink-0 {
1428
+ flex-shrink: 0;
1429
+ }
1430
+
1427
1431
  .shrink {
1428
1432
  flex-shrink: 1;
1429
1433
  }
package/dist/index.d.ts CHANGED
@@ -44,3 +44,4 @@ export * as ToggleGroup from './components/ui/toggle-group/index.js';
44
44
  export { Toggle } from './components/ui/toggle/index.js';
45
45
  export * as Tooltip from './components/ui/tooltip/index.js';
46
46
  export * from './components/ui/typography/index.js';
47
+ export * from './utils.js';
package/dist/index.js CHANGED
@@ -47,3 +47,4 @@ export * as ToggleGroup from './components/ui/toggle-group/index.js';
47
47
  export { Toggle } from './components/ui/toggle/index.js';
48
48
  export * as Tooltip from './components/ui/tooltip/index.js';
49
49
  export * from './components/ui/typography/index.js';
50
+ export * from './utils.js';
package/package.json CHANGED
@@ -83,6 +83,6 @@
83
83
  "svelte": "./dist/index.js",
84
84
  "type": "module",
85
85
  "types": "./dist/index.d.ts",
86
- "version": "2.0.0-alpha.66",
87
- "gitHead": "30cffe883f9d059de1c82971a2d11ff83be6750b"
86
+ "version": "2.0.0-alpha.71",
87
+ "gitHead": "980b781fa7d41f0f840b4b83a57c28b16df55d9e"
88
88
  }