@utilitywarehouse/hearth-react-native 0.32.4 → 0.33.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 (93) hide show
  1. package/.storybook/main.ts +0 -10
  2. package/.storybook/vitest.setup.ts +0 -8
  3. package/CHANGELOG.md +16 -0
  4. package/build/components/Accordion/Accordion.d.ts +1 -1
  5. package/build/components/Tabs/TabsList.js +1 -1
  6. package/build/core/themes.d.ts +4 -4
  7. package/build/tokens/color.d.ts +2 -2
  8. package/build/tokens/color.js +1 -1
  9. package/build/tokens/components/dark/alert.d.ts +0 -1
  10. package/build/tokens/components/dark/alert.js +0 -1
  11. package/build/tokens/components/dark/bottom-navigation.d.ts +1 -1
  12. package/build/tokens/components/dark/bottom-navigation.js +1 -1
  13. package/build/tokens/components/dark/card-accordion.d.ts +13 -0
  14. package/build/tokens/components/dark/card-accordion.js +12 -0
  15. package/build/tokens/components/dark/card.d.ts +3 -0
  16. package/build/tokens/components/dark/card.js +3 -0
  17. package/build/tokens/components/dark/checkbox.d.ts +1 -1
  18. package/build/tokens/components/dark/checkbox.js +1 -1
  19. package/build/tokens/components/dark/divider.d.ts +0 -1
  20. package/build/tokens/components/dark/divider.js +0 -1
  21. package/build/tokens/components/dark/index.d.ts +1 -0
  22. package/build/tokens/components/dark/index.js +1 -0
  23. package/build/tokens/components/dark/list.d.ts +3 -0
  24. package/build/tokens/components/dark/list.js +3 -0
  25. package/build/tokens/components/dark/navigation.d.ts +42 -1
  26. package/build/tokens/components/dark/navigation.js +42 -1
  27. package/build/tokens/components/dark/pagination.d.ts +1 -0
  28. package/build/tokens/components/dark/pagination.js +1 -0
  29. package/build/tokens/components/dark/segmented-control.d.ts +1 -1
  30. package/build/tokens/components/dark/segmented-control.js +1 -1
  31. package/build/tokens/components/dark/tabs.d.ts +0 -1
  32. package/build/tokens/components/dark/tabs.js +0 -1
  33. package/build/tokens/components/dark/tooltip.d.ts +1 -0
  34. package/build/tokens/components/dark/tooltip.js +1 -0
  35. package/build/tokens/components/light/alert.d.ts +0 -1
  36. package/build/tokens/components/light/alert.js +0 -1
  37. package/build/tokens/components/light/bottom-navigation.d.ts +1 -1
  38. package/build/tokens/components/light/bottom-navigation.js +1 -1
  39. package/build/tokens/components/light/card-accordion.d.ts +13 -0
  40. package/build/tokens/components/light/card-accordion.js +12 -0
  41. package/build/tokens/components/light/card.d.ts +3 -0
  42. package/build/tokens/components/light/card.js +3 -0
  43. package/build/tokens/components/light/checkbox.d.ts +1 -1
  44. package/build/tokens/components/light/checkbox.js +1 -1
  45. package/build/tokens/components/light/divider.d.ts +0 -1
  46. package/build/tokens/components/light/divider.js +0 -1
  47. package/build/tokens/components/light/index.d.ts +1 -0
  48. package/build/tokens/components/light/index.js +1 -0
  49. package/build/tokens/components/light/list.d.ts +3 -0
  50. package/build/tokens/components/light/list.js +3 -0
  51. package/build/tokens/components/light/navigation.d.ts +42 -1
  52. package/build/tokens/components/light/navigation.js +42 -1
  53. package/build/tokens/components/light/pagination.d.ts +1 -0
  54. package/build/tokens/components/light/pagination.js +1 -0
  55. package/build/tokens/components/light/segmented-control.d.ts +1 -1
  56. package/build/tokens/components/light/segmented-control.js +1 -1
  57. package/build/tokens/components/light/tabs.d.ts +0 -1
  58. package/build/tokens/components/light/tabs.js +0 -1
  59. package/build/tokens/components/light/tooltip.d.ts +1 -0
  60. package/build/tokens/components/light/tooltip.js +1 -0
  61. package/docs/changelog.mdx +16 -0
  62. package/package.json +7 -11
  63. package/src/components/Rating/Rating.figma.tsx +1 -1
  64. package/src/components/Tabs/TabsList.tsx +1 -1
  65. package/src/tokens/color.ts +1 -1
  66. package/src/tokens/components/dark/alert.ts +0 -1
  67. package/src/tokens/components/dark/bottom-navigation.ts +1 -1
  68. package/src/tokens/components/dark/card-accordion.ts +13 -0
  69. package/src/tokens/components/dark/card.ts +3 -0
  70. package/src/tokens/components/dark/checkbox.ts +1 -1
  71. package/src/tokens/components/dark/divider.ts +0 -1
  72. package/src/tokens/components/dark/index.ts +1 -0
  73. package/src/tokens/components/dark/list.ts +3 -0
  74. package/src/tokens/components/dark/navigation.ts +42 -1
  75. package/src/tokens/components/dark/pagination.ts +1 -0
  76. package/src/tokens/components/dark/segmented-control.ts +1 -1
  77. package/src/tokens/components/dark/tabs.ts +0 -1
  78. package/src/tokens/components/dark/tooltip.ts +1 -0
  79. package/src/tokens/components/light/alert.ts +0 -1
  80. package/src/tokens/components/light/bottom-navigation.ts +1 -1
  81. package/src/tokens/components/light/card-accordion.ts +13 -0
  82. package/src/tokens/components/light/card.ts +3 -0
  83. package/src/tokens/components/light/checkbox.ts +1 -1
  84. package/src/tokens/components/light/divider.ts +0 -1
  85. package/src/tokens/components/light/index.ts +1 -0
  86. package/src/tokens/components/light/list.ts +3 -0
  87. package/src/tokens/components/light/navigation.ts +42 -1
  88. package/src/tokens/components/light/pagination.ts +1 -0
  89. package/src/tokens/components/light/segmented-control.ts +1 -1
  90. package/src/tokens/components/light/tabs.ts +0 -1
  91. package/src/tokens/components/light/tooltip.ts +1 -0
  92. package/vitest.config.js +5 -1
  93. package/.turbo/turbo-lint$colon$fix.log +0 -56
