@ixo/editor 2.19.0 → 2.21.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.
@@ -1107,6 +1107,138 @@ interface BlockRequirements {
1107
1107
  coreAddress: string;
1108
1108
  };
1109
1109
  }
1110
+ /**
1111
+ * UDID outcome values matching EvaluationStatus enum
1112
+ * PENDING = 0, APPROVED = 1, REJECTED = 2, DISPUTED = 3, INVALIDATED = 4, UNRECOGNIZED = -1
1113
+ */
1114
+ type UdidOutcome = 0 | 1 | 2 | 3 | 4 | -1;
1115
+ /**
1116
+ * Granular step result item for UDID
1117
+ */
1118
+ interface UdidResultItem {
1119
+ /** Unique identifier for this result item */
1120
+ id: string;
1121
+ /** Type of check/step */
1122
+ kind: 'compute' | 'fetch' | 'check' | 'validate';
1123
+ /** Whether this step passed */
1124
+ success: boolean;
1125
+ /** Score or value (optional) */
1126
+ score?: number;
1127
+ /** Output data from this step */
1128
+ outputs?: Record<string, any>;
1129
+ /** Human-readable message */
1130
+ message?: string;
1131
+ /** Error message if failed */
1132
+ error?: string;
1133
+ }
1134
+ /**
1135
+ * Signed UDID structure
1136
+ */
1137
+ interface SignedUdid {
1138
+ /** Unique identifier for this UDID */
1139
+ id: string;
1140
+ /** The unsigned UDID payload */
1141
+ payload: {
1142
+ /** Subject of the evaluation (claim CID) */
1143
+ sub: string;
1144
+ /** Issuer DID (evaluator) */
1145
+ iss: string;
1146
+ /** Audience/context (deed DID) */
1147
+ aud: string;
1148
+ /** Issued at timestamp */
1149
+ iat: number;
1150
+ /** Expiration timestamp (optional) */
1151
+ exp?: number;
1152
+ /** Action/capability context */
1153
+ act: {
1154
+ capabilityCid: string;
1155
+ capabilitySchema: string;
1156
+ rubricAuthority: string;
1157
+ rubricId: string;
1158
+ environment: string;
1159
+ evaluatorVersion?: string;
1160
+ };
1161
+ /** Result data */
1162
+ res: {
1163
+ outcome: number;
1164
+ tag: string;
1165
+ patch?: Record<string, any>;
1166
+ traceCid?: string;
1167
+ traceHash?: string;
1168
+ items?: UdidResultItem[];
1169
+ resultSchema?: string;
1170
+ };
1171
+ /** Metadata */
1172
+ meta: {
1173
+ collectionId: string;
1174
+ timestamp: string;
1175
+ };
1176
+ };
1177
+ /** Signature of the payload */
1178
+ signature: string;
1179
+ /** Verification method used for signing */
1180
+ verificationMethod: string;
1181
+ }
1182
+ /**
1183
+ * Parameters for creating a UDID
1184
+ */
1185
+ interface CreateUdidParams {
1186
+ /** CID of the claim being evaluated */
1187
+ claimCid: string;
1188
+ /** DID of the Deed/Context where this result applies */
1189
+ deedDid: string;
1190
+ /** Collection ID for the claim */
1191
+ collectionId: string;
1192
+ /** CID of the UCAN/capability that authorized this evaluation */
1193
+ capabilityCid: string;
1194
+ /** Schema of the capability (default: "ixo-protocol-v1") */
1195
+ capabilitySchema?: string;
1196
+ /** DID of the rubric authority (usually the Deed DID) */
1197
+ rubricAuthority: string;
1198
+ /** Version/ID of the rubric used */
1199
+ rubricId: string;
1200
+ /** Environment (default: "production") */
1201
+ environment?: 'production' | 'simulation' | 'testnet';
1202
+ /** Version of the evaluator (optional) */
1203
+ evaluatorVersion?: string;
1204
+ /** Outcome of the evaluation matching EvaluationStatus enum (0=PENDING, 1=APPROVED, 2=REJECTED, 3=DISPUTED, 4=INVALIDATED, -1=UNRECOGNIZED) */
1205
+ outcome: UdidOutcome | number;
1206
+ /** Human-readable tag for the outcome */
1207
+ tag: string;
1208
+ /** State patch to apply to Digital Twin (optional) */
1209
+ patch?: Record<string, any>;
1210
+ /** CID of the trace/reasoning logs (optional) */
1211
+ traceCid?: string;
1212
+ /** Hash of the trace for integrity (optional) */
1213
+ traceHash?: string;
1214
+ /** Granular step results (optional) */
1215
+ items?: UdidResultItem[];
1216
+ /** Schema for result validation (optional) */
1217
+ resultSchema?: string;
1218
+ /** Type of issuer: entity or user */
1219
+ issuerType: 'entity' | 'user';
1220
+ /** Entity room ID (required if issuerType is "entity") */
1221
+ entityRoomId?: string;
1222
+ /** PIN for decrypting signing key */
1223
+ pin: string;
1224
+ /** Expiration time in seconds from now (optional) */
1225
+ expiresInSeconds?: number;
1226
+ }
1227
+ /**
1228
+ * Response from creating a UDID
1229
+ */
1230
+ interface CreateUdidResponse {
1231
+ /** Whether the UDID was created successfully */
1232
+ success: boolean;
1233
+ /** The signed UDID */
1234
+ udid: SignedUdid;
1235
+ /** CID of the stored UDID in public storage (IPFS/Matrix) */
1236
+ cid: string;
1237
+ /** URL to fetch the UDID from public storage */
1238
+ url: string;
1239
+ /** Transaction hash if submitted on-chain */
1240
+ transactionHash?: string;
1241
+ }
1110
1242
  interface VoteParams {
1111
1243
  proposalId: number;
1112
1244
  rationale?: string;
@@ -1508,6 +1640,108 @@ interface BlocknoteHandlers {
1508
1640
  /** Transaction hash */
1509
1641
  transactionHash: string;
1510
1642
  }>;
1643
+ /**
1644
+ * List available email templates from Mailgun
1645
+ */
1646
+ listEmailTemplates?: (params: {
1647
+ limit?: number;
1648
+ page?: string;
1649
+ }) => Promise<{
1650
+ items: Array<{
1651
+ name: string;
1652
+ description?: string;
1653
+ createdAt: string;
1654
+ }>;
1655
+ paging?: {
1656
+ first: string;
1657
+ last: string;
1658
+ next?: string;
1659
+ previous?: string;
1660
+ };
1661
+ }>;
1662
+ /**
1663
+ * Get a specific email template with optional active version content
1664
+ */
1665
+ getEmailTemplate?: (params: {
1666
+ templateName: string;
1667
+ active?: boolean;
1668
+ }) => Promise<{
1669
+ name: string;
1670
+ description?: string;
1671
+ version?: {
1672
+ tag: string;
1673
+ template: string;
1674
+ engine: string;
1675
+ active: boolean;
1676
+ createdAt: string;
1677
+ };
1678
+ }>;
1679
+ /**
1680
+ * Send an email using a template
1681
+ */
1682
+ sendEmail?: (params: {
1683
+ from: string;
1684
+ to: string;
1685
+ subject: string;
1686
+ template: string;
1687
+ templateVersion?: string;
1688
+ variables?: Record<string, any>;
1689
+ cc?: string;
1690
+ bcc?: string;
1691
+ replyTo?: string;
1692
+ }) => Promise<{
1693
+ id: string;
1694
+ message: string;
1695
+ }>;
1696
+ /**
1697
+ * Get the rubric linked resource for a deed
1698
+ */
1699
+ getDeedRubric?: (deedDid: string) => Promise<{
1700
+ rubric: any;
1701
+ claimCollectionId: string;
1702
+ } | null>;
1703
+ /**
1704
+ * Evaluate a claim using a rubric via the rubric engine
1705
+ */
1706
+ evaluateWithRubric?: (params: {
1707
+ rubric: string;
1708
+ claim: Record<string, any>;
1709
+ }) => Promise<{
1710
+ success: boolean;
1711
+ trace?: {
1712
+ traceId: string;
1713
+ rubricVersion: number;
1714
+ rubricName: string | null;
1715
+ actor: {
1716
+ type: 'ai' | 'human';
1717
+ id?: string;
1718
+ } | null;
1719
+ result: {
1720
+ outcome: 'pass' | 'fail' | 'escalated';
1721
+ steps: Array<{
1722
+ stepId: string;
1723
+ kind: 'compute' | 'fetch' | 'check';
1724
+ success: boolean;
1725
+ outputs?: Record<string, any>;
1726
+ message?: string;
1727
+ error?: string;
1728
+ duration?: number;
1729
+ timestamp: string;
1730
+ }>;
1731
+ executionId: string;
1732
+ startTime: string;
1733
+ endTime: string;
1734
+ totalDuration: number;
1735
+ escalatedTo?: string;
1736
+ };
1737
+ claim: Record<string, any>;
1738
+ };
1739
+ error?: string;
1740
+ }>;
1741
+ /**
1742
+ * Create a Universal Decentralized Identifier (UDID) for an evaluation result
1743
+ */
1744
+ createUdid?: (params: CreateUdidParams) => Promise<CreateUdidResponse>;
1511
1745
  }
