@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.
Files changed (221) hide show
  1. package/dist/css/utilities.css +1 -1
  2. package/dist/css/variables.css +18 -28
  3. package/dist/hyphen-components.cjs.development.js +5873 -5019
  4. package/dist/hyphen-components.cjs.development.js.map +1 -1
  5. package/dist/hyphen-components.cjs.production.min.js +18 -2
  6. package/dist/hyphen-components.cjs.production.min.js.map +1 -1
  7. package/dist/hyphen-components.esm.js +5731 -4844
  8. package/dist/hyphen-components.esm.js.map +1 -1
  9. package/dist/index.d.ts +2799 -57
  10. package/dist/index.js +0 -1
  11. package/package.json +18 -19
  12. package/src/components/Badge/Badge.module.scss +6 -0
  13. package/src/components/Badge/Badge.stories.tsx +1 -0
  14. package/src/components/Badge/Badge.test.tsx +3 -2
  15. package/src/components/Badge/Badge.tsx +5 -3
  16. package/src/components/Box/Box.tsx +5 -2
  17. package/src/components/Button/Button.module.scss +1 -1
  18. package/src/components/Button/Button.test.tsx +2 -2
  19. package/src/components/Calendar/Calendar.test.tsx +262 -0
  20. package/src/components/Card/Card.tsx +2 -0
  21. package/src/components/CheckboxInput/components/Checkbox.module.scss +1 -1
  22. package/src/components/CheckboxInput/components/Checkbox.tsx +2 -0
  23. package/src/components/Details/Details.module.scss +2 -2
  24. package/src/components/Details/Details.tsx +2 -0
  25. package/src/components/Drawer/Drawer.stories.tsx +1 -1
  26. package/src/components/Drawer/Drawer.test.tsx +494 -56
  27. package/src/components/Drawer/Drawer.tsx +7 -1
  28. package/src/components/DropdownMenu/DropdownMenu.test.tsx +532 -12
  29. package/src/components/FormControl/FormControl.tsx +2 -0
  30. package/src/components/Formik/Formik.stories.tsx +30 -7
  31. package/src/components/Formik/FormikSelectInput/FormikSelectInput.tsx +6 -5
  32. package/src/components/Formik/FormikToggleGroup/FormikToggleGroup.tsx +1 -1
  33. package/src/components/HelpText/HelpText.tsx +2 -0
  34. package/src/components/Icon/Icon.stories.tsx +1 -1
  35. package/src/components/Icon/Icon.tsx +2 -0
  36. package/src/components/Modal/Modal.test.tsx +630 -81
  37. package/src/components/Modal/Modal.tsx +2 -0
  38. package/src/components/Modal/components/ModalFooter/ModalFooter.test.tsx +2 -2
  39. package/src/components/Popover/Popover.tsx +2 -0
  40. package/src/components/RadioGroup/RadioInput/RadioInput.tsx +2 -0
  41. package/src/components/SelectInput/SelectInput.stories.tsx +22 -22
  42. package/src/components/SelectInput/SelectInput.tsx +13 -9
  43. package/src/components/SelectInputInset/SelectInputInset.tsx +2 -0
  44. package/src/components/Sidebar/Sidebar.module.scss +4 -0
  45. package/src/components/Sidebar/Sidebar.stories.tsx +8 -4
  46. package/src/components/Sidebar/Sidebar.test.tsx +7 -4
  47. package/src/components/Sidebar/Sidebar.tsx +7 -4
  48. package/src/components/Table/Table.stories.tsx +102 -52
  49. package/src/components/TextInput/TextInput.tsx +2 -0
  50. package/src/components/TextInputInset/TextInputInset.tsx +2 -0
  51. package/src/components/TextareaInputInset/TextareaInputInset.tsx +2 -0
  52. package/src/components/TimePickerNative/TimePickerNative.stories.tsx +0 -1
  53. package/src/components/Toast/Toast.store.ts +1 -1
  54. package/src/components/Toast/Toast.stories.tsx +3 -2
  55. package/src/components/Toast/Toast.test.tsx +8 -6
  56. package/src/components/Toggle/Toggle.tsx +2 -0
  57. package/src/components/ToggleGroup/ToggleGroup.tsx +2 -0
  58. package/src/docs/Colors.mdx +0 -13
  59. package/src/index.ts +2 -0
  60. package/src/lib/getColumnKeys.ts +3 -3
  61. package/src/lib/mergeRefs.ts +1 -1
  62. package/src/lib/tokens.ts +4 -4
  63. package/dist/components/Alert/Alert.constants.d.ts +0 -8
  64. package/dist/components/Alert/Alert.d.ts +0 -42
  65. package/dist/components/Alert/Alert.stories.d.ts +0 -12
  66. package/dist/components/Alert/Alert.types.d.ts +0 -7
  67. package/dist/components/AspectRatio/AspectRatio.d.ts +0 -3
  68. package/dist/components/AspectRatio/AspectRatio.stories.d.ts +0 -6
  69. package/dist/components/Badge/Badge.d.ts +0 -24
  70. package/dist/components/Badge/Badge.stories.d.ts +0 -8
  71. package/dist/components/Box/Box.d.ts +0 -247
  72. package/dist/components/Box/Box.stories.d.ts +0 -46
  73. package/dist/components/Button/Button.constants.d.ts +0 -3
  74. package/dist/components/Button/Button.d.ts +0 -53
  75. package/dist/components/Button/Button.stories.d.ts +0 -16
  76. package/dist/components/Calendar/Calendar.d.ts +0 -7
  77. package/dist/components/Calendar/Calendar.stories.d.ts +0 -12
  78. package/dist/components/Card/Card.d.ts +0 -17
  79. package/dist/components/Card/Card.stories.d.ts +0 -8
  80. package/dist/components/Card/components/CardFooter/CardFooter.d.ts +0 -13
  81. package/dist/components/Card/components/CardHeader/CardHeader.d.ts +0 -13
  82. package/dist/components/Card/components/CardSection/CardSection.d.ts +0 -46
  83. package/dist/components/Card/components/index.d.ts +0 -3
  84. package/dist/components/CheckboxInput/CheckboxInput.d.ts +0 -72
  85. package/dist/components/CheckboxInput/CheckboxInput.stories.d.ts +0 -18
  86. package/dist/components/CheckboxInput/components/Checkbox.d.ts +0 -71
  87. package/dist/components/CheckboxInput/components/CheckboxIcon.d.ts +0 -27
  88. package/dist/components/Collapsible/Collapsible.d.ts +0 -5
  89. package/dist/components/Collapsible/Collapsible.stories.d.ts +0 -9
  90. package/dist/components/Details/Details.d.ts +0 -15
  91. package/dist/components/Details/Details.stories.d.ts +0 -6
  92. package/dist/components/Details/DetailsSummary.d.ts +0 -7
  93. package/dist/components/Drawer/Drawer.d.ts +0 -105
  94. package/dist/components/Drawer/Drawer.stories.d.ts +0 -62
  95. package/dist/components/DropdownMenu/DropdownMenu.d.ts +0 -25
  96. package/dist/components/DropdownMenu/DropdownMenu.stories.d.ts +0 -9
  97. package/dist/components/FormControl/FormControl.d.ts +0 -38
  98. package/dist/components/FormLabel/FormLabel.d.ts +0 -41
  99. package/dist/components/FormLabel/FormLabel.stories.d.ts +0 -6
  100. package/dist/components/Formik/Formik.stories.d.ts +0 -18
  101. package/dist/components/Formik/FormikCheckboxInput/FormikCheckboxInput.d.ts +0 -12
  102. package/dist/components/Formik/FormikRadioGroup/FormikRadioGroup.d.ts +0 -12
  103. package/dist/components/Formik/FormikSelectInput/FormikSelectInput.d.ts +0 -13
  104. package/dist/components/Formik/FormikSelectInputInset/FormikSelectInputInset.d.ts +0 -12
  105. package/dist/components/Formik/FormikSelectInputNative/FormikSelectInputNative.d.ts +0 -12
  106. package/dist/components/Formik/FormikSwitch/FormikSwitch.d.ts +0 -12
  107. package/dist/components/Formik/FormikTextInput/FormikTextInput.d.ts +0 -12
  108. package/dist/components/Formik/FormikTextInputInset/FormikTextInputInset.d.ts +0 -12
  109. package/dist/components/Formik/FormikTextareaInput/FormikTextareaInput.d.ts +0 -12
  110. package/dist/components/Formik/FormikTextareaInputInset/FormikTextareaInputInset.d.ts +0 -12
  111. package/dist/components/Formik/FormikTimePicker/FormikTimePicker.d.ts +0 -12
  112. package/dist/components/Formik/FormikTimePickerNative/FormikTimePickerNative.d.ts +0 -12
  113. package/dist/components/Formik/FormikToggleGroup/FormikToggleGroup.d.ts +0 -20
  114. package/dist/components/Formik/FormikToggleGroupMulti/FormikToggleGroupMulti.d.ts +0 -18
  115. package/dist/components/Heading/Heading.constants.d.ts +0 -10
  116. package/dist/components/Heading/Heading.d.ts +0 -35
  117. package/dist/components/Heading/Heading.stories.d.ts +0 -9
  118. package/dist/components/HelpText/HelpText.d.ts +0 -12
  119. package/dist/components/Icon/Icon.d.ts +0 -22
  120. package/dist/components/Icon/Icon.stories.d.ts +0 -10
  121. package/dist/components/InputValidationMessage/InputValidationMessage.d.ts +0 -9
  122. package/dist/components/Modal/Modal.d.ts +0 -83
  123. package/dist/components/Modal/Modal.stories.d.ts +0 -13
  124. package/dist/components/Modal/components/ModalBody/ModalBody.d.ts +0 -4
  125. package/dist/components/Modal/components/ModalFooter/ModalFooter.d.ts +0 -4
  126. package/dist/components/Modal/components/ModalHeader/ModalHeader.d.ts +0 -21
  127. package/dist/components/Modal/components/index.d.ts +0 -4
  128. package/dist/components/Pagination/Pagination.d.ts +0 -51
  129. package/dist/components/Pagination/Pagination.stories.d.ts +0 -8
  130. package/dist/components/Pagination/Pagination.utilities.d.ts +0 -10
  131. package/dist/components/Popover/Popover.d.ts +0 -8
  132. package/dist/components/Popover/Popover.stories.d.ts +0 -7
  133. package/dist/components/RadioGroup/RadioGroup.d.ts +0 -75
  134. package/dist/components/RadioGroup/RadioGroup.stories.d.ts +0 -16
  135. package/dist/components/RadioGroup/RadioInput/RadioInput.d.ts +0 -57
  136. package/dist/components/RadioGroup/RadioInput/RadioInputIcon.d.ts +0 -27
  137. package/dist/components/RangeInput/RangeInput.d.ts +0 -29
  138. package/dist/components/RangeInput/RangeInput.stories.d.ts +0 -7
  139. package/dist/components/ResponsiveProvider/ResponsiveProvider.d.ts +0 -17
  140. package/dist/components/ResponsiveProvider/ResponsiveProvider.stories.d.ts +0 -7
  141. package/dist/components/SelectInput/SelectInput.d.ts +0 -148
  142. package/dist/components/SelectInput/SelectInput.stories.d.ts +0 -24
  143. package/dist/components/SelectInputInset/SelectInputInset.d.ts +0 -92
  144. package/dist/components/SelectInputInset/SelectInputInset.stories.d.ts +0 -12
  145. package/dist/components/SelectInputNative/SelectInputNative.d.ts +0 -45
  146. package/dist/components/SelectInputNative/SelectInputNative.stories.d.ts +0 -19
  147. package/dist/components/Sidebar/Sidebar.d.ts +0 -57
  148. package/dist/components/Sidebar/Sidebar.stories.d.ts +0 -9
  149. package/dist/components/Spinner/Spinner.d.ts +0 -12
  150. package/dist/components/Spinner/Spinner.stories.d.ts +0 -8
  151. package/dist/components/Switch/Switch.d.ts +0 -64
  152. package/dist/components/Switch/Switch.stories.d.ts +0 -12
  153. package/dist/components/Table/Table.d.ts +0 -86
  154. package/dist/components/Table/Table.stories.d.ts +0 -31
  155. package/dist/components/Table/TableBody/TableBody.d.ts +0 -52
  156. package/dist/components/Table/TableBody/TableBodyCell/TableBodyCell.d.ts +0 -45
  157. package/dist/components/Table/TableHead/TableHead.d.ts +0 -46
  158. package/dist/components/Table/TableHead/TableHeaderCell/TableHeaderCell.d.ts +0 -65
  159. package/dist/components/Table/common/TableRow/TableRow.d.ts +0 -67
  160. package/dist/components/TextInput/TextInput.d.ts +0 -106
  161. package/dist/components/TextInput/TextInput.stories.d.ts +0 -19
  162. package/dist/components/TextInputInset/TextInputInset.d.ts +0 -102
  163. package/dist/components/TextInputInset/TextInputInset.stories.d.ts +0 -13
  164. package/dist/components/TextareaInput/TextareaInput.d.ts +0 -97
  165. package/dist/components/TextareaInput/TextareaInput.stories.d.ts +0 -23
  166. package/dist/components/TextareaInputInset/TextareaInputInset.d.ts +0 -105
  167. package/dist/components/TextareaInputInset/TextareaInputInset.stories.d.ts +0 -12
  168. package/dist/components/ThemeProvider/ThemeProvider.d.ts +0 -15
  169. package/dist/components/ThemeProvider/ThemeProvider.stories.d.ts +0 -6
  170. package/dist/components/TimePicker/TimePicker.d.ts +0 -35
  171. package/dist/components/TimePicker/TimePicker.stories.d.ts +0 -12
  172. package/dist/components/TimePickerNative/TimePickerNative.d.ts +0 -39
  173. package/dist/components/TimePickerNative/TimePickerNative.stories.d.ts +0 -11
  174. package/dist/components/Toast/Toast.store.d.ts +0 -36
  175. package/dist/components/Toast/Toast.stories.d.ts +0 -14
  176. package/dist/components/Toast/Toast.types.d.ts +0 -75
  177. package/dist/components/Toast/ToastContainer.d.ts +0 -43
  178. package/dist/components/Toast/ToastNotification.d.ts +0 -28
  179. package/dist/components/Toast/index.d.ts +0 -4
  180. package/dist/components/Toast/toast.d.ts +0 -20
  181. package/dist/components/Toast/useToasts.d.ts +0 -14
  182. package/dist/components/Toggle/Toggle.d.ts +0 -7
  183. package/dist/components/Toggle/Toggle.stories.d.ts +0 -11
  184. package/dist/components/ToggleGroup/ToggleGroup.d.ts +0 -19
  185. package/dist/components/ToggleGroup/ToggleGroup.stories.d.ts +0 -12
  186. package/dist/components/Tooltip/Tooltip.d.ts +0 -8
  187. package/dist/components/Tooltip/Tooltip.stories.d.ts +0 -8
  188. package/dist/constants/keyCodes.d.ts +0 -2
  189. package/dist/css/index.css +0 -36
  190. package/dist/hooks/index.d.ts +0 -6
  191. package/dist/hooks/useBreakpoint/useBreakpoint.d.ts +0 -9
  192. package/dist/hooks/useBreakpoint/useBreakpoint.stories.d.ts +0 -6
  193. package/dist/hooks/useIsMobile/useIsMobile.d.ts +0 -1
  194. package/dist/hooks/useIsMobile/useIsMobile.stories.d.ts +0 -6
  195. package/dist/hooks/useIsomorphicLayoutEffect/useIsomorphicLayoutEffect.d.ts +0 -2
  196. package/dist/hooks/useOpenClose/useOpenClose.d.ts +0 -39
  197. package/dist/hooks/useOpenClose/useOpenClose.stories.d.ts +0 -6
  198. package/dist/hooks/useTheme/useTheme.d.ts +0 -5
  199. package/dist/hooks/useTheme/useTheme.stories.d.ts +0 -6
  200. package/dist/hooks/useWindowSize/useWindowSize.d.ts +0 -7
  201. package/dist/hooks/useWindowSize/useWindowSize.stories.d.ts +0 -6
  202. package/dist/lib/cssShorthandToClasses.d.ts +0 -4
  203. package/dist/lib/doesStringIncludeCssUnit.d.ts +0 -1
  204. package/dist/lib/generateResponsiveClasses.d.ts +0 -2
  205. package/dist/lib/getAutoCompleteValue.d.ts +0 -1
  206. package/dist/lib/getColumnKeys.d.ts +0 -3
  207. package/dist/lib/getDimensionCss.d.ts +0 -12
  208. package/dist/lib/getElementType.d.ts +0 -14
  209. package/dist/lib/getFlexCss.d.ts +0 -9
  210. package/dist/lib/index.d.ts +0 -15
  211. package/dist/lib/isFunction.d.ts +0 -3
  212. package/dist/lib/mergeRefs.d.ts +0 -2
  213. package/dist/lib/prefersReducedMotion.d.ts +0 -1
  214. package/dist/lib/react-children-utilities/filter.d.ts +0 -3
  215. package/dist/lib/react-children-utilities/index.d.ts +0 -1
  216. package/dist/lib/reactRouterClickHandler.d.ts +0 -12
  217. package/dist/lib/resolveValue.d.ts +0 -3
  218. package/dist/lib/tokens.d.ts +0 -22
  219. package/dist/modes.d.ts +0 -8
  220. package/dist/types/index.d.ts +0 -103
  221. package/dist/types/lib.types.d.ts +0 -3
