@almadar/core 10.70.0 → 10.71.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,10 +1,10 @@
1
- import { A as AnyPatternConfig, h as RenderBinding, F as FieldValue, b0 as PatternType } from '../effect-CNaVPA4-.js';
2
- export { aV as PATTERN_TYPES, aZ as PatternConfig, a_ as PatternProps, a$ as PatternPropsMap, cT as isValidPatternType } from '../effect-CNaVPA4-.js';
1
+ import { A as AnyPatternConfig, h as RenderBinding, F as FieldValue, b0 as PatternType } from '../effect-CrsTJ7h8.js';
2
+ export { aV as PATTERN_TYPES, aZ as PatternConfig, a_ as PatternProps, a$ as PatternPropsMap, cT as isValidPatternType } from '../effect-CrsTJ7h8.js';
3
3
  import { d as EventPayloadValue, a as EventPayload, J as JsonValue } from '../expression-Fk8bQWef.js';
4
4
  import 'zod';
5
5
 
6
6
  var version$3 = "1.0.0";
7
- var exportedAt$3 = "2026-08-25T01:35:07.912Z";
7
+ var exportedAt$3 = "2026-08-28T09:02:57.076Z";
8
8
  var patterns = {
9
9
  "entity-table": {
10
10
  type: "entity-table",
@@ -26475,91 +26475,6 @@ var patterns = {
26475
26475
  }
26476
26476
  }
26477
26477
  },
