@almadar/patterns 2.12.1 → 2.12.2
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/index.js.map +1 -1
- package/dist/pattern-types.d.ts +9 -1
- package/package.json +1 -1
package/dist/pattern-types.d.ts
CHANGED
|
@@ -7,7 +7,14 @@
|
|
|
7
7
|
* Generated: 2026-02-10T14:06:03.975Z
|
|
8
8
|
* Pattern count: 120
|
|
9
9
|
*/
|
|
10
|
-
|
|
10
|
+
/**
|
|
11
|
+
* Primitive field value type — mirrors @almadar/core FieldValue.
|
|
12
|
+
* Inlined here to break the circular dependency: core → patterns → core.
|
|
13
|
+
* If FieldValue changes in core, update this too.
|
|
14
|
+
*/
|
|
15
|
+
type FieldValue = string | number | boolean | Date | null | string[] | FieldValue[] | {
|
|
16
|
+
[key: string]: FieldValue;
|
|
17
|
+
};
|
|
11
18
|
/**
|
|
12
19
|
* Object-typed pattern prop value. Represents dynamic config objects
|
|
13
20
|
* within pattern props (e.g., style, assetManifest, payload).
|
|
@@ -2844,3 +2851,4 @@ export declare const PATTERN_TYPES: PatternType[];
|
|
|
2844
2851
|
* Check if a string is a valid pattern type
|
|
2845
2852
|
*/
|
|
2846
2853
|
export declare function isValidPatternType(type: string): type is PatternType;
|
|
2854
|
+
export {};
|