@questpie/admin 3.2.4 → 3.2.5

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.
Files changed (248) hide show
  1. package/dist/client/blocks/block-renderer.d.mts +2 -2
  2. package/dist/client/blocks/block-renderer.mjs +164 -339
  3. package/dist/client/components/actions/action-button.mjs +9 -9
  4. package/dist/client/components/actions/action-dialog.mjs +195 -493
  5. package/dist/client/components/actions/confirmation-dialog.mjs +44 -159
  6. package/dist/client/components/actions/header-actions.mjs +73 -165
  7. package/dist/client/components/admin-link.mjs +40 -126
  8. package/dist/client/components/auth/auth-loading.mjs +9 -44
  9. package/dist/client/components/blocks/block-canvas.mjs +31 -95
  10. package/dist/client/components/blocks/block-editor-context.mjs +13 -57
  11. package/dist/client/components/blocks/block-editor-layout.mjs +72 -166
  12. package/dist/client/components/blocks/block-editor-provider.mjs +184 -245
  13. package/dist/client/components/blocks/block-fields-renderer.mjs +54 -229
  14. package/dist/client/components/blocks/block-insert-button.mjs +49 -165
  15. package/dist/client/components/blocks/block-item-menu.mjs +102 -301
  16. package/dist/client/components/blocks/block-item.mjs +136 -370
  17. package/dist/client/components/blocks/block-library-sidebar.mjs +103 -230
  18. package/dist/client/components/blocks/block-tree.mjs +12 -68
  19. package/dist/client/components/blocks/block-type-icon.mjs +14 -56
  20. package/dist/client/components/brand-logo.mjs +35 -149
  21. package/dist/client/components/component-renderer.mjs +42 -118
  22. package/dist/client/components/error-boundary.mjs +14 -58
  23. package/dist/client/components/fields/array-field.mjs +209 -521
  24. package/dist/client/components/fields/asset-preview-field.mjs +41 -141
  25. package/dist/client/components/fields/blocks-field/blocks-field.mjs +60 -156
  26. package/dist/client/components/fields/boolean-field.mjs +29 -59
  27. package/dist/client/components/fields/date-field.mjs +7 -37
  28. package/dist/client/components/fields/datetime-field.mjs +7 -38
  29. package/dist/client/components/fields/email-field.mjs +25 -54
  30. package/dist/client/components/fields/field-wrapper.mjs +30 -105
  31. package/dist/client/components/fields/json-field.mjs +94 -296
  32. package/dist/client/components/fields/locale-badge.mjs +6 -15
  33. package/dist/client/components/fields/number-field.mjs +27 -60
  34. package/dist/client/components/fields/object-array-field.mjs +283 -659
  35. package/dist/client/components/fields/object-field.mjs +165 -633
  36. package/dist/client/components/fields/relation/displays/cards-display.mjs +106 -220
  37. package/dist/client/components/fields/relation/displays/chips-display.mjs +78 -150
  38. package/dist/client/components/fields/relation/displays/grid-display.mjs +92 -186
  39. package/dist/client/components/fields/relation/displays/list-display.mjs +122 -239
  40. package/dist/client/components/fields/relation/displays/table-display.mjs +70 -244
  41. package/dist/client/components/fields/relation/relation-items-display.mjs +30 -126
  42. package/dist/client/components/fields/relation-field.mjs +10 -66
  43. package/dist/client/components/fields/relation-picker.mjs +18 -18
  44. package/dist/client/components/fields/relation-select.mjs +12 -12
  45. package/dist/client/components/fields/rich-text-editor/bubble-menu.mjs +80 -180
  46. package/dist/client/components/fields/rich-text-editor/image-popover.mjs +2 -2
  47. package/dist/client/components/fields/rich-text-editor/image-upload.mjs +13 -29
  48. package/dist/client/components/fields/rich-text-editor/index.mjs +195 -513
  49. package/dist/client/components/fields/rich-text-editor/slash-commands.mjs +61 -111
  50. package/dist/client/components/fields/rich-text-editor/table-controls.mjs +105 -415
  51. package/dist/client/components/fields/rich-text-editor/toolbar.mjs +256 -511
  52. package/dist/client/components/fields/rich-text-field.mjs +14 -53
  53. package/dist/client/components/fields/select-field.mjs +39 -74
  54. package/dist/client/components/fields/text-field.mjs +26 -59
  55. package/dist/client/components/fields/textarea-field.mjs +26 -58
  56. package/dist/client/components/fields/time-field.mjs +7 -35
  57. package/dist/client/components/fields/upload-field.mjs +47 -165
  58. package/dist/client/components/filter-builder/columns-tab.mjs +80 -280
  59. package/dist/client/components/filter-builder/filter-builder-sheet.mjs +197 -540
  60. package/dist/client/components/filter-builder/filters-tab.mjs +96 -386
  61. package/dist/client/components/filter-builder/saved-views-tab.mjs +133 -351
  62. package/dist/client/components/history-sidebar.mjs +285 -605
  63. package/dist/client/components/layout/field-layout-renderer.mjs +106 -254
  64. package/dist/client/components/locale-switcher.mjs +106 -228
  65. package/dist/client/components/media/media-grid.mjs +84 -273
  66. package/dist/client/components/media/media-picker-dialog.mjs +176 -476
  67. package/dist/client/components/preview/live-preview-mode.mjs +233 -458
  68. package/dist/client/components/preview/preview-pane.mjs +22 -22
  69. package/dist/client/components/primitives/asset-preview.mjs +290 -666
  70. package/dist/client/components/primitives/checkbox-input.mjs +9 -35
  71. package/dist/client/components/primitives/date-input.mjs +109 -327
  72. package/dist/client/components/primitives/dropzone.mjs +209 -336
  73. package/dist/client/components/primitives/field-select-control.mjs +12 -80
  74. package/dist/client/components/primitives/number-input.mjs +4 -4
  75. package/dist/client/components/primitives/select-multi.mjs +200 -559
  76. package/dist/client/components/primitives/select-single.mjs +165 -499
  77. package/dist/client/components/primitives/time-input.mjs +43 -117
  78. package/dist/client/components/primitives/toggle-input.mjs +9 -29
  79. package/dist/client/components/sheets/resource-sheet.mjs +61 -70
  80. package/dist/client/components/ui/accordion.mjs +35 -155
  81. package/dist/client/components/ui/alert.mjs +13 -68
  82. package/dist/client/components/ui/badge.mjs +9 -51
  83. package/dist/client/components/ui/button.mjs +8 -54
  84. package/dist/client/components/ui/card.mjs +37 -193
  85. package/dist/client/components/ui/checkbox.mjs +12 -68
  86. package/dist/client/components/ui/command.mjs +48 -219
  87. package/dist/client/components/ui/dialog.mjs +50 -262
  88. package/dist/client/components/ui/drawer.mjs +55 -259
  89. package/dist/client/components/ui/dropdown-menu.mjs +86 -427
  90. package/dist/client/components/ui/empty-state.mjs +28 -98
  91. package/dist/client/components/ui/field.mjs +73 -309
  92. package/dist/client/components/ui/input-group.mjs +42 -167
  93. package/dist/client/components/ui/input.mjs +7 -37
  94. package/dist/client/components/ui/kbd.mjs +6 -36
  95. package/dist/client/components/ui/label.mjs +7 -37
  96. package/dist/client/components/ui/popover.mjs +34 -169
  97. package/dist/client/components/ui/responsive-dialog.mjs +67 -273
  98. package/dist/client/components/ui/scroll-fade.mjs +63 -158
  99. package/dist/client/components/ui/search-input.mjs +33 -100
  100. package/dist/client/components/ui/select.mjs +72 -393
  101. package/dist/client/components/ui/separator.mjs +7 -38
  102. package/dist/client/components/ui/sheet.mjs +49 -269
  103. package/dist/client/components/ui/sidebar.mjs +171 -690
  104. package/dist/client/components/ui/skeleton.mjs +7 -38
  105. package/dist/client/components/ui/sonner.mjs +11 -42
  106. package/dist/client/components/ui/switch.mjs +9 -45
  107. package/dist/client/components/ui/table.mjs +48 -266
  108. package/dist/client/components/ui/tabs.mjs +26 -139
  109. package/dist/client/components/ui/textarea.mjs +6 -32
  110. package/dist/client/components/ui/tooltip.mjs +27 -129
  111. package/dist/client/components/widgets/chart-widget.mjs +174 -522
  112. package/dist/client/components/widgets/progress-widget.mjs +66 -172
  113. package/dist/client/components/widgets/quick-actions-widget.mjs +102 -261
  114. package/dist/client/components/widgets/recent-items-widget.mjs +69 -195
  115. package/dist/client/components/widgets/stats-widget.mjs +41 -175
  116. package/dist/client/components/widgets/table-widget.mjs +9 -9
  117. package/dist/client/components/widgets/timeline-widget.mjs +86 -226
  118. package/dist/client/components/widgets/value-widget.mjs +74 -381
  119. package/dist/client/components/widgets/widget-empty-state.mjs +26 -76
  120. package/dist/client/components/widgets/widget-skeletons.mjs +138 -421
  121. package/dist/client/contexts/focus-context.mjs +63 -146
  122. package/dist/client/hooks/typed-hooks.mjs +241 -701
  123. package/dist/client/hooks/use-action.mjs +62 -198
  124. package/dist/client/hooks/use-admin-config.mjs +5 -35
  125. package/dist/client/hooks/use-admin-preferences.mjs +16 -88
  126. package/dist/client/hooks/use-admin-routes.mjs +22 -56
  127. package/dist/client/hooks/use-audit-history.mjs +21 -69
  128. package/dist/client/hooks/use-brand.mjs +1 -9
  129. package/dist/client/hooks/use-collection-fields.mjs +17 -57
  130. package/dist/client/hooks/use-collection-meta.mjs +12 -44
  131. package/dist/client/hooks/use-collection-schema.mjs +10 -33
  132. package/dist/client/hooks/use-collection-validation.mjs +23 -53
  133. package/dist/client/hooks/use-collection.mjs +194 -614
  134. package/dist/client/hooks/use-current-user.mjs +0 -1
  135. package/dist/client/hooks/use-field-hooks.mjs +10 -10
  136. package/dist/client/hooks/use-field-options.mjs +61 -202
  137. package/dist/client/hooks/use-global-fields.mjs +14 -46
  138. package/dist/client/hooks/use-global-meta.mjs +9 -30
  139. package/dist/client/hooks/use-global-schema.mjs +9 -30
  140. package/dist/client/hooks/use-global.mjs +63 -219
  141. package/dist/client/hooks/use-locks.mjs +117 -325
  142. package/dist/client/hooks/use-media-query.mjs +16 -36
  143. package/dist/client/hooks/use-prefill-params.mjs +0 -1
  144. package/dist/client/hooks/use-questpie-query-options.mjs +12 -29
  145. package/dist/client/hooks/use-reactive-fields.mjs +1 -1
  146. package/dist/client/hooks/use-reactive-prop.mjs +65 -223
  147. package/dist/client/hooks/use-realtime-highlight.mjs +51 -114
  148. package/dist/client/hooks/use-saved-views.mjs +22 -103
  149. package/dist/client/hooks/use-search-param-toggle.mjs +28 -79
  150. package/dist/client/hooks/use-search.mjs +31 -143
  151. package/dist/client/hooks/use-server-actions.mjs +18 -50
  152. package/dist/client/hooks/use-server-validation.mjs +72 -166
  153. package/dist/client/hooks/use-server-widget-data.mjs +7 -33
  154. package/dist/client/hooks/use-setup-status.mjs +12 -25
  155. package/dist/client/hooks/use-sidebar-search-param.mjs +33 -78
  156. package/dist/client/hooks/use-transition-stage.mjs +8 -38
  157. package/dist/client/hooks/use-upload.mjs +54 -152
  158. package/dist/client/hooks/use-validation-error-map.mjs +6 -26
  159. package/dist/client/hooks/use-view-state.mjs +187 -437
  160. package/dist/client/i18n/hooks.mjs +65 -197
  161. package/dist/client/lib/render-profiler.mjs +14 -41
  162. package/dist/client/preview/block-scope-context.d.mts +2 -2
  163. package/dist/client/preview/block-scope-context.mjs +14 -36
  164. package/dist/client/preview/preview-banner.d.mts +2 -2
  165. package/dist/client/preview/preview-banner.mjs +42 -108
  166. package/dist/client/preview/preview-field.d.mts +4 -4
  167. package/dist/client/preview/preview-field.mjs +167 -348
  168. package/dist/client/preview/use-collection-preview.mjs +121 -215
  169. package/dist/client/runtime/content-locales-provider.mjs +31 -83
  170. package/dist/client/runtime/locale-scope.mjs +22 -63
  171. package/dist/client/runtime/provider.mjs +100 -255
  172. package/dist/client/runtime/translations-provider.mjs +41 -107
  173. package/dist/client/scope/picker.d.mts +2 -2
  174. package/dist/client/scope/picker.mjs +86 -321
  175. package/dist/client/scope/provider.d.mts +2 -2
  176. package/dist/client/scope/provider.mjs +8 -17
  177. package/dist/client/views/auth/accept-invite-form.d.mts +2 -2
  178. package/dist/client/views/auth/accept-invite-form.mjs +121 -412
  179. package/dist/client/views/auth/auth-layout.d.mts +3 -3
  180. package/dist/client/views/auth/auth-layout.mjs +104 -284
  181. package/dist/client/views/auth/forgot-password-form.mjs +94 -325
  182. package/dist/client/views/auth/invite-form.mjs +107 -442
  183. package/dist/client/views/auth/login-form.d.mts +2 -2
  184. package/dist/client/views/auth/login-form.mjs +116 -337
  185. package/dist/client/views/auth/reset-password-form.d.mts +2 -2
  186. package/dist/client/views/auth/reset-password-form.mjs +128 -453
  187. package/dist/client/views/auth/setup-form.d.mts +2 -2
  188. package/dist/client/views/auth/setup-form.mjs +140 -478
  189. package/dist/client/views/collection/auto-form-fields.mjs +243 -615
  190. package/dist/client/views/collection/bulk-action-toolbar.mjs +212 -379
  191. package/dist/client/views/collection/cells/complex-cells.mjs +183 -611
  192. package/dist/client/views/collection/cells/primitive-cells.mjs +109 -363
  193. package/dist/client/views/collection/cells/relation-cells.mjs +86 -233
  194. package/dist/client/views/collection/cells/shared/asset-thumbnail.mjs +142 -371
  195. package/dist/client/views/collection/cells/shared/relation-chip.mjs +35 -131
  196. package/dist/client/views/collection/cells/upload-cells.mjs +60 -177
  197. package/dist/client/views/collection/columns/build-columns.mjs +8 -48
  198. package/dist/client/views/collection/field-renderer.mjs +58 -182
  199. package/dist/client/views/collection/form-view.mjs +284 -518
  200. package/dist/client/views/collection/table-view.mjs +231 -463
  201. package/dist/client/views/collection/view-skeletons.mjs +112 -237
  202. package/dist/client/views/common/global-search.mjs +241 -560
  203. package/dist/client/views/dashboard/dashboard-grid.mjs +256 -775
  204. package/dist/client/views/dashboard/dashboard-widget.mjs +38 -126
  205. package/dist/client/views/dashboard/widget-card.mjs +61 -269
  206. package/dist/client/views/globals/global-form-view.mjs +477 -1301
  207. package/dist/client/views/layout/admin-layout-provider.mjs +28 -88
  208. package/dist/client/views/layout/admin-layout.mjs +83 -246
  209. package/dist/client/views/layout/admin-router.mjs +458 -1274
  210. package/dist/client/views/layout/admin-sidebar.mjs +510 -1292
  211. package/dist/client/views/layout/admin-theme.mjs +30 -64
  212. package/dist/client/views/layout/admin-view-layout.mjs +40 -144
  213. package/dist/client/views/pages/accept-invite-page.d.mts +2 -2
  214. package/dist/client/views/pages/accept-invite-page.mjs +95 -290
  215. package/dist/client/views/pages/dashboard-page.d.mts +2 -2
  216. package/dist/client/views/pages/dashboard-page.mjs +11 -57
  217. package/dist/client/views/pages/forgot-password-page.d.mts +2 -2
  218. package/dist/client/views/pages/forgot-password-page.mjs +31 -83
  219. package/dist/client/views/pages/invite-page.d.mts +2 -2
  220. package/dist/client/views/pages/invite-page.mjs +35 -90
  221. package/dist/client/views/pages/login-page.mjs +41 -121
  222. package/dist/client/views/pages/reset-password-page.mjs +46 -173
  223. package/dist/client/views/pages/setup-page.mjs +33 -95
  224. package/dist/components/rich-text/rich-text-renderer.d.mts +2 -2
  225. package/dist/components/rich-text/rich-text-renderer.mjs +9 -33
  226. package/dist/server/modules/admin/collections/account.d.mts +46 -46
  227. package/dist/server/modules/admin/collections/admin-locks.d.mts +50 -50
  228. package/dist/server/modules/admin/collections/admin-preferences.d.mts +39 -39
  229. package/dist/server/modules/admin/collections/admin-saved-views.d.mts +47 -47
  230. package/dist/server/modules/admin/collections/apikey.d.mts +68 -68
  231. package/dist/server/modules/admin/collections/assets.d.mts +39 -39
  232. package/dist/server/modules/admin/collections/session.d.mts +41 -41
  233. package/dist/server/modules/admin/collections/user.d.mts +63 -63
  234. package/dist/server/modules/admin/collections/verification.d.mts +36 -36
  235. package/dist/server/modules/admin/index.d.mts +20 -19
  236. package/dist/server/modules/admin/routes/admin-config.d.mts +2 -2
  237. package/dist/server/modules/admin/routes/execute-action.d.mts +9 -9
  238. package/dist/server/modules/admin/routes/locales.d.mts +2 -2
  239. package/dist/server/modules/admin/routes/preview.d.mts +11 -11
  240. package/dist/server/modules/admin/routes/reactive.d.mts +9 -9
  241. package/dist/server/modules/admin/routes/setup.d.mts +7 -7
  242. package/dist/server/modules/admin/routes/translations.d.mts +4 -4
  243. package/dist/server/modules/admin/routes/widget-data.d.mts +5 -5
  244. package/dist/server/modules/admin-preferences/collections/saved-views.d.mts +45 -45
  245. package/dist/server/modules/audit/.generated/module.d.mts +6 -6
  246. package/dist/server/modules/audit/collections/audit-log.d.mts +78 -78
  247. package/dist/server/modules/audit/jobs/audit-cleanup.d.mts +2 -2
  248. package/package.json +3 -5
