@almadar/patterns 2.32.0 → 2.33.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/component-mapping.json +1 -1
- package/dist/event-contracts.json +1 -1
- package/dist/index.d.ts +16 -0
- package/dist/index.js +15 -3
- package/dist/index.js.map +1 -1
- package/dist/pattern-types.d.ts +4 -0
- package/dist/patterns-registry.json +13 -1
- package/dist/registry.json +13 -1
- package/package.json +1 -1
package/dist/pattern-types.d.ts
CHANGED
|
@@ -3092,6 +3092,10 @@ export interface PatternPropsMap {
|
|
|
3092
3092
|
onDraw?: ((...args: unknown[]) => unknown) | string;
|
|
3093
3093
|
/** Called each tick with delta time in seconds */
|
|
3094
3094
|
onTick?: ((...args: unknown[]) => unknown) | string;
|
|
3095
|
+
/** Event name emitted each tick with { dt, frame } — for closed-circuit .orb integration */
|
|
3096
|
+
tickEvent?: string;
|
|
3097
|
+
/** Event name emitted each draw frame with { frame } — for closed-circuit .orb integration */
|
|
3098
|
+
drawEvent?: string;
|
|
3095
3099
|
/** Target frames per second */
|
|
3096
3100
|
fps?: number | string;
|
|
3097
3101
|
/** Additional CSS classes */
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": "1.0.0",
|
|
3
|
-
"exportedAt": "2026-05-
|
|
3
|
+
"exportedAt": "2026-05-29T09:18:13.002Z",
|
|
4
4
|
"patterns": {
|
|
5
5
|
"entity-table": {
|
|
6
6
|
"type": "entity-table",
|
|
@@ -23789,6 +23789,18 @@
|
|
|
23789
23789
|
"string"
|
|
23790
23790
|
],
|
|
23791
23791
|
"description": "Additional CSS classes"
|
|
23792
|
+
},
|
|
23793
|
+
"tickEvent": {
|
|
23794
|
+
"types": [
|
|
23795
|
+
"string"
|
|
23796
|
+
],
|
|
23797
|
+
"description": "Event name emitted each tick with { dt, frame } — for closed-circuit .orb integration"
|
|
23798
|
+
},
|
|
23799
|
+
"drawEvent": {
|
|
23800
|
+
"types": [
|
|
23801
|
+
"string"
|
|
23802
|
+
],
|
|
23803
|
+
"description": "Event name emitted each draw frame with { frame } — for closed-circuit .orb integration"
|
|
23792
23804
|
}
|
|
23793
23805
|
}
|
|
23794
23806
|
},
|
package/dist/registry.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": "1.0.0",
|
|
3
|
-
"exportedAt": "2026-05-
|
|
3
|
+
"exportedAt": "2026-05-29T09:18:13.002Z",
|
|
4
4
|
"patterns": {
|
|
5
5
|
"entity-table": {
|
|
6
6
|
"type": "entity-table",
|
|
@@ -23789,6 +23789,18 @@
|
|
|
23789
23789
|
"string"
|
|
23790
23790
|
],
|
|
23791
23791
|
"description": "Additional CSS classes"
|
|
23792
|
+
},
|
|
23793
|
+
"tickEvent": {
|
|
23794
|
+
"types": [
|
|
23795
|
+
"string"
|
|
23796
|
+
],
|
|
23797
|
+
"description": "Event name emitted each tick with { dt, frame } — for closed-circuit .orb integration"
|
|
23798
|
+
},
|
|
23799
|
+
"drawEvent": {
|
|
23800
|
+
"types": [
|
|
23801
|
+
"string"
|
|
23802
|
+
],
|
|
23803
|
+
"description": "Event name emitted each draw frame with { frame } — for closed-circuit .orb integration"
|
|
23792
23804
|
}
|
|
23793
23805
|
}
|
|
23794
23806
|
},
|