@dyrected/admin 2.6.0 → 2.6.2
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/admin.css +221 -32
- package/dist/components/forms/field-renderer.d.ts +3 -9
- package/dist/components/forms/fields/date-picker.d.ts +4 -1
- package/dist/components/forms/fields/format-aware-inputs.test.d.ts +1 -0
- package/dist/components/forms/fields/text-field.d.ts +1 -1
- package/dist/components/forms/fields/url-field.d.ts +1 -1
- package/dist/components/forms/form-engine.d.ts +13 -2
- package/dist/components/media/__tests__/media-library-dialog.test.d.ts +1 -0
- package/dist/components/media/storage-notice.d.ts +7 -0
- package/dist/components/workflow/WorkflowPanel.d.ts +8 -1
- package/dist/components/workflow/draft-live-compare-sheet.d.ts +6 -0
- package/dist/components/workflow/workflow-transition-controls.d.ts +60 -0
- package/dist/controllers/__tests__/field.test.d.ts +1 -0
- package/dist/controllers/__tests__/form.test.d.ts +1 -0
- package/dist/controllers/__tests__/media.test.d.ts +1 -0
- package/dist/controllers/__tests__/theme.test.d.ts +1 -0
- package/dist/controllers/field.d.ts +13 -0
- package/dist/controllers/form.d.ts +102 -0
- package/dist/controllers/media.d.ts +119 -0
- package/dist/controllers/theme.d.ts +28 -0
- package/dist/favicon.ico +0 -0
- package/dist/favicon.svg +85 -1
- package/dist/hooks/__tests__/use-add-media-from-url.test.d.ts +1 -0
- package/dist/hooks/__tests__/use-field.test.d.ts +1 -0
- package/dist/hooks/admin-theme-context.d.ts +2 -8
- package/dist/hooks/admin-theme-provider.d.ts +3 -1
- package/dist/hooks/admin-theme.d.ts +1 -0
- package/dist/hooks/use-add-media-from-url.d.ts +8 -17
- package/dist/hooks/use-admin-theme.d.ts +2 -1
- package/dist/hooks/use-dyrected-form.d.ts +2 -0
- package/dist/hooks/use-field.d.ts +2 -0
- package/dist/hooks/use-media-library.d.ts +26 -0
- package/dist/hooks/use-media-upload.d.ts +20 -0
- package/dist/hooks/use-media-url.d.ts +20 -0
- package/dist/index.d.ts +30 -3
- package/dist/index.mjs +2878 -1827
- package/dist/lib/__tests__/external-media.test.d.ts +1 -0
- package/dist/lib/__tests__/media-utils.test.d.ts +1 -0
- package/dist/lib/compress-image.d.ts +9 -0
- package/dist/lib/draft-live-compare.d.ts +38 -0
- package/dist/lib/draft-live-compare.test.d.ts +1 -0
- package/dist/lib/external-media.d.ts +9 -4
- package/dist/lib/media-utils.d.ts +26 -0
- package/dist/lib/workflow-autosave.d.ts +18 -0
- package/dist/lib/workflow-autosave.test.d.ts +1 -0
- package/dist/lib/workflow-ui.d.ts +22 -0
- package/dist/lib/workflow-ui.test.d.ts +1 -0
- package/dist/providers/dyrected-form-context.d.ts +14 -0
- package/dist/public/contracts.d.ts +230 -0
- package/dist/public/index.d.ts +26 -0
- package/dist/public/index.js +2 -0
- package/dist/public.d.ts +2 -0
- package/dist/types/admin-components.d.ts +17 -2
- package/dist/use-add-media-from-url-DHGAAVLY.js +1604 -0
- package/package.json +10 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dyrected/admin",
|
|
3
|
-
"version": "2.6.
|
|
3
|
+
"version": "2.6.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist"
|
|
@@ -15,6 +15,12 @@
|
|
|
15
15
|
"browser": "./dist/index.mjs",
|
|
16
16
|
"default": "./dist/index.mjs"
|
|
17
17
|
},
|
|
18
|
+
"./public": {
|
|
19
|
+
"types": "./dist/public/index.d.ts",
|
|
20
|
+
"import": "./dist/public/index.js",
|
|
21
|
+
"browser": "./dist/public/index.js",
|
|
22
|
+
"default": "./dist/public/index.js"
|
|
23
|
+
},
|
|
18
24
|
"./styles": "./dist/admin.css"
|
|
19
25
|
},
|
|
20
26
|
"dependencies": {
|
|
@@ -64,9 +70,9 @@
|
|
|
64
70
|
"tailwind-merge": "^3.5.0",
|
|
65
71
|
"tailwindcss-animate": "^1.0.7",
|
|
66
72
|
"zod": "^3.25.76",
|
|
67
|
-
"@dyrected/core": "^2.6.
|
|
68
|
-
"@dyrected/
|
|
69
|
-
"@dyrected/
|
|
73
|
+
"@dyrected/core": "^2.6.2",
|
|
74
|
+
"@dyrected/knowledge": "^0.2.15",
|
|
75
|
+
"@dyrected/sdk": "^2.6.2"
|
|
70
76
|
},
|
|
71
77
|
"peerDependencies": {
|
|
72
78
|
"@tanstack/react-query": "^5.0.0",
|