@@ -1,7 +1,6 @@
1
1
  import { resolveDateFnsLocale } from "./date-locale.mjs";
2
- import { c } from "react/compiler-runtime";
3
2
  import * as React from "react";
4
- import { createContext, useContext } from "react";
3
+ import { createContext, useCallback, useContext } from "react";
5
4
  import { DEFAULT_LOCALE } from "questpie/shared";
6
5
  import { jsx } from "react/jsx-runtime";
7
6
 
@@ -29,121 +28,33 @@ const I18nContext = createContext(null);
29
28
  * </I18nProvider>
30
29
  * ```
31
30
  */
32
- function I18nProvider(t0) {
33
- const $ = c(35);
34
- const { adapter, children } = t0;
35
- const [, forceUpdate] = React.useReducer(_temp, 0);
36
- let t1;
37
- if ($[0] !== adapter || $[1] !== forceUpdate) {
38
- t1 = () => adapter.onLocaleChange(() => {
31
+ function I18nProvider({ adapter, children }) {
32
+ const [, forceUpdate] = React.useReducer((x) => x + 1, 0);
33
+ React.useEffect(() => {
34
+ return adapter.onLocaleChange(() => {
39
35
  forceUpdate();
40
36
  });
41
- $[0] = adapter;
42
- $[1] = forceUpdate;
43
- $[2] = t1;
44
- } else t1 = $[2];
45
- let t2;
46
- if ($[3] !== adapter) {
47
- t2 = [adapter];
48
- $[3] = adapter;
49
- $[4] = t2;
50
- } else t2 = $[4];
51
- React.useEffect(t1, t2);
52
- const t3 = adapter.locale;
53
- const t4 = adapter.locales;
54
- let t5;
55
- if ($[5] !== adapter) {
56
- t5 = adapter.t.bind(adapter);
57
- $[5] = adapter;
58
- $[6] = t5;
59
- } else t5 = $[6];
60
- let t6;
61
- if ($[7] !== adapter) {
62
- t6 = adapter.setLocale.bind(adapter);
63
- $[7] = adapter;
64
- $[8] = t6;
65
- } else t6 = $[8];
66
- let t7;
67
- if ($[9] !== adapter) {
68
- t7 = adapter.onLocaleChange.bind(adapter);
69
- $[9] = adapter;
70
- $[10] = t7;
71
- } else t7 = $[10];
72
- let t8;
73
- if ($[11] !== adapter) {
74
- t8 = adapter.formatDate.bind(adapter);
75
- $[11] = adapter;
76
- $[12] = t8;
77
- } else t8 = $[12];
78
- let t9;
79
- if ($[13] !== adapter) {
80
- t9 = adapter.formatNumber.bind(adapter);
81
- $[13] = adapter;
82
- $[14] = t9;
83
- } else t9 = $[14];
84
- let t10;
85
- if ($[15] !== adapter) {
86
- t10 = adapter.formatRelative?.bind(adapter);
87
- $[15] = adapter;
88
- $[16] = t10;
89
- } else t10 = $[16];
90
- let t11;
91
- if ($[17] !== adapter) {
92
- t11 = adapter.getLocaleName.bind(adapter);
93
- $[17] = adapter;
94
- $[18] = t11;
95
- } else t11 = $[18];
96
- let t12;
97
- if ($[19] !== adapter) {
98
- t12 = adapter.isRTL.bind(adapter);
99
- $[19] = adapter;
100
- $[20] = t12;
101
- } else t12 = $[20];
102
- let t13;
103
- if ($[21] !== adapter.locale || $[22] !== adapter.locales || $[23] !== t10 || $[24] !== t11 || $[25] !== t12 || $[26] !== t5 || $[27] !== t6 || $[28] !== t7 || $[29] !== t8 || $[30] !== t9) {
104
- t13 = {
105
- locale: t3,
106
- locales: t4,
107
- t: t5,
108
- setLocale: t6,
109
- onLocaleChange: t7,
110
- formatDate: t8,
111
- formatNumber: t9,
112
- formatRelative: t10,
113
- getLocaleName: t11,
114
- isRTL: t12
115
- };
116
- $[21] = adapter.locale;
117
- $[22] = adapter.locales;
118
- $[23] = t10;
119
- $[24] = t11;
120
- $[25] = t12;
121
- $[26] = t5;
122
- $[27] = t6;
123
- $[28] = t7;
124
- $[29] = t8;
125
- $[30] = t9;
126
- $[31] = t13;
127
- } else t13 = $[31];
128
- const contextValue = t13;
129
- let t14;
130
- if ($[32] !== children || $[33] !== contextValue) {
131
- t14 = /* @__PURE__ */ jsx(I18nContext.Provider, {
132
- value: contextValue,
133
- children
134
- });
135
- $[32] = children;
136
- $[33] = contextValue;
137
- $[34] = t14;
138
- } else t14 = $[34];
139
- return t14;
37
+ }, [adapter]);
38
+ const contextValue = React.useMemo(() => ({
39
+ locale: adapter.locale,
40
+ locales: adapter.locales,
41
+ t: adapter.t.bind(adapter),
42
+ setLocale: adapter.setLocale.bind(adapter),
43
+ onLocaleChange: adapter.onLocaleChange.bind(adapter),
44
+ formatDate: adapter.formatDate.bind(adapter),
45
+ formatNumber: adapter.formatNumber.bind(adapter),
46
+ formatRelative: adapter.formatRelative?.bind(adapter),
47
+ getLocaleName: adapter.getLocaleName.bind(adapter),
48
+ isRTL: adapter.isRTL.bind(adapter)
49
+ }), [adapter, adapter.locale]);
50
+ return /* @__PURE__ */ jsx(I18nContext.Provider, {
51
+ value: contextValue,
52
+ children
53
+ });
140
54
  }
141
55
  /**
142
56
  * Get the i18n adapter (throws if not in provider)
143
57
  */
144
- function _temp(x) {
145
- return x + 1;
146
- }
147
58
  function useI18n() {
148
59
  const adapter = useContext(I18nContext);
149
60
  if (!adapter) throw new Error("useI18n must be used within I18nProvider");
@@ -167,59 +78,25 @@ function useSafeI18n() {
167
78
  * ```
