@admin-layout/tailwind-design-pro 12.2.4-alpha.2 → 12.2.4-alpha.4
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/README.md +80 -0
- package/lib/components/LanguageMenu/LanguageMenu.d.ts.map +1 -1
- package/lib/components/LanguageMenu/LanguageMenu.js +6 -2
- package/lib/components/LanguageMenu/LanguageMenu.js.map +1 -1
- package/lib/components/Layout/BasicLayout/index.d.ts.map +1 -1
- package/lib/components/Layout/BasicLayout/index.js +4 -3
- package/lib/components/Layout/BasicLayout/index.js.map +1 -1
- package/lib/components/Layout/ProTailwindLayout.d.ts +20 -8
- package/lib/components/Layout/ProTailwindLayout.d.ts.map +1 -1
- package/lib/components/Layout/ProTailwindLayout.js +232 -77
- package/lib/components/Layout/ProTailwindLayout.js.map +1 -1
- package/lib/components/Layout/Sidebar/BottomMenu.d.ts.map +1 -1
- package/lib/components/Layout/Sidebar/BottomMenu.js +4 -4
- package/lib/components/Layout/Sidebar/BottomMenu.js.map +1 -1
- package/lib/components/Layout/TailwindLayout.d.ts.map +1 -1
- package/lib/components/Layout/TailwindLayout.js +19 -2
- package/lib/components/Layout/TailwindLayout.js.map +1 -1
- package/lib/components/Layout/defaultPermissions.d.ts +134 -0
- package/lib/components/Layout/defaultPermissions.d.ts.map +1 -0
- package/lib/components/Layout/defaultPermissions.js +134 -0
- package/lib/components/Layout/defaultPermissions.js.map +1 -0
- package/lib/components/SettingDrawer/hooks/useSettingsOperations.d.ts.map +1 -1
- package/lib/components/SettingDrawer/hooks/useSettingsOperations.js +11 -8
- package/lib/components/SettingDrawer/hooks/useSettingsOperations.js.map +1 -1
- package/lib/components/SettingDrawer/utils/transformers.d.ts +16 -0
- package/lib/components/SettingDrawer/utils/transformers.d.ts.map +1 -1
- package/lib/components/SettingDrawer/utils/transformers.js +39 -2
- package/lib/components/SettingDrawer/utils/transformers.js.map +1 -1
- package/lib/compute.js +2 -1
- package/lib/routes.json +3 -1
- package/package.json +6 -5
package/lib/routes.json
CHANGED
|
@@ -14,13 +14,15 @@
|
|
|
14
14
|
"hasClientLoader": true,
|
|
15
15
|
"hasComponent": true,
|
|
16
16
|
"hasLinks": true,
|
|
17
|
+
"hasHydrateFallback": true,
|
|
17
18
|
"hasShouldRevalidate": true,
|
|
18
19
|
"hasHandle": true,
|
|
19
20
|
"loaderReturnInfo": {
|
|
20
21
|
"hasOptions": false,
|
|
21
22
|
"keys": [
|
|
22
23
|
"newMenuData",
|
|
23
|
-
"apolloState"
|
|
24
|
+
"apolloState",
|
|
25
|
+
"permissions"
|
|
24
26
|
]
|
|
25
27
|
}
|
|
26
28
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@admin-layout/tailwind-design-pro",
|
|
3
|
-
"version": "12.2.4-alpha.
|
|
3
|
+
"version": "12.2.4-alpha.4",
|
|
4
4
|
"description": "Sample core for higher packages to depend on",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"author": "CDMBase LLC",
|
|
@@ -22,20 +22,21 @@
|
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@admin-layout/assets": "12.2.4-alpha.0",
|
|
25
|
-
"@admin-layout/client": "12.2.4-alpha.
|
|
26
|
-
"@admin-layout/tailwind-ui": "12.2.4-alpha.
|
|
25
|
+
"@admin-layout/client": "12.2.4-alpha.4",
|
|
26
|
+
"@admin-layout/tailwind-ui": "12.2.4-alpha.4",
|
|
27
27
|
"react-favicon": "^0.0.23",
|
|
28
28
|
"react-intl": "^6.1.1",
|
|
29
29
|
"react-responsive": "^10.0.0"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@adminide-stack/extension-api": "13.2.1-alpha.
|
|
32
|
+
"@adminide-stack/extension-api": "13.2.1-alpha.81",
|
|
33
33
|
"@tailwindcss/aspect-ratio": "^0.4.2",
|
|
34
34
|
"@tailwindcss/forms": "^0.5.4",
|
|
35
35
|
"@tailwindcss/typography": "^0.5.9",
|
|
36
36
|
"tailwindcss": "^3.3.3"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
39
|
+
"@adminide-stack/extension-api": "*",
|
|
39
40
|
"inversify": "*"
|
|
40
41
|
},
|
|
41
42
|
"publishConfig": {
|
|
@@ -53,5 +54,5 @@
|
|
|
53
54
|
"typescript": {
|
|
54
55
|
"definition": "lib/index.d.ts"
|
|
55
56
|
},
|
|
56
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "b88c77dd51092d2ac4992bdd438c430612e2e7e2"
|
|
57
58
|
}
|