@lattice-php/lattice 0.70.2 → 0.71.0

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 (30) hide show
  1. package/dist/registry.d.ts +2 -2
  2. package/dist/registry.js.map +1 -1
  3. package/dist/runtime.d.ts +13 -3
  4. package/dist/runtime.js +14 -4
  5. package/dist/types/generated.d.ts +3 -2
  6. package/dist-standalone/chunks/{chart-view-DHIU7BgJ.js → chart-view-ZlKGh0mY.js} +6 -6
  7. package/dist-standalone/chunks/{date-picker-view-BvP8AU0b.js → date-picker-view-CyYnhUeK.js} +1 -1
  8. package/dist-standalone/chunks/dist-BTYZr5rg.js +3 -0
  9. package/dist-standalone/chunks/dist-CDI2N5YZ.js +144 -0
  10. package/dist-standalone/chunks/input-B7b-fHQh.js +1 -0
  11. package/dist-standalone/chunks/{instance-D6cXaqIT.js → instance-CloWXP86.js} +1 -1
  12. package/dist-standalone/chunks/locale-D9oL6nV7.js +1 -0
  13. package/dist-standalone/chunks/pattern-input-view-dTVbJbc_.js +4 -0
  14. package/dist-standalone/chunks/rich-editor-view-CVY3bSw7.js +39 -0
  15. package/dist-standalone/chunks/runtime-CzNLVwO2.js +138 -0
  16. package/dist-standalone/chunks/subscriptions-DBWo_xL2.js +1 -0
  17. package/dist-standalone/chunks/{timezone-Ckl1gbqB.js → timezone-gE1nfovq.js} +1 -1
  18. package/dist-standalone/lattice.css +1 -1
  19. package/dist-standalone/lattice.js +1 -1
  20. package/dist-standalone/manifest.json +1 -1
  21. package/dist-standalone/runtime.js +1 -1
  22. package/dist-standalone/sprite.svg +1 -1
  23. package/package.json +6 -6
  24. package/dist-standalone/chunks/dist-CBO25w6A.js +0 -106
  25. package/dist-standalone/chunks/input-BIm8kbcS.js +0 -1
  26. package/dist-standalone/chunks/locale-BZOrJtMq.js +0 -1
  27. package/dist-standalone/chunks/pattern-input-view-Bsxej1-J.js +0 -4
  28. package/dist-standalone/chunks/rich-editor-view-ZEUTk2co.js +0 -54
  29. package/dist-standalone/chunks/runtime-CtQSqkek.js +0 -162
  30. package/dist-standalone/chunks/subscriptions-DoBY68cJ.js +0 -1
@@ -1,5 +1,5 @@
1
- import { ActionNodeType, ApiReferenceNodeType, BoardNodeType, CalendarNodeType, ChatNodeType, FormNodeType, FragmentNodeType, LayoutNodeType, MapNodeType, MediumNodeType, NodeType, NotificationNodeType, PdfNodeType, RemoteNodeType, SearchNodeType, SignatureExampleNodeType, TableNodeType, TreeNodeType, UiNodeType } from './types/generated.js';
2
- type OptInNodeType = ApiReferenceNodeType | BoardNodeType | CalendarNodeType | ChatNodeType | MapNodeType | MediumNodeType | PdfNodeType | SearchNodeType | SignatureExampleNodeType | TreeNodeType;
1
+ import { ActionNodeType, ApiReferenceNodeType, BlockNodeType, BoardNodeType, CalendarNodeType, ChatNodeType, FormNodeType, FragmentNodeType, LayoutNodeType, MapNodeType, MediumNodeType, NodeType, NotificationNodeType, PdfNodeType, RemoteNodeType, SearchNodeType, SignatureExampleNodeType, TableNodeType, TreeNodeType, UiNodeType } from './types/generated.js';
2
+ type OptInNodeType = ApiReferenceNodeType | BlockNodeType | BoardNodeType | CalendarNodeType | ChatNodeType | MapNodeType | MediumNodeType | PdfNodeType | SearchNodeType | SignatureExampleNodeType | TreeNodeType;
3
3
  type RegisteredNodeType = ActionNodeType | FormNodeType | FragmentNodeType | LayoutNodeType | NotificationNodeType | OptInNodeType | RemoteNodeType | TableNodeType | UiNodeType;