26478
- "rich-block-editor": {
26479
- type: "rich-block-editor",
26480
- category: "display",
26481
- tier: "molecules",
26482
- family: "core",
26483
- description: "RichBlockEditor component",
26484
- suggestedFor: [
26485
- "rich",
26486
- "block",
26487
- "editor",
26488
- "rich block editor"
26489
- ],
26490
- typicalSize: "large",
26491
- propsSchema: {
26492
- initialBlocks: {
26493
- types: [
26494
- "object",
26495
- "array"
26496
- ],
26497
- description: "Initial block payload — the rows that orb-bound traits emit. Items missing id/type are normalized into paragraph blocks at mount.",
26498
- kind: "entity",
26499
- cardinality: "collection"
26500
- },
26501
- onChange: {
26502
- types: [
26503
- "function"
26504
- ],
26505
- description: "onChange prop",
26506
- kind: "callback",
26507
- callbackArgs: [
26508
- {
26509
- name: "blocks",
26510
- type: "array"
26511
- }
26512
- ]
26513
- },
26514
- changeEvent: {
26515
- types: [
26516
- "string"
26517
- ],
26518
- description: "changeEvent prop",
26519
- kind: "event-ref",
26520
- emitPayloadSchema: [
26521
- {
26522
- name: "blocks",
26523
- type: "array",
26524
- required: true
26525
- }
26526
- ]
26527
- },
26528
- readOnly: {
26529
- types: [
26530
- "boolean"
26531
- ],
26532
- description: "readOnly prop",
26533
- "default": false
26534
- },
26535
- placeholder: {
26536
- types: [
26537
- "string"
26538
- ],
26539
- description: "placeholder prop"
26540
- },
26541
- enableBlocks: {
26542
- types: [
26543
- "boolean"
26544
- ],
26545
- description: "Opt-in to the Notion-style block authoring chrome (insert toolbar, per-row +/menu gutter, turn-into menu). Off by default: the editor renders as a plain rich text surface that edits block content inline without any add-block affordances.",
26546
- "default": true
26547
- },
26548
- showToolbar: {
26549
- types: [
26550
- "boolean"
26551
- ],
26552
- description: "showToolbar prop",
26553
- "default": true
26554
- },
26555
- className: {
26556
- types: [
26557
- "string"
26558
- ],
26559
- description: "className prop"
26560
- }
26561
- }
26562
- },
26563
26478
  "version-diff": {
26564
26479
  type: "version-diff",
26565
26480
  category: "display",
@@ -47884,6 +47799,399 @@ var patterns = {
47884
47799
  },
47885
47800
  drawable: true,
47886
47801
  drawHost: true
47802
+ },
47803
+ "rich-text-editor": {
47804
+ type: "rich-text-editor",
47805
+ category: "component",
47806
+ tier: "molecules",
47807
+ family: "core",
47808
+ description: "RichTextEditor component",
47809
+ suggestedFor: [
47810
+ "rich",
47811
+ "text",
47812
+ "editor",
47813
+ "rich text editor"
47814
+ ],
47815
+ typicalSize: "medium",
47816
+ propsSchema: {
47817
+ value: {
47818
+ types: [
47819
+ "string"
47820
+ ],
47821
+ description: "The rich text content as HTML. Sanitized before rendering and on every change."
47822
+ },
47823
+ onChange: {
47824
+ types: [
47825
+ "function"
47826
+ ],
47827
+ description: "onChange prop",
47828
+ kind: "callback",
47829
+ callbackArgs: [
47830
+ {
47831
+ name: "value",
47832
+ type: "string"
47833
+ }
47834
+ ]
47835
+ },
47836
+ changeEvent: {
47837
+ types: [
47838
+ "string"
47839
+ ],
47840
+ description: "changeEvent prop",
47841
+ kind: "event-ref",
47842
+ emitPayloadSchema: [
47843
+ {
47844
+ name: "value",
47845
+ type: "string",
47846
+ required: true
47847
+ }
47848
+ ]
47849
+ },
47850
+ readOnly: {
47851
+ types: [
47852
+ "boolean"
47853
+ ],
47854
+ description: "readOnly prop",
47855
+ "default": false
47856
+ },
47857
+ placeholder: {
47858
+ types: [
47859
+ "string"
47860
+ ],
47861
+ description: "placeholder prop"
47862
+ },
47863
+ showToolbar: {
47864
+ types: [
47865
+ "boolean"
47866
+ ],
47867
+ description: "showToolbar prop",
47868
+ "default": true
47869
+ },
47870
+ className: {
47871
+ types: [
47872
+ "string"
47873
+ ],
47874
+ description: "className prop"
47875
+ }
47876
+ }
47877
+ },
47878
+ "document-panel": {
47879
+ type: "document-panel",
47880
+ category: "component",
47881
+ tier: "molecules",
47882
+ family: "core",
47883
+ description: "DocumentPanel — a record rendered as one continuous document: editable title over the rich-text body, editing controls tucked into the header corner.",
47884
+ capabilities: "document page, note editor, wiki page, article editor, writing surface, rich text document, content editing canvas",
47885
+ suggestedFor: [
47886
+ "document",
47887
+ "panel",
47888
+ "document panel"
47889
+ ],
47890
+ typicalSize: "medium",
47891
+ propsSchema: {
47892
+ entity: {
47893
+ types: [
47894
+ "object"
47895
+ ],
47896
+ description: "The loaded record — supplies the id every commit event carries.",
47897
+ kind: "entity",
47898
+ cardinality: "record"
47899
+ },
47900
+ title: {
47901
+ types: [
47902
+ "string"
47903
+ ],
47904
+ description: "Document title (falls back to \"Untitled\" for a blank draft)"
47905
+ },
47906
+ subtitle: {
47907
+ types: [
47908
+ "string"
47909
+ ],
47910
+ description: "Muted byline under the title; hidden when empty"
47911
+ },
47912
+ value: {
47913
+ types: [
47914
+ "string"
47915
+ ],
47916
+ description: "The document body as rich-text HTML"
47917
+ },
47918
+ actions: {
47919
+ types: [
47920
+ "array"
47921
+ ],
47922
+ description: "Header actions (settings, history, …). At most one explicit primary stays inline; the rest live under a single \"⋯\" menu — the title owns its row.",
47923
+ kind: "event-list",
47924
+ eventField: "event",
47925
+ items: {
47926
+ types: [
47927
+ "object"
47928
+ ],
47929
+ properties: {
47930
+ label: {
47931
+ types: [
47932
+ "string"
47933
+ ]
47934
+ },
47935
+ event: {
47936
+ types: [
47937
+ "string"
47938
+ ]
47939
+ },
47940
+ icon: {
47941
+ types: [
47942
+ "icon",
47943
+ "string"
47944
+ ]
47945
+ },
47946
+ variant: {
47947
+ types: [
47948
+ "string"
47949
+ ],
47950
+ enumValues: [
47951
+ "primary",
47952
+ "secondary",
47953
+ "ghost",
47954
+ "danger"
47955
+ ]
47956
+ }
47957
+ },
47958
+ required: [
47959
+ "label"
47960
+ ]
47961
+ }
47962
+ },
47963
+ maxInlineActions: {
47964
+ types: [
47965
+ "number"
47966
+ ],
47967
+ description: "0 collapses even the primary action into the menu"
47968
+ },
47969
+ editing: {
47970
+ types: [
47971
+ "boolean"
47972
+ ],
47973
+ description: "false = read surface with click-to-edit body; true = live editor",
47974
+ "default": false
47975
+ },
47976
+ titleCommitEvent: {
47977
+ types: [
47978
+ "string"
47979
+ ],
47980
+ description: "Emitted when the title commits: { title, id }",
47981
+ kind: "event-ref",
47982
+ emitPayloadSchema: [
47983
+ {
47984
+ name: "title",
47985
+ type: "string",
47986
+ required: true
47987
+ },
47988
+ {
47989
+ name: "id",
47990
+ type: "string",
47991
+ required: true
47992
+ }
47993
+ ]
47994
+ },
47995
+ contentChangeEvent: {
47996
+ types: [
47997
+ "string"
47998
+ ],
47999
+ description: "Forwarded to the embedded RichTextEditor's autosave stream: { value }",
48000
+ kind: "event-ref",
48001
+ emitPayloadSchema: [
48002
+ {
48003
+ name: "value",
48004
+ type: "string",
48005
+ required: true
48006
+ }
48007
+ ]
48008
+ },
48009
+ editEvent: {
48010
+ types: [
48011
+ "string"
48012
+ ],
48013
+ description: "Emitted by the header Edit affordance and a click on the read body: { id }",
48014
+ kind: "event-ref",
48015
+ emitPayloadSchema: [
48016
+ {
48017
+ name: "id",
48018
+ type: "string",
48019
+ required: true
48020
+ }
48021
+ ]
48022
+ },
48023
+ doneEvent: {
48024
+ types: [
48025
+ "string"
48026
+ ],
48027
+ description: "Emitted by the Done button that ends the editing session: { id }",
48028
+ kind: "event-ref",
48029
+ emitPayloadSchema: [
48030
+ {
48031
+ name: "id",
48032
+ type: "string",
48033
+ required: true
48034
+ }
48035
+ ]
48036
+ },
48037
+ editLabel: {
48038
+ types: [
48039
+ "string"
48040
+ ],
48041
+ description: "editLabel prop"
48042
+ },
48043
+ doneLabel: {
48044
+ types: [
48045
+ "string"
48046
+ ],
48047
+ description: "doneLabel prop"
48048
+ },
48049
+ autosaveHint: {
48050
+ types: [
48051
+ "string"
48052
+ ],
48053
+ description: "Muted caption beside Done telling the author work persists on its own"
48054
+ },
48055
+ placeholder: {
48056
+ types: [
48057
+ "string"
48058
+ ],
48059
+ description: "Placeholder for an empty body"
48060
+ },
48061
+ className: {
48062
+ types: [
48063
+ "string"
48064
+ ],
48065
+ description: "className prop"
48066
+ }
48067
+ }
48068
+ },
48069
+ "document-details": {
48070
+ type: "document-details",
48071
+ category: "display",
48072
+ tier: "molecules",
48073
+ family: "core",
48074
+ description: "DocumentDetails — the document's metadata as a compact settings card for the rail beside a DocumentPanel, each property committing in place.",
48075
+ capabilities: "document settings, page details, post settings sidebar, metadata panel, document properties, publish settings",
48076
+ suggestedFor: [
48077
+ "document",
48078
+ "details",
48079
+ "document details"
48080
+ ],
48081
+ typicalSize: "medium",
48082
+ propsSchema: {
48083
+ entity: {
48084
+ types: [
48085
+ "object"
48086
+ ],
48087
+ description: "The loaded record — supplies the id every commit carries and the values the rows read.",
48088
+ kind: "entity",
48089
+ cardinality: "record"
48090
+ },
48091
+ fields: {
48092
+ types: [
48093
+ "array"
48094
+ ],
48095
+ description: "The properties shown; empty renders nothing.",
48096
+ items: {
48097
+ types: [
48098
+ "object"
48099
+ ],
48100
+ properties: {
48101
+ name: {
48102
+ types: [
48103
+ "string"
48104
+ ]
48105
+ },
48106
+ key: {
48107
+ types: [
48108
+ "string"
48109
+ ]
48110
+ },
48111
+ label: {
48112
+ types: [
48113
+ "string"
48114
+ ]
48115
+ },
48116
+ header: {
48117
+ types: [
48118
+ "string"
48119
+ ]
48120
+ },
48121
+ icon: {
48122
+ types: [
48123
+ "icon",
48124
+ "string"
48125
+ ]
48126
+ },
48127
+ kind: {
48128
+ types: [
48129
+ "string"
48130
+ ],
48131
+ enumValues: [
48132
+ "text",
48133
+ "boolean",
48134
+ "select",
48135
+ "readonly"
48136
+ ]
48137
+ },
48138
+ options: {
48139
+ types: [
48140
+ "array"
48141
+ ],
48142
+ items: {
48143
+ types: [
48144
+ "string"
48145
+ ]
48146
+ }
48147
+ },
48148
+ format: {
48149
+ types: [
48150
+ "string"
48151
+ ],
48152
+ enumValues: [
48153
+ "date",
48154
+ "currency",
48155
+ "number",
48156
+ "boolean",
48157
+ "percent"
48158
+ ]
48159
+ }
48160
+ }
48161
+ }
48162
+ },
48163
+ metaCommitEvent: {
48164
+ types: [
48165
+ "string"
48166
+ ],
48167
+ description: "Emitted when a property commits: { id, patch } — patch carries the id plus the one changed field, ready for a partial persist update.",
48168
+ kind: "event-ref",
48169
+ emitPayloadSchema: [
48170
+ {
48171
+ name: "id",
48172
+ type: "string",
48173
+ required: true
48174
+ },
48175
+ {
48176
+ name: "patch",
48177
+ type: "object",
48178
+ required: true
48179
+ }
48180
+ ]
48181
+ },
48182
+ title: {
48183
+ types: [
48184
+ "string"
48185
+ ],
48186
+ description: "Card heading (defaults to the localized \"Details\")"
48187
+ },
48188
+ className: {
48189
+ types: [
48190
+ "string"
48191
+ ],
48192
+ description: "className prop"
48193
+ }
48194
+ }
47887
48195
  }
