@almadar/core 10.70.0 → 10.72.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-BftJTKJZ.js';
2
+ export { aV as PATTERN_TYPES, aZ as PatternConfig, a_ as PatternProps, a$ as PatternPropsMap, cT as isValidPatternType } from '../effect-BftJTKJZ.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-28T23:51:47.246Z";
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,397 @@ 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
+ id: {
47893
+ types: [
47894
+ "string"
47895
+ ],
47896
+ description: "The record's id — carried on every commit and action event."
47897
+ },
47898
+ title: {
47899
+ types: [
47900
+ "string"
47901
+ ],
47902
+ description: "Document title (falls back to \"Untitled\" for a blank draft)"
47903
+ },
47904
+ subtitle: {
47905
+ types: [
47906
+ "string"
47907
+ ],
47908
+ description: "Muted byline under the title; hidden when empty"
47909
+ },
47910
+ value: {
47911
+ types: [
47912
+ "string"
47913
+ ],
47914
+ description: "The document body as rich-text HTML"
47915
+ },
47916
+ actions: {
47917
+ types: [
47918
+ "array"
47919
+ ],
47920
+ description: "Header actions (settings, history, …). At most one explicit primary stays inline; the rest live under a single \"⋯\" menu — the title owns its row.",
47921
+ kind: "event-list",
47922
+ eventField: "event",
47923
+ items: {
47924
+ types: [
47925
+ "object"
47926
+ ],
47927
+ properties: {
47928
+ label: {
47929
+ types: [
47930
+ "string"
47931
+ ]
47932
+ },
47933
+ event: {
47934
+ types: [
47935
+ "string"
47936
+ ]
47937
+ },
47938
+ icon: {
47939
+ types: [
47940
+ "icon",
47941
+ "string"
47942
+ ]
47943
+ },
47944
+ variant: {
47945
+ types: [
47946
+ "string"
47947
+ ],
47948
+ enumValues: [
47949
+ "primary",
47950
+ "secondary",
47951
+ "ghost",
47952
+ "danger"
47953
+ ]
47954
+ }
47955
+ },
47956
+ required: [
47957
+ "label"
47958
+ ]
47959
+ }
47960
+ },
47961
+ maxInlineActions: {
47962
+ types: [
47963
+ "number"
47964
+ ],
47965
+ description: "0 collapses even the primary action into the menu"
47966
+ },
47967
+ editing: {
47968
+ types: [
47969
+ "boolean"
47970
+ ],
47971
+ description: "false = read surface with click-to-edit body; true = live editor",
47972
+ "default": false
47973
+ },
47974
+ titleCommitEvent: {
47975
+ types: [
47976
+ "string"
47977
+ ],
47978
+ description: "Emitted when the title commits: { title, id }",
47979
+ kind: "event-ref",
47980
+ emitPayloadSchema: [
47981
+ {
47982
+ name: "title",
47983
+ type: "string",
47984
+ required: true
47985
+ },
47986
+ {
47987
+ name: "id",
47988
+ type: "string",
47989
+ required: true
47990
+ }
47991
+ ]
47992
+ },
47993
+ contentChangeEvent: {
47994
+ types: [
47995
+ "string"
47996
+ ],
47997
+ description: "Forwarded to the embedded RichTextEditor's autosave stream: { value }",
47998
+ kind: "event-ref",
47999
+ emitPayloadSchema: [
48000
+ {
48001
+ name: "value",
48002
+ type: "string",
48003
+ required: true
48004
+ }
48005
+ ]
48006
+ },
48007
+ editEvent: {
48008
+ types: [
48009
+ "string"
48010
+ ],
48011
+ description: "Emitted by the header Edit affordance and a click on the read body: { id }",
48012
+ kind: "event-ref",
48013
+ emitPayloadSchema: [
48014
+ {
48015
+ name: "id",
48016
+ type: "string",
48017
+ required: true
48018
+ }
48019
+ ]
48020
+ },
48021
+ doneEvent: {
48022
+ types: [
48023
+ "string"
48024
+ ],
48025
+ description: "Emitted by the Done button that ends the editing session: { id }",
48026
+ kind: "event-ref",
48027
+ emitPayloadSchema: [
48028
+ {
48029
+ name: "id",
48030
+ type: "string",
48031
+ required: true
48032
+ }
48033
+ ]
48034
+ },
48035
+ editLabel: {
48036
+ types: [
48037
+ "string"
48038
+ ],
48039
+ description: "editLabel prop"
48040
+ },
48041
+ doneLabel: {
48042
+ types: [
48043
+ "string"
48044
+ ],
48045
+ description: "doneLabel prop"
48046
+ },
48047
+ autosaveHint: {
48048
+ types: [
48049
+ "string"
48050
+ ],
48051
+ description: "Muted caption beside Done telling the author work persists on its own"
48052
+ },
48053
+ placeholder: {
48054
+ types: [
48055
+ "string"
48056
+ ],
48057
+ description: "Placeholder for an empty body"
48058
+ },
48059
+ className: {
48060
+ types: [
48061
+ "string"
48062
+ ],
48063
+ description: "className prop"
48064
+ }
48065
+ }
48066
+ },
48067
+ "document-details": {
48068
+ type: "document-details",
48069
+ category: "display",
48070
+ tier: "molecules",
48071
+ family: "core",
48072
+ description: "DocumentDetails — the document's metadata as a compact settings card for the rail beside a DocumentPanel, each property committing in place.",
48073
+ capabilities: "document settings, page details, post settings sidebar, metadata panel, document properties, publish settings",
48074
+ suggestedFor: [
48075
+ "document",
48076
+ "details",
48077
+ "document details"
48078
+ ],
48079
+ typicalSize: "medium",
48080
+ propsSchema: {
48081
+ entity: {
48082
+ types: [
48083
+ "object"
48084
+ ],
48085
+ description: "The loaded record — supplies the id every commit carries and the values the rows read.",
48086
+ kind: "entity",
48087
+ cardinality: "record"
48088
+ },
48089
+ fields: {
48090
+ types: [
48091
+ "array"
48092
+ ],
48093
+ description: "The properties shown; empty renders nothing.",
48094
+ items: {
48095
+ types: [
48096
+ "object"
48097
+ ],
48098
+ properties: {
48099
+ name: {
48100
+ types: [
48101
+ "string"
48102
+ ]
48103
+ },
48104
+ key: {
48105
+ types: [
48106
+ "string"
48107
+ ]
48108
+ },
48109
+ label: {
48110
+ types: [
48111
+ "string"
48112
+ ]
48113
+ },
48114
+ header: {
48115
+ types: [
48116
+ "string"
48117
+ ]
48118
+ },
48119
+ icon: {
48120
+ types: [
48121
+ "icon",
48122
+ "string"
48123
+ ]
48124
+ },
48125
+ kind: {
48126
+ types: [
48127
+ "string"
48128
+ ],
48129
+ enumValues: [
48130
+ "text",
48131
+ "boolean",
48132
+ "select",
48133
+ "readonly"
48134
+ ]
48135
+ },
48136
+ options: {
48137
+ types: [
48138
+ "array"
48139
+ ],
48140
+ items: {
48141
+ types: [
48142
+ "string"
48143
+ ]
48144
+ }
48145
+ },
48146
+ format: {
48147
+ types: [
48148
+ "string"
48149
+ ],
48150
+ enumValues: [
48151
+ "date",
48152
+ "currency",
48153
+ "number",
48154
+ "boolean",
48155
+ "percent"
48156
+ ]
48157
+ }
48158
+ }
48159
+ }
48160
+ },
48161
+ metaCommitEvent: {
48162
+ types: [
48163
+ "string"
48164
+ ],
48165
+ description: "Emitted when a property commits: { id, patch } — patch carries the id plus the one changed field, ready for a partial persist update.",
48166
+ kind: "event-ref",
48167
+ emitPayloadSchema: [
48168
+ {
48169
+ name: "id",
48170
+ type: "string",
48171
+ required: true
48172
+ },
48173
+ {
48174
+ name: "patch",
48175
+ type: "object",
48176
+ required: true
48177
+ }
48178
+ ]
48179
+ },
48180
+ title: {
48181
+ types: [
48182
+ "string"
48183
+ ],
48184
+ description: "Card heading (defaults to the localized \"Details\")"
48185
+ },
48186
+ className: {
48187
+ types: [
48188
+ "string"
48189
+ ],
48190
+ description: "className prop"
48191
+ }
48192
+ }
47887
48193
  }
