@ixo/editor 2.30.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.
- package/dist/{chunk-5CXU2GBG.mjs → chunk-UTWDR5D3.mjs} +2410 -2240
- package/dist/chunk-UTWDR5D3.mjs.map +1 -0
- package/dist/{graphql-client-B4MaQJb7.d.ts → graphql-client-BAcWjbQU.d.ts} +182 -12
- package/dist/index.d.ts +2 -2
- package/dist/index.mjs +1 -1
- package/dist/mantine/index.d.ts +8 -2
- package/dist/mantine/index.mjs +1 -1
- package/package.json +1 -1
- package/dist/chunk-5CXU2GBG.mjs.map +0 -1
|
@@ -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
|
};
|
|
@@ -1867,7 +1879,6 @@ interface BlocknoteHandlers {
|
|
|
1867
1879
|
* Send an email using a template
|
|
1868
1880
|
*/
|
|
1869
1881
|
sendEmail?: (params: {
|
|
1870
|
-
from: string;
|
|
1871
1882
|
to: string;
|
|
1872
1883
|
subject: string;
|
|
1873
1884
|
template: string;
|
|
@@ -2070,6 +2081,28 @@ interface BlocknoteHandlers {
|
|
|
2070
2081
|
/** Reason if not released (e.g., already expired) */
|
|
2071
2082
|
reason?: string;
|
|
2072
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
|
+
}>;
|
|
2073
2106
|
}
|
|
2074
2107
|
type DocType = 'template' | 'page' | 'flow';
|
|
2075
2108
|
/**
|
|
@@ -2227,12 +2260,20 @@ interface OverviewBlockProps {
|
|
|
2227
2260
|
declare const OverviewBlock: {
|
|
2228
2261
|
config: {
|
|
2229
2262
|
readonly type: "overview";
|
|
2230
|
-
readonly propSchema: {
|
|
2263
|
+
readonly propSchema: {
|
|
2264
|
+
readonly skill: {
|
|
2265
|
+
readonly default: "";
|
|
2266
|
+
};
|
|
2267
|
+
};
|
|
2231
2268
|
readonly content: "none";
|
|
2232
2269
|
};
|
|
2233
2270
|
implementation: _blocknote_core.TiptapBlockImplementation<{
|
|
2234
2271
|
readonly type: "overview";
|
|
2235
|
-
readonly propSchema: {
|
|
2272
|
+
readonly propSchema: {
|
|
2273
|
+
readonly skill: {
|
|
2274
|
+
readonly default: "";
|
|
2275
|
+
};
|
|
2276
|
+
};
|
|
2236
2277
|
readonly content: "none";
|
|
2237
2278
|
}, any, _blocknote_core.InlineContentSchema, _blocknote_core.StyleSchema>;
|
|
2238
2279
|
};
|
|
@@ -2294,6 +2335,9 @@ declare const ProposalBlockSpec: {
|
|
|
2294
2335
|
readonly default: "";
|
|
2295
2336
|
};
|
|
2296
2337
|
};
|
|
2338
|
+
readonly skill: {
|
|
2339
|
+
readonly default: "";
|
|
2340
|
+
};
|
|
2297
2341
|
readonly content: "none";
|
|
2298
2342
|
};
|
|
2299
2343
|
implementation: _blocknote_core.TiptapBlockImplementation<{
|
|
@@ -2352,6 +2396,9 @@ declare const ProposalBlockSpec: {
|
|
|
2352
2396
|
readonly default: "";
|
|
2353
2397
|
};
|
|
2354
2398
|
};
|
|
2399
|
+
readonly skill: {
|
|
2400
|
+
readonly default: "";
|
|
2401
|
+
};
|
|
2355
2402
|
readonly content: "none";
|
|
2356
2403
|
}, any, _blocknote_core.InlineContentSchema, _blocknote_core.StyleSchema>;
|
|
2357
2404
|
};
|
|
@@ -2408,6 +2455,9 @@ declare const ApiRequestBlockSpec: {
|
|
|
2408
2455
|
readonly default: string;
|
|
2409
2456
|
};
|
|
2410
2457
|
};
|
|
2458
|
+
readonly skill: {
|
|
2459
|
+
readonly default: "";
|
|
2460
|
+
};
|
|
2411
2461
|
readonly content: "inline";
|
|
2412
2462
|
};
|
|
2413
2463
|
implementation: _blocknote_core.TiptapBlockImplementation<{
|
|
@@ -2459,6 +2509,9 @@ declare const ApiRequestBlockSpec: {
|
|
|
2459
2509
|
readonly default: string;
|
|
2460
2510
|
};
|
|
2461
2511
|
};
|
|
2512
|
+
readonly skill: {
|
|
2513
|
+
readonly default: "";
|
|
2514
|
+
};
|
|
2462
2515
|
readonly content: "inline";
|
|
2463
2516
|
}, any, _blocknote_core.InlineContentSchema, _blocknote_core.StyleSchema>;
|
|
2464
2517
|
};
|
|
@@ -2506,6 +2559,9 @@ declare const blockSpecs: {
|
|
|
2506
2559
|
readonly default: "";
|
|
2507
2560
|
};
|
|
2508
2561
|
};
|
|
2562
|
+
readonly skill: {
|
|
2563
|
+
readonly default: "";
|
|
2564
|
+
};
|
|
2509
2565
|
readonly content: "inline";
|
|
2510
2566
|
};
|
|
2511
2567
|
implementation: _blocknote_core.TiptapBlockImplementation<{
|
|
@@ -2542,6 +2598,9 @@ declare const blockSpecs: {
|
|
|
2542
2598
|
readonly default: "";
|
|
2543
2599
|
};
|
|
2544
2600
|
};
|
|
2601
|
+
readonly skill: {
|
|
2602
|
+
readonly default: "";
|
|
2603
|
+
};
|
|
2545
2604
|
readonly content: "inline";
|
|
2546
2605
|
}, any, _blocknote_core.InlineContentSchema, _blocknote_core.StyleSchema>;
|
|
2547
2606
|
};
|
|
@@ -2571,6 +2630,9 @@ declare const blockSpecs: {
|
|
|
2571
2630
|
readonly default: "📋";
|
|
2572
2631
|
};
|
|
2573
2632
|
};
|
|
2633
|
+
readonly skill: {
|
|
2634
|
+
readonly default: "";
|
|
2635
|
+
};
|
|
2574
2636
|
readonly content: "none";
|
|
2575
2637
|
};
|
|
2576
2638
|
implementation: _blocknote_core.TiptapBlockImplementation<{
|
|
@@ -2598,6 +2660,9 @@ declare const blockSpecs: {
|
|
|
2598
2660
|
readonly default: "📋";
|
|
2599
2661
|
};
|
|
2600
2662
|
};
|
|
2663
|
+
readonly skill: {
|
|
2664
|
+
readonly default: "";
|
|
2665
|
+
};
|
|
2601
2666
|
readonly content: "none";
|
|
2602
2667
|
}, any, _blocknote_core.InlineContentSchema, _blocknote_core.StyleSchema>;
|
|
2603
2668
|
};
|
|
@@ -2615,6 +2680,9 @@ declare const blockSpecs: {
|
|
|
2615
2680
|
readonly default: "[]";
|
|
2616
2681
|
};
|
|
2617
2682
|
};
|
|
2683
|
+
readonly skill: {
|
|
2684
|
+
readonly default: "";
|
|
2685
|
+
};
|
|
2618
2686
|
readonly content: "none";
|
|
2619
2687
|
};
|
|
2620
2688
|
implementation: _blocknote_core.TiptapBlockImplementation<{
|
|
@@ -2630,18 +2698,29 @@ declare const blockSpecs: {
|
|
|
2630
2698
|
readonly default: "[]";
|
|
2631
2699
|
};
|
|
2632
2700
|
};
|
|
2701
|
+
readonly skill: {
|
|
2702
|
+
readonly default: "";
|
|
2703
|
+
};
|
|
2633
2704
|
readonly content: "none";
|
|
2634
2705
|
}, any, _blocknote_core.InlineContentSchema, _blocknote_core.StyleSchema>;
|
|
2635
2706
|
};
|
|
2636
2707
|
overview: {
|
|
2637
2708
|
config: {
|
|
2638
2709
|
readonly type: "overview";
|
|
2639
|
-
readonly propSchema: {
|
|
2710
|
+
readonly propSchema: {
|
|
2711
|
+
readonly skill: {
|
|
2712
|
+
readonly default: "";
|
|
2713
|
+
};
|
|
2714
|
+
};
|
|
2640
2715
|
readonly content: "none";
|
|
2641
2716
|
};
|
|
2642
2717
|
implementation: _blocknote_core.TiptapBlockImplementation<{
|
|
2643
2718
|
readonly type: "overview";
|
|
2644
|
-
readonly propSchema: {
|
|
2719
|
+
readonly propSchema: {
|
|
2720
|
+
readonly skill: {
|
|
2721
|
+
readonly default: "";
|
|
2722
|
+
};
|
|
2723
|
+
};
|
|
2645
2724
|
readonly content: "none";
|
|
2646
2725
|
}, any, _blocknote_core.InlineContentSchema, _blocknote_core.StyleSchema>;
|
|
2647
2726
|
};
|
|
@@ -2702,6 +2781,9 @@ declare const blockSpecs: {
|
|
|
2702
2781
|
readonly default: "";
|
|
2703
2782
|
};
|
|
2704
2783
|
};
|
|
2784
|
+
readonly skill: {
|
|
2785
|
+
readonly default: "";
|
|
2786
|
+
};
|
|
2705
2787
|
readonly content: "none";
|
|
2706
2788
|
};
|
|
2707
2789
|
implementation: _blocknote_core.TiptapBlockImplementation<{
|
|
@@ -2760,6 +2842,9 @@ declare const blockSpecs: {
|
|
|
2760
2842
|
readonly default: "";
|
|
2761
2843
|
};
|
|
2762
2844
|
};
|
|
2845
|
+
readonly skill: {
|
|
2846
|
+
readonly default: "";
|
|
2847
|
+
};
|
|
2763
2848
|
readonly content: "none";
|
|
2764
2849
|
}, any, _blocknote_core.InlineContentSchema, _blocknote_core.StyleSchema>;
|
|
2765
2850
|
};
|
|
@@ -2813,6 +2898,9 @@ declare const blockSpecs: {
|
|
|
2813
2898
|
readonly default: string;
|
|
2814
2899
|
};
|
|
2815
2900
|
};
|
|
2901
|
+
readonly skill: {
|
|
2902
|
+
readonly default: "";
|
|
2903
|
+
};
|
|
2816
2904
|
readonly content: "inline";
|
|
2817
2905
|
};
|
|
2818
2906
|
implementation: _blocknote_core.TiptapBlockImplementation<{
|
|
@@ -2864,6 +2952,9 @@ declare const blockSpecs: {
|
|
|
2864
2952
|
readonly default: string;
|
|
2865
2953
|
};
|
|
2866
2954
|
};
|
|
2955
|
+
readonly skill: {
|
|
2956
|
+
readonly default: "";
|
|
2957
|
+
};
|
|
2867
2958
|
readonly content: "inline";
|
|
2868
2959
|
}, any, _blocknote_core.InlineContentSchema, _blocknote_core.StyleSchema>;
|
|
2869
2960
|
};
|
|
@@ -2929,6 +3020,9 @@ declare const blockSpecs: {
|
|
|
2929
3020
|
readonly default: "";
|
|
2930
3021
|
};
|
|
2931
3022
|
};
|
|
3023
|
+
readonly skill: {
|
|
3024
|
+
readonly default: "";
|
|
3025
|
+
};
|
|
2932
3026
|
readonly content: "inline";
|
|
2933
3027
|
};
|
|
2934
3028
|
implementation: _blocknote_core.TiptapBlockImplementation<{
|
|
@@ -2992,6 +3086,9 @@ declare const blockSpecs: {
|
|
|
2992
3086
|
readonly default: "";
|
|
2993
3087
|
};
|
|
2994
3088
|
};
|
|
3089
|
+
readonly skill: {
|
|
3090
|
+
readonly default: "";
|
|
3091
|
+
};
|
|
2995
3092
|
readonly content: "inline";
|
|
2996
3093
|
}, any, _blocknote_core.InlineContentSchema, _blocknote_core.StyleSchema>;
|
|
2997
3094
|
};
|
|
@@ -3051,6 +3148,9 @@ declare const blockSpecs: {
|
|
|
3051
3148
|
readonly default: string;
|
|
3052
3149
|
};
|
|
3053
3150
|
};
|
|
3151
|
+
readonly skill: {
|
|
3152
|
+
readonly default: "";
|
|
3153
|
+
};
|
|
3054
3154
|
readonly content: "none";
|
|
3055
3155
|
};
|
|
3056
3156
|
implementation: _blocknote_core.TiptapBlockImplementation<{
|
|
@@ -3108,6 +3208,9 @@ declare const blockSpecs: {
|
|
|
3108
3208
|
readonly default: string;
|
|
3109
3209
|
};
|
|
3110
3210
|
};
|
|
3211
|
+
readonly skill: {
|
|
3212
|
+
readonly default: "";
|
|
3213
|
+
};
|
|
3111
3214
|
readonly content: "none";
|
|
3112
3215
|
}, any, _blocknote_core.InlineContentSchema, _blocknote_core.StyleSchema>;
|
|
3113
3216
|
};
|
|
@@ -3164,6 +3267,9 @@ declare const blockSpecs: {
|
|
|
3164
3267
|
readonly default: string;
|
|
3165
3268
|
};
|
|
3166
3269
|
};
|
|
3270
|
+
readonly skill: {
|
|
3271
|
+
readonly default: "";
|
|
3272
|
+
};
|
|
3167
3273
|
readonly content: "none";
|
|
3168
3274
|
};
|
|
3169
3275
|
implementation: _blocknote_core.TiptapBlockImplementation<{
|
|
@@ -3218,6 +3324,9 @@ declare const blockSpecs: {
|
|
|
3218
3324
|
readonly default: string;
|
|
3219
3325
|
};
|
|
3220
3326
|
};
|
|
3327
|
+
readonly skill: {
|
|
3328
|
+
readonly default: "";
|
|
3329
|
+
};
|
|
3221
3330
|
readonly content: "none";
|
|
3222
3331
|
}, any, _blocknote_core.InlineContentSchema, _blocknote_core.StyleSchema>;
|
|
3223
3332
|
};
|
|
@@ -3256,6 +3365,9 @@ declare const blockSpecs: {
|
|
|
3256
3365
|
readonly default: string;
|
|
3257
3366
|
};
|
|
3258
3367
|
};
|
|
3368
|
+
readonly skill: {
|
|
3369
|
+
readonly default: "";
|
|
3370
|
+
};
|
|
3259
3371
|
readonly content: "none";
|
|
3260
3372
|
};
|
|
3261
3373
|
implementation: _blocknote_core.TiptapBlockImplementation<{
|
|
@@ -3292,6 +3404,9 @@ declare const blockSpecs: {
|
|
|
3292
3404
|
readonly default: string;
|
|
3293
3405
|
};
|
|
3294
3406
|
};
|
|
3407
|
+
readonly skill: {
|
|
3408
|
+
readonly default: "";
|
|
3409
|
+
};
|
|
3295
3410
|
readonly content: "none";
|
|
3296
3411
|
}, any, _blocknote_core.InlineContentSchema, _blocknote_core.StyleSchema>;
|
|
3297
3412
|
};
|
|
@@ -3324,6 +3439,9 @@ declare const blockSpecs: {
|
|
|
3324
3439
|
readonly default: "";
|
|
3325
3440
|
};
|
|
3326
3441
|
};
|
|
3442
|
+
readonly skill: {
|
|
3443
|
+
readonly default: "";
|
|
3444
|
+
};
|
|
3327
3445
|
readonly content: "none";
|
|
3328
3446
|
};
|
|
3329
3447
|
implementation: _blocknote_core.TiptapBlockImplementation<{
|
|
@@ -3354,6 +3472,9 @@ declare const blockSpecs: {
|
|
|
3354
3472
|
readonly default: "";
|
|
3355
3473
|
};
|
|
3356
3474
|
};
|
|
3475
|
+
readonly skill: {
|
|
3476
|
+
readonly default: "";
|
|
3477
|
+
};
|
|
3357
3478
|
readonly content: "none";
|
|
3358
3479
|
}, any, _blocknote_core.InlineContentSchema, _blocknote_core.StyleSchema>;
|
|
3359
3480
|
};
|
|
@@ -3367,9 +3488,6 @@ declare const blockSpecs: {
|
|
|
3367
3488
|
readonly templateVersion: {
|
|
3368
3489
|
readonly default: "";
|
|
3369
3490
|
};
|
|
3370
|
-
readonly from: {
|
|
3371
|
-
readonly default: "";
|
|
3372
|
-
};
|
|
3373
3491
|
readonly to: {
|
|
3374
3492
|
readonly default: "";
|
|
3375
3493
|
};
|
|
@@ -3419,6 +3537,9 @@ declare const blockSpecs: {
|
|
|
3419
3537
|
readonly default: "";
|
|
3420
3538
|
};
|
|
3421
3539
|
};
|
|
3540
|
+
readonly skill: {
|
|
3541
|
+
readonly default: "";
|
|
3542
|
+
};
|
|
3422
3543
|
readonly content: "none";
|
|
3423
3544
|
};
|
|
3424
3545
|
implementation: _blocknote_core.TiptapBlockImplementation<{
|
|
@@ -3430,9 +3551,6 @@ declare const blockSpecs: {
|
|
|
3430
3551
|
readonly templateVersion: {
|
|
3431
3552
|
readonly default: "";
|
|
3432
3553
|
};
|
|
3433
|
-
readonly from: {
|
|
3434
|
-
readonly default: "";
|
|
3435
|
-
};
|
|
3436
3554
|
readonly to: {
|
|
3437
3555
|
readonly default: "";
|
|
3438
3556
|
};
|
|
@@ -3482,6 +3600,9 @@ declare const blockSpecs: {
|
|
|
3482
3600
|
readonly default: "";
|
|
3483
3601
|
};
|
|
3484
3602
|
};
|
|
3603
|
+
readonly skill: {
|
|
3604
|
+
readonly default: "";
|
|
3605
|
+
};
|
|
3485
3606
|
readonly content: "none";
|
|
3486
3607
|
}, any, _blocknote_core.InlineContentSchema, _blocknote_core.StyleSchema>;
|
|
3487
3608
|
};
|
|
@@ -3502,6 +3623,9 @@ declare const blockSpecs: {
|
|
|
3502
3623
|
readonly default: "{}";
|
|
3503
3624
|
};
|
|
3504
3625
|
};
|
|
3626
|
+
readonly skill: {
|
|
3627
|
+
readonly default: "";
|
|
3628
|
+
};
|
|
3505
3629
|
readonly content: "none";
|
|
3506
3630
|
};
|
|
3507
3631
|
implementation: _blocknote_core.TiptapBlockImplementation<{
|
|
@@ -3520,6 +3644,9 @@ declare const blockSpecs: {
|
|
|
3520
3644
|
readonly default: "{}";
|
|
3521
3645
|
};
|
|
3522
3646
|
};
|
|
3647
|
+
readonly skill: {
|
|
3648
|
+
readonly default: "";
|
|
3649
|
+
};
|
|
3523
3650
|
readonly content: "none";
|
|
3524
3651
|
}, any, _blocknote_core.InlineContentSchema, _blocknote_core.StyleSchema>;
|
|
3525
3652
|
};
|
|
@@ -3552,6 +3679,9 @@ declare const blockSpecs: {
|
|
|
3552
3679
|
readonly default: "[]";
|
|
3553
3680
|
};
|
|
3554
3681
|
};
|
|
3682
|
+
readonly skill: {
|
|
3683
|
+
readonly default: "";
|
|
3684
|
+
};
|
|
3555
3685
|
readonly content: "none";
|
|
3556
3686
|
};
|
|
3557
3687
|
implementation: _blocknote_core.TiptapBlockImplementation<{
|
|
@@ -3582,6 +3712,9 @@ declare const blockSpecs: {
|
|
|
3582
3712
|
readonly default: "[]";
|
|
3583
3713
|
};
|
|
3584
3714
|
};
|
|
3715
|
+
readonly skill: {
|
|
3716
|
+
readonly default: "";
|
|
3717
|
+
};
|
|
3585
3718
|
readonly content: "none";
|
|
3586
3719
|
}, any, _blocknote_core.InlineContentSchema, _blocknote_core.StyleSchema>;
|
|
3587
3720
|
};
|
|
@@ -3617,6 +3750,9 @@ declare const blockSpecs: {
|
|
|
3617
3750
|
readonly default: "";
|
|
3618
3751
|
};
|
|
3619
3752
|
};
|
|
3753
|
+
readonly skill: {
|
|
3754
|
+
readonly default: "";
|
|
3755
|
+
};
|
|
3620
3756
|
readonly content: "none";
|
|
3621
3757
|
};
|
|
3622
3758
|
implementation: _blocknote_core.TiptapBlockImplementation<{
|
|
@@ -3650,6 +3786,9 @@ declare const blockSpecs: {
|
|
|
3650
3786
|
readonly default: "";
|
|
3651
3787
|
};
|
|
3652
3788
|
};
|
|
3789
|
+
readonly skill: {
|
|
3790
|
+
readonly default: "";
|
|
3791
|
+
};
|
|
3653
3792
|
readonly content: "none";
|
|
3654
3793
|
}, any, _blocknote_core.InlineContentSchema, _blocknote_core.StyleSchema>;
|
|
3655
3794
|
};
|
|
@@ -3679,6 +3818,9 @@ declare const blockSpecs: {
|
|
|
3679
3818
|
readonly default: "";
|
|
3680
3819
|
};
|
|
3681
3820
|
};
|
|
3821
|
+
readonly skill: {
|
|
3822
|
+
readonly default: "";
|
|
3823
|
+
};
|
|
3682
3824
|
readonly content: "none";
|
|
3683
3825
|
};
|
|
3684
3826
|
implementation: _blocknote_core.TiptapBlockImplementation<{
|
|
@@ -3706,6 +3848,9 @@ declare const blockSpecs: {
|
|
|
3706
3848
|
readonly default: "";
|
|
3707
3849
|
};
|
|
3708
3850
|
};
|
|
3851
|
+
readonly skill: {
|
|
3852
|
+
readonly default: "";
|
|
3853
|
+
};
|
|
3709
3854
|
readonly content: "none";
|
|
3710
3855
|
}, any, _blocknote_core.InlineContentSchema, _blocknote_core.StyleSchema>;
|
|
3711
3856
|
};
|
|
@@ -3756,6 +3901,9 @@ declare const blockSpecs: {
|
|
|
3756
3901
|
readonly default: string;
|
|
3757
3902
|
};
|
|
3758
3903
|
};
|
|
3904
|
+
readonly skill: {
|
|
3905
|
+
readonly default: "";
|
|
3906
|
+
};
|
|
3759
3907
|
readonly content: "none";
|
|
3760
3908
|
};
|
|
3761
3909
|
implementation: _blocknote_core.TiptapBlockImplementation<{
|
|
@@ -3804,6 +3952,9 @@ declare const blockSpecs: {
|
|
|
3804
3952
|
readonly default: string;
|
|
3805
3953
|
};
|
|
3806
3954
|
};
|
|
3955
|
+
readonly skill: {
|
|
3956
|
+
readonly default: "";
|
|
3957
|
+
};
|
|
3807
3958
|
readonly content: "none";
|
|
3808
3959
|
}, any, _blocknote_core.InlineContentSchema, _blocknote_core.StyleSchema>;
|
|
3809
3960
|
};
|
|
@@ -3836,6 +3987,9 @@ declare const blockSpecs: {
|
|
|
3836
3987
|
readonly default: "";
|
|
3837
3988
|
};
|
|
3838
3989
|
};
|
|
3990
|
+
readonly skill: {
|
|
3991
|
+
readonly default: "";
|
|
3992
|
+
};
|
|
3839
3993
|
readonly content: "none";
|
|
3840
3994
|
};
|
|
3841
3995
|
implementation: _blocknote_core.TiptapBlockImplementation<{
|
|
@@ -3866,6 +4020,9 @@ declare const blockSpecs: {
|
|
|
3866
4020
|
readonly default: "";
|
|
3867
4021
|
};
|
|
3868
4022
|
};
|
|
4023
|
+
readonly skill: {
|
|
4024
|
+
readonly default: "";
|
|
4025
|
+
};
|
|
3869
4026
|
readonly content: "none";
|
|
3870
4027
|
}, any, _blocknote_core.InlineContentSchema, _blocknote_core.StyleSchema>;
|
|
3871
4028
|
};
|
|
@@ -3907,6 +4064,9 @@ declare const blockSpecs: {
|
|
|
3907
4064
|
readonly default: "";
|
|
3908
4065
|
};
|
|
3909
4066
|
};
|
|
4067
|
+
readonly skill: {
|
|
4068
|
+
readonly default: "";
|
|
4069
|
+
};
|
|
3910
4070
|
readonly content: "none";
|
|
3911
4071
|
};
|
|
3912
4072
|
implementation: _blocknote_core.TiptapBlockImplementation<{
|
|
@@ -3946,6 +4106,9 @@ declare const blockSpecs: {
|
|
|
3946
4106
|
readonly default: "";
|
|
3947
4107
|
};
|
|
3948
4108
|
};
|
|
4109
|
+
readonly skill: {
|
|
4110
|
+
readonly default: "";
|
|
4111
|
+
};
|
|
3949
4112
|
readonly content: "none";
|
|
3950
4113
|
}, any, _blocknote_core.InlineContentSchema, _blocknote_core.StyleSchema>;
|
|
3951
4114
|
};
|
|
@@ -3969,6 +4132,9 @@ declare const blockSpecs: {
|
|
|
3969
4132
|
readonly default: "";
|
|
3970
4133
|
};
|
|
3971
4134
|
};
|
|
4135
|
+
readonly skill: {
|
|
4136
|
+
readonly default: "";
|
|
4137
|
+
};
|
|
3972
4138
|
readonly content: "none";
|
|
3973
4139
|
};
|
|
3974
4140
|
implementation: _blocknote_core.TiptapBlockImplementation<{
|
|
@@ -3990,6 +4156,9 @@ declare const blockSpecs: {
|
|
|
3990
4156
|
readonly default: "";
|
|
3991
4157
|
};
|
|
3992
4158
|
};
|
|
4159
|
+
readonly skill: {
|
|
4160
|
+
readonly default: "";
|
|
4161
|
+
};
|
|
3993
4162
|
readonly content: "none";
|
|
3994
4163
|
}, any, _blocknote_core.InlineContentSchema, _blocknote_core.StyleSchema>;
|
|
3995
4164
|
};
|
|
@@ -4673,6 +4842,7 @@ interface PageHeaderProps {
|
|
|
4673
4842
|
title?: string;
|
|
4674
4843
|
icon?: React.ReactNode;
|
|
4675
4844
|
isPrivate?: boolean;
|
|
4845
|
+
onPrivacyChange?: (isPrivate: boolean) => void;
|
|
4676
4846
|
lastEdited?: string;
|
|
4677
4847
|
onShare?: () => void;
|
|
4678
4848
|
onFavorite?: () => void;
|
|
@@ -4682,7 +4852,7 @@ interface PageHeaderProps {
|
|
|
4682
4852
|
/**
|
|
4683
4853
|
* PageHeader component - A Notion-style page header with title, privacy badge, and actions
|
|
4684
4854
|
*/
|
|
4685
|
-
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;
|
|
4686
4856
|
|
|
4687
4857
|
/** Position info passed to drop callback */
|
|
4688
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-
|
|
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-
|
|
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
package/dist/mantine/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { ak as IxoBlockProps, W as BlocknoteHandlers } from '../graphql-client-
|
|
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-
|
|
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
|
};
|
package/dist/mantine/index.mjs
CHANGED