@almadar/patterns 2.30.5 → 2.30.7
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/component-mapping.json +11 -1
- package/dist/event-contracts.json +1 -1
- package/dist/index.d.ts +258 -0
- package/dist/index.js +209 -3
- package/dist/index.js.map +1 -1
- package/dist/patterns-registry.json +197 -1
- package/dist/registry.json +197 -1
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": "1.0.0",
|
|
3
|
-
"exportedAt": "2026-05-
|
|
3
|
+
"exportedAt": "2026-05-22T00:42:28.331Z",
|
|
4
4
|
"mappings": {
|
|
5
5
|
"page-header": {
|
|
6
6
|
"component": "PageHeader",
|
|
@@ -1509,6 +1509,16 @@
|
|
|
1509
1509
|
"importPath": "@/components/atoms/Dialog",
|
|
1510
1510
|
"category": "container"
|
|
1511
1511
|
},
|
|
1512
|
+
"tag-input": {
|
|
1513
|
+
"component": "TagInput",
|
|
1514
|
+
"importPath": "@/components/molecules/TagInput",
|
|
1515
|
+
"category": "form"
|
|
1516
|
+
},
|
|
1517
|
+
"marketing-footer": {
|
|
1518
|
+
"component": "MarketingFooter",
|
|
1519
|
+
"importPath": "@/components/molecules/MarketingFooter",
|
|
1520
|
+
"category": "component"
|
|
1521
|
+
},
|
|
1512
1522
|
"heading": {
|
|
1513
1523
|
"component": "Typography",
|
|
1514
1524
|
"importPath": "@/components/atoms/Typography",
|
package/dist/index.d.ts
CHANGED
|
@@ -3054,6 +3054,16 @@ export declare const registry: {
|
|
|
3054
3054
|
types: string[];
|
|
3055
3055
|
description: string;
|
|
3056
3056
|
};
|
|
3057
|
+
onRemove: {
|
|
3058
|
+
types: string[];
|
|
3059
|
+
description: string;
|
|
3060
|
+
kind: string;
|
|
3061
|
+
callbackArgs: never[];
|
|
3062
|
+
};
|
|
3063
|
+
removeLabel: {
|
|
3064
|
+
types: string[];
|
|
3065
|
+
description: string;
|
|
3066
|
+
};
|
|
3057
3067
|
};
|
|
3058
3068
|
};
|
|
3059
3069
|
avatar: {
|
|
@@ -19067,6 +19077,120 @@ export declare const registry: {
|
|
|
19067
19077
|
};
|
|
19068
19078
|
};
|
|
19069
19079
|
};
|
|
19080
|
+
"tag-input": {
|
|
19081
|
+
type: string;
|
|
19082
|
+
category: string;
|
|
19083
|
+
description: string;
|
|
19084
|
+
suggestedFor: string[];
|
|
19085
|
+
typicalSize: string;
|
|
19086
|
+
propsSchema: {
|
|
19087
|
+
value: {
|
|
19088
|
+
types: string[];
|
|
19089
|
+
description: string;
|
|
19090
|
+
required: boolean;
|
|
19091
|
+
items: {
|
|
19092
|
+
types: string[];
|
|
19093
|
+
};
|
|
19094
|
+
};
|
|
19095
|
+
onChange: {
|
|
19096
|
+
types: string[];
|
|
19097
|
+
description: string;
|
|
19098
|
+
kind: string;
|
|
19099
|
+
callbackArgs: {
|
|
19100
|
+
name: string;
|
|
19101
|
+
type: string;
|
|
19102
|
+
}[];
|
|
19103
|
+
};
|
|
19104
|
+
placeholder: {
|
|
19105
|
+
types: string[];
|
|
19106
|
+
description: string;
|
|
19107
|
+
};
|
|
19108
|
+
disabled: {
|
|
19109
|
+
types: string[];
|
|
19110
|
+
description: string;
|
|
19111
|
+
default: boolean;
|
|
19112
|
+
};
|
|
19113
|
+
variant: {
|
|
19114
|
+
types: string[];
|
|
19115
|
+
description: string;
|
|
19116
|
+
enumValues: string[];
|
|
19117
|
+
default: string;
|
|
19118
|
+
};
|
|
19119
|
+
unique: {
|
|
19120
|
+
types: string[];
|
|
19121
|
+
description: string;
|
|
19122
|
+
default: boolean;
|
|
19123
|
+
};
|
|
19124
|
+
helperText: {
|
|
19125
|
+
types: string[];
|
|
19126
|
+
description: string;
|
|
19127
|
+
};
|
|
19128
|
+
className: {
|
|
19129
|
+
types: string[];
|
|
19130
|
+
description: string;
|
|
19131
|
+
};
|
|
19132
|
+
addEvent: {
|
|
19133
|
+
types: string[];
|
|
19134
|
+
description: string;
|
|
19135
|
+
kind: string;
|
|
19136
|
+
};
|
|
19137
|
+
removeEvent: {
|
|
19138
|
+
types: string[];
|
|
19139
|
+
description: string;
|
|
19140
|
+
kind: string;
|
|
19141
|
+
};
|
|
19142
|
+
};
|
|
19143
|
+
};
|
|
19144
|
+
"marketing-footer": {
|
|
19145
|
+
type: string;
|
|
19146
|
+
category: string;
|
|
19147
|
+
description: string;
|
|
19148
|
+
suggestedFor: string[];
|
|
19149
|
+
typicalSize: string;
|
|
19150
|
+
propsSchema: {
|
|
19151
|
+
columns: {
|
|
19152
|
+
types: string[];
|
|
19153
|
+
description: string;
|
|
19154
|
+
required: boolean;
|
|
19155
|
+
items: {
|
|
19156
|
+
types: string[];
|
|
19157
|
+
properties: {
|
|
19158
|
+
title: {
|
|
19159
|
+
types: string[];
|
|
19160
|
+
};
|
|
19161
|
+
items: {
|
|
19162
|
+
types: string[];
|
|
19163
|
+
items: {
|
|
19164
|
+
types: string[];
|
|
19165
|
+
properties: {
|
|
19166
|
+
label: {
|
|
19167
|
+
types: string[];
|
|
19168
|
+
};
|
|
19169
|
+
href: {
|
|
19170
|
+
types: string[];
|
|
19171
|
+
};
|
|
19172
|
+
};
|
|
19173
|
+
required: string[];
|
|
19174
|
+
};
|
|
19175
|
+
};
|
|
19176
|
+
};
|
|
19177
|
+
required: string[];
|
|
19178
|
+
};
|
|
19179
|
+
};
|
|
19180
|
+
copyright: {
|
|
19181
|
+
types: string[];
|
|
19182
|
+
description: string;
|
|
19183
|
+
};
|
|
19184
|
+
logo: {
|
|
19185
|
+
types: string[];
|
|
19186
|
+
description: string;
|
|
19187
|
+
};
|
|
19188
|
+
className: {
|
|
19189
|
+
types: string[];
|
|
19190
|
+
description: string;
|
|
19191
|
+
};
|
|
19192
|
+
};
|
|
19193
|
+
};
|
|
19070
19194
|
heading: {
|
|
19071
19195
|
type: string;
|
|
19072
19196
|
category: string;
|
|
@@ -22270,6 +22394,16 @@ export declare const PATTERN_REGISTRY: {
|
|
|
22270
22394
|
types: string[];
|
|
22271
22395
|
description: string;
|
|
22272
22396
|
};
|
|
22397
|
+
onRemove: {
|
|
22398
|
+
types: string[];
|
|
22399
|
+
description: string;
|
|
22400
|
+
kind: string;
|
|
22401
|
+
callbackArgs: never[];
|
|
22402
|
+
};
|
|
22403
|
+
removeLabel: {
|
|
22404
|
+
types: string[];
|
|
22405
|
+
description: string;
|
|
22406
|
+
};
|
|
22273
22407
|
};
|
|
22274
22408
|
};
|
|
22275
22409
|
avatar: {
|
|
@@ -38283,6 +38417,120 @@ export declare const PATTERN_REGISTRY: {
|
|
|
38283
38417
|
};
|
|
38284
38418
|
};
|
|
38285
38419
|
};
|
|
38420
|
+
"tag-input": {
|
|
38421
|
+
type: string;
|
|
38422
|
+
category: string;
|
|
38423
|
+
description: string;
|
|
38424
|
+
suggestedFor: string[];
|
|
38425
|
+
typicalSize: string;
|
|
38426
|
+
propsSchema: {
|
|
38427
|
+
value: {
|
|
38428
|
+
types: string[];
|
|
38429
|
+
description: string;
|
|
38430
|
+
required: boolean;
|
|
38431
|
+
items: {
|
|
38432
|
+
types: string[];
|
|
38433
|
+
};
|
|
38434
|
+
};
|
|
38435
|
+
onChange: {
|
|
38436
|
+
types: string[];
|
|
38437
|
+
description: string;
|
|
38438
|
+
kind: string;
|
|
38439
|
+
callbackArgs: {
|
|
38440
|
+
name: string;
|
|
38441
|
+
type: string;
|
|
38442
|
+
}[];
|
|
38443
|
+
};
|
|
38444
|
+
placeholder: {
|
|
38445
|
+
types: string[];
|
|
38446
|
+
description: string;
|
|
38447
|
+
};
|
|
38448
|
+
disabled: {
|
|
38449
|
+
types: string[];
|
|
38450
|
+
description: string;
|
|
38451
|
+
default: boolean;
|
|
38452
|
+
};
|
|
38453
|
+
variant: {
|
|
38454
|
+
types: string[];
|
|
38455
|
+
description: string;
|
|
38456
|
+
enumValues: string[];
|
|
38457
|
+
default: string;
|
|
38458
|
+
};
|
|
38459
|
+
unique: {
|
|
38460
|
+
types: string[];
|
|
38461
|
+
description: string;
|
|
38462
|
+
default: boolean;
|
|
38463
|
+
};
|
|
38464
|
+
helperText: {
|
|
38465
|
+
types: string[];
|
|
38466
|
+
description: string;
|
|
38467
|
+
};
|
|
38468
|
+
className: {
|
|
38469
|
+
types: string[];
|
|
38470
|
+
description: string;
|
|
38471
|
+
};
|
|
38472
|
+
addEvent: {
|
|
38473
|
+
types: string[];
|
|
38474
|
+
description: string;
|
|
38475
|
+
kind: string;
|
|
38476
|
+
};
|
|
38477
|
+
removeEvent: {
|
|
38478
|
+
types: string[];
|
|
38479
|
+
description: string;
|
|
38480
|
+
kind: string;
|
|
38481
|
+
};
|
|
38482
|
+
};
|
|
38483
|
+
};
|
|
38484
|
+
"marketing-footer": {
|
|
38485
|
+
type: string;
|
|
38486
|
+
category: string;
|
|
38487
|
+
description: string;
|
|
38488
|
+
suggestedFor: string[];
|
|
38489
|
+
typicalSize: string;
|
|
38490
|
+
propsSchema: {
|
|
38491
|
+
columns: {
|
|
38492
|
+
types: string[];
|
|
38493
|
+
description: string;
|
|
38494
|
+
required: boolean;
|
|
38495
|
+
items: {
|
|
38496
|
+
types: string[];
|
|
38497
|
+
properties: {
|
|
38498
|
+
title: {
|
|
38499
|
+
types: string[];
|
|
38500
|
+
};
|
|
38501
|
+
items: {
|
|
38502
|
+
types: string[];
|
|
38503
|
+
items: {
|
|
38504
|
+
types: string[];
|
|
38505
|
+
properties: {
|
|
38506
|
+
label: {
|
|
38507
|
+
types: string[];
|
|
38508
|
+
};
|
|
38509
|
+
href: {
|
|
38510
|
+
types: string[];
|
|
38511
|
+
};
|
|
38512
|
+
};
|
|
38513
|
+
required: string[];
|
|
38514
|
+
};
|
|
38515
|
+
};
|
|
38516
|
+
};
|
|
38517
|
+
required: string[];
|
|
38518
|
+
};
|
|
38519
|
+
};
|
|
38520
|
+
copyright: {
|
|
38521
|
+
types: string[];
|
|
38522
|
+
description: string;
|
|
38523
|
+
};
|
|
38524
|
+
logo: {
|
|
38525
|
+
types: string[];
|
|
38526
|
+
description: string;
|
|
38527
|
+
};
|
|
38528
|
+
className: {
|
|
38529
|
+
types: string[];
|
|
38530
|
+
description: string;
|
|
38531
|
+
};
|
|
38532
|
+
};
|
|
38533
|
+
};
|
|
38286
38534
|
heading: {
|
|
38287
38535
|
type: string;
|
|
38288
38536
|
category: string;
|
|
@@ -40515,6 +40763,16 @@ export declare const COMPONENT_MAPPING: {
|
|
|
40515
40763
|
importPath: string;
|
|
40516
40764
|
category: string;
|
|
40517
40765
|
};
|
|
40766
|
+
"tag-input": {
|
|
40767
|
+
component: string;
|
|
40768
|
+
importPath: string;
|
|
40769
|
+
category: string;
|
|
40770
|
+
};
|
|
40771
|
+
"marketing-footer": {
|
|
40772
|
+
component: string;
|
|
40773
|
+
importPath: string;
|
|
40774
|
+
category: string;
|
|
40775
|
+
};
|
|
40518
40776
|
heading: {
|
|
40519
40777
|
component: string;
|
|
40520
40778
|
importPath: string;
|
package/dist/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// src/patterns-registry.json
|
|
2
2
|
var patterns_registry_default = {
|
|
3
3
|
version: "1.0.0",
|
|
4
|
-
exportedAt: "2026-05-
|
|
4
|
+
exportedAt: "2026-05-22T00:42:28.331Z",
|
|
5
5
|
patterns: {
|
|
6
6
|
"entity-table": {
|
|
7
7
|
type: "entity-table",
|
|
@@ -4904,6 +4904,20 @@ var patterns_registry_default = {
|
|
|
4904
4904
|
"node"
|
|
4905
4905
|
],
|
|
4906
4906
|
description: "Icon name (Lucide icon string) or React node"
|
|
4907
|
+
},
|
|
4908
|
+
onRemove: {
|
|
4909
|
+
types: [
|
|
4910
|
+
"function"
|
|
4911
|
+
],
|
|
4912
|
+
description: 'When set, renders a small X button on the right of the badge that invokes this handler \u2014 turns the badge into a removable chip. Used by the TagInput molecule and other "list of removable values" surfaces.',
|
|
4913
|
+
kind: "callback",
|
|
4914
|
+
callbackArgs: []
|
|
4915
|
+
},
|
|
4916
|
+
removeLabel: {
|
|
4917
|
+
types: [
|
|
4918
|
+
"string"
|
|
4919
|
+
],
|
|
4920
|
+
description: 'Accessible label for the remove button. Defaults to "Remove".'
|
|
4907
4921
|
}
|
|
4908
4922
|
}
|
|
4909
4923
|
},
|
|
@@ -30226,6 +30240,188 @@ var patterns_registry_default = {
|
|
|
30226
30240
|
}
|
|
30227
30241
|
}
|
|
30228
30242
|
},
|
|
30243
|
+
"tag-input": {
|
|
30244
|
+
type: "tag-input",
|
|
30245
|
+
category: "form",
|
|
30246
|
+
description: "TagInput component",
|
|
30247
|
+
suggestedFor: [
|
|
30248
|
+
"tag",
|
|
30249
|
+
"input",
|
|
30250
|
+
"tag input"
|
|
30251
|
+
],
|
|
30252
|
+
typicalSize: "medium",
|
|
30253
|
+
propsSchema: {
|
|
30254
|
+
value: {
|
|
30255
|
+
types: [
|
|
30256
|
+
"array"
|
|
30257
|
+
],
|
|
30258
|
+
description: "Current list of tags.",
|
|
30259
|
+
required: true,
|
|
30260
|
+
items: {
|
|
30261
|
+
types: [
|
|
30262
|
+
"string"
|
|
30263
|
+
]
|
|
30264
|
+
}
|
|
30265
|
+
},
|
|
30266
|
+
onChange: {
|
|
30267
|
+
types: [
|
|
30268
|
+
"function"
|
|
30269
|
+
],
|
|
30270
|
+
description: "Direct callback emitted on every change. Stays as the Storybook / non-trait contract; trait-driven schemas should prefer the bus events below.",
|
|
30271
|
+
kind: "callback",
|
|
30272
|
+
callbackArgs: [
|
|
30273
|
+
{
|
|
30274
|
+
name: "next",
|
|
30275
|
+
type: "array"
|
|
30276
|
+
}
|
|
30277
|
+
]
|
|
30278
|
+
},
|
|
30279
|
+
placeholder: {
|
|
30280
|
+
types: [
|
|
30281
|
+
"string"
|
|
30282
|
+
],
|
|
30283
|
+
description: 'Placeholder for the entry input. Default: `"Type and press Enter\u2026"`.'
|
|
30284
|
+
},
|
|
30285
|
+
disabled: {
|
|
30286
|
+
types: [
|
|
30287
|
+
"boolean"
|
|
30288
|
+
],
|
|
30289
|
+
description: "Disable add + remove interactions.",
|
|
30290
|
+
default: false
|
|
30291
|
+
},
|
|
30292
|
+
variant: {
|
|
30293
|
+
types: [
|
|
30294
|
+
"string"
|
|
30295
|
+
],
|
|
30296
|
+
description: "Variant applied to each chip Badge. Default: `'default'`.",
|
|
30297
|
+
enumValues: [
|
|
30298
|
+
"default",
|
|
30299
|
+
"primary",
|
|
30300
|
+
"secondary",
|
|
30301
|
+
"success",
|
|
30302
|
+
"warning",
|
|
30303
|
+
"danger",
|
|
30304
|
+
"error",
|
|
30305
|
+
"info",
|
|
30306
|
+
"neutral"
|
|
30307
|
+
],
|
|
30308
|
+
default: "default"
|
|
30309
|
+
},
|
|
30310
|
+
unique: {
|
|
30311
|
+
types: [
|
|
30312
|
+
"boolean"
|
|
30313
|
+
],
|
|
30314
|
+
description: "Suppress duplicate entries. Default: `true`.",
|
|
30315
|
+
default: true
|
|
30316
|
+
},
|
|
30317
|
+
helperText: {
|
|
30318
|
+
types: [
|
|
30319
|
+
"string"
|
|
30320
|
+
],
|
|
30321
|
+
description: "Helper text rendered under the input."
|
|
30322
|
+
},
|
|
30323
|
+
className: {
|
|
30324
|
+
types: [
|
|
30325
|
+
"string"
|
|
30326
|
+
],
|
|
30327
|
+
description: "Additional CSS classes applied to the outer container."
|
|
30328
|
+
},
|
|
30329
|
+
addEvent: {
|
|
30330
|
+
types: [
|
|
30331
|
+
"string"
|
|
30332
|
+
],
|
|
30333
|
+
description: "Event emitted when a tag is added: `UI:{addEvent}` with payload `{ tag: string, value: string[] }`.",
|
|
30334
|
+
kind: "event"
|
|
30335
|
+
},
|
|
30336
|
+
removeEvent: {
|
|
30337
|
+
types: [
|
|
30338
|
+
"string"
|
|
30339
|
+
],
|
|
30340
|
+
description: "Event emitted when a tag is removed: `UI:{removeEvent}` with payload `{ tag: string, index: number, value: string[] }`.",
|
|
30341
|
+
kind: "event"
|
|
30342
|
+
}
|
|
30343
|
+
}
|
|
30344
|
+
},
|
|
30345
|
+
"marketing-footer": {
|
|
30346
|
+
type: "marketing-footer",
|
|
30347
|
+
category: "component",
|
|
30348
|
+
description: "MarketingFooter component",
|
|
30349
|
+
suggestedFor: [
|
|
30350
|
+
"marketing",
|
|
30351
|
+
"footer",
|
|
30352
|
+
"marketing footer"
|
|
30353
|
+
],
|
|
30354
|
+
typicalSize: "medium",
|
|
30355
|
+
propsSchema: {
|
|
30356
|
+
columns: {
|
|
30357
|
+
types: [
|
|
30358
|
+
"array"
|
|
30359
|
+
],
|
|
30360
|
+
description: "columns prop",
|
|
30361
|
+
required: true,
|
|
30362
|
+
items: {
|
|
30363
|
+
types: [
|
|
30364
|
+
"object"
|
|
30365
|
+
],
|
|
30366
|
+
properties: {
|
|
30367
|
+
title: {
|
|
30368
|
+
types: [
|
|
30369
|
+
"string"
|
|
30370
|
+
]
|
|
30371
|
+
},
|
|
30372
|
+
items: {
|
|
30373
|
+
types: [
|
|
30374
|
+
"array"
|
|
30375
|
+
],
|
|
30376
|
+
items: {
|
|
30377
|
+
types: [
|
|
30378
|
+
"object"
|
|
30379
|
+
],
|
|
30380
|
+
properties: {
|
|
30381
|
+
label: {
|
|
30382
|
+
types: [
|
|
30383
|
+
"string"
|
|
30384
|
+
]
|
|
30385
|
+
},
|
|
30386
|
+
href: {
|
|
30387
|
+
types: [
|
|
30388
|
+
"string"
|
|
30389
|
+
]
|
|
30390
|
+
}
|
|
30391
|
+
},
|
|
30392
|
+
required: [
|
|
30393
|
+
"label",
|
|
30394
|
+
"href"
|
|
30395
|
+
]
|
|
30396
|
+
}
|
|
30397
|
+
}
|
|
30398
|
+
},
|
|
30399
|
+
required: [
|
|
30400
|
+
"title",
|
|
30401
|
+
"items"
|
|
30402
|
+
]
|
|
30403
|
+
}
|
|
30404
|
+
},
|
|
30405
|
+
copyright: {
|
|
30406
|
+
types: [
|
|
30407
|
+
"string"
|
|
30408
|
+
],
|
|
30409
|
+
description: "copyright prop"
|
|
30410
|
+
},
|
|
30411
|
+
logo: {
|
|
30412
|
+
types: [
|
|
30413
|
+
"object"
|
|
30414
|
+
],
|
|
30415
|
+
description: "logo prop"
|
|
30416
|
+
},
|
|
30417
|
+
className: {
|
|
30418
|
+
types: [
|
|
30419
|
+
"string"
|
|
30420
|
+
],
|
|
30421
|
+
description: "className prop"
|
|
30422
|
+
}
|
|
30423
|
+
}
|
|
30424
|
+
},
|
|
30229
30425
|
heading: {
|
|
30230
30426
|
type: "heading",
|
|
30231
30427
|
category: "component",
|
|
@@ -31160,7 +31356,7 @@ var integrators_registry_default = {
|
|
|
31160
31356
|
// src/component-mapping.json
|
|
31161
31357
|
var component_mapping_default = {
|
|
31162
31358
|
version: "1.0.0",
|
|
31163
|
-
exportedAt: "2026-05-
|
|
31359
|
+
exportedAt: "2026-05-22T00:42:28.331Z",
|
|
31164
31360
|
mappings: {
|
|
31165
31361
|
"page-header": {
|
|
31166
31362
|
component: "PageHeader",
|
|
@@ -32669,6 +32865,16 @@ var component_mapping_default = {
|
|
|
32669
32865
|
importPath: "@/components/atoms/Dialog",
|
|
32670
32866
|
category: "container"
|
|
32671
32867
|
},
|
|
32868
|
+
"tag-input": {
|
|
32869
|
+
component: "TagInput",
|
|
32870
|
+
importPath: "@/components/molecules/TagInput",
|
|
32871
|
+
category: "form"
|
|
32872
|
+
},
|
|
32873
|
+
"marketing-footer": {
|
|
32874
|
+
component: "MarketingFooter",
|
|
32875
|
+
importPath: "@/components/molecules/MarketingFooter",
|
|
32876
|
+
category: "component"
|
|
32877
|
+
},
|
|
32672
32878
|
heading: {
|
|
32673
32879
|
component: "Typography",
|
|
32674
32880
|
importPath: "@/components/atoms/Typography",
|
|
@@ -32685,7 +32891,7 @@ var component_mapping_default = {
|
|
|
32685
32891
|
// src/event-contracts.json
|
|
32686
32892
|
var event_contracts_default = {
|
|
32687
32893
|
version: "1.0.0",
|
|
32688
|
-
exportedAt: "2026-05-
|
|
32894
|
+
exportedAt: "2026-05-22T00:42:28.331Z",
|
|
32689
32895
|
contracts: {
|
|
32690
32896
|
form: {
|
|
32691
32897
|
emits: [
|