rimelight-components 2.0.94 → 2.0.95

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 (57) hide show
  1. package/dist/module.d.mts +0 -1
  2. package/dist/module.json +1 -1
  3. package/dist/module.mjs +12 -18
  4. package/dist/runtime/components/blocks/BlockEditRenderer.d.vue.ts +1 -1
  5. package/dist/runtime/components/blocks/BlockEditRenderer.vue.d.ts +1 -1
  6. package/dist/runtime/components/blocks/BlockEditor.d.vue.ts +1 -1
  7. package/dist/runtime/components/blocks/BlockEditor.vue.d.ts +1 -1
  8. package/dist/runtime/components/blocks/BlockViewRenderer.d.vue.ts +1 -1
  9. package/dist/runtime/components/blocks/BlockViewRenderer.vue.d.ts +1 -1
  10. package/dist/runtime/components/blocks/TOC.d.vue.ts +1 -1
  11. package/dist/runtime/components/blocks/TOC.vue.d.ts +1 -1
  12. package/dist/runtime/components/blocks/TextRenderer.d.vue.ts +1 -1
  13. package/dist/runtime/components/blocks/TextRenderer.vue.d.ts +1 -1
  14. package/dist/runtime/components/blocks/editor/CalloutBlockEditor.d.vue.ts +1 -1
  15. package/dist/runtime/components/blocks/editor/CalloutBlockEditor.vue.d.ts +1 -1
  16. package/dist/runtime/components/blocks/editor/CardBlockEditor.d.vue.ts +1 -1
  17. package/dist/runtime/components/blocks/editor/CardBlockEditor.vue.d.ts +1 -1
  18. package/dist/runtime/components/blocks/editor/ImageBlockEditor.d.vue.ts +1 -1
  19. package/dist/runtime/components/blocks/editor/ImageBlockEditor.vue.d.ts +1 -1
  20. package/dist/runtime/components/blocks/editor/ParagraphBlockEditor.d.vue.ts +1 -1
  21. package/dist/runtime/components/blocks/editor/ParagraphBlockEditor.vue.d.ts +1 -1
  22. package/dist/runtime/components/blocks/editor/SectionBlockEditor.d.vue.ts +1 -1
  23. package/dist/runtime/components/blocks/editor/SectionBlockEditor.vue.d.ts +1 -1
  24. package/dist/runtime/components/blocks/editor/TestBlockEditor.d.vue.ts +1 -1
  25. package/dist/runtime/components/blocks/editor/TestBlockEditor.vue.d.ts +1 -1
  26. package/dist/runtime/components/blocks/renderer/CalloutBlockRenderer.d.vue.ts +1 -1
  27. package/dist/runtime/components/blocks/renderer/CalloutBlockRenderer.vue.d.ts +1 -1
  28. package/dist/runtime/components/blocks/renderer/CardBlockRenderer.d.vue.ts +1 -1
  29. package/dist/runtime/components/blocks/renderer/CardBlockRenderer.vue.d.ts +1 -1
  30. package/dist/runtime/components/blocks/renderer/ImageBlockRenderer.d.vue.ts +1 -1
  31. package/dist/runtime/components/blocks/renderer/ImageBlockRenderer.vue.d.ts +1 -1
  32. package/dist/runtime/components/blocks/renderer/ParagraphBlockRenderer.d.vue.ts +1 -1
  33. package/dist/runtime/components/blocks/renderer/ParagraphBlockRenderer.vue.d.ts +1 -1
  34. package/dist/runtime/components/blocks/renderer/SectionBlockRenderer.d.vue.ts +1 -1
  35. package/dist/runtime/components/blocks/renderer/SectionBlockRenderer.vue.d.ts +1 -1
  36. package/dist/runtime/components/blocks/renderer/TestBlockRenderer.d.vue.ts +1 -1
  37. package/dist/runtime/components/blocks/renderer/TestBlockRenderer.vue.d.ts +1 -1
  38. package/dist/runtime/components/page/PageEditor.d.vue.ts +9 -9
  39. package/dist/runtime/components/page/PageEditor.vue +1 -0
  40. package/dist/runtime/components/page/PageEditor.vue.d.ts +9 -9
  41. package/dist/runtime/components/page/PagePropertiesEditor.d.vue.ts +5 -5
  42. package/dist/runtime/components/page/PagePropertiesEditor.vue +1 -1
  43. package/dist/runtime/components/page/PagePropertiesEditor.vue.d.ts +5 -5
  44. package/dist/runtime/components/page/PagePropertiesRenderer.d.vue.ts +1 -1
  45. package/dist/runtime/components/page/PagePropertiesRenderer.vue.d.ts +1 -1
  46. package/dist/runtime/composables/index.d.ts +3 -3
  47. package/dist/runtime/composables/useBlockEditor.d.ts +131 -131
  48. package/dist/runtime/composables/usePageEditor.d.ts +1 -1
  49. package/dist/runtime/internal/blockMapper.d.ts +1 -1
  50. package/dist/runtime/types/index.d.ts +3 -3
  51. package/dist/runtime/types/pages.d.ts +2 -2
  52. package/dist/runtime/utils/index.d.ts +3 -3
  53. package/dist/runtime/utils/page.d.ts +1 -1
  54. package/dist/runtime/utils/page.js +1 -1
  55. package/dist/runtime/utils/richTextHelpers.d.ts +1 -1
  56. package/dist/types.d.mts +0 -2
  57. package/package.json +7 -6
@@ -1,5 +1,5 @@
1
1
  import { type Ref } from "vue";
