@almadar/patterns 2.12.0 → 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.
@@ -7,7 +7,14 @@
7
7
  * Generated: 2026-02-10T14:06:03.975Z
8
8
  * Pattern count: 120
9
9
  */
10
- import type { FieldValue } from '@almadar/core/types';
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 {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@almadar/patterns",
3
- "version": "2.12.0",
3
+ "version": "2.12.2",
4
4
  "description": "Pattern registry and component mappings for Almadar",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -48,7 +48,7 @@
48
48
  ],
49
49
  "homepage": "https://github.com/almadar-io/almadar#readme",
50
50
  "dependencies": {
51
- "@almadar/core": ">=2.13.0"
51
+ "@almadar/core": ">=4.2.0"
52
52
  },
53
53
  "scripts": {
54
54
  "build": "tsup && tsc -p tsconfig.build.json",