1512
1746
  type DocType = 'template' | 'page' | 'flow';
1513
1747
  /**
@@ -2615,6 +2849,134 @@ declare const blockSpecs: {
2615
2849
  readonly content: "none";
2616
2850
  }, any, _blocknote_core.InlineContentSchema, _blocknote_core.StyleSchema>;
2617
2851
  };
2852
+ email: {
2853
+ config: {
2854
+ readonly type: "email";
2855
+ readonly propSchema: {
2856
+ readonly templateName: {
2857
+ readonly default: "";
2858
+ };
2859
+ readonly templateVersion: {
2860
+ readonly default: "";
2861
+ };
2862
+ readonly from: {
2863
+ readonly default: "";
2864
+ };
2865
+ readonly to: {
2866
+ readonly default: "";
2867
+ };
2868
+ readonly cc: {
2869
+ readonly default: "";
2870
+ };
2871
+ readonly bcc: {
2872
+ readonly default: "";
2873
+ };
2874
+ readonly subject: {
2875
+ readonly default: "";
2876
+ };
2877
+ readonly replyTo: {
2878
+ readonly default: "";
2879
+ };
2880
+ readonly variables: {
2881
+ readonly default: "{}";
2882
+ };
2883
+ readonly extractedVariables: {
2884
+ readonly default: "[]";
2885
+ };
2886
+ readonly title: {
2887
+ readonly default: "Send Email";
2888
+ };
2889
+ readonly description: {
2890
+ readonly default: "";
2891
+ };
2892
+ readonly icon: {
2893
+ readonly default: "mail";
2894
+ };
2895
+ readonly buttonLabel: {
2896
+ readonly default: "Send Email";
2897
+ };
2898
+ readonly status: {
2899
+ readonly default: "idle";
2900
+ };
2901
+ readonly lastSentAt: {
2902
+ readonly default: "";
2903
+ };
2904
+ readonly lastMessageId: {
2905
+ readonly default: "";
2906
+ };
2907
+ readonly error: {
2908
+ readonly default: "";
2909
+ };
2910
+ readonly conditions: {
2911
+ readonly default: "";
2912
+ };
2913
+ };
2914
+ readonly content: "none";
2915
+ };
2916
+ implementation: _blocknote_core.TiptapBlockImplementation<{
2917
+ readonly type: "email";
2918
+ readonly propSchema: {
2919
+ readonly templateName: {
2920
+ readonly default: "";
2921
+ };
2922
+ readonly templateVersion: {
2923
+ readonly default: "";
2924
+ };
2925
+ readonly from: {
2926
+ readonly default: "";
2927
+ };
2928
+ readonly to: {
2929
+ readonly default: "";
2930
+ };
2931
+ readonly cc: {
2932
+ readonly default: "";
2933
+ };
2934
+ readonly bcc: {
2935
+ readonly default: "";
2936
+ };
2937
+ readonly subject: {
2938
+ readonly default: "";
2939
+ };
2940
+ readonly replyTo: {
2941
+ readonly default: "";
2942
+ };
2943
+ readonly variables: {
2944
+ readonly default: "{}";
2945
+ };
2946
+ readonly extractedVariables: {
2947
+ readonly default: "[]";
2948
+ };
2949
+ readonly title: {
2950
+ readonly default: "Send Email";
2951
+ };
2952
+ readonly description: {
2953
+ readonly default: "";
2954
+ };
2955
+ readonly icon: {
2956
+ readonly default: "mail";
2957
+ };
2958
+ readonly buttonLabel: {
2959
+ readonly default: "Send Email";
2960
+ };
2961
+ readonly status: {
2962
+ readonly default: "idle";
2963
+ };
2964
+ readonly lastSentAt: {
2965
+ readonly default: "";
2966
+ };
2967
+ readonly lastMessageId: {
2968
+ readonly default: "";
2969
+ };
2970
+ readonly error: {
2971
+ readonly default: "";
2972
+ };
2973
+ readonly conditions: {
2974
+ readonly default: "";
2975
+ };
2976
+ };
2977
+ readonly content: "none";
2978
+ }, any, _blocknote_core.InlineContentSchema, _blocknote_core.StyleSchema>;
2979
+ };
2618
2980
  visualization: {
2619
2981
  config: {
2620
2982
  readonly type: "visualization";
@@ -3181,7 +3543,7 @@ interface IxoEditorType<BSchema extends IxoBlockSchema = IxoBlockSchema, ISchema
3181
3543
  /**
3182
3544
  * Y.Array for flow-specific structured block storage
3183
3545
  * @internal
3184
- */
3546
+ */
3185
3547
  _yFlow?: Array$1<any>;