168
79
  */
169
80
  function useTranslation() {
170
- const $ = c(11);
171
81
  const adapter = useI18n();
172
- const t0 = adapter.locale;
173
- const t1 = adapter.locales;
174
- const t2 = adapter.t;
175
- const t3 = adapter.setLocale;
176
- const t4 = adapter.formatDate;
177
- const t5 = adapter.formatNumber;
178
- const t6 = adapter.getLocaleName;
179
- let t7;
180
- if ($[0] !== adapter) {
181
- t7 = adapter.isRTL();
182
- $[0] = adapter;
183
- $[1] = t7;
184
- } else t7 = $[1];
185
- let t8;
186
- if ($[2] !== adapter.formatDate || $[3] !== adapter.formatNumber || $[4] !== adapter.getLocaleName || $[5] !== adapter.locale || $[6] !== adapter.locales || $[7] !== adapter.setLocale || $[8] !== adapter.t || $[9] !== t7) {
187
- t8 = {
188
- locale: t0,
189
- locales: t1,
190
- t: t2,
191
- setLocale: t3,
192
- formatDate: t4,
193
- formatNumber: t5,
194
- getLocaleName: t6,
195
- isRTL: t7
196
- };
197
- $[2] = adapter.formatDate;
198
- $[3] = adapter.formatNumber;
199
- $[4] = adapter.getLocaleName;
200
- $[5] = adapter.locale;
201
- $[6] = adapter.locales;
202
- $[7] = adapter.setLocale;
203
- $[8] = adapter.t;
204
- $[9] = t7;
205
- $[10] = t8;
206
- } else t8 = $[10];
207
- return t8;
82
+ return {
83
+ locale: adapter.locale,
84
+ locales: adapter.locales,
85
+ t: adapter.t,
86
+ setLocale: adapter.setLocale,
87
+ formatDate: adapter.formatDate,
88
+ formatNumber: adapter.formatNumber,
89
+ getLocaleName: adapter.getLocaleName,
90
+ isRTL: adapter.isRTL()
91
+ };
208
92
  }
