linkedunion-design-kit 1.10.6-beta.2 → 1.10.7-beta.1
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.d.ts +5 -0
- package/dist/index.js +5 -0
- package/dist/src/components/Alerts/Alert/alert.js +1 -0
- package/dist/src/components/Button/Button/Button.d.ts +2 -1
- package/dist/src/components/Button/Button/Button.js +18 -6
- package/dist/src/components/Button/Button/Button.stories.d.ts +4 -2
- package/dist/src/components/Button/index.d.ts +1 -0
- package/dist/src/components/Button/index.js +3 -3
- package/dist/src/components/Dropdown/DropdownMenu/DropdownMenu.d.ts +6 -2
- package/dist/src/components/Dropdown/DropdownMenu/DropdownMenu.js +7 -6
- package/dist/src/components/Dropdown/DropdownMenu/DropdownMenu.stories.d.ts +8 -1
- package/dist/src/components/Dropdown/DropdownMenu/DropdownMenu.stories.js +48 -3
- package/dist/src/components/Dropdown/DropdownMenu/index.d.ts +5 -0
- package/dist/src/components/Dropdown/DropdownMenu/index.js +5 -0
- package/dist/src/components/Dropdown/select.js +1 -1
- package/dist/src/components/MenuBar/menubar.d.ts +26 -0
- package/dist/src/components/MenuBar/menubar.js +92 -0
- package/dist/src/components/MenuBar/menubar.stories.d.ts +14 -0
- package/dist/src/components/MenuBar/menubar.stories.js +59 -0
- package/dist/src/components/NavigationMenu/index.d.ts +1 -0
- package/dist/src/components/NavigationMenu/index.js +1 -0
- package/dist/src/components/NavigationMenu/navigation-menu.d.ts +14 -0
- package/dist/src/components/NavigationMenu/navigation-menu.js +62 -0
- package/dist/src/components/NavigationMenu/navigation-menu.stories.d.ts +29 -0
- package/dist/src/components/NavigationMenu/navigation-menu.stories.js +91 -0
- package/dist/src/components/Separator/Separator.stories.d.ts +15 -0
- package/dist/src/components/Separator/Separator.stories.js +79 -0
- package/dist/src/components/Separator/index.d.ts +1 -0
- package/dist/src/components/Separator/index.js +1 -0
- package/dist/src/components/Separator/separator.d.ts +4 -0
- package/dist/src/components/Separator/separator.js +32 -0
- package/dist/src/components/Sheet/index.d.ts +1 -0
- package/dist/src/components/Sheet/index.js +1 -0
- package/dist/src/components/Sheet/sheet.d.ts +25 -0
- package/dist/src/components/Sheet/sheet.js +76 -0
- package/dist/src/components/Sheet/sheet.stories.d.ts +7 -0
- package/dist/src/components/Sheet/sheet.stories.js +21 -0
- package/dist/styles/global.css +524 -0
- package/package.json +4 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "linkedunion-design-kit",
|
|
3
|
-
"version": "1.10.
|
|
3
|
+
"version": "1.10.7-beta.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
@@ -47,9 +47,12 @@
|
|
|
47
47
|
"@radix-ui/react-dialog": "^1.1.15",
|
|
48
48
|
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
49
49
|
"@radix-ui/react-label": "^2.1.3",
|
|
50
|
+
"@radix-ui/react-menubar": "^1.1.16",
|
|
51
|
+
"@radix-ui/react-navigation-menu": "^1.2.14",
|
|
50
52
|
"@radix-ui/react-popover": "^1.1.14",
|
|
51
53
|
"@radix-ui/react-radio-group": "^1.3.7",
|
|
52
54
|
"@radix-ui/react-select": "^2.2.5",
|
|
55
|
+
"@radix-ui/react-separator": "^1.1.8",
|
|
53
56
|
"@radix-ui/react-slider": "^1.3.5",
|
|
54
57
|
"@radix-ui/react-slot": "^1.2.3",
|
|
55
58
|
"@radix-ui/react-switch": "^1.1.4",
|