@deque/cauldron-react 4.5.0-canary.0c764a21 → 4.5.0-canary.16adb900
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/lib/components/Breadcrumb/Breadcrumb.d.ts +5 -9
- package/lib/components/Code/index.d.ts +2 -2
- package/lib/components/Dialog/index.d.ts +1 -1
- package/lib/components/ExpandCollapsePanel/PanelTrigger.d.ts +1 -1
- package/lib/components/OptionsMenu/OptionsMenu.d.ts +1 -0
- package/lib/components/Pagination/Pagination.d.ts +20 -0
- package/lib/components/Pagination/index.d.ts +2 -19
- package/lib/components/Pagination/usePagination.d.ts +24 -0
- package/lib/components/ProgressBar/index.d.ts +6 -12
- package/lib/components/RadioCardGroup/index.d.ts +38 -0
- package/lib/components/Select/index.d.ts +1 -1
- package/lib/components/SideBar/SideBarItem.d.ts +1 -1
- package/lib/components/Toast/index.d.ts +1 -0
- package/lib/components/Tooltip/index.d.ts +1 -1
- package/lib/components/TopBar/TopBarTrigger.d.ts +1 -1
- package/lib/components/TwoColumnPanel/ColumnLeft.d.ts +3 -5
- package/lib/components/TwoColumnPanel/ColumnRight.d.ts +3 -5
- package/lib/index.d.ts +2 -1
- package/lib/index.js +282 -169
- package/lib/utils/remove-ids/index.d.ts +1 -1
- package/package.json +10 -9
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare function recursivelyRemoveIds(element: React.ReactNode): import("react").ReactElement<any, string |
|
|
1
|
+
declare function recursivelyRemoveIds(element: React.ReactNode): import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>[] | null | undefined;
|
|
2
2
|
export default recursivelyRemoveIds;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deque/cauldron-react",
|
|
3
|
-
"version": "4.5.0-canary.
|
|
3
|
+
"version": "4.5.0-canary.16adb900",
|
|
4
4
|
"description": "Fully accessible react components library for Deque Cauldron",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -23,14 +23,14 @@
|
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@popperjs/core": "^2.5.4",
|
|
25
25
|
"classnames": "^2.2.6",
|
|
26
|
-
"focus-trap-react": "
|
|
26
|
+
"focus-trap-react": "8",
|
|
27
27
|
"focusable": "^2.3.0",
|
|
28
28
|
"keyname": "^0.1.0",
|
|
29
29
|
"prop-types": "^15.6.0",
|
|
30
30
|
"react-id-generator": "^3.0.1",
|
|
31
31
|
"react-popper": "^2.2.4",
|
|
32
|
-
"react-syntax-highlighter": "^15.
|
|
33
|
-
"tslib": "^2.
|
|
32
|
+
"react-syntax-highlighter": "^15.5.0",
|
|
33
|
+
"tslib": "^2.4.0"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"@babel/cli": "^7.8.4",
|
|
@@ -47,10 +47,11 @@
|
|
|
47
47
|
"@rollup/plugin-typescript": "^5.0.2",
|
|
48
48
|
"@svgr/rollup": "^6.1.2",
|
|
49
49
|
"@types/classnames": "^2.2.10",
|
|
50
|
+
"@types/node": "^17.0.42",
|
|
50
51
|
"@types/prop-types": "^15.7.3",
|
|
51
|
-
"@types/react": "^
|
|
52
|
-
"@types/react-dom": "^
|
|
53
|
-
"@types/react-syntax-highlighter": "^
|
|
52
|
+
"@types/react": "^18.0.12",
|
|
53
|
+
"@types/react-dom": "^18.0.5",
|
|
54
|
+
"@types/react-syntax-highlighter": "^15.5.2",
|
|
54
55
|
"autoprefixer": "^9.7.6",
|
|
55
56
|
"babel-plugin-module-resolver": "^4.0.0",
|
|
56
57
|
"babel-plugin-transform-export-extensions": "^6.22.0",
|
|
@@ -79,8 +80,8 @@
|
|
|
79
80
|
"react-router-dom": "^5.1.2",
|
|
80
81
|
"rollup": "^2.23.0",
|
|
81
82
|
"sinon": "^10.0.0",
|
|
82
|
-
"ts-node": "^8.
|
|
83
|
-
"typescript": "^
|
|
83
|
+
"ts-node": "^10.8.1",
|
|
84
|
+
"typescript": "^4.7.3"
|
|
84
85
|
},
|
|
85
86
|
"repository": {
|
|
86
87
|
"type": "git",
|