@npm-questionpro/wick-ui-lib 1.22.0 → 1.24.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.
Files changed (41) hide show
  1. package/dist/src/components/contentEditor/WuContentEditor.d.ts +5 -0
  2. package/dist/src/components/contentEditor/extentions/Alignment.d.ts +2 -0
  3. package/dist/src/components/contentEditor/extentions/BgColor.d.ts +1 -0
  4. package/dist/src/components/contentEditor/extentions/Block.d.ts +2 -0
  5. package/dist/src/components/contentEditor/extentions/Blockquote.d.ts +1 -0
  6. package/dist/src/components/contentEditor/extentions/Bold.d.ts +2 -0
  7. package/dist/src/components/contentEditor/extentions/ClearFormat.d.ts +1 -0
  8. package/dist/src/components/contentEditor/extentions/CodeLine.d.ts +1 -0
  9. package/dist/src/components/contentEditor/extentions/EmbedImage.d.ts +2 -0
  10. package/dist/src/components/contentEditor/extentions/EmbedLink.d.ts +2 -0
  11. package/dist/src/components/contentEditor/extentions/EmbedTable.d.ts +1 -0
  12. package/dist/src/components/contentEditor/extentions/Family.d.ts +2 -0
  13. package/dist/src/components/contentEditor/extentions/Italic.d.ts +2 -0
  14. package/dist/src/components/contentEditor/extentions/List.d.ts +2 -0
  15. package/dist/src/components/contentEditor/extentions/Size.d.ts +2 -0
  16. package/dist/src/components/contentEditor/extentions/Strikethrough.d.ts +2 -0
  17. package/dist/src/components/contentEditor/extentions/Subscript.d.ts +1 -0
  18. package/dist/src/components/contentEditor/extentions/Superscript.d.ts +1 -0
  19. package/dist/src/components/contentEditor/extentions/TextColor.d.ts +1 -0
  20. package/dist/src/components/contentEditor/extentions/Underline.d.ts +2 -0
  21. package/dist/src/components/contentEditor/ui/Toolbar.d.ts +24 -0
  22. package/dist/src/components/drilldown/WuDrilldown.d.ts +22 -12
  23. package/dist/src/components/drilldown/WuDrilldownTitles.d.ts +11 -0
  24. package/dist/src/components/drilldown/index.d.ts +2 -1
  25. package/dist/style.css +1 -1
  26. package/dist/wick-ui-lib/es/index.js +9127 -5417
  27. package/dist/wick-ui-lib/umd/index.js +16 -8
  28. package/package.json +3 -3
  29. package/dist/src/components/contentEditor/extentions/fontFamily.d.ts +0 -2
  30. package/dist/src/components/contentEditor/extentions/fontSize.d.ts +0 -1
  31. package/dist/src/components/contentEditor/extentions/formatAlignment.d.ts +0 -2
  32. package/dist/src/components/contentEditor/extentions/formatClear.d.ts +0 -1
  33. package/dist/src/components/contentEditor/extentions/formatCode.d.ts +0 -1
  34. package/dist/src/components/contentEditor/extentions/formatColor.d.ts +0 -1
  35. package/dist/src/components/contentEditor/extentions/formatList.d.ts +0 -2
  36. package/dist/src/components/contentEditor/extentions/formatScript.d.ts +0 -1
  37. package/dist/src/components/contentEditor/extentions/formatStyle.d.ts +0 -2
  38. package/dist/src/components/contentEditor/extentions/formatText.d.ts +0 -2
  39. package/dist/src/components/contentEditor/extentions/image.d.ts +0 -2
  40. package/dist/src/components/contentEditor/extentions/link.d.ts +0 -2
  41. package/dist/src/components/contentEditor/extentions/table.d.ts +0 -1
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@npm-questionpro/wick-ui-lib",
3
3
  "private": false,
4
- "version": "1.22.0",
4
+ "version": "1.24.1",
5
5
  "description": "A React component library by QuestionPro for building web applications with ease",
6
6
  "keywords": [
7
7
  "react",
@@ -75,10 +75,10 @@
75
75
  "clsx": "^2.1.1",
76
76
  "cmdk": "1.0.4",
77
77
  "date-fns": "^4.1.0",
78
+ "motion": "^12.23.26",
78
79
  "react": ">= 18 < 20",
79
80
  "react-day-picker": "9.5.1",
80
81
  "react-dom": ">= 18 < 20",
81
- "react-transition-group": "^4.4.5",
82
82
  "react-virtuoso": "^4.16.1",
83
83
  "tailwind-merge": "^2.6.0"
84
84
  },
@@ -118,10 +118,10 @@
118
118
  "clsx": "^2.1.1",
119
119
  "cmdk": "1.0.4",
120
120
  "date-fns": "^4.1.0",
121
+ "motion": "^12.23.26",
121
122
  "react": ">= 18 < 20",
122
123
  "react-day-picker": "9.5.1",
123
124
  "react-dom": ">= 18 < 20",
124
- "react-transition-group": "^4.4.5",
125
125
  "react-virtuoso": "^4.12.3",
126
126
  "tailwind-merge": "^2.6.0"
127
127
  },
@@ -1,2 +0,0 @@
1
- import { default as React } from 'react';
2
- export declare const FormatFontFamily: React.FC;
@@ -1 +0,0 @@
1
- export declare const FormatFontSize: React.FC;
@@ -1,2 +0,0 @@
1
- import { default as React } from 'react';
2
- export declare const FormatAlignment: React.FC;
@@ -1 +0,0 @@
1
- export declare const FormatClear: React.FC;
@@ -1 +0,0 @@
1
- export declare const FormatCode: React.FC;
@@ -1 +0,0 @@
1
- export declare const FormatColor: React.FC;
@@ -1,2 +0,0 @@
1
- import { default as React } from 'react';
2
- export declare const FormatList: React.FC;
@@ -1 +0,0 @@
1
- export declare const FormatScript: React.FC;
@@ -1,2 +0,0 @@
1
- import { default as React } from 'react';
2
- export declare const FormatStyle: React.FC;
@@ -1,2 +0,0 @@
1
- import { default as React } from 'react';
2
- export declare const FormatText: React.FC;
@@ -1,2 +0,0 @@
1
- import { default as React } from 'react';
2
- export declare const FormatImage: React.FC;
@@ -1,2 +0,0 @@
1
- import { default as React } from 'react';
2
- export declare const FormatLink: React.FC;
@@ -1 +0,0 @@
1
- export declare const FormatTable: React.FC;