@lawkit/ui 0.1.38 → 0.1.39

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.
@@ -1,3 +1,4 @@
1
+ export declare const progressColorVar: `var(--${string})`;
1
2
  export declare const root: string;
2
3
  export declare const top: string;
3
4
  export declare const icon: import('@vanilla-extract/recipes').RuntimeFn<{
@@ -38,20 +39,27 @@ export declare const progressFill: import('@vanilla-extract/recipes').RuntimeFn<
38
39
  };
39
40
  };
40
41
  }>;
41
- export declare const toastOverride: string;
42
- export declare const progressBar: import('@vanilla-extract/recipes').RuntimeFn<{
42
+ export declare const toastOverride: import('@vanilla-extract/recipes').RuntimeFn<{
43
43
  intent: {
44
44
  info: {
45
- background: `var(--${string})`;
45
+ vars: {
46
+ [progressColorVar]: `var(--${string})`;
47
+ };
46
48
  };
47
49
  success: {
48
- background: "#28c76f";
50
+ vars: {
51
+ [progressColorVar]: "#28c76f";
52
+ };
49
53
  };
50
54
  warning: {
51
- background: "#f0af23";
55
+ vars: {
56
+ [progressColorVar]: "#f0af23";
57
+ };
52
58
  };
53
59
  error: {
54
- background: "#ea5455";
60
+ vars: {
61
+ [progressColorVar]: "#ea5455";
62
+ };
55
63
  };
56
64
  };
57
65
  }>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lawkit/ui",
3
- "version": "0.1.38",
3
+ "version": "0.1.39",
4
4
  "type": "module",
5
5
  "description": "LDS Design System — React component library with design tokens",
6
6
  "main": "./dist/index.js",