47888
48194
  };
47889
48195
  var categories$1 = [
@@ -50803,7 +51109,7 @@ var integratorsRegistry = {
50803
51109
  };
50804
51110
 
50805
51111
  var version$1 = "1.0.0";
50806
- var exportedAt$1 = "2026-08-25T01:35:07.912Z";
51112
+ var exportedAt$1 = "2026-08-28T23:51:47.246Z";
50807
51113
  var mappings = {
50808
51114
  "page-header": {
50809
51115
  component: "PageHeader",
@@ -51717,11 +52023,6 @@ var mappings = {
51717
52023
  importPath: "@/components/core/molecules/ReplyTree",
51718
52024
  category: "display"
51719
52025
  },
51720
- "rich-block-editor": {
51721
- component: "RichBlockEditor",
51722
- importPath: "@/components/core/molecules/RichBlockEditor",
51723
- category: "display"
51724
- },
51725
52026
  "version-diff": {
51726
52027
  component: "VersionDiff",
51727
52028
  importPath: "@/components/core/molecules/VersionDiff",
@@ -52206,6 +52507,21 @@ var mappings = {
52206
52507
  component: "DrawFxLayer",
52207
52508
  importPath: "@/components/game/molecules/DrawFxLayer",
52208
52509
  category: "game"
52510
+ },
52511
+ "rich-text-editor": {
52512
+ component: "RichTextEditor",
52513
+ importPath: "@/components/core/molecules/RichTextEditor",
52514
+ category: "component"
52515
+ },
52516
+ "document-panel": {
52517
+ component: "DocumentPanel",
52518
+ importPath: "@/components/core/molecules/DocumentPanel",
52519
+ category: "component"
52520
+ },
52521
+ "document-details": {
52522
+ component: "DocumentDetails",
52523
+ importPath: "@/components/core/molecules/DocumentDetails",
52524
+ category: "display"
52209
52525
  }
52210
52526
  };
52211
52527
  var componentMapping = {
@@ -52215,7 +52531,7 @@ var componentMapping = {
52215
52531
  };
52216
52532
 
52217
52533
  var version = "1.0.0";
52218
- var exportedAt = "2026-08-25T01:35:07.912Z";
52534
+ var exportedAt = "2026-08-28T23:51:47.246Z";
52219
52535
  var contracts = {
52220
52536
  form: {
52221
52537
  emits: [
@@ -70133,65 +70449,6 @@ declare const registry: {
70133
70449
  };
70134
70450
  };
70135
70451
  };
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
70452
  "version-diff": {
70196
70453
  type: string;
70197
70454
  category: string;
@@ -82967,6 +83224,254 @@ declare const registry: {
82967
83224
  drawable: boolean;
82968
83225
  drawHost: boolean;
82969
83226
  };
83227
+ "rich-text-editor": {
83228
+ type: string;
83229
+ category: string;
83230
+ tier: string;
83231
+ family: string;
83232
+ description: string;
83233
+ suggestedFor: string[];
83234
+ typicalSize: string;
83235
+ propsSchema: {
83236
+ value: {
83237
+ types: string[];
83238
+ description: string;
83239
+ };
83240
+ onChange: {
83241
+ types: string[];
83242
+ description: string;
83243
+ kind: string;
83244
+ callbackArgs: {
83245
+ name: string;
83246
+ type: string;
83247
+ }[];
83248
+ };
83249
+ changeEvent: {
83250
+ types: string[];
83251
+ description: string;
83252
+ kind: string;
83253
+ emitPayloadSchema: {
83254
+ name: string;
83255
+ type: string;
83256
+ required: boolean;
83257
+ }[];
83258
+ };
83259
+ readOnly: {
83260
+ types: string[];
83261
+ description: string;
83262
+ default: boolean;
83263
+ };
83264
+ placeholder: {
83265
+ types: string[];
83266
+ description: string;
83267
+ };
83268
+ showToolbar: {
83269
+ types: string[];
83270
+ description: string;
83271
+ default: boolean;
83272
+ };
83273
+ className: {
83274
+ types: string[];
83275
+ description: string;
83276
+ };
83277
+ };
83278
+ };
83279
+ "document-panel": {
83280
+ type: string;
83281
+ category: string;
83282
+ tier: string;
83283
+ family: string;
83284
+ description: string;
83285
+ capabilities: string;
83286
+ suggestedFor: string[];
83287
+ typicalSize: string;
83288
+ propsSchema: {
83289
+ id: {
83290
+ types: string[];
83291
+ description: string;
83292
+ };
83293
+ title: {
83294
+ types: string[];
83295
+ description: string;
83296
+ };
83297
+ subtitle: {
83298
+ types: string[];
83299
+ description: string;
83300
+ };
83301
+ value: {
83302
+ types: string[];
83303
+ description: string;
83304
+ };
83305
+ actions: {
83306
+ types: string[];
83307
+ description: string;
83308
+ kind: string;
83309
+ eventField: string;
83310
+ items: {
83311
+ types: string[];
83312
+ properties: {
83313
+ label: {
83314
+ types: string[];
83315
+ };
83316
+ event: {
83317
+ types: string[];
83318
+ };
83319
+ icon: {
83320
+ types: string[];
83321
+ };
83322
+ variant: {
83323
+ types: string[];
83324
+ enumValues: string[];
83325
+ };
83326
+ };
83327
+ required: string[];
83328
+ };
83329
+ };
83330
+ maxInlineActions: {
83331
+ types: string[];
83332
+ description: string;
83333
+ };
83334
+ editing: {
83335
+ types: string[];
83336
+ description: string;
83337
+ default: boolean;
83338
+ };
83339
+ titleCommitEvent: {
83340
+ types: string[];
83341
+ description: string;
83342
+ kind: string;
83343
+ emitPayloadSchema: {
83344
+ name: string;
83345
+ type: string;
83346
+ required: boolean;
83347
+ }[];
83348
+ };
83349
+ contentChangeEvent: {
83350
+ types: string[];
83351
+ description: string;
83352
+ kind: string;
83353
+ emitPayloadSchema: {
83354
+ name: string;
83355
+ type: string;
83356
+ required: boolean;
83357
+ }[];
83358
+ };
83359
+ editEvent: {
83360
+ types: string[];
83361
+ description: string;
83362
+ kind: string;
83363
+ emitPayloadSchema: {
83364
+ name: string;
83365
+ type: string;
83366
+ required: boolean;
83367
+ }[];
83368
+ };
83369
+ doneEvent: {
83370
+ types: string[];
83371
+ description: string;
83372
+ kind: string;
83373
+ emitPayloadSchema: {
83374
+ name: string;
83375
+ type: string;
83376
+ required: boolean;
83377
+ }[];
83378
+ };
83379
+ editLabel: {
83380
+ types: string[];
83381
+ description: string;
83382
+ };
83383
+ doneLabel: {
83384
+ types: string[];
83385
+ description: string;
83386
+ };
83387
+ autosaveHint: {
83388
+ types: string[];
83389
+ description: string;
83390
+ };
83391
+ placeholder: {
83392
+ types: string[];
83393
+ description: string;
83394
+ };
83395
+ className: {
83396
+ types: string[];
83397
+ description: string;
83398
+ };
83399
+ };
83400
+ };
83401
+ "document-details": {
83402
+ type: string;
83403
+ category: string;
83404
+ tier: string;
83405
+ family: string;
83406
+ description: string;
83407
+ capabilities: string;
83408
+ suggestedFor: string[];
83409
+ typicalSize: string;
83410
+ propsSchema: {
83411
+ entity: {
83412
+ types: string[];
83413
+ description: string;
83414
+ kind: string;
83415
+ cardinality: string;
83416
+ };
83417
+ fields: {
83418
+ types: string[];
83419
+ description: string;
83420
+ items: {
83421
+ types: string[];
83422
+ properties: {
83423
+ name: {
83424
+ types: string[];
83425
+ };
83426
+ key: {
83427
+ types: string[];
83428
+ };
83429
+ label: {
83430
+ types: string[];
83431
+ };
83432
+ header: {
83433
+ types: string[];
83434
+ };
83435
+ icon: {
83436
+ types: string[];
83437
+ };
83438
+ kind: {
83439
+ types: string[];
83440
+ enumValues: string[];
83441
+ };
83442
+ options: {
83443
+ types: string[];
83444
+ items: {
83445
+ types: string[];
83446
+ };
83447
+ };
83448
+ format: {
83449
+ types: string[];
83450
+ enumValues: string[];
83451
+ };
83452
+ };
83453
+ };
83454
+ };
83455
+ metaCommitEvent: {
83456
+ types: string[];
83457
+ description: string;
83458
+ kind: string;
83459
+ emitPayloadSchema: {
83460
+ name: string;
83461
+ type: string;
83462
+ required: boolean;
83463
+ }[];
83464
+ };
83465
+ title: {
83466
+ types: string[];
83467
+ description: string;
83468
+ };
83469
+ className: {
83470
+ types: string[];
83471
+ description: string;
83472
+ };
83473
+ };
83474
+ };
82970
83475
  };
82971
83476
  categories: string[];
82972
83477
  };
@@ -99151,65 +99656,6 @@ declare const PATTERN_REGISTRY: {
99151
99656
  };
99152
99657
  };
99153
99658
  };
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
99659
  "version-diff": {
99214
99660
  type: string;
99215
99661
  category: string;
@@ -111985,6 +112431,254 @@ declare const PATTERN_REGISTRY: {
111985
112431
  drawable: boolean;
111986
112432
  drawHost: boolean;
111987
112433
  };
112434
+ "rich-text-editor": {
112435
+ type: string;
112436
+ category: string;
112437
+ tier: string;
112438
+ family: string;
112439
+ description: string;
112440
+ suggestedFor: string[];
112441
+ typicalSize: string;
112442
+ propsSchema: {
112443
+ value: {
112444
+ types: string[];
112445
+ description: string;
112446
+ };
112447
+ onChange: {
112448
+ types: string[];
112449
+ description: string;
112450
+ kind: string;
112451
+ callbackArgs: {
112452
+ name: string;
112453
+ type: string;
112454
+ }[];
112455
+ };
112456
+ changeEvent: {
112457
+ types: string[];
112458
+ description: string;
112459
+ kind: string;
112460
+ emitPayloadSchema: {
112461
+ name: string;
112462
+ type: string;
112463
+ required: boolean;
112464
+ }[];
112465
+ };
112466
+ readOnly: {
112467
+ types: string[];
112468
+ description: string;
112469
+ default: boolean;
112470
+ };
112471
+ placeholder: {
112472
+ types: string[];
112473
+ description: string;
112474
+ };
112475
+ showToolbar: {
112476
+ types: string[];
112477
+ description: string;
112478
+ default: boolean;
112479
+ };
112480
+ className: {
112481
+ types: string[];
112482
+ description: string;
112483
+ };
112484
+ };
112485
+ };
112486
+ "document-panel": {
112487
+ type: string;
112488
+ category: string;
112489
+ tier: string;
112490
+ family: string;
112491
+ description: string;
112492
+ capabilities: string;
112493
+ suggestedFor: string[];
112494
+ typicalSize: string;
112495
+ propsSchema: {
112496
+ id: {
112497
+ types: string[];
112498
+ description: string;
112499
+ };
112500
+ title: {
112501
+ types: string[];
112502
+ description: string;
112503
+ };
112504
+ subtitle: {
112505
+ types: string[];
112506
+ description: string;
112507
+ };
112508
+ value: {
112509
+ types: string[];
112510
+ description: string;
112511
+ };
112512
+ actions: {
112513
+ types: string[];
112514
+ description: string;
112515
+ kind: string;
112516
+ eventField: string;
112517
+ items: {
112518
+ types: string[];
112519
+ properties: {
112520
+ label: {
112521
+ types: string[];
112522
+ };
112523
+ event: {
112524
+ types: string[];
112525
+ };
112526
+ icon: {
112527
+ types: string[];
112528
+ };
112529
+ variant: {
112530
+ types: string[];
112531
+ enumValues: string[];
112532
+ };
112533
+ };
112534
+ required: string[];
112535
+ };
112536
+ };
112537
+ maxInlineActions: {
112538
+ types: string[];
112539
+ description: string;
112540
+ };
112541
+ editing: {
112542
+ types: string[];
112543
+ description: string;
112544
+ default: boolean;
112545
+ };
112546
+ titleCommitEvent: {
112547
+ types: string[];
112548
+ description: string;
112549
+ kind: string;
112550
+ emitPayloadSchema: {
112551
+ name: string;
112552
+ type: string;
112553
+ required: boolean;
112554
+ }[];
112555
+ };
112556
+ contentChangeEvent: {
112557
+ types: string[];
112558
+ description: string;
112559
+ kind: string;
112560
+ emitPayloadSchema: {
112561
+ name: string;
112562
+ type: string;
112563
+ required: boolean;
112564
+ }[];
112565
+ };
112566
+ editEvent: {
112567
+ types: string[];
112568
+ description: string;
112569
+ kind: string;
112570
+ emitPayloadSchema: {
112571
+ name: string;
112572
+ type: string;
112573
+ required: boolean;
112574
+ }[];
112575
+ };
112576
+ doneEvent: {
112577
+ types: string[];
112578
+ description: string;
112579
+ kind: string;
112580
+ emitPayloadSchema: {
112581
+ name: string;
112582
+ type: string;
112583
+ required: boolean;
112584
+ }[];
112585
+ };
112586
+ editLabel: {
112587
+ types: string[];
112588
+ description: string;
112589
+ };
112590
+ doneLabel: {
112591
+ types: string[];
112592
+ description: string;
112593
+ };
112594
+ autosaveHint: {
112595
+ types: string[];
112596
+ description: string;
112597
+ };
112598
+ placeholder: {
112599
+ types: string[];
112600
+ description: string;
112601
+ };
112602
+ className: {
112603
+ types: string[];
112604
+ description: string;
112605
+ };
112606
+ };
112607
+ };
112608
+ "document-details": {
112609
+ type: string;
112610
+ category: string;
112611
+ tier: string;
112612
+ family: string;
112613
+ description: string;
112614
+ capabilities: string;
112615
+ suggestedFor: string[];
112616
+ typicalSize: string;
112617
+ propsSchema: {
112618
+ entity: {
112619
+ types: string[];
112620
+ description: string;
112621
+ kind: string;
112622
+ cardinality: string;
112623
+ };
112624
+ fields: {
112625
+ types: string[];
112626
+ description: string;
112627
+ items: {
112628
+ types: string[];
112629
+ properties: {
112630
+ name: {
112631
+ types: string[];
112632
+ };
112633
+ key: {
112634
+ types: string[];
112635
+ };
112636
+ label: {
112637
+ types: string[];
112638
+ };
112639
+ header: {
112640
+ types: string[];
112641
+ };
112642
+ icon: {
112643
+ types: string[];
112644
+ };
112645
+ kind: {
112646
+ types: string[];
112647
+ enumValues: string[];
112648
+ };
112649
+ options: {
112650
+ types: string[];
112651
+ items: {
112652
+ types: string[];
112653
+ };
112654
+ };
112655
+ format: {
112656
+ types: string[];
112657
+ enumValues: string[];
112658
+ };
112659
+ };
112660
+ };
112661
+ };
112662
+ metaCommitEvent: {
112663
+ types: string[];
112664
+ description: string;
112665
+ kind: string;
112666
+ emitPayloadSchema: {
112667
+ name: string;
112668
+ type: string;
112669
+ required: boolean;
112670
+ }[];
112671
+ };
112672
+ title: {
112673
+ types: string[];
112674
+ description: string;
112675
+ };
112676
+ className: {
112677
+ types: string[];
112678
+ description: string;
112679
+ };
112680
+ };
112681
+ };
111988
112682
  };
111989
112683
  categories: string[];
111990
112684
  };
@@ -115037,11 +115731,6 @@ declare const COMPONENT_MAPPING: {
115037
115731
  importPath: string;
115038
115732
  category: string;
115039
115733
  };
115040
- "rich-block-editor": {
115041
- component: string;
115042
- importPath: string;
115043
- category: string;
115044
- };
115045
115734
  "version-diff": {
115046
115735
  component: string;
115047
115736
  importPath: string;
@@ -115527,6 +116216,21 @@ declare const COMPONENT_MAPPING: {
115527
116216
  importPath: string;
115528
116217
  category: string;
115529
116218
  };
116219
+ "rich-text-editor": {
116220
+ component: string;
116221
+ importPath: string;
116222
+ category: string;
116223
+ };
116224
+ "document-panel": {
116225
+ component: string;
116226
+ importPath: string;
116227
+ category: string;
116228
+ };
116229
+ "document-details": {
116230
+ component: string;
116231
+ importPath: string;
116232
+ category: string;
116233
+ };
115530
116234
  };
115531
116235
  };
115532
116236
  declare const EVENT_CONTRACTS: {