@npm-questionpro/wick-ui-lib 0.15.3 → 0.17.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.
Files changed (32) hide show
  1. package/dist/src/base/ui/table.d.ts +10 -0
  2. package/dist/src/components/button/WuButton.d.ts +0 -4
  3. package/dist/src/components/combobox/WuCombobox.d.ts +0 -4
  4. package/dist/src/components/formFields/WuInput/WuInput.d.ts +0 -4
  5. package/dist/src/components/formGroup/WuFormGroup.d.ts +0 -16
  6. package/dist/src/components/menu/WuMenu.d.ts +1 -4
  7. package/dist/src/components/menu/ui/WuMenuItem.d.ts +0 -4
  8. package/dist/src/components/modal/WuModal.d.ts +0 -4
  9. package/dist/src/components/navbar/primaryNavbar/WuPrimaryNavbar.d.ts +0 -3
  10. package/dist/src/components/navbar/secondaryNavbar/WuSecondaryNavbar.d.ts +0 -4
  11. package/dist/src/components/pagination/WuPagination.d.ts +12 -0
  12. package/dist/src/components/pagination/WuPagination.test.d.ts +1 -0
  13. package/dist/src/components/pagination/index.d.ts +2 -0
  14. package/dist/src/components/popover/WuPopover.d.ts +2 -6
  15. package/dist/src/components/select/WuSelect.d.ts +0 -8
  16. package/dist/src/components/table/components/dataTable/WuDataTable.d.ts +25 -0
  17. package/dist/src/components/table/components/dataTable/WuDataTable.test.d.ts +1 -0
  18. package/dist/src/components/table/components/table/WuTable.d.ts +26 -0
  19. package/dist/src/components/table/components/table/WuTable.test.d.ts +1 -0
  20. package/dist/src/components/table/index.d.ts +5 -0
  21. package/dist/src/components/table/types/IWuManualSorting.d.ts +4 -0
  22. package/dist/src/components/table/types/IWuTableColumnDef.d.ts +5 -0
  23. package/dist/src/components/table/ui/_body.d.ts +6 -0
  24. package/dist/src/components/table/ui/_header.d.ts +10 -0
  25. package/dist/src/components/table/utils/data.d.ts +23 -0
  26. package/dist/src/index.d.ts +2 -0
  27. package/dist/style.css +1 -1
  28. package/dist/wick-ui-lib/es/index.js +9720 -7355
  29. package/dist/wick-ui-lib/es/index.js.map +1 -1
  30. package/dist/wick-ui-lib/umd/index.js +35 -14
  31. package/dist/wick-ui-lib/umd/index.js.map +1 -1
  32. package/package.json +6 -3
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.15.3",
4
+ "version": "0.17.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",
@@ -17,7 +17,7 @@
17
17
  },
18
18
  "devDependencies": {
19
19
  "@eslint/js": "^9.19.0",
20
- "@npm-questionpro/wick-ui-icon": "^4.1.0",
20
+ "@npm-questionpro/wick-ui-icon": "^5.1.0",
21
21
  "@radix-ui/react-avatar": "^1.1.2",
22
22
  "@radix-ui/react-checkbox": "^1.1.3",
23
23
  "@radix-ui/react-dialog": "^1.1.6",
@@ -89,7 +89,7 @@
89
89
  "vitest": "^3.0.5"
90
90
  },
91
91
  "peerDependencies": {
92
- "@npm-questionpro/wick-ui-icon": "^4.1.0",
92
+ "@npm-questionpro/wick-ui-icon": "^5.1.0",
93
93
  "react": "^18.3.1",
94
94
  "react-dom": "^18.3.1"
95
95
  },
@@ -102,6 +102,9 @@
102
102
  "eslint --fix"
103
103
  ]
104
104
  },
105
+ "dependencies": {
106
+ "@tanstack/react-table": "^8.20.5"
107
+ },
105
108
  "scripts": {
106
109
  "build": "tsc -b && vite build",
107
110
  "lint": "eslint ./src --fix",