209
93
  /**
210
94
  * Returns the date-fns `Locale` object matching the current admin UI locale.
211
95
  * Only `enUS` is bundled by default — register others via `registerDateFnsLocale`.
212
96
  */
213
97
  function useDateFnsLocale() {
214
- const $ = c(2);
215
98
  const { locale } = useTranslation();
216
- let t0;
217
- if ($[0] !== locale) {
218
- t0 = resolveDateFnsLocale(locale);
219
- $[0] = locale;
220
- $[1] = t0;
221
- } else t0 = $[1];
222
- return t0;
99
+ return resolveDateFnsLocale(locale);
223
100
  }
224
101
  /**
225
102
  * Check if an object is a locale map (has locale codes as keys)
@@ -250,50 +127,41 @@ function resolveLocaleMap(map, locale, fallback) {
250
127
  * ```
251
128
  */
252
129
  function useResolveText() {
253
- const $ = c(2);
254
130
  const adapter = useSafeI18n();
255
- let t0;
256
- if ($[0] !== adapter) {
257
- t0 = (text, t1, contextValues) => {
258
- const fallback = t1 === void 0 ? "" : t1;
259
- const resolveValue = (value) => {
260
- if (value === void 0 || value === null) return fallback;
261
- if (typeof value === "string") return value;
262
- if (typeof value === "function") {
263
- if (!adapter && !contextValues) return fallback;
264
- const i18nCtx = adapter ? {
265
- locale: adapter.locale,
266
- t: adapter.t,
267
- formatDate: adapter.formatDate,
268
- formatNumber: adapter.formatNumber
269
- } : void 0;
270
- const ctx = {
271
- ...contextValues ?? {},
272
- ...i18nCtx ?? {}
273
- };
274
- try {
275
- return resolveValue(value(ctx));
276
- } catch (t2) {
277
- const error = t2;
278
- console.error("Failed to resolve dynamic text:", error);
279
- return fallback;
280
- }
281
- }
282
- if (typeof value === "object" && "key" in value && typeof value.key === "string") {
283
- const keyObj = value;
284
- if (!adapter) return keyObj.fallback ?? fallback;
285
- const result_0 = adapter.t(keyObj.key, keyObj.params);
286
- return result_0 === keyObj.key ? keyObj.fallback ?? result_0 : result_0;
131
+ return useCallback((text, fallback = "", contextValues) => {
132
+ const resolveValue = (value) => {
133
+ if (value === void 0 || value === null) return fallback;
134
+ if (typeof value === "string") return value;
135
+ if (typeof value === "function") {
136
+ if (!adapter && !contextValues) return fallback;
137
+ const i18nCtx = adapter ? {
138
+ locale: adapter.locale,
139
+ t: adapter.t,
140
+ formatDate: adapter.formatDate,
141
+ formatNumber: adapter.formatNumber
142
+ } : void 0;
143
+ const ctx = {
144
+ ...contextValues ?? {},
145
+ ...i18nCtx ?? {}
146
+ };
147
+ try {
148
+ return resolveValue(value(ctx));
149
+ } catch (error) {
150
+ console.error("Failed to resolve dynamic text:", error);
151
+ return fallback;
287
152
  }
288
- if (typeof value === "object" && isLocaleMap(value)) return resolveLocaleMap(value, adapter?.locale ?? DEFAULT_LOCALE, fallback);
289
- return fallback;
290
- };
291
- return resolveValue(text);
153
+ }
154
+ if (typeof value === "object" && "key" in value && typeof value.key === "string") {
155
+ const keyObj = value;
156
+ if (!adapter) return keyObj.fallback ?? fallback;
157
+ const result = adapter.t(keyObj.key, keyObj.params);
158
+ return result === keyObj.key ? keyObj.fallback ?? result : result;
159
+ }
160
+ if (typeof value === "object" && isLocaleMap(value)) return resolveLocaleMap(value, adapter?.locale ?? DEFAULT_LOCALE, fallback);
161
+ return fallback;
292
162
  };
293
- $[0] = adapter;
294
- $[1] = t0;
295
- } else t0 = $[1];
296
- return t0;
163
+ return resolveValue(text);
164
+ }, [adapter]);
297
165
  }
298
166
 
299
167
  //#endregion
@@ -1,50 +1,23 @@
1
- import { c } from "react/compiler-runtime";
2
1
  import * as React from "react";
3
2
  import { Fragment, jsx } from "react/jsx-runtime";
4
3
 
5
4
  //#region src/client/lib/render-profiler.tsx
6
5
  const LOG_MIN_INTERVAL_MS = 800;
7
6
  const lastLogAtById = /* @__PURE__ */ new Map();
8
- function RenderProfiler(t0) {
9
- const $ = c(9);
10
- const { id, children, minDurationMs: t1 } = t0;
11
- const minDurationMs = t1 === void 0 ? 8 : t1;
12
- let t2;
13
- if ($[0] !== id || $[1] !== minDurationMs) {
14
- t2 = (_profileId, phase, actualDuration, baseDuration, startTime, commitTime) => {
15
- if (actualDuration < minDurationMs) return;
16
- const now = commitTime || globalThis.performance?.now?.() || Date.now();
17
- if (now - (lastLogAtById.get(id) ?? 0) < LOG_MIN_INTERVAL_MS) return;
18
- lastLogAtById.set(id, now);
19
- console.debug(`[RenderProfiler] ${id} phase=${phase} actual=${actualDuration.toFixed(1)}ms base=${baseDuration.toFixed(1)}ms start=${startTime.toFixed(1)}ms commit=${commitTime.toFixed(1)}ms`);
20
- };
21
- $[0] = id;
22
- $[1] = minDurationMs;
23
- $[2] = t2;
24
- } else t2 = $[2];
25
- const onRender = t2;
26
- if (process.env.NODE_ENV !== "development") {
27
- let t3$1;
28
- if ($[3] !== children) {
29
- t3$1 = /* @__PURE__ */ jsx(Fragment, { children });
30
- $[3] = children;
31
- $[4] = t3$1;
32
- } else t3$1 = $[4];
33
- return t3$1;
34
- }
35
- let t3;
36
- if ($[5] !== children || $[6] !== id || $[7] !== onRender) {
37
- t3 = /* @__PURE__ */ jsx(React.Profiler, {
38
- id,
39
- onRender,
40
- children
41
- });
42
- $[5] = children;
43
- $[6] = id;
44
- $[7] = onRender;
45
- $[8] = t3;
46
- } else t3 = $[8];
47
- return t3;
7
+ function RenderProfiler({ id, children, minDurationMs = 8 }) {
8
+ const onRender = React.useCallback((_profileId, phase, actualDuration, baseDuration, startTime, commitTime) => {
9
+ if (actualDuration < minDurationMs) return;
10
+ const now = commitTime || globalThis.performance?.now?.() || Date.now();
11
+ if (now - (lastLogAtById.get(id) ?? 0) < LOG_MIN_INTERVAL_MS) return;
12
+ lastLogAtById.set(id, now);
13
+ console.debug(`[RenderProfiler] ${id} phase=${phase} actual=${actualDuration.toFixed(1)}ms base=${baseDuration.toFixed(1)}ms start=${startTime.toFixed(1)}ms commit=${commitTime.toFixed(1)}ms`);
14
+ }, [id, minDurationMs]);
15
+ if (process.env.NODE_ENV !== "development") return /* @__PURE__ */ jsx(Fragment, { children });
16
+ return /* @__PURE__ */ jsx(React.Profiler, {
17
+ id,
18
+ onRender,
19
+ children
20
+ });
48
21
  }
49
22
 
50
23
  //#endregion
@@ -1,5 +1,5 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime25 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime20 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/client/preview/block-scope-context.d.ts
5
5
 
@@ -35,7 +35,7 @@ declare function BlockScopeProvider({
35
35
  blockId,
36
36
  basePath,
37
37
  children
38
- }: BlockScopeProviderProps): react_jsx_runtime25.JSX.Element;
38
+ }: BlockScopeProviderProps): react_jsx_runtime20.JSX.Element;
39
39
  /**
40
40
  * Get current block scope context.
41
41
  *
@@ -1,6 +1,5 @@
1
1
  "use client";
2
2
 
3
- import { c } from "react/compiler-runtime";
4
3
  import * as React from "react";
5
4
  import { jsx } from "react/jsx-runtime";
6
5
 
@@ -28,32 +27,16 @@ const BlockScopeContext = React.createContext(null);
28
27
  * </BlockScopeProvider>
29
28
  * ```
30
29
  */
31
- function BlockScopeProvider(t0) {
32
- const $ = c(6);
33
- const { blockId, basePath: t1, children } = t0;
34
- const fieldPrefix = `${t1 === void 0 ? "content._values" : t1}.${blockId}`;
35
- let t2;
36
- if ($[0] !== blockId || $[1] !== fieldPrefix) {
37
- t2 = {
38
- blockId,
39
- fieldPrefix
40
- };
41
- $[0] = blockId;
42
- $[1] = fieldPrefix;
43
- $[2] = t2;
44
- } else t2 = $[2];
45
- const value = t2;
46
- let t3;
47
- if ($[3] !== children || $[4] !== value) {
48
- t3 = /* @__PURE__ */ jsx(BlockScopeContext.Provider, {
49
- value,
50
- children
51
- });
52
- $[3] = children;
53
- $[4] = value;
54
- $[5] = t3;
55
- } else t3 = $[5];
56
- return t3;
30
+ function BlockScopeProvider({ blockId, basePath = "content._values", children }) {
31
+ const fieldPrefix = `${basePath}.${blockId}`;
32
+ const value = React.useMemo(() => ({
33
+ blockId,
34
+ fieldPrefix
35
+ }), [blockId, fieldPrefix]);
36
+ return /* @__PURE__ */ jsx(BlockScopeContext.Provider, {
37
+ value,
38
+ children
39
+ });
57
40
  }
58
41
  /**
59
42
  * Get current block scope context.
@@ -91,15 +74,10 @@ function useBlockScope() {
91
74
  */
92
75
  function useResolveFieldPath(fieldName) {
93
76
  const scope = useBlockScope();
94
- let t0;
95
- bb0: {
96
- if (!scope) {
97
- t0 = fieldName;
98
- break bb0;
99
- }
100
- t0 = `${scope.fieldPrefix}.${fieldName}`;
101
- }
102
- return t0;
77
+ return React.useMemo(() => {
78
+ if (!scope) return fieldName;
79
+ return `${scope.fieldPrefix}.${fieldName}`;
80
+ }, [scope, fieldName]);
103
81
  }
104
82
 
105
83
  //#endregion
@@ -1,4 +1,4 @@
1
- import * as react_jsx_runtime24 from "react/jsx-runtime";
1
+ import * as react_jsx_runtime21 from "react/jsx-runtime";
2
2
 
3
3
  //#region src/client/preview/preview-banner.d.ts
4
4
 
@@ -40,6 +40,6 @@ declare function PreviewBanner({
40
40
  isPreviewMode,
41
41
  className,
42
42
  exitPreviewUrl
43
- }: PreviewBannerProps): react_jsx_runtime24.JSX.Element | null;
43
+ }: PreviewBannerProps): react_jsx_runtime21.JSX.Element | null;
44
44
  //#endregion