4
4
  type Assert<T extends true> = T;
5
5
  export type AllNodeTypesRegistered = Assert<Exclude<NodeType, RegisteredNodeType> extends never ? true : false>;
@@ -1 +1 @@
1
- {"version":3,"file":"registry.js","names":[],"sources":["../resources/js/registry.ts"],"sourcesContent":["import { createRegistry } from \"@lattice-php/core/registry\";\nimport { navigationPlugin } from \"./inertia-navigation\";\nimport type {\n ActionNodeType,\n ApiReferenceNodeType,\n BoardNodeType,\n CalendarNodeType,\n ChatNodeType,\n FormNodeType,\n FragmentNodeType,\n LayoutNodeType,\n MapNodeType,\n MediumNodeType,\n NodeType,\n NotificationNodeType,\n PdfNodeType,\n RemoteNodeType,\n SearchNodeType,\n SignatureExampleNodeType,\n TableNodeType,\n TreeNodeType,\n UiNodeType,\n} from \"@lattice-php/lattice/types/generated\";\nimport { actionComponents } from \"@lattice-php/action/plugin\";\nimport { formComponents } from \"@lattice-php/form\";\nimport { fragmentComponents } from \"./fragments/plugin\";\nimport { layoutComponents } from \"./layout/plugin\";\nimport { notificationsComponents } from \"./notifications/plugin\";\nimport { remoteComponents } from \"./remote/plugin\";\nimport { tableComponents } from \"@lattice-php/table\";\nimport { uiComponents } from \"@lattice-php/ui\";\n\n// Opt-in packages whose plugins are not bundled in the framework registry —\n// a consuming app registers them itself when it opts into the package.\n// WireModelBuilder::buildAll() still discovers them for the framework\n// document's system-wide NodeType (every composer package that declares\n// extra.lattice.discover, not just the ones this workbench emits a module\n// for), so their node types are legitimately part of it and are acknowledged\n// here rather than belonging to a registered plugin's union.\ntype OptInNodeType =\n | ApiReferenceNodeType\n | BoardNodeType\n | CalendarNodeType\n | ChatNodeType\n | MapNodeType\n | MediumNodeType\n | PdfNodeType\n | SearchNodeType\n | SignatureExampleNodeType\n | TreeNodeType;\n\n// Compile-time totality: every generated NodeType must belong to a registered\n// plugin's union, or be an acknowledged opt-in package above. A new PHP\n// domain fails here until its plugin exists (or it's added to the opt-in list).\ntype RegisteredNodeType =\n | ActionNodeType\n | FormNodeType\n | FragmentNodeType\n | LayoutNodeType\n | NotificationNodeType\n | OptInNodeType\n | RemoteNodeType\n | TableNodeType\n | UiNodeType;\ntype Assert<T extends true> = T;\nexport type AllNodeTypesRegistered = Assert<\n Exclude<NodeType, RegisteredNodeType> extends never ? true : false\n>;\n\nexport const registry = createRegistry(\n uiComponents,\n fragmentComponents,\n actionComponents,\n formComponents,\n layoutComponents,\n tableComponents,\n notificationsComponents,\n remoteComponents,\n navigationPlugin,\n);\n"],"mappings":";;;;;;;;;;;AAqEA,IAAa,WAAW,eACtB,cACA,oBACA,kBACA,gBACA,kBACA,iBACA,yBACA,kBACA,gBACF"}
1
+ {"version":3,"file":"registry.js","names":[],"sources":["../resources/js/registry.ts"],"sourcesContent":["import { createRegistry } from \"@lattice-php/core/registry\";\nimport { navigationPlugin } from \"./inertia-navigation\";\nimport type {\n ActionNodeType,\n ApiReferenceNodeType,\n BlockNodeType,\n BoardNodeType,\n CalendarNodeType,\n ChatNodeType,\n FormNodeType,\n FragmentNodeType,\n LayoutNodeType,\n MapNodeType,\n MediumNodeType,\n NodeType,\n NotificationNodeType,\n PdfNodeType,\n RemoteNodeType,\n SearchNodeType,\n SignatureExampleNodeType,\n TableNodeType,\n TreeNodeType,\n UiNodeType,\n} from \"@lattice-php/lattice/types/generated\";\nimport { actionComponents } from \"@lattice-php/action/plugin\";\nimport { formComponents } from \"@lattice-php/form\";\nimport { fragmentComponents } from \"./fragments/plugin\";\nimport { layoutComponents } from \"./layout/plugin\";\nimport { notificationsComponents } from \"./notifications/plugin\";\nimport { remoteComponents } from \"./remote/plugin\";\nimport { tableComponents } from \"@lattice-php/table\";\nimport { uiComponents } from \"@lattice-php/ui\";\n\n// Opt-in packages whose plugins are not bundled in the framework registry —\n// a consuming app registers them itself when it opts into the package.\n// WireModelBuilder::buildAll() still discovers them for the framework\n// document's system-wide NodeType (every composer package that declares\n// extra.lattice.discover, not just the ones this workbench emits a module\n// for), so their node types are legitimately part of it and are acknowledged\n// here rather than belonging to a registered plugin's union.\ntype OptInNodeType =\n | ApiReferenceNodeType\n | BlockNodeType\n | BoardNodeType\n | CalendarNodeType\n | ChatNodeType\n | MapNodeType\n | MediumNodeType\n | PdfNodeType\n | SearchNodeType\n | SignatureExampleNodeType\n | TreeNodeType;\n\n// Compile-time totality: every generated NodeType must belong to a registered\n// plugin's union, or be an acknowledged opt-in package above. A new PHP\n// domain fails here until its plugin exists (or it's added to the opt-in list).\ntype RegisteredNodeType =\n | ActionNodeType\n | FormNodeType\n | FragmentNodeType\n | LayoutNodeType\n | NotificationNodeType\n | OptInNodeType\n | RemoteNodeType\n | TableNodeType\n | UiNodeType;\ntype Assert<T extends true> = T;\nexport type AllNodeTypesRegistered = Assert<\n Exclude<NodeType, RegisteredNodeType> extends never ? true : false\n>;\n\nexport const registry = createRegistry(\n uiComponents,\n fragmentComponents,\n actionComponents,\n formComponents,\n layoutComponents,\n tableComponents,\n notificationsComponents,\n remoteComponents,\n navigationPlugin,\n);\n"],"mappings":";;;;;;;;;;;AAuEA,IAAa,WAAW,eACtB,cACA,oBACA,kBACA,gBACA,kBACA,iBACA,yBACA,kBACA,gBACF"}
package/dist/runtime.d.ts CHANGED
@@ -7,14 +7,24 @@ export type { CallActionResult } from '@lattice-php/action';
7
7
  export { ActionConfirmOverlay } from '@lattice-php/action/components/action-confirm-overlay';
