@ixo/editor 2.29.0 → 2.31.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.
@@ -39,6 +39,9 @@ declare const CheckboxBlockSpec: {
39
39
  readonly default: "";
40
40
  };
41
41
  };
42
+ readonly skill: {
43
+ readonly default: "";
44
+ };
42
45
  readonly content: "inline";
43
46
  };
44
47
  implementation: _blocknote_core.TiptapBlockImplementation<{
@@ -75,6 +78,9 @@ declare const CheckboxBlockSpec: {
75
78
  readonly default: "";
76
79
  };
77
80
  };
81
+ readonly skill: {
82
+ readonly default: "";
83
+ };
78
84
  readonly content: "inline";
79
85
  }, any, _blocknote_core.InlineContentSchema, _blocknote_core.StyleSchema>;
80
86
  };
@@ -107,6 +113,9 @@ declare const ListBlockSpec: {
107
113
  readonly default: "📋";
108
114
  };
109
115
  };
116
+ readonly skill: {
117
+ readonly default: "";
118
+ };
110
119
  readonly content: "none";
111
120
  };
112
121
  implementation: _blocknote_core.TiptapBlockImplementation<{
@@ -134,6 +143,9 @@ declare const ListBlockSpec: {
134
143
  readonly default: "📋";
135
144
  };
136
145
  };
146
+ readonly skill: {
147
+ readonly default: "";
148
+ };
137
149
  readonly content: "none";
138
150
  }, any, _blocknote_core.InlineContentSchema, _blocknote_core.StyleSchema>;
139
151
  };
@@ -1356,6 +1368,13 @@ interface NotificationResponse {
1356
1368
  status: 'accepted' | 'rejected';
1357
1369
  timestamp: string;
1358
1370
  }
