@almadar/patterns 2.33.1 → 2.34.1
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 +1 -1
- package/dist/event-contracts.json +1 -1
- package/dist/index.d.ts +34 -0
- package/dist/index.js +28 -3
- package/dist/index.js.map +1 -1
- package/dist/patterns-registry.json +26 -1
- package/dist/registry.json +26 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -8291,6 +8291,15 @@ export declare const registry: {
|
|
|
8291
8291
|
required: string[];
|
|
8292
8292
|
};
|
|
8293
8293
|
};
|
|
8294
|
+
maxInlineActions: {
|
|
8295
|
+
types: string[];
|
|
8296
|
+
description: string;
|
|
8297
|
+
};
|
|
8298
|
+
scrollX: {
|
|
8299
|
+
types: string[];
|
|
8300
|
+
description: string;
|
|
8301
|
+
default: boolean;
|
|
8302
|
+
};
|
|
8294
8303
|
cols: {
|
|
8295
8304
|
types: string[];
|
|
8296
8305
|
description: string;
|
|
@@ -8502,6 +8511,10 @@ export declare const registry: {
|
|
|
8502
8511
|
required: string[];
|
|
8503
8512
|
};
|
|
8504
8513
|
};
|
|
8514
|
+
maxInlineActions: {
|
|
8515
|
+
types: string[];
|
|
8516
|
+
description: string;
|
|
8517
|
+
};
|
|
8505
8518
|
itemClickEvent: {
|
|
8506
8519
|
types: string[];
|
|
8507
8520
|
description: string;
|
|
@@ -20319,6 +20332,10 @@ export declare const registry: {
|
|
|
20319
20332
|
required: string[];
|
|
20320
20333
|
};
|
|
20321
20334
|
};
|
|
20335
|
+
maxInlineActions: {
|
|
20336
|
+
types: string[];
|
|
20337
|
+
description: string;
|
|
20338
|
+
};
|
|
20322
20339
|
selectable: {
|
|
20323
20340
|
types: string[];
|
|
20324
20341
|
description: string;
|
|
@@ -28843,6 +28860,15 @@ export declare const PATTERN_REGISTRY: {
|
|
|
28843
28860
|
required: string[];
|
|
28844
28861
|
};
|
|
28845
28862
|
};
|
|
28863
|
+
maxInlineActions: {
|
|
28864
|
+
types: string[];
|
|
28865
|
+
description: string;
|
|
28866
|
+
};
|
|
28867
|
+
scrollX: {
|
|
28868
|
+
types: string[];
|
|
28869
|
+
description: string;
|
|
28870
|
+
default: boolean;
|
|
28871
|
+
};
|
|
28846
28872
|
cols: {
|
|
28847
28873
|
types: string[];
|
|
28848
28874
|
description: string;
|
|
@@ -29054,6 +29080,10 @@ export declare const PATTERN_REGISTRY: {
|
|
|
29054
29080
|
required: string[];
|
|
29055
29081
|
};
|
|
29056
29082
|
};
|
|
29083
|
+
maxInlineActions: {
|
|
29084
|
+
types: string[];
|
|
29085
|
+
description: string;
|
|
29086
|
+
};
|
|
29057
29087
|
itemClickEvent: {
|
|
29058
29088
|
types: string[];
|
|
29059
29089
|
description: string;
|
|
@@ -40871,6 +40901,10 @@ export declare const PATTERN_REGISTRY: {
|
|
|
40871
40901
|
required: string[];
|
|
40872
40902
|
};
|
|
40873
40903
|
};
|
|
40904
|
+
maxInlineActions: {
|
|
40905
|
+
types: string[];
|
|
40906
|
+
description: string;
|
|
40907
|
+
};
|
|
40874
40908
|
selectable: {
|
|
40875
40909
|
types: string[];
|
|
40876
40910
|
description: 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-30T10:04:19.715Z",
|
|
5
5
|
patterns: {
|
|
6
6
|
"entity-table": {
|
|
7
7
|
type: "entity-table",
|
|
@@ -13269,6 +13269,19 @@ var patterns_registry_default = {
|
|
|
13269
13269
|
]
|
|
13270
13270
|
}
|
|
13271
13271
|
},
|
|
13272
|
+
maxInlineActions: {
|
|
13273
|
+
types: [
|
|
13274
|
+
"number"
|
|
13275
|
+
],
|
|
13276
|
+
description: 'Max inline primary action buttons before the rest collapse into a "\u22EF" overflow menu. Omit = all inline.'
|
|
13277
|
+
},
|
|
13278
|
+
scrollX: {
|
|
13279
|
+
types: [
|
|
13280
|
+
"boolean"
|
|
13281
|
+
],
|
|
13282
|
+
description: "Lay items in a single horizontally-scrolling row (kanban columns) sized to `minCardWidth` instead of a wrapping grid.",
|
|
13283
|
+
default: false
|
|
13284
|
+
},
|
|
13272
13285
|
cols: {
|
|
13273
13286
|
types: [
|
|
13274
13287
|
"number"
|
|
@@ -13639,6 +13652,12 @@ var patterns_registry_default = {
|
|
|
13639
13652
|
]
|
|
13640
13653
|
}
|
|
13641
13654
|
},
|
|
13655
|
+
maxInlineActions: {
|
|
13656
|
+
types: [
|
|
13657
|
+
"number"
|
|
13658
|
+
],
|
|
13659
|
+
description: 'Max inline action buttons before the rest collapse into a "\u22EF" overflow menu. Omit = all inline.'
|
|
13660
|
+
},
|
|
13642
13661
|
itemClickEvent: {
|
|
13643
13662
|
types: [
|
|
13644
13663
|
"string"
|
|
@@ -32519,6 +32538,12 @@ var patterns_registry_default = {
|
|
|
32519
32538
|
]
|
|
32520
32539
|
}
|
|
32521
32540
|
},
|
|
32541
|
+
maxInlineActions: {
|
|
32542
|
+
types: [
|
|
32543
|
+
"number"
|
|
32544
|
+
],
|
|
32545
|
+
description: 'Max inline action buttons before the rest collapse into a "\u22EF" overflow menu. Omit = all inline.'
|
|
32546
|
+
},
|
|
32522
32547
|
selectable: {
|
|
32523
32548
|
types: [
|
|
32524
32549
|
"boolean"
|
|
@@ -33590,7 +33615,7 @@ var integrators_registry_default = {
|
|
|
33590
33615
|
// src/component-mapping.json
|
|
33591
33616
|
var component_mapping_default = {
|
|
33592
33617
|
version: "1.0.0",
|
|
33593
|
-
exportedAt: "2026-05-
|
|
33618
|
+
exportedAt: "2026-05-30T10:04:19.715Z",
|
|
33594
33619
|
mappings: {
|
|
33595
33620
|
"page-header": {
|
|
33596
33621
|
component: "PageHeader",
|
|
@@ -35130,7 +35155,7 @@ var component_mapping_default = {
|
|
|
35130
35155
|
// src/event-contracts.json
|
|
35131
35156
|
var event_contracts_default = {
|
|
35132
35157
|
version: "1.0.0",
|
|
35133
|
-
exportedAt: "2026-05-
|
|
35158
|
+
exportedAt: "2026-05-30T10:04:19.715Z",
|
|
35134
35159
|
contracts: {
|
|
35135
35160
|
form: {
|
|
35136
35161
|
emits: [
|