@koine/react 1.1.11 → 1.1.12
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/Carousel/CarouselCss.d.ts +6 -1
- package/Details/Details.d.ts +298 -13
- package/Dialog/DialogMui.d.ts +328 -19
- package/Dialog/css/bare.d.ts +352 -43
- package/Dialog/m/bare.d.ts +322 -13
- package/Dialog/sc/bare.d.ts +325 -17
- package/Dialog/sc/framer.d.ts +316 -7
- package/Dialog/sc/framerMaterial.d.ts +316 -7
- package/Dialog/sc/material.d.ts +325 -16
- package/Dialog/tw/bare.d.ts +358 -49
- package/Dialog/tw/elegant.d.ts +379 -70
- package/Dialog/tw/framer.d.ts +340 -31
- package/Dialog/tw/framerMaterial.d.ts +356 -47
- package/Dialog/tw/material.d.ts +379 -70
- package/Form/Form.d.ts +45 -19
- package/Form/sc/bare.d.ts +33 -8
- package/Forms/Checkbox/Checkbox.d.ts +1 -1
- package/Forms/Input/Input.d.ts +1 -1
- package/Forms/Password/Password.d.ts +1 -1
- package/Forms/Radio/Radio.d.ts +1 -1
- package/Forms/Switch/Switch.d.ts +1 -1
- package/Forms/Textarea/Textarea.d.ts +1 -1
- package/Forms/Textarea/TextareaRich.d.ts +1 -1
- package/Link/Link.d.ts +1 -1
- package/Menu/MenuMui.d.ts +0 -35
- package/Menu/MenuMui.js +164 -77
- package/Menu/MenuMui.mjs +165 -75
- package/MenuItem/MenuItemMui.d.ts +0 -6
- package/MenuItem/MenuItemMui.js +31 -17
- package/MenuItem/MenuItemMui.mjs +32 -15
- package/Tabs/TabsMui.d.ts +287 -55
- package/Tabs/tw/bare.d.ts +311 -80
- package/Tabs/tw/material.d.ts +326 -136
- package/package.json +25 -22
package/package.json
CHANGED
|
@@ -45,29 +45,32 @@
|
|
|
45
45
|
"optional": true
|
|
46
46
|
}
|
|
47
47
|
},
|
|
48
|
-
"
|
|
49
|
-
"types": "./index.d.ts",
|
|
50
|
-
"dependencies": {},
|
|
51
|
-
"peerDependencies": {
|
|
52
|
-
"styled-components": "5.3.6",
|
|
53
|
-
"framer-motion": "8.5.5",
|
|
54
|
-
"react": "18.2.0",
|
|
55
|
-
"@mui/base": "5.0.0-alpha.115",
|
|
56
|
-
"@koine/utils": "1.1.11",
|
|
57
|
-
"react-icons": "4.7.1",
|
|
58
|
-
"date-fns": "2.29.3",
|
|
59
|
-
"react-swipeable": "7.0.0",
|
|
60
|
-
"clsx": "1.2.1",
|
|
61
|
-
"ts-debounce": "4.0.0",
|
|
62
|
-
"type-fest": "3.5.3",
|
|
63
|
-
"@tiptap/react": "2.0.0-beta.209",
|
|
64
|
-
"@tiptap/starter-kit": "2.0.0-beta.209",
|
|
48
|
+
"dependencies": {
|
|
65
49
|
"@kuus/yup": "1.0.0-beta.7",
|
|
66
|
-
"
|
|
67
|
-
"@mui/utils": "5.11.
|
|
68
|
-
"react
|
|
69
|
-
"
|
|
50
|
+
"@mui/base": "5.0.0-alpha.118",
|
|
51
|
+
"@mui/utils": "5.11.9",
|
|
52
|
+
"@tiptap/react": "2.0.0-beta.217",
|
|
53
|
+
"@tiptap/starter-kit": "2.0.0-beta.217",
|
|
54
|
+
"clsx": "1.2.1",
|
|
55
|
+
"date-fns": "^2.29.3",
|
|
56
|
+
"framer-motion": "^9.0.4",
|
|
57
|
+
"next": "^13.1.6",
|
|
58
|
+
"react": "^18.2.0",
|
|
59
|
+
"react-dom": "^18.2.0",
|
|
60
|
+
"react-hook-form": "^7.43.1",
|
|
61
|
+
"react-icons": "^4.7.1",
|
|
62
|
+
"react-is": "^18.2.0",
|
|
63
|
+
"react-swipeable": "^7.0.0",
|
|
64
|
+
"styled-components": "^5.3.6",
|
|
65
|
+
"ts-debounce": "^4.0.0",
|
|
66
|
+
"tslib": "^2.5.0",
|
|
67
|
+
"type-fest": "^3.5.7"
|
|
70
68
|
},
|
|
71
|
-
"
|
|
69
|
+
"peerDependencies": {
|
|
70
|
+
"@koine/utils": "1.1.12"
|
|
71
|
+
},
|
|
72
|
+
"main": "./index.js",
|
|
73
|
+
"types": "./index.d.ts",
|
|
74
|
+
"version": "1.1.12",
|
|
72
75
|
"module": "./index.mjs"
|
|
73
76
|
}
|