@utilitywarehouse/hearth-react-native 0.8.1 → 0.9.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.
Files changed (135) hide show
  1. package/.storybook/preview.tsx +1 -0
  2. package/.turbo/turbo-build.log +1 -1
  3. package/.turbo/turbo-lint.log +1 -1
  4. package/CHANGELOG.md +24 -0
  5. package/build/components/Banner/Banner.js +49 -10
  6. package/build/components/Banner/Banner.props.d.ts +4 -9
  7. package/build/components/BottomSheet/BottomSheetHandle.js +8 -0
  8. package/build/components/Card/Card.props.d.ts +1 -0
  9. package/build/components/Card/CardRoot.d.ts +1 -1
  10. package/build/components/Card/CardRoot.js +28 -1
  11. package/build/components/HighlightBanner/HighlightBanner.props.d.ts +1 -1
  12. package/build/components/List/List.js +1 -1
  13. package/build/components/List/ListAction/ListActionTrailingIcon.js +2 -2
  14. package/build/components/Menu/Menu.context.d.ts +5 -0
  15. package/build/components/Menu/Menu.context.js +9 -0
  16. package/build/components/Menu/Menu.d.ts +4 -0
  17. package/build/components/Menu/Menu.js +25 -0
  18. package/build/components/Menu/Menu.props.d.ts +21 -0
  19. package/build/components/Menu/Menu.props.js +1 -0
  20. package/build/components/Menu/MenuItem.d.ts +18 -0
  21. package/build/components/Menu/MenuItem.js +115 -0
  22. package/build/components/Menu/MenuItem.props.d.ts +27 -0
  23. package/build/components/Menu/MenuItem.props.js +1 -0
  24. package/build/components/Menu/MenuTrigger.d.ts +9 -0
  25. package/build/components/Menu/MenuTrigger.js +11 -0
  26. package/build/components/Menu/MenuTrigger.props.d.ts +12 -0
  27. package/build/components/Menu/MenuTrigger.props.js +1 -0
  28. package/build/components/Menu/index.d.ts +7 -0
  29. package/build/components/Menu/index.js +4 -0
  30. package/build/components/Modal/Modal.d.ts +1 -1
  31. package/build/components/Modal/Modal.js +32 -30
  32. package/build/components/Modal/Modal.props.d.ts +1 -0
  33. package/build/components/Modal/Modal.web.d.ts +1 -1
  34. package/build/components/Modal/Modal.web.js +25 -25
  35. package/build/components/RadioCard/RadioCardGroup.context.d.ts +12 -0
  36. package/build/components/RadioCard/RadioCardGroup.context.js +3 -0
  37. package/build/components/RadioCard/RadioCardGroup.js +15 -10
  38. package/build/components/RadioCard/RadioCardLabel.d.ts +1 -1
  39. package/build/components/RadioCard/RadioCardLabel.js +7 -1
  40. package/build/components/RadioCard/RadioCardRoot.js +13 -0
  41. package/build/components/index.d.ts +1 -0
  42. package/build/components/index.js +1 -0
  43. package/build/core/themes.d.ts +40 -0
  44. package/build/core/themes.js +20 -0
  45. package/build/tokens/components/dark/index.d.ts +3 -1
  46. package/build/tokens/components/dark/index.js +3 -1
  47. package/build/tokens/components/dark/input.d.ts +3 -0
  48. package/build/tokens/components/dark/input.js +3 -0
  49. package/build/tokens/components/dark/modal.d.ts +7 -4
  50. package/build/tokens/components/dark/modal.js +7 -4
  51. package/build/tokens/components/dark/rating.d.ts +8 -0
  52. package/build/tokens/components/dark/rating.js +7 -0
  53. package/build/tokens/components/dark/table.d.ts +0 -3
  54. package/build/tokens/components/dark/table.js +0 -3
  55. package/build/tokens/components/dark/time-picker.d.ts +29 -0
  56. package/build/tokens/components/dark/time-picker.js +28 -0
  57. package/build/tokens/components/dark/timeline.d.ts +27 -0
  58. package/build/tokens/components/dark/timeline.js +26 -0
  59. package/build/tokens/components/light/index.d.ts +3 -1
  60. package/build/tokens/components/light/index.js +3 -1
  61. package/build/tokens/components/light/input.d.ts +3 -0
  62. package/build/tokens/components/light/input.js +3 -0
  63. package/build/tokens/components/light/modal.d.ts +7 -4
  64. package/build/tokens/components/light/modal.js +7 -4
  65. package/build/tokens/components/light/rating.d.ts +8 -0
  66. package/build/tokens/components/light/rating.js +7 -0
  67. package/build/tokens/components/light/table.d.ts +0 -3
  68. package/build/tokens/components/light/table.js +0 -3
  69. package/build/tokens/components/light/time-picker.d.ts +29 -0
  70. package/build/tokens/components/light/time-picker.js +28 -0
  71. package/build/tokens/components/light/timeline.d.ts +27 -0
  72. package/build/tokens/components/light/timeline.js +26 -0
  73. package/docs/adding-shadows.mdx +43 -0
  74. package/docs/components/AllComponents.web.tsx +33 -0
  75. package/docs/components/BackToTopButton.tsx +1 -1
  76. package/package.json +3 -3
  77. package/src/components/Banner/Banner.docs.mdx +20 -11
  78. package/src/components/Banner/Banner.props.ts +4 -9
  79. package/src/components/Banner/Banner.stories.tsx +17 -4
  80. package/src/components/Banner/Banner.tsx +92 -37
  81. package/src/components/BottomSheet/BottomSheetHandle.tsx +12 -0
  82. package/src/components/Card/Card.docs.mdx +20 -1
  83. package/src/components/Card/Card.props.ts +9 -0
  84. package/src/components/Card/Card.stories.tsx +39 -0
  85. package/src/components/Card/CardRoot.tsx +29 -0
  86. package/src/components/Checkbox/CheckboxGroup.stories.tsx +19 -1
  87. package/src/components/DatePickerInput/DatePickerInput.docs.mdx +1 -1
  88. package/src/components/HighlightBanner/HighlightBanner.docs.mdx +1 -1
  89. package/src/components/HighlightBanner/HighlightBanner.props.ts +1 -0
  90. package/src/components/HighlightBanner/HighlightBanner.stories.tsx +15 -1
  91. package/src/components/List/List.tsx +5 -3
  92. package/src/components/List/ListAction/ListActionTrailingIcon.tsx +2 -2
  93. package/src/components/Menu/Menu.context.ts +15 -0
  94. package/src/components/Menu/Menu.docs.mdx +158 -0
  95. package/src/components/Menu/Menu.props.ts +24 -0
  96. package/src/components/Menu/Menu.stories.tsx +292 -0
  97. package/src/components/Menu/Menu.tsx +54 -0
  98. package/src/components/Menu/MenuItem.props.ts +29 -0
  99. package/src/components/Menu/MenuItem.tsx +145 -0
  100. package/src/components/Menu/MenuTrigger.props.ts +14 -0
  101. package/src/components/Menu/MenuTrigger.tsx +20 -0
  102. package/src/components/Menu/index.ts +7 -0
  103. package/src/components/Modal/Modal.docs.mdx +34 -5
  104. package/src/components/Modal/Modal.props.ts +1 -0
  105. package/src/components/Modal/Modal.stories.tsx +46 -0
  106. package/src/components/Modal/Modal.tsx +37 -33
  107. package/src/components/Modal/Modal.web.tsx +27 -27
  108. package/src/components/Radio/RadioGroup.stories.tsx +18 -0
  109. package/src/components/RadioCard/RadioCardGroup.context.ts +16 -0
  110. package/src/components/RadioCard/RadioCardGroup.stories.tsx +24 -0
  111. package/src/components/RadioCard/RadioCardGroup.tsx +28 -19
  112. package/src/components/RadioCard/RadioCardLabel.tsx +12 -1
  113. package/src/components/RadioCard/RadioCardRoot.tsx +15 -0
  114. package/src/components/index.ts +1 -0
  115. package/src/core/themes.ts +20 -0
  116. package/src/tokens/components/dark/index.ts +3 -1
  117. package/src/tokens/components/dark/input.ts +3 -0
  118. package/src/tokens/components/dark/modal.ts +7 -4
  119. package/src/tokens/components/dark/rating.ts +8 -0
  120. package/src/tokens/components/dark/table.ts +0 -3
  121. package/src/tokens/components/dark/time-picker.ts +29 -0
  122. package/src/tokens/components/dark/timeline.ts +27 -0
  123. package/src/tokens/components/light/index.ts +3 -1
  124. package/src/tokens/components/light/input.ts +3 -0
  125. package/src/tokens/components/light/modal.ts +7 -4
  126. package/src/tokens/components/light/rating.ts +8 -0
  127. package/src/tokens/components/light/table.ts +0 -3
  128. package/src/tokens/components/light/time-picker.ts +29 -0
  129. package/src/tokens/components/light/timeline.ts +27 -0
  130. package/build/tokens/components/dark/dialog.d.ts +0 -25
  131. package/build/tokens/components/dark/dialog.js +0 -24
  132. package/build/tokens/components/light/dialog.d.ts +0 -25
  133. package/build/tokens/components/light/dialog.js +0 -24
  134. package/src/tokens/components/dark/dialog.ts +0 -25
  135. package/src/tokens/components/light/dialog.ts +0 -25
