@stacksjs/ui 0.70.73 → 0.70.75

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.
@@ -1,5 +1,4 @@
1
- export {
2
- Disclosure,
3
- DisclosureButton,
4
- DisclosurePanel,
5
- } from '@stacksjs/stx';
1
+ // Disclosure primitives were part of the former Vue compatibility layer.
2
+ // stx does not expose them, so keep this module intentionally empty instead
3
+ // of publishing exports that fail at runtime.
4
+ export {};
@@ -1,5 +1 @@
1
- export {
2
- Disclosure,
3
- DisclosureButton,
4
- DisclosurePanel
5
- } from "@stacksjs/stx";
1
+ export {};
@@ -1 +1,2 @@
1
- export { Menu, MenuButton, MenuItem, MenuItems } from '@stacksjs/stx';
1
+ // Menu primitives were part of the former Vue compatibility layer.
2
+ export {};
@@ -1 +1 @@
1
- export { Menu, MenuButton, MenuItem, MenuItems } from "@stacksjs/stx";
1
+ export {};
@@ -3,4 +3,4 @@ export {
3
3
  DialogDescription,
4
4
  DialogPanel,
5
5
  DialogTitle,
6
- } from '@stacksjs/stx';
6
+ } from '@stacksjs/components';
@@ -3,4 +3,4 @@ export {
3
3
  DialogDescription,
4
4
  DialogPanel,
5
5
  DialogTitle
6
- } from "@stacksjs/stx";
6
+ } from "@stacksjs/components";
@@ -1 +1 @@
1
- export { Popover, PopoverButton, PopoverPanel } from '@stacksjs/stx';
1
+ export { Popover, PopoverButton, PopoverPanel } from '@stacksjs/components';
@@ -1 +1 @@
1
- export { Popover, PopoverButton, PopoverPanel } from "@stacksjs/stx";
1
+ export { Popover, PopoverButton, PopoverPanel } from "@stacksjs/components";
@@ -2,4 +2,4 @@ export {
2
2
  RadioGroup,
3
3
  RadioGroupLabel,
4
4
  RadioGroupOption,
5
- } from '@stacksjs/stx';
5
+ } from '@stacksjs/components';
@@ -2,4 +2,4 @@ export {
2
2
  RadioGroup,
3
3
  RadioGroupLabel,
4
4
  RadioGroupOption
5
- } from "@stacksjs/stx";
5
+ } from "@stacksjs/components";
@@ -3,4 +3,4 @@ export {
3
3
  ComboboxInput,
4
4
  ComboboxOption,
5
5
  ComboboxOptions,
6
- } from '@stacksjs/stx';
6
+ } from '@stacksjs/components';
@@ -3,4 +3,4 @@ export {
3
3
  ComboboxInput,
4
4
  ComboboxOption,
5
5
  ComboboxOptions
6
- } from "@stacksjs/stx";
6
+ } from "@stacksjs/components";
@@ -1 +1,2 @@
1
- export { Tab, TabGroup, TabList, TabPanel, TabPanels } from '@stacksjs/stx';
1
+ export type { Tab, TabPanelProps, TabsProps } from '@stacksjs/components';
2
+ export { TabPanel, Tabs } from '@stacksjs/components';
@@ -1 +1 @@
1
- export { Tab, TabGroup, TabList, TabPanel, TabPanels } from "@stacksjs/stx";
1
+ export { TabPanel, Tabs } from "@stacksjs/components";
@@ -1 +1 @@
1
- export { Switch } from '@stacksjs/stx';
1
+ export { Switch } from '@stacksjs/components';
@@ -1 +1 @@
1
- export { Switch } from "@stacksjs/stx";
1
+ export { Switch } from "@stacksjs/components";
@@ -1 +1,2 @@
1
- export { TransitionChild, TransitionRoot } from '@stacksjs/stx';
1
+ export type { TransitionProps } from '@stacksjs/components';
2
+ export { Transition } from '@stacksjs/components';
@@ -1 +1 @@
1
- export { TransitionChild, TransitionRoot } from "@stacksjs/stx";
1
+ export { Transition } from "@stacksjs/components";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/ui",
3
3
  "type": "module",
4
- "version": "0.70.73",
4
+ "version": "0.70.75",
5
5
  "description": "The Stacks UI engine.",
6
6
  "author": "Chris Breuer",
7
7
  "contributors": [
@@ -57,13 +57,13 @@
57
57
  "prepublishOnly": "bun run build"
58
58
  },
59
59
  "dependencies": {
60
- "@cwcss/crosswind": "^0.2.6"
60
+ "@cwcss/crosswind": "^0.2.6",
61
+ "@stacksjs/components": "^0.2.82"
61
62
  },
62
63
  "devDependencies": {
63
64
  "@stacksjs/build": "workspace:*",
64
- "@stacksjs/config": "0.70.73",
65
- "better-dx": "^0.2.12",
66
- "@stacksjs/router": "0.70.73",
67
- "@stacksjs/stx": "^0.2.82"
65
+ "@stacksjs/config": "0.70.75",
66
+ "better-dx": "^0.2.16",
67
+ "@stacksjs/router": "0.70.75"
68
68
  }
69
69
  }