@omnia/fx-models 8.0.451-dev → 8.0.452-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,6 +8,28 @@ export type StylexValue = {
8
8
  export type CSSProperties = {
9
9
  -readonly [k in keyof StylexCssProperties]: StylexCssProperties[k];
10
10
  };
11
- export type CssRules = {
11
+ export interface ICssRules {
12
12
  position(position: string): StylexValue;
13
- };
13
+ textFillColor(textFillColor: string): StylexValue;
14
+ backgroundClip(backgroundClip: string, important?: boolean): StylexValue;
15
+ fontFamily(fontFamily: string): StylexValue;
16
+ flexBasis(flexBasis: string | number): StylexValue;
17
+ flexGrow(flexGrow: number): StylexValue;
18
+ maxWidth(maxWidth: string): StylexValue;
19
+ alignSelf(alignSelf: string): StylexValue;
20
+ minWidth(minWidth: string | number, important?: boolean): StylexValue;
21
+ flex(flex: string | number, important?: boolean): StylexValue;
22
+ justifyContent(justifyContent: string): StylexValue;
23
+ flexWrap(flexWrap: string): StylexValue;
24
+ rowGap(rowGap: string): StylexValue;
25
+ columnGap(columnGap: string): StylexValue;
26
+ flexDirection(flexDirection: string): StylexValue;
27
+ width(width: string | number, important?: boolean): StylexValue;
28
+ height(width: string | number, important?: boolean): StylexValue;
29
+ maxHeight(width: string | number, important?: boolean): StylexValue;
30
+ minHeight(minHeight: string | number): StylexValue;
31
+ alignItems(alignItems: string): StylexValue;
32
+ boxSizing(boxSizing: string): StylexValue;
33
+ display(display: string): StylexValue;
34
+ wordBreak(wordBreak: string): StylexValue;
35
+ }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx-models",
3
3
  "license": "MIT",
4
- "version": "8.0.451-dev",
4
+ "version": "8.0.452-dev",
5
5
  "description": "Provide Omnia Fx Models Stuffs.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"