@almadar/patterns 2.33.0 → 2.33.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 +24 -6
- package/dist/index.js +22 -9
- package/dist/index.js.map +1 -1
- package/dist/patterns-registry.json +20 -7
- package/dist/registry.json +20 -7
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -14947,20 +14947,29 @@ export declare const registry: {
|
|
|
14947
14947
|
type: string;
|
|
14948
14948
|
}[];
|
|
14949
14949
|
};
|
|
14950
|
+
tickEvent: {
|
|
14951
|
+
types: string[];
|
|
14952
|
+
description: string;
|
|
14953
|
+
};
|
|
14954
|
+
drawEvent: {
|
|
14955
|
+
types: string[];
|
|
14956
|
+
description: string;
|
|
14957
|
+
};
|
|
14950
14958
|
fps: {
|
|
14951
14959
|
types: string[];
|
|
14952
14960
|
description: string;
|
|
14953
14961
|
default: number;
|
|
14954
14962
|
};
|
|
14955
|
-
|
|
14963
|
+
backgroundImage: {
|
|
14956
14964
|
types: string[];
|
|
14957
14965
|
description: string;
|
|
14958
14966
|
};
|
|
14959
|
-
|
|
14967
|
+
assetBaseUrl: {
|
|
14960
14968
|
types: string[];
|
|
14961
14969
|
description: string;
|
|
14970
|
+
default: string;
|
|
14962
14971
|
};
|
|
14963
|
-
|
|
14972
|
+
className: {
|
|
14964
14973
|
types: string[];
|
|
14965
14974
|
description: string;
|
|
14966
14975
|
};
|
|
@@ -35490,20 +35499,29 @@ export declare const PATTERN_REGISTRY: {
|
|
|
35490
35499
|
type: string;
|
|
35491
35500
|
}[];
|
|
35492
35501
|
};
|
|
35502
|
+
tickEvent: {
|
|
35503
|
+
types: string[];
|
|
35504
|
+
description: string;
|
|
35505
|
+
};
|
|
35506
|
+
drawEvent: {
|
|
35507
|
+
types: string[];
|
|
35508
|
+
description: string;
|
|
35509
|
+
};
|
|
35493
35510
|
fps: {
|
|
35494
35511
|
types: string[];
|
|
35495
35512
|
description: string;
|
|
35496
35513
|
default: number;
|
|
35497
35514
|
};
|
|
35498
|
-
|
|
35515
|
+
backgroundImage: {
|
|
35499
35516
|
types: string[];
|
|
35500
35517
|
description: string;
|
|
35501
35518
|
};
|
|
35502
|
-
|
|
35519
|
+
assetBaseUrl: {
|
|
35503
35520
|
types: string[];
|
|
35504
35521
|
description: string;
|
|
35522
|
+
default: string;
|
|
35505
35523
|
};
|
|
35506
|
-
|
|
35524
|
+
className: {
|
|
35507
35525
|
types: string[];
|
|
35508
35526
|
description: string;
|
|
35509
35527
|
};
|
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-29T23:58:15.892Z",
|
|
5
5
|
patterns: {
|
|
6
6
|
"entity-table": {
|
|
7
7
|
type: "entity-table",
|
|
@@ -23778,6 +23778,18 @@ var patterns_registry_default = {
|
|
|
23778
23778
|
}
|
|
23779
23779
|
]
|
|
23780
23780
|
},
|
|
23781
|
+
tickEvent: {
|
|
23782
|
+
types: [
|
|
23783
|
+
"string"
|
|
23784
|
+
],
|
|
23785
|
+
description: "Event name emitted each tick with { dt, frame } \u2014 for closed-circuit .orb integration"
|
|
23786
|
+
},
|
|
23787
|
+
drawEvent: {
|
|
23788
|
+
types: [
|
|
23789
|
+
"string"
|
|
23790
|
+
],
|
|
23791
|
+
description: "Event name emitted each draw frame with { frame } \u2014 for closed-circuit .orb integration"
|
|
23792
|
+
},
|
|
23781
23793
|
fps: {
|
|
23782
23794
|
types: [
|
|
23783
23795
|
"number"
|
|
@@ -23785,23 +23797,24 @@ var patterns_registry_default = {
|
|
|
23785
23797
|
description: "Target frames per second",
|
|
23786
23798
|
default: 60
|
|
23787
23799
|
},
|
|
23788
|
-
|
|
23800
|
+
backgroundImage: {
|
|
23789
23801
|
types: [
|
|
23790
23802
|
"string"
|
|
23791
23803
|
],
|
|
23792
|
-
description: "
|
|
23804
|
+
description: "Background image URL"
|
|
23793
23805
|
},
|
|
23794
|
-
|
|
23806
|
+
assetBaseUrl: {
|
|
23795
23807
|
types: [
|
|
23796
23808
|
"string"
|
|
23797
23809
|
],
|
|
23798
|
-
description: "
|
|
23810
|
+
description: "Base URL prefix for asset URLs",
|
|
23811
|
+
default: ""
|
|
23799
23812
|
},
|
|
23800
|
-
|
|
23813
|
+
className: {
|
|
23801
23814
|
types: [
|
|
23802
23815
|
"string"
|
|
23803
23816
|
],
|
|
23804
|
-
description: "
|
|
23817
|
+
description: "Additional CSS classes"
|
|
23805
23818
|
}
|
|
23806
23819
|
}
|
|
23807
23820
|
},
|
|
@@ -33577,7 +33590,7 @@ var integrators_registry_default = {
|
|
|
33577
33590
|
// src/component-mapping.json
|
|
33578
33591
|
var component_mapping_default = {
|
|
33579
33592
|
version: "1.0.0",
|
|
33580
|
-
exportedAt: "2026-05-
|
|
33593
|
+
exportedAt: "2026-05-29T23:58:15.892Z",
|
|
33581
33594
|
mappings: {
|
|
33582
33595
|
"page-header": {
|
|
33583
33596
|
component: "PageHeader",
|
|
@@ -35117,7 +35130,7 @@ var component_mapping_default = {
|
|
|
35117
35130
|
// src/event-contracts.json
|
|
35118
35131
|
var event_contracts_default = {
|
|
35119
35132
|
version: "1.0.0",
|
|
35120
|
-
exportedAt: "2026-05-
|
|
35133
|
+
exportedAt: "2026-05-29T23:58:15.892Z",
|
|
35121
35134
|
contracts: {
|
|
35122
35135
|
form: {
|
|
35123
35136
|
emits: [
|