@@ -71,16 +71,6 @@ const config = {
71
71
  ...config.optimizeDeps,
72
72
  exclude: [...(config.optimizeDeps?.exclude || []), '@utilitywarehouse/hearth-svg-assets'],
73
73
  },
74
- build: {
75
- ...config.build,
76
- rolldownOptions: {
77
- ...config.build?.rolldownOptions,
78
- external: [
79
- ...(config.build?.rolldownOptions?.external || []),
80
- '@react-stately/utils',
81
- ],
82
- },
83
- },
84
74
  };
85
75
  },
86
76
  };
@@ -1,4 +1,3 @@
1
- import { setProjectAnnotations } from '@storybook/react-native-web-vite';
2
1
  import { vi } from 'vitest';
3
2
 
4
3
  // react-native-unistyles/mocks relies on Jest globals.
@@ -30,10 +29,3 @@ StyleSheet.configure({
30
29
  adaptiveThemes: false,
31
30
  },
32
31
  });
33
-
34
- const a11yAddonAnnotations = await import('@storybook/addon-a11y/preview');
35
- const projectAnnotations = await import('./preview');
36
-
37
- // This is an important step to apply the right configuration when testing your stories.
38
- // More info at: https://storybook.js.org/docs/api/portable-stories/portable-stories-vitest#setprojectannotations
39
- setProjectAnnotations([a11yAddonAnnotations as any, projectAnnotations as any]);
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # @utilitywarehouse/hearth-react-native
2
2
 
