@omnia/velcron 8.0.404-dev → 8.0.405-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.
@@ -2,4 +2,5 @@ export declare const SharedConstants: {
2
2
  broadcast: {
3
3
  channelName: string;
4
4
  };
5
+ commaSeparatedValue: string;
5
6
  };
@@ -6,4 +6,5 @@ exports.SharedConstants = {
6
6
  broadcast: {
7
7
  channelName: "omnia-fx-broadcast"
8
8
  },
9
+ commaSeparatedValue: ","
9
10
  };
@@ -90,10 +90,12 @@ export interface TextStyleDefinition {
90
90
  name?: string;
91
91
  }
92
92
  export interface TextStyleBreakPoint {
93
- custom?: boolean;
94
- weight?: number;
93
+ customSize?: boolean;
94
+ customLineHeight?: boolean;
95
95
  size?: number;
96
96
  lineHeight?: number;
97
+ weight?: number;
98
+ lineHeightMultiplier?: number;
97
99
  letterSpacing?: number;
98
100
  }
99
101
  export interface TypographyFontRef {
@@ -113,7 +115,7 @@ export interface ThemedTextStyleValue {
113
115
  size: TextStyleSize;
114
116
  }
115
117
  export type TextStyleValue = TextStyleDefinition | ThemedTextStyleValue;
116
- export type TypographyBreakpoint = "lg" | "md" | "sm";
118
+ export type TextStyleBreakpointType = "lg" | "md" | "sm";
117
119
  export type TextStyleSize = keyof typeof TextStyleSizes;
118
120
  export declare enum TextStyleSizes {
119
121
  xl = "xl",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/velcron",
3
3
  "license": "MIT",
4
- "version": "8.0.404-dev",
4
+ "version": "8.0.405-dev",
5
5
  "description": "Provide Omnia Velcron Stuffs.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"