3186
3548
  /**
3187
3549
  * Y.Map for runtime per-node state (claim status, timestamps, etc.)
@@ -3223,6 +3585,11 @@ interface IxoEditorType<BSchema extends IxoBlockSchema = IxoBlockSchema, ISchema
3223
3585
  * @returns Flow metadata object
3224
3586
  */
3225
3587
  getFlowMetadata?: () => FlowMetadata;
3588
+ /**
3589
+ * Get flow-level metadata
3590
+ * @returns Flow metadata object
3591
+ */
3592
+ getCollaborativeUsers?: () => unknown[];
3226
3593
  /**
3227
3594
  * Update flow-level metadata
3228
3595
  * @param updates - Metadata fields to update
@@ -3436,6 +3803,10 @@ declare function useCreateCollaborativeIxoEditor(options: IxoCollaborativeEditor
3436
3803
  yDoc: Doc;
3437
3804
  root: Map<any>;
3438
3805
  flowArray: Array$1<any>;
3806
+ connectedUsers: Array<{
3807
+ clientId: string;
3808
+ state: any;
3809
+ }>;
3439
3810
  };
3440
3811
 
3441
3812
  interface PageHeaderMenuItem {
package/dist/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
- import { F as FlowNode, a as FlowNodeAuthzExtension, b as FlowNodeRuntimeState, I as IxoEditorType, S as SignedCapability, E as EvaluationStatus, C as Capability, c as CapabilityValidationResult } from './graphql-client-DAeBZWtu.mjs';
2
- export { a3 as Addr, J as ApiRequestBlockProps, t as ApiRequestBlockSpec, A as AuthorizationTab, i as AuthorizationTabState, U as AuthzExecActionTypes, Y as BlockRequirements, X as BlocknoteContextValue, W as BlocknoteHandlers, N as BlocknoteProvider, x as CheckboxBlockProps, s as CheckboxBlockSpec, aa as CosmosMsgForEmpty, g as CoverImage, h as CoverImageProps, D as DelegationGrant, ad as Entity, ae as EntityResponse, l as EntitySigningSetup, af as EntityVariables, j as EvaluationTab, k as EvaluationTabState, a6 as Expiration, m as FlowPermissionsPanel, G as GrantPermissionModal, ag as GraphQLClient, aj as GraphQLRequest, ai as GraphQLResponse, K as HttpMethod, r as IxoCollaborativeEditorOptions, q as IxoCollaborativeUser, e as IxoEditor, p as IxoEditorConfig, n as IxoEditorOptions, f as IxoEditorProps, o as IxoEditorTheme, M as KeyValuePair, z as ListBlockProps, y as ListBlockSettings, L as ListBlockSpec, O as OverviewBlock, B as OverviewBlockProps, ab as ProposalAction, H as ProposalBlockProps, P as ProposalBlockSpec, Z as ProposalResponse, _ as SingleChoiceProposal, T as StakeType, T as StakeTypeValue, a7 as Status, a8 as Threshold, a5 as Timestamp, a4 as Uint128, a2 as User, V as ValidatorActionType, a1 as Vote, a0 as VoteInfo, $ as VoteResponse, a9 as Votes, v as blockSpecs, ac as getEntity, w as getExtraSlashMenuItems, ah as ixoGraphQLClient, Q as useBlocknoteContext, R as useBlocknoteHandlers, d as useCreateCollaborativeIxoEditor, u as useCreateIxoEditor } from './graphql-client-DAeBZWtu.mjs';
1
+ import { F as FlowNode, a as FlowNodeAuthzExtension, b as FlowNodeRuntimeState, I as IxoEditorType, S as SignedCapability, E as EvaluationStatus, C as Capability, c as CapabilityValidationResult } from './graphql-client-B3dAtUfP.mjs';
2
+ export { a3 as Addr, J as ApiRequestBlockProps, t as ApiRequestBlockSpec, A as AuthorizationTab, i as AuthorizationTabState, U as AuthzExecActionTypes, Y as BlockRequirements, X as BlocknoteContextValue, W as BlocknoteHandlers, N as BlocknoteProvider, x as CheckboxBlockProps, s as CheckboxBlockSpec, aa as CosmosMsgForEmpty, g as CoverImage, h as CoverImageProps, D as DelegationGrant, ad as Entity, ae as EntityResponse, l as EntitySigningSetup, af as EntityVariables, j as EvaluationTab, k as EvaluationTabState, a6 as Expiration, m as FlowPermissionsPanel, G as GrantPermissionModal, ag as GraphQLClient, aj as GraphQLRequest, ai as GraphQLResponse, K as HttpMethod, r as IxoCollaborativeEditorOptions, q as IxoCollaborativeUser, e as IxoEditor, p as IxoEditorConfig, n as IxoEditorOptions, f as IxoEditorProps, o as IxoEditorTheme, M as KeyValuePair, z as ListBlockProps, y as ListBlockSettings, L as ListBlockSpec, O as OverviewBlock, B as OverviewBlockProps, ab as ProposalAction, H as ProposalBlockProps, P as ProposalBlockSpec, Z as ProposalResponse, _ as SingleChoiceProposal, T as StakeType, T as StakeTypeValue, a7 as Status, a8 as Threshold, a5 as Timestamp, a4 as Uint128, a2 as User, V as ValidatorActionType, a1 as Vote, a0 as VoteInfo, $ as VoteResponse, a9 as Votes, v as blockSpecs, ac as getEntity, w as getExtraSlashMenuItems, ah as ixoGraphQLClient, Q as useBlocknoteContext, R as useBlocknoteHandlers, d as useCreateCollaborativeIxoEditor, u as useCreateIxoEditor } from './graphql-client-B3dAtUfP.mjs';
3
3
  import { Map } from 'yjs';
4
4
  export { Block, BlockNoteEditor, BlockNoteSchema, DefaultBlockSchema, DefaultInlineContentSchema, DefaultStyleSchema, PartialBlock } from '@blocknote/core';
5
5
  import 'react';
package/dist/index.mjs CHANGED
@@ -34,7 +34,7 @@ import {
34
34
  useCreateCollaborativeIxoEditor,
35
35
  useCreateIxoEditor,
36
36
  validateCapabilityChain
37
- } from "./chunk-HJL3K6NS.mjs";
37
+ } from "./chunk-BPS3TRQX.mjs";
38
38
  export {
39
39
  ApiRequestBlockSpec,
40
40
  AuthorizationTab,
@@ -1,5 +1,5 @@
1
- import { ak as IxoBlockProps } from '../graphql-client-DAeBZWtu.mjs';
2
- export { a3 as Addr, J as ApiRequestBlockProps, t as ApiRequestBlockSpec, A as AuthorizationTab, i as AuthorizationTabState, U as AuthzExecActionTypes, Y as BlockRequirements, X as BlocknoteContextValue, W as BlocknoteHandlers, N as BlocknoteProvider, x as CheckboxBlockProps, s as CheckboxBlockSpec, aa as CosmosMsgForEmpty, g as CoverImage, h as CoverImageProps, av as DomainCardData, au as DomainCardRenderer, am as DropPosition, ar as DynamicListData, as as DynamicListDataProvider, at as DynamicListPanelRenderer, ad as Entity, ae as EntityResponse, l as EntitySigningSetup, af as EntityVariables, j as EvaluationTab, k as EvaluationTabState, a6 as Expiration, al as ExternalDropZone, m as FlowPermissionsPanel, G as GrantPermissionModal, ag as GraphQLClient, aj as GraphQLRequest, ai as GraphQLResponse, K as HttpMethod, r as IxoCollaborativeEditorOptions, q as IxoCollaborativeUser, e as IxoEditor, p as IxoEditorConfig, n as IxoEditorOptions, f as IxoEditorProps, o as IxoEditorTheme, I as IxoEditorType, M as KeyValuePair, z as ListBlockProps, y as ListBlockSettings, L as ListBlockSpec, O as OverviewBlock, B as OverviewBlockProps, an as PageHeader, ap as PageHeaderMenuItem, ao as PageHeaderProps, ab as ProposalAction, H as ProposalBlockProps, P as ProposalBlockSpec, Z as ProposalResponse, _ as SingleChoiceProposal, T as StakeType, T as StakeTypeValue, a7 as Status, a8 as Threshold, a5 as Timestamp, a4 as Uint128, a2 as User, V as ValidatorActionType, aq as VisualizationRenderer, a1 as Vote, a0 as VoteInfo, $ as VoteResponse, a9 as Votes, v as blockSpecs, ac as getEntity, w as getExtraSlashMenuItems, ah as ixoGraphQLClient, Q as useBlocknoteContext, R as useBlocknoteHandlers, d as useCreateCollaborativeIxoEditor, u as useCreateIxoEditor } from '../graphql-client-DAeBZWtu.mjs';
1
+ import { ak as IxoBlockProps } from '../graphql-client-B3dAtUfP.mjs';
2
+ export { a3 as Addr, J as ApiRequestBlockProps, t as ApiRequestBlockSpec, A as AuthorizationTab, i as AuthorizationTabState, U as AuthzExecActionTypes, Y as BlockRequirements, X as BlocknoteContextValue, W as BlocknoteHandlers, N as BlocknoteProvider, x as CheckboxBlockProps, s as CheckboxBlockSpec, aa as CosmosMsgForEmpty, g as CoverImage, h as CoverImageProps, av as DomainCardData, au as DomainCardRenderer, am as DropPosition, ar as DynamicListData, as as DynamicListDataProvider, at as DynamicListPanelRenderer, ad as Entity, ae as EntityResponse, l as EntitySigningSetup, af as EntityVariables, j as EvaluationTab, k as EvaluationTabState, a6 as Expiration, al as ExternalDropZone, m as FlowPermissionsPanel, G as GrantPermissionModal, ag as GraphQLClient, aj as GraphQLRequest, ai as GraphQLResponse, K as HttpMethod, r as IxoCollaborativeEditorOptions, q as IxoCollaborativeUser, e as IxoEditor, p as IxoEditorConfig, n as IxoEditorOptions, f as IxoEditorProps, o as IxoEditorTheme, I as IxoEditorType, M as KeyValuePair, z as ListBlockProps, y as ListBlockSettings, L as ListBlockSpec, O as OverviewBlock, B as OverviewBlockProps, an as PageHeader, ap as PageHeaderMenuItem, ao as PageHeaderProps, ab as ProposalAction, H as ProposalBlockProps, P as ProposalBlockSpec, Z as ProposalResponse, _ as SingleChoiceProposal, T as StakeType, T as StakeTypeValue, a7 as Status, a8 as Threshold, a5 as Timestamp, a4 as Uint128, a2 as User, V as ValidatorActionType, aq as VisualizationRenderer, a1 as Vote, a0 as VoteInfo, $ as VoteResponse, a9 as Votes, v as blockSpecs, ac as getEntity, w as getExtraSlashMenuItems, ah as ixoGraphQLClient, Q as useBlocknoteContext, R as useBlocknoteHandlers, d as useCreateCollaborativeIxoEditor, u as useCreateIxoEditor } from '../graphql-client-B3dAtUfP.mjs';
3
3
  import React$1, { PropsWithChildren } from 'react';
4
4
  import * as zustand from 'zustand';
5
5
  import * as _blocknote_core from '@blocknote/core';
@@ -32,7 +32,7 @@ import {
32
32
  useListBlocksUIStore,
33
33
  usePanel,
34
34
  usePanelStore
35
- } from "../chunk-HJL3K6NS.mjs";
35
+ } from "../chunk-BPS3TRQX.mjs";
36
36
  export {
37
37
  ApiRequestBlockSpec,
38
38
  AuthorizationTab,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ixo/editor",
3
- "version": "2.19.0",
3
+ "version": "2.21.0",
4
4
  "description": "A custom BlockNote editor wrapper for IXO team",
5
5
  "main": "dist/index.mjs",
6
6
  "types": "dist/index.d.ts",