@btst/stack 2.6.0 → 2.6.1

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 (153) hide show
  1. package/dist/components/auto-form/index.cjs +8 -0
  2. package/dist/components/auto-form/index.d.cts +26 -0
  3. package/dist/components/auto-form/index.d.mts +26 -0
  4. package/dist/components/auto-form/index.d.ts +26 -0
  5. package/dist/components/auto-form/index.mjs +1 -0
  6. package/dist/components/empty/index.cjs +12 -0
  7. package/dist/components/empty/index.d.cts +15 -0
  8. package/dist/components/empty/index.d.mts +15 -0
  9. package/dist/components/empty/index.d.ts +15 -0
  10. package/dist/components/empty/index.mjs +1 -0
  11. package/dist/components/form-builder/index.cjs +16 -0
  12. package/dist/components/form-builder/index.d.cts +385 -0
  13. package/dist/components/form-builder/index.d.mts +385 -0
  14. package/dist/components/form-builder/index.d.ts +385 -0
  15. package/dist/components/form-builder/index.mjs +4 -0
  16. package/dist/components/markdown/index.cjs +9 -0
  17. package/dist/components/markdown/index.d.cts +30 -0
  18. package/dist/components/markdown/index.d.mts +30 -0
  19. package/dist/components/markdown/index.d.ts +30 -0
  20. package/dist/components/markdown/index.mjs +2 -0
  21. package/dist/components/markdown/style.css +394 -0
  22. package/dist/components/minimal-tiptap/style.css +548 -0
  23. package/dist/components/multi-select/index.cjs +7 -0
  24. package/dist/components/multi-select/index.d.cts +78 -0
  25. package/dist/components/multi-select/index.d.mts +78 -0
  26. package/dist/components/multi-select/index.d.ts +78 -0
  27. package/dist/components/multi-select/index.mjs +1 -0
  28. package/dist/components/search-select/index.cjs +7 -0
  29. package/dist/components/search-select/index.d.cts +15 -0
  30. package/dist/components/search-select/index.d.mts +15 -0
  31. package/dist/components/search-select/index.d.ts +15 -0
  32. package/dist/components/search-select/index.mjs +1 -0
  33. package/dist/components/stepped-auto-form/index.cjs +7 -0
  34. package/dist/components/stepped-auto-form/index.d.cts +37 -0
  35. package/dist/components/stepped-auto-form/index.d.mts +37 -0
  36. package/dist/components/stepped-auto-form/index.d.ts +37 -0
  37. package/dist/components/stepped-auto-form/index.mjs +1 -0
  38. package/dist/components/ui-builder/style.css +552 -0
  39. package/dist/node_modules/.pnpm/@dnd-kit_core@6.3.1_react-dom@19.2.0_react@19.2.0__react@19.2.0/node_modules/@dnd-kit/core/dist/core.esm.cjs +1 -1
  40. package/dist/node_modules/.pnpm/@dnd-kit_core@6.3.1_react-dom@19.2.0_react@19.2.0__react@19.2.0/node_modules/@dnd-kit/core/dist/core.esm.mjs +1 -1
  41. package/dist/node_modules/.pnpm/@dnd-kit_sortable@10.0.0_@dnd-kit_core@6.3.1_react-dom@19.2.0_react@19.2.0__react@19.2.0__react@19.2.0/node_modules/@dnd-kit/sortable/dist/sortable.esm.mjs +2 -2
  42. package/dist/node_modules/.pnpm/@floating-ui_core@1.7.3/node_modules/@floating-ui/core/dist/floating-ui.core.mjs +1 -1
  43. package/dist/node_modules/.pnpm/@floating-ui_dom@1.7.4/node_modules/@floating-ui/dom/dist/floating-ui.dom.mjs +3 -3
  44. package/dist/node_modules/.pnpm/@floating-ui_react-dom@2.1.6_react-dom@19.2.0_react@19.2.0__react@19.2.0/node_modules/@floating-ui/react-dom/dist/floating-ui.react-dom.mjs +1 -1
  45. package/dist/packages/stack/src/plugins/blog/client/components/forms/markdown-editor-with-overrides.cjs +23 -0
  46. package/dist/packages/stack/src/plugins/blog/client/components/forms/markdown-editor-with-overrides.mjs +21 -0
  47. package/dist/packages/stack/src/plugins/blog/client/components/forms/markdown-editor.cjs +11 -12
  48. package/dist/packages/stack/src/plugins/blog/client/components/forms/markdown-editor.mjs +11 -12
  49. package/dist/packages/stack/src/plugins/blog/client/components/forms/post-forms.cjs +2 -2
  50. package/dist/packages/stack/src/plugins/blog/client/components/forms/post-forms.mjs +2 -2
  51. package/dist/packages/stack/src/plugins/blog/client/components/shared/search-input.cjs +0 -3
  52. package/dist/packages/stack/src/plugins/blog/client/components/shared/search-input.mjs +1 -1
  53. package/dist/packages/stack/src/plugins/blog/client/components/shared/search-modal.cjs +0 -3
  54. package/dist/packages/stack/src/plugins/blog/client/components/shared/search-modal.mjs +1 -1
  55. package/dist/packages/ui/src/components/auto-form/index.cjs +12 -2
  56. package/dist/packages/ui/src/components/auto-form/index.mjs +9 -2
  57. package/dist/packages/ui/src/components/auto-form/stepped-auto-form.cjs +2 -2
  58. package/dist/packages/ui/src/components/empty.cjs +28 -0
  59. package/dist/packages/ui/src/components/empty.mjs +27 -1
  60. package/dist/packages/ui/src/components/form-builder/components/index.mjs +2 -2
  61. package/dist/packages/ui/src/components/form-builder/edit-field-dialog.cjs +1 -1
  62. package/dist/packages/ui/src/components/form-builder/index.mjs +2 -2
  63. package/dist/packages/ui/src/components/form.mjs +1 -1
  64. package/dist/packages/ui/src/components/kanban.mjs +1 -1
  65. package/dist/packages/ui/src/components/multi-select.mjs +2 -2
  66. package/dist/packages/ui/src/components/ui-builder/internal/config-panel.cjs +1 -1
  67. package/dist/packages/ui/src/components/ui-builder/internal/props-panel.cjs +1 -1
  68. package/dist/plugins/blog/api/index.d.cts +2 -2
  69. package/dist/plugins/blog/api/index.d.mts +2 -2
  70. package/dist/plugins/blog/api/index.d.ts +2 -2
  71. package/dist/plugins/blog/client/hooks/index.d.cts +2 -2
  72. package/dist/plugins/blog/client/hooks/index.d.mts +2 -2
  73. package/dist/plugins/blog/client/hooks/index.d.ts +2 -2
  74. package/dist/plugins/blog/client/index.d.cts +2 -2
  75. package/dist/plugins/blog/client/index.d.mts +2 -2
  76. package/dist/plugins/blog/client/index.d.ts +2 -2
  77. package/dist/plugins/blog/query-keys.d.cts +2 -2
  78. package/dist/plugins/blog/query-keys.d.mts +2 -2
  79. package/dist/plugins/blog/query-keys.d.ts +2 -2
  80. package/dist/plugins/cms/client/index.d.cts +1 -1
  81. package/dist/plugins/cms/client/index.d.mts +1 -1
  82. package/dist/plugins/cms/client/index.d.ts +1 -1
  83. package/dist/plugins/form-builder/client/components/index.d.cts +1 -1
  84. package/dist/plugins/form-builder/client/components/index.d.mts +1 -1
  85. package/dist/plugins/form-builder/client/components/index.d.ts +1 -1
  86. package/dist/plugins/form-builder/client/index.d.cts +1 -1
  87. package/dist/plugins/form-builder/client/index.d.mts +1 -1
  88. package/dist/plugins/form-builder/client/index.d.ts +1 -1
  89. package/dist/plugins/kanban/api/index.d.cts +1 -1
  90. package/dist/plugins/kanban/api/index.d.mts +1 -1
  91. package/dist/plugins/kanban/api/index.d.ts +1 -1
  92. package/dist/plugins/kanban/query-keys.d.cts +1 -1
  93. package/dist/plugins/kanban/query-keys.d.mts +1 -1
  94. package/dist/plugins/kanban/query-keys.d.ts +1 -1
  95. package/dist/plugins/ui-builder/client/components/index.d.cts +2 -2
  96. package/dist/plugins/ui-builder/client/components/index.d.mts +2 -2
  97. package/dist/plugins/ui-builder/client/components/index.d.ts +2 -2
  98. package/dist/plugins/ui-builder/client/hooks/index.d.cts +3 -3
  99. package/dist/plugins/ui-builder/client/hooks/index.d.mts +3 -3
  100. package/dist/plugins/ui-builder/client/hooks/index.d.ts +3 -3
  101. package/dist/plugins/ui-builder/client/index.d.cts +3 -3
  102. package/dist/plugins/ui-builder/client/index.d.mts +3 -3
  103. package/dist/plugins/ui-builder/client/index.d.ts +3 -3
  104. package/dist/plugins/ui-builder/index.d.cts +3 -3
  105. package/dist/plugins/ui-builder/index.d.mts +3 -3
  106. package/dist/plugins/ui-builder/index.d.ts +3 -3
  107. package/dist/shared/{stack.B2DwzF3r.d.ts → stack.ASwEoINr.d.ts} +1 -1
  108. package/dist/shared/{stack.C5ZSOJGJ.d.cts → stack.B1srlBud.d.mts} +1 -1
  109. package/dist/shared/{stack.CQAZwXhV.d.cts → stack.B8vT-Yt4.d.mts} +3 -3
  110. package/dist/shared/{stack.D3BsrpAz.d.ts → stack.BAT540yW.d.ts} +3 -3
  111. package/dist/shared/{stack.D0QupDcQ.d.ts → stack.BK9Z2dcL.d.ts} +1 -1
  112. package/dist/shared/{stack.CNLHlv7r.d.mts → stack.BwA7trxA.d.cts} +3 -3
  113. package/dist/shared/{stack.Cl7ok_cY.d.cts → stack.CFECM0ew.d.cts} +1 -1
  114. package/dist/shared/stack.CZMWR72v.d.cts +10 -0
  115. package/dist/shared/stack.CZMWR72v.d.mts +10 -0
  116. package/dist/shared/stack.CZMWR72v.d.ts +10 -0
  117. package/dist/shared/{stack.VMmQdbsJ.d.mts → stack.DVtk5CNw.d.mts} +1 -1
  118. package/dist/shared/{stack.B8_74ror.d.ts → stack.DXnclTG7.d.ts} +4 -4
  119. package/dist/shared/{stack.CL4mKxe7.d.mts → stack.DaZM10cp.d.cts} +4 -4
  120. package/dist/shared/{stack.Dq4qVr1F.d.mts → stack.DmpPDPxA.d.cts} +1 -1
  121. package/dist/shared/{stack.C21-LFX8.d.cts → stack.cfCkioTe.d.mts} +4 -4
  122. package/dist/shared/stack.fdi94T4S.d.cts +291 -0
  123. package/dist/shared/stack.fdi94T4S.d.mts +291 -0
  124. package/dist/shared/stack.fdi94T4S.d.ts +291 -0
  125. package/package.json +97 -3
  126. package/src/components/auto-form/index.ts +12 -0
  127. package/src/components/empty/index.ts +8 -0
  128. package/src/components/form-builder/index.ts +23 -0
  129. package/src/components/kanban/index.ts +9 -0
  130. package/src/components/markdown/index.ts +5 -0
  131. package/src/components/markdown/style.css +3 -0
  132. package/src/components/minimal-tiptap/index.ts +5 -0
  133. package/src/components/minimal-tiptap/style.css +1 -0
  134. package/src/components/multi-select/index.ts +5 -0
  135. package/src/components/search-select/index.ts +1 -0
  136. package/src/components/stepped-auto-form/index.ts +5 -0
  137. package/src/components/ui-builder/index.ts +50 -0
  138. package/src/components/ui-builder/style.css +5 -0
  139. package/src/plugins/blog/client/components/forms/markdown-editor-with-overrides.tsx +29 -0
  140. package/src/plugins/blog/client/components/forms/markdown-editor.tsx +24 -21
  141. package/src/plugins/blog/client/components/forms/post-forms.tsx +2 -2
  142. package/src/plugins/blog/client/components/shared/posts-list.tsx +1 -1
  143. package/src/plugins/blog/client/components/shared/search-input.tsx +0 -2
  144. package/src/plugins/blog/client/components/shared/search-modal.tsx +0 -2
  145. package/dist/shared/stack.8nldKomx.d.cts +0 -114
  146. package/dist/shared/stack.8nldKomx.d.mts +0 -114
  147. package/dist/shared/stack.8nldKomx.d.ts +0 -114
  148. package/dist/shared/{stack.Ba_Ks8qi.d.mts → stack.B8D4r97Z.d.mts} +12 -12
  149. package/dist/shared/{stack.BWp0hcm9.d.cts → stack.BQmuNl5p.d.cts} +3 -3
  150. package/dist/shared/{stack.BWp0hcm9.d.mts → stack.BQmuNl5p.d.mts} +3 -3
  151. package/dist/shared/{stack.BWp0hcm9.d.ts → stack.BQmuNl5p.d.ts} +3 -3
  152. package/dist/shared/{stack.DMobugrZ.d.ts → stack.DgKOwl20.d.ts} +12 -12
  153. package/dist/shared/{stack.CFqqZUes.d.cts → stack.uWSqCWAb.d.cts} +12 -12