8
8
  export { ActionsDropdown } from '@lattice-php/action/components/actions-dropdown';
9
9
  export { apiFetch, apiJson, setRefRefreshEndpoint, xsrfToken } from '@lattice-php/core/api';
10
- export { useExtensionRegistry } from '@lattice-php/core/registry-context';
10
+ export { RegistryProvider, useExtensionRegistry } from '@lattice-php/core/registry-context';
11
11
  export { RenderNode } from '@lattice-php/core/renderer';
12
12
  export { coerceColor, colorValue, toneProps } from '@lattice-php/ui/lib/color';
13
13
  export { nodeIdentity } from '@lattice-php/core/test-id';
14
14
  export { requestSignedUpload, xhrTransfer } from '@lattice-php/core/upload';
15
15
  export { SimpleField } from '@lattice-php/form/components/base/simple-field';
16
16
  export { RICH_EDITOR_EXTENSION, ToolbarIconButton } from '@lattice-php/form/rich-editor';
17
+ export { assembleBlockCommands, assembleStarterKitOptions, assembleTiptapExtensions, assembleToolbar, resolveRichEditorExtensions, } from '@lattice-php/form/rich-editor/registry';
18
+ export { builtinRichEditorExtensions } from '@lattice-php/form/rich-editor/builtins';
19
+ export { BlockMenuController } from '@lattice-php/form/rich-editor/block-menu/block-menu-controller';
20
+ export { createSlashMenuExtension, SLASH_MENU_PLUGIN_KEY, } from '@lattice-php/form/rich-editor/block-menu/slash-extension';
21
+ export { filterBlockCommands } from '@lattice-php/form/rich-editor/block-menu/filter';
22
+ export { Heading } from '@lattice-php/ui/components/heading/heading';
23
+ export { Text } from '@lattice-php/ui/components/text/text';
24
+ export { Image } from '@lattice-php/ui/components/image/image';
25
+ export { Popover, PopoverClose, PopoverContent, PopoverTrigger, } from '@lattice-php/ui/components/popover/popover';
17
26
  export * from '@lattice-php/form/toolkit';