@@ -1,7 +1,18 @@
1
+ import { StyleSheet } from 'react-native-unistyles';
1
2
  import { Label } from '../Label';
2
3
  import LabelProps from '../Label/Label.props';
3
4
 
4
- const RadioCardLabel = ({ children, ...props }: LabelProps) => <Label {...props}>{children}</Label>;
5
+ const RadioCardLabel = ({ children, style, ...props }: LabelProps) => (
6
+ <Label {...props} style={[styles.label, style]}>
7
+ {children}
8
+ </Label>
9
+ );
10
+
11
+ const styles = StyleSheet.create({
12
+ label: {
13
+ flexShrink: 1,
14
+ },
15
+ });
5
16
 
6
17
  RadioCardLabel.displayName = 'RadioCardLabel';
7
18
 
@@ -4,6 +4,7 @@ import { StyleSheet } from 'react-native-unistyles';
4
4
  import { Pressable, ViewStyle } from 'react-native';
5
5
  import { RadioCardContext } from './RadioCard.context';
6
6
  import type RadioCardProps from './RadioCard.props';
7
+ import { useRadioCardGroupContext } from './RadioCardGroup.context';
7
8
 
8
9
  const RadioCardRoot = ({
9
10
  children,
@@ -13,6 +14,8 @@ const RadioCardRoot = ({
13
14
  }: RadioCardProps & { states?: { disabled?: boolean; checked?: boolean; active?: boolean } }) => {
14
15
  const { checked, active } = states ?? {};
15
16
 
17
+ const { flexDirection } = useRadioCardGroupContext() ?? {};
18
+
16
19
  const value = useMemo(
17
20
  () => ({
18
21
  checked,
@@ -23,6 +26,7 @@ const RadioCardRoot = ({
23
26
 
24
27
  styles.useVariants({
25
28
  selected: checked,
29
+ flexDirection,
26
30
  });
27
31
 
28
32
  return (
@@ -39,6 +43,7 @@ RadioCardRoot.displayName = 'RadioCardRoot';
39
43
  const styles = StyleSheet.create(theme => ({
40
44
  container: {
41
45
  flexDirection: 'column',
46
+
42
47
  gap: theme.components.card.selectable.gap,
43
48
  borderRadius: theme.components.card.borderRadius,
44
49
  backgroundColor: theme.color.surface.neutral.strong,
@@ -58,6 +63,16 @@ const styles = StyleSheet.create(theme => ({
58
63
  margin: -theme.components.card.selectable.borderWidthSelected / 2,
59
64
  },
60
65
  },
66
+ flexDirection: {
67
+ row: {},
68
+ column: {
69
+ width: '100%',
70
+ },
71
+ 'row-reverse': {},
72
+ 'column-reverse': {
73
+ width: '100%',
74
+ },
75
+ },
61
76
  },
62
77
  _web: {
63
78
  '_focus-visible': {
@@ -36,6 +36,7 @@ export * from './Input';
36
36
  export * from './Label';
37
37
  export * from './Link';
38
38
  export * from './List';
39
+ export * from './Menu';
39
40
  export * from './Modal';
40
41
  export * from './ProgressStepper';
41
42
  export * from './Radio';
@@ -269,6 +269,16 @@ const shared = {
269
269
 
270
270
  const lightHelpers = {
271
271
  ...shared.helpers,
272
+ shadow: {
273
+ functional: `${shadow.mobile.md.x}px ${shadow.mobile.md.y}px ${shadow.mobile.md.spread}px ${light.shadow.default}`,
274
+ brand: `${shadow.mobile.md.x}px ${shadow.mobile.md.y}px ${shadow.mobile.md.spread}px ${light.shadow.brand}`,
275
+ energy: `${shadow.mobile.md.x}px ${shadow.mobile.md.y}px ${shadow.mobile.md.spread}px ${light.shadow.energy}`,
276
+ broadband: `${shadow.mobile.md.x}px ${shadow.mobile.md.y}px ${shadow.mobile.md.spread}px ${light.shadow.broadband}`,
277
+ mobile: `${shadow.mobile.md.x}px ${shadow.mobile.md.y}px ${shadow.mobile.md.spread}px ${light.shadow.mobile}`,
278
+ insurance: `${shadow.mobile.md.x}px ${shadow.mobile.md.y}px ${shadow.mobile.md.spread}px ${light.shadow.insurance}`,
279
+ cashback: `${shadow.mobile.md.x}px ${shadow.mobile.md.y}px ${shadow.mobile.md.spread}px ${light.shadow.cashback}`,
280
+ pig: `${shadow.mobile.md.x}px ${shadow.mobile.md.y}px ${shadow.mobile.md.spread}px ${light.shadow.pig}`,
281
+ },
272
282
  focusVisible: {
273
283
  outlineStyle: 'solid',
274
284
  outlineWidth: 2,
@@ -303,6 +313,16 @@ export const lightTheme = {
303
313
 
304
314
  const darkHelpers = {
305
315
  ...shared.helpers,
316
+ shadow: {
317
+ functional: `${shadow.mobile.md.x}px ${shadow.mobile.md.y}px ${shadow.mobile.md.spread}px ${dark.shadow.default}`,
318
+ brand: `${shadow.mobile.md.x}px ${shadow.mobile.md.y}px ${shadow.mobile.md.spread}px ${dark.shadow.brand}`,
319
+ energy: `${shadow.mobile.md.x}px ${shadow.mobile.md.y}px ${shadow.mobile.md.spread}px ${dark.shadow.energy}`,
320
+ broadband: `${shadow.mobile.md.x}px ${shadow.mobile.md.y}px ${shadow.mobile.md.spread}px ${dark.shadow.broadband}`,
321
+ mobile: `${shadow.mobile.md.x}px ${shadow.mobile.md.y}px ${shadow.mobile.md.spread}px ${dark.shadow.mobile}`,
322
+ insurance: `${shadow.mobile.md.x}px ${shadow.mobile.md.y}px ${shadow.mobile.md.spread}px ${dark.shadow.insurance}`,
323
+ cashback: `${shadow.mobile.md.x}px ${shadow.mobile.md.y}px ${shadow.mobile.md.spread}px ${dark.shadow.cashback}`,
324
+ pig: `${shadow.mobile.md.x}px ${shadow.mobile.md.y}px ${shadow.mobile.md.spread}px ${dark.shadow.pig}`,
325
+ },
306
326
  focusVisible: {
307
327
  outlineStyle: 'solid',
308
328
  outlineWidth: 2,
@@ -18,7 +18,6 @@ export { default as carouselControl } from './carousel-control';
18
18
  export { default as checkbox } from './checkbox';
19
19
  export { default as datePicker } from './date-picker';
20
20
  export { default as descriptionList } from './description-list';
21
- export { default as dialog } from './dialog';
22
21
  export { default as divider } from './divider';
23
22
  export { default as drawer } from './drawer';
24
23
  export { default as expandableCard } from './expandable-card';
@@ -41,6 +40,7 @@ export { default as pill } from './pill';
41
40
  export { default as progressBar } from './progress-bar';
42
41
  export { default as progressStepper } from './progress-stepper';
43
42
  export { default as radio } from './radio';
43
+ export { default as rating } from './rating';
44
44
  export { default as sectionHeader } from './section-header';
45
45
  export { default as segmentedControl } from './segmented-control';
46
46
  export { default as select } from './select';
@@ -49,6 +49,8 @@ export { default as spinner } from './spinner';
49
49
  export { default as switch } from './switch';
50
50
  export { default as table } from './table';
51
51
  export { default as tabs } from './tabs';
52
+ export { default as timePicker } from './time-picker';
53
+ export { default as timeline } from './timeline';
52
54
  export { default as toast } from './toast';
53
55
  export { default as toggleButton } from './toggle-button';
54
56
  export { default as tooltip } from './tooltip';
@@ -22,6 +22,9 @@ export default {
22
22
  minWidth: 152,
23
23
  paddingHorizontal: 16,
24
24
  paddingVertical: 12,
25
+ stepper: {
26
+ gap: 4,
27
+ },
25
28
  textArea: {
26
29
  height: 96,
27
30
  },
@@ -11,17 +11,20 @@ export default {
11
11
  gap: 12,
12
12
  },
13
13
  gap: 24,
14
- padding: 48,
14
+ heading: {
15
+ gap: 24,
16
+ },
17
+ illustration: {
18
+ padding: 48,
19
+ },
20
+ padding: 24,
15
21
  mobile: {
16
- padding: 16,
17
22
  width: 360,
18
23
  },
19
24
  tablet: {
20
- padding: 48,
21
25
  width: 504,
22
26
  },
23
27
  desktop: {
24
- padding: 48,
25
28
  width: 680,
26
29
  },
27
30
  } as const;
@@ -0,0 +1,8 @@
1
+ /**
2
+ * Do not edit directly, this file was auto-generated.
3
+ */
4
+
5
+ export default {
6
+ borderWidth: 2,
7
+ gap: 4,
8
+ } as const;
@@ -14,9 +14,6 @@ export default {
14
14
  headerCell: {
15
15
  borderWidth: 2,
16
16
  gap: 8,
17
- neutral: {
18
- backgroundColor: '#30302c',
19
- },
20
17
  paddingHorizontal: 12,
21
18
  paddingVertical: 16,
22
19
  },
@@ -0,0 +1,29 @@
1
+ /**
2
+ * Do not edit directly, this file was auto-generated.
3
+ */
4
+
5
+ export default {
6
+ gap: 6,
7
+ gapContainer: 4,
8
+ minWidth: 288,
9
+ paddingHorizontal: 16,
10
+ paddingVertical: 12,
11
+ time: {
12
+ columnGap: 4,
13
+ content: {
14
+ gap: 8,
15
+ item: {
16
+ gap: 2,
17
+ },
18
+ },
19
+ footer: {
20
+ gap: 8,
21
+ },
22
+ gap: 16,
23
+ item: {
24
+ height: 40,
25
+ width: 64,
26
+ },
27
+ rowGap: 2,
28
+ },
29
+ } as const;
@@ -0,0 +1,27 @@
1
+ /**
2
+ * Do not edit directly, this file was auto-generated.
3
+ */
4
+
5
+ export default {
6
+ bar: {
7
+ width: 2,
8
+ },
9
+ content: {
10
+ gap: 8,
11
+ paddingBottom: 24,
12
+ paddingTop: 2,
13
+ },
14
+ gap: 12,
15
+ progress: {
16
+ circle: {
17
+ height: 24,
18
+ width: 24,
19
+ },
20
+ },
21
+ static: {
22
+ circle: {
23
+ height: 12,
24
+ width: 12,
25
+ },
26
+ },
27
+ } as const;
@@ -18,7 +18,6 @@ export { default as carouselControl } from './carousel-control';
18
18
  export { default as checkbox } from './checkbox';
19
19
  export { default as datePicker } from './date-picker';
20
20
  export { default as descriptionList } from './description-list';
21
- export { default as dialog } from './dialog';
22
21
  export { default as divider } from './divider';
23
22
  export { default as drawer } from './drawer';
24
23
  export { default as expandableCard } from './expandable-card';
@@ -41,6 +40,7 @@ export { default as pill } from './pill';
41
40
  export { default as progressBar } from './progress-bar';
42
41
  export { default as progressStepper } from './progress-stepper';
43
42
  export { default as radio } from './radio';
43
+ export { default as rating } from './rating';
44
44
  export { default as sectionHeader } from './section-header';
45
45
  export { default as segmentedControl } from './segmented-control';
46
46
  export { default as select } from './select';
@@ -49,6 +49,8 @@ export { default as spinner } from './spinner';
49
49
  export { default as switch } from './switch';
50
50
  export { default as table } from './table';
51
51
  export { default as tabs } from './tabs';
52
+ export { default as timePicker } from './time-picker';
53
+ export { default as timeline } from './timeline';
52
54
  export { default as toast } from './toast';
53
55
  export { default as toggleButton } from './toggle-button';
54
56
  export { default as tooltip } from './tooltip';
@@ -22,6 +22,9 @@ export default {
22
22
  minWidth: 120,
23
23
  paddingHorizontal: 16,
24
24
  paddingVertical: 12,
25
+ stepper: {
26
+ gap: 4,
27
+ },
25
28
  textArea: {
26
29
  height: 96,
27
30
  },
@@ -11,17 +11,20 @@ export default {
11
11
  gap: 12,
12
12
  },
13
13
  gap: 24,
14
- padding: 16,
14
+ heading: {
15
+ gap: 24,
16
+ },
17
+ illustration: {
18
+ padding: 48,
19
+ },
20
+ padding: 24,
15
21
  mobile: {
16
- padding: 16,
17
22
  width: 360,
18
23
  },
19
24
  tablet: {
20
- padding: 48,
21
25
  width: 504,
22
26
  },
23
27
  desktop: {
24
- padding: 48,
25
28
  width: 680,
26
29
  },
27
30
  } as const;
@@ -0,0 +1,8 @@
1
+ /**
2
+ * Do not edit directly, this file was auto-generated.
3
+ */
4
+
5
+ export default {
6
+ borderWidth: 2,
7
+ gap: 4,
8
+ } as const;
@@ -14,9 +14,6 @@ export default {
14
14
  headerCell: {
15
15
  borderWidth: 2,
16
16
  gap: 8,
17
- neutral: {
18
- backgroundColor: '#f1efe4',
19
- },
20
17
  paddingHorizontal: 12,
21
18
  paddingVertical: 16,
22
19
  },
@@ -0,0 +1,29 @@
1
+ /**
2
+ * Do not edit directly, this file was auto-generated.
3
+ */
4
+
5
+ export default {
6
+ gap: 6,
7
+ gapContainer: 4,
8
+ minWidth: 288,
9
+ paddingHorizontal: 16,
10
+ paddingVertical: 12,
11
+ time: {
12
+ columnGap: 4,
13
+ content: {
14
+ gap: 8,
15
+ item: {
16
+ gap: 2,
17
+ },
18
+ },
19
+ footer: {
20
+ gap: 8,
21
+ },
22
+ gap: 16,
23
+ item: {
24
+ height: 40,
25
+ width: 64,
26
+ },
27
+ rowGap: 2,
28
+ },
29
+ } as const;
@@ -0,0 +1,27 @@
1
+ /**
2
+ * Do not edit directly, this file was auto-generated.
3
+ */
4
+
5
+ export default {
6
+ bar: {
7
+ width: 2,
8
+ },
9
+ content: {
10
+ gap: 8,
11
+ paddingBottom: 24,
12
+ paddingTop: 2,
13
+ },
14
+ gap: 12,
15
+ progress: {
16
+ circle: {
17
+ height: 28,
18
+ width: 28,
19
+ },
20
+ },
21
+ static: {
22
+ circle: {
23
+ height: 12,
24
+ width: 12,
25
+ },
26
+ },
27
+ } as const;
@@ -1,25 +0,0 @@
1
- /**
2
- * Do not edit directly, this file was auto-generated.
3
- */
4
- declare const _default: {
5
- readonly action: {
6
- readonly gap: 12;
7
- };
8
- readonly borderRadius: 16;
9
- readonly content: {
10
- readonly gap: 12;
11
- readonly paddingBottom: 12;
12
- };
13
- readonly gap: 24;
14
- readonly padding: 24;
15
- readonly mobile: {
16
- readonly width: 360;
17
- };
18
- readonly tablet: {
19
- readonly width: 504;
20
- };
21
- readonly desktop: {
22
- readonly width: 680;
23
- };
24
- };
25
- export default _default;
@@ -1,24 +0,0 @@
1
- /**
2
- * Do not edit directly, this file was auto-generated.
3
- */
4
- export default {
5
- action: {
6
- gap: 12,
7
- },
8
- borderRadius: 16,
9
- content: {
10
- gap: 12,
11
- paddingBottom: 12,
12
- },
13
- gap: 24,
14
- padding: 24,
15
- mobile: {
16
- width: 360,
17
- },
18
- tablet: {
19
- width: 504,
20
- },
21
- desktop: {
22
- width: 680,
23
- },
24
- };
@@ -1,25 +0,0 @@
1
- /**
2
- * Do not edit directly, this file was auto-generated.
3
- */
4
- declare const _default: {
5
- readonly action: {
6
- readonly gap: 12;
7
- };
8
- readonly borderRadius: 16;
9
- readonly content: {
10
- readonly gap: 12;
11
- readonly paddingBottom: 12;
12
- };
13
- readonly gap: 24;
14
- readonly padding: 24;
15
- readonly mobile: {
16
- readonly width: 360;
17
- };
18
- readonly tablet: {
19
- readonly width: 504;
20
- };
21
- readonly desktop: {
22
- readonly width: 680;
23
- };
24
- };
25
- export default _default;
@@ -1,24 +0,0 @@
1
- /**
2
- * Do not edit directly, this file was auto-generated.
3
- */
4
- export default {
5
- action: {
6
- gap: 12,
7
- },
8
- borderRadius: 16,
9
- content: {
10
- gap: 12,
11
- paddingBottom: 12,
12
- },
13
- gap: 24,
14
- padding: 24,
15
- mobile: {
16
- width: 360,
17
- },
18
- tablet: {
19
- width: 504,
20
- },
21
- desktop: {
22
- width: 680,
23
- },
24
- };
@@ -1,25 +0,0 @@
1
- /**
2
- * Do not edit directly, this file was auto-generated.
3
- */
4
-
5
- export default {
6
- action: {
7
- gap: 12,
8
- },
9
- borderRadius: 16,
10
- content: {
11
- gap: 12,
12
- paddingBottom: 12,
13
- },
14
- gap: 24,
15
- padding: 24,
16
- mobile: {
17
- width: 360,
18
- },
19
- tablet: {
20
- width: 504,
21
- },
22
- desktop: {
23
- width: 680,
24
- },
25
- } as const;
@@ -1,25 +0,0 @@
1
- /**
2
- * Do not edit directly, this file was auto-generated.
3
- */
4
-
5
- export default {
6
- action: {
7
- gap: 12,
8
- },
9
- borderRadius: 16,
10
- content: {
11
- gap: 12,
12
- paddingBottom: 12,
13
- },
14
- gap: 24,
15
- padding: 24,
16
- mobile: {
17
- width: 360,
18
- },
19
- tablet: {
20
- width: 504,
21
- },
22
- desktop: {
23
- width: 680,
24
- },
25
- } as const;