@@ -1,5 +1,5 @@
1
1
  import * as _tanstack_react_query from '@tanstack/react-query';
2
- import { K as KanbanApiRouter, j as BoardsListDiscriminator } from '../../shared/stack.Ba_Ks8qi.mjs';
2
+ import { K as KanbanApiRouter, j as BoardsListDiscriminator } from '../../shared/stack.B8D4r97Z.mjs';
3
3
  import { createApiClient } from '@btst/stack/plugins/client';
4
4
  import { S as SerializedBoardWithColumns } from '../../shared/stack.DJaKVY7v.mjs';
5
5
  import '@btst/stack/plugins/api';
@@ -1,5 +1,5 @@
1
1
  import * as _tanstack_react_query from '@tanstack/react-query';
2
- import { K as KanbanApiRouter, j as BoardsListDiscriminator } from '../../shared/stack.DMobugrZ.js';
2
+ import { K as KanbanApiRouter, j as BoardsListDiscriminator } from '../../shared/stack.DgKOwl20.js';
3
3
  import { createApiClient } from '@btst/stack/plugins/client';
4
4
  import { S as SerializedBoardWithColumns } from '../../shared/stack.DJaKVY7v.js';
5
5
  import '@btst/stack/plugins/api';
@@ -1,8 +1,8 @@
1
1
  import { ComponentType, ReactNode } from 'react';