27
+ export { collectFields, FieldCommitOverrideProvider, FormProvider, FormValuesProvider, PrefillProvider, ResolvedNodesProvider, } from '@lattice-php/form/embed';
18
28
  export { useTable } from '@lattice-php/table/hooks/use-table';
19
29
  export { useTableSelection } from '@lattice-php/table/hooks/use-table-selection';
20
30
  export { getBulkActionNodes } from '@lattice-php/table/lib/bulk';
@@ -25,7 +35,7 @@ export { isActiveFilterValue } from '@lattice-php/table/lib/filter-values';
25
35
  export { BOARD_OWNED_QUERY_KEYS, claimUrlSyncScope, writeQueryToUrl, } from '@lattice-php/table/lib/url-sync';
26
36
  export { useAction } from '@lattice-php/action/hooks/use-action';
27
37
  export { MODAL_MISSING_ERROR, useEmbeddedModal, useModal, } from '@lattice-php/ui/components/modal/modal-host';
28
- export { Badge, Button, cn, CodeBlock, ConfirmDialog, CopyButton, Dialog, DialogContent, DialogHeader, DialogTitle, formatDateValue, IconButton, InfoTooltip, NativeSelect, PreviewableImage, SegmentedControl, Spinner, useDebouncedCallback, useFormatContext, usePersistentState, } from '@lattice-php/ui';
38
+ export { Badge, Button, cn, CodeBlock, ConfirmDialog, CopyButton, Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle, formatDateValue, IconButton, InfoTooltip, NativeSelect, PreviewableImage, SegmentedControl, Spinner, useDebouncedCallback, useFormatContext, usePersistentState, } from '@lattice-php/ui';
29
39
  export { Checkbox, Combobox, Input, Label, Textarea } from '@lattice-php/form';
30
40
  export * from '@lattice-php/ui/i18n';
31
- export { announce, attachTreeItemInstruction, cancelDragStartFromInteractive, combine, draggable, dropTargetForElements, extractTreeItemInstruction, } from './dnd/index.js';
41
+ export { announce, attachClosestEdge, attachTreeItemInstruction, autoScrollForElements, cancelDragStartFromInteractive, combine, draggable, dropTargetForElements, extractClosestEdge, extractTreeItemInstruction, getReorderDestinationIndex, monitorForElements, preserveOffsetOnSource, setCustomNativeDragPreview, } from './dnd/index.js';
package/dist/runtime.js CHANGED
@@ -11,15 +11,16 @@ import { createLatticeApp } from "./create-app.js";
11
11
  import { Provider, useColumnRegistry, useComponentRegistry } from "./provider.js";
