@hyphen/hyphen-components 7.3.2 → 7.3.4
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/css/utilities.css +1 -1
- package/dist/css/variables.css +18 -28
- package/dist/hyphen-components.cjs.development.js +5873 -5019
- package/dist/hyphen-components.cjs.development.js.map +1 -1
- package/dist/hyphen-components.cjs.production.min.js +18 -2
- package/dist/hyphen-components.cjs.production.min.js.map +1 -1
- package/dist/hyphen-components.esm.js +5731 -4844
- package/dist/hyphen-components.esm.js.map +1 -1
- package/dist/index.d.ts +2799 -57
- package/dist/index.js +0 -1
- package/package.json +18 -19
- package/src/components/Badge/Badge.module.scss +6 -0
- package/src/components/Badge/Badge.stories.tsx +1 -0
- package/src/components/Badge/Badge.test.tsx +3 -2
- package/src/components/Badge/Badge.tsx +5 -3
- package/src/components/Box/Box.tsx +5 -2
- package/src/components/Button/Button.module.scss +1 -1
- package/src/components/Button/Button.test.tsx +2 -2
- package/src/components/Calendar/Calendar.test.tsx +262 -0
- package/src/components/Card/Card.tsx +2 -0
- package/src/components/CheckboxInput/components/Checkbox.module.scss +1 -1
- package/src/components/CheckboxInput/components/Checkbox.tsx +2 -0
- package/src/components/Details/Details.module.scss +2 -2
- package/src/components/Details/Details.tsx +2 -0
- package/src/components/Drawer/Drawer.stories.tsx +1 -1
- package/src/components/Drawer/Drawer.test.tsx +494 -56
- package/src/components/Drawer/Drawer.tsx +7 -1
- package/src/components/DropdownMenu/DropdownMenu.test.tsx +532 -12
- package/src/components/FormControl/FormControl.tsx +2 -0
- package/src/components/Formik/Formik.stories.tsx +30 -7
- package/src/components/Formik/FormikSelectInput/FormikSelectInput.tsx +6 -5
- package/src/components/Formik/FormikToggleGroup/FormikToggleGroup.tsx +1 -1
- package/src/components/HelpText/HelpText.tsx +2 -0
- package/src/components/Icon/Icon.stories.tsx +1 -1
- package/src/components/Icon/Icon.tsx +2 -0
- package/src/components/Modal/Modal.test.tsx +630 -81
- package/src/components/Modal/Modal.tsx +2 -0
- package/src/components/Modal/components/ModalFooter/ModalFooter.test.tsx +2 -2
- package/src/components/Popover/Popover.tsx +2 -0
- package/src/components/RadioGroup/RadioInput/RadioInput.tsx +2 -0
- package/src/components/SelectInput/SelectInput.stories.tsx +22 -22
- package/src/components/SelectInput/SelectInput.tsx +13 -9
- package/src/components/SelectInputInset/SelectInputInset.tsx +2 -0
- package/src/components/Sidebar/Sidebar.module.scss +4 -0
- package/src/components/Sidebar/Sidebar.stories.tsx +8 -4
- package/src/components/Sidebar/Sidebar.test.tsx +7 -4
- package/src/components/Sidebar/Sidebar.tsx +7 -4
- package/src/components/Table/Table.stories.tsx +102 -52
- package/src/components/TextInput/TextInput.tsx +2 -0
- package/src/components/TextInputInset/TextInputInset.tsx +2 -0
- package/src/components/TextareaInputInset/TextareaInputInset.tsx +2 -0
- package/src/components/TimePickerNative/TimePickerNative.stories.tsx +0 -1
- package/src/components/Toast/Toast.store.ts +1 -1
- package/src/components/Toast/Toast.stories.tsx +3 -2
- package/src/components/Toast/Toast.test.tsx +8 -6
- package/src/components/Toggle/Toggle.tsx +2 -0
- package/src/components/ToggleGroup/ToggleGroup.tsx +2 -0
- package/src/docs/Colors.mdx +0 -13
- package/src/index.ts +2 -0
- package/src/lib/getColumnKeys.ts +3 -3
- package/src/lib/mergeRefs.ts +1 -1
- package/src/lib/tokens.ts +4 -4
- package/dist/components/Alert/Alert.constants.d.ts +0 -8
- package/dist/components/Alert/Alert.d.ts +0 -42
- package/dist/components/Alert/Alert.stories.d.ts +0 -12
- package/dist/components/Alert/Alert.types.d.ts +0 -7
- package/dist/components/AspectRatio/AspectRatio.d.ts +0 -3
- package/dist/components/AspectRatio/AspectRatio.stories.d.ts +0 -6
- package/dist/components/Badge/Badge.d.ts +0 -24
- package/dist/components/Badge/Badge.stories.d.ts +0 -8
- package/dist/components/Box/Box.d.ts +0 -247
- package/dist/components/Box/Box.stories.d.ts +0 -46
- package/dist/components/Button/Button.constants.d.ts +0 -3
- package/dist/components/Button/Button.d.ts +0 -53
- package/dist/components/Button/Button.stories.d.ts +0 -16
- package/dist/components/Calendar/Calendar.d.ts +0 -7
- package/dist/components/Calendar/Calendar.stories.d.ts +0 -12
- package/dist/components/Card/Card.d.ts +0 -17
- package/dist/components/Card/Card.stories.d.ts +0 -8
- package/dist/components/Card/components/CardFooter/CardFooter.d.ts +0 -13
- package/dist/components/Card/components/CardHeader/CardHeader.d.ts +0 -13
- package/dist/components/Card/components/CardSection/CardSection.d.ts +0 -46
- package/dist/components/Card/components/index.d.ts +0 -3
- package/dist/components/CheckboxInput/CheckboxInput.d.ts +0 -72
- package/dist/components/CheckboxInput/CheckboxInput.stories.d.ts +0 -18
- package/dist/components/CheckboxInput/components/Checkbox.d.ts +0 -71
- package/dist/components/CheckboxInput/components/CheckboxIcon.d.ts +0 -27
- package/dist/components/Collapsible/Collapsible.d.ts +0 -5
- package/dist/components/Collapsible/Collapsible.stories.d.ts +0 -9
- package/dist/components/Details/Details.d.ts +0 -15
- package/dist/components/Details/Details.stories.d.ts +0 -6
- package/dist/components/Details/DetailsSummary.d.ts +0 -7
- package/dist/components/Drawer/Drawer.d.ts +0 -105
- package/dist/components/Drawer/Drawer.stories.d.ts +0 -62
- package/dist/components/DropdownMenu/DropdownMenu.d.ts +0 -25
- package/dist/components/DropdownMenu/DropdownMenu.stories.d.ts +0 -9
- package/dist/components/FormControl/FormControl.d.ts +0 -38
- package/dist/components/FormLabel/FormLabel.d.ts +0 -41
- package/dist/components/FormLabel/FormLabel.stories.d.ts +0 -6
- package/dist/components/Formik/Formik.stories.d.ts +0 -18
- package/dist/components/Formik/FormikCheckboxInput/FormikCheckboxInput.d.ts +0 -12
- package/dist/components/Formik/FormikRadioGroup/FormikRadioGroup.d.ts +0 -12
- package/dist/components/Formik/FormikSelectInput/FormikSelectInput.d.ts +0 -13
- package/dist/components/Formik/FormikSelectInputInset/FormikSelectInputInset.d.ts +0 -12
- package/dist/components/Formik/FormikSelectInputNative/FormikSelectInputNative.d.ts +0 -12
- package/dist/components/Formik/FormikSwitch/FormikSwitch.d.ts +0 -12
- package/dist/components/Formik/FormikTextInput/FormikTextInput.d.ts +0 -12
- package/dist/components/Formik/FormikTextInputInset/FormikTextInputInset.d.ts +0 -12
- package/dist/components/Formik/FormikTextareaInput/FormikTextareaInput.d.ts +0 -12
- package/dist/components/Formik/FormikTextareaInputInset/FormikTextareaInputInset.d.ts +0 -12
- package/dist/components/Formik/FormikTimePicker/FormikTimePicker.d.ts +0 -12
- package/dist/components/Formik/FormikTimePickerNative/FormikTimePickerNative.d.ts +0 -12
- package/dist/components/Formik/FormikToggleGroup/FormikToggleGroup.d.ts +0 -20
- package/dist/components/Formik/FormikToggleGroupMulti/FormikToggleGroupMulti.d.ts +0 -18
- package/dist/components/Heading/Heading.constants.d.ts +0 -10
- package/dist/components/Heading/Heading.d.ts +0 -35
- package/dist/components/Heading/Heading.stories.d.ts +0 -9
- package/dist/components/HelpText/HelpText.d.ts +0 -12
- package/dist/components/Icon/Icon.d.ts +0 -22
- package/dist/components/Icon/Icon.stories.d.ts +0 -10
- package/dist/components/InputValidationMessage/InputValidationMessage.d.ts +0 -9
- package/dist/components/Modal/Modal.d.ts +0 -83
- package/dist/components/Modal/Modal.stories.d.ts +0 -13
- package/dist/components/Modal/components/ModalBody/ModalBody.d.ts +0 -4
- package/dist/components/Modal/components/ModalFooter/ModalFooter.d.ts +0 -4
- package/dist/components/Modal/components/ModalHeader/ModalHeader.d.ts +0 -21
- package/dist/components/Modal/components/index.d.ts +0 -4
- package/dist/components/Pagination/Pagination.d.ts +0 -51
- package/dist/components/Pagination/Pagination.stories.d.ts +0 -8
- package/dist/components/Pagination/Pagination.utilities.d.ts +0 -10
- package/dist/components/Popover/Popover.d.ts +0 -8
- package/dist/components/Popover/Popover.stories.d.ts +0 -7
- package/dist/components/RadioGroup/RadioGroup.d.ts +0 -75
- package/dist/components/RadioGroup/RadioGroup.stories.d.ts +0 -16
- package/dist/components/RadioGroup/RadioInput/RadioInput.d.ts +0 -57
- package/dist/components/RadioGroup/RadioInput/RadioInputIcon.d.ts +0 -27
- package/dist/components/RangeInput/RangeInput.d.ts +0 -29
- package/dist/components/RangeInput/RangeInput.stories.d.ts +0 -7
- package/dist/components/ResponsiveProvider/ResponsiveProvider.d.ts +0 -17
- package/dist/components/ResponsiveProvider/ResponsiveProvider.stories.d.ts +0 -7
- package/dist/components/SelectInput/SelectInput.d.ts +0 -148
- package/dist/components/SelectInput/SelectInput.stories.d.ts +0 -24
- package/dist/components/SelectInputInset/SelectInputInset.d.ts +0 -92
- package/dist/components/SelectInputInset/SelectInputInset.stories.d.ts +0 -12
- package/dist/components/SelectInputNative/SelectInputNative.d.ts +0 -45
- package/dist/components/SelectInputNative/SelectInputNative.stories.d.ts +0 -19
- package/dist/components/Sidebar/Sidebar.d.ts +0 -57
- package/dist/components/Sidebar/Sidebar.stories.d.ts +0 -9
- package/dist/components/Spinner/Spinner.d.ts +0 -12
- package/dist/components/Spinner/Spinner.stories.d.ts +0 -8
- package/dist/components/Switch/Switch.d.ts +0 -64
- package/dist/components/Switch/Switch.stories.d.ts +0 -12
- package/dist/components/Table/Table.d.ts +0 -86
- package/dist/components/Table/Table.stories.d.ts +0 -31
- package/dist/components/Table/TableBody/TableBody.d.ts +0 -52
- package/dist/components/Table/TableBody/TableBodyCell/TableBodyCell.d.ts +0 -45
- package/dist/components/Table/TableHead/TableHead.d.ts +0 -46
- package/dist/components/Table/TableHead/TableHeaderCell/TableHeaderCell.d.ts +0 -65
- package/dist/components/Table/common/TableRow/TableRow.d.ts +0 -67
- package/dist/components/TextInput/TextInput.d.ts +0 -106
- package/dist/components/TextInput/TextInput.stories.d.ts +0 -19
- package/dist/components/TextInputInset/TextInputInset.d.ts +0 -102
- package/dist/components/TextInputInset/TextInputInset.stories.d.ts +0 -13
- package/dist/components/TextareaInput/TextareaInput.d.ts +0 -97
- package/dist/components/TextareaInput/TextareaInput.stories.d.ts +0 -23
- package/dist/components/TextareaInputInset/TextareaInputInset.d.ts +0 -105
- package/dist/components/TextareaInputInset/TextareaInputInset.stories.d.ts +0 -12
- package/dist/components/ThemeProvider/ThemeProvider.d.ts +0 -15
- package/dist/components/ThemeProvider/ThemeProvider.stories.d.ts +0 -6
- package/dist/components/TimePicker/TimePicker.d.ts +0 -35
- package/dist/components/TimePicker/TimePicker.stories.d.ts +0 -12
- package/dist/components/TimePickerNative/TimePickerNative.d.ts +0 -39
- package/dist/components/TimePickerNative/TimePickerNative.stories.d.ts +0 -11
- package/dist/components/Toast/Toast.store.d.ts +0 -36
- package/dist/components/Toast/Toast.stories.d.ts +0 -14
- package/dist/components/Toast/Toast.types.d.ts +0 -75
- package/dist/components/Toast/ToastContainer.d.ts +0 -43
- package/dist/components/Toast/ToastNotification.d.ts +0 -28
- package/dist/components/Toast/index.d.ts +0 -4
- package/dist/components/Toast/toast.d.ts +0 -20
- package/dist/components/Toast/useToasts.d.ts +0 -14
- package/dist/components/Toggle/Toggle.d.ts +0 -7
- package/dist/components/Toggle/Toggle.stories.d.ts +0 -11
- package/dist/components/ToggleGroup/ToggleGroup.d.ts +0 -19
- package/dist/components/ToggleGroup/ToggleGroup.stories.d.ts +0 -12
- package/dist/components/Tooltip/Tooltip.d.ts +0 -8
- package/dist/components/Tooltip/Tooltip.stories.d.ts +0 -8
- package/dist/constants/keyCodes.d.ts +0 -2
- package/dist/css/index.css +0 -36
- package/dist/hooks/index.d.ts +0 -6
- package/dist/hooks/useBreakpoint/useBreakpoint.d.ts +0 -9
- package/dist/hooks/useBreakpoint/useBreakpoint.stories.d.ts +0 -6
- package/dist/hooks/useIsMobile/useIsMobile.d.ts +0 -1
- package/dist/hooks/useIsMobile/useIsMobile.stories.d.ts +0 -6
- package/dist/hooks/useIsomorphicLayoutEffect/useIsomorphicLayoutEffect.d.ts +0 -2
- package/dist/hooks/useOpenClose/useOpenClose.d.ts +0 -39
- package/dist/hooks/useOpenClose/useOpenClose.stories.d.ts +0 -6
- package/dist/hooks/useTheme/useTheme.d.ts +0 -5
- package/dist/hooks/useTheme/useTheme.stories.d.ts +0 -6
- package/dist/hooks/useWindowSize/useWindowSize.d.ts +0 -7
- package/dist/hooks/useWindowSize/useWindowSize.stories.d.ts +0 -6
- package/dist/lib/cssShorthandToClasses.d.ts +0 -4
- package/dist/lib/doesStringIncludeCssUnit.d.ts +0 -1
- package/dist/lib/generateResponsiveClasses.d.ts +0 -2
- package/dist/lib/getAutoCompleteValue.d.ts +0 -1
- package/dist/lib/getColumnKeys.d.ts +0 -3
- package/dist/lib/getDimensionCss.d.ts +0 -12
- package/dist/lib/getElementType.d.ts +0 -14
- package/dist/lib/getFlexCss.d.ts +0 -9
- package/dist/lib/index.d.ts +0 -15
- package/dist/lib/isFunction.d.ts +0 -3
- package/dist/lib/mergeRefs.d.ts +0 -2
- package/dist/lib/prefersReducedMotion.d.ts +0 -1
- package/dist/lib/react-children-utilities/filter.d.ts +0 -3
- package/dist/lib/react-children-utilities/index.d.ts +0 -1
- package/dist/lib/reactRouterClickHandler.d.ts +0 -12
- package/dist/lib/resolveValue.d.ts +0 -3
- package/dist/lib/tokens.d.ts +0 -22
- package/dist/modes.d.ts +0 -8
- package/dist/types/index.d.ts +0 -103
- package/dist/types/lib.types.d.ts +0 -3
|
@@ -90,7 +90,7 @@ const createReducer =
|
|
|
90
90
|
handlers: THandlers
|
|
91
91
|
) =>
|
|
92
92
|
(state: TState = initialState, action: TAction) => {
|
|
93
|
-
if (
|
|
93
|
+
if (Object.prototype.hasOwnProperty.call(handlers, action.type)) {
|
|
94
94
|
// eslint-disable-line
|
|
95
95
|
return handlers[action.type](state, action);
|
|
96
96
|
}
|
|
@@ -4,6 +4,7 @@ import { ToastContainer, ToastPosition, toast } from './';
|
|
|
4
4
|
import { Button } from '../Button/Button';
|
|
5
5
|
import { Table } from '../Table/Table';
|
|
6
6
|
import { Box } from '../Box/Box';
|
|
7
|
+
import { Cell, Column as ColumnType } from 'src/types';
|
|
7
8
|
|
|
8
9
|
const meta: Meta<typeof ToastContainer> = {
|
|
9
10
|
title: 'Components/Toast',
|
|
@@ -84,12 +85,12 @@ export const Column = () =>
|
|
|
84
85
|
description: 'Whether to render a compact toast (smaller padding)',
|
|
85
86
|
},
|
|
86
87
|
];
|
|
87
|
-
const columnConfig = [
|
|
88
|
+
const columnConfig: ColumnType[] = [
|
|
88
89
|
{ heading: 'Name', dataKey: 'name' },
|
|
89
90
|
{
|
|
90
91
|
heading: 'Type',
|
|
91
92
|
dataKey: 'type',
|
|
92
|
-
render: (cell
|
|
93
|
+
render: (cell?: Cell) => <code style={codePreviewStyle}>{cell}</code>,
|
|
93
94
|
},
|
|
94
95
|
{ heading: 'Description', dataKey: 'description' },
|
|
95
96
|
];
|
|
@@ -258,10 +258,11 @@ describe('Toast', () => {
|
|
|
258
258
|
test('Async Success', async () => {
|
|
259
259
|
render(<ToastContainer />);
|
|
260
260
|
|
|
261
|
-
const myPromise = new Promise(
|
|
261
|
+
const myPromise = new Promise((resolve) => {
|
|
262
262
|
// eslint-disable-line no-async-promise-executor
|
|
263
|
-
|
|
264
|
-
|
|
263
|
+
wait(1000).then(() => {
|
|
264
|
+
resolve('yay');
|
|
265
|
+
});
|
|
265
266
|
});
|
|
266
267
|
|
|
267
268
|
act(() => {
|
|
@@ -287,10 +288,11 @@ describe('Toast', () => {
|
|
|
287
288
|
test('Async Error', async () => {
|
|
288
289
|
render(<ToastContainer />);
|
|
289
290
|
|
|
290
|
-
const myPromise = new Promise(
|
|
291
|
+
const myPromise = new Promise((_resolve, reject) => {
|
|
291
292
|
// eslint-disable-line no-async-promise-executor
|
|
292
|
-
|
|
293
|
-
|
|
293
|
+
wait(1000).then(() => {
|
|
294
|
+
reject('boo'); // eslint-disable-line prefer-promise-reject-errors
|
|
295
|
+
});
|
|
294
296
|
});
|
|
295
297
|
|
|
296
298
|
act(() => {
|
package/src/docs/Colors.mdx
CHANGED
|
@@ -31,19 +31,6 @@ import designTokens from '@hyphen/hyphen-design-tokens/build/json/variables.json
|
|
|
31
31
|
return acc;
|
|
32
32
|
}, {})}
|
|
33
33
|
/>
|
|
34
|
-
<ColorItem
|
|
35
|
-
title="color-base-primary"
|
|
36
|
-
subtitle="Primary"
|
|
37
|
-
colors={Object.keys(designTokens.color.base.primary).reduce(
|
|
38
|
-
(acc, item, i) => {
|
|
39
|
-
acc[item] = Object.keys(designTokens.color.base.primary).map(
|
|
40
|
-
(g) => designTokens.color.base.primary[g].value
|
|
41
|
-
)[i];
|
|
42
|
-
return acc;
|
|
43
|
-
},
|
|
44
|
-
{}
|
|
45
|
-
)}
|
|
46
|
-
/>
|
|
47
34
|
<ColorItem
|
|
48
35
|
title="color-base-red"
|
|
49
36
|
subtitle="Red"
|
package/src/index.ts
CHANGED
package/src/lib/getColumnKeys.ts
CHANGED
|
@@ -5,7 +5,7 @@ import { Column } from '../types';
|
|
|
5
5
|
export const getColumnKeys = (columns: Column[]): Key[] => {
|
|
6
6
|
const INTERNAL_KEY_PREFIX = 'columnKeyPrefix';
|
|
7
7
|
const columnKeys: React.Key[] = [];
|
|
8
|
-
const keys: Record<
|
|
8
|
+
const keys: Record<string, boolean> = {};
|
|
9
9
|
|
|
10
10
|
columns.forEach((column) => {
|
|
11
11
|
const { key, dataKey } = column || {};
|
|
@@ -15,10 +15,10 @@ export const getColumnKeys = (columns: Column[]): Key[] => {
|
|
|
15
15
|
|
|
16
16
|
let mergedKey = key || shapedDataKey || INTERNAL_KEY_PREFIX;
|
|
17
17
|
|
|
18
|
-
while (keys[mergedKey
|
|
18
|
+
while (keys[String(mergedKey)]) {
|
|
19
19
|
mergedKey = `${mergedKey}_next`;
|
|
20
20
|
}
|
|
21
|
-
keys[mergedKey
|
|
21
|
+
keys[String(mergedKey)] = true;
|
|
22
22
|
|
|
23
23
|
columnKeys.push(mergedKey);
|
|
24
24
|
});
|
package/src/lib/mergeRefs.ts
CHANGED
package/src/lib/tokens.ts
CHANGED
|
@@ -93,7 +93,7 @@ export const BORDER_COLOR_OPTIONS = Object.keys(
|
|
|
93
93
|
// export const BORDER_COLOR_VALUES = designTokens.color.border;
|
|
94
94
|
|
|
95
95
|
export const FONT_SIZE_OPTIONS = Object.keys(
|
|
96
|
-
|
|
96
|
+
designTokens.size['font-size']
|
|
97
97
|
) as FontSize[];
|
|
98
98
|
// export const FONT_SIZE_VALUES = Object.values(designTokens.size['font-size']);
|
|
99
99
|
|
|
@@ -103,7 +103,7 @@ export const FONT_FAMILY_OPTIONS = Object.keys(
|
|
|
103
103
|
// export const FONT_FAMILY_VALUES = designTokens.assets['font-family'];
|
|
104
104
|
|
|
105
105
|
export const FONT_WEIGHT_OPTIONS = Object.keys(
|
|
106
|
-
|
|
106
|
+
designTokens.size['font-weight']
|
|
107
107
|
) as FontWeight[];
|
|
108
108
|
// export const FONT_WEIGHT_VALUES = designTokens.size['font-weight'];
|
|
109
109
|
|
|
@@ -112,7 +112,7 @@ export const HEADING_SIZE_OPTIONS = Object.keys(
|
|
|
112
112
|
) as HeadingSize[];
|
|
113
113
|
|
|
114
114
|
export const HEIGHT_OPTIONS = Object.keys(
|
|
115
|
-
|
|
115
|
+
designTokens.size.dimension
|
|
116
116
|
) as HeightSize[];
|
|
117
117
|
// export const HEIGHT_VALUES = designTokens.size.dimension;
|
|
118
118
|
|
|
@@ -127,7 +127,7 @@ export const SPACING_OPTIONS = Object.keys(
|
|
|
127
127
|
// export const SPACING_VALUES = designTokens.size.spacing;
|
|
128
128
|
|
|
129
129
|
export const WIDTH_OPTIONS = Object.keys(
|
|
130
|
-
|
|
130
|
+
designTokens.size.dimension
|
|
131
131
|
) as WidthSize[];
|
|
132
132
|
// export const WIDTH_VALUES = designTokens.size.dimension;
|
|
133
133
|
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
import React, { ReactNode, MouseEvent, KeyboardEvent } from 'react';
|
|
2
|
-
import { AlertVariant } from './Alert.types';
|
|
3
|
-
export interface AlertProps {
|
|
4
|
-
/**
|
|
5
|
-
* Custom class to apply to the alert.
|
|
6
|
-
*/
|
|
7
|
-
className?: string;
|
|
8
|
-
/**
|
|
9
|
-
* Whether the alert as an icon that corresponds to its variant (Success, warning, etc.).
|
|
10
|
-
*/
|
|
11
|
-
hasIcon?: boolean;
|
|
12
|
-
/**
|
|
13
|
-
* Renders a version of the alert with smaller padding.
|
|
14
|
-
*/
|
|
15
|
-
isCompact?: boolean;
|
|
16
|
-
/**
|
|
17
|
-
* @deprecated Use children instead. The text message or ReactNode to be rendered in the alert.
|
|
18
|
-
*/
|
|
19
|
-
message?: string | ReactNode;
|
|
20
|
-
/**
|
|
21
|
-
* Whether the alert can be closed by the user. If `true` it will render
|
|
22
|
-
* the 'close' icon on the right hand side of the alert.
|
|
23
|
-
*/
|
|
24
|
-
onClose?: (event: MouseEvent<HTMLOrSVGElement> | KeyboardEvent<HTMLSpanElement>) => void;
|
|
25
|
-
/**
|
|
26
|
-
* A render function that returns JSX if preferred over a static ReactNode or string.
|
|
27
|
-
*/
|
|
28
|
-
render?: () => ReactNode;
|
|
29
|
-
/**
|
|
30
|
-
* The title for the alert.
|
|
31
|
-
*/
|
|
32
|
-
title?: string;
|
|
33
|
-
/**
|
|
34
|
-
* The type/color of the alert to show.
|
|
35
|
-
*/
|
|
36
|
-
variant?: AlertVariant;
|
|
37
|
-
/**
|
|
38
|
-
* Additional props to be spread to rendered element
|
|
39
|
-
*/
|
|
40
|
-
[x: string]: any;
|
|
41
|
-
}
|
|
42
|
-
export declare const Alert: React.NamedExoticComponent<AlertProps>;
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { Alert } from './Alert';
|
|
2
|
-
import type { Meta, StoryObj } from '@storybook/react-vite';
|
|
3
|
-
import React from 'react';
|
|
4
|
-
declare const meta: Meta<typeof Alert>;
|
|
5
|
-
export default meta;
|
|
6
|
-
type Story = StoryObj<typeof Alert>;
|
|
7
|
-
export declare const Overview: Story;
|
|
8
|
-
export declare const Compact: Story;
|
|
9
|
-
export declare const WithCustomContent: Story;
|
|
10
|
-
export declare const Variants: Story;
|
|
11
|
-
export declare const ClosableAlert: () => React.JSX.Element;
|
|
12
|
-
export declare const Closable: Story;
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
import React, { ReactNode } from 'react';
|
|
2
|
-
import { FontSize, BaseSpacing, ResponsiveProp } from '../../types';
|
|
3
|
-
import { BoxProps } from '../Box/Box';
|
|
4
|
-
export type BadgeSize = 'sm' | 'md' | 'lg';
|
|
5
|
-
export type BadgeVariant = 'light-grey' | 'dark-grey' | 'inverse' | 'green' | 'yellow' | 'blue' | 'red' | 'purple' | 'hyphen';
|
|
6
|
-
export type BadgeSizeAttributes = {
|
|
7
|
-
fontSize: FontSize;
|
|
8
|
-
padding: BaseSpacing;
|
|
9
|
-
};
|
|
10
|
-
export interface BadgeProps extends BoxProps {
|
|
11
|
-
/**
|
|
12
|
-
* @deprecated Use children instead. The text message or ReactNode to be rendered in the badge.
|
|
13
|
-
*/
|
|
14
|
-
message?: string | ReactNode;
|
|
15
|
-
/**
|
|
16
|
-
* The size of the button.
|
|
17
|
-
*/
|
|
18
|
-
size?: BadgeSize | ResponsiveProp<BadgeSize>;
|
|
19
|
-
/**
|
|
20
|
-
* The type/color of the badge to show.
|
|
21
|
-
*/
|
|
22
|
-
variant?: BadgeVariant;
|
|
23
|
-
}
|
|
24
|
-
export declare const Badge: React.ForwardRefExoticComponent<Omit<BadgeProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { Badge } from './Badge';
|
|
2
|
-
import type { Meta, StoryObj } from '@storybook/react-vite';
|
|
3
|
-
declare const meta: Meta<typeof Badge>;
|
|
4
|
-
export default meta;
|
|
5
|
-
type Story = StoryObj<typeof Badge>;
|
|
6
|
-
export declare const Overview: Story;
|
|
7
|
-
export declare const Variants: Story;
|
|
8
|
-
export declare const Sizes: Story;
|
|
@@ -1,247 +0,0 @@
|
|
|
1
|
-
import * as CSS from 'csstype';
|
|
2
|
-
import { BaseSpacing, BorderRadiusSize, BorderSize, BoxShadowSize, CssAlignContentValue, CssAlignItemsValue, CssDisplayValue, CssFlexDirectionValue, CssFlexValue, CssJustifyContentValue, CssOverflowValue, CssTextAlignValue, DimensionSize, FontColor, FontFamily, FontSize, FontWeight, ResponsiveProp, SpacingSize, ZIndexSize, BackgroundColor, BorderColor, CssWhiteSpaceValue, CssWordBreakValue, TextWrap, TextTransform } from '../../types';
|
|
3
|
-
import { CSSProperties, FC, ReactNode } from 'react';
|
|
4
|
-
import { KnownKeys } from '../../types/lib.types';
|
|
5
|
-
export type HoverableBoxProperties = 'color' | 'borderColor' | 'shadow' | 'background';
|
|
6
|
-
export interface BoxProps {
|
|
7
|
-
/**
|
|
8
|
-
* The element type to be rendered.
|
|
9
|
-
*/
|
|
10
|
-
as?: string;
|
|
11
|
-
/**
|
|
12
|
-
* How to align the contents along the cross axis.
|
|
13
|
-
*/
|
|
14
|
-
alignItems?: CssAlignItemsValue | ResponsiveProp<CssAlignItemsValue>;
|
|
15
|
-
/**
|
|
16
|
-
* How to align the contents when there is extra space in the cross axis.
|
|
17
|
-
* This property has no effect when there is only one line of flex items.
|
|
18
|
-
*/
|
|
19
|
-
alignContent?: CssAlignContentValue | ResponsiveProp<CssAlignContentValue>;
|
|
20
|
-
/**
|
|
21
|
-
* How to align along the cross axis when contained in a Box.
|
|
22
|
-
* This allows the default alignment (or the one specified by `align`) to be overridden for the individual Box.
|
|
23
|
-
*/
|
|
24
|
-
alignSelf?: CssAlignItemsValue | ResponsiveProp<CssAlignItemsValue>;
|
|
25
|
-
/**
|
|
26
|
-
* Any valid background color token, or a `url()` for an image
|
|
27
|
-
*/
|
|
28
|
-
background?: BackgroundColor;
|
|
29
|
-
/**
|
|
30
|
-
* Any valid border color token
|
|
31
|
-
*/
|
|
32
|
-
borderColor?: BorderColor;
|
|
33
|
-
/**
|
|
34
|
-
* Width of the Box's border
|
|
35
|
-
* Can be a single [border width token](/?path=/docs/foundation-design-tokens--docs#border-width).
|
|
36
|
-
* Can also be a string of [border width tokens](/?path=/docs/foundation-design-tokens--docs#border-width)
|
|
37
|
-
* that models itself after the css shorthand property,
|
|
38
|
-
* where you can set the border width on all four sides of an element.
|
|
39
|
-
* e.g: "0 sm xs 0" --> top: 0, right: sm, bottom: xs, left: 0;
|
|
40
|
-
*/
|
|
41
|
-
borderWidth?: BorderSize | string | ResponsiveProp<BorderSize | string>;
|
|
42
|
-
/**
|
|
43
|
-
* Additional class names to add
|
|
44
|
-
*/
|
|
45
|
-
className?: string;
|
|
46
|
-
/**
|
|
47
|
-
* The amount of spacing (implemented as margin) between child elements.
|
|
48
|
-
* Can be a single [spacing value](/?path=/docs/foundation-design-tokens--docs#spacing).
|
|
49
|
-
* NOTE: this prop is incompatible with reverse flex direction values (row-reverse, column-reverse).
|
|
50
|
-
* For grid and flex layouts, use 'gap' instead.
|
|
51
|
-
*/
|
|
52
|
-
childGap?: SpacingSize | ResponsiveProp<SpacingSize>;
|
|
53
|
-
/**
|
|
54
|
-
* The box's contents
|
|
55
|
-
*/
|
|
56
|
-
children?: ReactNode;
|
|
57
|
-
/**
|
|
58
|
-
* A color token identifier to use for the text color.
|
|
59
|
-
*/
|
|
60
|
-
color?: FontColor;
|
|
61
|
-
/**
|
|
62
|
-
* Sets the gaps (gutters) between columns.
|
|
63
|
-
*/
|
|
64
|
-
columnGap?: BaseSpacing | ResponsiveProp<BaseSpacing>;
|
|
65
|
-
/**
|
|
66
|
-
* Cursor style. Use any standard CSS value.
|
|
67
|
-
*/
|
|
68
|
-
cursor?: CSS.Property.Cursor;
|
|
69
|
-
/**
|
|
70
|
-
* Sets how flex items are placed inside the Box, defining the main axis and the direction
|
|
71
|
-
* NOTE: reverse directions are incompatible with the `childGap` prop.
|
|
72
|
-
*/
|
|
73
|
-
direction?: CssFlexDirectionValue | ResponsiveProp<CssFlexDirectionValue>;
|
|
74
|
-
/**
|
|
75
|
-
* Display property. Only select values supported.
|
|
76
|
-
*/
|
|
77
|
-
display?: CssDisplayValue | ResponsiveProp<CssDisplayValue>;
|
|
78
|
-
/**
|
|
79
|
-
* Can be used as shorthand for the flexbox css properties `flex-grow`, `flex-shrink`, `flex-basis`
|
|
80
|
-
*/
|
|
81
|
-
flex?: CssFlexValue | ResponsiveProp<CssFlexValue>;
|
|
82
|
-
/**
|
|
83
|
-
* Pass style modifiers for focus states. The following properties can be modified on focus.
|
|
84
|
-
* `* background`
|
|
85
|
-
* `* borderColor`
|
|
86
|
-
* `* borderWidth`
|
|
87
|
-
* `* color`
|
|
88
|
-
* `* shadow`
|
|
89
|
-
*/
|
|
90
|
-
focus?: {
|
|
91
|
-
background?: BoxProps['background'];
|
|
92
|
-
borderColor?: BoxProps['borderColor'];
|
|
93
|
-
borderWidth?: BoxProps['borderWidth'];
|
|
94
|
-
color?: BoxProps['color'];
|
|
95
|
-
shadow?: BoxProps['shadow'];
|
|
96
|
-
};
|
|
97
|
-
/**
|
|
98
|
-
* The [font family token](/?path=/docs/foundation-design-tokens--docs#font-family) identifier for the Box's text
|
|
99
|
-
*/
|
|
100
|
-
fontFamily?: FontFamily | ResponsiveProp<FontFamily>;
|
|
101
|
-
/**
|
|
102
|
-
* The [font size token](/?path=/docs/foundation-design-tokens--docs#font-size) identifier for the Box's text
|
|
103
|
-
*/
|
|
104
|
-
fontSize?: FontSize | ResponsiveProp<FontSize>;
|
|
105
|
-
/**
|
|
106
|
-
* The [font weight token](/?path=/docs/design-tokens-design-tokens--page#font-weight) identifier for the Box's text
|
|
107
|
-
*/
|
|
108
|
-
fontWeight?: FontWeight | ResponsiveProp<FontWeight>;
|
|
109
|
-
/**
|
|
110
|
-
* The height of the element. Can be given a standard css value (px, rem, em, %),
|
|
111
|
-
* or a [height token](/?path=/docs/foundation-design-tokens--docs#height)
|
|
112
|
-
*/
|
|
113
|
-
height?: DimensionSize | ResponsiveProp<DimensionSize> | string;
|
|
114
|
-
/**
|
|
115
|
-
* Pass style modifiers for hover states. The following properties can be modified on hover:
|
|
116
|
-
* `* background`
|
|
117
|
-
* `* borderColor`
|
|
118
|
-
* `* borderWidth`
|
|
119
|
-
* `* color`
|
|
120
|
-
* `* fontSize`
|
|
121
|
-
* `* shadow`
|
|
122
|
-
*/
|
|
123
|
-
hover?: {
|
|
124
|
-
background?: BoxProps['background'];
|
|
125
|
-
borderColor?: BoxProps['borderColor'];
|
|
126
|
-
borderWidth?: BoxProps['borderWidth'];
|
|
127
|
-
color?: BoxProps['color'];
|
|
128
|
-
fontSize?: BoxProps['fontSize'];
|
|
129
|
-
shadow?: BoxProps['shadow'];
|
|
130
|
-
};
|
|
131
|
-
/**
|
|
132
|
-
* Sets the gaps (gutters) between rows and columns.
|
|
133
|
-
*/
|
|
134
|
-
gap?: BaseSpacing | ResponsiveProp<BaseSpacing>;
|
|
135
|
-
/**
|
|
136
|
-
* How space between and around content items is distributed along the main-axis a flex Box
|
|
137
|
-
*/
|
|
138
|
-
justifyContent?: CssJustifyContentValue | ResponsiveProp<CssJustifyContentValue>;
|
|
139
|
-
/**
|
|
140
|
-
* Amount of space around the element.
|
|
141
|
-
* Can be a single [spacing value](/?path=/docs/foundation-design-tokens--docs#spacing).
|
|
142
|
-
* Can also be a string of [spacing value](/?path=/docs/foundation-design-tokens--docs#spacing)
|
|
143
|
-
* that models itself after the css shorthand property,
|
|
144
|
-
* where you can set the margin area on all four sides of an element. It is shorthand for top, right, bottom, left.
|
|
145
|
-
*/
|
|
146
|
-
margin?: BaseSpacing | ResponsiveProp<BaseSpacing>;
|
|
147
|
-
/**
|
|
148
|
-
* The maximum height of the element. Can be given a standard css value (px, rem, em, %),
|
|
149
|
-
* or a [height token](/?path=/docs/foundation-design-tokens--docs#height)
|
|
150
|
-
*/
|
|
151
|
-
maxHeight?: DimensionSize | ResponsiveProp<DimensionSize> | string;
|
|
152
|
-
/**
|
|
153
|
-
* The minimum height of the element. Can be given a standard css value (px, rem, em, %),
|
|
154
|
-
* or a [height token](/?path=/docs/foundation-design-tokens--docs#height)
|
|
155
|
-
*/
|
|
156
|
-
minHeight?: DimensionSize | ResponsiveProp<DimensionSize> | string;
|
|
157
|
-
/**
|
|
158
|
-
* The maximum width of the element. Can be given a standard css value (px, rem, em, %),
|
|
159
|
-
* or a [width token](/?path=/docs/foundation-design-tokens--docs#width)
|
|
160
|
-
*/
|
|
161
|
-
maxWidth?: DimensionSize | ResponsiveProp<DimensionSize> | string;
|
|
162
|
-
/**
|
|
163
|
-
* The minimum width of the element. Can be given a standard css value (px, rem, em, %),
|
|
164
|
-
* or a [width token](/?path=/docs/foundation-design-tokens--docs#width)
|
|
165
|
-
*/
|
|
166
|
-
minWidth?: DimensionSize | ResponsiveProp<DimensionSize> | string;
|
|
167
|
-
/**
|
|
168
|
-
* The css overflow behavior of the Box
|
|
169
|
-
*/
|
|
170
|
-
overflow?: CssOverflowValue | ResponsiveProp<CssOverflowValue>;
|
|
171
|
-
/**
|
|
172
|
-
* Amount of space within the element around the Box contents.
|
|
173
|
-
* Can be a single [spacing value](/?path=/docs/foundation-design-tokens--docs#spacing).
|
|
174
|
-
* Can also be a string of [spacing value](/?path=/docs/foundation-design-tokens--docs#spacing)
|
|
175
|
-
* that models itself after the css shorthand property,
|
|
176
|
-
* where you can set the margin area on all four sides of an element. It is shorthand for top, right, bottom, left.
|
|
177
|
-
*/
|
|
178
|
-
padding?: BaseSpacing | ResponsiveProp<BaseSpacing>;
|
|
179
|
-
/**
|
|
180
|
-
* CSS position property.
|
|
181
|
-
*/
|
|
182
|
-
position?: CSS.Property.Position | ResponsiveProp<CSS.Property.Position>;
|
|
183
|
-
/**
|
|
184
|
-
* Set the radius of all corners
|
|
185
|
-
*/
|
|
186
|
-
radius?: BorderRadiusSize | ResponsiveProp<BorderRadiusSize>;
|
|
187
|
-
/**
|
|
188
|
-
* Sets the gaps (gutters) between rows.
|
|
189
|
-
*/
|
|
190
|
-
rowGap?: BaseSpacing | ResponsiveProp<BaseSpacing>;
|
|
191
|
-
/**
|
|
192
|
-
* The size of the drop shadow applied to the Box
|
|
193
|
-
*/
|
|
194
|
-
shadow?: BoxShadowSize | ResponsiveProp<BoxShadowSize>;
|
|
195
|
-
/**
|
|
196
|
-
* CSS Style object
|
|
197
|
-
*/
|
|
198
|
-
style?: CSSProperties;
|
|
199
|
-
/**
|
|
200
|
-
* the alignment of the text
|
|
201
|
-
*/
|
|
202
|
-
textAlign?: CssTextAlignValue | ResponsiveProp<CssTextAlignValue>;
|
|
203
|
-
/**
|
|
204
|
-
* Control the text transformation of the Box
|
|
205
|
-
*/
|
|
206
|
-
textTransform?: TextTransform | ResponsiveProp<TextTransform>;
|
|
207
|
-
/**
|
|
208
|
-
* Control the text wrapping behavior of the Box
|
|
209
|
-
*/
|
|
210
|
-
textWrap?: TextWrap | ResponsiveProp<TextWrap>;
|
|
211
|
-
/**
|
|
212
|
-
* Control the whitespace behavior of the Box
|
|
213
|
-
*/
|
|
214
|
-
whiteSpace?: CssWhiteSpaceValue | ResponsiveProp<CssWhiteSpaceValue>;
|
|
215
|
-
/**
|
|
216
|
-
* Control the word break behavior of the Box
|
|
217
|
-
*/
|
|
218
|
-
wordBreak?: CssWordBreakValue | ResponsiveProp<CssWordBreakValue>;
|
|
219
|
-
/**
|
|
220
|
-
* By default, a Box's items will all try to fit onto one line.
|
|
221
|
-
* Change that and allow the items to wrap as needed wrap
|
|
222
|
-
*/
|
|
223
|
-
wrap?: boolean | ResponsiveProp<boolean>;
|
|
224
|
-
/**
|
|
225
|
-
* The width of the element. Can be given a standard css value (px, rem, em, %),
|
|
226
|
-
* or a [width token](/?path=/docs/foundation-design-tokens--docs#width)
|
|
227
|
-
*/
|
|
228
|
-
width?: DimensionSize | ResponsiveProp<DimensionSize> | string;
|
|
229
|
-
/**
|
|
230
|
-
* Control the word break behavior of the Box
|
|
231
|
-
*/
|
|
232
|
-
/**
|
|
233
|
-
* ZIndex value for the element. Can be one of the predetermined token values.
|
|
234
|
-
* Can be responsive.
|
|
235
|
-
*/
|
|
236
|
-
zIndex?: ZIndexSize | ResponsiveProp<ZIndexSize>;
|
|
237
|
-
/**
|
|
238
|
-
* Additional props to be spread to rendered element
|
|
239
|
-
*/
|
|
240
|
-
[x: string]: any;
|
|
241
|
-
}
|
|
242
|
-
/**
|
|
243
|
-
* A `<Box>` is a layout component to build UIs with consistent padding and spacing between
|
|
244
|
-
* elements.
|
|
245
|
-
*/
|
|
246
|
-
export declare const Box: FC<BoxProps>;
|
|
247
|
-
export declare const boxPropsKeys: (keyof Pick<BoxProps, KnownKeys<BoxProps>>)[];
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import type { Meta } from '@storybook/react-vite';
|
|
3
|
-
import { Box } from './Box';
|
|
4
|
-
declare const meta: Meta<typeof Box>;
|
|
5
|
-
export default meta;
|
|
6
|
-
export declare const Overview: () => React.JSX.Element;
|
|
7
|
-
export declare const Background: () => React.JSX.Element;
|
|
8
|
-
export declare const Border: () => React.JSX.Element;
|
|
9
|
-
export declare const Gap: () => React.JSX.Element;
|
|
10
|
-
export declare const ChildGap: () => React.JSX.Element;
|
|
11
|
-
export declare const FlexAuto: () => React.JSX.Element;
|
|
12
|
-
export declare const FlexDirection: () => React.JSX.Element;
|
|
13
|
-
export declare const FlexShrinkGrow: () => React.JSX.Element;
|
|
14
|
-
export declare const FlexJustify: () => React.JSX.Element;
|
|
15
|
-
export declare const FlexAlign: () => React.JSX.Element;
|
|
16
|
-
export declare const FlexAlignContent: () => React.JSX.Element;
|
|
17
|
-
export declare const FontColor: () => React.JSX.Element;
|
|
18
|
-
export declare const FontSizes: () => React.JSX.Element;
|
|
19
|
-
export declare const FontWeights: () => React.JSX.Element;
|
|
20
|
-
export declare const FontFamily: () => React.JSX.Element;
|
|
21
|
-
export declare const TextAlign: () => React.JSX.Element;
|
|
22
|
-
export declare const Margin: () => React.JSX.Element;
|
|
23
|
-
export declare const Padding: () => React.JSX.Element;
|
|
24
|
-
export declare const Radius: () => React.JSX.Element;
|
|
25
|
-
export declare const Shadow: () => React.JSX.Element;
|
|
26
|
-
export declare const WhiteSpace: () => React.JSX.Element;
|
|
27
|
-
export declare const Width: () => React.JSX.Element;
|
|
28
|
-
export declare const WidthTokens: () => React.JSX.Element;
|
|
29
|
-
export declare const WidthPercentages: () => React.JSX.Element;
|
|
30
|
-
export declare const WidthMax: () => React.JSX.Element;
|
|
31
|
-
export declare const WidthMin: () => React.JSX.Element;
|
|
32
|
-
export declare const WordBreak: () => React.JSX.Element;
|
|
33
|
-
export declare const Height: () => React.JSX.Element;
|
|
34
|
-
export declare const HeightTokens: () => React.JSX.Element;
|
|
35
|
-
export declare const HeightPercentages: () => React.JSX.Element;
|
|
36
|
-
export declare const HeightMax: () => React.JSX.Element;
|
|
37
|
-
export declare const HeightMin: () => React.JSX.Element;
|
|
38
|
-
export declare const Overflow: () => React.JSX.Element;
|
|
39
|
-
export declare const Cursor: () => React.JSX.Element;
|
|
40
|
-
export declare const Position: () => React.JSX.Element;
|
|
41
|
-
export declare const Hover: () => React.JSX.Element;
|
|
42
|
-
export declare const Focus: () => React.JSX.Element;
|
|
43
|
-
export declare const Responsive: () => React.JSX.Element;
|
|
44
|
-
export declare const Omit: () => React.JSX.Element;
|
|
45
|
-
export declare const TextWrap: () => React.JSX.Element;
|
|
46
|
-
export declare const TextTransform: () => React.JSX.Element;
|