3
+ ## 0.33.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#1298](https://github.com/utilitywarehouse/hearth/pull/1298) [`43bf936`](https://github.com/utilitywarehouse/hearth/commit/43bf936fa03db109c669369cac6d0483877ae49a) Thanks [@robphoenix](https://github.com/robphoenix)! - 🧹 [HOUSEKEEPING]: Remove component color tokens in favour of semantic tokens
8
+
9
+ Updated `TabsList` to use `theme.color.border.strong` and removed the
10
+ `tabs.divider.color` component token (and other unused component color tokens)
11
+ in favour of semantic tokens.
12
+
13
+ ## 0.32.5
14
+
15
+ ### Patch Changes
16
+
17
+ - [#1261](https://github.com/utilitywarehouse/hearth/pull/1261) [`745df73`](https://github.com/utilitywarehouse/hearth/commit/745df73a245dfe89d07aae5bac14256a4ff89e0a) Thanks [@robphoenix](https://github.com/robphoenix)! - 🧹 [HOUSEKEEPING]: Update dependencies
18
+
3
19
  ## 0.32.4
4
20
 
5
21
  ### Patch Changes
@@ -5,7 +5,7 @@ export declare const AccordionTrigger: import("react").ForwardRefExoticComponent
5
5
  states?: {
6
6
  active?: boolean;
7
7
  };
8
- }, "children"> & import("@gluestack-ui/accordion/lib/typescript/types").IAccordionTriggerProps & import("react").RefAttributes<import("react-native/types").PressableProps & {
8
+ }, "children"> & import("@gluestack-ui/accordion/lib/types").IAccordionTriggerProps & import("react").RefAttributes<import("react-native/types").PressableProps & {
9
9
  states?: {
10
10
  active?: boolean;
11
11
  };
@@ -67,7 +67,7 @@ const styles = StyleSheet.create(theme => ({
67
67
  position: 'relative',
68
68
  width: '100%',
69
69
  borderBottomWidth: theme.components.tabs.divider.borderWidth,
70
- borderColor: theme.components.tabs.divider.color,
70
+ borderColor: theme.color.border.strong,
71
71
  },
72
72
  scrollContent: {
73
73
  paddingBottom: 0,
@@ -1358,7 +1358,7 @@ export declare const lightTheme: {
1358
1358
  readonly '1000': "#26164f";
1359
1359
  };
1360
1360
  readonly red: {
1361
- readonly '0': "#fffaf9";
1361
+ readonly '0': "#fff6f5";
1362
1362
  readonly '50': "#fff3f1";
1363
1363
  readonly '100': "#ffe3df";
1364
1364
  readonly '200': "#ffccc5";
@@ -2775,7 +2775,7 @@ export declare const darkTheme: {
2775
2775
  readonly '1000': "#26164f";
2776
2776
  };
2777
2777
  readonly red: {
2778
- readonly '0': "#fffaf9";
2778
+ readonly '0': "#fff6f5";
2779
2779
  readonly '50': "#fff3f1";
2780
2780
  readonly '100': "#ffe3df";
2781
2781
  readonly '200': "#ffccc5";
@@ -4182,7 +4182,7 @@ export declare const themes: {
4182
4182
  readonly '1000': "#26164f";
4183
4183
  };
4184
4184
  readonly red: {
4185
- readonly '0': "#fffaf9";
4185
+ readonly '0': "#fff6f5";
4186
4186
  readonly '50': "#fff3f1";
4187
4187
  readonly '100': "#ffe3df";
4188
4188
  readonly '200': "#ffccc5";
@@ -5599,7 +5599,7 @@ export declare const themes: {
5599
5599
  readonly '1000': "#26164f";
5600
5600
  };
5601
5601
  readonly red: {
5602
- readonly '0': "#fffaf9";
5602
+ readonly '0': "#fff6f5";
5603
5603
  readonly '50': "#fff3f1";
5604
5604
  readonly '100': "#ffe3df";
5605
5605
  readonly '200': "#ffccc5";
@@ -170,7 +170,7 @@ export declare const purple: {
170
170
  readonly '1000': "#26164f";
171
171
  };
172
172
  export declare const red: {
173
- readonly '0': "#fffaf9";
173
+ readonly '0': "#fff6f5";
174
174
  readonly '50': "#fff3f1";
175
175
  readonly '100': "#ffe3df";
176
176
  readonly '200': "#ffccc5";
@@ -881,7 +881,7 @@ declare const color: {
881
881
  readonly '1000': "#26164f";
882
882
  };
883
883
  readonly red: {
884
- readonly '0': "#fffaf9";
884
+ readonly '0': "#fff6f5";
885
885
  readonly '50': "#fff3f1";
886
886
  readonly '100': "#ffe3df";
887
887
  readonly '200': "#ffccc5";
@@ -170,7 +170,7 @@ export const purple = {
170
170
  '1000': '#26164f',
171
171
  };
172
172
  export const red = {
173
- '0': '#fffaf9',
173
+ '0': '#fff6f5',
174
174
  '50': '#fff3f1',
175
175
  '100': '#ffe3df',
176
176
  '200': '#ffccc5',
@@ -5,7 +5,6 @@ declare const _default: {
5
5
  readonly borderRadius: 8;
6
6
  readonly borderWidth: 2;
7
7
  readonly contentGap: 4;
8
- readonly focus: "#101010";
9
8
  readonly gap: 8;
10
9
  readonly iconButton: {
11
10
  readonly unstyled: {
@@ -5,7 +5,6 @@ export default {
5
5
  borderRadius: 8,
6
6
  borderWidth: 2,
7
7
  contentGap: 4,
8
- focus: '#101010',
9
8
  gap: 8,
10
9
  iconButton: {
11
10
  unstyled: {
@@ -2,7 +2,7 @@
2
2
  * Do not edit directly, this file was auto-generated.
3
3
  */
4
4
  declare const _default: {
5
- readonly borderTopWidth: 2;
5
+ readonly borderTop: 2;
6
6
  readonly gap: 0;
7
7
  readonly indicator: {
8
8
  readonly borderRadius: 4;
@@ -2,7 +2,7 @@
2
2
  * Do not edit directly, this file was auto-generated.
3
3
  */
4
4
  export default {
5
- borderTopWidth: 2,
5
+ borderTop: 2,
6
6
  gap: 0,
7
7
  indicator: {
8
8
  borderRadius: 4,
@@ -0,0 +1,13 @@
1
+ /**
2
+ * Do not edit directly, this file was auto-generated.
3
+ */
4
+ declare const _default: {
5
+ readonly buttonGroup: {
6
+ readonly gap: 12;
7
+ };
8
+ readonly gap: 24;
9
+ readonly item: {
10
+ readonly gap: 20;
11
+ };
12
+ };
13
+ export default _default;
@@ -0,0 +1,12 @@
1
+ /**
2
+ * Do not edit directly, this file was auto-generated.
3
+ */
4
+ export default {
5
+ buttonGroup: {
6
+ gap: 12,
7
+ },
8
+ gap: 24,
9
+ item: {
10
+ gap: 20,
11
+ },
12
+ };
@@ -18,6 +18,9 @@ declare const _default: {
18
18
  readonly borderWidth: 1;
19
19
  readonly borderWidthSelected: 2;
20
20
  readonly gap: 16;
21
+ readonly label: {
22
+ readonly gap: 12;
23
+ };
21
24
  };
22
25
  readonly mobile: {
23
26
  readonly padding: 16;
@@ -18,6 +18,9 @@ export default {
18
18
  borderWidth: 1,
19
19
  borderWidthSelected: 2,
20
20
  gap: 16,
21
+ label: {
22
+ gap: 12,
23
+ },
21
24
  },
22
25
  mobile: {
23
26
  padding: 16,
@@ -12,7 +12,7 @@ declare const _default: {
12
12
  };
13
13
  readonly gap: 8;
14
14
  readonly group: {
15
- readonly gap: 16;
15
+ readonly gap: 12;
16
16
  readonly stack: {
17
17
  readonly gap: 20;
18
18
  };
@@ -12,7 +12,7 @@ export default {
12
12
  },
13
13
  gap: 8,
14
14
  group: {
15
- gap: 16,
15
+ gap: 12,
16
16
  stack: {
17
17
  gap: 20,
18
18
  },
@@ -5,7 +5,6 @@ declare const _default: {
5
5
  readonly borderWidth: 1;
6
6
  readonly divider: {
7
7
  readonly borderWidth: 2;
8
- readonly color: "#ebebeb";
9
8
  };
10
9
  };
11
10
  export default _default;
@@ -5,6 +5,5 @@ export default {
5
5
  borderWidth: 1,
6
6
  divider: {
7
7
  borderWidth: 2,
8
- color: '#ebebeb',
9
8
  },
10
9
  };
@@ -11,6 +11,7 @@ export { default as bottomSheet } from './bottom-sheet';
11
11
  export { default as breadcrumb } from './breadcrumb';
12
12
  export { default as button } from './button';
13
13
  export { default as card } from './card';
14
+ export { default as cardAccordion } from './card-accordion';
14
15
  export { default as cardAction } from './card-action';
15
16
  export { default as cardContent } from './card-content';
16
17
  export { default as carouselControl } from './carousel-control';
@@ -11,6 +11,7 @@ export { default as bottomSheet } from './bottom-sheet';
11
11
  export { default as breadcrumb } from './breadcrumb';
12
12
  export { default as button } from './button';
13
13
  export { default as card } from './card';
14
+ export { default as cardAccordion } from './card-accordion';
14
15
  export { default as cardAction } from './card-action';
15
16
  export { default as cardContent } from './card-content';
16
17
  export { default as carouselControl } from './carousel-control';
@@ -23,6 +23,9 @@ declare const _default: {
23
23
  };
24
24
  };
25
25
  readonly gap: 12;
26
+ readonly indicator: {
27
+ readonly padding: 8;
28
+ };
26
29
  readonly item: {
27
30
  readonly contentGap: 2;
28
31
  readonly functional: {
@@ -23,6 +23,9 @@ export default {
23
23
  },
24
24
  },
25
25
  gap: 12,
26
+ indicator: {
27
+ padding: 8,
28
+ },
26
29
  item: {
27
30
  contentGap: 2,
28
31
  functional: {
@@ -9,12 +9,53 @@ declare const _default: {
9
9
  readonly borderBottom: "#996cda";
10
10
  readonly borderRadius: 6;
11
11
  readonly desktop: {
12
+ readonly customer: {
13
+ readonly gap: 12;
14
+ };
12
15
  readonly height: 88;
16
+ readonly partner: {
17
+ readonly gap: 4;
18
+ readonly header: {
19
+ readonly gap: 24;
20
+ };
21
+ readonly padding: 24;
22
+ };
13
23
  };
14
24
  readonly dividerBorderColor: "#996cda";
15
- readonly gap: 4;
25
+ readonly item: {
26
+ readonly customer: {
27
+ readonly container: {
28
+ readonly gap: 4;
29
+ readonly paddingHorizontal: 4;
30
+ readonly paddingVertical: 8;
31
+ };
32
+ readonly mobile: {
33
+ readonly container: {
34
+ readonly paddingHorizontal: 8;
35
+ readonly paddingVertical: 8;
36
+ };
37
+ readonly paddingHorizontal: 4;
38
+ readonly paddingVertical: 24;
39
+ };
40
+ readonly paddingHorizontal: 4;
41
+ readonly paddingVertical: 24;
42
+ };
43
+ readonly partner: {
44
+ readonly container: {
45
+ readonly gap: 4;
46
+ readonly padding: 8;
47
+ };
48
+ readonly paddingHorizontal: 16;
49
+ readonly sub: {
50
+ readonly paddingLeft: 32;
51
+ readonly paddingRight: 16;
52
+ };
53
+ };
54
+ };
16
55
  readonly mobile: {
56
+ readonly gap: 12;
17
57
  readonly height: 64;
58
+ readonly padding: 16;
18
59
  };
19
60
  };
20
61
  export default _default;
@@ -9,11 +9,52 @@ export default {
9
9
  borderBottom: '#996cda',
10
10
  borderRadius: 6,
11
11
  desktop: {
12
+ customer: {
13
+ gap: 12,
14
+ },
12
15
  height: 88,
16
+ partner: {
17
+ gap: 4,
18
+ header: {
19
+ gap: 24,
20
+ },
21
+ padding: 24,
22
+ },
13
23
  },
14
24
  dividerBorderColor: '#996cda',
15
- gap: 4,
25
+ item: {
26
+ customer: {
27
+ container: {
28
+ gap: 4,
29
+ paddingHorizontal: 4,
30
+ paddingVertical: 8,
31
+ },
32
+ mobile: {
33
+ container: {
34
+ paddingHorizontal: 8,
35
+ paddingVertical: 8,
36
+ },
37
+ paddingHorizontal: 4,
38
+ paddingVertical: 24,
39
+ },
40
+ paddingHorizontal: 4,
41
+ paddingVertical: 24,
42
+ },
43
+ partner: {
44
+ container: {
45
+ gap: 4,
46
+ padding: 8,
47
+ },
48
+ paddingHorizontal: 16,
49
+ sub: {
50
+ paddingLeft: 32,
51
+ paddingRight: 16,
52
+ },
53
+ },
54
+ },
16
55
  mobile: {
56
+ gap: 12,
17
57
  height: 64,
58
+ padding: 16,
18
59
  },
19
60
  };
@@ -4,6 +4,7 @@
4
4
  declare const _default: {
5
5
  readonly gap: 8;
6
6
  readonly item: {
7
+ readonly gap: 2;
7
8
  readonly height: 40;
8
9
  readonly radius: 8;
9
10
  readonly width: 40;
@@ -4,6 +4,7 @@
4
4
  export default {
5
5
  gap: 8,
6
6
  item: {
7
+ gap: 2,
7
8
  height: 40,
8
9
  radius: 8,
9
10
  width: 40,
@@ -9,7 +9,7 @@ declare const _default: {
9
9
  readonly borderWidth: 1;
10
10
  readonly gap: 4;
11
11
  readonly height: 48;
12
- readonly padding: 4;
12
+ readonly padding: 2;
13
13
  };
14
14
  readonly height: 40;
15
15
  readonly minWidth: 66;
@@ -9,7 +9,7 @@ export default {
9
9
  borderWidth: 1,
10
10
  gap: 4,
11
11
  height: 48,
12
- padding: 4,
12
+ padding: 2,
13
13
  },
14
14
  height: 40,
15
15
  minWidth: 66,
@@ -4,7 +4,6 @@
4
4
  declare const _default: {
5
5
  readonly divider: {
6
6
  readonly borderWidth: 2;
7
- readonly color: "#ebebeb";
8
7
  };
9
8
  readonly gap: 12;
10
9
  readonly item: {
@@ -4,7 +4,6 @@
4
4
  export default {
5
5
  divider: {
6
6
  borderWidth: 2,
7
- color: '#ebebeb',
8
7
  },
9
8
  gap: 12,
10
9
  item: {
@@ -6,6 +6,7 @@ declare const _default: {
6
6
  readonly borderRadius: 8;
7
7
  readonly gapHorizontal: 8;
8
8
  readonly gapVertical: 2;
9
+ readonly maxWidth: 680;
9
10
  readonly paddingHorizontal: 12;
10
11
  readonly paddingVertical: 8;
11
12
  };
@@ -6,6 +6,7 @@ export default {
6
6
  borderRadius: 8,
7
7
  gapHorizontal: 8,
8
8
  gapVertical: 2,
9
+ maxWidth: 680,
9
10
  paddingHorizontal: 12,
10
11
  paddingVertical: 8,
11
12
  };
@@ -5,7 +5,6 @@ declare const _default: {
5
5
  readonly borderRadius: 8;
6
6
  readonly borderWidth: 2;
7
7
  readonly contentGap: 4;
8
- readonly focus: "#101010";
9
8
  readonly gap: 8;
10
9
  readonly iconButton: {
11
10
  readonly unstyled: {
@@ -5,7 +5,6 @@ export default {
5
5
  borderRadius: 8,
6
6
  borderWidth: 2,
7
7
  contentGap: 4,
8
- focus: '#101010',
9
8
  gap: 8,
10
9
  iconButton: {
11
10
  unstyled: {
@@ -2,7 +2,7 @@
2
2
  * Do not edit directly, this file was auto-generated.
3
3
  */
4
4
  declare const _default: {
5
- readonly borderTopWidth: 2;
5
+ readonly borderTop: 2;
6
6
  readonly gap: 0;
7
7
  readonly indicator: {
8
8
  readonly borderRadius: 4;
@@ -2,7 +2,7 @@
2
2
  * Do not edit directly, this file was auto-generated.
3
3
  */
4
4
  export default {
5
- borderTopWidth: 2,
5
+ borderTop: 2,
6
6
  gap: 0,
7
7
  indicator: {
8
8
  borderRadius: 4,
@@ -0,0 +1,13 @@
1
+ /**
2
+ * Do not edit directly, this file was auto-generated.
3
+ */
4
+ declare const _default: {
5
+ readonly buttonGroup: {
6
+ readonly gap: 12;
7
+ };
8
+ readonly gap: 24;
9
+ readonly item: {
10
+ readonly gap: 20;
11
+ };
12
+ };
13
+ export default _default;
@@ -0,0 +1,12 @@
1
+ /**
2
+ * Do not edit directly, this file was auto-generated.
3
+ */
4
+ export default {
5
+ buttonGroup: {
6
+ gap: 12,
7
+ },
8
+ gap: 24,
9
+ item: {
10
+ gap: 20,
11
+ },
12
+ };
@@ -18,6 +18,9 @@ declare const _default: {
18
18
  readonly borderWidth: 1;
19
19
  readonly borderWidthSelected: 2;
20
20
  readonly gap: 16;
21
+ readonly label: {
22
+ readonly gap: 12;
23
+ };
21
24
  };
22
25
  readonly mobile: {
23
26
  readonly padding: 16;
@@ -18,6 +18,9 @@ export default {
18
18
  borderWidth: 1,
19
19
  borderWidthSelected: 2,
20
20
  gap: 16,
21
+ label: {
22
+ gap: 12,
23
+ },
21
24
  },
22
25
  mobile: {
23
26
  padding: 16,
@@ -12,7 +12,7 @@ declare const _default: {
12
12
  };
13
13
  readonly gap: 8;
14
14
  readonly group: {
15
- readonly gap: 16;
15
+ readonly gap: 12;
16
16
  readonly stack: {
17
17
  readonly gap: 20;
18
18
  };
@@ -12,7 +12,7 @@ export default {
12
12
  },
13
13
  gap: 8,
14
14
  group: {
15
- gap: 16,
15
+ gap: 12,
16
16
  stack: {
17
17
  gap: 20,
18
18
  },
@@ -5,7 +5,6 @@ declare const _default: {
5
5
  readonly borderWidth: 1;
6
6
  readonly divider: {
7
7
  readonly borderWidth: 2;
8
- readonly color: "#101010";
9
8
  };
10
9
  };
11
10
  export default _default;
@@ -5,6 +5,5 @@ export default {
5
5
  borderWidth: 1,
6
6
  divider: {
7
7
  borderWidth: 2,
8
- color: '#101010',
9
8
  },
10
9
  };
@@ -11,6 +11,7 @@ export { default as bottomSheet } from './bottom-sheet';
11
11
  export { default as breadcrumb } from './breadcrumb';
12
12
  export { default as button } from './button';
13
13
  export { default as card } from './card';
14
+ export { default as cardAccordion } from './card-accordion';
14
15
  export { default as cardAction } from './card-action';
15
16
  export { default as cardContent } from './card-content';
16
17
  export { default as carouselControl } from './carousel-control';
@@ -11,6 +11,7 @@ export { default as bottomSheet } from './bottom-sheet';
11
11
  export { default as breadcrumb } from './breadcrumb';
12
12
  export { default as button } from './button';
13
13
  export { default as card } from './card';
14
+ export { default as cardAccordion } from './card-accordion';
14
15
  export { default as cardAction } from './card-action';
15
16
  export { default as cardContent } from './card-content';
16
17
  export { default as carouselControl } from './carousel-control';
@@ -23,6 +23,9 @@ declare const _default: {
23
23
  };
24
24
  };
25
25
  readonly gap: 12;
26
+ readonly indicator: {
27
+ readonly padding: 8;
28
+ };
26
29
  readonly item: {
27
30
  readonly contentGap: 2;
28
31
  readonly functional: {