12
12
  import { Icon, IconRenderer, IconRendererProvider, LATTICE_EVENT, LATTICE_REF_HEADER, Renderer, SpriteProvider, builtinEffectHandlers, columnCell, copyToClipboard, createRegistry, dispatchActionError, dispatchEffects, eagerComponent, effectHandler, extendRegistry, getActionEffects, isActionEffect, lazyComponent, loadPluginModules, mergeEffectHandlers, useEffectDispatcher, withHeaders, withRefHeader } from "./index.js";
13
13
  import { cancelDragStartFromInteractive } from "./dnd/cancel-drag-start.js";
14
- import { announce, attachTreeItemInstruction, combine, draggable, dropTargetForElements, extractTreeItemInstruction } from "./dnd/index.js";
14
+ import { announce, attachClosestEdge, attachTreeItemInstruction, autoScrollForElements, combine, draggable, dropTargetForElements, extractClosestEdge, extractTreeItemInstruction, getReorderDestinationIndex, monitorForElements, preserveOffsetOnSource, setCustomNativeDragPreview } from "./dnd/index.js";
15
15
  import { Checkbox, Combobox, Input, Label, Textarea } from "@lattice-php/form";
16
- import { Badge, Button, CodeBlock, ConfirmDialog, CopyButton, Dialog, DialogContent, DialogHeader, DialogTitle, IconButton, InfoTooltip, NativeSelect, PreviewableImage, SegmentedControl, Spinner, cn, formatDateValue, useDebouncedCallback, useFormatContext, usePersistentState } from "@lattice-php/ui";
16
+ import { Badge, Button, CodeBlock, ConfirmDialog, CopyButton, Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle, IconButton, InfoTooltip, NativeSelect, PreviewableImage, SegmentedControl, Spinner, cn, formatDateValue, useDebouncedCallback, useFormatContext, usePersistentState } from "@lattice-php/ui";
17
17
  import { router } from "@inertiajs/react";
18
18
  import { apiFetch, apiJson, setRefRefreshEndpoint, xsrfToken } from "@lattice-php/core/api";
19
- import { useExtensionRegistry } from "@lattice-php/core/registry-context";
19
+ import { RegistryProvider, useExtensionRegistry } from "@lattice-php/core/registry-context";
20
20
  import { RenderNode } from "@lattice-php/core/renderer";
21
21
  import { NavigationProvider, defaultNavigation, useNavigation } from "@lattice-php/ui/navigation";
22
22
  import { MODAL_MISSING_ERROR, useEmbeddedModal, useModal } from "@lattice-php/ui/components/modal/modal-host";
23
+ import { Popover, PopoverClose, PopoverContent, PopoverTrigger } from "@lattice-php/ui/components/popover/popover";
23
24
  import { callAction, runAction, useCallAction } from "@lattice-php/action";
24
25
  import { ActionConfirmOverlay } from "@lattice-php/action/components/action-confirm-overlay";
25
26
  import { ActionsDropdown } from "@lattice-php/action/components/actions-dropdown";
@@ -28,6 +29,15 @@ import { nodeIdentity } from "@lattice-php/core/test-id";
28
29
  import { requestSignedUpload, xhrTransfer } from "@lattice-php/core/upload";
29
30
  import { SimpleField } from "@lattice-php/form/components/base/simple-field";
30
31
  import { RICH_EDITOR_EXTENSION, ToolbarIconButton } from "@lattice-php/form/rich-editor";
32
+ import { assembleBlockCommands, assembleStarterKitOptions, assembleTiptapExtensions, assembleToolbar, resolveRichEditorExtensions } from "@lattice-php/form/rich-editor/registry";
33
+ import { builtinRichEditorExtensions } from "@lattice-php/form/rich-editor/builtins";
34
+ import { BlockMenuController } from "@lattice-php/form/rich-editor/block-menu/block-menu-controller";
35
+ import { SLASH_MENU_PLUGIN_KEY, createSlashMenuExtension } from "@lattice-php/form/rich-editor/block-menu/slash-extension";
36
+ import { filterBlockCommands } from "@lattice-php/form/rich-editor/block-menu/filter";
37
+ import { Heading } from "@lattice-php/ui/components/heading/heading";
38
+ import { Text } from "@lattice-php/ui/components/text/text";
39
+ import { Image } from "@lattice-php/ui/components/image/image";
40
+ import { FieldCommitOverrideProvider, FormProvider, FormValuesProvider, PrefillProvider, ResolvedNodesProvider, collectFields } from "@lattice-php/form/embed";
31
41
  import { useTable } from "@lattice-php/table/hooks/use-table";