47888
48196
  };
47889
48197
  var categories$1 = [
@@ -50803,7 +51111,7 @@ var integratorsRegistry = {
50803
51111
  };
50804
51112
 
50805
51113
  var version$1 = "1.0.0";
50806
- var exportedAt$1 = "2026-08-25T01:35:07.912Z";
51114
+ var exportedAt$1 = "2026-08-28T09:02:57.076Z";
50807
51115
  var mappings = {
50808
51116
  "page-header": {
50809
51117
  component: "PageHeader",
@@ -51717,11 +52025,6 @@ var mappings = {
51717
52025
  importPath: "@/components/core/molecules/ReplyTree",
51718
52026
  category: "display"
51719
52027
  },
51720
- "rich-block-editor": {
51721
- component: "RichBlockEditor",
51722
- importPath: "@/components/core/molecules/RichBlockEditor",
51723
- category: "display"
51724
- },
51725
52028
  "version-diff": {
51726
52029
  component: "VersionDiff",
51727
52030
  importPath: "@/components/core/molecules/VersionDiff",
@@ -52206,6 +52509,21 @@ var mappings = {
52206
52509
  component: "DrawFxLayer",
52207
52510
  importPath: "@/components/game/molecules/DrawFxLayer",
52208
52511
  category: "game"
52512
+ },
52513
+ "rich-text-editor": {
52514
+ component: "RichTextEditor",
52515
+ importPath: "@/components/core/molecules/RichTextEditor",
52516
+ category: "component"
52517
+ },
52518
+ "document-panel": {
52519
+ component: "DocumentPanel",
52520
+ importPath: "@/components/core/molecules/DocumentPanel",
52521
+ category: "component"
52522
+ },
52523
+ "document-details": {
52524
+ component: "DocumentDetails",
52525
+ importPath: "@/components/core/molecules/DocumentDetails",
52526
+ category: "display"
52209
52527
  }
52210
52528
  };
52211
52529
  var componentMapping = {
@@ -52215,7 +52533,7 @@ var componentMapping = {
52215
52533
  };
52216
52534
 
52217
52535
  var version = "1.0.0";
52218
- var exportedAt = "2026-08-25T01:35:07.912Z";
52536
+ var exportedAt = "2026-08-28T09:02:57.076Z";
52219
52537
  var contracts = {
52220
52538
  form: {
52221
52539
  emits: [
@@ -70133,65 +70451,6 @@ declare const registry: {
70133
70451
  };
70134
70452
  };
70135
70453
  };
70136
- "rich-block-editor": {
70137
- type: string;
70138
- category: string;
70139
- tier: string;
70140
- family: string;
70141
- description: string;
70142
- suggestedFor: string[];
70143
- typicalSize: string;
70144
- propsSchema: {
70145
- initialBlocks: {
70146
- types: string[];
70147
- description: string;
70148
- kind: string;
70149
- cardinality: string;
70150
- };
70151
- onChange: {
70152
- types: string[];
70153
- description: string;
70154
- kind: string;
70155
- callbackArgs: {
70156
- name: string;
70157
- type: string;
70158
- }[];
70159
- };
70160
- changeEvent: {
70161
- types: string[];
70162
- description: string;
70163
- kind: string;
70164
- emitPayloadSchema: {
70165
- name: string;
70166
- type: string;
70167
- required: boolean;
70168
- }[];
70169
- };
70170
- readOnly: {
70171
- types: string[];
70172
- description: string;
70173
- default: boolean;
70174
- };
70175
- placeholder: {
70176
- types: string[];
70177
- description: string;
70178
- };
70179
- enableBlocks: {
70180
- types: string[];
70181
- description: string;
70182
- default: boolean;
70183
- };
70184
- showToolbar: {
70185
- types: string[];
70186
- description: string;
70187
- default: boolean;
70188
- };
70189
- className: {
70190
- types: string[];
70191
- description: string;
70192
- };
70193
- };
70194
- };
70195
70454
  "version-diff": {
70196
70455
  type: string;
70197
70456
  category: string;
@@ -82967,6 +83226,256 @@ declare const registry: {
82967
83226
  drawable: boolean;
82968
83227
  drawHost: boolean;
82969
83228
  };
83229
+ "rich-text-editor": {
83230
+ type: string;
83231
+ category: string;
83232
+ tier: string;
83233
+ family: string;
83234
+ description: string;
83235
+ suggestedFor: string[];
83236
+ typicalSize: string;
83237
+ propsSchema: {
83238
+ value: {
83239
+ types: string[];
83240
+ description: string;
83241
+ };
83242
+ onChange: {
83243
+ types: string[];
83244
+ description: string;
83245
+ kind: string;
83246
+ callbackArgs: {
83247
+ name: string;
83248
+ type: string;
83249
+ }[];
83250
+ };
83251
+ changeEvent: {
83252
+ types: string[];
83253
+ description: string;
83254
+ kind: string;
83255
+ emitPayloadSchema: {
83256
+ name: string;
83257
+ type: string;
83258
+ required: boolean;
83259
+ }[];
83260
+ };
83261
+ readOnly: {
83262
+ types: string[];
83263
+ description: string;
83264
+ default: boolean;
83265
+ };
83266
+ placeholder: {
83267
+ types: string[];
83268
+ description: string;
83269
+ };
83270
+ showToolbar: {
83271
+ types: string[];
83272
+ description: string;
83273
+ default: boolean;
83274
+ };
83275
+ className: {
83276
+ types: string[];
83277
+ description: string;
83278
+ };
83279
+ };
83280
+ };
83281
+ "document-panel": {
83282
+ type: string;
83283
+ category: string;
83284
+ tier: string;
83285
+ family: string;
83286
+ description: string;
83287
+ capabilities: string;
83288
+ suggestedFor: string[];
83289
+ typicalSize: string;
83290
+ propsSchema: {
83291
+ entity: {
83292
+ types: string[];
83293
+ description: string;
83294
+ kind: string;
83295
+ cardinality: string;
83296
+ };
83297
+ title: {
83298
+ types: string[];
83299
+ description: string;
83300
+ };
83301
+ subtitle: {
83302
+ types: string[];
83303
+ description: string;
83304
+ };
83305
+ value: {
83306
+ types: string[];
83307
+ description: string;
83308
+ };
83309
+ actions: {
83310
+ types: string[];
83311
+ description: string;
83312
+ kind: string;
83313
+ eventField: string;
83314
+ items: {
83315
+ types: string[];
83316
+ properties: {
83317
+ label: {
83318
+ types: string[];
83319
+ };
83320
+ event: {
83321
+ types: string[];
83322
+ };
83323
+ icon: {
83324
+ types: string[];
83325
+ };
83326
+ variant: {
83327
+ types: string[];
83328
+ enumValues: string[];
83329
+ };
83330
+ };
83331
+ required: string[];
83332
+ };
83333
+ };
83334
+ maxInlineActions: {
83335
+ types: string[];
83336
+ description: string;
83337
+ };
83338
+ editing: {
83339
+ types: string[];
83340
+ description: string;
83341
+ default: boolean;
83342
+ };
83343
+ titleCommitEvent: {
83344
+ types: string[];
83345
+ description: string;
83346
+ kind: string;
83347
+ emitPayloadSchema: {
83348
+ name: string;
83349
+ type: string;
83350
+ required: boolean;
83351
+ }[];
83352
+ };
83353
+ contentChangeEvent: {
83354
+ types: string[];
83355
+ description: string;
83356
+ kind: string;
83357
+ emitPayloadSchema: {
83358
+ name: string;
83359
+ type: string;
83360
+ required: boolean;
83361
+ }[];
83362
+ };
83363
+ editEvent: {
83364
+ types: string[];
83365
+ description: string;
83366
+ kind: string;
83367
+ emitPayloadSchema: {
83368
+ name: string;
83369
+ type: string;
83370
+ required: boolean;
83371
+ }[];
83372
+ };
83373
+ doneEvent: {
83374
+ types: string[];
83375
+ description: string;
83376
+ kind: string;
83377
+ emitPayloadSchema: {
83378
+ name: string;
83379
+ type: string;
83380
+ required: boolean;
83381
+ }[];
83382
+ };
83383
+ editLabel: {
83384
+ types: string[];
83385
+ description: string;
83386
+ };
83387
+ doneLabel: {
83388
+ types: string[];
83389
+ description: string;
83390
+ };
83391
+ autosaveHint: {
83392
+ types: string[];
83393
+ description: string;
83394
+ };
83395
+ placeholder: {
83396
+ types: string[];
83397
+ description: string;
83398
+ };
83399
+ className: {
83400
+ types: string[];
83401
+ description: string;
83402
+ };
83403
+ };
83404
+ };
83405
+ "document-details": {
83406
+ type: string;
83407
+ category: string;
83408
+ tier: string;
83409
+ family: string;
83410
+ description: string;
83411
+ capabilities: string;
83412
+ suggestedFor: string[];
83413
+ typicalSize: string;
83414
+ propsSchema: {
83415
+ entity: {
83416
+ types: string[];
83417
+ description: string;
83418
+ kind: string;
83419
+ cardinality: string;
83420
+ };
83421
+ fields: {
83422
+ types: string[];
83423
+ description: string;
83424
+ items: {
83425
+ types: string[];
83426
+ properties: {
83427
+ name: {
83428
+ types: string[];
83429
+ };
83430
+ key: {
83431
+ types: string[];
83432
+ };
83433
+ label: {
83434
+ types: string[];
83435
+ };
83436
+ header: {
83437
+ types: string[];
83438
+ };
83439
+ icon: {
83440
+ types: string[];
83441
+ };
83442
+ kind: {
83443
+ types: string[];
83444
+ enumValues: string[];
83445
+ };
83446
+ options: {
83447
+ types: string[];
83448
+ items: {
83449
+ types: string[];
83450
+ };
83451
+ };
83452
+ format: {
83453
+ types: string[];
83454
+ enumValues: string[];
83455
+ };
83456
+ };
83457
+ };
83458
+ };
83459
+ metaCommitEvent: {
83460
+ types: string[];
83461
+ description: string;
83462
+ kind: string;
83463
+ emitPayloadSchema: {
83464
+ name: string;
83465
+ type: string;
83466
+ required: boolean;
83467
+ }[];
83468
+ };
83469
+ title: {
83470
+ types: string[];
83471
+ description: string;
83472
+ };
83473
+ className: {
83474
+ types: string[];
83475
+ description: string;
83476
+ };
83477
+ };
83478
+ };
82970
83479
  };
82971
83480
  categories: string[];
82972
83481
  };
@@ -99151,65 +99660,6 @@ declare const PATTERN_REGISTRY: {
99151
99660
  };
99152
99661
  };
99153
99662
  };
99154
- "rich-block-editor": {
99155
- type: string;
99156
- category: string;
99157
- tier: string;
99158
- family: string;
99159
- description: string;
99160
- suggestedFor: string[];
99161
- typicalSize: string;
99162
- propsSchema: {
99163
- initialBlocks: {
99164
- types: string[];
99165
- description: string;
99166
- kind: string;
99167
- cardinality: string;
99168
- };
99169
- onChange: {
99170
- types: string[];
99171
- description: string;
99172
- kind: string;
99173
- callbackArgs: {
99174
- name: string;
99175
- type: string;
99176
- }[];
99177
- };
99178
- changeEvent: {
99179
- types: string[];
99180
- description: string;
99181
- kind: string;
99182
- emitPayloadSchema: {
99183
- name: string;
99184
- type: string;
99185
- required: boolean;
99186
- }[];
99187
- };
99188
- readOnly: {
99189
- types: string[];
99190
- description: string;
99191
- default: boolean;
99192
- };
99193
- placeholder: {
99194
- types: string[];
99195
- description: string;
99196
- };
99197
- enableBlocks: {
99198
- types: string[];
99199
- description: string;
99200
- default: boolean;
99201
- };
99202
- showToolbar: {
99203
- types: string[];
99204
- description: string;
99205
- default: boolean;
99206
- };
99207
- className: {
99208
- types: string[];
99209
- description: string;
99210
- };
99211
- };
99212
- };
99213
99663
  "version-diff": {
99214
99664
  type: string;
99215
99665
  category: string;
@@ -111985,6 +112435,256 @@ declare const PATTERN_REGISTRY: {
111985
112435
  drawable: boolean;
111986
112436
  drawHost: boolean;
111987
112437
  };
112438
+ "rich-text-editor": {
112439
+ type: string;
112440
+ category: string;
112441
+ tier: string;
112442
+ family: string;
112443
+ description: string;
112444
+ suggestedFor: string[];
112445
+ typicalSize: string;
112446
+ propsSchema: {
112447
+ value: {
112448
+ types: string[];
112449
+ description: string;
112450
+ };
112451
+ onChange: {
112452
+ types: string[];
112453
+ description: string;
112454
+ kind: string;
112455
+ callbackArgs: {
112456
+ name: string;
112457
+ type: string;
112458
+ }[];
112459
+ };
112460
+ changeEvent: {
112461
+ types: string[];
112462
+ description: string;
112463
+ kind: string;
112464
+ emitPayloadSchema: {
112465
+ name: string;
112466
+ type: string;
112467
+ required: boolean;
112468
+ }[];
112469
+ };
112470
+ readOnly: {
112471
+ types: string[];
112472
+ description: string;
112473
+ default: boolean;
112474
+ };
112475
+ placeholder: {
112476
+ types: string[];
112477
+ description: string;
112478
+ };
112479
+ showToolbar: {
112480
+ types: string[];
112481
+ description: string;
112482
+ default: boolean;
112483
+ };
112484
+ className: {
112485
+ types: string[];
112486
+ description: string;
112487
+ };
112488
+ };
112489
+ };
112490
+ "document-panel": {
112491
+ type: string;
112492
+ category: string;
112493
+ tier: string;
112494
+ family: string;
112495
+ description: string;
112496
+ capabilities: string;
112497
+ suggestedFor: string[];
112498
+ typicalSize: string;
112499
+ propsSchema: {
112500
+ entity: {
112501
+ types: string[];
112502
+ description: string;
112503
+ kind: string;
112504
+ cardinality: string;
112505
+ };
112506
+ title: {
112507
+ types: string[];
112508
+ description: string;
112509
+ };
112510
+ subtitle: {
112511
+ types: string[];
112512
+ description: string;
112513
+ };
112514
+ value: {
112515
+ types: string[];
112516
+ description: string;
112517
+ };
112518
+ actions: {
112519
+ types: string[];
112520
+ description: string;
112521
+ kind: string;
112522
+ eventField: string;
112523
+ items: {
112524
+ types: string[];
112525
+ properties: {
112526
+ label: {
112527
+ types: string[];
112528
+ };
112529
+ event: {
112530
+ types: string[];
112531
+ };
112532
+ icon: {
112533
+ types: string[];
112534
+ };
112535
+ variant: {
112536
+ types: string[];
112537
+ enumValues: string[];
112538
+ };
112539
+ };
112540
+ required: string[];
112541
+ };
112542
+ };
112543
+ maxInlineActions: {
112544
+ types: string[];
112545
+ description: string;
112546
+ };
112547
+ editing: {
112548
+ types: string[];
112549
+ description: string;
112550
+ default: boolean;
112551
+ };
112552
+ titleCommitEvent: {
112553
+ types: string[];
112554
+ description: string;
112555
+ kind: string;
112556
+ emitPayloadSchema: {
112557
+ name: string;
112558
+ type: string;
112559
+ required: boolean;
112560
+ }[];
112561
+ };
112562
+ contentChangeEvent: {
112563
+ types: string[];
112564
+ description: string;
112565
+ kind: string;
112566
+ emitPayloadSchema: {
112567
+ name: string;
112568
+ type: string;
112569
+ required: boolean;
112570
+ }[];
112571
+ };
112572
+ editEvent: {
112573
+ types: string[];
112574
+ description: string;
112575
+ kind: string;
112576
+ emitPayloadSchema: {
112577
+ name: string;
112578
+ type: string;
112579
+ required: boolean;
112580
+ }[];
112581
+ };
112582
+ doneEvent: {
112583
+ types: string[];
112584
+ description: string;
112585
+ kind: string;
112586
+ emitPayloadSchema: {
112587
+ name: string;
112588
+ type: string;
112589
+ required: boolean;
112590
+ }[];
112591
+ };
112592
+ editLabel: {
112593
+ types: string[];
112594
+ description: string;
112595
+ };
112596
+ doneLabel: {
112597
+ types: string[];
112598
+ description: string;
112599
+ };
112600
+ autosaveHint: {
112601
+ types: string[];
112602
+ description: string;
112603
+ };
112604
+ placeholder: {
112605
+ types: string[];
112606
+ description: string;
112607
+ };
112608
+ className: {
112609
+ types: string[];
112610
+ description: string;
112611
+ };
112612
+ };
112613
+ };
112614
+ "document-details": {
112615
+ type: string;
112616
+ category: string;
112617
+ tier: string;
112618
+ family: string;
112619
+ description: string;
112620
+ capabilities: string;
112621
+ suggestedFor: string[];
112622
+ typicalSize: string;
112623
+ propsSchema: {
112624
+ entity: {
112625
+ types: string[];
112626
+ description: string;
112627
+ kind: string;
112628
+ cardinality: string;
112629
+ };
112630
+ fields: {
112631
+ types: string[];
112632
+ description: string;
112633
+ items: {
112634
+ types: string[];
112635
+ properties: {
112636
+ name: {
112637
+ types: string[];
112638
+ };
112639
+ key: {
112640
+ types: string[];
112641
+ };
112642
+ label: {
112643
+ types: string[];
112644
+ };
112645
+ header: {
112646
+ types: string[];
112647
+ };
112648
+ icon: {
112649
+ types: string[];
112650
+ };
112651
+ kind: {
112652
+ types: string[];
112653
+ enumValues: string[];
112654
+ };
112655
+ options: {
112656
+ types: string[];
112657
+ items: {
112658
+ types: string[];
112659
+ };
112660
+ };
112661
+ format: {
112662
+ types: string[];
112663
+ enumValues: string[];
112664
+ };
112665
+ };
112666
+ };
112667
+ };
112668
+ metaCommitEvent: {
112669
+ types: string[];
112670
+ description: string;
112671
+ kind: string;
112672
+ emitPayloadSchema: {
112673
+ name: string;
112674
+ type: string;
112675
+ required: boolean;
112676
+ }[];
112677
+ };
112678
+ title: {
112679
+ types: string[];
112680
+ description: string;
112681
+ };
112682
+ className: {
112683
+ types: string[];
112684
+ description: string;
112685
+ };
112686
+ };
112687
+ };
111988
112688
  };
111989
112689
  categories: string[];
111990
112690
  };
@@ -115037,11 +115737,6 @@ declare const COMPONENT_MAPPING: {
115037
115737
  importPath: string;
115038
115738
  category: string;
115039
115739
  };
115040
- "rich-block-editor": {
115041
- component: string;
115042
- importPath: string;
115043
- category: string;
115044
- };
115045
115740
  "version-diff": {
115046
115741
  component: string;
115047
115742
  importPath: string;
@@ -115527,6 +116222,21 @@ declare const COMPONENT_MAPPING: {
115527
116222
  importPath: string;
115528
116223
  category: string;
115529
116224
  };
116225
+ "rich-text-editor": {
116226
+ component: string;
116227
+ importPath: string;
116228
+ category: string;
116229
+ };
116230
+ "document-panel": {
116231
+ component: string;
116232
+ importPath: string;
116233
+ category: string;
116234
+ };
116235
+ "document-details": {
116236
+ component: string;
116237
+ importPath: string;
116238
+ category: string;
116239
+ };
115530
116240
  };
115531
116241
  };
115532
116242
  declare const EVENT_CONTRACTS: {