@calibrate-ds/core 0.1.53 → 0.1.65

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.
Files changed (45) hide show
  1. package/dist/context/get-component-context.d.ts.map +1 -1
  2. package/dist/context/get-component-context.js +77 -11
  3. package/dist/context/get-component-context.js.map +1 -1
  4. package/dist/icons/enrich-icon-svgs.d.ts +5 -0
  5. package/dist/icons/enrich-icon-svgs.d.ts.map +1 -1
  6. package/dist/icons/enrich-icon-svgs.js +4 -1
  7. package/dist/icons/enrich-icon-svgs.js.map +1 -1
  8. package/dist/mappings/naming-strategy.d.ts +19 -0
  9. package/dist/mappings/naming-strategy.d.ts.map +1 -1
  10. package/dist/mappings/naming-strategy.js +26 -0
  11. package/dist/mappings/naming-strategy.js.map +1 -1
  12. package/dist/normalizer/instance-resolver.d.ts +1 -1
  13. package/dist/normalizer/instance-resolver.d.ts.map +1 -1
  14. package/dist/normalizer/instance-resolver.js +57 -12
  15. package/dist/normalizer/instance-resolver.js.map +1 -1
  16. package/dist/normalizer/layout-tree.d.ts.map +1 -1
  17. package/dist/normalizer/layout-tree.js +2 -1
  18. package/dist/normalizer/layout-tree.js.map +1 -1
  19. package/dist/normalizer/normalize-components.d.ts.map +1 -1
  20. package/dist/normalizer/normalize-components.js +51 -1
  21. package/dist/normalizer/normalize-components.js.map +1 -1
  22. package/dist/normalizer/variant-diff.d.ts.map +1 -1
  23. package/dist/normalizer/variant-diff.js +24 -7
  24. package/dist/normalizer/variant-diff.js.map +1 -1
  25. package/dist/prompt/generate-component-prompt.d.ts.map +1 -1
  26. package/dist/prompt/generate-component-prompt.js +39 -13
  27. package/dist/prompt/generate-component-prompt.js.map +1 -1
  28. package/dist/thumbnails/enrich-thumbnails.d.ts.map +1 -1
  29. package/dist/thumbnails/enrich-thumbnails.js +47 -9
  30. package/dist/thumbnails/enrich-thumbnails.js.map +1 -1
  31. package/dist/tokens/resolution.d.ts +7 -0
  32. package/dist/tokens/resolution.d.ts.map +1 -1
  33. package/dist/tokens/resolution.js +17 -2
  34. package/dist/tokens/resolution.js.map +1 -1
  35. package/dist/verify/index.d.ts +2 -0
  36. package/dist/verify/index.d.ts.map +1 -1
  37. package/dist/verify/index.js +1 -0
  38. package/dist/verify/index.js.map +1 -1
  39. package/dist/verify/types.d.ts +26 -0
  40. package/dist/verify/types.d.ts.map +1 -1
  41. package/dist/verify/verdict.d.ts +25 -0
  42. package/dist/verify/verdict.d.ts.map +1 -0
  43. package/dist/verify/verdict.js +43 -0
  44. package/dist/verify/verdict.js.map +1 -0
  45. package/package.json +3 -3