32
42
  import { useTableSelection } from "@lattice-php/table/hooks/use-table-selection";
33
43
  import { getBulkActionNodes } from "@lattice-php/table/lib/bulk";
@@ -39,4 +49,4 @@ import { BOARD_OWNED_QUERY_KEYS, claimUrlSyncScope, writeQueryToUrl } from "@lat
39
49
  import { useAction } from "@lattice-php/action/hooks/use-action";
40
50
  export * from "@lattice-php/ui/i18n";
41
51
  export * from "@lattice-php/form/toolkit";
42
- export { ActionConfirmOverlay, ActionsDropdown, BOARD_OWNED_QUERY_KEYS, Badge, Button, Checkbox, CodeBlock, Combobox, ConfirmDialog, CopyButton, Dialog, DialogContent, DialogHeader, DialogTitle, EventBridge, FilterBar, FilterMenu, Icon, IconButton, IconRenderer, IconRendererProvider, InfoTooltip, Input, LATTICE_EVENT, LATTICE_REF_HEADER, Label, MODAL_MISSING_ERROR, NativeSelect, NavigationProvider, OutletProvider, PreviewableImage, Provider, RICH_EDITOR_EXTENSION, RealtimeListeners, RenderNode, Renderer, SchemaLayout, SegmentedControl, SimpleField, Spinner, SpriteProvider, TableSearch, Textarea, ToolbarIconButton, announce, apiFetch, apiJson, appendTableFilters, attachTreeItemInstruction, builtinEffectHandlers, callAction, cancelDragStartFromInteractive, claimUrlSyncScope, cn, coerceColor, colorValue, columnCell, combine, copyToClipboard, createLatticeApp, createLayoutResolver, createPageResolver, createRegistry, defaultNavigation, dispatchActionError, dispatchEffects, draggable, dropTargetForElements, eagerComponent, effectHandler, extendRegistry, extractTreeItemInstruction, fetchFilterOptions, formatDateValue, getActionEffects, getBulkActionNodes, getUrlQueryParams, inertiaNavigation, initializeAppearance, isActionEffect, isActiveFilterValue, layoutComponents, lazyComponent, loadPluginModules, mergeEffectHandlers, navigationPlugin, nodeIdentity, pageComponentName, registry, requestSignedUpload, router, runAction, setRefRefreshEndpoint, toneProps, updateAppearance, useAction, useAppearance, useCallAction, useColumnRegistry, useComponentRegistry, useDebouncedCallback, useEffectDispatcher, useEmbeddedModal, useExtensionRegistry, useFormatContext, useModal, useNavigation, useOutlet, usePersistentState, useTable, useTableSelection, withHeaders, withRefHeader, withVisitHeaders, writeQueryToUrl, xhrTransfer, xsrfToken };
52
+ export { ActionConfirmOverlay, ActionsDropdown, BOARD_OWNED_QUERY_KEYS, Badge, BlockMenuController, Button, Checkbox, CodeBlock, Combobox, ConfirmDialog, CopyButton, Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle, EventBridge, FieldCommitOverrideProvider, FilterBar, FilterMenu, FormProvider, FormValuesProvider, Heading, Icon, IconButton, IconRenderer, IconRendererProvider, Image, InfoTooltip, Input, LATTICE_EVENT, LATTICE_REF_HEADER, Label, MODAL_MISSING_ERROR, NativeSelect, NavigationProvider, OutletProvider, Popover, PopoverClose, PopoverContent, PopoverTrigger, PrefillProvider, PreviewableImage, Provider, RICH_EDITOR_EXTENSION, RealtimeListeners, RegistryProvider, RenderNode, Renderer, ResolvedNodesProvider, SLASH_MENU_PLUGIN_KEY, SchemaLayout, SegmentedControl, SimpleField, Spinner, SpriteProvider, TableSearch, Text, Textarea, ToolbarIconButton, announce, apiFetch, apiJson, appendTableFilters, assembleBlockCommands, assembleStarterKitOptions, assembleTiptapExtensions, assembleToolbar, attachClosestEdge, attachTreeItemInstruction, autoScrollForElements, builtinEffectHandlers, builtinRichEditorExtensions, callAction, cancelDragStartFromInteractive, claimUrlSyncScope, cn, coerceColor, collectFields, colorValue, columnCell, combine, copyToClipboard, createLatticeApp, createLayoutResolver, createPageResolver, createRegistry, createSlashMenuExtension, defaultNavigation, dispatchActionError, dispatchEffects, draggable, dropTargetForElements, eagerComponent, effectHandler, extendRegistry, extractClosestEdge, extractTreeItemInstruction, fetchFilterOptions, filterBlockCommands, formatDateValue, getActionEffects, getBulkActionNodes, getReorderDestinationIndex, getUrlQueryParams, inertiaNavigation, initializeAppearance, isActionEffect, isActiveFilterValue, layoutComponents, lazyComponent, loadPluginModules, mergeEffectHandlers, monitorForElements, navigationPlugin, nodeIdentity, pageComponentName, preserveOffsetOnSource, registry, requestSignedUpload, resolveRichEditorExtensions, router, runAction, setCustomNativeDragPreview, setRefRefreshEndpoint, toneProps, updateAppearance, useAction, useAppearance, useCallAction, useColumnRegistry, useComponentRegistry, useDebouncedCallback, useEffectDispatcher, useEmbeddedModal, useExtensionRegistry, useFormatContext, useModal, useNavigation, useOutlet, usePersistentState, useTable, useTableSelection, withHeaders, withRefHeader, withVisitHeaders, writeQueryToUrl, xhrTransfer, xsrfToken };
@@ -3,6 +3,7 @@ import { Size, Translatable, Variant } from '@lattice-php/ui';
3
3
  import { Effect } from '@lattice-php/ui/effects/types';
