automoby-kit 1.0.12 → 1.0.13

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 (126) hide show
  1. package/README.md +7 -71
  2. package/dist/cjs/Accordion.js +59 -1
  3. package/dist/cjs/Backdrop.js +26 -1
  4. package/dist/cjs/Breadcrumb.js +61 -1
  5. package/dist/cjs/Button.js +48 -1
  6. package/dist/cjs/Chips.js +117 -1
  7. package/dist/cjs/Divider.js +23 -1
  8. package/dist/cjs/Drawer.js +112 -1
  9. package/dist/cjs/Input.js +84 -1
  10. package/dist/cjs/Menu.js +122 -1
  11. package/dist/cjs/Pagination.js +188 -1
  12. package/dist/cjs/RadioGroup.js +73 -1
  13. package/dist/cjs/Tabs.js +54 -1
  14. package/dist/cjs/Typography.js +63 -1
  15. package/dist/cjs/chevron-left-COj1qGVo.js +16 -0
  16. package/dist/{types → cjs}/components/Accordion/Accordion.d.ts +2 -2
  17. package/dist/{types → cjs}/components/Breadcrumb/Breadcrumb.d.ts +2 -2
  18. package/dist/{types → cjs}/components/Chips/Chips.d.ts +5 -5
  19. package/dist/{types → cjs}/components/Drawer/Drawer.d.ts +2 -2
  20. package/dist/{types → cjs}/components/Input/Input.d.ts +4 -4
  21. package/dist/{types → cjs}/components/Input/Input.stories.d.ts +1 -1
  22. package/dist/{types → cjs}/components/Pagination/Pagination.d.ts +2 -2
  23. package/dist/{types → cjs}/components/RadioGroup/RadioGroup.d.ts +2 -2
  24. package/dist/cjs/components/Select/Select.d.ts +17 -0
  25. package/dist/cjs/components/Select/Select.stories.d.ts +104 -0
  26. package/dist/{types → cjs}/components/Tabs/Tabs.d.ts +2 -2
  27. package/dist/{types → cjs}/contexts/MobileContext.d.ts +1 -0
  28. package/dist/cjs/contexts.js +1491 -1
  29. package/dist/cjs/createLucideIcon-BTjFFtDc.js +114 -0
  30. package/dist/cjs/index.d.ts +34 -0
  31. package/dist/cjs/index.js +52 -1
  32. package/dist/cjs/utils.js +9 -1
  33. package/dist/esm/Accordion.js +57 -1
  34. package/dist/esm/Backdrop.js +24 -1
  35. package/dist/esm/Breadcrumb.js +59 -1
  36. package/dist/esm/Button.js +46 -1
  37. package/dist/esm/Chips.js +112 -1
  38. package/dist/esm/Divider.js +21 -1
  39. package/dist/esm/Drawer.js +110 -1
  40. package/dist/esm/Input.js +82 -1
  41. package/dist/esm/Menu.js +120 -1
  42. package/dist/esm/Pagination.js +186 -1
  43. package/dist/esm/RadioGroup.js +71 -1
  44. package/dist/esm/Tabs.js +52 -1
  45. package/dist/esm/Typography.js +60 -1
  46. package/dist/esm/components/Accordion/Accordion.d.ts +25 -0
  47. package/dist/esm/components/Accordion/Accordion.stories.d.ts +175 -0
  48. package/dist/esm/components/Backdrop/Backdrop.d.ts +20 -0
  49. package/dist/esm/components/Backdrop/Backdrop.stories.d.ts +9 -0
  50. package/dist/esm/components/Breadcrumb/Breadcrumb.d.ts +16 -0
  51. package/dist/esm/components/Breadcrumb/Breadcrumb.stories.d.ts +177 -0
  52. package/dist/esm/components/Button/Button.d.ts +13 -0
  53. package/dist/esm/components/Button/Button.stories.d.ts +100 -0
  54. package/dist/esm/components/Chips/Chips.d.ts +37 -0
  55. package/dist/esm/components/Chips/Chips.stories.d.ts +90 -0
  56. package/dist/esm/components/Divider/Divider.d.ts +25 -0
  57. package/dist/esm/components/Divider/Divider.stories.d.ts +88 -0
  58. package/dist/esm/components/Drawer/Drawer.d.ts +16 -0
  59. package/dist/esm/components/Drawer/Drawer.stories.d.ts +128 -0
  60. package/dist/esm/components/Input/Input.d.ts +24 -0
  61. package/dist/esm/components/Input/Input.stories.d.ts +131 -0
  62. package/dist/esm/components/Menu/Menu.d.ts +39 -0
  63. package/dist/esm/components/Menu/Menu.stories.d.ts +89 -0
  64. package/dist/esm/components/Pagination/Pagination.d.ts +12 -0
  65. package/dist/esm/components/Pagination/Pagination.stories.d.ts +76 -0
  66. package/dist/esm/components/RadioGroup/RadioGroup.d.ts +55 -0
  67. package/dist/esm/components/RadioGroup/RadioGroup.stories.d.ts +86 -0
  68. package/dist/esm/components/Select/Select.d.ts +17 -0
  69. package/dist/esm/components/Select/Select.stories.d.ts +104 -0
  70. package/dist/esm/components/Tabs/Tabs.d.ts +43 -0
  71. package/dist/esm/components/Tabs/Tabs.stories.d.ts +66 -0
  72. package/dist/esm/components/Typography/Typography.d.ts +9 -0
  73. package/dist/esm/components/Typography/Typography.stories.d.ts +57 -0
  74. package/dist/esm/contexts/MobileContext.d.ts +13 -0
  75. package/dist/esm/contexts.js +1485 -1
  76. package/dist/esm/index.d.ts +34 -0
  77. package/dist/esm/index.js +37 -1
  78. package/dist/esm/utils/cn.d.ts +2 -0
  79. package/dist/esm/utils.js +7 -1
  80. package/package.json +2 -7
  81. package/dist/cjs/ProtectedComponent.js +0 -1
  82. package/dist/cjs/licensing.js +0 -1
  83. package/dist/esm/ProtectedComponent.js +0 -1
  84. package/dist/esm/licensing.js +0 -1
  85. package/dist/types/Accordion.js +0 -54
  86. package/dist/types/Backdrop.js +0 -24
  87. package/dist/types/Breadcrumb.js +0 -56
  88. package/dist/types/Button.js +0 -46
  89. package/dist/types/Chips.js +0 -109
  90. package/dist/types/Divider.js +0 -21
  91. package/dist/types/Drawer.js +0 -107
  92. package/dist/types/Input.js +0 -78
  93. package/dist/types/Menu.js +0 -120
  94. package/dist/types/Pagination.js +0 -183
  95. package/dist/types/ProtectedComponent.js +0 -33
  96. package/dist/types/RadioGroup.js +0 -68
  97. package/dist/types/Tabs.js +0 -49
  98. package/dist/types/Typography.js +0 -60
  99. package/dist/types/components/ProtectedComponent.d.ts +0 -5
  100. package/dist/types/contexts.js +0 -1478
  101. package/dist/types/index.d.ts +0 -36
  102. package/dist/types/index.js +0 -38
  103. package/dist/types/licensing/LicenseManager.d.ts +0 -41
  104. package/dist/types/licensing/index.d.ts +0 -30
  105. package/dist/types/licensing.js +0 -125
  106. package/dist/types/utils.js +0 -7
  107. /package/dist/{types → cjs}/components/Accordion/Accordion.stories.d.ts +0 -0
  108. /package/dist/{types → cjs}/components/Backdrop/Backdrop.d.ts +0 -0
  109. /package/dist/{types → cjs}/components/Backdrop/Backdrop.stories.d.ts +0 -0
  110. /package/dist/{types → cjs}/components/Breadcrumb/Breadcrumb.stories.d.ts +0 -0
  111. /package/dist/{types → cjs}/components/Button/Button.d.ts +0 -0
  112. /package/dist/{types → cjs}/components/Button/Button.stories.d.ts +0 -0
  113. /package/dist/{types → cjs}/components/Chips/Chips.stories.d.ts +0 -0
  114. /package/dist/{types → cjs}/components/Divider/Divider.d.ts +0 -0
  115. /package/dist/{types → cjs}/components/Divider/Divider.stories.d.ts +0 -0
  116. /package/dist/{types → cjs}/components/Drawer/Drawer.stories.d.ts +0 -0
  117. /package/dist/{types → cjs}/components/Menu/Menu.d.ts +0 -0
  118. /package/dist/{types → cjs}/components/Menu/Menu.stories.d.ts +0 -0
  119. /package/dist/{types → cjs}/components/Pagination/Pagination.stories.d.ts +0 -0
  120. /package/dist/{types → cjs}/components/RadioGroup/RadioGroup.stories.d.ts +0 -0
  121. /package/dist/{types → cjs}/components/Tabs/Tabs.stories.d.ts +0 -0
  122. /package/dist/{types → cjs}/components/Typography/Typography.d.ts +0 -0
  123. /package/dist/{types → cjs}/components/Typography/Typography.stories.d.ts +0 -0
  124. /package/dist/{types → cjs}/utils/cn.d.ts +0 -0
  125. /package/dist/{types → esm}/chevron-left-Ck6O99eF.js +0 -0
  126. /package/dist/{types → esm}/createLucideIcon-D-q73LTT.js +0 -0
