@redsift/design-system 7.2.0 → 7.3.0
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/index.d.ts +477 -4
- package/index.js +1067 -195
- package/index.js.map +1 -1
- package/package.json +8 -5
- package/style/redsift-design-tokens.css +224 -0
- package/style/redsift-fonts.css +272 -0
- package/style/redsift-reset.css +131 -0
- package/style/redsift-style.css +97 -0
- package/style/redsift.css +42 -2
package/index.d.ts
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import React, { Ref, ReactElement, ComponentProps, RefObject, MutableRefObject, ChangeEvent } from 'react';
|
|
2
|
+
export { I18nProvider, useCollator, useDateFormatter, useFilter, useListFormatter, useLocale, useLocalizedStringFormatter, useNumberFormatter } from '@react-aria/i18n';
|
|
3
|
+
export { SSRProvider } from '@react-aria/ssr';
|
|
2
4
|
import { PressEvent } from '@react-types/shared';
|
|
3
5
|
import * as styled_components from 'styled-components';
|
|
4
6
|
|
|
@@ -23,6 +25,15 @@ type Comp<P, T = HTMLElement> = {
|
|
|
23
25
|
type Falsy = false | undefined | null | 0 | '';
|
|
24
26
|
/** Get types of the values of a record. */
|
|
25
27
|
type ValueOf<T extends Record<any, any>> = T[keyof T];
|
|
28
|
+
/**
|
|
29
|
+
* Font.
|
|
30
|
+
*/
|
|
31
|
+
declare const FontFamily: {
|
|
32
|
+
readonly raleway: "raleway";
|
|
33
|
+
readonly 'source-code-pro': "source-code-pro";
|
|
34
|
+
readonly electrolize: "electrolize";
|
|
35
|
+
};
|
|
36
|
+
type FontFamily = ValueOf<typeof FontFamily>;
|
|
26
37
|
/**
|
|
27
38
|
* Color palette.
|
|
28
39
|
*/
|
|
@@ -45,10 +56,32 @@ declare const ProductColorPalette: {
|
|
|
45
56
|
readonly tools: "tools";
|
|
46
57
|
};
|
|
47
58
|
type ProductColorPalette = ValueOf<typeof ProductColorPalette>;
|
|
59
|
+
declare const DataVizColorPalette: {
|
|
60
|
+
readonly purple: "purple";
|
|
61
|
+
readonly blue: "blue";
|
|
62
|
+
readonly green: "green";
|
|
63
|
+
readonly red: "red";
|
|
64
|
+
readonly pink: "pink";
|
|
65
|
+
readonly cyan: "cyan";
|
|
66
|
+
readonly orange: "orange";
|
|
67
|
+
readonly yellow: "yellow";
|
|
68
|
+
readonly brown: "brown";
|
|
69
|
+
readonly grey: "grey";
|
|
70
|
+
};
|
|
71
|
+
type DataVizColorPalette = ValueOf<typeof DataVizColorPalette>;
|
|
72
|
+
declare const NeutralColorPalette: {
|
|
73
|
+
readonly black: "black";
|
|
74
|
+
readonly darkgrey: "darkgrey";
|
|
75
|
+
readonly midgrey: "midgrey";
|
|
76
|
+
readonly lightgrey: "lightgrey";
|
|
77
|
+
readonly xlightgrey: "xlightgrey";
|
|
78
|
+
readonly white: "white";
|
|
79
|
+
};
|
|
80
|
+
type NeutralColorPalette = ValueOf<typeof NeutralColorPalette>;
|
|
48
81
|
|
|
49
82
|
/**
|
|
50
83
|
* Do not edit directly
|
|
51
|
-
* Generated on
|
|
84
|
+
* Generated on Thu, 26 Jan 2023 14:28:56 GMT
|
|
52
85
|
*/
|
|
53
86
|
declare const RedsiftColorDefaultPrimary = "#0079e1";
|
|
54
87
|
declare const RedsiftColorDefaultSecondary = "#0063b9";
|
|
@@ -212,22 +245,27 @@ declare const RedsiftTypographyH2FontFamily = "'Raleway', sans-serif";
|
|
|
212
245
|
declare const RedsiftTypographyH2FontSize = "24px";
|
|
213
246
|
declare const RedsiftTypographyH2FontWeight = "600";
|
|
214
247
|
declare const RedsiftTypographyH2LineHeight = "28px";
|
|
248
|
+
declare const RedsiftTypographyH2TextTransform = "unset";
|
|
215
249
|
declare const RedsiftTypographyH3FontFamily = "'Raleway', sans-serif";
|
|
216
250
|
declare const RedsiftTypographyH3FontSize = "20px";
|
|
217
251
|
declare const RedsiftTypographyH3FontWeight = "500";
|
|
218
252
|
declare const RedsiftTypographyH3LineHeight = "24px";
|
|
253
|
+
declare const RedsiftTypographyH3TextTransform = "unset";
|
|
219
254
|
declare const RedsiftTypographyH4FontFamily = "'Raleway', sans-serif";
|
|
220
255
|
declare const RedsiftTypographyH4FontSize = "18px";
|
|
221
256
|
declare const RedsiftTypographyH4FontWeight = "500";
|
|
222
257
|
declare const RedsiftTypographyH4LineHeight = "22px";
|
|
258
|
+
declare const RedsiftTypographyH4TextTransform = "unset";
|
|
223
259
|
declare const RedsiftTypographySubtitleFontFamily = "'Raleway', sans-serif";
|
|
224
260
|
declare const RedsiftTypographySubtitleFontSize = "15px";
|
|
225
261
|
declare const RedsiftTypographySubtitleFontWeight = "700";
|
|
226
262
|
declare const RedsiftTypographySubtitleLineHeight = "26px";
|
|
263
|
+
declare const RedsiftTypographySubtitleTextTransform = "unset";
|
|
227
264
|
declare const RedsiftTypographyBodyFontFamily = "'Raleway', sans-serif";
|
|
228
265
|
declare const RedsiftTypographyBodyFontSize = "15px";
|
|
229
266
|
declare const RedsiftTypographyBodyFontWeight = "400";
|
|
230
267
|
declare const RedsiftTypographyBodyLineHeight = "26px";
|
|
268
|
+
declare const RedsiftTypographyBodyTextTransform = "unset";
|
|
231
269
|
declare const RedsiftTypographyLinkFontFamily = "'Raleway', sans-serif";
|
|
232
270
|
declare const RedsiftTypographyLinkFontSize = "15px";
|
|
233
271
|
declare const RedsiftTypographyLinkFontWeight = "400";
|
|
@@ -245,6 +283,7 @@ declare const RedsiftTypographyCaptionFontFamily = "'Raleway', sans-serif";
|
|
|
245
283
|
declare const RedsiftTypographyCaptionFontSize = "13px";
|
|
246
284
|
declare const RedsiftTypographyCaptionFontWeight = "400";
|
|
247
285
|
declare const RedsiftTypographyCaptionLineHeight = "23px";
|
|
286
|
+
declare const RedsiftTypographyCaptionTextTransform = "unset";
|
|
248
287
|
declare const RedsiftTypographyHelperFontFamily = "'Raleway', sans-serif";
|
|
249
288
|
declare const RedsiftTypographyHelperFontSize = "12px";
|
|
250
289
|
declare const RedsiftTypographyHelperFontWeight = "400";
|
|
@@ -253,6 +292,10 @@ declare const RedsiftTypographyBadgeFontFamily = "'Source Code Pro', sans-serif"
|
|
|
253
292
|
declare const RedsiftTypographyBadgeFontSize = "12px";
|
|
254
293
|
declare const RedsiftTypographyBadgeFontWeight = "500";
|
|
255
294
|
declare const RedsiftTypographyBadgeLineHeight = "20px";
|
|
295
|
+
declare const RedsiftTypographyPillFontFamily = "'Source Code Pro', sans-serif";
|
|
296
|
+
declare const RedsiftTypographyPillFontSize = "15px";
|
|
297
|
+
declare const RedsiftTypographyPillFontWeight = "500";
|
|
298
|
+
declare const RedsiftTypographyPillLineHeight = "28px";
|
|
256
299
|
declare const RedsiftTypographyChipFontFamily = "'Source Code Pro', sans-serif";
|
|
257
300
|
declare const RedsiftTypographyChipFontSize = "13px";
|
|
258
301
|
declare const RedsiftTypographyChipFontWeight = "400";
|
|
@@ -266,6 +309,13 @@ declare const RedsiftTypographyChipLineHeight = "18px";
|
|
|
266
309
|
*/
|
|
267
310
|
declare const warnIfNoAccessibleLabelFound: (props: ComponentProps<keyof JSX.IntrinsicElements>, additionalKeysToCheck?: any[]) => void;
|
|
268
311
|
|
|
312
|
+
interface WindowSize {
|
|
313
|
+
height?: number;
|
|
314
|
+
width?: number;
|
|
315
|
+
size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
316
|
+
}
|
|
317
|
+
declare const useWindowSize: () => WindowSize;
|
|
318
|
+
|
|
269
319
|
/**
|
|
270
320
|
* Component variant.
|
|
271
321
|
*/
|
|
@@ -368,10 +418,12 @@ type AppContainerState = {
|
|
|
368
418
|
* Component props.
|
|
369
419
|
*/
|
|
370
420
|
interface AppContainerProps extends ComponentProps<'div'> {
|
|
421
|
+
/** The locale to apply to the children. */
|
|
422
|
+
locale?: string;
|
|
371
423
|
/** Product theme to apply to everything within. This overrides the CSS variables automatically. */
|
|
372
424
|
productTheme?: ProductColorPalette;
|
|
373
425
|
}
|
|
374
|
-
type StyledAppContainerProps = Omit<AppContainerProps, 'productTheme'> & {
|
|
426
|
+
type StyledAppContainerProps = Omit<AppContainerProps, 'locale' | 'productTheme'> & {
|
|
375
427
|
$productTheme?: string;
|
|
376
428
|
};
|
|
377
429
|
|
|
@@ -748,7 +800,7 @@ type StyledButtonProps = Omit<ButtonProps, 'isActive' | 'isDisabled' | 'variant'
|
|
|
748
800
|
/**
|
|
749
801
|
* Component style.
|
|
750
802
|
*/
|
|
751
|
-
declare const StyledButton: styled_components.StyledComponent<"button", any, Omit<ButtonProps, "
|
|
803
|
+
declare const StyledButton: styled_components.StyledComponent<"button", any, Omit<ButtonProps, "size" | "color" | "isActive" | "isDisabled" | "variant" | "fullWidth"> & {
|
|
752
804
|
$color: ButtonColor | undefined;
|
|
753
805
|
$fullWidth?: boolean | undefined;
|
|
754
806
|
$isActive: boolean | undefined;
|
|
@@ -946,6 +998,287 @@ type StyledCheckboxProps = Omit<CheckboxProps, 'color' | 'isDisabled' | 'isInval
|
|
|
946
998
|
*/
|
|
947
999
|
declare const Checkbox: Comp<CheckboxProps, HTMLLabelElement>;
|
|
948
1000
|
|
|
1001
|
+
declare const FlexboxAlignContent: {
|
|
1002
|
+
readonly 'flex-start': "flex-start";
|
|
1003
|
+
readonly 'flex-end': "flex-end";
|
|
1004
|
+
readonly center: "center";
|
|
1005
|
+
readonly 'space-between': "space-between";
|
|
1006
|
+
readonly 'space-around': "space-around";
|
|
1007
|
+
readonly 'space-evenly': "space-evenly";
|
|
1008
|
+
readonly stretch: "stretch";
|
|
1009
|
+
readonly start: "start";
|
|
1010
|
+
readonly end: "end";
|
|
1011
|
+
readonly baseline: "baseline";
|
|
1012
|
+
readonly 'first baseline': "first baseline";
|
|
1013
|
+
readonly 'last baseline': "last baseline";
|
|
1014
|
+
};
|
|
1015
|
+
type FlexboxAlignContent = ValueOf<typeof FlexboxAlignContent>;
|
|
1016
|
+
declare const FlexboxAlignItems: {
|
|
1017
|
+
readonly stretch: "stretch";
|
|
1018
|
+
readonly 'flex-start': "flex-start";
|
|
1019
|
+
readonly 'flex-end': "flex-end";
|
|
1020
|
+
readonly center: "center";
|
|
1021
|
+
readonly baseline: "baseline";
|
|
1022
|
+
readonly 'first baseline': "first baseline";
|
|
1023
|
+
readonly 'last baseline': "last baseline";
|
|
1024
|
+
readonly start: "start";
|
|
1025
|
+
readonly end: "end";
|
|
1026
|
+
readonly 'self-start': "self-start";
|
|
1027
|
+
readonly 'self-end': "self-end";
|
|
1028
|
+
};
|
|
1029
|
+
type FlexboxAlignItems = ValueOf<typeof FlexboxAlignItems>;
|
|
1030
|
+
declare const FlexboxAlignSelf: {
|
|
1031
|
+
readonly auto: "auto";
|
|
1032
|
+
readonly 'flex-start': "flex-start";
|
|
1033
|
+
readonly 'flex-end': "flex-end";
|
|
1034
|
+
readonly center: "center";
|
|
1035
|
+
readonly baseline: "baseline";
|
|
1036
|
+
readonly stretch: "stretch";
|
|
1037
|
+
};
|
|
1038
|
+
type FlexboxAlignSelf = ValueOf<typeof FlexboxAlignSelf>;
|
|
1039
|
+
declare const FlexboxFlexDirection: {
|
|
1040
|
+
readonly row: "row";
|
|
1041
|
+
readonly 'row-reverse': "row-reverse";
|
|
1042
|
+
readonly column: "column";
|
|
1043
|
+
readonly 'column-reverse': "column-reverse";
|
|
1044
|
+
};
|
|
1045
|
+
type FlexboxFlexDirection = ValueOf<typeof FlexboxFlexDirection>;
|
|
1046
|
+
declare const FlexboxFlexWrap: {
|
|
1047
|
+
readonly nowrap: "nowrap";
|
|
1048
|
+
readonly wrap: "wrap";
|
|
1049
|
+
readonly 'wrap-reverse': "wrap-reverse";
|
|
1050
|
+
};
|
|
1051
|
+
type FlexboxFlexWrap = ValueOf<typeof FlexboxFlexWrap>;
|
|
1052
|
+
declare const FlexboxJustifyContent: {
|
|
1053
|
+
readonly 'flex-start': "flex-start";
|
|
1054
|
+
readonly 'flex-end': "flex-end";
|
|
1055
|
+
readonly center: "center";
|
|
1056
|
+
readonly 'space-between': "space-between";
|
|
1057
|
+
readonly 'space-around': "space-around";
|
|
1058
|
+
readonly 'space-evenly': "space-evenly";
|
|
1059
|
+
readonly start: "start";
|
|
1060
|
+
readonly end: "end";
|
|
1061
|
+
readonly left: "left";
|
|
1062
|
+
readonly right: "right";
|
|
1063
|
+
};
|
|
1064
|
+
type FlexboxJustifyContent = ValueOf<typeof FlexboxJustifyContent>;
|
|
1065
|
+
/**
|
|
1066
|
+
* Component props.
|
|
1067
|
+
*/
|
|
1068
|
+
interface FlexboxProps extends ComponentProps<'div'> {
|
|
1069
|
+
/** This aligns a flex container’s lines within when there is extra space in the cross-axis, similar to how justify-content aligns individual items within the main-axis. */
|
|
1070
|
+
alignContent?: FlexboxAlignContent;
|
|
1071
|
+
/** This defines the default behavior for how flex items are laid out along the cross axis on the current line. Think of it as the justify-content version for the cross-axis (perpendicular to the main-axis). */
|
|
1072
|
+
alignItems?: FlexboxAlignItems;
|
|
1073
|
+
/** This allows the default alignment (or the one specified by align-items) to be overridden for individual flex items. */
|
|
1074
|
+
alignSelf?: FlexboxAlignSelf;
|
|
1075
|
+
/** This defines the default size of an element before the remaining space is distributed. It can be a length (e.g. 20%, 5rem, etc.) or a keyword. The auto keyword means “look at my width or height property” (which was temporarily done by the main-size keyword until deprecated). The content keyword means “size it based on the item’s content” – this keyword isn’t well supported yet, so it’s hard to test and harder to know what its brethren max-content, min-content, and fit-content do. */
|
|
1076
|
+
flexBasis?: string;
|
|
1077
|
+
/** This establishes the main-axis, thus defining the direction flex items are placed in the flex container. Flexbox is (aside from optional wrapping) a single-direction layout concept. Think of flex items as primarily laying out either in horizontal rows or vertical columns. */
|
|
1078
|
+
flexDirection?: FlexboxFlexDirection;
|
|
1079
|
+
/** This defines the ability for a flex item to grow if necessary. It accepts a unitless value that serves as a proportion. It dictates what amount of the available space inside the flex container the item should take up. If all items have flex-grow set to 1, the remaining space in the container will be distributed equally to all children. If one of the children has a value of 2, that child would take up twice as much of the space either one of the others (or it will try, at least). */
|
|
1080
|
+
flexGrow?: number;
|
|
1081
|
+
/** This defines the ability for a flex item to shrink if necessary. */
|
|
1082
|
+
flexShrink?: number;
|
|
1083
|
+
/** By default, flex items will all try to fit onto one line. You can change that and allow the items to wrap as needed with this property. */
|
|
1084
|
+
flexWrap?: FlexboxFlexWrap;
|
|
1085
|
+
/** The gap property explicitly controls the space between flex items. It applies that spacing only between items not on the outer edges. */
|
|
1086
|
+
gap?: string;
|
|
1087
|
+
/** The height of the box. */
|
|
1088
|
+
height?: string;
|
|
1089
|
+
/** Whether the box is displayed inline or not. */
|
|
1090
|
+
inline?: boolean;
|
|
1091
|
+
/** This defines the alignment along the main axis. It helps distribute extra free space leftover when either all the flex items on a line are inflexible, or are flexible but have reached their maximum size. It also exerts some control over the alignment of items when they overflow the line. */
|
|
1092
|
+
justifyContent?: FlexboxJustifyContent;
|
|
1093
|
+
/** By default, flex items are laid out in the source order. However, the order property controls the order in which they appear in the flex container. */
|
|
1094
|
+
order?: number;
|
|
1095
|
+
/** The width of the box. */
|
|
1096
|
+
width?: string;
|
|
1097
|
+
}
|
|
1098
|
+
type StyledFlexboxProps = Omit<FlexboxProps, 'alignContent' | 'alignItems' | 'alignSelf' | 'flexBasis' | 'flexDirection' | 'flexGrow' | 'flexShrink' | 'flexWrap' | 'gap' | 'height' | 'inline' | 'justifyContent' | 'order' | 'width'> & {
|
|
1099
|
+
$alignContent: FlexboxProps['alignContent'];
|
|
1100
|
+
$alignItems: FlexboxProps['alignItems'];
|
|
1101
|
+
$alignSelf: FlexboxProps['alignSelf'];
|
|
1102
|
+
$flexBasis: FlexboxProps['flexBasis'];
|
|
1103
|
+
$flexDirection: FlexboxProps['flexDirection'];
|
|
1104
|
+
$flexGrow: FlexboxProps['flexGrow'];
|
|
1105
|
+
$flexShrink: FlexboxProps['flexShrink'];
|
|
1106
|
+
$flexWrap: FlexboxProps['flexWrap'];
|
|
1107
|
+
$gap: FlexboxProps['gap'];
|
|
1108
|
+
$height: FlexboxProps['height'];
|
|
1109
|
+
$inline: FlexboxProps['inline'];
|
|
1110
|
+
$justifyContent: FlexboxProps['justifyContent'];
|
|
1111
|
+
$order: FlexboxProps['order'];
|
|
1112
|
+
$width: FlexboxProps['width'];
|
|
1113
|
+
};
|
|
1114
|
+
|
|
1115
|
+
/**
|
|
1116
|
+
* The Flexbox component.
|
|
1117
|
+
*/
|
|
1118
|
+
declare const Flexbox: Comp<FlexboxProps, HTMLDivElement>;
|
|
1119
|
+
|
|
1120
|
+
declare const GridAlignContent: {
|
|
1121
|
+
readonly start: "start";
|
|
1122
|
+
readonly end: "end";
|
|
1123
|
+
readonly center: "center";
|
|
1124
|
+
readonly stretch: "stretch";
|
|
1125
|
+
readonly 'space-around': "space-around";
|
|
1126
|
+
readonly 'space-between': "space-between";
|
|
1127
|
+
readonly 'space-evenly': "space-evenly";
|
|
1128
|
+
};
|
|
1129
|
+
type GridAlignContent = ValueOf<typeof GridAlignContent>;
|
|
1130
|
+
declare const GridAlignItems: {
|
|
1131
|
+
readonly start: "start";
|
|
1132
|
+
readonly end: "end";
|
|
1133
|
+
readonly center: "center";
|
|
1134
|
+
readonly stretch: "stretch";
|
|
1135
|
+
};
|
|
1136
|
+
type GridAlignItems = ValueOf<typeof GridAlignItems>;
|
|
1137
|
+
declare const GridJustifyContent: {
|
|
1138
|
+
readonly start: "start";
|
|
1139
|
+
readonly end: "end";
|
|
1140
|
+
readonly center: "center";
|
|
1141
|
+
readonly stretch: "stretch";
|
|
1142
|
+
readonly 'space-around': "space-around";
|
|
1143
|
+
readonly 'space-between': "space-between";
|
|
1144
|
+
readonly 'space-evenly': "space-evenly";
|
|
1145
|
+
};
|
|
1146
|
+
type GridJustifyContent = ValueOf<typeof GridJustifyContent>;
|
|
1147
|
+
declare const GridJustifyItems: {
|
|
1148
|
+
readonly start: "start";
|
|
1149
|
+
readonly end: "end";
|
|
1150
|
+
readonly center: "center";
|
|
1151
|
+
readonly stretch: "stretch";
|
|
1152
|
+
};
|
|
1153
|
+
type GridJustifyItems = ValueOf<typeof GridJustifyItems>;
|
|
1154
|
+
/**
|
|
1155
|
+
* Component props.
|
|
1156
|
+
*/
|
|
1157
|
+
interface GridProps extends ComponentProps<'div'> {
|
|
1158
|
+
/** Sometimes the total size of your grid might be less than the size of its grid container. This could happen if all of your grid items are sized with non-flexible units like px. In this case you can set the alignment of the grid within the grid container. */
|
|
1159
|
+
alignContent?: GridAlignContent;
|
|
1160
|
+
/** Aligns grid items along the block (column) axis (as opposed to justify-items which aligns along the inline (row) axis). This value applies to all grid items inside the container. */
|
|
1161
|
+
alignItems?: GridAlignItems;
|
|
1162
|
+
/** Specifies the size of the grid lines. You can think of it like setting the width of the gutters between the columns/rows. */
|
|
1163
|
+
gap?: string;
|
|
1164
|
+
/** Specifies the size of any auto-generated grid tracks (aka implicit grid tracks). */
|
|
1165
|
+
gridAutoColumns?: string;
|
|
1166
|
+
/** Specifies the size of any auto-generated grid tracks (aka implicit grid tracks). */
|
|
1167
|
+
gridAutoRows?: string;
|
|
1168
|
+
/** Defines a grid template by referencing the names of the grid areas which are specified with the grid-area property. */
|
|
1169
|
+
gridTemplateAreas?: string;
|
|
1170
|
+
/** Defines the columns of the grid with a space-separated list of values. The values represent the track size, and the space between them represents the grid line. */
|
|
1171
|
+
gridTemplateColumns?: string;
|
|
1172
|
+
/** Defines the rows of the grid with a space-separated list of values. The values represent the track size, and the space between them represents the grid line. */
|
|
1173
|
+
gridTemplateRows?: string;
|
|
1174
|
+
/** The height of the box. */
|
|
1175
|
+
height?: string;
|
|
1176
|
+
/** Whether the box is displayed inline or not. */
|
|
1177
|
+
inline?: boolean;
|
|
1178
|
+
/** Sometimes the total size of your grid might be less than the size of its grid container. This could happen if all of your grid items are sized with non-flexible units like px. In this case you can set the alignment of the grid within the grid container. */
|
|
1179
|
+
justifyContent?: GridJustifyContent;
|
|
1180
|
+
/** Aligns grid items along the inline (row) axis (as opposed to align-items which aligns along the block (column) axis). This value applies to all grid items inside the container. */
|
|
1181
|
+
justifyItems?: GridJustifyItems;
|
|
1182
|
+
/** The width of the box. */
|
|
1183
|
+
width?: string;
|
|
1184
|
+
}
|
|
1185
|
+
type StyledGridProps = Omit<GridProps, 'alignItems' | 'alignContent' | 'gap' | 'gridAutoColumns' | 'gridAutoRows' | 'gridTemplateAreas' | 'gridTemplateColumns' | 'gridTemplateRows' | 'height' | 'inline' | 'justifyContent' | 'justifyItems' | 'width'> & {
|
|
1186
|
+
$alignContent: GridProps['alignContent'];
|
|
1187
|
+
$alignItems: GridProps['alignItems'];
|
|
1188
|
+
$gap: GridProps['gap'];
|
|
1189
|
+
$gridAutoColumns: GridProps['gridAutoColumns'];
|
|
1190
|
+
$gridAutoRows: GridProps['gridAutoRows'];
|
|
1191
|
+
$gridTemplateAreas: GridProps['gridTemplateAreas'];
|
|
1192
|
+
$gridTemplateColumns: GridProps['gridTemplateColumns'];
|
|
1193
|
+
$gridTemplateRows: GridProps['gridTemplateRows'];
|
|
1194
|
+
$height: GridProps['height'];
|
|
1195
|
+
$inline: GridProps['inline'];
|
|
1196
|
+
$justifyContent: GridProps['justifyContent'];
|
|
1197
|
+
$justifyItems: GridProps['justifyItems'];
|
|
1198
|
+
$width: GridProps['width'];
|
|
1199
|
+
};
|
|
1200
|
+
|
|
1201
|
+
/**
|
|
1202
|
+
* The Grid component.
|
|
1203
|
+
*/
|
|
1204
|
+
declare const Grid: Comp<GridProps, HTMLDivElement>;
|
|
1205
|
+
|
|
1206
|
+
declare const GridItemAlignSelf: {
|
|
1207
|
+
readonly start: "start";
|
|
1208
|
+
readonly end: "end";
|
|
1209
|
+
readonly center: "center";
|
|
1210
|
+
readonly stretch: "stretch";
|
|
1211
|
+
};
|
|
1212
|
+
type GridItemAlignSelf = ValueOf<typeof GridItemAlignSelf>;
|
|
1213
|
+
declare const GridItemJustifySelf: {
|
|
1214
|
+
readonly start: "start";
|
|
1215
|
+
readonly end: "end";
|
|
1216
|
+
readonly center: "center";
|
|
1217
|
+
readonly stretch: "stretch";
|
|
1218
|
+
};
|
|
1219
|
+
type GridItemJustifySelf = ValueOf<typeof GridItemJustifySelf>;
|
|
1220
|
+
/**
|
|
1221
|
+
* Component props.
|
|
1222
|
+
*/
|
|
1223
|
+
interface GridItemProps extends ComponentProps<'div'> {
|
|
1224
|
+
/** Aligns a grid item inside a cell along the block (column) axis (as opposed to justify-self which aligns along the inline (row) axis). This value applies to the content inside a single grid item. */
|
|
1225
|
+
alignSelf?: GridItemAlignSelf;
|
|
1226
|
+
/** Gives an item a name so that it can be referenced by a template created with the grid-template-areas property. */
|
|
1227
|
+
gridArea?: string;
|
|
1228
|
+
/** Determines a grid item's location within the grid by referring to specific grid lines. */
|
|
1229
|
+
gridColumn?: string;
|
|
1230
|
+
/** Determines a grid item's location within the grid by referring to specific grid lines. */
|
|
1231
|
+
gridRow?: string;
|
|
1232
|
+
/** The height of the box. */
|
|
1233
|
+
height?: string;
|
|
1234
|
+
/** Aligns a grid item inside a cell along the inline (row) axis (as opposed to align-self which aligns along the block (column) axis). This value applies to a grid item inside a single cell. */
|
|
1235
|
+
justifySelf?: GridItemJustifySelf;
|
|
1236
|
+
/** The width of the box. */
|
|
1237
|
+
width?: string;
|
|
1238
|
+
}
|
|
1239
|
+
type StyledGridItemProps = Omit<GridItemProps, 'alignSelf' | 'gridArea' | 'gridColumn' | 'gridRow' | 'height' | 'width'> & {
|
|
1240
|
+
$alignSelf: GridItemProps['alignSelf'];
|
|
1241
|
+
$gridArea: GridItemProps['gridArea'];
|
|
1242
|
+
$gridColumn: GridItemProps['gridColumn'];
|
|
1243
|
+
$gridRow: GridItemProps['gridRow'];
|
|
1244
|
+
$height: GridItemProps['height'];
|
|
1245
|
+
$justifySelf: GridItemProps['justifySelf'];
|
|
1246
|
+
$width: GridItemProps['width'];
|
|
1247
|
+
};
|
|
1248
|
+
|
|
1249
|
+
/**
|
|
1250
|
+
* The GridItem component.
|
|
1251
|
+
*/
|
|
1252
|
+
declare const GridItem: Comp<GridItemProps, HTMLDivElement>;
|
|
1253
|
+
|
|
1254
|
+
/**
|
|
1255
|
+
* Component variant.
|
|
1256
|
+
*/
|
|
1257
|
+
declare const HeadingVariant: {
|
|
1258
|
+
readonly h1: "h1";
|
|
1259
|
+
readonly h2: "h2";
|
|
1260
|
+
readonly h3: "h3";
|
|
1261
|
+
readonly h4: "h4";
|
|
1262
|
+
};
|
|
1263
|
+
type HeadingVariant = ValueOf<typeof HeadingVariant>;
|
|
1264
|
+
/**
|
|
1265
|
+
* Component props.
|
|
1266
|
+
*/
|
|
1267
|
+
interface HeadingProps extends ComponentProps<'span'> {
|
|
1268
|
+
/** Override component. */
|
|
1269
|
+
as: HeadingVariant;
|
|
1270
|
+
/** Whether the text will truncate with a text overflow ellipsis or wrap. */
|
|
1271
|
+
noWrap?: boolean;
|
|
1272
|
+
}
|
|
1273
|
+
type StyledHeadingProps = Omit<HeadingProps, 'color' | 'noWrap'> & {
|
|
1274
|
+
$noWrap: HeadingProps['noWrap'];
|
|
1275
|
+
};
|
|
1276
|
+
|
|
1277
|
+
/**
|
|
1278
|
+
* The Heading component.
|
|
1279
|
+
*/
|
|
1280
|
+
declare const Heading: Comp<HeadingProps, HTMLDivElement>;
|
|
1281
|
+
|
|
949
1282
|
/**
|
|
950
1283
|
* Component props.
|
|
951
1284
|
*/
|
|
@@ -964,6 +1297,146 @@ type StyledLinkButtonProps = Omit<LinkButtonProps, 'isDisabled'> & {
|
|
|
964
1297
|
*/
|
|
965
1298
|
declare const LinkButton: Comp<LinkButtonProps, HTMLButtonElement>;
|
|
966
1299
|
|
|
1300
|
+
/**
|
|
1301
|
+
* Component variant.
|
|
1302
|
+
*/
|
|
1303
|
+
declare const TextVariant: {
|
|
1304
|
+
readonly body: "body";
|
|
1305
|
+
readonly button: "button";
|
|
1306
|
+
readonly caption: "caption";
|
|
1307
|
+
readonly inherit: "inherit";
|
|
1308
|
+
readonly subtitle1: "subtitle1";
|
|
1309
|
+
};
|
|
1310
|
+
type TextVariant = ValueOf<typeof TextVariant>;
|
|
1311
|
+
declare const TextComponent: {
|
|
1312
|
+
readonly p: "p";
|
|
1313
|
+
readonly b: "b";
|
|
1314
|
+
readonly i: "i";
|
|
1315
|
+
readonly u: "u";
|
|
1316
|
+
readonly abbr: "abbr";
|
|
1317
|
+
readonly cite: "cite";
|
|
1318
|
+
readonly del: "del";
|
|
1319
|
+
readonly em: "em";
|
|
1320
|
+
readonly ins: "ins";
|
|
1321
|
+
readonly kbd: "kbd";
|
|
1322
|
+
readonly mark: "mark";
|
|
1323
|
+
readonly s: "s";
|
|
1324
|
+
readonly samp: "samp";
|
|
1325
|
+
readonly sub: "sub";
|
|
1326
|
+
readonly sup: "sup";
|
|
1327
|
+
};
|
|
1328
|
+
type TextComponent = ValueOf<typeof TextComponent>;
|
|
1329
|
+
/**
|
|
1330
|
+
* Component props.
|
|
1331
|
+
*/
|
|
1332
|
+
interface TextProps extends ComponentProps<'span'> {
|
|
1333
|
+
/** Override component. */
|
|
1334
|
+
as?: TextComponent;
|
|
1335
|
+
/** Color variant. Either from color palette or hex or rgb strings. */
|
|
1336
|
+
color?: ColorPalette | ProductColorPalette | NeutralColorPalette | string;
|
|
1337
|
+
/** Font family. */
|
|
1338
|
+
fontFamily?: FontFamily;
|
|
1339
|
+
/** Font size. */
|
|
1340
|
+
fontSize?: string;
|
|
1341
|
+
/** Whether the text will truncate with a text overflow ellipsis or wrap. */
|
|
1342
|
+
noWrap?: boolean;
|
|
1343
|
+
/** Variant. */
|
|
1344
|
+
variant?: TextVariant;
|
|
1345
|
+
}
|
|
1346
|
+
type StyledTextProps = Omit<TextProps, 'as' | 'color' | 'fontFamily' | 'fontSize' | 'noWrap' | 'variant'> & {
|
|
1347
|
+
$color: TextProps['color'];
|
|
1348
|
+
$fontFamily?: TextProps['fontFamily'];
|
|
1349
|
+
$fontSize: TextProps['fontSize'];
|
|
1350
|
+
$noWrap: TextProps['noWrap'];
|
|
1351
|
+
$variant: TextProps['variant'];
|
|
1352
|
+
};
|
|
1353
|
+
|
|
1354
|
+
/**
|
|
1355
|
+
* The Text component.
|
|
1356
|
+
*/
|
|
1357
|
+
declare const Text: Comp<TextProps, HTMLDivElement>;
|
|
1358
|
+
|
|
1359
|
+
interface NumberFormatOptions {
|
|
1360
|
+
}
|
|
1361
|
+
/**
|
|
1362
|
+
* Component props.
|
|
1363
|
+
*/
|
|
1364
|
+
interface NumberProps extends Omit<TextProps, 'fontFamily'> {
|
|
1365
|
+
/** Value. */
|
|
1366
|
+
value: number;
|
|
1367
|
+
/** The formatting style to use. */
|
|
1368
|
+
type?: 'decimal' | 'currency' | 'percent' | 'unit';
|
|
1369
|
+
/** Only used when notation is 'compact'. */
|
|
1370
|
+
compactDisplay?: 'short' | 'long';
|
|
1371
|
+
/** The currency to use in currency formatting. Possible values are the ISO 4217 currency codes, such as "USD" for the US dollar, "EUR" for the euro, or "CNY" for the Chinese RMB */
|
|
1372
|
+
currency?: string;
|
|
1373
|
+
/** How to display the currency in currency formatting. */
|
|
1374
|
+
currencyDisplay?: 'symbol' | 'narrowSymbol' | 'code' | 'name';
|
|
1375
|
+
/** In many locales, accounting format means to wrap the number with parentheses instead of appending a minus sign. */
|
|
1376
|
+
currencySign?: 'standard' | 'accounting';
|
|
1377
|
+
/** The locale matching algorithm to use. */
|
|
1378
|
+
localeMatcher?: 'best fit' | 'lookup';
|
|
1379
|
+
/** The formatting that should be displayed for the number. */
|
|
1380
|
+
notation?: 'standard' | 'scientific' | 'engineering' | 'compact';
|
|
1381
|
+
/** Overrides default numbering system for the current locale. */
|
|
1382
|
+
numberingSystem?: string;
|
|
1383
|
+
/** When to display the sign for the number. */
|
|
1384
|
+
signDisplay?: 'auto' | 'always' | 'exceptZero' | 'never';
|
|
1385
|
+
/** The unit to use in unit formatting. */
|
|
1386
|
+
unit?: string;
|
|
1387
|
+
/** The unit formatting style to use in unit formatting. */
|
|
1388
|
+
unitDisplay?: 'long' | 'short' | 'narrow';
|
|
1389
|
+
/** Whether to use grouping separators. */
|
|
1390
|
+
useGrouping?: boolean;
|
|
1391
|
+
/** Options for rounding modes. */
|
|
1392
|
+
roundingMode?: 'ceil' | 'floor' | 'expand' | 'trunc' | 'halfCeil' | 'halfFloor' | 'halfExpand' | 'halfTrunc' | 'halfEven';
|
|
1393
|
+
/** Specify how rounding conflicts will be resolved. */
|
|
1394
|
+
roundingPriority?: 'auto' | 'morePrecision' | 'lessPrecision';
|
|
1395
|
+
/** Specifies the rounding-increment precision. */
|
|
1396
|
+
roundingIncrement?: 1 | 2 | 5 | 10 | 20 | 25 | 50 | 100 | 200 | 250 | 500 | 1000 | 2000 | 2500 | 5000;
|
|
1397
|
+
/** A string expressing the strategy for displaying trailing zeros on whole numbers. */
|
|
1398
|
+
trailingZeroDisplay?: 'auto' | 'stripIfInteger';
|
|
1399
|
+
/** The minimum number of integer digits to use. A value with a smaller number of integer digits than this number will be left-padded with zeros (to the specified length) when formatted. */
|
|
1400
|
+
minimumIntegerDigits?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21;
|
|
1401
|
+
/** The minimum number of fraction digits to use. */
|
|
1402
|
+
minimumFractionDigits?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20;
|
|
1403
|
+
/** The maximum number of fraction digits to use. */
|
|
1404
|
+
maximumFractionDigits?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20;
|
|
1405
|
+
/** The minimum number of significant digits to use. */
|
|
1406
|
+
minimumSignificantDigits?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21;
|
|
1407
|
+
/** The maximum number of significant digits to use. */
|
|
1408
|
+
maximumSignificantDigits?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21;
|
|
1409
|
+
}
|
|
1410
|
+
type StyledNumberProps = Omit<NumberProps, 'as' | 'color' | 'fontFamily' | 'fontSize' | 'value' | 'variant'> & {
|
|
1411
|
+
$color: NumberProps['color'];
|
|
1412
|
+
$fontSize: NumberProps['fontSize'];
|
|
1413
|
+
$variant: NumberProps['variant'];
|
|
1414
|
+
};
|
|
1415
|
+
|
|
1416
|
+
/**
|
|
1417
|
+
* The Number component.
|
|
1418
|
+
*/
|
|
1419
|
+
declare const Number: Comp<NumberProps, HTMLDivElement>;
|
|
1420
|
+
|
|
1421
|
+
/**
|
|
1422
|
+
* Component props.
|
|
1423
|
+
*/
|
|
1424
|
+
interface PillProps extends ComponentProps<'div'> {
|
|
1425
|
+
/** Whether the badge should automatically break content. */
|
|
1426
|
+
autoBreak?: boolean;
|
|
1427
|
+
/** Color variant. The product colors are available but should only be used to display the Pill in the color of another product. To display a Pill with a color of the current product, use `default`. */
|
|
1428
|
+
color?: DataVizColorPalette | 'white' | 'black' | 'error' | 'warning' | 'success';
|
|
1429
|
+
}
|
|
1430
|
+
type StyledPillProps = Omit<PillProps, 'color' | 'autoBreak'> & {
|
|
1431
|
+
$autoBreak: PillProps['autoBreak'];
|
|
1432
|
+
$color: PillProps['color'];
|
|
1433
|
+
};
|
|
1434
|
+
|
|
1435
|
+
/**
|
|
1436
|
+
* The Pill component.
|
|
1437
|
+
*/
|
|
1438
|
+
declare const Pill: Comp<PillProps, HTMLDivElement>;
|
|
1439
|
+
|
|
967
1440
|
/**
|
|
968
1441
|
* Context props.
|
|
969
1442
|
*/
|
|
@@ -1171,4 +1644,4 @@ type StyledSpinnerProps = Omit<SpinnerProps, 'color'> & {
|
|
|
1171
1644
|
*/
|
|
1172
1645
|
declare const Spinner: Comp<SpinnerProps, HTMLImageElement>;
|
|
1173
1646
|
|
|
1174
|
-
export { AppBar, AppBarProps, AppContainer, AppContainerContext, AppContainerProps, AppContainerState, AppContent, AppContentProps, AppSidePanel, AppSidePanelProps, Badge, BadgeProps, BadgeVariant, BreadcrumbItem, BreadcrumbItemProps, Breadcrumbs, BreadcrumbsProps, Button, ButtonColor, ButtonLink, ButtonLinkProps, ButtonProps, ButtonVariant, Checkbox, CheckboxGroup, CheckboxGroupOrientation, CheckboxGroupProps, CheckboxGroupState, CheckboxProps, ColorPalette, Comp, Falsy, Icon, IconButton, IconButtonColor, IconButtonProps, IconButtonVariant, IconProps, IconSize, Link, LinkButton, LinkButtonProps, LinkProps, Menu, MenuBarItems, MenuItem, ProductColorPalette, Radio, RadioGroup, RadioGroupOrientation, RadioGroupProps, RadioGroupState, RadioProps, RedsiftAppBarColorBackground, RedsiftAppBarColorExpandIconBackgroundHover, RedsiftAppBarColorExpandIconHover, RedsiftAppBarColorExpandIconResting, RedsiftAppBarColorText, RedsiftColorDefaultActive, RedsiftColorDefaultActiveHover, RedsiftColorDefaultHover, RedsiftColorDefaultPrimary, RedsiftColorDefaultPrimaryActive, RedsiftColorDefaultSecondary, RedsiftColorErrorActive, RedsiftColorErrorActiveHover, RedsiftColorErrorHover, RedsiftColorErrorPrimary, RedsiftColorErrorPrimaryActive, RedsiftColorErrorSecondary, RedsiftColorHardenizeActive, RedsiftColorHardenizeActiveHover, RedsiftColorHardenizeHover, RedsiftColorHardenizePrimary, RedsiftColorHardenizePrimaryActive, RedsiftColorHardenizeSecondary, RedsiftColorInfoActive, RedsiftColorInfoActiveHover, RedsiftColorInfoHover, RedsiftColorInfoPrimary, RedsiftColorInfoPrimaryActive, RedsiftColorInfoSecondary, RedsiftColorNeutralBlack, RedsiftColorNeutralDarkgrey, RedsiftColorNeutralLightgrey, RedsiftColorNeutralMidgrey, RedsiftColorNeutralWhite, RedsiftColorNeutralXlightgrey, RedsiftColorNoDataActive, RedsiftColorNoDataActiveHover, RedsiftColorNoDataHover, RedsiftColorNoDataPrimary, RedsiftColorNoDataSecondary, RedsiftColorOndmarcActive, RedsiftColorOndmarcActiveHover, RedsiftColorOndmarcHover, RedsiftColorOndmarcPrimary, RedsiftColorOndmarcPrimaryActive, RedsiftColorOndmarcSecondary, RedsiftColorOndomainActive, RedsiftColorOndomainActiveHover, RedsiftColorOndomainHover, RedsiftColorOndomainPrimary, RedsiftColorOndomainPrimaryActive, RedsiftColorOndomainSecondary, RedsiftColorOninboxActive, RedsiftColorOninboxActiveHover, RedsiftColorOninboxHover, RedsiftColorOninboxPrimary, RedsiftColorOninboxPrimaryActive, RedsiftColorOninboxSecondary, RedsiftColorQuestionActive, RedsiftColorQuestionActiveHover, RedsiftColorQuestionHover, RedsiftColorQuestionPrimary, RedsiftColorQuestionSecondary, RedsiftColorSuccessActive, RedsiftColorSuccessActiveHover, RedsiftColorSuccessHover, RedsiftColorSuccessPrimary, RedsiftColorSuccessPrimaryActive, RedsiftColorSuccessSecondary, RedsiftColorToolsActive, RedsiftColorToolsActiveHover, RedsiftColorToolsHover, RedsiftColorToolsPrimary, RedsiftColorToolsPrimaryActive, RedsiftColorToolsSecondary, RedsiftColorWarningActive, RedsiftColorWarningActiveHover, RedsiftColorWarningHover, RedsiftColorWarningPrimary, RedsiftColorWarningSecondary, RedsiftColorWebsiteActive, RedsiftColorWebsiteActiveHover, RedsiftColorWebsiteHover, RedsiftColorWebsitePrimary, RedsiftColorWebsitePrimaryActive, RedsiftColorWebsiteSecondary, RedsiftDataVizColorBlueDark, RedsiftDataVizColorBlueDarker, RedsiftDataVizColorBlueDefault, RedsiftDataVizColorBlueLight, RedsiftDataVizColorBlueLighter, RedsiftDataVizColorBrownDark, RedsiftDataVizColorBrownDarker, RedsiftDataVizColorBrownDefault, RedsiftDataVizColorBrownLight, RedsiftDataVizColorBrownLighter, RedsiftDataVizColorCyanDark, RedsiftDataVizColorCyanDarker, RedsiftDataVizColorCyanDefault, RedsiftDataVizColorCyanLight, RedsiftDataVizColorCyanLighter, RedsiftDataVizColorGreenDark, RedsiftDataVizColorGreenDarker, RedsiftDataVizColorGreenDefault, RedsiftDataVizColorGreenLight, RedsiftDataVizColorGreenLighter, RedsiftDataVizColorGreyDark, RedsiftDataVizColorGreyDarker, RedsiftDataVizColorGreyDefault, RedsiftDataVizColorGreyLight, RedsiftDataVizColorGreyLighter, RedsiftDataVizColorOrangeDark, RedsiftDataVizColorOrangeDarker, RedsiftDataVizColorOrangeDefault, RedsiftDataVizColorOrangeLight, RedsiftDataVizColorOrangeLighter, RedsiftDataVizColorPinkDark, RedsiftDataVizColorPinkDarker, RedsiftDataVizColorPinkDefault, RedsiftDataVizColorPinkLight, RedsiftDataVizColorPinkLighter, RedsiftDataVizColorPurpleDark, RedsiftDataVizColorPurpleDarker, RedsiftDataVizColorPurpleDefault, RedsiftDataVizColorPurpleLight, RedsiftDataVizColorPurpleLighter, RedsiftDataVizColorRedDark, RedsiftDataVizColorRedDarker, RedsiftDataVizColorRedDefault, RedsiftDataVizColorRedLight, RedsiftDataVizColorRedLighter, RedsiftDataVizColorYellowDark, RedsiftDataVizColorYellowDarker, RedsiftDataVizColorYellowDefault, RedsiftDataVizColorYellowLight, RedsiftDataVizColorYellowLighter, RedsiftSideNavigationColorBackground, RedsiftSideNavigationColorMenuItemActive, RedsiftSideNavigationColorMenuItemBackgroundActive, RedsiftSideNavigationColorMenuItemBackgroundHover, RedsiftSideNavigationColorMenuItemBackgroundSecondary, RedsiftSideNavigationColorMenuItemTextDisabled, RedsiftSideNavigationColorMenuItemTextHover, RedsiftSideNavigationColorMenuItemTextResting, RedsiftSideNavigationColorScrollbarHover, RedsiftSideNavigationColorScrollbarResting, RedsiftTypographyBadgeFontFamily, RedsiftTypographyBadgeFontSize, RedsiftTypographyBadgeFontWeight, RedsiftTypographyBadgeLineHeight, RedsiftTypographyBodyFontFamily, RedsiftTypographyBodyFontSize, RedsiftTypographyBodyFontWeight, RedsiftTypographyBodyLineHeight, RedsiftTypographyButtonFontFamily, RedsiftTypographyButtonFontSize, RedsiftTypographyButtonFontWeight, RedsiftTypographyButtonLineHeight, RedsiftTypographyButtonTextTransform, RedsiftTypographyCaptionFontFamily, RedsiftTypographyCaptionFontSize, RedsiftTypographyCaptionFontWeight, RedsiftTypographyCaptionLineHeight, RedsiftTypographyChipFontFamily, RedsiftTypographyChipFontSize, RedsiftTypographyChipFontWeight, RedsiftTypographyChipLineHeight, RedsiftTypographyFontFamilyElectrolize, RedsiftTypographyFontFamilyRaleway, RedsiftTypographyFontFamilySourceCodePro, RedsiftTypographyFontWeightBold, RedsiftTypographyFontWeightMedium, RedsiftTypographyFontWeightRegular, RedsiftTypographyFontWeightSemiBold, RedsiftTypographyH1FontFamily, RedsiftTypographyH1FontSize, RedsiftTypographyH1FontWeight, RedsiftTypographyH1LineHeight, RedsiftTypographyH1TextTransform, RedsiftTypographyH2FontFamily, RedsiftTypographyH2FontSize, RedsiftTypographyH2FontWeight, RedsiftTypographyH2LineHeight, RedsiftTypographyH3FontFamily, RedsiftTypographyH3FontSize, RedsiftTypographyH3FontWeight, RedsiftTypographyH3LineHeight, RedsiftTypographyH4FontFamily, RedsiftTypographyH4FontSize, RedsiftTypographyH4FontWeight, RedsiftTypographyH4LineHeight, RedsiftTypographyHelperFontFamily, RedsiftTypographyHelperFontSize, RedsiftTypographyHelperFontWeight, RedsiftTypographyHelperLineHeight, RedsiftTypographyInputTextFontFamily, RedsiftTypographyInputTextFontSize, RedsiftTypographyInputTextFontWeight, RedsiftTypographyInputTextLineHeight, RedsiftTypographyLinkFontFamily, RedsiftTypographyLinkFontSize, RedsiftTypographyLinkFontWeight, RedsiftTypographyLinkLineHeight, RedsiftTypographySubtitleFontFamily, RedsiftTypographySubtitleFontSize, RedsiftTypographySubtitleFontWeight, RedsiftTypographySubtitleLineHeight, Shield, ShieldProps, ShieldVariant, SideNavigationMenu, SideNavigationMenuBar, SideNavigationMenuBarContextProps, SideNavigationMenuBarProps, SideNavigationMenuContextProps, SideNavigationMenuItem, SideNavigationMenuItemProps, SideNavigationMenuProps, SideNavigationMenuReducerAction, SideNavigationMenuReducerActionType, SideNavigationMenuReducerState, Spinner, SpinnerColor, SpinnerProps, SpinnerSize, StyledAppBarProps, StyledAppContainerProps, StyledAppContentProps, StyledAppSidePanelProps, StyledBadgeProps, StyledBreadcrumbItemProps, StyledBreadcrumbsProps, StyledButton, StyledButtonLinkProps, StyledButtonProps, StyledCheckboxGroupProps, StyledCheckboxProps, StyledIconButtonProps, StyledIconProps, StyledLink, StyledLinkButtonProps, StyledLinkProps, StyledRadioGroupProps, StyledRadioProps, StyledShieldProps, StyledSideNavigationMenuBarProps, StyledSideNavigationMenuItemProps, StyledSideNavigationMenuProps, StyledSpinnerProps, UseSideNavigationMenuBarProps, ValueOf, useAppSidePanel, useSideNavigationMenuBar, warnIfNoAccessibleLabelFound };
|
|
1647
|
+
export { AppBar, AppBarProps, AppContainer, AppContainerContext, AppContainerProps, AppContainerState, AppContent, AppContentProps, AppSidePanel, AppSidePanelProps, Badge, BadgeProps, BadgeVariant, BreadcrumbItem, BreadcrumbItemProps, Breadcrumbs, BreadcrumbsProps, Button, ButtonColor, ButtonLink, ButtonLinkProps, ButtonProps, ButtonVariant, Checkbox, CheckboxGroup, CheckboxGroupOrientation, CheckboxGroupProps, CheckboxGroupState, CheckboxProps, ColorPalette, Comp, DataVizColorPalette, Falsy, Flexbox, FlexboxAlignContent, FlexboxAlignItems, FlexboxAlignSelf, FlexboxFlexDirection, FlexboxFlexWrap, FlexboxJustifyContent, FlexboxProps, FontFamily, Grid, GridAlignContent, GridAlignItems, GridItem, GridItemAlignSelf, GridItemJustifySelf, GridItemProps, GridJustifyContent, GridJustifyItems, GridProps, Heading, HeadingProps, HeadingVariant, Icon, IconButton, IconButtonColor, IconButtonProps, IconButtonVariant, IconProps, IconSize, Link, LinkButton, LinkButtonProps, LinkProps, Menu, MenuBarItems, MenuItem, NeutralColorPalette, Number, NumberFormatOptions, NumberProps, Pill, PillProps, ProductColorPalette, Radio, RadioGroup, RadioGroupOrientation, RadioGroupProps, RadioGroupState, RadioProps, RedsiftAppBarColorBackground, RedsiftAppBarColorExpandIconBackgroundHover, RedsiftAppBarColorExpandIconHover, RedsiftAppBarColorExpandIconResting, RedsiftAppBarColorText, RedsiftColorDefaultActive, RedsiftColorDefaultActiveHover, RedsiftColorDefaultHover, RedsiftColorDefaultPrimary, RedsiftColorDefaultPrimaryActive, RedsiftColorDefaultSecondary, RedsiftColorErrorActive, RedsiftColorErrorActiveHover, RedsiftColorErrorHover, RedsiftColorErrorPrimary, RedsiftColorErrorPrimaryActive, RedsiftColorErrorSecondary, RedsiftColorHardenizeActive, RedsiftColorHardenizeActiveHover, RedsiftColorHardenizeHover, RedsiftColorHardenizePrimary, RedsiftColorHardenizePrimaryActive, RedsiftColorHardenizeSecondary, RedsiftColorInfoActive, RedsiftColorInfoActiveHover, RedsiftColorInfoHover, RedsiftColorInfoPrimary, RedsiftColorInfoPrimaryActive, RedsiftColorInfoSecondary, RedsiftColorNeutralBlack, RedsiftColorNeutralDarkgrey, RedsiftColorNeutralLightgrey, RedsiftColorNeutralMidgrey, RedsiftColorNeutralWhite, RedsiftColorNeutralXlightgrey, RedsiftColorNoDataActive, RedsiftColorNoDataActiveHover, RedsiftColorNoDataHover, RedsiftColorNoDataPrimary, RedsiftColorNoDataSecondary, RedsiftColorOndmarcActive, RedsiftColorOndmarcActiveHover, RedsiftColorOndmarcHover, RedsiftColorOndmarcPrimary, RedsiftColorOndmarcPrimaryActive, RedsiftColorOndmarcSecondary, RedsiftColorOndomainActive, RedsiftColorOndomainActiveHover, RedsiftColorOndomainHover, RedsiftColorOndomainPrimary, RedsiftColorOndomainPrimaryActive, RedsiftColorOndomainSecondary, RedsiftColorOninboxActive, RedsiftColorOninboxActiveHover, RedsiftColorOninboxHover, RedsiftColorOninboxPrimary, RedsiftColorOninboxPrimaryActive, RedsiftColorOninboxSecondary, RedsiftColorQuestionActive, RedsiftColorQuestionActiveHover, RedsiftColorQuestionHover, RedsiftColorQuestionPrimary, RedsiftColorQuestionSecondary, RedsiftColorSuccessActive, RedsiftColorSuccessActiveHover, RedsiftColorSuccessHover, RedsiftColorSuccessPrimary, RedsiftColorSuccessPrimaryActive, RedsiftColorSuccessSecondary, RedsiftColorToolsActive, RedsiftColorToolsActiveHover, RedsiftColorToolsHover, RedsiftColorToolsPrimary, RedsiftColorToolsPrimaryActive, RedsiftColorToolsSecondary, RedsiftColorWarningActive, RedsiftColorWarningActiveHover, RedsiftColorWarningHover, RedsiftColorWarningPrimary, RedsiftColorWarningSecondary, RedsiftColorWebsiteActive, RedsiftColorWebsiteActiveHover, RedsiftColorWebsiteHover, RedsiftColorWebsitePrimary, RedsiftColorWebsitePrimaryActive, RedsiftColorWebsiteSecondary, RedsiftDataVizColorBlueDark, RedsiftDataVizColorBlueDarker, RedsiftDataVizColorBlueDefault, RedsiftDataVizColorBlueLight, RedsiftDataVizColorBlueLighter, RedsiftDataVizColorBrownDark, RedsiftDataVizColorBrownDarker, RedsiftDataVizColorBrownDefault, RedsiftDataVizColorBrownLight, RedsiftDataVizColorBrownLighter, RedsiftDataVizColorCyanDark, RedsiftDataVizColorCyanDarker, RedsiftDataVizColorCyanDefault, RedsiftDataVizColorCyanLight, RedsiftDataVizColorCyanLighter, RedsiftDataVizColorGreenDark, RedsiftDataVizColorGreenDarker, RedsiftDataVizColorGreenDefault, RedsiftDataVizColorGreenLight, RedsiftDataVizColorGreenLighter, RedsiftDataVizColorGreyDark, RedsiftDataVizColorGreyDarker, RedsiftDataVizColorGreyDefault, RedsiftDataVizColorGreyLight, RedsiftDataVizColorGreyLighter, RedsiftDataVizColorOrangeDark, RedsiftDataVizColorOrangeDarker, RedsiftDataVizColorOrangeDefault, RedsiftDataVizColorOrangeLight, RedsiftDataVizColorOrangeLighter, RedsiftDataVizColorPinkDark, RedsiftDataVizColorPinkDarker, RedsiftDataVizColorPinkDefault, RedsiftDataVizColorPinkLight, RedsiftDataVizColorPinkLighter, RedsiftDataVizColorPurpleDark, RedsiftDataVizColorPurpleDarker, RedsiftDataVizColorPurpleDefault, RedsiftDataVizColorPurpleLight, RedsiftDataVizColorPurpleLighter, RedsiftDataVizColorRedDark, RedsiftDataVizColorRedDarker, RedsiftDataVizColorRedDefault, RedsiftDataVizColorRedLight, RedsiftDataVizColorRedLighter, RedsiftDataVizColorYellowDark, RedsiftDataVizColorYellowDarker, RedsiftDataVizColorYellowDefault, RedsiftDataVizColorYellowLight, RedsiftDataVizColorYellowLighter, RedsiftSideNavigationColorBackground, RedsiftSideNavigationColorMenuItemActive, RedsiftSideNavigationColorMenuItemBackgroundActive, RedsiftSideNavigationColorMenuItemBackgroundHover, RedsiftSideNavigationColorMenuItemBackgroundSecondary, RedsiftSideNavigationColorMenuItemTextDisabled, RedsiftSideNavigationColorMenuItemTextHover, RedsiftSideNavigationColorMenuItemTextResting, RedsiftSideNavigationColorScrollbarHover, RedsiftSideNavigationColorScrollbarResting, RedsiftTypographyBadgeFontFamily, RedsiftTypographyBadgeFontSize, RedsiftTypographyBadgeFontWeight, RedsiftTypographyBadgeLineHeight, RedsiftTypographyBodyFontFamily, RedsiftTypographyBodyFontSize, RedsiftTypographyBodyFontWeight, RedsiftTypographyBodyLineHeight, RedsiftTypographyBodyTextTransform, RedsiftTypographyButtonFontFamily, RedsiftTypographyButtonFontSize, RedsiftTypographyButtonFontWeight, RedsiftTypographyButtonLineHeight, RedsiftTypographyButtonTextTransform, RedsiftTypographyCaptionFontFamily, RedsiftTypographyCaptionFontSize, RedsiftTypographyCaptionFontWeight, RedsiftTypographyCaptionLineHeight, RedsiftTypographyCaptionTextTransform, RedsiftTypographyChipFontFamily, RedsiftTypographyChipFontSize, RedsiftTypographyChipFontWeight, RedsiftTypographyChipLineHeight, RedsiftTypographyFontFamilyElectrolize, RedsiftTypographyFontFamilyRaleway, RedsiftTypographyFontFamilySourceCodePro, RedsiftTypographyFontWeightBold, RedsiftTypographyFontWeightMedium, RedsiftTypographyFontWeightRegular, RedsiftTypographyFontWeightSemiBold, RedsiftTypographyH1FontFamily, RedsiftTypographyH1FontSize, RedsiftTypographyH1FontWeight, RedsiftTypographyH1LineHeight, RedsiftTypographyH1TextTransform, RedsiftTypographyH2FontFamily, RedsiftTypographyH2FontSize, RedsiftTypographyH2FontWeight, RedsiftTypographyH2LineHeight, RedsiftTypographyH2TextTransform, RedsiftTypographyH3FontFamily, RedsiftTypographyH3FontSize, RedsiftTypographyH3FontWeight, RedsiftTypographyH3LineHeight, RedsiftTypographyH3TextTransform, RedsiftTypographyH4FontFamily, RedsiftTypographyH4FontSize, RedsiftTypographyH4FontWeight, RedsiftTypographyH4LineHeight, RedsiftTypographyH4TextTransform, RedsiftTypographyHelperFontFamily, RedsiftTypographyHelperFontSize, RedsiftTypographyHelperFontWeight, RedsiftTypographyHelperLineHeight, RedsiftTypographyInputTextFontFamily, RedsiftTypographyInputTextFontSize, RedsiftTypographyInputTextFontWeight, RedsiftTypographyInputTextLineHeight, RedsiftTypographyLinkFontFamily, RedsiftTypographyLinkFontSize, RedsiftTypographyLinkFontWeight, RedsiftTypographyLinkLineHeight, RedsiftTypographyPillFontFamily, RedsiftTypographyPillFontSize, RedsiftTypographyPillFontWeight, RedsiftTypographyPillLineHeight, RedsiftTypographySubtitleFontFamily, RedsiftTypographySubtitleFontSize, RedsiftTypographySubtitleFontWeight, RedsiftTypographySubtitleLineHeight, RedsiftTypographySubtitleTextTransform, Shield, ShieldProps, ShieldVariant, SideNavigationMenu, SideNavigationMenuBar, SideNavigationMenuBarContextProps, SideNavigationMenuBarProps, SideNavigationMenuContextProps, SideNavigationMenuItem, SideNavigationMenuItemProps, SideNavigationMenuProps, SideNavigationMenuReducerAction, SideNavigationMenuReducerActionType, SideNavigationMenuReducerState, Spinner, SpinnerColor, SpinnerProps, SpinnerSize, StyledAppBarProps, StyledAppContainerProps, StyledAppContentProps, StyledAppSidePanelProps, StyledBadgeProps, StyledBreadcrumbItemProps, StyledBreadcrumbsProps, StyledButton, StyledButtonLinkProps, StyledButtonProps, StyledCheckboxGroupProps, StyledCheckboxProps, StyledFlexboxProps, StyledGridItemProps, StyledGridProps, StyledHeadingProps, StyledIconButtonProps, StyledIconProps, StyledLink, StyledLinkButtonProps, StyledLinkProps, StyledNumberProps, StyledPillProps, StyledRadioGroupProps, StyledRadioProps, StyledShieldProps, StyledSideNavigationMenuBarProps, StyledSideNavigationMenuItemProps, StyledSideNavigationMenuProps, StyledSpinnerProps, StyledTextProps, Text, TextComponent, TextProps, TextVariant, UseSideNavigationMenuBarProps, ValueOf, useAppSidePanel, useSideNavigationMenuBar, useWindowSize, warnIfNoAccessibleLabelFound };
|