@cube-dev/ui-kit 0.6.49 → 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.
- package/dist/cjs/components/content/Text.d.ts +1 -0
- package/dist/cjs/components/content/Title.d.ts +2 -2
- package/dist/cjs/components/forms/NumberInput/StepButton.d.ts +1 -2
- package/dist/cjs/css-properties.d.ts +12 -0
- package/dist/cjs/index.d.ts +1 -0
- package/dist/cjs/index.js +5 -5
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/styles/list.d.ts +6 -6
- package/dist/mjs/components/content/Text.d.ts +1 -0
- package/dist/mjs/components/content/Title.d.ts +2 -2
- package/dist/mjs/components/forms/NumberInput/StepButton.d.ts +1 -2
- package/dist/mjs/css-properties.d.ts +12 -0
- package/dist/mjs/index.d.ts +1 -0
- package/dist/mjs/index.js +5 -5
- package/dist/mjs/index.js.map +1 -1
- package/dist/mjs/styles/list.d.ts +6 -6
- package/package.json +1 -1
|
@@ -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,
|
|
4
|
-
export interface CubeTitleProps extends BaseProps, CubeTextProps, TagNameProps,
|
|
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
|
}
|
|
@@ -2,5 +2,4 @@
|
|
|
2
2
|
/**
|
|
3
3
|
* Buttons for NumberField.
|
|
4
4
|
*/
|
|
5
|
-
declare
|
|
6
|
-
export { _StepButton as StepButton };
|
|
5
|
+
export declare function StepButton(props: any): JSX.Element;
|
|
@@ -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;
|
package/dist/cjs/index.d.ts
CHANGED
|
@@ -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>> & {
|