2
- import type { Block } from "../types";
2
+ import type { Block } from "../types/index.js";
3
3
  export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistorySize, onMutation }?: {
4
4
  maxHistorySize?: number;
5
5
  onMutation?: () => void;
@@ -23,7 +23,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
23
23
  } | {
24
24
  type: "SectionBlock";
25
25
  props: {
26
- level: import("../types").HeadingLevel;
26
+ level: import("../types/index.js").HeadingLevel;
27
27
  title: string;
28
28
  description?: string | undefined;
29
29
  children: ({
@@ -3094,7 +3094,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
3094
3094
  } | {
3095
3095
  type: "SectionBlock";
3096
3096
  props: {
3097
- level: import("../types").HeadingLevel;
3097
+ level: import("../types/index.js").HeadingLevel;
3098
3098
  title: string;
3099
3099
  description?: string | undefined;
3100
3100
  children: ({
@@ -3890,7 +3890,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
3890
3890
  } | {
3891
3891
  type: "SectionBlock";
3892
3892
  props: {
3893
- level: import("../types").HeadingLevel;
3893
+ level: import("../types/index.js").HeadingLevel;
3894
3894
  title: string;
3895
3895
  description?: string | undefined;
3896
3896
  children: ({
@@ -4181,7 +4181,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
4181
4181
  } | {
4182
4182
  type: "SectionBlock";
4183
4183
  props: {
4184
- level: import("../types").HeadingLevel;
4184
+ level: import("../types/index.js").HeadingLevel;
4185
4185
  title: string;
4186
4186
  description?: string | undefined;
4187
4187
  children: ({
@@ -4323,7 +4323,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
4323
4323
  } | {
4324
4324
  type: "SectionBlock";
4325
4325
  props: {
4326
- level: import("../types").HeadingLevel;
4326
+ level: import("../types/index.js").HeadingLevel;
4327
4327
  title: string;
4328
4328
  description?: string | undefined;
4329
4329
  children: ({
@@ -4410,7 +4410,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
4410
4410
  } | {
4411
4411
  type: "SectionBlock";
4412
4412
  props: {
4413
- level: import("../types").HeadingLevel;
4413
+ level: import("../types/index.js").HeadingLevel;
4414
4414
  title: string;
4415
4415
  description?: string | undefined;
4416
4416
  children: ({
@@ -4554,7 +4554,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
4554
4554
  } | {
4555
4555
  type: "SectionBlock";
4556
4556
  props: {
4557
- level: import("../types").HeadingLevel;
4557
+ level: import("../types/index.js").HeadingLevel;
4558
4558
  title: string;
4559
4559
  description?: string | undefined;
4560
4560
  children: ({
@@ -4646,7 +4646,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
4646
4646
  } | {
4647
4647
  type: "SectionBlock";
4648
4648
  props: {
4649
- level: import("../types").HeadingLevel;
4649
+ level: import("../types/index.js").HeadingLevel;
4650
4650
  title: string;
4651
4651
  description?: string | undefined;
4652
4652
  children: ({
@@ -4925,7 +4925,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
4925
4925
  } | {
4926
4926
  type: "SectionBlock";
4927
4927
  props: {
4928
- level: import("../types").HeadingLevel;
4928
+ level: import("../types/index.js").HeadingLevel;
4929
4929
  title: string;
4930
4930
  description?: string | undefined;
4931
4931
  children: ({
@@ -5067,7 +5067,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
5067
5067
  } | {
5068
5068
  type: "SectionBlock";
5069
5069
  props: {
5070
- level: import("../types").HeadingLevel;
5070
+ level: import("../types/index.js").HeadingLevel;
5071
5071
  title: string;
5072
5072
  description?: string | undefined;
5073
5073
  children: ({
@@ -5154,7 +5154,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
5154
5154
  } | {
5155
5155
  type: "SectionBlock";
5156
5156
  props: {
5157
- level: import("../types").HeadingLevel;
5157
+ level: import("../types/index.js").HeadingLevel;
5158
5158
  title: string;
5159
5159
  description?: string | undefined;
5160
5160
  children: ({
@@ -5290,7 +5290,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
5290
5290
  } | {
5291
5291
  type: "SectionBlock";
5292
5292
  props: {
5293
- level: import("../types").HeadingLevel;
5293
+ level: import("../types/index.js").HeadingLevel;
5294
5294
  title: string;
5295
5295
  description?: string | undefined;
5296
5296
  children: ({
@@ -5381,7 +5381,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
5381
5381
  } | {
5382
5382
  type: "SectionBlock";
5383
5383
  props: {
5384
- level: import("../types").HeadingLevel;
5384
+ level: import("../types/index.js").HeadingLevel;
5385
5385
  title: string;
5386
5386
  description?: string | undefined;
5387
5387
  children: ({
@@ -5662,7 +5662,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
5662
5662
  } | {
5663
5663
  type: "SectionBlock";
5664
5664
  props: {
5665
- level: import("../types").HeadingLevel;
5665
+ level: import("../types/index.js").HeadingLevel;
5666
5666
  title: string;
5667
5667
  description?: string | undefined;
5668
5668
  children: ({
@@ -5806,7 +5806,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
5806
5806
  } | {
5807
5807
  type: "SectionBlock";
5808
5808
  props: {
5809
- level: import("../types").HeadingLevel;
5809
+ level: import("../types/index.js").HeadingLevel;
5810
5810
  title: string;
5811
5811
  description?: string | undefined;
5812
5812
  children: ({
@@ -5894,7 +5894,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
5894
5894
  } | {
5895
5895
  type: "SectionBlock";
5896
5896
  props: {
5897
- level: import("../types").HeadingLevel;
5897
+ level: import("../types/index.js").HeadingLevel;
5898
5898
  title: string;
5899
5899
  description?: string | undefined;
5900
5900
  children: ({
@@ -6030,7 +6030,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
6030
6030
  } | {
6031
6031
  type: "SectionBlock";
6032
6032
  props: {
6033
- level: import("../types").HeadingLevel;
6033
+ level: import("../types/index.js").HeadingLevel;
6034
6034
  title: string;
6035
6035
  description?: string | undefined;
6036
6036
  children: ({
@@ -6141,7 +6141,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
6141
6141
  } | {
6142
6142
  type: "SectionBlock";
6143
6143
  props: {
6144
- level: import("../types").HeadingLevel;
6144
+ level: import("../types/index.js").HeadingLevel;
6145
6145
  title: string;
6146
6146
  description?: string | undefined;
6147
6147
  children: ({
@@ -6936,7 +6936,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
6936
6936
  } | {
6937
6937
  type: "SectionBlock";
6938
6938
  props: {
6939
- level: import("../types").HeadingLevel;
6939
+ level: import("../types/index.js").HeadingLevel;
6940
6940
  title: string;
6941
6941
  description?: string | undefined;
6942
6942
  children: ({
@@ -7227,7 +7227,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
7227
7227
  } | {
7228
7228
  type: "SectionBlock";
7229
7229
  props: {
7230
- level: import("../types").HeadingLevel;
7230
+ level: import("../types/index.js").HeadingLevel;
7231
7231
  title: string;
7232
7232
  description?: string | undefined;
7233
7233
  children: ({
@@ -7369,7 +7369,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
7369
7369
  } | {
7370
7370
  type: "SectionBlock";
7371
7371
  props: {
7372
- level: import("../types").HeadingLevel;
7372
+ level: import("../types/index.js").HeadingLevel;
7373
7373
  title: string;
7374
7374
  description?: string | undefined;
7375
7375
  children: ({
@@ -7456,7 +7456,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
7456
7456
  } | {
7457
7457
  type: "SectionBlock";
7458
7458
  props: {
7459
- level: import("../types").HeadingLevel;
7459
+ level: import("../types/index.js").HeadingLevel;
7460
7460
  title: string;
7461
7461
  description?: string | undefined;
7462
7462
  children: ({
@@ -7600,7 +7600,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
7600
7600
  } | {
7601
7601
  type: "SectionBlock";
7602
7602
  props: {
7603
- level: import("../types").HeadingLevel;
7603
+ level: import("../types/index.js").HeadingLevel;
7604
7604
  title: string;
7605
7605
  description?: string | undefined;
7606
7606
  children: ({
@@ -7711,7 +7711,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
7711
7711
  } | {
7712
7712
  type: "SectionBlock";
7713
7713
  props: {
7714
- level: import("../types").HeadingLevel;
7714
+ level: import("../types/index.js").HeadingLevel;
7715
7715
  title: string;
7716
7716
  description?: string | undefined;
7717
7717
  children: ({
@@ -7980,7 +7980,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
7980
7980
  } | {
7981
7981
  type: "SectionBlock";
7982
7982
  props: {
7983
- level: import("../types").HeadingLevel;
7983
+ level: import("../types/index.js").HeadingLevel;
7984
7984
  title: string;
7985
7985
  description?: string | undefined;
7986
7986
  children: ({
@@ -8122,7 +8122,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
8122
8122
  } | {
8123
8123
  type: "SectionBlock";
8124
8124
  props: {
8125
- level: import("../types").HeadingLevel;
8125
+ level: import("../types/index.js").HeadingLevel;
8126
8126
  title: string;
8127
8127
  description?: string | undefined;
8128
8128
  children: ({
@@ -8228,7 +8228,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
8228
8228
  } | {
8229
8229
  type: "SectionBlock";
8230
8230
  props: {
8231
- level: import("../types").HeadingLevel;
8231
+ level: import("../types/index.js").HeadingLevel;
8232
8232
  title: string;
8233
8233
  description?: string | undefined;
8234
8234
  children: ({
@@ -8351,7 +8351,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
8351
8351
  } | {
8352
8352
  type: "SectionBlock";
8353
8353
  props: {
8354
- level: import("../types").HeadingLevel;
8354
+ level: import("../types/index.js").HeadingLevel;
8355
8355
  title: string;
8356
8356
  description?: string | undefined;
8357
8357
  children: ({
@@ -8461,7 +8461,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
8461
8461
  } | {
8462
8462
  type: "SectionBlock";
8463
8463
  props: {
8464
- level: import("../types").HeadingLevel;
8464
+ level: import("../types/index.js").HeadingLevel;
8465
8465
  title: string;
8466
8466
  description?: string | undefined;
8467
8467
  children: ({
@@ -8732,7 +8732,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
8732
8732
  } | {
8733
8733
  type: "SectionBlock";
8734
8734
  props: {
8735
- level: import("../types").HeadingLevel;
8735
+ level: import("../types/index.js").HeadingLevel;
8736
8736
  title: string;
8737
8737
  description?: string | undefined;
8738
8738
  children: ({
@@ -8876,7 +8876,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
8876
8876
  } | {
8877
8877
  type: "SectionBlock";
8878
8878
  props: {
8879
- level: import("../types").HeadingLevel;
8879
+ level: import("../types/index.js").HeadingLevel;
8880
8880
  title: string;
8881
8881
  description?: string | undefined;
8882
8882
  children: ({
@@ -8983,7 +8983,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
8983
8983
  } | {
8984
8984
  type: "SectionBlock";
8985
8985
  props: {
8986
- level: import("../types").HeadingLevel;
8986
+ level: import("../types/index.js").HeadingLevel;
8987
8987
  title: string;
8988
8988
  description?: string | undefined;
8989
8989
  children: ({
@@ -9106,7 +9106,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
9106
9106
  } | {
9107
9107
  type: "SectionBlock";
9108
9108
  props: {
9109
- level: import("../types").HeadingLevel;
9109
+ level: import("../types/index.js").HeadingLevel;
9110
9110
  title: string;
9111
9111
  description?: string | undefined;
9112
9112
  children: ({
@@ -9221,7 +9221,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
9221
9221
  } | {
9222
9222
  type: "SectionBlock";
9223
9223
  props: {
9224
- level: import("../types").HeadingLevel;
9224
+ level: import("../types/index.js").HeadingLevel;
9225
9225
  title: string;
9226
9226
  description?: string | undefined;
9227
9227
  children: ({
@@ -9996,7 +9996,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
9996
9996
  } | {
9997
9997
  type: "SectionBlock";
9998
9998
  props: {
9999
- level: import("../types").HeadingLevel;
9999
+ level: import("../types/index.js").HeadingLevel;
10000
10000
  title: string;
10001
10001
  description?: string | undefined;
10002
10002
  children: ({
@@ -10275,7 +10275,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
10275
10275
  } | {
10276
10276
  type: "SectionBlock";
10277
10277
  props: {
10278
- level: import("../types").HeadingLevel;
10278
+ level: import("../types/index.js").HeadingLevel;
10279
10279
  title: string;
10280
10280
  description?: string | undefined;
10281
10281
  children: ({
@@ -10417,7 +10417,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
10417
10417
  } | {
10418
10418
  type: "SectionBlock";
10419
10419
  props: {
10420
- level: import("../types").HeadingLevel;
10420
+ level: import("../types/index.js").HeadingLevel;
10421
10421
  title: string;
10422
10422
  description?: string | undefined;
10423
10423
  children: ({
@@ -10504,7 +10504,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
10504
10504
  } | {
10505
10505
  type: "SectionBlock";
10506
10506
  props: {
10507
- level: import("../types").HeadingLevel;
10507
+ level: import("../types/index.js").HeadingLevel;
10508
10508
  title: string;
10509
10509
  description?: string | undefined;
10510
10510
  children: ({
@@ -10640,7 +10640,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
10640
10640
  } | {
10641
10641
  type: "SectionBlock";
10642
10642
  props: {
10643
- level: import("../types").HeadingLevel;
10643
+ level: import("../types/index.js").HeadingLevel;
10644
10644
  title: string;
10645
10645
  description?: string | undefined;
10646
10646
  children: ({
@@ -10747,7 +10747,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
10747
10747
  } | {
10748
10748
  type: "SectionBlock";
10749
10749
  props: {
10750
- level: import("../types").HeadingLevel;
10750
+ level: import("../types/index.js").HeadingLevel;
10751
10751
  title: string;
10752
10752
  description?: string | undefined;
10753
10753
  children: ({
@@ -11016,7 +11016,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
11016
11016
  } | {
11017
11017
  type: "SectionBlock";
11018
11018
  props: {
11019
- level: import("../types").HeadingLevel;
11019
+ level: import("../types/index.js").HeadingLevel;
11020
11020
  title: string;
11021
11021
  description?: string | undefined;
11022
11022
  children: ({
@@ -11158,7 +11158,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
11158
11158
  } | {
11159
11159
  type: "SectionBlock";
11160
11160
  props: {
11161
- level: import("../types").HeadingLevel;
11161
+ level: import("../types/index.js").HeadingLevel;
11162
11162
  title: string;
11163
11163
  description?: string | undefined;
11164
11164
  children: ({
@@ -11264,7 +11264,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
11264
11264
  } | {
11265
11265
  type: "SectionBlock";
11266
11266
  props: {
11267
- level: import("../types").HeadingLevel;
11267
+ level: import("../types/index.js").HeadingLevel;
11268
11268
  title: string;
11269
11269
  description?: string | undefined;
11270
11270
  children: ({
@@ -11387,7 +11387,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
11387
11387
  } | {
11388
11388
  type: "SectionBlock";
11389
11389
  props: {
11390
- level: import("../types").HeadingLevel;
11390
+ level: import("../types/index.js").HeadingLevel;
11391
11391
  title: string;
11392
11392
  description?: string | undefined;
11393
11393
  children: ({
@@ -11497,7 +11497,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
11497
11497
  } | {
11498
11498
  type: "SectionBlock";
11499
11499
  props: {
11500
- level: import("../types").HeadingLevel;
11500
+ level: import("../types/index.js").HeadingLevel;
11501
11501
  title: string;
11502
11502
  description?: string | undefined;
11503
11503
  children: ({
@@ -11760,7 +11760,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
11760
11760
  } | {
11761
11761
  type: "SectionBlock";
11762
11762
  props: {
11763
- level: import("../types").HeadingLevel;
11763
+ level: import("../types/index.js").HeadingLevel;
11764
11764
  title: string;
11765
11765
  description?: string | undefined;
11766
11766
  children: ({
@@ -11896,7 +11896,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
11896
11896
  } | {
11897
11897
  type: "SectionBlock";
11898
11898
  props: {
11899
- level: import("../types").HeadingLevel;
11899
+ level: import("../types/index.js").HeadingLevel;
11900
11900
  title: string;
11901
11901
  description?: string | undefined;
11902
11902
  children: ({
@@ -11999,7 +11999,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
11999
11999
  } | {
12000
12000
  type: "SectionBlock";
12001
12001
  props: {
12002
- level: import("../types").HeadingLevel;
12002
+ level: import("../types/index.js").HeadingLevel;
12003
12003
  title: string;
12004
12004
  description?: string | undefined;
12005
12005
  children: ({
@@ -12122,7 +12122,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
12122
12122
  } | {
12123
12123
  type: "SectionBlock";
12124
12124
  props: {
12125
- level: import("../types").HeadingLevel;
12125
+ level: import("../types/index.js").HeadingLevel;
12126
12126
  title: string;
12127
12127
  description?: string | undefined;
12128
12128
  children: ({
@@ -12236,7 +12236,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
12236
12236
  } | {
12237
12237
  type: "SectionBlock";
12238
12238
  props: {
12239
- level: import("../types").HeadingLevel;
12239
+ level: import("../types/index.js").HeadingLevel;
12240
12240
  title: string;
12241
12241
  description?: string | undefined;
12242
12242
  children: ({
@@ -13016,7 +13016,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
13016
13016
  } | {
13017
13017
  type: "SectionBlock";
13018
13018
  props: {
13019
- level: import("../types").HeadingLevel;
13019
+ level: import("../types/index.js").HeadingLevel;
13020
13020
  title: string;
13021
13021
  description?: string | undefined;
13022
13022
  children: ({
@@ -13297,7 +13297,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
13297
13297
  } | {
13298
13298
  type: "SectionBlock";
13299
13299
  props: {
13300
- level: import("../types").HeadingLevel;
13300
+ level: import("../types/index.js").HeadingLevel;
13301
13301
  title: string;
13302
13302
  description?: string | undefined;
13303
13303
  children: ({
@@ -13441,7 +13441,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
13441
13441
  } | {
13442
13442
  type: "SectionBlock";
13443
13443
  props: {
13444
- level: import("../types").HeadingLevel;
13444
+ level: import("../types/index.js").HeadingLevel;
13445
13445
  title: string;
13446
13446
  description?: string | undefined;
13447
13447
  children: ({
@@ -13529,7 +13529,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
13529
13529
  } | {
13530
13530
  type: "SectionBlock";
13531
13531
  props: {
13532
- level: import("../types").HeadingLevel;
13532
+ level: import("../types/index.js").HeadingLevel;
13533
13533
  title: string;
13534
13534
  description?: string | undefined;
13535
13535
  children: ({
@@ -13665,7 +13665,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
13665
13665
  } | {
13666
13666
  type: "SectionBlock";
13667
13667
  props: {
13668
- level: import("../types").HeadingLevel;
13668
+ level: import("../types/index.js").HeadingLevel;
13669
13669
  title: string;
13670
13670
  description?: string | undefined;
13671
13671
  children: ({
@@ -13772,7 +13772,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
13772
13772
  } | {
13773
13773
  type: "SectionBlock";
13774
13774
  props: {
13775
- level: import("../types").HeadingLevel;
13775
+ level: import("../types/index.js").HeadingLevel;
13776
13776
  title: string;
13777
13777
  description?: string | undefined;
13778
13778
  children: ({
@@ -14043,7 +14043,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
14043
14043
  } | {
14044
14044
  type: "SectionBlock";
14045
14045
  props: {
14046
- level: import("../types").HeadingLevel;
14046
+ level: import("../types/index.js").HeadingLevel;
14047
14047
  title: string;
14048
14048
  description?: string | undefined;
14049
14049
  children: ({
@@ -14187,7 +14187,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
14187
14187
  } | {
14188
14188
  type: "SectionBlock";
14189
14189
  props: {
14190
- level: import("../types").HeadingLevel;
14190
+ level: import("../types/index.js").HeadingLevel;
14191
14191
  title: string;
14192
14192
  description?: string | undefined;
14193
14193
  children: ({
@@ -14294,7 +14294,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
14294
14294
  } | {
14295
14295
  type: "SectionBlock";
14296
14296
  props: {
14297
- level: import("../types").HeadingLevel;
14297
+ level: import("../types/index.js").HeadingLevel;
14298
14298
  title: string;
14299
14299
  description?: string | undefined;
14300
14300
  children: ({
@@ -14417,7 +14417,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
14417
14417
  } | {
14418
14418
  type: "SectionBlock";
14419
14419
  props: {
14420
- level: import("../types").HeadingLevel;
14420
+ level: import("../types/index.js").HeadingLevel;
14421
14421
  title: string;
14422
14422
  description?: string | undefined;
14423
14423
  children: ({
@@ -14528,7 +14528,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
14528
14528
  } | {
14529
14529
  type: "SectionBlock";
14530
14530
  props: {
14531
- level: import("../types").HeadingLevel;
14531
+ level: import("../types/index.js").HeadingLevel;
14532
14532
  title: string;
14533
14533
  description?: string | undefined;
14534
14534
  children: ({
@@ -14791,7 +14791,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
14791
14791
  } | {
14792
14792
  type: "SectionBlock";
14793
14793
  props: {
14794
- level: import("../types").HeadingLevel;
14794
+ level: import("../types/index.js").HeadingLevel;
14795
14795
  title: string;
14796
14796
  description?: string | undefined;
14797
14797
  children: ({
@@ -14927,7 +14927,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
14927
14927
  } | {
14928
14928
  type: "SectionBlock";
14929
14929
  props: {
14930
- level: import("../types").HeadingLevel;
14930
+ level: import("../types/index.js").HeadingLevel;
14931
14931
  title: string;
14932
14932
  description?: string | undefined;
14933
14933
  children: ({
@@ -15030,7 +15030,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
15030
15030
  } | {
15031
15031
  type: "SectionBlock";
15032
15032
  props: {
15033
- level: import("../types").HeadingLevel;
15033
+ level: import("../types/index.js").HeadingLevel;
15034
15034
  title: string;
15035
15035
  description?: string | undefined;
15036
15036
  children: ({
@@ -15153,7 +15153,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
15153
15153
  } | {
15154
15154
  type: "SectionBlock";
15155
15155
  props: {
15156
- level: import("../types").HeadingLevel;
15156
+ level: import("../types/index.js").HeadingLevel;
15157
15157
  title: string;
15158
15158
  description?: string | undefined;
15159
15159
  children: ({
@@ -15261,7 +15261,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
15261
15261
  } | {
15262
15262
  type: "SectionBlock";
15263
15263
  props: {
15264
- level: import("../types").HeadingLevel;
15264
+ level: import("../types/index.js").HeadingLevel;
15265
15265
  title: string;
15266
15266
  description?: string | undefined;
15267
15267
  children: ({
@@ -18332,7 +18332,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
18332
18332
  } | {
18333
18333
  type: "SectionBlock";
18334
18334
  props: {
18335
- level: import("../types").HeadingLevel;
18335
+ level: import("../types/index.js").HeadingLevel;
18336
18336
  title: string;
18337
18337
  description?: string | undefined;
18338
18338
  children: ({
@@ -19128,7 +19128,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
19128
19128
  } | {
19129
19129
  type: "SectionBlock";
19130
19130
  props: {
19131
- level: import("../types").HeadingLevel;
19131
+ level: import("../types/index.js").HeadingLevel;
19132
19132
  title: string;
19133
19133
  description?: string | undefined;
19134
19134
  children: ({
@@ -19419,7 +19419,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
19419
19419
  } | {
19420
19420
  type: "SectionBlock";
19421
19421
  props: {
19422
- level: import("../types").HeadingLevel;
19422
+ level: import("../types/index.js").HeadingLevel;
19423
19423
  title: string;
19424
19424
  description?: string | undefined;
19425
19425
  children: ({
@@ -19561,7 +19561,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
19561
19561
  } | {
19562
19562
  type: "SectionBlock";
19563
19563
  props: {
19564
- level: import("../types").HeadingLevel;
19564
+ level: import("../types/index.js").HeadingLevel;
19565
19565
  title: string;
19566
19566
  description?: string | undefined;
19567
19567
  children: ({
@@ -19648,7 +19648,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
19648
19648
  } | {
19649
19649
  type: "SectionBlock";
19650
19650
  props: {
19651
- level: import("../types").HeadingLevel;
19651
+ level: import("../types/index.js").HeadingLevel;
19652
19652
  title: string;
19653
19653
  description?: string | undefined;
19654
19654
  children: ({
@@ -19792,7 +19792,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
19792
19792
  } | {
19793
19793
  type: "SectionBlock";
19794
19794
  props: {
19795
- level: import("../types").HeadingLevel;
19795
+ level: import("../types/index.js").HeadingLevel;
19796
19796
  title: string;
19797
19797
  description?: string | undefined;
19798
19798
  children: ({
@@ -19884,7 +19884,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
19884
19884
  } | {
19885
19885
  type: "SectionBlock";
19886
19886
  props: {
19887
- level: import("../types").HeadingLevel;
19887
+ level: import("../types/index.js").HeadingLevel;
19888
19888
  title: string;
19889
19889
  description?: string | undefined;
19890
19890
  children: ({
@@ -20163,7 +20163,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
20163
20163
  } | {
20164
20164
  type: "SectionBlock";
20165
20165
  props: {
20166
- level: import("../types").HeadingLevel;
20166
+ level: import("../types/index.js").HeadingLevel;
20167
20167
  title: string;
20168
20168
  description?: string | undefined;
20169
20169
  children: ({
@@ -20305,7 +20305,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
20305
20305
  } | {
20306
20306
  type: "SectionBlock";
20307
20307
  props: {
20308
- level: import("../types").HeadingLevel;
20308
+ level: import("../types/index.js").HeadingLevel;
20309
20309
  title: string;
20310
20310
  description?: string | undefined;
20311
20311
  children: ({
@@ -20392,7 +20392,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
20392
20392
  } | {
20393
20393
  type: "SectionBlock";
20394
20394
  props: {
20395
- level: import("../types").HeadingLevel;
20395
+ level: import("../types/index.js").HeadingLevel;
20396
20396
  title: string;
20397
20397
  description?: string | undefined;
20398
20398
  children: ({
@@ -20528,7 +20528,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
20528
20528
  } | {
20529
20529
  type: "SectionBlock";
20530
20530
  props: {
20531
- level: import("../types").HeadingLevel;
20531
+ level: import("../types/index.js").HeadingLevel;
20532
20532
  title: string;
20533
20533
  description?: string | undefined;
20534
20534
  children: ({
@@ -20619,7 +20619,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
20619
20619
  } | {
20620
20620
  type: "SectionBlock";
20621
20621
  props: {
20622
- level: import("../types").HeadingLevel;
20622
+ level: import("../types/index.js").HeadingLevel;
20623
20623
  title: string;
20624
20624
  description?: string | undefined;
20625
20625
  children: ({
@@ -20900,7 +20900,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
20900
20900
  } | {
20901
20901
  type: "SectionBlock";
20902
20902
  props: {
20903
- level: import("../types").HeadingLevel;
20903
+ level: import("../types/index.js").HeadingLevel;
20904
20904
  title: string;
20905
20905
  description?: string | undefined;
20906
20906
  children: ({
@@ -21044,7 +21044,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
21044
21044
  } | {
21045
21045
  type: "SectionBlock";
21046
21046
  props: {
21047
- level: import("../types").HeadingLevel;
21047
+ level: import("../types/index.js").HeadingLevel;
21048
21048
  title: string;
21049
21049
  description?: string | undefined;
21050
21050
  children: ({
@@ -21132,7 +21132,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
21132
21132
  } | {
21133
21133
  type: "SectionBlock";
21134
21134
  props: {
21135
- level: import("../types").HeadingLevel;
21135
+ level: import("../types/index.js").HeadingLevel;
21136
21136
  title: string;
21137
21137
  description?: string | undefined;
21138
21138
  children: ({
@@ -21268,7 +21268,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
21268
21268
  } | {
21269
21269
  type: "SectionBlock";
21270
21270
  props: {
21271
- level: import("../types").HeadingLevel;
21271
+ level: import("../types/index.js").HeadingLevel;
21272
21272
  title: string;
21273
21273
  description?: string | undefined;
21274
21274
  children: ({
@@ -21379,7 +21379,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
21379
21379
  } | {
21380
21380
  type: "SectionBlock";
21381
21381
  props: {
21382
- level: import("../types").HeadingLevel;
21382
+ level: import("../types/index.js").HeadingLevel;
21383
21383
  title: string;
21384
21384
  description?: string | undefined;
21385
21385
  children: ({
@@ -22174,7 +22174,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
22174
22174
  } | {
22175
22175
  type: "SectionBlock";
22176
22176
  props: {
22177
- level: import("../types").HeadingLevel;
22177
+ level: import("../types/index.js").HeadingLevel;
22178
22178
  title: string;
22179
22179
  description?: string | undefined;
22180
22180
  children: ({
@@ -22465,7 +22465,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
22465
22465
  } | {
22466
22466
  type: "SectionBlock";
22467
22467
  props: {
22468
- level: import("../types").HeadingLevel;
22468
+ level: import("../types/index.js").HeadingLevel;
22469
22469
  title: string;
22470
22470
  description?: string | undefined;
22471
22471
  children: ({
@@ -22607,7 +22607,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
22607
22607
  } | {
22608
22608
  type: "SectionBlock";
22609
22609
  props: {
22610
- level: import("../types").HeadingLevel;
22610
+ level: import("../types/index.js").HeadingLevel;
22611
22611
  title: string;
22612
22612
  description?: string | undefined;
22613
22613
  children: ({
@@ -22694,7 +22694,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
22694
22694
  } | {
22695
22695
  type: "SectionBlock";
22696
22696
  props: {
22697
- level: import("../types").HeadingLevel;
22697
+ level: import("../types/index.js").HeadingLevel;
22698
22698
  title: string;
22699
22699
  description?: string | undefined;
22700
22700
  children: ({
@@ -22838,7 +22838,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
22838
22838
  } | {
22839
22839
  type: "SectionBlock";
22840
22840
  props: {
22841
- level: import("../types").HeadingLevel;
22841
+ level: import("../types/index.js").HeadingLevel;
22842
22842
  title: string;
22843
22843
  description?: string | undefined;
22844
22844
  children: ({
@@ -22949,7 +22949,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
22949
22949
  } | {
22950
22950
  type: "SectionBlock";
22951
22951
  props: {
22952
- level: import("../types").HeadingLevel;
22952
+ level: import("../types/index.js").HeadingLevel;
22953
22953
  title: string;
22954
22954
  description?: string | undefined;
22955
22955
  children: ({
@@ -23218,7 +23218,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
23218
23218
  } | {
23219
23219
  type: "SectionBlock";
23220
23220
  props: {
23221
- level: import("../types").HeadingLevel;
23221
+ level: import("../types/index.js").HeadingLevel;
23222
23222
  title: string;
23223
23223
  description?: string | undefined;
23224
23224
  children: ({
@@ -23360,7 +23360,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
23360
23360
  } | {
23361
23361
  type: "SectionBlock";
23362
23362
  props: {
23363
- level: import("../types").HeadingLevel;
23363
+ level: import("../types/index.js").HeadingLevel;
23364
23364
  title: string;
23365
23365
  description?: string | undefined;
23366
23366
  children: ({
@@ -23466,7 +23466,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
23466
23466
  } | {
23467
23467
  type: "SectionBlock";
23468
23468
  props: {
23469
- level: import("../types").HeadingLevel;
23469
+ level: import("../types/index.js").HeadingLevel;
23470
23470
  title: string;
23471
23471
  description?: string | undefined;
23472
23472
  children: ({
@@ -23589,7 +23589,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
23589
23589
  } | {
23590
23590
  type: "SectionBlock";
23591
23591
  props: {
23592
- level: import("../types").HeadingLevel;
23592
+ level: import("../types/index.js").HeadingLevel;
23593
23593
  title: string;
23594
23594
  description?: string | undefined;
23595
23595
  children: ({
@@ -23699,7 +23699,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
23699
23699
  } | {
23700
23700
  type: "SectionBlock";
23701
23701
  props: {
23702
- level: import("../types").HeadingLevel;
23702
+ level: import("../types/index.js").HeadingLevel;
23703
23703
  title: string;
23704
23704
  description?: string | undefined;
23705
23705
  children: ({
@@ -23970,7 +23970,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
23970
23970
  } | {
23971
23971
  type: "SectionBlock";
23972
23972
  props: {
23973
- level: import("../types").HeadingLevel;
23973
+ level: import("../types/index.js").HeadingLevel;
23974
23974
  title: string;
23975
23975
  description?: string | undefined;
23976
23976
  children: ({
@@ -24114,7 +24114,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
24114
24114
  } | {
24115
24115
  type: "SectionBlock";
24116
24116
  props: {
24117
- level: import("../types").HeadingLevel;
24117
+ level: import("../types/index.js").HeadingLevel;
24118
24118
  title: string;
24119
24119
  description?: string | undefined;
24120
24120
  children: ({
@@ -24221,7 +24221,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
24221
24221
  } | {
24222
24222
  type: "SectionBlock";
24223
24223
  props: {
24224
- level: import("../types").HeadingLevel;
24224
+ level: import("../types/index.js").HeadingLevel;
24225
24225
  title: string;
24226
24226
  description?: string | undefined;
24227
24227
  children: ({
@@ -24344,7 +24344,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
24344
24344
  } | {
24345
24345
  type: "SectionBlock";
24346
24346
  props: {
24347
- level: import("../types").HeadingLevel;
24347
+ level: import("../types/index.js").HeadingLevel;
24348
24348
  title: string;
24349
24349
  description?: string | undefined;
24350
24350
  children: ({
@@ -24459,7 +24459,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
24459
24459
  } | {
24460
24460
  type: "SectionBlock";
24461
24461
  props: {
24462
- level: import("../types").HeadingLevel;
24462
+ level: import("../types/index.js").HeadingLevel;
24463
24463
  title: string;
24464
24464
  description?: string | undefined;
24465
24465
  children: ({
@@ -25234,7 +25234,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
25234
25234
  } | {
25235
25235
  type: "SectionBlock";
25236
25236
  props: {
25237
- level: import("../types").HeadingLevel;
25237
+ level: import("../types/index.js").HeadingLevel;
25238
25238
  title: string;
25239
25239
  description?: string | undefined;
25240
25240
  children: ({
@@ -25513,7 +25513,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
25513
25513
  } | {
25514
25514
  type: "SectionBlock";
25515
25515
  props: {
25516
- level: import("../types").HeadingLevel;
25516
+ level: import("../types/index.js").HeadingLevel;
25517
25517
  title: string;
25518
25518
  description?: string | undefined;
25519
25519
  children: ({
@@ -25655,7 +25655,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
25655
25655
  } | {
25656
25656
  type: "SectionBlock";
25657
25657
  props: {
25658
- level: import("../types").HeadingLevel;
25658
+ level: import("../types/index.js").HeadingLevel;
25659
25659
  title: string;
25660
25660
  description?: string | undefined;
25661
25661
  children: ({
@@ -25742,7 +25742,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
25742
25742
  } | {
25743
25743
  type: "SectionBlock";
25744
25744
  props: {
25745
- level: import("../types").HeadingLevel;
25745
+ level: import("../types/index.js").HeadingLevel;
25746
25746
  title: string;
25747
25747
  description?: string | undefined;
25748
25748
  children: ({
@@ -25878,7 +25878,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
25878
25878
  } | {
25879
25879
  type: "SectionBlock";
25880
25880
  props: {
25881
- level: import("../types").HeadingLevel;
25881
+ level: import("../types/index.js").HeadingLevel;
25882
25882
  title: string;
25883
25883
  description?: string | undefined;
25884
25884
  children: ({
@@ -25985,7 +25985,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
25985
25985
  } | {
25986
25986
  type: "SectionBlock";
25987
25987
  props: {
25988
- level: import("../types").HeadingLevel;
25988
+ level: import("../types/index.js").HeadingLevel;
25989
25989
  title: string;
25990
25990
  description?: string | undefined;
25991
25991
  children: ({
@@ -26254,7 +26254,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
26254
26254
  } | {
26255
26255
  type: "SectionBlock";
26256
26256
  props: {
26257
- level: import("../types").HeadingLevel;
26257
+ level: import("../types/index.js").HeadingLevel;
26258
26258
  title: string;
26259
26259
  description?: string | undefined;
26260
26260
  children: ({
@@ -26396,7 +26396,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
26396
26396
  } | {
26397
26397
  type: "SectionBlock";
26398
26398
  props: {
26399
- level: import("../types").HeadingLevel;
26399
+ level: import("../types/index.js").HeadingLevel;
26400
26400
  title: string;
26401
26401
  description?: string | undefined;
26402
26402
  children: ({
@@ -26502,7 +26502,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
26502
26502
  } | {
26503
26503
  type: "SectionBlock";
26504
26504
  props: {
26505
- level: import("../types").HeadingLevel;
26505
+ level: import("../types/index.js").HeadingLevel;
26506
26506
  title: string;
26507
26507
  description?: string | undefined;
26508
26508
  children: ({
@@ -26625,7 +26625,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
26625
26625
  } | {
26626
26626
  type: "SectionBlock";
26627
26627
  props: {
26628
- level: import("../types").HeadingLevel;
26628
+ level: import("../types/index.js").HeadingLevel;
26629
26629
  title: string;
26630
26630
  description?: string | undefined;
26631
26631
  children: ({
@@ -26735,7 +26735,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
26735
26735
  } | {
26736
26736
  type: "SectionBlock";
26737
26737
  props: {
26738
- level: import("../types").HeadingLevel;
26738
+ level: import("../types/index.js").HeadingLevel;
26739
26739
  title: string;
26740
26740
  description?: string | undefined;
26741
26741
  children: ({
@@ -26998,7 +26998,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
26998
26998
  } | {
26999
26999
  type: "SectionBlock";
27000
27000
  props: {
27001
- level: import("../types").HeadingLevel;
27001
+ level: import("../types/index.js").HeadingLevel;
27002
27002
  title: string;
27003
27003
  description?: string | undefined;
27004
27004
  children: ({
@@ -27134,7 +27134,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
27134
27134
  } | {
27135
27135
  type: "SectionBlock";
27136
27136
  props: {
27137
- level: import("../types").HeadingLevel;
27137
+ level: import("../types/index.js").HeadingLevel;
27138
27138
  title: string;
27139
27139
  description?: string | undefined;
27140
27140
  children: ({
@@ -27237,7 +27237,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
27237
27237
  } | {
27238
27238
  type: "SectionBlock";
27239
27239
  props: {
27240
- level: import("../types").HeadingLevel;
27240
+ level: import("../types/index.js").HeadingLevel;
27241
27241
  title: string;
27242
27242
  description?: string | undefined;
27243
27243
  children: ({
@@ -27360,7 +27360,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
27360
27360
  } | {
27361
27361
  type: "SectionBlock";
27362
27362
  props: {
27363
- level: import("../types").HeadingLevel;
27363
+ level: import("../types/index.js").HeadingLevel;
27364
27364
  title: string;
27365
27365
  description?: string | undefined;
27366
27366
  children: ({
@@ -27474,7 +27474,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
27474
27474
  } | {
27475
27475
  type: "SectionBlock";
27476
27476
  props: {
27477
- level: import("../types").HeadingLevel;
27477
+ level: import("../types/index.js").HeadingLevel;
27478
27478
  title: string;
27479
27479
  description?: string | undefined;
27480
27480
  children: ({
@@ -28254,7 +28254,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
28254
28254
  } | {
28255
28255
  type: "SectionBlock";
28256
28256
  props: {
28257
- level: import("../types").HeadingLevel;
28257
+ level: import("../types/index.js").HeadingLevel;
28258
28258
  title: string;
28259
28259
  description?: string | undefined;
28260
28260
  children: ({
@@ -28535,7 +28535,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
28535
28535
  } | {
28536
28536
  type: "SectionBlock";
28537
28537
  props: {
28538
- level: import("../types").HeadingLevel;
28538
+ level: import("../types/index.js").HeadingLevel;
28539
28539
  title: string;
28540
28540
  description?: string | undefined;
28541
28541
  children: ({
@@ -28679,7 +28679,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
28679
28679
  } | {
28680
28680
  type: "SectionBlock";
28681
28681
  props: {
28682
- level: import("../types").HeadingLevel;
28682
+ level: import("../types/index.js").HeadingLevel;
28683
28683
  title: string;
28684
28684
  description?: string | undefined;
28685
28685
  children: ({
@@ -28767,7 +28767,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
28767
28767
  } | {
28768
28768
  type: "SectionBlock";
28769
28769
  props: {
28770
- level: import("../types").HeadingLevel;
28770
+ level: import("../types/index.js").HeadingLevel;
28771
28771
  title: string;
28772
28772
  description?: string | undefined;
28773
28773
  children: ({
@@ -28903,7 +28903,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
28903
28903
  } | {
28904
28904
  type: "SectionBlock";
28905
28905
  props: {
28906
- level: import("../types").HeadingLevel;
28906
+ level: import("../types/index.js").HeadingLevel;
28907
28907
  title: string;
28908
28908
  description?: string | undefined;
28909
28909
  children: ({
@@ -29010,7 +29010,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
29010
29010
  } | {
29011
29011
  type: "SectionBlock";
29012
29012
  props: {
29013
- level: import("../types").HeadingLevel;
29013
+ level: import("../types/index.js").HeadingLevel;
29014
29014
  title: string;
29015
29015
  description?: string | undefined;
29016
29016
  children: ({
@@ -29281,7 +29281,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
29281
29281
  } | {
29282
29282
  type: "SectionBlock";
29283
29283
  props: {
29284
- level: import("../types").HeadingLevel;
29284
+ level: import("../types/index.js").HeadingLevel;
29285
29285
  title: string;
29286
29286
  description?: string | undefined;
29287
29287
  children: ({
@@ -29425,7 +29425,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
29425
29425
  } | {
29426
29426
  type: "SectionBlock";
29427
29427
  props: {
29428
- level: import("../types").HeadingLevel;
29428
+ level: import("../types/index.js").HeadingLevel;
29429
29429
  title: string;
29430
29430
  description?: string | undefined;
29431
29431
  children: ({
@@ -29532,7 +29532,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
29532
29532
  } | {
29533
29533
  type: "SectionBlock";
29534
29534
  props: {
29535
- level: import("../types").HeadingLevel;
29535
+ level: import("../types/index.js").HeadingLevel;
29536
29536
  title: string;
29537
29537
  description?: string | undefined;
29538
29538
  children: ({
@@ -29655,7 +29655,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
29655
29655
  } | {
29656
29656
  type: "SectionBlock";
29657
29657
  props: {
29658
- level: import("../types").HeadingLevel;
29658
+ level: import("../types/index.js").HeadingLevel;
29659
29659
  title: string;
29660
29660
  description?: string | undefined;
29661
29661
  children: ({
@@ -29766,7 +29766,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
29766
29766
  } | {
29767
29767
  type: "SectionBlock";
29768
29768
  props: {
29769
- level: import("../types").HeadingLevel;
29769
+ level: import("../types/index.js").HeadingLevel;
29770
29770
  title: string;
29771
29771
  description?: string | undefined;
29772
29772
  children: ({
@@ -30029,7 +30029,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
30029
30029
  } | {
30030
30030
  type: "SectionBlock";
30031
30031
  props: {
30032
- level: import("../types").HeadingLevel;
30032
+ level: import("../types/index.js").HeadingLevel;
30033
30033
  title: string;
30034
30034
  description?: string | undefined;
30035
30035
  children: ({
@@ -30165,7 +30165,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
30165
30165
  } | {
30166
30166
  type: "SectionBlock";
30167
30167
  props: {
30168
- level: import("../types").HeadingLevel;
30168
+ level: import("../types/index.js").HeadingLevel;
30169
30169
  title: string;
30170
30170
  description?: string | undefined;
30171
30171
  children: ({
@@ -30268,7 +30268,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
30268
30268
  } | {
30269
30269
  type: "SectionBlock";
30270
30270
  props: {
30271
- level: import("../types").HeadingLevel;
30271
+ level: import("../types/index.js").HeadingLevel;
30272
30272
  title: string;
30273
30273
  description?: string | undefined;
30274
30274
  children: ({
@@ -30391,7 +30391,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
30391
30391
  } | {
30392
30392
  type: "SectionBlock";
30393
30393
  props: {
30394
- level: import("../types").HeadingLevel;
30394
+ level: import("../types/index.js").HeadingLevel;
30395
30395
  title: string;
30396
30396
  description?: string | undefined;
30397
30397
  children: ({