4
4
  export type ActionNodeType = "action" | "action.bulk" | "action.group";
5
5
  export type ApiReferenceNodeType = "api-reference";
6
+ export type BlockNodeType = "blocks.editor" | "blocks.frame" | "blocks.rich-text" | "blocks.slot" | "blocks.unknown" | "blocks.view";
6
7
  export type BoardNodeType = "board";
7
8
  export type CalendarNodeType = "calendar";
8
9
  export type ChannelVisibility = "public" | "private" | "presence";
@@ -19,7 +20,7 @@ export type DataList = {
19
20
  emptyLabel: string | null;
20
21
  remote: RemoteAccess | null;
21
22
  };
22
- export type FilterNodeType = "filter.date-range" | "filter.media-type" | "filter.select" | "filter.ternary" | "filter.toggle";
23
+ export type FilterNodeType = "filter.date-range" | "filter.media-folder" | "filter.media-type" | "filter.select" | "filter.ternary" | "filter.toggle";
23
24
  export type FormFieldNodeType = "field.builder" | "field.checkbox" | "field.choice" | "field.color-picker" | "field.date-input" | "field.date-time-input" | "field.file-upload" | "field.hidden-input" | "field.media-picker" | "field.number-input" | "field.otp" | "field.password-input" | "field.pattern-input" | "field.repeater" | "field.rich-editor" | "field.select" | "field.text-input" | "field.textarea" | "field.time-input" | "field.toggle" | "field.tree" | "wizard" | "wizard-step";
