@helpdice/ui 2.0.9 → 2.1.3
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/AutoComplete/auto-complete.d.ts +1 -1
- package/dist/AutoComplete/index.js +1 -1
- package/dist/ButtonDropdown/index.js +2 -1
- package/dist/Carousal/component/Indicator.d.ts +1 -0
- package/dist/Carousal/component/Thumbs.d.ts +1 -1
- package/dist/Carousal/component/index.d.ts +1 -1
- package/dist/Carousal/component/types.d.ts +4 -3
- package/dist/Carousal/index.js +88 -38
- package/dist/Form/types.d.ts +2 -2
- package/dist/Grid/grid-container.d.ts +14 -0
- package/dist/Grid/grid.d.ts +14 -0
- package/dist/Input/index.js +1 -1
- package/dist/Popover/index.js +1 -1
- package/dist/Rating/rating.d.ts +1 -1
- package/dist/Select/index.js +6 -4
- package/dist/Table/index.js +8 -6
- package/dist/Table/table-types.d.ts +1 -1
- package/dist/Text/child.d.ts +1 -1
- package/dist/Textarea/index.js +1 -1
- package/dist/Tooltip/index.js +1 -1
- package/dist/Tree/index.js +3 -1
- package/dist/Tree/tree-help.d.ts +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.js +250 -61
- package/dist/use-toasts/helpers.d.ts +17 -0
- package/dist/use-toasts/index.d.ts +3 -0
- package/dist/use-toasts/index.js +204 -0
- package/dist/use-toasts/use-toast.d.ts +40 -0
- package/dist/utils/use-drag.d.ts +1 -1
- package/dist/utils/use-hd-ui-context.d.ts +16 -0
- package/esm/AutoComplete/auto-complete.d.ts +1 -1
- package/esm/Carousal/component/Indicator.d.ts +1 -0
- package/esm/Carousal/component/Indicator.js +56 -13
- package/esm/Carousal/component/Thumbs.d.ts +1 -1
- package/esm/Carousal/component/Thumbs.js +3 -3
- package/esm/Carousal/component/index.d.ts +1 -1
- package/esm/Carousal/component/index.js +29 -22
- package/esm/Carousal/component/types.d.ts +4 -3
- package/esm/Carousal/main.js +42 -59
- package/esm/Form/types.d.ts +2 -2
- package/esm/Grid/grid-container.d.ts +14 -0
- package/esm/Grid/grid.d.ts +14 -0
- package/esm/Rating/rating.d.ts +1 -1
- package/esm/Select/select.js +4 -3
- package/esm/Table/table-types.d.ts +1 -1
- package/esm/Text/child.d.ts +1 -1
- package/esm/Textarea/textarea.js +1 -1
- package/esm/Tooltip/tooltip.js +1 -1
- package/esm/Tree/tree-help.d.ts +1 -1
- package/esm/Tree/tree-help.js +3 -1
- package/esm/index.d.ts +2 -0
- package/esm/index.js +2 -1
- package/esm/use-toasts/helpers.d.ts +17 -0
- package/esm/use-toasts/helpers.js +69 -0
- package/esm/use-toasts/index.d.ts +3 -0
- package/esm/use-toasts/index.js +2 -0
- package/esm/use-toasts/toast-container.js +118 -0
- package/esm/use-toasts/toast-item.js +42 -0
- package/esm/use-toasts/use-toast.d.ts +40 -0
- package/esm/use-toasts/use-toast.js +103 -0
- package/esm/utils/collections.js +2 -1
- package/esm/utils/use-drag.d.ts +1 -1
- package/esm/utils/use-hd-ui-context.d.ts +16 -0
- package/package.json +17 -15
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@helpdice/ui",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.1.3",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "esm/index.d.ts",
|
|
6
6
|
"unpkg": "dist/index.min.js",
|
|
@@ -39,9 +39,8 @@
|
|
|
39
39
|
},
|
|
40
40
|
"prettier": "@helpdice/prettier-config",
|
|
41
41
|
"keywords": [
|
|
42
|
-
"flux",
|
|
43
42
|
"helpdice ui",
|
|
44
|
-
"
|
|
43
|
+
"hui",
|
|
45
44
|
"components",
|
|
46
45
|
"react components",
|
|
47
46
|
"react ui"
|
|
@@ -59,22 +58,24 @@
|
|
|
59
58
|
"@babel/preset-react": "^7.14.5",
|
|
60
59
|
"@babel/preset-typescript": "^7.14.5",
|
|
61
60
|
"@babel/standalone": "^7.28.3",
|
|
61
|
+
"@helpdice/icons": "^1.2.5",
|
|
62
|
+
"@helpdice/pro": "^1.7.8",
|
|
63
|
+
"@helpdice/sdk": "^0.2.5",
|
|
62
64
|
"@mapbox/rehype-prism": "^0.9.0",
|
|
63
65
|
"@mdx-js/loader": "^3.1.0",
|
|
64
66
|
"@mdx-js/react": "^3.1.0",
|
|
65
67
|
"@monaco-editor/react": "^4.7.0",
|
|
66
|
-
"@next/bundle-analyzer": "^15.
|
|
67
|
-
"@
|
|
68
|
-
"@next/mdx": "^15.1.6",
|
|
68
|
+
"@next/bundle-analyzer": "^15.5.4",
|
|
69
|
+
"@next/mdx": "^15.5.4",
|
|
69
70
|
"@rollup/plugin-babel": "^6.0.4",
|
|
70
71
|
"@rollup/plugin-commonjs": "28.0.2",
|
|
71
72
|
"@rollup/plugin-json": "^6.1.0",
|
|
72
73
|
"@rollup/plugin-node-resolve": "16.0.0",
|
|
73
74
|
"@types/enzyme": "^3.10.18",
|
|
74
75
|
"@types/lodash": "^4.17.15",
|
|
75
|
-
"@types/react": "~
|
|
76
|
+
"@types/react": "~19.2.0",
|
|
76
77
|
"@types/react-color": "^3.0.13",
|
|
77
|
-
"@types/react-dom": "~
|
|
78
|
+
"@types/react-dom": "~19.2.0",
|
|
78
79
|
"@types/react-syntax-highlighter": "^15.5.13",
|
|
79
80
|
"@types/react-transition-group": "^4.4.12",
|
|
80
81
|
"@types/warning": "^3.0.3",
|
|
@@ -89,11 +90,11 @@
|
|
|
89
90
|
"fs-extra": "^11.3.0",
|
|
90
91
|
"get-user-locale": "^3.0.0",
|
|
91
92
|
"just-debounce-it": "^3.2.0",
|
|
92
|
-
"next": "^15.
|
|
93
|
+
"next": "^15.5.4",
|
|
93
94
|
"prettier": "^3.4.2",
|
|
94
|
-
"react": "
|
|
95
|
+
"react": "19.2.0",
|
|
95
96
|
"react-color": "^2.19.3",
|
|
96
|
-
"react-dom": "^
|
|
97
|
+
"react-dom": "^19.2.0",
|
|
97
98
|
"react-live": "^4.1.8",
|
|
98
99
|
"remark-gfm": "^4.0.1",
|
|
99
100
|
"rollup": "^4.50.1",
|
|
@@ -104,6 +105,7 @@
|
|
|
104
105
|
},
|
|
105
106
|
"dependencies": {
|
|
106
107
|
"@floating-ui/react-dom": "^2.1.6",
|
|
108
|
+
"@helpdice/react-html-parser": "^0.1.2",
|
|
107
109
|
"@mapbox/rehype-prism": "^0.9.0",
|
|
108
110
|
"@types/hoist-non-react-statics": "^3.3.6",
|
|
109
111
|
"@types/styled-components": "^5.1.34",
|
|
@@ -132,12 +134,12 @@
|
|
|
132
134
|
"tslib": "^2.8.1"
|
|
133
135
|
},
|
|
134
136
|
"peerDependencies": {
|
|
137
|
+
"@helpdice/icons": "^1.2.5",
|
|
138
|
+
"@helpdice/sdk": "^0.2.5",
|
|
135
139
|
"@helpdice/theme": "^1.0.5",
|
|
136
|
-
"@helpdice/icons": "^1.1.3",
|
|
137
|
-
"@helpdice/sdk": "^0.1.8",
|
|
138
140
|
"@helpdice/utils": "^0.1.3",
|
|
139
|
-
"react": "^
|
|
140
|
-
"react-dom": "^
|
|
141
|
+
"react": "^19.2.0",
|
|
142
|
+
"react-dom": "^19.2.0"
|
|
141
143
|
},
|
|
142
144
|
"jest": {
|
|
143
145
|
"globals": {
|