45
45
  export { PreviewBanner, PreviewBannerProps };
@@ -1,7 +1,6 @@
1
1
  "use client";
2
2
 
3
3
  import { useSafeI18n } from "../i18n/hooks.mjs";
4
- import { c } from "react/compiler-runtime";
5
4
  import "react";
6
5
  import { jsx, jsxs } from "react/jsx-runtime";
7
6
 
@@ -32,23 +31,13 @@ import { jsx, jsxs } from "react/jsx-runtime";
32
31
  * }
33
32
  * ```
34
33
  */
35
- function PreviewBanner(t0) {
36
- const $ = c(19);
37
- const { isPreviewMode, className, exitPreviewUrl: t1 } = t0;
38
- const exitPreviewUrl = t1 === void 0 ? "/api/preview?disable=true" : t1;
34
+ function PreviewBanner({ isPreviewMode, className, exitPreviewUrl = "/api/preview?disable=true" }) {
39
35
  const i18n = useSafeI18n();
40
- let t2;
41
- if ($[0] !== i18n) {
42
- t2 = (key, fallback) => i18n?.t(key) ?? fallback;
43
- $[0] = i18n;
44
- $[1] = t2;
45
- } else t2 = $[1];
46
- const t = t2;
36
+ const t = (key, fallback) => i18n?.t(key) ?? fallback;
47
37
  if (!isPreviewMode) return null;
48
- let t3;
49
- let t4;
50
- if ($[2] === Symbol.for("react.memo_cache_sentinel")) {
51
- t3 = {
38
+ return /* @__PURE__ */ jsxs("div", {
39
+ className,
40
+ style: {
52
41
  position: "sticky",
53
42
  top: 0,
54
43
  left: 0,
@@ -64,99 +53,44 @@ function PreviewBanner(t0) {
64
53
  fontSize: "0.875rem",
65
54
  fontWeight: 500,
66
55
  borderBottom: "1px solid var(--border)"
67
- };
68
- t4 = {
69
- display: "flex",
70
- alignItems: "center",
71
- gap: "0.5rem"
72
- };
73
- $[2] = t3;
74
- $[3] = t4;
75
- } else {
76
- t3 = $[2];
77
- t4 = $[3];
78
- }
79
- let t5;
80
- if ($[4] === Symbol.for("react.memo_cache_sentinel")) {
81
- t5 = /* @__PURE__ */ jsxs("svg", {
82
- xmlns: "http://www.w3.org/2000/svg",
83
- width: "16",
84
- height: "16",
85
- viewBox: "0 0 256 256",
86
- fill: "currentColor",
87
- children: [/* @__PURE__ */ jsx("title", { children: "Eye icon" }), /* @__PURE__ */ jsx("path", { d: "M247.31,124.76c-.35-.79-8.82-19.58-27.65-38.41C194.57,61.26,162.88,48,128,48S61.43,61.26,36.34,86.35C17.51,105.18,9,124,8.69,124.76a8,8,0,0,0,0,6.5c.35.79,8.82,19.57,27.65,38.4C61.43,194.74,93.12,208,128,208s66.57-13.26,91.66-38.34c18.83-18.83,27.3-37.61,27.65-38.4A8,8,0,0,0,247.31,124.76ZM128,192c-30.78,0-57.67-11.19-79.93-33.25A133.47,133.47,0,0,1,25,128,133.33,133.33,0,0,1,48.07,97.25C70.33,75.19,97.22,64,128,64s57.67,11.19,79.93,33.25A133.46,133.46,0,0,1,231.05,128C223.84,141.46,192.43,192,128,192Zm0-112a48,48,0,1,0,48,48A48.05,48.05,0,0,0,128,80Zm0,80a32,32,0,1,1,32-32A32,32,0,0,1,128,160Z" })]
88
- });
89
- $[4] = t5;
90
- } else t5 = $[4];
91
- let t6;
92
- if ($[5] !== t) {
93
- t6 = t("preview.mode", "Preview Mode");
94
- $[5] = t;
95
- $[6] = t6;
96
- } else t6 = $[6];
97
- let t7;
98
- if ($[7] !== t6) {
99
- t7 = /* @__PURE__ */ jsxs("div", {
100
- style: t4,
101
- children: [t5, /* @__PURE__ */ jsx("span", { children: t6 })]
102
- });
103
- $[7] = t6;
104
- $[8] = t7;
105
- } else t7 = $[8];
106
- let t8;
107
- if ($[9] === Symbol.for("react.memo_cache_sentinel")) {
108
- t8 = {
109
- padding: "0.25rem 0.75rem",
110
- backgroundColor: "rgba(255, 255, 255, 0.2)",
111
- border: "1px solid rgba(255, 255, 255, 0.3)",
112
- borderRadius: "4px",
113
- color: "inherit",
114
- textDecoration: "none",
115
- fontWeight: 600,
116
- fontSize: "0.875rem",
117
- cursor: "pointer",
118
- transition: "background-color 0.2s"
119
- };
120
- $[9] = t8;
121
- } else t8 = $[9];
122
- let t9;
123
- if ($[10] !== t) {
124
- t9 = t("preview.exitPreview", "Exit Preview");
125
- $[10] = t;
126
- $[11] = t9;
127
- } else t9 = $[11];
128
- let t10;
129
- if ($[12] !== exitPreviewUrl || $[13] !== t9) {
130
- t10 = /* @__PURE__ */ jsx("a", {
56
+ },
57
+ children: [/* @__PURE__ */ jsxs("div", {
58
+ style: {
59
+ display: "flex",
60
+ alignItems: "center",
61
+ gap: "0.5rem"
62
+ },
63
+ children: [/* @__PURE__ */ jsxs("svg", {
64
+ xmlns: "http://www.w3.org/2000/svg",
65
+ width: "16",
66
+ height: "16",
67
+ viewBox: "0 0 256 256",
68
+ fill: "currentColor",
69
+ children: [/* @__PURE__ */ jsx("title", { children: "Eye icon" }), /* @__PURE__ */ jsx("path", { d: "M247.31,124.76c-.35-.79-8.82-19.58-27.65-38.41C194.57,61.26,162.88,48,128,48S61.43,61.26,36.34,86.35C17.51,105.18,9,124,8.69,124.76a8,8,0,0,0,0,6.5c.35.79,8.82,19.57,27.65,38.4C61.43,194.74,93.12,208,128,208s66.57-13.26,91.66-38.34c18.83-18.83,27.3-37.61,27.65-38.4A8,8,0,0,0,247.31,124.76ZM128,192c-30.78,0-57.67-11.19-79.93-33.25A133.47,133.47,0,0,1,25,128,133.33,133.33,0,0,1,48.07,97.25C70.33,75.19,97.22,64,128,64s57.67,11.19,79.93,33.25A133.46,133.46,0,0,1,231.05,128C223.84,141.46,192.43,192,128,192Zm0-112a48,48,0,1,0,48,48A48.05,48.05,0,0,0,128,80Zm0,80a32,32,0,1,1,32-32A32,32,0,0,1,128,160Z" })]
70
+ }), /* @__PURE__ */ jsx("span", { children: t("preview.mode", "Preview Mode") })]
71
+ }), /* @__PURE__ */ jsx("a", {
131
72
  href: exitPreviewUrl,
132
- style: t8,
133
- onMouseEnter: _temp,
134
- onMouseLeave: _temp2,
135
- children: t9
136
- });
137
- $[12] = exitPreviewUrl;
138
- $[13] = t9;
139
- $[14] = t10;
140
- } else t10 = $[14];
141
- let t11;
142
- if ($[15] !== className || $[16] !== t10 || $[17] !== t7) {
143
- t11 = /* @__PURE__ */ jsxs("div", {
144
- className,
145
- style: t3,
146
- children: [t7, t10]
147
- });
148
- $[15] = className;
149
- $[16] = t10;
150
- $[17] = t7;
151
- $[18] = t11;
152
- } else t11 = $[18];
153
- return t11;
154
- }
155
- function _temp2(e_0) {
156
- e_0.currentTarget.style.backgroundColor = "rgba(255, 255, 255, 0.2)";
157
- }
158
- function _temp(e) {
159
- e.currentTarget.style.backgroundColor = "rgba(255, 255, 255, 0.3)";
73
+ style: {
74
+ padding: "0.25rem 0.75rem",
75
+ backgroundColor: "rgba(255, 255, 255, 0.2)",
76
+ border: "1px solid rgba(255, 255, 255, 0.3)",
77
+ borderRadius: "4px",
78
+ color: "inherit",
79
+ textDecoration: "none",
80
+ fontWeight: 600,
81
+ fontSize: "0.875rem",
82
+ cursor: "pointer",
83
+ transition: "background-color 0.2s"
84
+ },
85
+ onMouseEnter: (e) => {
86
+ e.currentTarget.style.backgroundColor = "rgba(255, 255, 255, 0.3)";
87
+ },
88
+ onMouseLeave: (e) => {
89
+ e.currentTarget.style.backgroundColor = "rgba(255, 255, 255, 0.2)";
90
+ },
91
+ children: t("preview.exitPreview", "Exit Preview")
92
+ })]
93
+ });
160
94
  }
161
95
 
162
96
  //#endregion
@@ -1,5 +1,5 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime21 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime22 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/client/preview/preview-field.d.ts
5
5
 
@@ -68,7 +68,7 @@ declare function PreviewProvider({
68
68
  }) => void;
69
69
  onFieldValueEdited?: (payload: PreviewFieldValueEditedPayload) => void;
70
70
  children: React.ReactNode;
71
- }): react_jsx_runtime21.JSX.Element;
71
+ }): react_jsx_runtime22.JSX.Element;
72
72
  /**
73
73
  * Hook to access preview context.
74
74
  */
@@ -107,7 +107,7 @@ declare function PreviewField({
107
107
  style,
108
108
  onClick,
109
109
  onValueCommit
110
- }: PreviewFieldProps): react_jsx_runtime21.JSX.Element;
110
+ }: PreviewFieldProps): react_jsx_runtime22.JSX.Element;
111
111
  /**
112
112
  * Standalone PreviewField that works without context.
113
113
  * Useful when you can't use PreviewProvider.
@@ -131,6 +131,6 @@ declare function StandalonePreviewField({
131
131
  blockId?: string;
132
132
  fieldType?: "regular" | "block" | "relation";
133
133
  }) => void;
134
- }): react_jsx_runtime21.JSX.Element;
134
+ }): react_jsx_runtime22.JSX.Element;
135
135
  //#endregion
136
136
  export { PreviewField, PreviewFieldProps, PreviewProvider, StandalonePreviewField, usePreviewContext };