@omnia/fx-models 8.0.448-dev → 8.0.449-dev

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.
@@ -8,7 +8,7 @@ function useThemeMethods(getThemeDefinition) {
8
8
  if (typeof type !== "string") {
9
9
  return type;
10
10
  }
11
- const fills = getThemeDefinition()?.components?.fills;
11
+ const fills = getThemeDefinition()?.containerFill;
12
12
  if (!fills) {
13
13
  return null;
14
14
  }
@@ -0,0 +1,6 @@
1
+ export type StylexValue = {
2
+ class?: string;
3
+ style?: Readonly<{
4
+ [$$Key$$: string]: string | number;
5
+ }>;
6
+ };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx-models",
3
3
  "license": "MIT",
4
- "version": "8.0.448-dev",
4
+ "version": "8.0.449-dev",
5
5
  "description": "Provide Omnia Fx Models Stuffs.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"