@cube-dev/ui-kit 0.6.52 → 0.6.53

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,9 +1,9 @@
1
- export declare const BASE_STYLES: readonly ["display", "font", "preset", "hide", "opacity"];
2
- export declare const POSITION_STYLES: readonly ["gridArea", "flexGrow", "flexShrink", "order", "gridColumn", "gridRow", "placeSelf", "zIndex", "margin"];
1
+ export declare const BASE_STYLES: readonly ["display", "font", "preset", "hide", "opacity", "whiteSpace"];
2
+ export declare const POSITION_STYLES: readonly ["gridArea", "order", "gridColumn", "gridRow", "placeSelf", "alignSelf", "justifySelf", "zIndex", "margin"];
3
3
  export declare const BLOCK_STYLES: readonly ["reset", "padding", "paddingInline", "paddingBlock", "shadow", "border", "radius", "opacity", "overflow", "styledScrollbar", "hide", "outline", "textAlign"];
4
4
  export declare const COLOR_STYLES: readonly ["color", "fill"];
5
5
  export declare const TEXT_STYLES: readonly ["textTransform", "fontWeight", "fontStyle"];
6
- export declare const DIMENSION_STYLES: readonly ["width", "height", "flexBasis"];
7
- export declare const FLOW_STYLES: readonly ["flow", "placeItems", "placeContent", "alignItems", "alignContent", "justifyItems", "justifyContent", "gap", "gridColumns", "gridRows", "gridTemplate", "gridAreas"];
8
- export declare const CONTAINER_STYLES: readonly ["display", "font", "preset", "hide", "opacity", "color", "fill", "width", "height", "flexBasis", "gridArea", "flexGrow", "flexShrink", "order", "gridColumn", "gridRow", "placeSelf", "zIndex", "margin", "reset", "padding", "paddingInline", "paddingBlock", "shadow", "border", "radius", "opacity", "overflow", "styledScrollbar", "hide", "outline", "textAlign", "flow", "placeItems", "placeContent", "alignItems", "alignContent", "justifyItems", "justifyContent", "gap", "gridColumns", "gridRows", "gridTemplate", "gridAreas"];
9
- export declare const OUTER_STYLES: readonly ["gridArea", "flexGrow", "flexShrink", "order", "gridColumn", "gridRow", "placeSelf", "zIndex", "margin", "width", "height", "flexBasis"];
6
+ export declare const DIMENSION_STYLES: readonly ["width", "height", "flexBasis", "flexGrow", "flexShrink", "flex"];
7
+ export declare const FLOW_STYLES: readonly ["flow", "placeItems", "placeContent", "alignItems", "alignContent", "justifyItems", "justifyContent", "gap", "columnGap", "rowGap", "gridColumns", "gridRows", "gridTemplate", "gridAreas"];
8
+ export declare const CONTAINER_STYLES: readonly ["display", "font", "preset", "hide", "opacity", "whiteSpace", "color", "fill", "width", "height", "flexBasis", "flexGrow", "flexShrink", "flex", "gridArea", "order", "gridColumn", "gridRow", "placeSelf", "alignSelf", "justifySelf", "zIndex", "margin", "reset", "padding", "paddingInline", "paddingBlock", "shadow", "border", "radius", "opacity", "overflow", "styledScrollbar", "hide", "outline", "textAlign", "flow", "placeItems", "placeContent", "alignItems", "alignContent", "justifyItems", "justifyContent", "gap", "columnGap", "rowGap", "gridColumns", "gridRows", "gridTemplate", "gridAreas"];
9
+ export declare const OUTER_STYLES: readonly ["gridArea", "order", "gridColumn", "gridRow", "placeSelf", "alignSelf", "justifySelf", "zIndex", "margin", "width", "height", "flexBasis", "flexGrow", "flexShrink", "flex"];
@@ -33,6 +33,7 @@ declare const Text: import("react").ForwardRefExoticComponent<CubeTextProps & im
33
33
  Danger: import("react").ForwardRefExoticComponent<CubeTextProps & import("react").RefAttributes<unknown>>;
34
34
  Success: import("react").ForwardRefExoticComponent<CubeTextProps & import("react").RefAttributes<unknown>>;
35
35
  Strong: import("react").ForwardRefExoticComponent<CubeTextProps & import("react").RefAttributes<unknown>>;
36
+ Emphasis: import("react").ForwardRefExoticComponent<CubeTextProps & import("react").RefAttributes<unknown>>;
36
37
  Selection: import("react").ForwardRefExoticComponent<CubeTextProps & import("react").RefAttributes<unknown>>;
37
38
  };
38
39
  export { Text };
@@ -1,7 +1,7 @@
1
1
  /// <reference types="react" />
2
2
  import { CubeTextProps } from './Text';
3
- import { BaseProps, BlockStyleProps, PositionStyleProps, TagNameProps } from '../types';
4
- export interface CubeTitleProps extends BaseProps, CubeTextProps, TagNameProps, BlockStyleProps, PositionStyleProps {
3
+ import { BaseProps, ContainerStyleProps, PositionStyleProps, TagNameProps } from '../types';
4
+ export interface CubeTitleProps extends BaseProps, CubeTextProps, TagNameProps, ContainerStyleProps, PositionStyleProps {
5
5
  /** The level of the heading **/
6
6
  level?: 1 | 2 | 3 | 4 | 5 | 6;
7
7
  }
@@ -121,6 +121,18 @@ declare const PROPS: {
121
121
  'tag-line-height': string;
122
122
  'tag-letter-spacing': string;
123
123
  'tag-font-weight': string;
124
+ 'strong-font-size': string;
125
+ 'strong-line-height': string;
126
+ 'strong-letter-spacing': string;
127
+ 'strong-font-family': string;
128
+ 'strong-font-style': string;
129
+ 'strong-font-weight': number;
130
+ 'em-font-size': string;
131
+ 'em-line-height': string;
132
+ 'em-letter-spacing': string;
133
+ 'em-font-family': string;
134
+ 'em-font-style': string;
135
+ 'em-font-weight': string;
124
136
  'default-font-size': string;
125
137
  'default-line-height': string;
126
138
  'default-letter-spacing': string;
@@ -135,6 +135,7 @@ export declare const Typography: {
135
135
  Danger: import("react").ForwardRefExoticComponent<CubeTextProps & import("react").RefAttributes<unknown>>;
136
136
  Success: import("react").ForwardRefExoticComponent<CubeTextProps & import("react").RefAttributes<unknown>>;
137
137
  Strong: import("react").ForwardRefExoticComponent<CubeTextProps & import("react").RefAttributes<unknown>>;
138
+ Emphasis: import("react").ForwardRefExoticComponent<CubeTextProps & import("react").RefAttributes<unknown>>;
138
139
  Selection: import("react").ForwardRefExoticComponent<CubeTextProps & import("react").RefAttributes<unknown>>;
139
140
  };
140
141
  Title: import("react").ForwardRefExoticComponent<CubeTitleProps & import("react").RefAttributes<unknown>> & {