@mezzanine-ui/system 0.11.3 → 0.12.1

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,2 +1,2 @@
1
- export declare type Breakpoint = 'sm' | 'md' | 'lg' | 'xl' | 'xxl';
1
+ export type Breakpoint = 'sm' | 'md' | 'lg' | 'xl' | 'xxl';
2
2
  export declare const breakpoints: Record<Breakpoint, number>;
package/css/typings.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare type CssVarInterpolation = string | number | null | undefined;
2
- export declare type CssVarInterpolations = Record<string, CssVarInterpolation>;
1
+ export type CssVarInterpolation = string | number | null | undefined;
2
+ export type CssVarInterpolations = Record<string, CssVarInterpolation>;
@@ -1,2 +1,2 @@
1
- export declare type MotionDurationType = 'shortest' | 'shorter' | 'short' | 'standard' | 'long';
1
+ export type MotionDurationType = 'shortest' | 'shorter' | 'short' | 'standard' | 'long';
2
2
  export declare const MOTION_DURATION: Readonly<Record<MotionDurationType, number>>;
@@ -1,2 +1,2 @@
1
- export declare type MotionEasingType = 'standard' | 'emphasized' | 'decelerated' | 'accelerated';
1
+ export type MotionEasingType = 'standard' | 'emphasized' | 'decelerated' | 'accelerated';
2
2
  export declare const MOTION_EASING: Readonly<Record<MotionEasingType, string>>;
@@ -1 +1 @@
1
- export declare type Orientation = 'horizontal' | 'vertical';
1
+ export type Orientation = 'horizontal' | 'vertical';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mezzanine-ui/system",
3
- "version": "0.11.3",
3
+ "version": "0.12.1",
4
4
  "description": "Design System for mezzanine-ui",
5
5
  "author": "Mezzanine",
6
6
  "repository": {
@@ -1,9 +1,9 @@
1
- export declare type MainColor = 'primary' | 'secondary' | 'error' | 'warning' | 'success';
2
- export declare type GradualMainColor = `${MainColor}-${'light' | 'dark'}`;
3
- export declare type StatefulMainColor = `${MainColor}-${'hover-bg' | 'active-bg'}`;
4
- export declare type MainContrastTextColor = `on-${MainColor}`;
5
- export declare type TextColor = `text-${'primary' | 'secondary' | 'disabled'}`;
6
- export declare type ActionForegroundColor = `action-${'active' | 'inactive' | 'disabled'}`;
7
- export declare type ActionBackgroundColor = `action-${'disabled-bg'}`;
8
- export declare type ActionColor = ActionForegroundColor | ActionBackgroundColor;
9
- export declare type Color = MainColor | GradualMainColor | MainContrastTextColor | TextColor | ActionColor | 'bg' | 'surface' | 'border' | 'divider';
1
+ export type MainColor = 'primary' | 'secondary' | 'error' | 'warning' | 'success';
2
+ export type GradualMainColor = `${MainColor}-${'light' | 'dark'}`;
3
+ export type StatefulMainColor = `${MainColor}-${'hover-bg' | 'active-bg'}`;
4
+ export type MainContrastTextColor = `on-${MainColor}`;
5
+ export type TextColor = `text-${'primary' | 'secondary' | 'disabled'}`;
6
+ export type ActionForegroundColor = `action-${'active' | 'inactive' | 'disabled'}`;
7
+ export type ActionBackgroundColor = `action-${'disabled-bg'}`;
8
+ export type ActionColor = ActionForegroundColor | ActionBackgroundColor;
9
+ export type Color = MainColor | GradualMainColor | MainContrastTextColor | TextColor | ActionColor | 'bg' | 'surface' | 'border' | 'divider';
@@ -1,2 +1,2 @@
1
- export declare type Severity = 'success' | 'warning' | 'error';
2
- export declare type SeverityWithInfo = Severity | 'info';
1
+ export type Severity = 'success' | 'warning' | 'error';
2
+ export type SeverityWithInfo = Severity | 'info';
package/size/size.d.ts CHANGED
@@ -1 +1 @@
1
- export declare type Size = 'small' | 'medium' | 'large';
1
+ export type Size = 'small' | 'medium' | 'large';
@@ -1 +1 @@
1
- export declare type SpacingLevel = number;
1
+ export type SpacingLevel = number;
@@ -1 +1 @@
1
- export declare type TypographyVariant = `h${1 | 2 | 3 | 4 | 5 | 6}` | `button${1 | 2 | 3}` | `input${1 | 2 | 3}` | `body${1 | 2}` | 'caption';
1
+ export type TypographyVariant = `h${1 | 2 | 3 | 4 | 5 | 6}` | `button${1 | 2 | 3}` | `input${1 | 2 | 3}` | `body${1 | 2}` | 'caption';