@@ -211,3 +211,5 @@ export const TextareaInputInset: ForwardRefExoticComponent<TextareaInputInsetPro
211
211
  );
212
212
  }
213
213
  );
214
+
215
+ TextareaInputInset.displayName = 'TextareaInputInset';
@@ -21,7 +21,6 @@ export const Default = () => {
21
21
  id="defaultTimePickerNative"
22
22
  name="defaultTimePickerNative"
23
23
  onChange={(event: ChangeEvent<HTMLInputElement>) => {
24
- console.log(event.target.value);
25
24
  setValue(event.target.value);
26
25
  }}
27
26
  label="Pick a Time"
@@ -90,7 +90,7 @@ const createReducer =
90
90
  handlers: THandlers
91
91
  ) =>
92
92
  (state: TState = initialState, action: TAction) => {
93
- if (handlers.hasOwnProperty(action.type)) {
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: any) => <code style={codePreviewStyle}>{cell}</code>,
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(async (resolve) => {
261
+ const myPromise = new Promise((resolve) => {
262
262
  // eslint-disable-line no-async-promise-executor
263
- await wait(1000);
264
- resolve('yay');
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(async (_resolve, reject) => {
291
+ const myPromise = new Promise((_resolve, reject) => {
291
292
  // eslint-disable-line no-async-promise-executor
292
- await wait(1000);
293
- reject('boo'); // eslint-disable-line prefer-promise-reject-errors
293
+ wait(1000).then(() => {
294
+ reject('boo'); // eslint-disable-line prefer-promise-reject-errors
295
+ });
294
296
  });
295
297
 
296
298
  act(() => {
@@ -30,4 +30,6 @@ const Toggle = forwardRef<
30
30
  </TogglePrimitive.Root>
31
31
  ));
32
32
 
33
+ Toggle.displayName = 'Toggle';
34
+
33
35
  export { Toggle };
@@ -54,6 +54,8 @@ const ToggleGroup = forwardRef<
54
54
  )
55
55
  );
56
56
 
57
+ ToggleGroup.displayName = 'ToggleGroup';
58
+
57
59
  type ToggleGroupItemProps = React.ComponentPropsWithoutRef<
58
60
  typeof ToggleGroupPrimitive.Item
59
61
  > & {
@@ -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
@@ -55,3 +55,5 @@ export * from './components/Toggle/Toggle';
55
55
  export * from './components/ToggleGroup/ToggleGroup';
56
56
  export * from './components/Tooltip/Tooltip';
57
57
  export * from './hooks';
58
+ export * from './types';
59
+ export * from './lib';
@@ -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<any, boolean> = {};
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 as any]) {
18
+ while (keys[String(mergedKey)]) {
19
19
  mergedKey = `${mergedKey}_next`;
20
20
  }
21
- keys[mergedKey as any] = true;
21
+ keys[String(mergedKey)] = true;
22
22
 
23
23
  columnKeys.push(mergedKey);
24
24
  });
@@ -1,6 +1,6 @@
1
1
  import React from 'react';
2
2
 
3
- export function mergeRefs<T = any>(
3
+ export function mergeRefs<T = unknown>(
4
4
  refs: Array<React.MutableRefObject<T> | React.LegacyRef<T> | undefined | null>
5
5
  ): React.RefCallback<T> {
6
6
  return (value) => {
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
- (designTokens.size as any)['font-size']
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
- (designTokens.size as any)['font-weight']
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
- (designTokens.size as any).dimension
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
- (designTokens.size as any).dimension
130
+ designTokens.size.dimension
131
131
  ) as WidthSize[];
132
132
  // export const WIDTH_VALUES = designTokens.size.dimension;
133
133
 
@@ -1,8 +0,0 @@
1
- import { IconName } from '../../types';
2
- import { AlertVariant } from './Alert.types';
3
- export declare const ALERT_VARIANTS: AlertVariant[];
4
- export declare const ALERT_ICONS_MAP: {
5
- [key in AlertVariant]: {
6
- icon: IconName;
7
- };
8
- };
@@ -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,7 +0,0 @@
1
- import { BackgroundColor, FontColor, IconName } from '../../types';
2
- export type AlertVariant = 'info' | 'success' | 'warning' | 'danger' | 'default';
3
- export type AlertAttributes = {
4
- icon: IconName;
5
- color: FontColor;
6
- background: BackgroundColor;
7
- };
@@ -1,3 +0,0 @@
1
- import * as AspectRatioPrimitive from '@radix-ui/react-aspect-ratio';
2
- declare const AspectRatio: import("react").ForwardRefExoticComponent<AspectRatioPrimitive.AspectRatioProps & import("react").RefAttributes<HTMLDivElement>>;
3
- export { AspectRatio };
@@ -1,6 +0,0 @@
1
- import React from 'react';
2
- import type { Meta } from '@storybook/react-vite';
3
- import { AspectRatio } from './AspectRatio';
4
- declare const meta: Meta<typeof AspectRatio>;
5
- export default meta;
6
- export declare const Usage: () => React.JSX.Element;
@@ -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;
@@ -1,3 +0,0 @@
1
- import { ButtonSize, ButtonVariant } from './Button';
2
- export declare const BUTTON_VARIANTS: ButtonVariant[];
3
- export declare const BUTTON_SIZES: ButtonSize[];