@nasa-jpl/stellar-svelte 2.0.0-alpha.61 → 2.0.0-alpha.65

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/index.css CHANGED
@@ -814,6 +814,10 @@ body {
814
814
  z-index: 50;
815
815
  }
816
816
 
817
+ .z-\[2\] {
818
+ z-index: 2;
819
+ }
820
+
817
821
  .col-span-2 {
818
822
  grid-column: span 2 / span 2;
819
823
  }
@@ -822,6 +826,10 @@ body {
822
826
  grid-column: span 3 / span 3;
823
827
  }
824
828
 
829
+ .m-0 {
830
+ margin: 0px;
831
+ }
832
+
825
833
  .-mx-1 {
826
834
  margin-left: -0.25rem;
827
835
  margin-right: -0.25rem;
@@ -877,6 +885,10 @@ body {
877
885
  margin-bottom: 1rem;
878
886
  }
879
887
 
888
+ .ml-0 {
889
+ margin-left: 0px;
890
+ }
891
+
880
892
  .ml-2 {
881
893
  margin-left: 0.5rem;
882
894
  }
@@ -1237,6 +1249,10 @@ body {
1237
1249
  width: 1.5rem;
1238
1250
  }
1239
1251
 
1252
+ .w-60 {
1253
+ width: 15rem;
1254
+ }
1255
+
1240
1256
  .w-64 {
1241
1257
  width: 16rem;
1242
1258
  }
@@ -1317,6 +1333,16 @@ body {
1317
1333
  width: 100%;
1318
1334
  }
1319
1335
 
1336
+ .w-max {
1337
+ width: -moz-max-content;
1338
+ width: max-content;
1339
+ }
1340
+
1341
+ .w-min {
1342
+ width: -moz-min-content;
1343
+ width: min-content;
1344
+ }
1345
+
1320
1346
  .w-px {
1321
1347
  width: 1px;
1322
1348
  }
@@ -1510,6 +1536,10 @@ body {
1510
1536
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
1511
1537
  }
1512
1538
 
1539
+ .cursor-\[inherit\] {
1540
+ cursor: inherit;
1541
+ }
1542
+
1513
1543
  .cursor-default {
1514
1544
  cursor: default;
1515
1545
  }
@@ -1611,6 +1641,10 @@ body {
1611
1641
  justify-content: space-between;
1612
1642
  }
1613
1643
 
1644
+ .gap-0\.5 {
1645
+ gap: 0.125rem;
1646
+ }
1647
+
1614
1648
  .gap-1 {
1615
1649
  gap: 0.25rem;
1616
1650
  }
@@ -1926,6 +1960,10 @@ body {
1926
1960
  border-style: dashed;
1927
1961
  }
1928
1962
 
1963
+ .border-none {
1964
+ border-style: none;
1965
+ }
1966
+
1929
1967
  .border-accent {
1930
1968
  --tw-border-opacity: 1;
1931
1969
  border-color: hsl(var(--accent) / var(--tw-border-opacity, 1));
@@ -2116,6 +2154,10 @@ body {
2116
2154
  padding: 0.25rem;
2117
2155
  }
2118
2156
 
2157
+ .p-1\.5 {
2158
+ padding: 0.375rem;
2159
+ }
2160
+
2119
2161
  .p-10 {
2120
2162
  padding: 2.5rem;
2121
2163
  }
@@ -2508,6 +2550,10 @@ body {
2508
2550
  line-height: 1.75rem;
2509
2551
  }
2510
2552
 
2553
+ .leading-\[inherit\] {
2554
+ line-height: inherit;
2555
+ }
2556
+
2511
2557
  .leading-loose {
2512
2558
  line-height: 2;
2513
2559
  }
@@ -2664,6 +2710,10 @@ body {
2664
2710
  -moz-osx-font-smoothing: auto;
2665
2711
  }
2666
2712
 
2713
+ .opacity-0 {
2714
+ opacity: 0;
2715
+ }
2716
+
2667
2717
  .opacity-50 {
2668
2718
  opacity: 0.5;
2669
2719
  }
@@ -3145,6 +3195,22 @@ body {
3145
3195
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
3146
3196
  }
3147
3197
 
3198
+ .peer:hover ~ .peer-hover\:bg-accent {
3199
+ --tw-bg-opacity: 1;
3200
+ background-color: hsl(var(--accent) / var(--tw-bg-opacity, 1));
3201
+ }
3202
+
3203
+ .peer:focus-visible ~ .peer-focus-visible\:ring-2 {
3204
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
3205
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
3206
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
3207
+ }
3208
+
3209
+ .peer:focus-visible ~ .peer-focus-visible\:ring-ring {
3210
+ --tw-ring-opacity: 1;
3211
+ --tw-ring-color: hsl(var(--ring) / var(--tw-ring-opacity, 1));
3212
+ }
3213
+
3148
3214
  .peer:disabled ~ .peer-disabled\:cursor-not-allowed {
3149
3215
  cursor: not-allowed;
3150
3216
  }
@@ -3176,6 +3242,10 @@ body {
3176
3242
  opacity: 1;
3177
3243
  }
3178
3244
 
3245
+ .aria-selected\:opacity-30[aria-selected="true"] {
3246
+ opacity: 0.3;
3247
+ }
3248
+
3179
3249
  .aria-\[invalid\]\:border-destructive[aria-invalid] {
3180
3250
  --tw-border-opacity: 1;
3181
3251
  border-color: hsl(var(--destructive) / var(--tw-border-opacity, 1));
package/dist/index.d.ts CHANGED
@@ -10,14 +10,14 @@ export * as Calendar from './components/ui/calendar/index.js';
10
10
  export * as Card from './components/ui/card/index.js';
11
11
  export * as Carousel from './components/ui/carousel/index.js';
12
12
  export { Checkbox } from './components/ui/checkbox/index.js';
13
- export { Collapsible } from './components/ui/collapsible/index.js';
13
+ export * as Collapsible from './components/ui/collapsible/index.js';
14
14
  export * as Command from './components/ui/command/index.js';
15
15
  export * as ContextMenu from './components/ui/context-menu/index.js';
16
16
  export * as Dialog from './components/ui/dialog/index.js';
17
17
  export * as Drawer from './components/ui/drawer/index.js';
18
18
  export * as DropdownMenu from './components/ui/dropdown-menu/index.js';
19
19
  export * as Form from './components/ui/form/index.js';
20
- export { HoverCard } from './components/ui/hover-card/index.js';
20
+ export * as HoverCard from './components/ui/hover-card/index.js';
21
21
  export { Input } from './components/ui/input/index.js';
22
22
  export { Label } from './components/ui/label/index.js';
23
23
  export * as Menubar from './components/ui/menubar/index.js';
@@ -42,5 +42,5 @@ export { Textarea } from './components/ui/textarea/index.js';
42
42
  export { ThemeSwitcherButton, ThemeSwitcherDropdown } from './components/ui/theme-switcher/index.js';
43
43
  export * as ToggleGroup from './components/ui/toggle-group/index.js';
44
44
  export { Toggle } from './components/ui/toggle/index.js';
45
- export { Tooltip } from './components/ui/tooltip/index.js';
46
- export { H1, H2, H3, H4, P } from './components/ui/typography/index.js';
45
+ export * as Tooltip from './components/ui/tooltip/index.js';
46
+ export * from './components/ui/typography/index.js';
package/dist/index.js CHANGED
@@ -11,14 +11,14 @@ export * as Calendar from './components/ui/calendar/index.js';
11
11
  export * as Card from './components/ui/card/index.js';
12
12
  export * as Carousel from './components/ui/carousel/index.js';
13
13
  export { Checkbox } from './components/ui/checkbox/index.js';
14
- export { Collapsible } from './components/ui/collapsible/index.js';
14
+ export * as Collapsible from './components/ui/collapsible/index.js';
15
15
  export * as Command from './components/ui/command/index.js';
16
16
  export * as ContextMenu from './components/ui/context-menu/index.js';
17
17
  export * as Dialog from './components/ui/dialog/index.js';
18
18
  export * as Drawer from './components/ui/drawer/index.js';
19
19
  export * as DropdownMenu from './components/ui/dropdown-menu/index.js';
20
20
  export * as Form from './components/ui/form/index.js';
21
- export { HoverCard } from './components/ui/hover-card/index.js';
21
+ export * as HoverCard from './components/ui/hover-card/index.js';
22
22
  export { Input } from './components/ui/input/index.js';
23
23
  export { Label } from './components/ui/label/index.js';
24
24
  export * as Menubar from './components/ui/menubar/index.js';
@@ -45,5 +45,5 @@ export { Textarea } from './components/ui/textarea/index.js';
45
45
  export { ThemeSwitcherButton, ThemeSwitcherDropdown } from './components/ui/theme-switcher/index.js';
46
46
  export * as ToggleGroup from './components/ui/toggle-group/index.js';
47
47
  export { Toggle } from './components/ui/toggle/index.js';
48
- export { Tooltip } from './components/ui/tooltip/index.js';
49
- export { H1, H2, H3, H4, P } from './components/ui/typography/index.js';
48
+ export * as Tooltip from './components/ui/tooltip/index.js';
49
+ export * from './components/ui/typography/index.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.61",
87
- "gitHead": "0f12f8b007b628288b0a13a7f844b95c13cdc169"
86
+ "version": "2.0.0-alpha.65",
87
+ "gitHead": "9d3e7ef628bb7aa4c9343c6a8854a77567dc8ff9"
88
88
  }