@almadar/core 10.27.0 → 10.29.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{builders-CeDAKf9u.d.ts → builders-DcBjE_Uw.d.ts} +308 -2306
- package/dist/builders.d.ts +4 -4
- package/dist/builders.js +23 -7
- package/dist/builders.js.map +1 -1
- package/dist/{expression-C6X4A8L7.d.ts → expression-CB9R3KWk.d.ts} +4 -1
- package/dist/factory/index.d.ts +5 -5
- package/dist/factory-runtime/index.d.ts +21 -5
- package/dist/factory-runtime/index.js +85 -9
- package/dist/factory-runtime/index.js.map +1 -1
- package/dist/index.d.ts +50 -10
- package/dist/index.js +631 -24
- package/dist/index.js.map +1 -1
- package/dist/pattern-types-JZordBZv.d.ts +4635 -0
- package/dist/patterns/component-mapping.json +1 -1
- package/dist/patterns/event-contracts.json +1 -1
- package/dist/patterns/index.d.ts +1003 -24
- package/dist/patterns/index.js +460 -13
- package/dist/patterns/index.js.map +1 -1
- package/dist/patterns/patterns-registry.json +458 -11
- package/dist/patterns/registry.json +458 -11
- package/dist/state-machine/index.d.ts +1 -1
- package/dist/{trait-CSaCYNJl.d.ts → trait-B_CzfDSi.d.ts} +187 -643
- package/dist/types/index.d.ts +17 -12
- package/dist/types/index.js +69 -12
- package/dist/types/index.js.map +1 -1
- package/dist/{types-BFgbJ7BM.d.ts → types-CGC5A1-T.d.ts} +45 -2
- package/package.json +1 -1
- package/src/types/bindings.ts +8 -2
- package/dist/pattern-types-CEZfJqGr.d.ts +0 -4584
package/dist/patterns/index.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { F as FieldValue, a2 as PatternType } from '../pattern-types-
|
|
2
|
-
export { A as AnyPatternConfig, _ as PATTERN_TYPES, $ as PatternConfig, a0 as PatternProps, a1 as PatternPropsMap, av as isValidPatternType } from '../pattern-types-
|
|
3
|
-
import { d as EventPayloadValue, E as EventPayload } from '../expression-
|
|
1
|
+
import { F as FieldValue, a2 as PatternType } from '../pattern-types-JZordBZv.js';
|
|
2
|
+
export { A as AnyPatternConfig, _ as PATTERN_TYPES, $ as PatternConfig, a0 as PatternProps, a1 as PatternPropsMap, av as isValidPatternType } from '../pattern-types-JZordBZv.js';
|
|
3
|
+
import { d as EventPayloadValue, E as EventPayload } from '../expression-CB9R3KWk.js';
|
|
4
4
|
import 'zod';
|
|
5
5
|
|
|
6
6
|
var version$3 = "1.0.0";
|
|
7
|
-
var exportedAt$3 = "2026-07-
|
|
7
|
+
var exportedAt$3 = "2026-07-13T15:27:57.365Z";
|
|
8
8
|
var patterns = {
|
|
9
9
|
"entity-table": {
|
|
10
10
|
type: "entity-table",
|
|
@@ -10390,6 +10390,144 @@ var patterns = {
|
|
|
10390
10390
|
],
|
|
10391
10391
|
typicalSize: "medium",
|
|
10392
10392
|
propsSchema: {
|
|
10393
|
+
className: {
|
|
10394
|
+
types: [
|
|
10395
|
+
"string"
|
|
10396
|
+
],
|
|
10397
|
+
description: "Additional CSS classes"
|
|
10398
|
+
},
|
|
10399
|
+
placeholder: {
|
|
10400
|
+
types: [
|
|
10401
|
+
"string"
|
|
10402
|
+
],
|
|
10403
|
+
description: "Placeholder text"
|
|
10404
|
+
},
|
|
10405
|
+
value: {
|
|
10406
|
+
types: [
|
|
10407
|
+
"string",
|
|
10408
|
+
"number"
|
|
10409
|
+
],
|
|
10410
|
+
description: "Current value"
|
|
10411
|
+
},
|
|
10412
|
+
disabled: {
|
|
10413
|
+
types: [
|
|
10414
|
+
"boolean"
|
|
10415
|
+
],
|
|
10416
|
+
description: "Whether input is disabled"
|
|
10417
|
+
},
|
|
10418
|
+
action: {
|
|
10419
|
+
types: [
|
|
10420
|
+
"string"
|
|
10421
|
+
],
|
|
10422
|
+
description: "Declarative event name for trait dispatch",
|
|
10423
|
+
kind: "event"
|
|
10424
|
+
},
|
|
10425
|
+
inputType: {
|
|
10426
|
+
types: [
|
|
10427
|
+
"string"
|
|
10428
|
+
],
|
|
10429
|
+
description: "Input type - supports 'select' and 'textarea' in addition to standard types",
|
|
10430
|
+
enumValues: [
|
|
10431
|
+
"text",
|
|
10432
|
+
"email",
|
|
10433
|
+
"password",
|
|
10434
|
+
"number",
|
|
10435
|
+
"tel",
|
|
10436
|
+
"url",
|
|
10437
|
+
"search",
|
|
10438
|
+
"date",
|
|
10439
|
+
"datetime-local",
|
|
10440
|
+
"time",
|
|
10441
|
+
"checkbox",
|
|
10442
|
+
"select",
|
|
10443
|
+
"textarea"
|
|
10444
|
+
]
|
|
10445
|
+
},
|
|
10446
|
+
label: {
|
|
10447
|
+
types: [
|
|
10448
|
+
"string"
|
|
10449
|
+
],
|
|
10450
|
+
description: "label prop"
|
|
10451
|
+
},
|
|
10452
|
+
helperText: {
|
|
10453
|
+
types: [
|
|
10454
|
+
"string"
|
|
10455
|
+
],
|
|
10456
|
+
description: "helperText prop"
|
|
10457
|
+
},
|
|
10458
|
+
error: {
|
|
10459
|
+
types: [
|
|
10460
|
+
"string"
|
|
10461
|
+
],
|
|
10462
|
+
description: "error prop"
|
|
10463
|
+
},
|
|
10464
|
+
leftIcon: {
|
|
10465
|
+
types: [
|
|
10466
|
+
"icon",
|
|
10467
|
+
"string"
|
|
10468
|
+
],
|
|
10469
|
+
description: "leftIcon prop"
|
|
10470
|
+
},
|
|
10471
|
+
rightIcon: {
|
|
10472
|
+
types: [
|
|
10473
|
+
"icon",
|
|
10474
|
+
"string"
|
|
10475
|
+
],
|
|
10476
|
+
description: "rightIcon prop"
|
|
10477
|
+
},
|
|
10478
|
+
clearable: {
|
|
10479
|
+
types: [
|
|
10480
|
+
"boolean"
|
|
10481
|
+
],
|
|
10482
|
+
description: "Show clear button when input has value"
|
|
10483
|
+
},
|
|
10484
|
+
onClear: {
|
|
10485
|
+
types: [
|
|
10486
|
+
"function",
|
|
10487
|
+
"string"
|
|
10488
|
+
],
|
|
10489
|
+
description: "Callback or declarative event key when clear button is clicked"
|
|
10490
|
+
},
|
|
10491
|
+
options: {
|
|
10492
|
+
types: [
|
|
10493
|
+
"array"
|
|
10494
|
+
],
|
|
10495
|
+
description: "Options for select type",
|
|
10496
|
+
items: {
|
|
10497
|
+
types: [
|
|
10498
|
+
"object"
|
|
10499
|
+
],
|
|
10500
|
+
properties: {
|
|
10501
|
+
value: {
|
|
10502
|
+
types: [
|
|
10503
|
+
"string"
|
|
10504
|
+
]
|
|
10505
|
+
},
|
|
10506
|
+
label: {
|
|
10507
|
+
types: [
|
|
10508
|
+
"string"
|
|
10509
|
+
]
|
|
10510
|
+
}
|
|
10511
|
+
},
|
|
10512
|
+
required: [
|
|
10513
|
+
"value",
|
|
10514
|
+
"label"
|
|
10515
|
+
]
|
|
10516
|
+
}
|
|
10517
|
+
},
|
|
10518
|
+
rows: {
|
|
10519
|
+
types: [
|
|
10520
|
+
"number"
|
|
10521
|
+
],
|
|
10522
|
+
description: "Rows for textarea type"
|
|
10523
|
+
},
|
|
10524
|
+
onChange: {
|
|
10525
|
+
types: [
|
|
10526
|
+
"function",
|
|
10527
|
+
"string"
|
|
10528
|
+
],
|
|
10529
|
+
description: "onChange handler or declarative event key for trait dispatch"
|
|
10530
|
+
},
|
|
10393
10531
|
leftAddon: {
|
|
10394
10532
|
types: [
|
|
10395
10533
|
"node",
|
|
@@ -10403,12 +10541,6 @@ var patterns = {
|
|
|
10403
10541
|
"icon"
|
|
10404
10542
|
],
|
|
10405
10543
|
description: "Right addon (icon, button, or text)"
|
|
10406
|
-
},
|
|
10407
|
-
className: {
|
|
10408
|
-
types: [
|
|
10409
|
-
"string"
|
|
10410
|
-
],
|
|
10411
|
-
description: "Additional CSS classes"
|
|
10412
10544
|
}
|
|
10413
10545
|
}
|
|
10414
10546
|
},
|
|
@@ -34978,6 +35110,157 @@ var patterns = {
|
|
|
34978
35110
|
],
|
|
34979
35111
|
typicalSize: "small",
|
|
34980
35112
|
propsSchema: {
|
|
35113
|
+
gap: {
|
|
35114
|
+
types: [
|
|
35115
|
+
"string"
|
|
35116
|
+
],
|
|
35117
|
+
description: "Gap between children",
|
|
35118
|
+
enumValues: [
|
|
35119
|
+
"none",
|
|
35120
|
+
"xs",
|
|
35121
|
+
"sm",
|
|
35122
|
+
"md",
|
|
35123
|
+
"lg",
|
|
35124
|
+
"xl",
|
|
35125
|
+
"2xl"
|
|
35126
|
+
],
|
|
35127
|
+
"default": "md"
|
|
35128
|
+
},
|
|
35129
|
+
align: {
|
|
35130
|
+
types: [
|
|
35131
|
+
"string"
|
|
35132
|
+
],
|
|
35133
|
+
description: "Align items on the cross axis",
|
|
35134
|
+
enumValues: [
|
|
35135
|
+
"start",
|
|
35136
|
+
"center",
|
|
35137
|
+
"end",
|
|
35138
|
+
"stretch",
|
|
35139
|
+
"baseline"
|
|
35140
|
+
],
|
|
35141
|
+
"default": "stretch"
|
|
35142
|
+
},
|
|
35143
|
+
justify: {
|
|
35144
|
+
types: [
|
|
35145
|
+
"string"
|
|
35146
|
+
],
|
|
35147
|
+
description: "Justify items on the main axis",
|
|
35148
|
+
enumValues: [
|
|
35149
|
+
"start",
|
|
35150
|
+
"center",
|
|
35151
|
+
"end",
|
|
35152
|
+
"between",
|
|
35153
|
+
"around",
|
|
35154
|
+
"evenly"
|
|
35155
|
+
],
|
|
35156
|
+
"default": "start"
|
|
35157
|
+
},
|
|
35158
|
+
wrap: {
|
|
35159
|
+
types: [
|
|
35160
|
+
"boolean"
|
|
35161
|
+
],
|
|
35162
|
+
description: "Allow items to wrap",
|
|
35163
|
+
"default": false
|
|
35164
|
+
},
|
|
35165
|
+
reverse: {
|
|
35166
|
+
types: [
|
|
35167
|
+
"boolean"
|
|
35168
|
+
],
|
|
35169
|
+
description: "Reverse the order of children",
|
|
35170
|
+
"default": false
|
|
35171
|
+
},
|
|
35172
|
+
flex: {
|
|
35173
|
+
types: [
|
|
35174
|
+
"boolean"
|
|
35175
|
+
],
|
|
35176
|
+
description: "Fill available space (flex: 1)",
|
|
35177
|
+
"default": false
|
|
35178
|
+
},
|
|
35179
|
+
className: {
|
|
35180
|
+
types: [
|
|
35181
|
+
"string"
|
|
35182
|
+
],
|
|
35183
|
+
description: "Custom class name"
|
|
35184
|
+
},
|
|
35185
|
+
style: {
|
|
35186
|
+
types: [
|
|
35187
|
+
"object"
|
|
35188
|
+
],
|
|
35189
|
+
description: "Inline styles"
|
|
35190
|
+
},
|
|
35191
|
+
children: {
|
|
35192
|
+
types: [
|
|
35193
|
+
"node"
|
|
35194
|
+
],
|
|
35195
|
+
description: "Children elements"
|
|
35196
|
+
},
|
|
35197
|
+
as: {
|
|
35198
|
+
types: [
|
|
35199
|
+
"component"
|
|
35200
|
+
],
|
|
35201
|
+
description: "HTML element to render as"
|
|
35202
|
+
},
|
|
35203
|
+
onClick: {
|
|
35204
|
+
types: [
|
|
35205
|
+
"function"
|
|
35206
|
+
],
|
|
35207
|
+
description: "Click handler",
|
|
35208
|
+
kind: "callback",
|
|
35209
|
+
callbackArgs: [
|
|
35210
|
+
{
|
|
35211
|
+
name: "e",
|
|
35212
|
+
type: "object"
|
|
35213
|
+
}
|
|
35214
|
+
],
|
|
35215
|
+
nonEmittable: true
|
|
35216
|
+
},
|
|
35217
|
+
onKeyDown: {
|
|
35218
|
+
types: [
|
|
35219
|
+
"function"
|
|
35220
|
+
],
|
|
35221
|
+
description: "Keyboard handler",
|
|
35222
|
+
kind: "callback",
|
|
35223
|
+
callbackArgs: [
|
|
35224
|
+
{
|
|
35225
|
+
name: "e",
|
|
35226
|
+
type: "object"
|
|
35227
|
+
}
|
|
35228
|
+
],
|
|
35229
|
+
nonEmittable: true
|
|
35230
|
+
},
|
|
35231
|
+
role: {
|
|
35232
|
+
types: [
|
|
35233
|
+
"string"
|
|
35234
|
+
],
|
|
35235
|
+
description: "Role for accessibility"
|
|
35236
|
+
},
|
|
35237
|
+
tabIndex: {
|
|
35238
|
+
types: [
|
|
35239
|
+
"number"
|
|
35240
|
+
],
|
|
35241
|
+
description: "Tab index for focus management"
|
|
35242
|
+
},
|
|
35243
|
+
action: {
|
|
35244
|
+
types: [
|
|
35245
|
+
"string"
|
|
35246
|
+
],
|
|
35247
|
+
description: "Declarative event name — emits UI:{action} via eventBus on click",
|
|
35248
|
+
kind: "event"
|
|
35249
|
+
},
|
|
35250
|
+
actionPayload: {
|
|
35251
|
+
types: [
|
|
35252
|
+
"object"
|
|
35253
|
+
],
|
|
35254
|
+
description: "Payload to include with the action event",
|
|
35255
|
+
freeform: true
|
|
35256
|
+
},
|
|
35257
|
+
responsive: {
|
|
35258
|
+
types: [
|
|
35259
|
+
"boolean"
|
|
35260
|
+
],
|
|
35261
|
+
description: "When true, horizontal stacks flip to vertical below the md breakpoint (768px)",
|
|
35262
|
+
"default": false
|
|
35263
|
+
}
|
|
34981
35264
|
}
|
|
34982
35265
|
},
|
|
34983
35266
|
hstack: {
|
|
@@ -34992,6 +35275,157 @@ var patterns = {
|
|
|
34992
35275
|
],
|
|
34993
35276
|
typicalSize: "small",
|
|
34994
35277
|
propsSchema: {
|
|
35278
|
+
gap: {
|
|
35279
|
+
types: [
|
|
35280
|
+
"string"
|
|
35281
|
+
],
|
|
35282
|
+
description: "Gap between children",
|
|
35283
|
+
enumValues: [
|
|
35284
|
+
"none",
|
|
35285
|
+
"xs",
|
|
35286
|
+
"sm",
|
|
35287
|
+
"md",
|
|
35288
|
+
"lg",
|
|
35289
|
+
"xl",
|
|
35290
|
+
"2xl"
|
|
35291
|
+
],
|
|
35292
|
+
"default": "md"
|
|
35293
|
+
},
|
|
35294
|
+
align: {
|
|
35295
|
+
types: [
|
|
35296
|
+
"string"
|
|
35297
|
+
],
|
|
35298
|
+
description: "Align items on the cross axis",
|
|
35299
|
+
enumValues: [
|
|
35300
|
+
"start",
|
|
35301
|
+
"center",
|
|
35302
|
+
"end",
|
|
35303
|
+
"stretch",
|
|
35304
|
+
"baseline"
|
|
35305
|
+
],
|
|
35306
|
+
"default": "stretch"
|
|
35307
|
+
},
|
|
35308
|
+
justify: {
|
|
35309
|
+
types: [
|
|
35310
|
+
"string"
|
|
35311
|
+
],
|
|
35312
|
+
description: "Justify items on the main axis",
|
|
35313
|
+
enumValues: [
|
|
35314
|
+
"start",
|
|
35315
|
+
"center",
|
|
35316
|
+
"end",
|
|
35317
|
+
"between",
|
|
35318
|
+
"around",
|
|
35319
|
+
"evenly"
|
|
35320
|
+
],
|
|
35321
|
+
"default": "start"
|
|
35322
|
+
},
|
|
35323
|
+
wrap: {
|
|
35324
|
+
types: [
|
|
35325
|
+
"boolean"
|
|
35326
|
+
],
|
|
35327
|
+
description: "Allow items to wrap",
|
|
35328
|
+
"default": false
|
|
35329
|
+
},
|
|
35330
|
+
reverse: {
|
|
35331
|
+
types: [
|
|
35332
|
+
"boolean"
|
|
35333
|
+
],
|
|
35334
|
+
description: "Reverse the order of children",
|
|
35335
|
+
"default": false
|
|
35336
|
+
},
|
|
35337
|
+
flex: {
|
|
35338
|
+
types: [
|
|
35339
|
+
"boolean"
|
|
35340
|
+
],
|
|
35341
|
+
description: "Fill available space (flex: 1)",
|
|
35342
|
+
"default": false
|
|
35343
|
+
},
|
|
35344
|
+
className: {
|
|
35345
|
+
types: [
|
|
35346
|
+
"string"
|
|
35347
|
+
],
|
|
35348
|
+
description: "Custom class name"
|
|
35349
|
+
},
|
|
35350
|
+
style: {
|
|
35351
|
+
types: [
|
|
35352
|
+
"object"
|
|
35353
|
+
],
|
|
35354
|
+
description: "Inline styles"
|
|
35355
|
+
},
|
|
35356
|
+
children: {
|
|
35357
|
+
types: [
|
|
35358
|
+
"node"
|
|
35359
|
+
],
|
|
35360
|
+
description: "Children elements"
|
|
35361
|
+
},
|
|
35362
|
+
as: {
|
|
35363
|
+
types: [
|
|
35364
|
+
"component"
|
|
35365
|
+
],
|
|
35366
|
+
description: "HTML element to render as"
|
|
35367
|
+
},
|
|
35368
|
+
onClick: {
|
|
35369
|
+
types: [
|
|
35370
|
+
"function"
|
|
35371
|
+
],
|
|
35372
|
+
description: "Click handler",
|
|
35373
|
+
kind: "callback",
|
|
35374
|
+
callbackArgs: [
|
|
35375
|
+
{
|
|
35376
|
+
name: "e",
|
|
35377
|
+
type: "object"
|
|
35378
|
+
}
|
|
35379
|
+
],
|
|
35380
|
+
nonEmittable: true
|
|
35381
|
+
},
|
|
35382
|
+
onKeyDown: {
|
|
35383
|
+
types: [
|
|
35384
|
+
"function"
|
|
35385
|
+
],
|
|
35386
|
+
description: "Keyboard handler",
|
|
35387
|
+
kind: "callback",
|
|
35388
|
+
callbackArgs: [
|
|
35389
|
+
{
|
|
35390
|
+
name: "e",
|
|
35391
|
+
type: "object"
|
|
35392
|
+
}
|
|
35393
|
+
],
|
|
35394
|
+
nonEmittable: true
|
|
35395
|
+
},
|
|
35396
|
+
role: {
|
|
35397
|
+
types: [
|
|
35398
|
+
"string"
|
|
35399
|
+
],
|
|
35400
|
+
description: "Role for accessibility"
|
|
35401
|
+
},
|
|
35402
|
+
tabIndex: {
|
|
35403
|
+
types: [
|
|
35404
|
+
"number"
|
|
35405
|
+
],
|
|
35406
|
+
description: "Tab index for focus management"
|
|
35407
|
+
},
|
|
35408
|
+
action: {
|
|
35409
|
+
types: [
|
|
35410
|
+
"string"
|
|
35411
|
+
],
|
|
35412
|
+
description: "Declarative event name — emits UI:{action} via eventBus on click",
|
|
35413
|
+
kind: "event"
|
|
35414
|
+
},
|
|
35415
|
+
actionPayload: {
|
|
35416
|
+
types: [
|
|
35417
|
+
"object"
|
|
35418
|
+
],
|
|
35419
|
+
description: "Payload to include with the action event",
|
|
35420
|
+
freeform: true
|
|
35421
|
+
},
|
|
35422
|
+
responsive: {
|
|
35423
|
+
types: [
|
|
35424
|
+
"boolean"
|
|
35425
|
+
],
|
|
35426
|
+
description: "When true, horizontal stacks flip to vertical below the md breakpoint (768px)",
|
|
35427
|
+
"default": false
|
|
35428
|
+
}
|
|
34995
35429
|
}
|
|
34996
35430
|
},
|
|
34997
35431
|
"form-layout": {
|
|
@@ -38491,13 +38925,13 @@ var patterns = {
|
|
|
38491
38925
|
types: [
|
|
38492
38926
|
"number"
|
|
38493
38927
|
],
|
|
38494
|
-
description: "Draw width in
|
|
38928
|
+
description: "Draw width in world units (fractions of `projector.tileWidth`); omitted → resolved source width in px."
|
|
38495
38929
|
},
|
|
38496
38930
|
height: {
|
|
38497
38931
|
types: [
|
|
38498
38932
|
"number"
|
|
38499
38933
|
],
|
|
38500
|
-
description: "Draw height in
|
|
38934
|
+
description: "Draw height in world units (fractions of `projector.tileWidth`); omitted → resolved source height in px."
|
|
38501
38935
|
},
|
|
38502
38936
|
frame: {
|
|
38503
38937
|
types: [
|
|
@@ -38505,6 +38939,12 @@ var patterns = {
|
|
|
38505
38939
|
],
|
|
38506
38940
|
description: "Explicit atlas sub-rect override (px); omitted → resolved from `asset.atlas`/`asset.sprite`."
|
|
38507
38941
|
},
|
|
38942
|
+
animation: {
|
|
38943
|
+
types: [
|
|
38944
|
+
"string"
|
|
38945
|
+
],
|
|
38946
|
+
description: "Named GLB animation clip to play (3D backend only; the 2D painter animates via `frame`). Matched case-insensitively against the model's clips."
|
|
38947
|
+
},
|
|
38508
38948
|
flipX: {
|
|
38509
38949
|
types: [
|
|
38510
38950
|
"boolean"
|
|
@@ -38982,6 +39422,11 @@ var patterns = {
|
|
|
38982
39422
|
"object"
|
|
38983
39423
|
]
|
|
38984
39424
|
},
|
|
39425
|
+
animation: {
|
|
39426
|
+
types: [
|
|
39427
|
+
"string"
|
|
39428
|
+
]
|
|
39429
|
+
},
|
|
38985
39430
|
flipX: {
|
|
38986
39431
|
types: [
|
|
38987
39432
|
"boolean"
|
|
@@ -40232,7 +40677,7 @@ var integratorsRegistry = {
|
|
|
40232
40677
|
};
|
|
40233
40678
|
|
|
40234
40679
|
var version$1 = "1.0.0";
|
|
40235
|
-
var exportedAt$1 = "2026-07-
|
|
40680
|
+
var exportedAt$1 = "2026-07-13T15:27:57.365Z";
|
|
40236
40681
|
var mappings = {
|
|
40237
40682
|
"page-header": {
|
|
40238
40683
|
component: "PageHeader",
|
|
@@ -41589,7 +42034,7 @@ var componentMapping = {
|
|
|
41589
42034
|
};
|
|
41590
42035
|
|
|
41591
42036
|
var version = "1.0.0";
|
|
41592
|
-
var exportedAt = "2026-07-
|
|
42037
|
+
var exportedAt = "2026-07-13T15:27:57.365Z";
|
|
41593
42038
|
var contracts = {
|
|
41594
42039
|
form: {
|
|
41595
42040
|
emits: [
|
|
@@ -49512,15 +49957,89 @@ declare const registry: {
|
|
|
49512
49957
|
suggestedFor: string[];
|
|
49513
49958
|
typicalSize: string;
|
|
49514
49959
|
propsSchema: {
|
|
49515
|
-
|
|
49960
|
+
className: {
|
|
49516
49961
|
types: string[];
|
|
49517
49962
|
description: string;
|
|
49518
49963
|
};
|
|
49519
|
-
|
|
49964
|
+
placeholder: {
|
|
49520
49965
|
types: string[];
|
|
49521
49966
|
description: string;
|
|
49522
49967
|
};
|
|
49523
|
-
|
|
49968
|
+
value: {
|
|
49969
|
+
types: string[];
|
|
49970
|
+
description: string;
|
|
49971
|
+
};
|
|
49972
|
+
disabled: {
|
|
49973
|
+
types: string[];
|
|
49974
|
+
description: string;
|
|
49975
|
+
};
|
|
49976
|
+
action: {
|
|
49977
|
+
types: string[];
|
|
49978
|
+
description: string;
|
|
49979
|
+
kind: string;
|
|
49980
|
+
};
|
|
49981
|
+
inputType: {
|
|
49982
|
+
types: string[];
|
|
49983
|
+
description: string;
|
|
49984
|
+
enumValues: string[];
|
|
49985
|
+
};
|
|
49986
|
+
label: {
|
|
49987
|
+
types: string[];
|
|
49988
|
+
description: string;
|
|
49989
|
+
};
|
|
49990
|
+
helperText: {
|
|
49991
|
+
types: string[];
|
|
49992
|
+
description: string;
|
|
49993
|
+
};
|
|
49994
|
+
error: {
|
|
49995
|
+
types: string[];
|
|
49996
|
+
description: string;
|
|
49997
|
+
};
|
|
49998
|
+
leftIcon: {
|
|
49999
|
+
types: string[];
|
|
50000
|
+
description: string;
|
|
50001
|
+
};
|
|
50002
|
+
rightIcon: {
|
|
50003
|
+
types: string[];
|
|
50004
|
+
description: string;
|
|
50005
|
+
};
|
|
50006
|
+
clearable: {
|
|
50007
|
+
types: string[];
|
|
50008
|
+
description: string;
|
|
50009
|
+
};
|
|
50010
|
+
onClear: {
|
|
50011
|
+
types: string[];
|
|
50012
|
+
description: string;
|
|
50013
|
+
};
|
|
50014
|
+
options: {
|
|
50015
|
+
types: string[];
|
|
50016
|
+
description: string;
|
|
50017
|
+
items: {
|
|
50018
|
+
types: string[];
|
|
50019
|
+
properties: {
|
|
50020
|
+
value: {
|
|
50021
|
+
types: string[];
|
|
50022
|
+
};
|
|
50023
|
+
label: {
|
|
50024
|
+
types: string[];
|
|
50025
|
+
};
|
|
50026
|
+
};
|
|
50027
|
+
required: string[];
|
|
50028
|
+
};
|
|
50029
|
+
};
|
|
50030
|
+
rows: {
|
|
50031
|
+
types: string[];
|
|
50032
|
+
description: string;
|
|
50033
|
+
};
|
|
50034
|
+
onChange: {
|
|
50035
|
+
types: string[];
|
|
50036
|
+
description: string;
|
|
50037
|
+
};
|
|
50038
|
+
leftAddon: {
|
|
50039
|
+
types: string[];
|
|
50040
|
+
description: string;
|
|
50041
|
+
};
|
|
50042
|
+
rightAddon: {
|
|
49524
50043
|
types: string[];
|
|
49525
50044
|
description: string;
|
|
49526
50045
|
};
|
|
@@ -64479,7 +64998,100 @@ declare const registry: {
|
|
|
64479
64998
|
description: string;
|
|
64480
64999
|
suggestedFor: string[];
|
|
64481
65000
|
typicalSize: string;
|
|
64482
|
-
propsSchema: {
|
|
65001
|
+
propsSchema: {
|
|
65002
|
+
gap: {
|
|
65003
|
+
types: string[];
|
|
65004
|
+
description: string;
|
|
65005
|
+
enumValues: string[];
|
|
65006
|
+
default: string;
|
|
65007
|
+
};
|
|
65008
|
+
align: {
|
|
65009
|
+
types: string[];
|
|
65010
|
+
description: string;
|
|
65011
|
+
enumValues: string[];
|
|
65012
|
+
default: string;
|
|
65013
|
+
};
|
|
65014
|
+
justify: {
|
|
65015
|
+
types: string[];
|
|
65016
|
+
description: string;
|
|
65017
|
+
enumValues: string[];
|
|
65018
|
+
default: string;
|
|
65019
|
+
};
|
|
65020
|
+
wrap: {
|
|
65021
|
+
types: string[];
|
|
65022
|
+
description: string;
|
|
65023
|
+
default: boolean;
|
|
65024
|
+
};
|
|
65025
|
+
reverse: {
|
|
65026
|
+
types: string[];
|
|
65027
|
+
description: string;
|
|
65028
|
+
default: boolean;
|
|
65029
|
+
};
|
|
65030
|
+
flex: {
|
|
65031
|
+
types: string[];
|
|
65032
|
+
description: string;
|
|
65033
|
+
default: boolean;
|
|
65034
|
+
};
|
|
65035
|
+
className: {
|
|
65036
|
+
types: string[];
|
|
65037
|
+
description: string;
|
|
65038
|
+
};
|
|
65039
|
+
style: {
|
|
65040
|
+
types: string[];
|
|
65041
|
+
description: string;
|
|
65042
|
+
};
|
|
65043
|
+
children: {
|
|
65044
|
+
types: string[];
|
|
65045
|
+
description: string;
|
|
65046
|
+
};
|
|
65047
|
+
as: {
|
|
65048
|
+
types: string[];
|
|
65049
|
+
description: string;
|
|
65050
|
+
};
|
|
65051
|
+
onClick: {
|
|
65052
|
+
types: string[];
|
|
65053
|
+
description: string;
|
|
65054
|
+
kind: string;
|
|
65055
|
+
callbackArgs: {
|
|
65056
|
+
name: string;
|
|
65057
|
+
type: string;
|
|
65058
|
+
}[];
|
|
65059
|
+
nonEmittable: boolean;
|
|
65060
|
+
};
|
|
65061
|
+
onKeyDown: {
|
|
65062
|
+
types: string[];
|
|
65063
|
+
description: string;
|
|
65064
|
+
kind: string;
|
|
65065
|
+
callbackArgs: {
|
|
65066
|
+
name: string;
|
|
65067
|
+
type: string;
|
|
65068
|
+
}[];
|
|
65069
|
+
nonEmittable: boolean;
|
|
65070
|
+
};
|
|
65071
|
+
role: {
|
|
65072
|
+
types: string[];
|
|
65073
|
+
description: string;
|
|
65074
|
+
};
|
|
65075
|
+
tabIndex: {
|
|
65076
|
+
types: string[];
|
|
65077
|
+
description: string;
|
|
65078
|
+
};
|
|
65079
|
+
action: {
|
|
65080
|
+
types: string[];
|
|
65081
|
+
description: string;
|
|
65082
|
+
kind: string;
|
|
65083
|
+
};
|
|
65084
|
+
actionPayload: {
|
|
65085
|
+
types: string[];
|
|
65086
|
+
description: string;
|
|
65087
|
+
freeform: boolean;
|
|
65088
|
+
};
|
|
65089
|
+
responsive: {
|
|
65090
|
+
types: string[];
|
|
65091
|
+
description: string;
|
|
65092
|
+
default: boolean;
|
|
65093
|
+
};
|
|
65094
|
+
};
|
|
64483
65095
|
};
|
|
64484
65096
|
hstack: {
|
|
64485
65097
|
type: string;
|
|
@@ -64489,7 +65101,100 @@ declare const registry: {
|
|
|
64489
65101
|
description: string;
|
|
64490
65102
|
suggestedFor: string[];
|
|
64491
65103
|
typicalSize: string;
|
|
64492
|
-
propsSchema: {
|
|
65104
|
+
propsSchema: {
|
|
65105
|
+
gap: {
|
|
65106
|
+
types: string[];
|
|
65107
|
+
description: string;
|
|
65108
|
+
enumValues: string[];
|
|
65109
|
+
default: string;
|
|
65110
|
+
};
|
|
65111
|
+
align: {
|
|
65112
|
+
types: string[];
|
|
65113
|
+
description: string;
|
|
65114
|
+
enumValues: string[];
|
|
65115
|
+
default: string;
|
|
65116
|
+
};
|
|
65117
|
+
justify: {
|
|
65118
|
+
types: string[];
|
|
65119
|
+
description: string;
|
|
65120
|
+
enumValues: string[];
|
|
65121
|
+
default: string;
|
|
65122
|
+
};
|
|
65123
|
+
wrap: {
|
|
65124
|
+
types: string[];
|
|
65125
|
+
description: string;
|
|
65126
|
+
default: boolean;
|
|
65127
|
+
};
|
|
65128
|
+
reverse: {
|
|
65129
|
+
types: string[];
|
|
65130
|
+
description: string;
|
|
65131
|
+
default: boolean;
|
|
65132
|
+
};
|
|
65133
|
+
flex: {
|
|
65134
|
+
types: string[];
|
|
65135
|
+
description: string;
|
|
65136
|
+
default: boolean;
|
|
65137
|
+
};
|
|
65138
|
+
className: {
|
|
65139
|
+
types: string[];
|
|
65140
|
+
description: string;
|
|
65141
|
+
};
|
|
65142
|
+
style: {
|
|
65143
|
+
types: string[];
|
|
65144
|
+
description: string;
|
|
65145
|
+
};
|
|
65146
|
+
children: {
|
|
65147
|
+
types: string[];
|
|
65148
|
+
description: string;
|
|
65149
|
+
};
|
|
65150
|
+
as: {
|
|
65151
|
+
types: string[];
|
|
65152
|
+
description: string;
|
|
65153
|
+
};
|
|
65154
|
+
onClick: {
|
|
65155
|
+
types: string[];
|
|
65156
|
+
description: string;
|
|
65157
|
+
kind: string;
|
|
65158
|
+
callbackArgs: {
|
|
65159
|
+
name: string;
|
|
65160
|
+
type: string;
|
|
65161
|
+
}[];
|
|
65162
|
+
nonEmittable: boolean;
|
|
65163
|
+
};
|
|
65164
|
+
onKeyDown: {
|
|
65165
|
+
types: string[];
|
|
65166
|
+
description: string;
|
|
65167
|
+
kind: string;
|
|
65168
|
+
callbackArgs: {
|
|
65169
|
+
name: string;
|
|
65170
|
+
type: string;
|
|
65171
|
+
}[];
|
|
65172
|
+
nonEmittable: boolean;
|
|
65173
|
+
};
|
|
65174
|
+
role: {
|
|
65175
|
+
types: string[];
|
|
65176
|
+
description: string;
|
|
65177
|
+
};
|
|
65178
|
+
tabIndex: {
|
|
65179
|
+
types: string[];
|
|
65180
|
+
description: string;
|
|
65181
|
+
};
|
|
65182
|
+
action: {
|
|
65183
|
+
types: string[];
|
|
65184
|
+
description: string;
|
|
65185
|
+
kind: string;
|
|
65186
|
+
};
|
|
65187
|
+
actionPayload: {
|
|
65188
|
+
types: string[];
|
|
65189
|
+
description: string;
|
|
65190
|
+
freeform: boolean;
|
|
65191
|
+
};
|
|
65192
|
+
responsive: {
|
|
65193
|
+
types: string[];
|
|
65194
|
+
description: string;
|
|
65195
|
+
default: boolean;
|
|
65196
|
+
};
|
|
65197
|
+
};
|
|
64493
65198
|
};
|
|
64494
65199
|
"form-layout": {
|
|
64495
65200
|
type: string;
|
|
@@ -66621,6 +67326,10 @@ declare const registry: {
|
|
|
66621
67326
|
types: string[];
|
|
66622
67327
|
description: string;
|
|
66623
67328
|
};
|
|
67329
|
+
animation: {
|
|
67330
|
+
types: string[];
|
|
67331
|
+
description: string;
|
|
67332
|
+
};
|
|
66624
67333
|
flipX: {
|
|
66625
67334
|
types: string[];
|
|
66626
67335
|
description: string;
|
|
@@ -66907,6 +67616,9 @@ declare const registry: {
|
|
|
66907
67616
|
frame: {
|
|
66908
67617
|
types: string[];
|
|
66909
67618
|
};
|
|
67619
|
+
animation: {
|
|
67620
|
+
types: string[];
|
|
67621
|
+
};
|
|
66910
67622
|
flipX: {
|
|
66911
67623
|
types: string[];
|
|
66912
67624
|
};
|
|
@@ -73476,15 +74188,89 @@ declare const PATTERN_REGISTRY: {
|
|
|
73476
74188
|
suggestedFor: string[];
|
|
73477
74189
|
typicalSize: string;
|
|
73478
74190
|
propsSchema: {
|
|
73479
|
-
|
|
74191
|
+
className: {
|
|
73480
74192
|
types: string[];
|
|
73481
74193
|
description: string;
|
|
73482
74194
|
};
|
|
73483
|
-
|
|
74195
|
+
placeholder: {
|
|
73484
74196
|
types: string[];
|
|
73485
74197
|
description: string;
|
|
73486
74198
|
};
|
|
73487
|
-
|
|
74199
|
+
value: {
|
|
74200
|
+
types: string[];
|
|
74201
|
+
description: string;
|
|
74202
|
+
};
|
|
74203
|
+
disabled: {
|
|
74204
|
+
types: string[];
|
|
74205
|
+
description: string;
|
|
74206
|
+
};
|
|
74207
|
+
action: {
|
|
74208
|
+
types: string[];
|
|
74209
|
+
description: string;
|
|
74210
|
+
kind: string;
|
|
74211
|
+
};
|
|
74212
|
+
inputType: {
|
|
74213
|
+
types: string[];
|
|
74214
|
+
description: string;
|
|
74215
|
+
enumValues: string[];
|
|
74216
|
+
};
|
|
74217
|
+
label: {
|
|
74218
|
+
types: string[];
|
|
74219
|
+
description: string;
|
|
74220
|
+
};
|
|
74221
|
+
helperText: {
|
|
74222
|
+
types: string[];
|
|
74223
|
+
description: string;
|
|
74224
|
+
};
|
|
74225
|
+
error: {
|
|
74226
|
+
types: string[];
|
|
74227
|
+
description: string;
|
|
74228
|
+
};
|
|
74229
|
+
leftIcon: {
|
|
74230
|
+
types: string[];
|
|
74231
|
+
description: string;
|
|
74232
|
+
};
|
|
74233
|
+
rightIcon: {
|
|
74234
|
+
types: string[];
|
|
74235
|
+
description: string;
|
|
74236
|
+
};
|
|
74237
|
+
clearable: {
|
|
74238
|
+
types: string[];
|
|
74239
|
+
description: string;
|
|
74240
|
+
};
|
|
74241
|
+
onClear: {
|
|
74242
|
+
types: string[];
|
|
74243
|
+
description: string;
|
|
74244
|
+
};
|
|
74245
|
+
options: {
|
|
74246
|
+
types: string[];
|
|
74247
|
+
description: string;
|
|
74248
|
+
items: {
|
|
74249
|
+
types: string[];
|
|
74250
|
+
properties: {
|
|
74251
|
+
value: {
|
|
74252
|
+
types: string[];
|
|
74253
|
+
};
|
|
74254
|
+
label: {
|
|
74255
|
+
types: string[];
|
|
74256
|
+
};
|
|
74257
|
+
};
|
|
74258
|
+
required: string[];
|
|
74259
|
+
};
|
|
74260
|
+
};
|
|
74261
|
+
rows: {
|
|
74262
|
+
types: string[];
|
|
74263
|
+
description: string;
|
|
74264
|
+
};
|
|
74265
|
+
onChange: {
|
|
74266
|
+
types: string[];
|
|
74267
|
+
description: string;
|
|
74268
|
+
};
|
|
74269
|
+
leftAddon: {
|
|
74270
|
+
types: string[];
|
|
74271
|
+
description: string;
|
|
74272
|
+
};
|
|
74273
|
+
rightAddon: {
|
|
73488
74274
|
types: string[];
|
|
73489
74275
|
description: string;
|
|
73490
74276
|
};
|
|
@@ -88443,7 +89229,100 @@ declare const PATTERN_REGISTRY: {
|
|
|
88443
89229
|
description: string;
|
|
88444
89230
|
suggestedFor: string[];
|
|
88445
89231
|
typicalSize: string;
|
|
88446
|
-
propsSchema: {
|
|
89232
|
+
propsSchema: {
|
|
89233
|
+
gap: {
|
|
89234
|
+
types: string[];
|
|
89235
|
+
description: string;
|
|
89236
|
+
enumValues: string[];
|
|
89237
|
+
default: string;
|
|
89238
|
+
};
|
|
89239
|
+
align: {
|
|
89240
|
+
types: string[];
|
|
89241
|
+
description: string;
|
|
89242
|
+
enumValues: string[];
|
|
89243
|
+
default: string;
|
|
89244
|
+
};
|
|
89245
|
+
justify: {
|
|
89246
|
+
types: string[];
|
|
89247
|
+
description: string;
|
|
89248
|
+
enumValues: string[];
|
|
89249
|
+
default: string;
|
|
89250
|
+
};
|
|
89251
|
+
wrap: {
|
|
89252
|
+
types: string[];
|
|
89253
|
+
description: string;
|
|
89254
|
+
default: boolean;
|
|
89255
|
+
};
|
|
89256
|
+
reverse: {
|
|
89257
|
+
types: string[];
|
|
89258
|
+
description: string;
|
|
89259
|
+
default: boolean;
|
|
89260
|
+
};
|
|
89261
|
+
flex: {
|
|
89262
|
+
types: string[];
|
|
89263
|
+
description: string;
|
|
89264
|
+
default: boolean;
|
|
89265
|
+
};
|
|
89266
|
+
className: {
|
|
89267
|
+
types: string[];
|
|
89268
|
+
description: string;
|
|
89269
|
+
};
|
|
89270
|
+
style: {
|
|
89271
|
+
types: string[];
|
|
89272
|
+
description: string;
|
|
89273
|
+
};
|
|
89274
|
+
children: {
|
|
89275
|
+
types: string[];
|
|
89276
|
+
description: string;
|
|
89277
|
+
};
|
|
89278
|
+
as: {
|
|
89279
|
+
types: string[];
|
|
89280
|
+
description: string;
|
|
89281
|
+
};
|
|
89282
|
+
onClick: {
|
|
89283
|
+
types: string[];
|
|
89284
|
+
description: string;
|
|
89285
|
+
kind: string;
|
|
89286
|
+
callbackArgs: {
|
|
89287
|
+
name: string;
|
|
89288
|
+
type: string;
|
|
89289
|
+
}[];
|
|
89290
|
+
nonEmittable: boolean;
|
|
89291
|
+
};
|
|
89292
|
+
onKeyDown: {
|
|
89293
|
+
types: string[];
|
|
89294
|
+
description: string;
|
|
89295
|
+
kind: string;
|
|
89296
|
+
callbackArgs: {
|
|
89297
|
+
name: string;
|
|
89298
|
+
type: string;
|
|
89299
|
+
}[];
|
|
89300
|
+
nonEmittable: boolean;
|
|
89301
|
+
};
|
|
89302
|
+
role: {
|
|
89303
|
+
types: string[];
|
|
89304
|
+
description: string;
|
|
89305
|
+
};
|
|
89306
|
+
tabIndex: {
|
|
89307
|
+
types: string[];
|
|
89308
|
+
description: string;
|
|
89309
|
+
};
|
|
89310
|
+
action: {
|
|
89311
|
+
types: string[];
|
|
89312
|
+
description: string;
|
|
89313
|
+
kind: string;
|
|
89314
|
+
};
|
|
89315
|
+
actionPayload: {
|
|
89316
|
+
types: string[];
|
|
89317
|
+
description: string;
|
|
89318
|
+
freeform: boolean;
|
|
89319
|
+
};
|
|
89320
|
+
responsive: {
|
|
89321
|
+
types: string[];
|
|
89322
|
+
description: string;
|
|
89323
|
+
default: boolean;
|
|
89324
|
+
};
|
|
89325
|
+
};
|
|
88447
89326
|
};
|
|
88448
89327
|
hstack: {
|
|
88449
89328
|
type: string;
|
|
@@ -88453,7 +89332,100 @@ declare const PATTERN_REGISTRY: {
|
|
|
88453
89332
|
description: string;
|
|
88454
89333
|
suggestedFor: string[];
|
|
88455
89334
|
typicalSize: string;
|
|
88456
|
-
propsSchema: {
|
|
89335
|
+
propsSchema: {
|
|
89336
|
+
gap: {
|
|
89337
|
+
types: string[];
|
|
89338
|
+
description: string;
|
|
89339
|
+
enumValues: string[];
|
|
89340
|
+
default: string;
|
|
89341
|
+
};
|
|
89342
|
+
align: {
|
|
89343
|
+
types: string[];
|
|
89344
|
+
description: string;
|
|
89345
|
+
enumValues: string[];
|
|
89346
|
+
default: string;
|
|
89347
|
+
};
|
|
89348
|
+
justify: {
|
|
89349
|
+
types: string[];
|
|
89350
|
+
description: string;
|
|
89351
|
+
enumValues: string[];
|
|
89352
|
+
default: string;
|
|
89353
|
+
};
|
|
89354
|
+
wrap: {
|
|
89355
|
+
types: string[];
|
|
89356
|
+
description: string;
|
|
89357
|
+
default: boolean;
|
|
89358
|
+
};
|
|
89359
|
+
reverse: {
|
|
89360
|
+
types: string[];
|
|
89361
|
+
description: string;
|
|
89362
|
+
default: boolean;
|
|
89363
|
+
};
|
|
89364
|
+
flex: {
|
|
89365
|
+
types: string[];
|
|
89366
|
+
description: string;
|
|
89367
|
+
default: boolean;
|
|
89368
|
+
};
|
|
89369
|
+
className: {
|
|
89370
|
+
types: string[];
|
|
89371
|
+
description: string;
|
|
89372
|
+
};
|
|
89373
|
+
style: {
|
|
89374
|
+
types: string[];
|
|
89375
|
+
description: string;
|
|
89376
|
+
};
|
|
89377
|
+
children: {
|
|
89378
|
+
types: string[];
|
|
89379
|
+
description: string;
|
|
89380
|
+
};
|
|
89381
|
+
as: {
|
|
89382
|
+
types: string[];
|
|
89383
|
+
description: string;
|
|
89384
|
+
};
|
|
89385
|
+
onClick: {
|
|
89386
|
+
types: string[];
|
|
89387
|
+
description: string;
|
|
89388
|
+
kind: string;
|
|
89389
|
+
callbackArgs: {
|
|
89390
|
+
name: string;
|
|
89391
|
+
type: string;
|
|
89392
|
+
}[];
|
|
89393
|
+
nonEmittable: boolean;
|
|
89394
|
+
};
|
|
89395
|
+
onKeyDown: {
|
|
89396
|
+
types: string[];
|
|
89397
|
+
description: string;
|
|
89398
|
+
kind: string;
|
|
89399
|
+
callbackArgs: {
|
|
89400
|
+
name: string;
|
|
89401
|
+
type: string;
|
|
89402
|
+
}[];
|
|
89403
|
+
nonEmittable: boolean;
|
|
89404
|
+
};
|
|
89405
|
+
role: {
|
|
89406
|
+
types: string[];
|
|
89407
|
+
description: string;
|
|
89408
|
+
};
|
|
89409
|
+
tabIndex: {
|
|
89410
|
+
types: string[];
|
|
89411
|
+
description: string;
|
|
89412
|
+
};
|
|
89413
|
+
action: {
|
|
89414
|
+
types: string[];
|
|
89415
|
+
description: string;
|
|
89416
|
+
kind: string;
|
|
89417
|
+
};
|
|
89418
|
+
actionPayload: {
|
|
89419
|
+
types: string[];
|
|
89420
|
+
description: string;
|
|
89421
|
+
freeform: boolean;
|
|
89422
|
+
};
|
|
89423
|
+
responsive: {
|
|
89424
|
+
types: string[];
|
|
89425
|
+
description: string;
|
|
89426
|
+
default: boolean;
|
|
89427
|
+
};
|
|
89428
|
+
};
|
|
88457
89429
|
};
|
|
88458
89430
|
"form-layout": {
|
|
88459
89431
|
type: string;
|
|
@@ -90585,6 +91557,10 @@ declare const PATTERN_REGISTRY: {
|
|
|
90585
91557
|
types: string[];
|
|
90586
91558
|
description: string;
|
|
90587
91559
|
};
|
|
91560
|
+
animation: {
|
|
91561
|
+
types: string[];
|
|
91562
|
+
description: string;
|
|
91563
|
+
};
|
|
90588
91564
|
flipX: {
|
|
90589
91565
|
types: string[];
|
|
90590
91566
|
description: string;
|
|
@@ -90871,6 +91847,9 @@ declare const PATTERN_REGISTRY: {
|
|
|
90871
91847
|
frame: {
|
|
90872
91848
|
types: string[];
|
|
90873
91849
|
};
|
|
91850
|
+
animation: {
|
|
91851
|
+
types: string[];
|
|
91852
|
+
};
|
|
90874
91853
|
flipX: {
|
|
90875
91854
|
types: string[];
|
|
90876
91855
|
};
|