2
- import { a as ComponentRegistry, P as PropValue, F as FunctionRegistry } from '../../../../shared/stack.C5ZSOJGJ.cjs';
2
+ import { a as ComponentRegistry, P as PropValue, F as FunctionRegistry } from '../../../../shared/stack.DmpPDPxA.cjs';
3
3
  import * as react_jsx_runtime from 'react/jsx-runtime';
4
4
  import 'zod';
5
- import '../../../../shared/stack.8nldKomx.cjs';
5
+ import '../../../../shared/stack.fdi94T4S.cjs';
6
6
  import 'react-hook-form';
7
7
 
8
8
  interface PageRendererProps {
@@ -1,8 +1,8 @@
1
1
  import { ComponentType, ReactNode } from 'react';
2
- import { a as ComponentRegistry, P as PropValue, F as FunctionRegistry } from '../../../../shared/stack.Dq4qVr1F.mjs';
2
+ import { a as ComponentRegistry, P as PropValue, F as FunctionRegistry } from '../../../../shared/stack.B1srlBud.mjs';
3
3
  import * as react_jsx_runtime from 'react/jsx-runtime';
4
4
  import 'zod';
5
- import '../../../../shared/stack.8nldKomx.mjs';
5
+ import '../../../../shared/stack.fdi94T4S.mjs';
6
6
  import 'react-hook-form';
7
7
 
8
8
  interface PageRendererProps {
@@ -1,8 +1,8 @@
1
1
  import { ComponentType, ReactNode } from 'react';
2
- import { a as ComponentRegistry, P as PropValue, F as FunctionRegistry } from '../../../../shared/stack.D0QupDcQ.js';
2
+ import { a as ComponentRegistry, P as PropValue, F as FunctionRegistry } from '../../../../shared/stack.BK9Z2dcL.js';
3
3
  import * as react_jsx_runtime from 'react/jsx-runtime';
4
4
  import 'zod';
5
- import '../../../../shared/stack.8nldKomx.js';
5
+ import '../../../../shared/stack.fdi94T4S.js';
6
6
  import 'react-hook-form';
7
7
 
8
8
  interface PageRendererProps {
@@ -1,9 +1,9 @@
1
1
  import * as _tanstack_react_query from '@tanstack/react-query';
2
- import { S as SerializedUIBuilderPage } from '../../../../shared/stack.Cl7ok_cY.cjs';
3
- import { C as ComponentLayer, V as Variable } from '../../../../shared/stack.C5ZSOJGJ.cjs';
2
+ import { S as SerializedUIBuilderPage } from '../../../../shared/stack.CFECM0ew.cjs';
3
+ import { C as ComponentLayer, V as Variable } from '../../../../shared/stack.DmpPDPxA.cjs';
4
4
  import 'zod';
5
5
  import 'react';
6
- import '../../../../shared/stack.8nldKomx.cjs';
6
+ import '../../../../shared/stack.fdi94T4S.cjs';
7
7
  import 'react-hook-form';
8
8
  import 'react/jsx-runtime';
9
9
 
@@ -1,9 +1,9 @@
1
1
  import * as _tanstack_react_query from '@tanstack/react-query';
2
- import { S as SerializedUIBuilderPage } from '../../../../shared/stack.VMmQdbsJ.mjs';
3
- import { C as ComponentLayer, V as Variable } from '../../../../shared/stack.Dq4qVr1F.mjs';
2
+ import { S as SerializedUIBuilderPage } from '../../../../shared/stack.DVtk5CNw.mjs';
3
+ import { C as ComponentLayer, V as Variable } from '../../../../shared/stack.B1srlBud.mjs';
4
4
  import 'zod';
5
5
  import 'react';
6
- import '../../../../shared/stack.8nldKomx.mjs';
6
+ import '../../../../shared/stack.fdi94T4S.mjs';
7
7
  import 'react-hook-form';
8
8
  import 'react/jsx-runtime';
9
9
 
@@ -1,9 +1,9 @@
1
1
  import * as _tanstack_react_query from '@tanstack/react-query';
2
- import { S as SerializedUIBuilderPage } from '../../../../shared/stack.B2DwzF3r.js';
3
- import { C as ComponentLayer, V as Variable } from '../../../../shared/stack.D0QupDcQ.js';
2
+ import { S as SerializedUIBuilderPage } from '../../../../shared/stack.ASwEoINr.js';
3
+ import { C as ComponentLayer, V as Variable } from '../../../../shared/stack.BK9Z2dcL.js';
4
4
  import 'zod';
5
5
  import 'react';
6
- import '../../../../shared/stack.8nldKomx.js';
6
+ import '../../../../shared/stack.fdi94T4S.js';
7
7
  import 'react-hook-form';
8
8
  import 'react/jsx-runtime';
9
9
 
@@ -2,10 +2,10 @@ import * as _btst_stack_plugins_client from '@btst/stack/plugins/client';
2
2
  import * as _btst_yar from '@btst/yar';
3
3
  import React__default, { ComponentType } from 'react';
4
4
  import { QueryClient } from '@tanstack/react-query';
5
- import { c as UIBuilderClientHooks } from '../../../shared/stack.Cl7ok_cY.cjs';
6
- import { a as ComponentRegistry, b as FieldConfigFunction, C as ComponentLayer, F as FunctionRegistry } from '../../../shared/stack.C5ZSOJGJ.cjs';
5
+ import { c as UIBuilderClientHooks } from '../../../shared/stack.CFECM0ew.cjs';
6
+ import { a as ComponentRegistry, b as FieldConfigFunction, C as ComponentLayer, F as FunctionRegistry } from '../../../shared/stack.DmpPDPxA.cjs';
7
7
  import * as react_jsx_runtime from 'react/jsx-runtime';
8
- import { A as AutoFormInputComponentProps, F as FieldConfigItem } from '../../../shared/stack.8nldKomx.cjs';
8
+ import { A as AutoFormInputComponentProps, F as FieldConfigItem } from '../../../shared/stack.fdi94T4S.cjs';
9
9
  export { PageBuilderPage, PageListPage, PageRenderer, PageRendererProps, SuspensePageRenderer } from './components/index.cjs';
10
10
  export { CreateUIBuilderPageInput, UpdateUIBuilderPageInput, UseUIBuilderPagesOptions, UseUIBuilderPagesResult, useCreateUIBuilderPage, useDeleteUIBuilderPage, useSuspenseUIBuilderPage, useSuspenseUIBuilderPageBySlug, useSuspenseUIBuilderPages, useUIBuilderPage, useUIBuilderPageBySlug, useUIBuilderPages, useUpdateUIBuilderPage } from './hooks/index.cjs';
11
11
  import 'zod';
@@ -2,10 +2,10 @@ import * as _btst_stack_plugins_client from '@btst/stack/plugins/client';
2
2
  import * as _btst_yar from '@btst/yar';
3
3
  import React__default, { ComponentType } from 'react';
4
4
  import { QueryClient } from '@tanstack/react-query';
5
- import { c as UIBuilderClientHooks } from '../../../shared/stack.VMmQdbsJ.mjs';
6
- import { a as ComponentRegistry, b as FieldConfigFunction, C as ComponentLayer, F as FunctionRegistry } from '../../../shared/stack.Dq4qVr1F.mjs';
5
+ import { c as UIBuilderClientHooks } from '../../../shared/stack.DVtk5CNw.mjs';
6
+ import { a as ComponentRegistry, b as FieldConfigFunction, C as ComponentLayer, F as FunctionRegistry } from '../../../shared/stack.B1srlBud.mjs';
7
7
  import * as react_jsx_runtime from 'react/jsx-runtime';
8
- import { A as AutoFormInputComponentProps, F as FieldConfigItem } from '../../../shared/stack.8nldKomx.mjs';
8
+ import { A as AutoFormInputComponentProps, F as FieldConfigItem } from '../../../shared/stack.fdi94T4S.mjs';
9
9
  export { PageBuilderPage, PageListPage, PageRenderer, PageRendererProps, SuspensePageRenderer } from './components/index.mjs';
10
10
  export { CreateUIBuilderPageInput, UpdateUIBuilderPageInput, UseUIBuilderPagesOptions, UseUIBuilderPagesResult, useCreateUIBuilderPage, useDeleteUIBuilderPage, useSuspenseUIBuilderPage, useSuspenseUIBuilderPageBySlug, useSuspenseUIBuilderPages, useUIBuilderPage, useUIBuilderPageBySlug, useUIBuilderPages, useUpdateUIBuilderPage } from './hooks/index.mjs';
11
11
  import 'zod';
@@ -2,10 +2,10 @@ import * as _btst_stack_plugins_client from '@btst/stack/plugins/client';
2
2
  import * as _btst_yar from '@btst/yar';
3
3
  import React__default, { ComponentType } from 'react';
4
4
  import { QueryClient } from '@tanstack/react-query';
5
- import { c as UIBuilderClientHooks } from '../../../shared/stack.B2DwzF3r.js';
6
- import { a as ComponentRegistry, b as FieldConfigFunction, C as ComponentLayer, F as FunctionRegistry } from '../../../shared/stack.D0QupDcQ.js';
5
+ import { c as UIBuilderClientHooks } from '../../../shared/stack.ASwEoINr.js';
6
+ import { a as ComponentRegistry, b as FieldConfigFunction, C as ComponentLayer, F as FunctionRegistry } from '../../../shared/stack.BK9Z2dcL.js';
7
7
  import * as react_jsx_runtime from 'react/jsx-runtime';
8
- import { A as AutoFormInputComponentProps, F as FieldConfigItem } from '../../../shared/stack.8nldKomx.js';
8
+ import { A as AutoFormInputComponentProps, F as FieldConfigItem } from '../../../shared/stack.fdi94T4S.js';
9
9
  export { PageBuilderPage, PageListPage, PageRenderer, PageRendererProps, SuspensePageRenderer } from './components/index.js';
10
10
  export { CreateUIBuilderPageInput, UpdateUIBuilderPageInput, UseUIBuilderPagesOptions, UseUIBuilderPagesResult, useCreateUIBuilderPage, useDeleteUIBuilderPage, useSuspenseUIBuilderPage, useSuspenseUIBuilderPageBySlug, useSuspenseUIBuilderPages, useUIBuilderPage, useUIBuilderPageBySlug, useUIBuilderPages, useUpdateUIBuilderPage } from './hooks/index.js';
11
11
  import 'zod';
@@ -1,9 +1,9 @@
1
1
  import { z } from 'zod';
2
2
  import { C as ContentTypeConfig } from '../../shared/stack.B8QD11QU.cjs';
3
- export { L as LoaderContext, b as PaginatedUIBuilderPages, P as ParsedUIBuilderPage, S as SerializedUIBuilderPage, c as UIBuilderClientHooks, a as UIBuilderPage, U as UIBuilderPageData } from '../../shared/stack.Cl7ok_cY.cjs';
4
- export { C as ComponentLayer, a as ComponentRegistry, F as FunctionRegistry, R as RegistryEntry, V as Variable } from '../../shared/stack.C5ZSOJGJ.cjs';
3
+ export { L as LoaderContext, b as PaginatedUIBuilderPages, P as ParsedUIBuilderPage, S as SerializedUIBuilderPage, c as UIBuilderClientHooks, a as UIBuilderPage, U as UIBuilderPageData } from '../../shared/stack.CFECM0ew.cjs';
4
+ export { C as ComponentLayer, a as ComponentRegistry, F as FunctionRegistry, R as RegistryEntry, V as Variable } from '../../shared/stack.DmpPDPxA.cjs';
5
5
  import 'react';
6
- import '../../shared/stack.8nldKomx.cjs';
6
+ import '../../shared/stack.fdi94T4S.cjs';
7
7
  import 'react-hook-form';
8
8
  import 'react/jsx-runtime';
9
9
 
@@ -1,9 +1,9 @@
1
1
  import { z } from 'zod';
2
2
  import { C as ContentTypeConfig } from '../../shared/stack.B8QD11QU.mjs';
3
- export { L as LoaderContext, b as PaginatedUIBuilderPages, P as ParsedUIBuilderPage, S as SerializedUIBuilderPage, c as UIBuilderClientHooks, a as UIBuilderPage, U as UIBuilderPageData } from '../../shared/stack.VMmQdbsJ.mjs';
4
- export { C as ComponentLayer, a as ComponentRegistry, F as FunctionRegistry, R as RegistryEntry, V as Variable } from '../../shared/stack.Dq4qVr1F.mjs';
3
+ export { L as LoaderContext, b as PaginatedUIBuilderPages, P as ParsedUIBuilderPage, S as SerializedUIBuilderPage, c as UIBuilderClientHooks, a as UIBuilderPage, U as UIBuilderPageData } from '../../shared/stack.DVtk5CNw.mjs';
4
+ export { C as ComponentLayer, a as ComponentRegistry, F as FunctionRegistry, R as RegistryEntry, V as Variable } from '../../shared/stack.B1srlBud.mjs';
5
5
  import 'react';
6
- import '../../shared/stack.8nldKomx.mjs';
6
+ import '../../shared/stack.fdi94T4S.mjs';
7
7
  import 'react-hook-form';
8
8
  import 'react/jsx-runtime';
9
9
 
@@ -1,9 +1,9 @@
1
1
  import { z } from 'zod';
2
2
  import { C as ContentTypeConfig } from '../../shared/stack.B8QD11QU.js';
3
- export { L as LoaderContext, b as PaginatedUIBuilderPages, P as ParsedUIBuilderPage, S as SerializedUIBuilderPage, c as UIBuilderClientHooks, a as UIBuilderPage, U as UIBuilderPageData } from '../../shared/stack.B2DwzF3r.js';
4
- export { C as ComponentLayer, a as ComponentRegistry, F as FunctionRegistry, R as RegistryEntry, V as Variable } from '../../shared/stack.D0QupDcQ.js';
3
+ export { L as LoaderContext, b as PaginatedUIBuilderPages, P as ParsedUIBuilderPage, S as SerializedUIBuilderPage, c as UIBuilderClientHooks, a as UIBuilderPage, U as UIBuilderPageData } from '../../shared/stack.ASwEoINr.js';
4
+ export { C as ComponentLayer, a as ComponentRegistry, F as FunctionRegistry, R as RegistryEntry, V as Variable } from '../../shared/stack.BK9Z2dcL.js';
5
5
  import 'react';
6
- import '../../shared/stack.8nldKomx.js';
6
+ import '../../shared/stack.fdi94T4S.js';
7
7
  import 'react-hook-form';
8
8
  import 'react/jsx-runtime';
9
9
 
@@ -1,4 +1,4 @@
1
- import { C as ComponentLayer, V as Variable } from './stack.D0QupDcQ.js';
1
+ import { C as ComponentLayer, V as Variable } from './stack.BK9Z2dcL.js';
2
2
 
3
3
  /**
4
4
  * UI Builder Page data structure
@@ -1,6 +1,6 @@
1
1
  import { ZodObject, ZodSchema, ZodTuple } from 'zod';
2
2
  import { ReactNode, ComponentType } from 'react';
3
- import { F as FieldConfigItem } from './stack.8nldKomx.cjs';
3
+ import { F as FieldConfigItem } from './stack.fdi94T4S.mjs';
4
4
 
5
5
  type PropValue = ReactNode | VariableReference | Record<string, any> | any[] | string | number | boolean | null | undefined;
6
6
  type ComponentProps<TProps extends Record<string, PropValue> = Record<string, PropValue>> = TProps;
@@ -1,5 +1,5 @@
1
1
  import * as _tanstack_react_query from '@tanstack/react-query';
2
- import { S as SerializedPost, c as createPostSchema, u as updatePostSchema, a as SerializedTag } from './stack.BWp0hcm9.cjs';
2
+ import { S as SerializedPost, c as createPostSchema, u as updatePostSchema, a as SerializedTag } from './stack.BQmuNl5p.mjs';
3
3
  import { z } from 'zod';
4
4
 
5
5
  /**
@@ -135,14 +135,14 @@ declare function useCreatePost(): _tanstack_react_query.UseMutationResult<Serial
135
135
  name: string;
136
136
  slug: string;
137
137
  })[];
138
- published: boolean;
139
138
  title: string;
140
139
  content: string;
141
140
  excerpt: string;
141
+ published: boolean;
142
142
  slug?: string | undefined;
143
- publishedAt?: Date | undefined;
144
143
  createdAt?: Date | undefined;
145
144
  updatedAt?: Date | undefined;
145
+ publishedAt?: Date | undefined;
146
146
  image?: string | undefined;
147
147
  }, unknown>;
148
148
  /** Update an existing post by id */
@@ -1,5 +1,5 @@
1
1
  import * as _tanstack_react_query from '@tanstack/react-query';
2
- import { S as SerializedPost, c as createPostSchema, u as updatePostSchema, a as SerializedTag } from './stack.BWp0hcm9.js';
2
+ import { S as SerializedPost, c as createPostSchema, u as updatePostSchema, a as SerializedTag } from './stack.BQmuNl5p.js';
3
3
  import { z } from 'zod';
4
4
 
5
5
  /**
@@ -135,14 +135,14 @@ declare function useCreatePost(): _tanstack_react_query.UseMutationResult<Serial
135
135
  name: string;
136
136
  slug: string;
137
137
  })[];
138
- published: boolean;
139
138
  title: string;
140
139
  content: string;
141
140
  excerpt: string;
141
+ published: boolean;
142
142
  slug?: string | undefined;
143
- publishedAt?: Date | undefined;
144
143
  createdAt?: Date | undefined;
145
144
  updatedAt?: Date | undefined;
145
+ publishedAt?: Date | undefined;
146
146
  image?: string | undefined;
147
147
  }, unknown>;
148
148
  /** Update an existing post by id */
@@ -1,6 +1,6 @@
1
1
  import { ZodObject, ZodSchema, ZodTuple } from 'zod';
2
2
  import { ReactNode, ComponentType } from 'react';
3
- import { F as FieldConfigItem } from './stack.8nldKomx.js';
3
+ import { F as FieldConfigItem } from './stack.fdi94T4S.js';
4
4
 
5
5
  type PropValue = ReactNode | VariableReference | Record<string, any> | any[] | string | number | boolean | null | undefined;
6
6
  type ComponentProps<TProps extends Record<string, PropValue> = Record<string, PropValue>> = TProps;
@@ -1,5 +1,5 @@
1
1
  import * as _tanstack_react_query from '@tanstack/react-query';
2
- import { S as SerializedPost, c as createPostSchema, u as updatePostSchema, a as SerializedTag } from './stack.BWp0hcm9.mjs';
2
+ import { S as SerializedPost, c as createPostSchema, u as updatePostSchema, a as SerializedTag } from './stack.BQmuNl5p.cjs';
3
3
  import { z } from 'zod';
4
4
 
5
5
  /**
@@ -135,14 +135,14 @@ declare function useCreatePost(): _tanstack_react_query.UseMutationResult<Serial
135
135
  name: string;
136
136
  slug: string;
137
137
  })[];
138
- published: boolean;
139
138
  title: string;
140
139
  content: string;
141
140
  excerpt: string;
141
+ published: boolean;
142
142
  slug?: string | undefined;
143
- publishedAt?: Date | undefined;
144
143
  createdAt?: Date | undefined;
145
144
  updatedAt?: Date | undefined;
145
+ publishedAt?: Date | undefined;
146
146
  image?: string | undefined;
147
147
  }, unknown>;
148
148
  /** Update an existing post by id */
@@ -1,4 +1,4 @@
1
- import { C as ComponentLayer, V as Variable } from './stack.C5ZSOJGJ.cjs';
1
+ import { C as ComponentLayer, V as Variable } from './stack.DmpPDPxA.cjs';
2
2
 
3
3
  /**
4
4
  * UI Builder Page data structure
@@ -0,0 +1,10 @@
1
+ import { z } from 'zod';
2
+
3
+ /**
4
+ * Type for wrapped object schemas in Zod v4.
5
+ * In Zod v4, ZodEffects is replaced with ZodPipe for transforms.
6
+ * For autoform purposes, we mainly deal with objects that might be wrapped in optional/default/nullable.
7
+ */
8
+ type ZodObjectOrWrapped = z.ZodObject<any, any> | z.ZodType<any>;
9
+
10
+ export type { ZodObjectOrWrapped as Z };
@@ -0,0 +1,10 @@
1
+ import { z } from 'zod';
2
+
3
+ /**
4
+ * Type for wrapped object schemas in Zod v4.
5
+ * In Zod v4, ZodEffects is replaced with ZodPipe for transforms.
6
+ * For autoform purposes, we mainly deal with objects that might be wrapped in optional/default/nullable.
7
+ */
8
+ type ZodObjectOrWrapped = z.ZodObject<any, any> | z.ZodType<any>;
9
+
10
+ export type { ZodObjectOrWrapped as Z };
@@ -0,0 +1,10 @@
1
+ import { z } from 'zod';
2
+
3
+ /**
4
+ * Type for wrapped object schemas in Zod v4.
5
+ * In Zod v4, ZodEffects is replaced with ZodPipe for transforms.
6
+ * For autoform purposes, we mainly deal with objects that might be wrapped in optional/default/nullable.
7
+ */
8
+ type ZodObjectOrWrapped = z.ZodObject<any, any> | z.ZodType<any>;
9
+
10
+ export type { ZodObjectOrWrapped as Z };
@@ -1,4 +1,4 @@
1
- import { C as ComponentLayer, V as Variable } from './stack.Dq4qVr1F.mjs';
1
+ import { C as ComponentLayer, V as Variable } from './stack.B1srlBud.mjs';
2
2
 
3
3
  /**
4
4
  * UI Builder Page data structure
@@ -1,7 +1,7 @@
1
1
  import * as _tanstack_react_query from '@tanstack/react-query';
2
2
  import { QueryClient } from '@tanstack/react-query';
3
3
  import { createApiClient } from '@btst/stack/plugins/client';
4
- import { P as Post, T as Tag, c as createPostSchema, u as updatePostSchema, S as SerializedPost, a as SerializedTag } from './stack.BWp0hcm9.js';
4
+ import { P as Post, T as Tag, c as createPostSchema, u as updatePostSchema, S as SerializedPost, a as SerializedTag } from './stack.BQmuNl5p.js';
5
5
  import * as _btst_stack_plugins_api from '@btst/stack/plugins/api';
6
6
  import * as better_call from 'better-call';
7
7
  import { Adapter } from '@btst/db';
@@ -218,15 +218,15 @@ declare const blogBackendPlugin: (hooks?: BlogBackendHooks) => _btst_stack_plugi
218
218
  name: z.ZodString;
219
219
  slug: z.ZodString;
220
220
  }, z.core.$strip>]>>>>;
221
+ title: z.ZodString;
221
222
  slug: z.ZodOptional<z.ZodString>;
222
- published: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
223
- publishedAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
224
223
  createdAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
225
224
  updatedAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
226
- title: z.ZodString;
225
+ publishedAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
227
226
  content: z.ZodString;
228
227
  excerpt: z.ZodString;
229
228
  image: z.ZodOptional<z.ZodString>;
229
+ published: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
230
230
  }, z.core.$strip>;
231
231
  }, Post>;
232
232
  readonly updatePost: better_call.StrictEndpoint<"/posts/:id", {
@@ -1,7 +1,7 @@
1
1
  import * as _tanstack_react_query from '@tanstack/react-query';
2
2
  import { QueryClient } from '@tanstack/react-query';
3
3
  import { createApiClient } from '@btst/stack/plugins/client';
4
- import { P as Post, T as Tag, c as createPostSchema, u as updatePostSchema, S as SerializedPost, a as SerializedTag } from './stack.BWp0hcm9.mjs';
4
+ import { P as Post, T as Tag, c as createPostSchema, u as updatePostSchema, S as SerializedPost, a as SerializedTag } from './stack.BQmuNl5p.cjs';
5
5
  import * as _btst_stack_plugins_api from '@btst/stack/plugins/api';
6
6
  import * as better_call from 'better-call';
7
7
  import { Adapter } from '@btst/db';
@@ -218,15 +218,15 @@ declare const blogBackendPlugin: (hooks?: BlogBackendHooks) => _btst_stack_plugi
218
218
  name: z.ZodString;
219
219
  slug: z.ZodString;
220
220
  }, z.core.$strip>]>>>>;
221
+ title: z.ZodString;
221
222
  slug: z.ZodOptional<z.ZodString>;
222
- published: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
223
- publishedAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
224
223
  createdAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
225
224
  updatedAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
226
- title: z.ZodString;
225
+ publishedAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
227
226
  content: z.ZodString;
228
227
  excerpt: z.ZodString;
229
228
  image: z.ZodOptional<z.ZodString>;
229
+ published: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
230
230
  }, z.core.$strip>;
231
231
  }, Post>;
232
232
  readonly updatePost: better_call.StrictEndpoint<"/posts/:id", {
@@ -1,6 +1,6 @@
1
1
  import { ZodObject, ZodSchema, ZodTuple } from 'zod';
2
2
  import { ReactNode, ComponentType } from 'react';
3
- import { F as FieldConfigItem } from './stack.8nldKomx.mjs';
3
+ import { F as FieldConfigItem } from './stack.fdi94T4S.cjs';
4
4
 
5
5
  type PropValue = ReactNode | VariableReference | Record<string, any> | any[] | string | number | boolean | null | undefined;
6
6
  type ComponentProps<TProps extends Record<string, PropValue> = Record<string, PropValue>> = TProps;
@@ -1,7 +1,7 @@
1
1
  import * as _tanstack_react_query from '@tanstack/react-query';
2
2
  import { QueryClient } from '@tanstack/react-query';
3
3
  import { createApiClient } from '@btst/stack/plugins/client';
4
- import { P as Post, T as Tag, c as createPostSchema, u as updatePostSchema, S as SerializedPost, a as SerializedTag } from './stack.BWp0hcm9.cjs';
4
+ import { P as Post, T as Tag, c as createPostSchema, u as updatePostSchema, S as SerializedPost, a as SerializedTag } from './stack.BQmuNl5p.mjs';
5
5
  import * as _btst_stack_plugins_api from '@btst/stack/plugins/api';
6
6
  import * as better_call from 'better-call';
7
7
  import { Adapter } from '@btst/db';
@@ -218,15 +218,15 @@ declare const blogBackendPlugin: (hooks?: BlogBackendHooks) => _btst_stack_plugi
218
218
  name: z.ZodString;
219
219
  slug: z.ZodString;
220
220
  }, z.core.$strip>]>>>>;
221
+ title: z.ZodString;
221
222
  slug: z.ZodOptional<z.ZodString>;
222
- published: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
223
- publishedAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
224
223
  createdAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
225
224
  updatedAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
226
- title: z.ZodString;
225
+ publishedAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
227
226
  content: z.ZodString;
228
227
  excerpt: z.ZodString;
229
228
  image: z.ZodOptional<z.ZodString>;
229
+ published: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
230
230
  }, z.core.$strip>;
231
231
  }, Post>;
232
232
  readonly updatePost: better_call.StrictEndpoint<"/posts/:id", {