24
25
  export type FormNodeType = "field.builder" | "field.checkbox" | "field.choice" | "field.color-picker" | "field.date-input" | "field.date-time-input" | "field.file-upload" | "field.hidden-input" | "field.media-picker" | "field.number-input" | "field.otp" | "field.password-input" | "field.pattern-input" | "field.repeater" | "field.rich-editor" | "field.select" | "field.text-input" | "field.textarea" | "field.time-input" | "field.toggle" | "field.tree" | "form" | "wizard" | "wizard-step";
25
26
  export type Fragment = {
@@ -41,7 +42,7 @@ export type Listen = {
41
42
  };
42
43
  export type MapNodeType = "map";
43
44
  export type MediumNodeType = "media.library";
44
- export type NodeType = "accordion" | "action" | "action.bulk" | "action.group" | "api-reference" | "avatar" | "badge" | "board" | "breadcrumbs" | "button" | "calendar" | "callouts" | "card" | "chart" | "chat.box" | "chat.part.text" | "chat.part.tool-call" | "code-block" | "collapsible" | "description-list" | "dropdown" | "entry.badge" | "entry.boolean" | "entry.component" | "entry.date" | "entry.text" | "field.builder" | "field.checkbox" | "field.choice" | "field.color-picker" | "field.date-input" | "field.date-time-input" | "field.file-upload" | "field.hidden-input" | "field.media-picker" | "field.number-input" | "field.otp" | "field.password-input" | "field.pattern-input" | "field.repeater" | "field.rich-editor" | "field.select" | "field.text-input" | "field.textarea" | "field.time-input" | "field.toggle" | "field.tree" | "floating-panel" | "form" | "fragment" | "grid" | "heading" | "icon" | "image" | "link" | "map" | "media.library" | "menu" | "menu-item" | "modal" | "notifications" | "outlet" | "pdf" | "popover" | "progress" | "raw-block" | "remote.data-list" | "search.box" | "search.categories" | "search.input" | "search.preview" | "search.recent" | "search.results" | "section" | "segmented-control" | "separator" | "sidebar" | "sidebar.footer" | "signature" | "stack" | "tab" | "table" | "tabs" | "text" | "tooltip" | "topbar" | "tree" | "wizard" | "wizard-step";
45
+ export type NodeType = "accordion" | "action" | "action.bulk" | "action.group" | "api-reference" | "avatar" | "badge" | "blocks.editor" | "blocks.frame" | "blocks.rich-text" | "blocks.slot" | "blocks.unknown" | "blocks.view" | "board" | "breadcrumbs" | "button" | "calendar" | "callouts" | "card" | "chart" | "chat.box" | "chat.part.text" | "chat.part.tool-call" | "code-block" | "collapsible" | "description-list" | "dropdown" | "entry.badge" | "entry.boolean" | "entry.component" | "entry.date" | "entry.text" | "field.builder" | "field.checkbox" | "field.choice" | "field.color-picker" | "field.date-input" | "field.date-time-input" | "field.file-upload" | "field.hidden-input" | "field.media-picker" | "field.number-input" | "field.otp" | "field.password-input" | "field.pattern-input" | "field.repeater" | "field.rich-editor" | "field.select" | "field.text-input" | "field.textarea" | "field.time-input" | "field.toggle" | "field.tree" | "floating-panel" | "form" | "fragment" | "grid" | "heading" | "icon" | "image" | "link" | "map" | "media.library" | "menu" | "menu-item" | "modal" | "notifications" | "outlet" | "pdf" | "popover" | "progress" | "raw-block" | "remote.data-list" | "search.box" | "search.categories" | "search.input" | "search.preview" | "search.recent" | "search.results" | "section" | "segmented-control" | "separator" | "sidebar" | "sidebar.footer" | "signature" | "stack" | "tab" | "table" | "tabs" | "text" | "tooltip" | "topbar" | "tree" | "wizard" | "wizard-step";
45
46
  export type NotificationItem = {
46
47
  readonly actions: Node[];
47
48
  readonly body: Translatable | string | null;