@npm-questionpro/wick-ui-lib 0.12.0 → 0.15.0
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/src/base/ui/scrollArea.d.ts +8 -2
- package/dist/src/base/ui/separator.d.ts +4 -0
- package/dist/src/base/ui/sheet.d.ts +25 -0
- package/dist/src/base/ui/sidebar.d.ts +65 -0
- package/dist/src/base/ui/skeleton.d.ts +2 -0
- package/dist/src/components/appHeader/hooks/useOnClickOutsideHook.d.ts +1 -1
- package/dist/src/components/appHeader/hooks/useWindowSize.d.ts +2 -0
- package/dist/src/components/appHeader/index.d.ts +1 -0
- package/dist/src/components/appHeader/ui/WuAppHeaderSearch.d.ts +2 -2
- package/dist/src/components/appHeader/ui/WuTruncatedLabel.d.ts +1 -0
- package/dist/src/components/button/WuButton.d.ts +4 -3
- package/dist/src/components/combobox/WuCombobox.d.ts +5 -1
- package/dist/src/components/footer/WuFooter.d.ts +8 -0
- package/dist/src/components/footer/WuFooter.test.d.ts +1 -0
- package/dist/src/components/footer/index.d.ts +2 -0
- package/dist/src/components/formFields/WuInput/WuInput.d.ts +4 -9
- package/dist/src/components/formFields/WuTextarea/WuTextarea.d.ts +0 -8
- package/dist/src/components/formGroup/WuFormGroup.d.ts +17 -1
- package/dist/src/components/loader/WuLoader.d.ts +1 -0
- package/dist/src/components/menu/WuMenu.d.ts +8 -0
- package/dist/src/components/menu/ui/WuMenuItem.d.ts +4 -0
- package/dist/src/components/modal/WuModal.d.ts +4 -0
- package/dist/src/components/navbar/primaryNavbar/WuPrimaryNavbar.d.ts +5 -1
- package/dist/src/components/navbar/secondaryNavbar/WuSecondaryNavbar.d.ts +5 -1
- package/dist/src/components/popover/WuPopover.d.ts +8 -1
- package/dist/src/components/select/WuSelect.d.ts +9 -1
- package/dist/src/components/select/ui/_trigger.d.ts +2 -1
- package/dist/src/components/sidebar/WuSidebar.d.ts +26 -0
- package/dist/src/components/sidebar/WuSidebar.test.d.ts +1 -0
- package/dist/src/components/sidebar/index.d.ts +2 -0
- package/dist/src/components/tooltip/WuTooltip.d.ts +1 -0
- package/dist/src/hooks/useMobile.d.ts +1 -0
- package/dist/src/index.d.ts +2 -0
- package/dist/style.css +1 -1
- package/dist/wick-ui-lib/es/index.js +8223 -7273
- package/dist/wick-ui-lib/es/index.js.map +1 -1
- package/dist/wick-ui-lib/umd/index.js +14 -14
- package/dist/wick-ui-lib/umd/index.js.map +1 -1
- package/package.json +5 -4
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@npm-questionpro/wick-ui-lib",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.15.0",
|
|
5
5
|
"description": "A React component library by QuestionPro for building web applications with ease",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "./dist/wick-ui-lib/umd/index.js",
|
|
@@ -20,19 +20,20 @@
|
|
|
20
20
|
"@npm-questionpro/wick-ui-icon": "^4.0.0",
|
|
21
21
|
"@radix-ui/react-avatar": "^1.1.2",
|
|
22
22
|
"@radix-ui/react-checkbox": "^1.1.3",
|
|
23
|
-
"@radix-ui/react-dialog": "^1.1.
|
|
23
|
+
"@radix-ui/react-dialog": "^1.1.6",
|
|
24
24
|
"@radix-ui/react-dropdown-menu": "^2.1.5",
|
|
25
25
|
"@radix-ui/react-label": "^2.1.1",
|
|
26
26
|
"@radix-ui/react-menubar": "^1.1.5",
|
|
27
27
|
"@radix-ui/react-popover": "^1.1.5",
|
|
28
28
|
"@radix-ui/react-radio-group": "^1.2.2",
|
|
29
29
|
"@radix-ui/react-scroll-area": "^1.2.2",
|
|
30
|
-
"@radix-ui/react-slot": "^1.1.
|
|
30
|
+
"@radix-ui/react-slot": "^1.1.2",
|
|
31
31
|
"@radix-ui/react-switch": "^1.1.2",
|
|
32
32
|
"@radix-ui/react-toast": "^1.2.5",
|
|
33
33
|
"@radix-ui/react-toggle": "^1.1.1",
|
|
34
34
|
"@radix-ui/react-toggle-group": "^1.1.1",
|
|
35
|
-
"@radix-ui/react-tooltip": "^1.1.
|
|
35
|
+
"@radix-ui/react-tooltip": "^1.1.8",
|
|
36
|
+
"@radix-ui/react-separator": "^1.1.2",
|
|
36
37
|
"@storybook/addon-a11y": "^8.5.3",
|
|
37
38
|
"@storybook/addon-designs": "^8.1.0",
|
|
38
39
|
"@storybook/addon-essentials": "^8.5.3",
|