@@ -2,4 +2,6 @@ export type { VerifyReport, VerifyScreenshots, PixelMatchResult, AIFeedback, AID
2
2
  export { fetchFigmaScreenshot } from "./fetch-figma-screenshot.js";
3
3
  export { runPixelDiff } from "./pixel-diff.js";
4
4
  export { extractStructuralExpectations, computeStructureScore, extractDesignTextTokens } from "./structure-check.js";
5
+ export { computeVerifyVerdict, VERIFY_PASS_THRESHOLD, VERIFY_WARN_THRESHOLD } from "./verdict.js";
6
+ export type { VerifyVerdict, VerifyVerdictResult } from "./verdict.js";
5
7
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/verify/index.ts"],"names":[],"mappings":"AAAA,YAAY,EACR,YAAY,EACZ,iBAAiB,EACjB,gBAAgB,EAChB,UAAU,EACV,YAAY,EACZ,qBAAqB,EACrB,cAAc,GACjB,MAAM,YAAY,CAAC;AACpB,OAAO,EAAE,oBAAoB,EAAE,MAAM,6BAA6B,CAAC;AACnE,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAC/C,OAAO,EAAE,6BAA6B,EAAE,qBAAqB,EAAE,uBAAuB,EAAE,MAAM,sBAAsB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/verify/index.ts"],"names":[],"mappings":"AAAA,YAAY,EACR,YAAY,EACZ,iBAAiB,EACjB,gBAAgB,EAChB,UAAU,EACV,YAAY,EACZ,qBAAqB,EACrB,cAAc,GACjB,MAAM,YAAY,CAAC;AACpB,OAAO,EAAE,oBAAoB,EAAE,MAAM,6BAA6B,CAAC;AACnE,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAC/C,OAAO,EAAE,6BAA6B,EAAE,qBAAqB,EAAE,uBAAuB,EAAE,MAAM,sBAAsB,CAAC;AACrH,OAAO,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,qBAAqB,EAAE,MAAM,cAAc,CAAC;AAClG,YAAY,EAAE,aAAa,EAAE,mBAAmB,EAAE,MAAM,cAAc,CAAC"}
@@ -1,4 +1,5 @@
1
1
  export { fetchFigmaScreenshot } from "./fetch-figma-screenshot.js";
2
2
  export { runPixelDiff } from "./pixel-diff.js";
3
3
  export { extractStructuralExpectations, computeStructureScore, extractDesignTextTokens } from "./structure-check.js";
4
+ export { computeVerifyVerdict, VERIFY_PASS_THRESHOLD, VERIFY_WARN_THRESHOLD } from "./verdict.js";
4
5
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/verify/index.ts"],"names":[],"mappings":"AASA,OAAO,EAAE,oBAAoB,EAAE,MAAM,6BAA6B,CAAC;AACnE,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAC/C,OAAO,EAAE,6BAA6B,EAAE,qBAAqB,EAAE,uBAAuB,EAAE,MAAM,sBAAsB,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/verify/index.ts"],"names":[],"mappings":"AASA,OAAO,EAAE,oBAAoB,EAAE,MAAM,6BAA6B,CAAC;AACnE,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAC/C,OAAO,EAAE,6BAA6B,EAAE,qBAAqB,EAAE,uBAAuB,EAAE,MAAM,sBAAsB,CAAC;AACrH,OAAO,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,qBAAqB,EAAE,MAAM,cAAc,CAAC"}
@@ -79,5 +79,31 @@ export type VerifyReport = {
79
79
  designTokenCount?: number;
80
80
  /** Number of design text tokens found in the rendered DOM. */
81
81
  foundTokenCount?: number;
82
+ /**
83
+ * CSS token-binding score (0–1). Fraction of styleMetadata slots with a bound
84
+ * cssVar (e.g. `--ptb-colors-brand-900`) that appear as `var(--ptb-…)` in the
85
+ * generated .module.css. Undefined when no bound slots exist or CSS is not yet
86
+ * generated (component not yet implemented).
87
+ */
88
+ cssVarScore?: number;
89
+ /** Total number of styleMetadata slots with a bound cssVar. */
90
+ cssVarTotal?: number;
91
+ /** Number of bound cssVar slots found as `var(…)` in the generated CSS. */
92
+ cssVarFound?: number;
93
+ /**
94
+ * GAP-022 (Level 3 whole-set verify): per-variant pixel-diff results. Present when
95
+ * the component is a COMPONENT_SET with per-variant reference thumbnails — each
96
+ * entry pixel-diffs one variant state (rendered via Storybook `?args=`) against its
97
+ * own single-variant Figma reference. `pixelMatch` above is set to the WORST of
98
+ * these so a single bad variant can't hide behind a good default.
99
+ */
100
+ variantResults?: Array<{
101
+ selection: Record<string, string>;
102
+ pixelMatch: PixelMatchResult | null;
103
+ /** Set when this variant could not be rendered/diffed (e.g. screenshot failed). */
104
+ error?: string;
105
+ }>;
106
+ /** Mean pixel score across variantResults (0–1). */
107
+ variantMeanScore?: number;
82
108
  };
83
109
  //# sourceMappingURL=types.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/verify/types.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,iBAAiB,GAAG;IAC5B,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC;IACrB,yFAAyF;IACzF,WAAW,EAAE,MAAM,GAAG,WAAW,GAAG,IAAI,CAAC;IACzC,IAAI,EAAE,MAAM,GAAG,IAAI,CAAC;IACpB,IAAI,EAAE,MAAM,GAAG,IAAI,CAAC;CACvB,CAAC;AAEF,MAAM,MAAM,qBAAqB,GAAG;IAChC,uEAAuE;IACvE,SAAS,EAAE,MAAM,CAAC;IAClB,mEAAmE;IACnE,UAAU,EAAE,MAAM,CAAC;CACtB,CAAC;AAEF,MAAM,MAAM,cAAc,GAAG;IACzB,wDAAwD;IACxD,SAAS,EAAE,MAAM,CAAC;IAClB,mEAAmE;IACnE,aAAa,EAAE,MAAM,CAAC;CACzB,CAAC;AAEF,MAAM,MAAM,gBAAgB,GAAG;IAC3B,6DAA6D;IAC7D,KAAK,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,yEAAyE;IACzE,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,UAAU,EAAE,MAAM,CAAC;IACnB,WAAW,EAAE,MAAM,CAAC;CACvB,CAAC;AAEF,MAAM,MAAM,YAAY,GAAG;IACvB,QAAQ,EAAE,MAAM,CAAC;IACjB,QAAQ,EAAE,MAAM,CAAC;IACjB,QAAQ,EAAE,MAAM,CAAC;CACpB,CAAC;AAEF,MAAM,MAAM,UAAU,GAAG;IACrB,OAAO,EAAE,MAAM,CAAC;IAChB,WAAW,EAAE,YAAY,EAAE,CAAC;IAC5B,iBAAiB,EAAE,SAAS,GAAG,mBAAmB,GAAG,yBAAyB,CAAC;CAClF,CAAC;AAEF,MAAM,MAAM,YAAY,GAAG;IACvB,aAAa,EAAE,MAAM,CAAC;IACtB,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,EAAE,MAAM,CAAC;IAClB,WAAW,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B,WAAW,EAAE,iBAAiB,CAAC;IAC/B,UAAU,EAAE,gBAAgB,GAAG,IAAI,CAAC;IACpC,UAAU,EAAE,UAAU,GAAG,IAAI,CAAC;IAC9B,qFAAqF;IACrF,QAAQ,EAAE,OAAO,CAAC;IAClB,gGAAgG;IAChG,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,gDAAgD;IAChD,KAAK,CAAC,EAAE,MAAM,CAAC;IACf;;;;;OAKG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,uDAAuD;IACvD,qBAAqB,CAAC,EAAE,qBAAqB,CAAC;IAC9C,uDAAuD;IACvD,cAAc,CAAC,EAAE,cAAc,CAAC;IAChC;;;;;;;OAOG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,yEAAyE;IACzE,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,8DAA8D;IAC9D,eAAe,CAAC,EAAE,MAAM,CAAC;CAC5B,CAAC"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/verify/types.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,iBAAiB,GAAG;IAC5B,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC;IACrB,yFAAyF;IACzF,WAAW,EAAE,MAAM,GAAG,WAAW,GAAG,IAAI,CAAC;IACzC,IAAI,EAAE,MAAM,GAAG,IAAI,CAAC;IACpB,IAAI,EAAE,MAAM,GAAG,IAAI,CAAC;CACvB,CAAC;AAEF,MAAM,MAAM,qBAAqB,GAAG;IAChC,uEAAuE;IACvE,SAAS,EAAE,MAAM,CAAC;IAClB,mEAAmE;IACnE,UAAU,EAAE,MAAM,CAAC;CACtB,CAAC;AAEF,MAAM,MAAM,cAAc,GAAG;IACzB,wDAAwD;IACxD,SAAS,EAAE,MAAM,CAAC;IAClB,mEAAmE;IACnE,aAAa,EAAE,MAAM,CAAC;CACzB,CAAC;AAEF,MAAM,MAAM,gBAAgB,GAAG;IAC3B,6DAA6D;IAC7D,KAAK,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,yEAAyE;IACzE,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,UAAU,EAAE,MAAM,CAAC;IACnB,WAAW,EAAE,MAAM,CAAC;CACvB,CAAC;AAEF,MAAM,MAAM,YAAY,GAAG;IACvB,QAAQ,EAAE,MAAM,CAAC;IACjB,QAAQ,EAAE,MAAM,CAAC;IACjB,QAAQ,EAAE,MAAM,CAAC;CACpB,CAAC;AAEF,MAAM,MAAM,UAAU,GAAG;IACrB,OAAO,EAAE,MAAM,CAAC;IAChB,WAAW,EAAE,YAAY,EAAE,CAAC;IAC5B,iBAAiB,EAAE,SAAS,GAAG,mBAAmB,GAAG,yBAAyB,CAAC;CAClF,CAAC;AAEF,MAAM,MAAM,YAAY,GAAG;IACvB,aAAa,EAAE,MAAM,CAAC;IACtB,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,EAAE,MAAM,CAAC;IAClB,WAAW,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B,WAAW,EAAE,iBAAiB,CAAC;IAC/B,UAAU,EAAE,gBAAgB,GAAG,IAAI,CAAC;IACpC,UAAU,EAAE,UAAU,GAAG,IAAI,CAAC;IAC9B,qFAAqF;IACrF,QAAQ,EAAE,OAAO,CAAC;IAClB,gGAAgG;IAChG,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,gDAAgD;IAChD,KAAK,CAAC,EAAE,MAAM,CAAC;IACf;;;;;OAKG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,uDAAuD;IACvD,qBAAqB,CAAC,EAAE,qBAAqB,CAAC;IAC9C,uDAAuD;IACvD,cAAc,CAAC,EAAE,cAAc,CAAC;IAChC;;;;;;;OAOG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,yEAAyE;IACzE,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,8DAA8D;IAC9D,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB;;;;;OAKG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,+DAA+D;IAC/D,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,2EAA2E;IAC3E,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;;;;;OAMG;IACH,cAAc,CAAC,EAAE,KAAK,CAAC;QACnB,SAAS,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;QAClC,UAAU,EAAE,gBAAgB,GAAG,IAAI,CAAC;QACpC,mFAAmF;QACnF,KAAK,CAAC,EAAE,MAAM,CAAC;KAClB,CAAC,CAAC;IACH,oDAAoD;IACpD,gBAAgB,CAAC,EAAE,MAAM,CAAC;CAC7B,CAAC"}
@@ -0,0 +1,25 @@
1
+ import type { VerifyReport } from "./types.js";
2
+ /**
3
+ * Shared pass/warn/fail thresholds for `ptb verify`. A single source of truth so
4
+ * the CLI command and the MCP tool never diverge (GAP-010: the MCP tool used to
5
+ * hardcode a 0.95 cutoff on the raw pixel score while the CLI used 0.90 on the
6
+ * content/token score, so an identical run reported "warn" in one and "pass" in
7
+ * the other).
8
+ */
9
+ export declare const VERIFY_PASS_THRESHOLD = 0.9;
10
+ export declare const VERIFY_WARN_THRESHOLD = 0.7;
11
+ export type VerifyVerdict = "pass" | "warn" | "fail" | "no-comparison";
12
+ export type VerifyVerdictResult = {
13
+ verdict: VerifyVerdict;
14
+ /** The score the verdict was computed from (0–1), or null when nothing comparable existed. */
15
+ score: number | null;
16
+ /** Which metric drove the verdict. */
17
+ metric: "token" | "structure" | "pixel-content" | "pixel" | "none";
18
+ };
19
+ /**
20
+ * Computes a single verdict from a VerifyReport, preferring the most meaningful
21
+ * available signal: design-content token match (immune to font/AA differences) →
22
+ * structural slot presence → content-region pixel score → raw pixel score.
23
+ */
24
+ export declare function computeVerifyVerdict(report: Pick<VerifyReport, "tokenScore" | "structureScore" | "pixelMatch">): VerifyVerdictResult;
25
+ //# sourceMappingURL=verdict.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"verdict.d.ts","sourceRoot":"","sources":["../../src/verify/verdict.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,YAAY,CAAC;AAE/C;;;;;;GAMG;AACH,eAAO,MAAM,qBAAqB,MAAO,CAAC;AAC1C,eAAO,MAAM,qBAAqB,MAAO,CAAC;AAE1C,MAAM,MAAM,aAAa,GAAG,MAAM,GAAG,MAAM,GAAG,MAAM,GAAG,eAAe,CAAC;AAEvE,MAAM,MAAM,mBAAmB,GAAG;IAC9B,OAAO,EAAE,aAAa,CAAC;IACvB,8FAA8F;IAC9F,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC;IACrB,sCAAsC;IACtC,MAAM,EAAE,OAAO,GAAG,WAAW,GAAG,eAAe,GAAG,OAAO,GAAG,MAAM,CAAC;CACtE,CAAC;AAEF;;;;GAIG;AACH,wBAAgB,oBAAoB,CAAC,MAAM,EAAE,IAAI,CAAC,YAAY,EAC1D,YAAY,GAAG,gBAAgB,GAAG,YAAY,CAAC,GAAG,mBAAmB,CA2BxE"}
@@ -0,0 +1,43 @@
1
+ /**
2
+ * Shared pass/warn/fail thresholds for `ptb verify`. A single source of truth so
3
+ * the CLI command and the MCP tool never diverge (GAP-010: the MCP tool used to
4
+ * hardcode a 0.95 cutoff on the raw pixel score while the CLI used 0.90 on the
5
+ * content/token score, so an identical run reported "warn" in one and "pass" in
6
+ * the other).
7
+ */
8
+ export const VERIFY_PASS_THRESHOLD = 0.90;
9
+ export const VERIFY_WARN_THRESHOLD = 0.70;
10
+ /**
11
+ * Computes a single verdict from a VerifyReport, preferring the most meaningful
12
+ * available signal: design-content token match (immune to font/AA differences) →
13
+ * structural slot presence → content-region pixel score → raw pixel score.
14
+ */
15
+ export function computeVerifyVerdict(report) {
16
+ let score = null;
17
+ let metric = "none";
18
+ if (report.tokenScore !== undefined) {
19
+ score = report.tokenScore;
20
+ metric = "token";
21
+ }
22
+ else if (report.structureScore !== undefined) {
23
+ score = report.structureScore;
24
+ metric = "structure";
25
+ }
26
+ else if (report.pixelMatch) {
27
+ if (report.pixelMatch.contentScore !== undefined) {
28
+ score = report.pixelMatch.contentScore;
29
+ metric = "pixel-content";
30
+ }
31
+ else {
32
+ score = report.pixelMatch.score;
33
+ metric = "pixel";
34
+ }
35
+ }
36
+ if (score === null)
37
+ return { verdict: "no-comparison", score: null, metric: "none" };
38
+ const verdict = score >= VERIFY_PASS_THRESHOLD ? "pass"
39
+ : score >= VERIFY_WARN_THRESHOLD ? "warn"
40
+ : "fail";
41
+ return { verdict, score, metric };
42
+ }
43
+ //# sourceMappingURL=verdict.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"verdict.js","sourceRoot":"","sources":["../../src/verify/verdict.ts"],"names":[],"mappings":"AAEA;;;;;;GAMG;AACH,MAAM,CAAC,MAAM,qBAAqB,GAAG,IAAI,CAAC;AAC1C,MAAM,CAAC,MAAM,qBAAqB,GAAG,IAAI,CAAC;AAY1C;;;;GAIG;AACH,MAAM,UAAU,oBAAoB,CAAC,MACc;IAC/C,IAAI,KAAK,GAAkB,IAAI,CAAC;IAChC,IAAI,MAAM,GAAkC,MAAM,CAAC;IAEnD,IAAI,MAAM,CAAC,UAAU,KAAK,SAAS,EAAE,CAAC;QAClC,KAAK,GAAG,MAAM,CAAC,UAAU,CAAC;QAC1B,MAAM,GAAG,OAAO,CAAC;IACrB,CAAC;SAAM,IAAI,MAAM,CAAC,cAAc,KAAK,SAAS,EAAE,CAAC;QAC7C,KAAK,GAAG,MAAM,CAAC,cAAc,CAAC;QAC9B,MAAM,GAAG,WAAW,CAAC;IACzB,CAAC;SAAM,IAAI,MAAM,CAAC,UAAU,EAAE,CAAC;QAC3B,IAAI,MAAM,CAAC,UAAU,CAAC,YAAY,KAAK,SAAS,EAAE,CAAC;YAC/C,KAAK,GAAG,MAAM,CAAC,UAAU,CAAC,YAAY,CAAC;YACvC,MAAM,GAAG,eAAe,CAAC;QAC7B,CAAC;aAAM,CAAC;YACJ,KAAK,GAAG,MAAM,CAAC,UAAU,CAAC,KAAK,CAAC;YAChC,MAAM,GAAG,OAAO,CAAC;QACrB,CAAC;IACL,CAAC;IAED,IAAI,KAAK,KAAK,IAAI;QAAE,OAAO,EAAE,OAAO,EAAE,eAAe,EAAE,KAAK,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,CAAC;IAErF,MAAM,OAAO,GAAkB,KAAK,IAAI,qBAAqB,CAAC,CAAC,CAAC,MAAM;QAClE,CAAC,CAAC,KAAK,IAAI,qBAAqB,CAAC,CAAC,CAAC,MAAM;YACzC,CAAC,CAAC,MAAM,CAAC;IAEb,OAAO,EAAE,OAAO,EAAE,KAAK,EAAE,MAAM,EAAE,CAAC;AACtC,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@calibrate-ds/core",
3
- "version": "0.1.53",
3
+ "version": "0.1.65",
4
4
  "license": "Apache-2.0",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -27,8 +27,8 @@
27
27
  "pixelmatch": "^6.0.0",
28
28
  "pngjs": "^7.0.0",
29
29
  "zod": "^4.3.6",
30
- "@calibrate-ds/shared-types": "^0.1.53",
31
- "@calibrate-ds/figma-client": "^0.1.48"
30
+ "@calibrate-ds/shared-types": "^0.1.65",
31
+ "@calibrate-ds/figma-client": "^0.1.65"
32
32
  },
33
33
  "scripts": {
34
34
  "build": "tsc -p tsconfig.json",