@@ -0,0 +1,76 @@
1
+ declare const _default: {
2
+ title: string;
3
+ component: import("react").FC<import("@/components/Pagination/Pagination").UnifiedPaginationProps>;
4
+ parameters: {
5
+ docs: {
6
+ description: {
7
+ component: string;
8
+ };
9
+ };
10
+ };
11
+ argTypes: {
12
+ pageCount: {
13
+ name: string;
14
+ control: {
15
+ type: string;
16
+ min: number;
17
+ max: number;
18
+ };
19
+ defaultValue: number;
20
+ };
21
+ defaultPage: {
22
+ name: string;
23
+ control: {
24
+ type: string;
25
+ min: number;
26
+ max: number;
27
+ };
28
+ defaultValue: number;
29
+ };
30
+ page: {
31
+ name: string;
32
+ control: {
33
+ type: string;
34
+ min: number;
35
+ max: number;
36
+ };
37
+ defaultValue: undefined;
38
+ };
39
+ isMobile: {
40
+ name: string;
41
+ control: {
42
+ type: string;
43
+ };
44
+ defaultValue: boolean;
45
+ description: string;
46
+ };
47
+ };
48
+ };
49
+ export default _default;
50
+ type StoryProps = {
51
+ pageCount: number;
52
+ defaultPage: number;
53
+ isMobile: boolean;
54
+ };
55
+ export declare const Uncontrolled: {
56
+ ({ pageCount, defaultPage, isMobile, }: StoryProps): import("react/jsx-runtime").JSX.Element;
57
+ storyName: string;
58
+ args: {
59
+ pageCount: number;
60
+ defaultPage: number;
61
+ isMobile: boolean;
62
+ };
63
+ };
64
+ export declare const Controlled: {
65
+ ({ pageCount, defaultPage, isMobile, }: StoryProps): import("react/jsx-runtime").JSX.Element;
66
+ storyName: string;
67
+ args: {
68
+ pageCount: number;
69
+ defaultPage: number;
70
+ isMobile: boolean;
71
+ };
72
+ };
73
+ export declare const ResponsiveComparison: {
74
+ (): import("react/jsx-runtime").JSX.Element;
75
+ storyName: string;
76
+ };
@@ -0,0 +1,55 @@
1
+ import React from 'react';
2
+ export interface RadioOption {
3
+ /**
4
+ * Unique identifier for the radio option
5
+ */
6
+ id: string;
7
+ /**
8
+ * Display label for the option
9
+ */
10
+ label: string;
11
+ /**
12
+ * Optional icon element
13
+ */
14
+ icon?: React.ReactNode;
15
+ /**
16
+ * Whether this option is disabled
17
+ */
18
+ disabled?: boolean;
19
+ }
20
+ export interface RadioGroupProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'onChange'> {
21
+ /**
22
+ * Array of radio options
23
+ */
24
+ options: RadioOption[];
25
+ /**
26
+ * Currently selected option ID
27
+ */
28
+ value?: string;
29
+ /**
30
+ * Callback when selection changes
31
+ */
32
+ onChange?: (value: string) => void;
33
+ /**
34
+ * Name attribute for the radio group
35
+ */
36
+ name: string;
37
+ /**
38
+ * Whether the entire group is disabled
39
+ */
40
+ disabled?: boolean;
41
+ /**
42
+ * Custom class name
43
+ */
44
+ className?: string;
45
+ /**
46
+ * Whether the component is in mobile mode (optional, auto-detected if not provided)
47
+ */
48
+ isMobile?: boolean;
49
+ /**
50
+ * Layout direction of radio options
51
+ */
52
+ direction?: 'vertical' | 'horizontal';
53
+ }
54
+ declare const RadioGroup: React.ForwardRefExoticComponent<RadioGroupProps & React.RefAttributes<HTMLDivElement>>;
55
+ export { RadioGroup };
@@ -0,0 +1,86 @@
1
+ import React from 'react';
2
+ declare const _default: {
3
+ title: string;
4
+ component: React.ForwardRefExoticComponent<import("@/components/RadioGroup/RadioGroup").RadioGroupProps & React.RefAttributes<HTMLDivElement>>;
5
+ parameters: {
6
+ docs: {
7
+ description: {
8
+ component: string;
9
+ };
10
+ };
11
+ };
12
+ argTypes: {
13
+ value: {
14
+ name: string;
15
+ control: {
16
+ type: string;
17
+ };
18
+ description: string;
19
+ };
20
+ disabled: {
21
+ name: string;
22
+ control: {
23
+ type: string;
24
+ };
25
+ defaultValue: boolean;
26
+ description: string;
27
+ };
28
+ isMobile: {
29
+ name: string;
30
+ control: {
31
+ type: string;
32
+ };
33
+ defaultValue: boolean;
34
+ description: string;
35
+ };
36
+ direction: {
37
+ name: string;
38
+ control: {
39
+ type: string;
40
+ };
41
+ options: string[];
42
+ defaultValue: string;
43
+ description: string;
44
+ };
45
+ };
46
+ };
47
+ export default _default;
48
+ type StoryProps = {
49
+ value: string;
50
+ disabled: boolean;
51
+ isMobile: boolean;
52
+ direction: 'vertical' | 'horizontal';
53
+ };
54
+ export declare const Playground: {
55
+ ({ value: valueArg, disabled, isMobile, direction, }: StoryProps): import("react/jsx-runtime").JSX.Element;
56
+ storyName: string;
57
+ args: {
58
+ value: string;
59
+ disabled: boolean;
60
+ isMobile: boolean;
61
+ };
62
+ };
63
+ export declare const ResponsiveComparison: {
64
+ (): import("react/jsx-runtime").JSX.Element;
65
+ storyName: string;
66
+ };
67
+ export declare const WithoutIcons: {
68
+ (): import("react/jsx-runtime").JSX.Element;
69
+ storyName: string;
70
+ };
71
+ export declare const DisabledStates: {
72
+ (): import("react/jsx-runtime").JSX.Element;
73
+ storyName: string;
74
+ };
75
+ export declare const AutoResponsive: {
76
+ (): import("react/jsx-runtime").JSX.Element;
77
+ storyName: string;
78
+ };
79
+ export declare const InteractiveExample: {
80
+ (): import("react/jsx-runtime").JSX.Element;
81
+ storyName: string;
82
+ };
83
+ export declare const AllStates: {
84
+ (): import("react/jsx-runtime").JSX.Element;
85
+ storyName: string;
86
+ };
@@ -0,0 +1,17 @@
1
+ import React from 'react';
2
+ export interface SelectOption {
3
+ value: string;
4
+ label: string;
5
+ }
6
+ export interface SelectProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'onChange'> {
7
+ label: string;
8
+ placeholder?: string;
9
+ options: SelectOption[];
10
+ value?: string;
11
+ defaultValue?: string;
12
+ onChange?: (value: string) => void;
13
+ disabled?: boolean;
14
+ error?: boolean;
15
+ helperText?: string;
16
+ }
17
+ export declare const Select: React.ForwardRefExoticComponent<SelectProps & React.RefAttributes<HTMLDivElement>>;
@@ -0,0 +1,104 @@
1
+ import React from 'react';
2
+ declare const _default: {
3
+ title: string;
4
+ component: React.ForwardRefExoticComponent<import("@/components/Select/Select").SelectProps & React.RefAttributes<HTMLDivElement>>;
5
+ parameters: {
6
+ docs: {
7
+ description: {
8
+ component: string;
9
+ };
10
+ };
11
+ };
12
+ argTypes: {
13
+ label: {
14
+ name: string;
15
+ control: {
16
+ type: string;
17
+ };
18
+ defaultValue: string;
19
+ };
20
+ placeholder: {
21
+ name: string;
22
+ control: {
23
+ type: string;
24
+ };
25
+ defaultValue: string;
26
+ };
27
+ value: {
28
+ name: string;
29
+ description: string;
30
+ control: {
31
+ type: string;
32
+ };
33
+ options: string[];
34
+ };
35
+ disabled: {
36
+ name: string;
37
+ control: {
38
+ type: string;
39
+ };
40
+ defaultValue: boolean;
41
+ };
42
+ error: {
43
+ name: string;
44
+ control: {
45
+ type: string;
46
+ };
47
+ defaultValue: boolean;
48
+ };
49
+ helperText: {
50
+ name: string;
51
+ control: {
52
+ type: string;
53
+ };
54
+ };
55
+ };
56
+ };
57
+ export default _default;
58
+ type StoryProps = {
59
+ label: string;
60
+ placeholder: string;
61
+ value: string;
62
+ disabled: boolean;
63
+ error: boolean;
64
+ helperText?: string;
65
+ };
66
+ export declare const Playground: {
67
+ (args: StoryProps): import("react/jsx-runtime").JSX.Element;
68
+ storyName: string;
69
+ args: {
70
+ label: string;
71
+ placeholder: string;
72
+ value: string;
73
+ disabled: boolean;
74
+ error: boolean;
75
+ };
76
+ };
77
+ export declare const BasicUsage: {
78
+ (): import("react/jsx-runtime").JSX.Element;
79
+ storyName: string;
80
+ };
81
+ export declare const States: {
82
+ (): import("react/jsx-runtime").JSX.Element;
83
+ storyName: string;
84
+ };
85
+ export declare const WithHelperText: {
86
+ (): import("react/jsx-runtime").JSX.Element;
87
+ storyName: string;
88
+ };
89
+ export declare const MobileView: {
90
+ (): import("react/jsx-runtime").JSX.Element;
91
+ storyName: string;
92
+ };
93
+ export declare const LongList: {
94
+ (): import("react/jsx-runtime").JSX.Element;
95
+ storyName: string;
96
+ };
97
+ export declare const MultipleSelects: {
98
+ (): import("react/jsx-runtime").JSX.Element;
99
+ storyName: string;
100
+ };
101
+ export declare const ControlledVsUncontrolled: {
102
+ (): import("react/jsx-runtime").JSX.Element;
103
+ storyName: string;
104
+ };
@@ -0,0 +1,43 @@
1
+ import React from 'react';
2
+ export interface TabItem {
3
+ /**
4
+ * Unique identifier for the tab
5
+ */
6
+ id: string;
7
+ /**
8
+ * Display label for the tab
9
+ */
10
+ label: string;
11
+ /**
12
+ * Badge count number (optional)
13
+ */
14
+ count?: number;
15
+ /**
16
+ * Whether the tab is disabled
17
+ */
18
+ disabled?: boolean;
19
+ }
20
+ export interface TabsProps extends React.HTMLAttributes<HTMLDivElement> {
21
+ /**
22
+ * Array of tab items
23
+ */
24
+ items: TabItem[];
25
+ /**
26
+ * Currently active tab ID
27
+ */
28
+ activeTab: string;
29
+ /**
30
+ * Callback when tab is clicked
31
+ */
32
+ onTabChange: (tabId: string) => void;
33
+ /**
34
+ * Custom class name
35
+ */
36
+ className?: string;
37
+ /**
38
+ * Whether the component is in mobile mode (optional, auto-detected if not provided)
39
+ */
40
+ isMobile?: boolean;
41
+ }
42
+ declare const Tabs: React.ForwardRefExoticComponent<TabsProps & React.RefAttributes<HTMLDivElement>>;
43
+ export { Tabs };
@@ -0,0 +1,66 @@
1
+ import React from 'react';
2
+ declare const _default: {
3
+ title: string;
4
+ component: React.ForwardRefExoticComponent<import("@/components/Tabs/Tabs").TabsProps & React.RefAttributes<HTMLDivElement>>;
5
+ parameters: {
6
+ docs: {
7
+ description: {
8
+ component: string;
9
+ };
10
+ };
11
+ };
12
+ argTypes: {
13
+ activeTab: {
14
+ name: string;
15
+ control: {
16
+ type: string;
17
+ };
18
+ description: string;
19
+ };
20
+ isMobile: {
21
+ name: string;
22
+ control: {
23
+ type: string;
24
+ };
25
+ defaultValue: boolean;
26
+ description: string;
27
+ };
28
+ };
29
+ };
30
+ export default _default;
31
+ type StoryProps = {
32
+ activeTab: string;
33
+ isMobile: boolean;
34
+ };
35
+ export declare const Playground: {
36
+ ({ activeTab: activeTabArg, isMobile, }: StoryProps): import("react/jsx-runtime").JSX.Element;
37
+ storyName: string;
38
+ args: {
39
+ activeTab: string;
40
+ isMobile: boolean;
41
+ };
42
+ };
43
+ export declare const ResponsiveComparison: {
44
+ (): import("react/jsx-runtime").JSX.Element;
45
+ storyName: string;
46
+ };
47
+ export declare const WithoutBadges: {
48
+ (): import("react/jsx-runtime").JSX.Element;
49
+ storyName: string;
50
+ };
51
+ export declare const MixedCounts: {
52
+ (): import("react/jsx-runtime").JSX.Element;
53
+ storyName: string;
54
+ };
55
+ export declare const DisabledTabs: {
56
+ (): import("react/jsx-runtime").JSX.Element;
57
+ storyName: string;
58
+ };
59
+ export declare const AutoResponsive: {
60
+ (): import("react/jsx-runtime").JSX.Element;
61
+ storyName: string;
62
+ };
63
+ export declare const InteractiveExample: {
64
+ (): import("react/jsx-runtime").JSX.Element;
65
+ storyName: string;
66
+ };
@@ -0,0 +1,9 @@
1
+ import React from 'react';
2
+ export type TypographyVariant = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'body-xl-heavy' | 'body-l-heavy' | 'body-l-bold' | 'body-l-medium' | 'body-m-heavy' | 'body-m-bold' | 'body-m-medium' | 'body-s-heavy' | 'body-s-bold' | 'body-s-medium' | 'body-ms-bold' | 'body-ms-medium' | 'body-xs-bold' | 'body-xs-medium' | 'body-t-bold' | 'body-t-medium' | 'body-ss-medium';
3
+ export interface TypographyProps extends React.HTMLAttributes<HTMLElement> {
4
+ variant?: TypographyVariant;
5
+ color?: 'primary' | 'secondary' | 'neutral-darker' | 'neutral-dark' | 'neutral-main' | 'white' | 'inherit';
6
+ as?: React.ElementType;
7
+ }
8
+ export declare const getTypographyClasses: (variant: TypographyVariant) => string;
9
+ export declare const Typography: React.ForwardRefExoticComponent<TypographyProps & React.RefAttributes<HTMLElement>>;
@@ -0,0 +1,57 @@
1
+ import { TypographyProps } from './Typography';
2
+ declare const _default: {
3
+ title: string;
4
+ component: import("react").ForwardRefExoticComponent<TypographyProps & import("react").RefAttributes<HTMLElement>>;
5
+ parameters: {
6
+ docs: {
7
+ description: {
8
+ component: string;
9
+ };
10
+ };
11
+ };
12
+ argTypes: {
13
+ variant: {
14
+ name: string;
15
+ control: {
16
+ type: string;
17
+ };
18
+ options: string[];
19
+ };
20
+ color: {
21
+ name: string;
22
+ control: {
23
+ type: string;
24
+ };
25
+ options: string[];
26
+ };
27
+ children: {
28
+ name: string;
29
+ control: {
30
+ type: string;
31
+ };
32
+ defaultValue: string;
33
+ };
34
+ };
35
+ };
36
+ export default _default;
37
+ export declare const Playground: {
38
+ (args: TypographyProps): import("react/jsx-runtime").JSX.Element;
39
+ storyName: string;
40
+ args: {
41
+ variant: string;
42
+ children: string;
43
+ color: string;
44
+ };
45
+ };
46
+ export declare const AllHeadings: {
47
+ (): import("react/jsx-runtime").JSX.Element;
48
+ storyName: string;
49
+ };
50
+ export declare const BodyCopyVariants: {
51
+ (): import("react/jsx-runtime").JSX.Element;
52
+ storyName: string;
53
+ };
54
+ export declare const ColorVariants: {
55
+ (): import("react/jsx-runtime").JSX.Element;
56
+ storyName: string;
57
+ };
@@ -0,0 +1,13 @@
1
+ import { ReactNode } from 'react';
2
+ interface MobileContextValue {
3
+ isMobile: boolean;
4
+ userAgent: string;
5
+ }
6
+ interface MobileProviderProps {
7
+ userAgent: string;
8
+ children: ReactNode;
9
+ }
10
+ declare const MobileContext: import("react").Context<MobileContextValue | undefined>;
11
+ export declare const MobileProvider: ({ userAgent, children, }: MobileProviderProps) => import("react/jsx-runtime").JSX.Element;
12
+ export declare const useMobile: () => boolean;
13
+ export default MobileContext;