1371
+ interface WorkspacePage {
1372
+ id: string;
1373
+ type: string;
1374
+ description: string;
1375
+ serviceEndpoint: string;
1376
+ mediaType: string;
1377
+ }
1359
1378
  interface BlocknoteHandlers {
1360
1379
  getVote: (proposalContractAddress: string, proposalId: string, userAddress: string) => Promise<VoteResponse>;
1361
1380
  getProposal: (proposalContractAddress: string, proposalId: string) => Promise<ProposalResponse>;
@@ -1860,7 +1879,6 @@ interface BlocknoteHandlers {
1860
1879
  * Send an email using a template
1861
1880
  */
1862
1881
  sendEmail?: (params: {
1863
- from: string;
1864
1882
  to: string;
1865
1883
  subject: string;
1866
1884
  template: string;
@@ -1944,10 +1962,11 @@ interface BlocknoteHandlers {
1944
1962
  transactionHash: string;
1945
1963
  }>;
1946
1964
  /**
1947
- * Navigate to another flow document
1948
- * @param docRoomId - Matrix room ID of the target flow document
1965
+ * Navigate to another flow document or workspace page
1966
+ * @param docRoomId - Matrix room ID of the target flow document or workspace page
1967
+ * @param isWorkspaceLink - Optional flag to indicate if this is a workspace link
1949
1968
  */
1950
- navigateToFlow?: (docRoomId: string) => void;
1969
+ navigateToFlow?: (docRoomId: string, isWorkspaceLink?: boolean) => void;
1951
1970
  /**
1952
1971
  * Get the status of a flow document
1953
1972
  * @param docRoomId - Matrix room ID of the flow document
@@ -1957,6 +1976,12 @@ interface BlocknoteHandlers {
1957
1976
  status: 'not_started' | 'in_progress' | 'completed';
1958
1977
  completedAt?: string;
1959
1978
  }>;
1979
+ /**
1980
+ * Get workspace pages from protocol deed entity.
1981
+ * The host app automatically determines the network context.
1982
+ * @returns Array of workspace pages with type "Page" and mediaType "application/matrix"
1983
+ */
1984
+ getWorkspacePages?: () => Promise<WorkspacePage[]>;
1960
1985
  /**
1961
1986
  * Create a new signer session for handle-based signing.
1962
1987
  *
@@ -2056,6 +2081,28 @@ interface BlocknoteHandlers {
2056
2081
  /** Reason if not released (e.g., already expired) */
2057
2082
  reason?: string;
2058
2083
  }>;
2084
+ /**
2085
+ * Fetch available skills (capsules) from the skills registry
2086
+ */
2087
+ getSkills?: () => Promise<{
2088
+ capsules: Array<{
2089
+ cid: string;
2090
+ name: string;
2091
+ description: string;
2092
+ license: string;
2093
+ compatibility: string;
2094
+ allowedTools: string;
2095
+ metadata: unknown;
2096
+ archiveSize: number;
2097
+ createdAt: string;
2098
+ }>;
2099
+ pagination: {
2100
+ total: number;
2101
+ limit: number;
2102
+ offset: number;
2103
+ hasMore: boolean;
2104
+ };
2105
+ }>;
2059
2106
  }
2060
2107
  type DocType = 'template' | 'page' | 'flow';
2061
2108
  /**
@@ -2213,12 +2260,20 @@ interface OverviewBlockProps {
2213
2260
  declare const OverviewBlock: {
2214
2261
  config: {
2215
2262
  readonly type: "overview";
2216
- readonly propSchema: {};
2263
+ readonly propSchema: {
2264
+ readonly skill: {
2265
+ readonly default: "";
2266
+ };
2267
+ };
2217
2268
  readonly content: "none";
2218
2269
  };
2219
2270
  implementation: _blocknote_core.TiptapBlockImplementation<{
2220
2271
  readonly type: "overview";
2221
- readonly propSchema: {};
2272
+ readonly propSchema: {
2273
+ readonly skill: {
2274
+ readonly default: "";
2275
+ };
2276
+ };
2222
2277
  readonly content: "none";
2223
2278
  }, any, _blocknote_core.InlineContentSchema, _blocknote_core.StyleSchema>;
2224
2279
  };
@@ -2280,6 +2335,9 @@ declare const ProposalBlockSpec: {
2280
2335
  readonly default: "";
2281
2336
  };
2282
2337
  };
2338
+ readonly skill: {
2339
+ readonly default: "";
2340
+ };
2283
2341
  readonly content: "none";
2284
2342
  };
2285
2343
  implementation: _blocknote_core.TiptapBlockImplementation<{
@@ -2338,6 +2396,9 @@ declare const ProposalBlockSpec: {
2338
2396
  readonly default: "";
2339
2397
  };
2340
2398
  };
2399
+ readonly skill: {
2400
+ readonly default: "";
2401
+ };
2341
2402
  readonly content: "none";
2342
2403
  }, any, _blocknote_core.InlineContentSchema, _blocknote_core.StyleSchema>;
2343
2404
  };
@@ -2394,6 +2455,9 @@ declare const ApiRequestBlockSpec: {
2394
2455
  readonly default: string;
2395
2456
  };
2396
2457
  };
2458
+ readonly skill: {
2459
+ readonly default: "";
2460
+ };
2397
2461
  readonly content: "inline";
2398
2462
  };
2399
2463
  implementation: _blocknote_core.TiptapBlockImplementation<{
@@ -2445,6 +2509,9 @@ declare const ApiRequestBlockSpec: {
2445
2509
  readonly default: string;
2446
2510
  };
2447
2511
  };
2512
+ readonly skill: {
2513
+ readonly default: "";
2514
+ };
2448
2515
  readonly content: "inline";
2449
2516
  }, any, _blocknote_core.InlineContentSchema, _blocknote_core.StyleSchema>;
2450
2517
  };
@@ -2492,6 +2559,9 @@ declare const blockSpecs: {
2492
2559
  readonly default: "";
2493
2560
  };
2494
2561
  };
2562
+ readonly skill: {
2563
+ readonly default: "";
2564
+ };
2495
2565
  readonly content: "inline";
2496
2566
  };
2497
2567
  implementation: _blocknote_core.TiptapBlockImplementation<{
@@ -2528,6 +2598,9 @@ declare const blockSpecs: {
2528
2598
  readonly default: "";
2529
2599
  };
2530
2600
  };
2601
+ readonly skill: {
2602
+ readonly default: "";
2603
+ };
2531
2604
  readonly content: "inline";
2532
2605
  }, any, _blocknote_core.InlineContentSchema, _blocknote_core.StyleSchema>;
2533
2606
  };
@@ -2557,6 +2630,9 @@ declare const blockSpecs: {
2557
2630
  readonly default: "📋";
2558
2631
  };
2559
2632
  };
2633
+ readonly skill: {
2634
+ readonly default: "";
2635
+ };
2560
2636
  readonly content: "none";
2561
2637
  };
2562
2638
  implementation: _blocknote_core.TiptapBlockImplementation<{
@@ -2584,6 +2660,9 @@ declare const blockSpecs: {
2584
2660
  readonly default: "📋";
2585
2661
  };
2586
2662
  };
2663
+ readonly skill: {
2664
+ readonly default: "";
2665
+ };
2587
2666
  readonly content: "none";
2588
2667
  }, any, _blocknote_core.InlineContentSchema, _blocknote_core.StyleSchema>;
2589
2668
  };
@@ -2601,6 +2680,9 @@ declare const blockSpecs: {
2601
2680
  readonly default: "[]";
2602
2681
  };
2603
2682
  };
2683
+ readonly skill: {
2684
+ readonly default: "";
2685
+ };
2604
2686
  readonly content: "none";
2605
2687
  };
2606
2688
  implementation: _blocknote_core.TiptapBlockImplementation<{
@@ -2616,18 +2698,29 @@ declare const blockSpecs: {
2616
2698
  readonly default: "[]";
2617
2699
  };
2618
2700
  };
2701
+ readonly skill: {
2702
+ readonly default: "";
2703
+ };
2619
2704
  readonly content: "none";
2620
2705
  }, any, _blocknote_core.InlineContentSchema, _blocknote_core.StyleSchema>;
2621
2706
  };
2622
2707
  overview: {
2623
2708
  config: {
2624
2709
  readonly type: "overview";
2625
- readonly propSchema: {};
2710
+ readonly propSchema: {
2711
+ readonly skill: {
2712
+ readonly default: "";
2713
+ };
2714
+ };
2626
2715
  readonly content: "none";
2627
2716
  };
2628
2717
  implementation: _blocknote_core.TiptapBlockImplementation<{
2629
2718
  readonly type: "overview";
2630
- readonly propSchema: {};
2719
+ readonly propSchema: {
2720
+ readonly skill: {
2721
+ readonly default: "";
2722
+ };
2723
+ };
2631
2724
  readonly content: "none";
2632
2725
  }, any, _blocknote_core.InlineContentSchema, _blocknote_core.StyleSchema>;
2633
2726
  };
@@ -2688,6 +2781,9 @@ declare const blockSpecs: {
2688
2781
  readonly default: "";
2689
2782
  };
2690
2783
  };
2784
+ readonly skill: {
2785
+ readonly default: "";
2786
+ };
2691
2787
  readonly content: "none";
2692
2788
  };
2693
2789
  implementation: _blocknote_core.TiptapBlockImplementation<{
@@ -2746,6 +2842,9 @@ declare const blockSpecs: {
2746
2842
  readonly default: "";
2747
2843
  };
2748
2844
  };
2845
+ readonly skill: {
2846
+ readonly default: "";
2847
+ };
2749
2848
  readonly content: "none";
2750
2849
  }, any, _blocknote_core.InlineContentSchema, _blocknote_core.StyleSchema>;
2751
2850
  };
@@ -2799,6 +2898,9 @@ declare const blockSpecs: {
2799
2898
  readonly default: string;
2800
2899
  };
2801
2900
  };
2901
+ readonly skill: {
2902
+ readonly default: "";
2903
+ };
2802
2904
  readonly content: "inline";
2803
2905
  };
2804
2906
  implementation: _blocknote_core.TiptapBlockImplementation<{
@@ -2850,6 +2952,9 @@ declare const blockSpecs: {
2850
2952
  readonly default: string;
2851
2953
  };
2852
2954
  };
2955
+ readonly skill: {
2956
+ readonly default: "";
2957
+ };
2853
2958
  readonly content: "inline";
2854
2959
  }, any, _blocknote_core.InlineContentSchema, _blocknote_core.StyleSchema>;
2855
2960
  };
@@ -2915,6 +3020,9 @@ declare const blockSpecs: {
2915
3020
  readonly default: "";
2916
3021
  };
2917
3022
  };
3023
+ readonly skill: {
3024
+ readonly default: "";
3025
+ };
2918
3026
  readonly content: "inline";
2919
3027
  };
2920
3028
  implementation: _blocknote_core.TiptapBlockImplementation<{
@@ -2978,6 +3086,9 @@ declare const blockSpecs: {
2978
3086
  readonly default: "";
2979
3087
  };
2980
3088
  };
3089
+ readonly skill: {
3090
+ readonly default: "";
3091
+ };
2981
3092
  readonly content: "inline";
2982
3093
  }, any, _blocknote_core.InlineContentSchema, _blocknote_core.StyleSchema>;
2983
3094
  };
@@ -3037,6 +3148,9 @@ declare const blockSpecs: {
3037
3148
  readonly default: string;
3038
3149
  };
3039
3150
  };
3151
+ readonly skill: {
3152
+ readonly default: "";
3153
+ };
3040
3154
  readonly content: "none";
3041
3155
  };
3042
3156
  implementation: _blocknote_core.TiptapBlockImplementation<{
@@ -3094,6 +3208,9 @@ declare const blockSpecs: {
3094
3208
  readonly default: string;
3095
3209
  };
3096
3210
  };
3211
+ readonly skill: {
3212
+ readonly default: "";
3213
+ };
3097
3214
  readonly content: "none";
3098
3215
  }, any, _blocknote_core.InlineContentSchema, _blocknote_core.StyleSchema>;
3099
3216
  };
@@ -3150,6 +3267,9 @@ declare const blockSpecs: {
3150
3267
  readonly default: string;
3151
3268
  };
3152
3269
  };
3270
+ readonly skill: {
3271
+ readonly default: "";
3272
+ };
3153
3273
  readonly content: "none";
3154
3274
  };
3155
3275
  implementation: _blocknote_core.TiptapBlockImplementation<{
@@ -3204,6 +3324,9 @@ declare const blockSpecs: {
3204
3324
  readonly default: string;
3205
3325
  };
3206
3326
  };
3327
+ readonly skill: {
3328
+ readonly default: "";
3329
+ };
3207
3330
  readonly content: "none";
3208
3331
  }, any, _blocknote_core.InlineContentSchema, _blocknote_core.StyleSchema>;
3209
3332
  };
@@ -3242,6 +3365,9 @@ declare const blockSpecs: {
3242
3365
  readonly default: string;
3243
3366
  };
3244
3367
  };
3368
+ readonly skill: {
3369
+ readonly default: "";
3370
+ };
3245
3371
  readonly content: "none";
3246
3372
  };
3247
3373
  implementation: _blocknote_core.TiptapBlockImplementation<{
@@ -3278,6 +3404,9 @@ declare const blockSpecs: {
3278
3404
  readonly default: string;
3279
3405
  };
3280
3406
  };
3407
+ readonly skill: {
3408
+ readonly default: "";
3409
+ };
3281
3410
  readonly content: "none";
3282
3411
  }, any, _blocknote_core.InlineContentSchema, _blocknote_core.StyleSchema>;
3283
3412
  };
@@ -3310,6 +3439,9 @@ declare const blockSpecs: {
3310
3439
  readonly default: "";
3311
3440
  };
3312
3441
  };
3442
+ readonly skill: {
3443
+ readonly default: "";
3444
+ };
3313
3445
  readonly content: "none";
3314
3446
  };
3315
3447
  implementation: _blocknote_core.TiptapBlockImplementation<{
@@ -3340,6 +3472,9 @@ declare const blockSpecs: {
3340
3472
  readonly default: "";
3341
3473
  };
3342
3474
  };
3475
+ readonly skill: {
3476
+ readonly default: "";
3477
+ };
3343
3478
  readonly content: "none";
3344
3479
  }, any, _blocknote_core.InlineContentSchema, _blocknote_core.StyleSchema>;
3345
3480
  };
@@ -3353,9 +3488,6 @@ declare const blockSpecs: {
3353
3488
  readonly templateVersion: {
3354
3489
  readonly default: "";
3355
3490
  };
3356
- readonly from: {
3357
- readonly default: "";
3358
- };
3359
3491
  readonly to: {
3360
3492
  readonly default: "";
3361
3493
  };
@@ -3405,6 +3537,9 @@ declare const blockSpecs: {
3405
3537
  readonly default: "";
3406
3538
  };
3407
3539
  };
3540
+ readonly skill: {
3541
+ readonly default: "";
3542
+ };
3408
3543
  readonly content: "none";
3409
3544
  };
3410
3545
  implementation: _blocknote_core.TiptapBlockImplementation<{
@@ -3416,9 +3551,6 @@ declare const blockSpecs: {
3416
3551
  readonly templateVersion: {
3417
3552
  readonly default: "";
3418
3553
  };
3419
- readonly from: {
3420
- readonly default: "";
3421
- };
3422
3554
  readonly to: {
3423
3555
  readonly default: "";
3424
3556
  };
@@ -3468,6 +3600,9 @@ declare const blockSpecs: {
3468
3600
  readonly default: "";
3469
3601
  };
3470
3602
  };
3603
+ readonly skill: {
3604
+ readonly default: "";
3605
+ };
3471
3606
  readonly content: "none";
3472
3607
  }, any, _blocknote_core.InlineContentSchema, _blocknote_core.StyleSchema>;
3473
3608
  };
@@ -3488,6 +3623,9 @@ declare const blockSpecs: {
3488
3623
  readonly default: "{}";
3489
3624
  };
3490
3625
  };
3626
+ readonly skill: {
3627
+ readonly default: "";
3628
+ };
3491
3629
  readonly content: "none";
3492
3630
  };
3493
3631
  implementation: _blocknote_core.TiptapBlockImplementation<{
@@ -3506,6 +3644,9 @@ declare const blockSpecs: {
3506
3644
  readonly default: "{}";
3507
3645
  };
3508
3646
  };
3647
+ readonly skill: {
3648
+ readonly default: "";
3649
+ };
3509
3650
  readonly content: "none";
3510
3651
  }, any, _blocknote_core.InlineContentSchema, _blocknote_core.StyleSchema>;
3511
3652
  };
@@ -3538,6 +3679,9 @@ declare const blockSpecs: {
3538
3679
  readonly default: "[]";
3539
3680
  };
3540
3681
  };
3682
+ readonly skill: {
3683
+ readonly default: "";
3684
+ };
3541
3685
  readonly content: "none";
3542
3686
  };
3543
3687
  implementation: _blocknote_core.TiptapBlockImplementation<{
@@ -3568,6 +3712,9 @@ declare const blockSpecs: {
3568
3712
  readonly default: "[]";
3569
3713
  };
3570
3714
  };
3715
+ readonly skill: {
3716
+ readonly default: "";
3717
+ };
3571
3718
  readonly content: "none";
3572
3719
  }, any, _blocknote_core.InlineContentSchema, _blocknote_core.StyleSchema>;
3573
3720
  };
@@ -3603,6 +3750,9 @@ declare const blockSpecs: {
3603
3750
  readonly default: "";
3604
3751
  };
3605
3752
  };
3753
+ readonly skill: {
3754
+ readonly default: "";
3755
+ };
3606
3756
  readonly content: "none";
3607
3757
  };
3608
3758
  implementation: _blocknote_core.TiptapBlockImplementation<{
@@ -3636,6 +3786,9 @@ declare const blockSpecs: {
3636
3786
  readonly default: "";
3637
3787
  };
3638
3788
  };
3789
+ readonly skill: {
3790
+ readonly default: "";
3791
+ };
3639
3792
  readonly content: "none";
3640
3793
  }, any, _blocknote_core.InlineContentSchema, _blocknote_core.StyleSchema>;
3641
3794
  };
@@ -3665,6 +3818,9 @@ declare const blockSpecs: {
3665
3818
  readonly default: "";
3666
3819
  };
3667
3820
  };
3821
+ readonly skill: {
3822
+ readonly default: "";
3823
+ };
3668
3824
  readonly content: "none";
3669
3825
  };
3670
3826
  implementation: _blocknote_core.TiptapBlockImplementation<{
@@ -3692,6 +3848,9 @@ declare const blockSpecs: {
3692
3848
  readonly default: "";
3693
3849
  };
3694
3850
  };
3851
+ readonly skill: {
3852
+ readonly default: "";
3853
+ };
3695
3854
  readonly content: "none";
3696
3855
  }, any, _blocknote_core.InlineContentSchema, _blocknote_core.StyleSchema>;
3697
3856
  };
@@ -3742,6 +3901,9 @@ declare const blockSpecs: {
3742
3901
  readonly default: string;
3743
3902
  };
3744
3903
  };
3904
+ readonly skill: {
3905
+ readonly default: "";
3906
+ };
3745
3907
  readonly content: "none";
3746
3908
  };
3747
3909
  implementation: _blocknote_core.TiptapBlockImplementation<{
@@ -3790,6 +3952,9 @@ declare const blockSpecs: {
3790
3952
  readonly default: string;
3791
3953
  };
3792
3954
  };
3955
+ readonly skill: {
3956
+ readonly default: "";
3957
+ };
3793
3958
  readonly content: "none";
3794
3959
  }, any, _blocknote_core.InlineContentSchema, _blocknote_core.StyleSchema>;
3795
3960
  };
@@ -3822,6 +3987,9 @@ declare const blockSpecs: {
3822
3987
  readonly default: "";
3823
3988
  };
3824
3989
  };
3990
+ readonly skill: {
3991
+ readonly default: "";
3992
+ };
3825
3993
  readonly content: "none";
3826
3994
  };
3827
3995
  implementation: _blocknote_core.TiptapBlockImplementation<{
@@ -3852,6 +4020,9 @@ declare const blockSpecs: {
3852
4020
  readonly default: "";
3853
4021
  };
3854
4022
  };
4023
+ readonly skill: {
4024
+ readonly default: "";
4025
+ };
3855
4026
  readonly content: "none";
3856
4027
  }, any, _blocknote_core.InlineContentSchema, _blocknote_core.StyleSchema>;
3857
4028
  };
@@ -3893,6 +4064,9 @@ declare const blockSpecs: {
3893
4064
  readonly default: "";
3894
4065
  };
3895
4066
  };
4067
+ readonly skill: {
4068
+ readonly default: "";
4069
+ };
3896
4070
  readonly content: "none";
3897
4071
  };
3898
4072
  implementation: _blocknote_core.TiptapBlockImplementation<{
@@ -3932,6 +4106,9 @@ declare const blockSpecs: {
3932
4106
  readonly default: "";
3933
4107
  };
3934
4108
  };
4109
+ readonly skill: {
4110
+ readonly default: "";
4111
+ };
3935
4112
  readonly content: "none";
3936
4113
  }, any, _blocknote_core.InlineContentSchema, _blocknote_core.StyleSchema>;
3937
4114
  };
@@ -3955,6 +4132,9 @@ declare const blockSpecs: {
3955
4132
  readonly default: "";
3956
4133
  };
3957
4134
  };
4135
+ readonly skill: {
4136
+ readonly default: "";
4137
+ };
3958
4138
  readonly content: "none";
3959
4139
  };
3960
4140
  implementation: _blocknote_core.TiptapBlockImplementation<{
@@ -3976,6 +4156,9 @@ declare const blockSpecs: {
3976
4156
  readonly default: "";
3977
4157
  };
3978
4158
  };
4159
+ readonly skill: {
4160
+ readonly default: "";
4161
+ };
3979
4162
  readonly content: "none";
3980
4163
  }, any, _blocknote_core.InlineContentSchema, _blocknote_core.StyleSchema>;
3981
4164
  };
@@ -4659,6 +4842,7 @@ interface PageHeaderProps {
4659
4842
  title?: string;
4660
4843
  icon?: React.ReactNode;
4661
4844
  isPrivate?: boolean;
4845
+ onPrivacyChange?: (isPrivate: boolean) => void;
4662
4846
  lastEdited?: string;
4663
4847
  onShare?: () => void;
4664
4848
  onFavorite?: () => void;
@@ -4668,7 +4852,7 @@ interface PageHeaderProps {
4668
4852
  /**
4669
4853
  * PageHeader component - A Notion-style page header with title, privacy badge, and actions
4670
4854
  */
4671
- declare function PageHeader({ title, icon, isPrivate, lastEdited, onShare, onFavorite, isFavorited, menuItems, }: PageHeaderProps): React.ReactElement;
4855
+ declare function PageHeader({ title, icon, isPrivate, onPrivacyChange, lastEdited, onShare, onFavorite, isFavorited, menuItems, }: PageHeaderProps): React.ReactElement;
4672
4856
 
4673
4857
  /** Position info passed to drop callback */
4674
4858
  interface DropPosition {
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-Cww8ZOPN.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-Cww8ZOPN.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-BAcWjbQU.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-BAcWjbQU.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-BHBXPXWA.mjs";
37
+ } from "./chunk-UTWDR5D3.mjs";
38
38
  export {
39
39
  ApiRequestBlockSpec,
40
40
  AuthorizationTab,
@@ -1,5 +1,5 @@
1
- import { ak as IxoBlockProps, W as BlocknoteHandlers } from '../graphql-client-Cww8ZOPN.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, 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-Cww8ZOPN.mjs';
1
+ import { ak as IxoBlockProps, W as BlocknoteHandlers } from '../graphql-client-BAcWjbQU.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, 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-BAcWjbQU.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';
@@ -36,6 +36,9 @@ declare const DynamicListBlockSpec: {
36
36
  readonly default: "[]";
37
37
  };
38
38
  };
39
+ readonly skill: {
40
+ readonly default: "";
41
+ };
39
42
  readonly content: "none";
40
43
  };
41
44
  implementation: _blocknote_core.TiptapBlockImplementation<{
@@ -66,6 +69,9 @@ declare const DynamicListBlockSpec: {
66
69
  readonly default: "[]";
67
70
  };
68
71
  };
72
+ readonly skill: {
73
+ readonly default: "";
74
+ };
69
75
  readonly content: "none";
70
76
  }, any, _blocknote_core.InlineContentSchema, _blocknote_core.StyleSchema>;
71
77
  };
@@ -41,7 +41,7 @@ import {
41
41
  useListBlocksUIStore,
42
42
  usePanel,
43
43
  usePanelStore
44
- } from "../chunk-BHBXPXWA.mjs";
44
+ } from "../chunk-UTWDR5D3.mjs";
45
45
  export {
46
46
  ApiRequestBlockSpec,
47
47
  AuthorizationTab,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ixo/editor",
3
- "version": "2.29.0",
3
+ "version": "2.31.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",