@4alldigital/foundation-ui--gamma 1.53.4 → 1.53.6

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 (37) hide show
  1. package/dist/foundation-ui.css +1 -1
  2. package/dist/index.esm.js +2 -2
  3. package/dist/index.js +2 -2
  4. package/dist/types/lib/components/Card/Card.types.d.ts +1 -0
  5. package/dist/types/lib/components/Card/types/CardIcon/CardIcon.d.ts +1 -1
  6. package/dist/types/lib/components/FullScreenVideoModal/FullScreenVideoModal.d.ts +8 -0
  7. package/dist/types/lib/components/FullScreenVideoModal/FullScreenVideoModal.types.d.ts +8 -0
  8. package/dist/types/lib/components/FullScreenVideoModal/index.d.ts +1 -0
  9. package/dist/types/lib/components/ScheduleItem/ScheduleItem.d.ts +1 -1
  10. package/dist/types/lib/components/Video/Video.types.d.ts +130 -1
  11. package/dist/types/lib/components/index.d.ts +5 -0
  12. package/dist/types/lib/features/Search/views/Sidebar/Sidebar.d.ts +8 -0
  13. package/dist/types/lib/features/Search/views/Sidebar/Sidebar.types.d.ts +3 -0
  14. package/dist/types/lib/features/Search/views/Sidebar/index.d.ts +1 -0
  15. package/dist/types/lib/setupTests.d.ts +1 -0
  16. package/dist/types/lib/stories/Page.d.ts +6 -0
  17. package/dist/types/lib/templates/HomeScreen/HomeScreen.d.ts +1 -1
  18. package/dist/types/lib/templates/HomeScreen/HomeScreen.types.d.ts +2 -0
  19. package/dist/types/lib/templates/WorkoutScreen/WorkoutScreen.d.ts +1 -1
  20. package/dist/types/lib/templates/WorkoutScreen/WorkoutScreen.types.d.ts +1 -0
  21. package/dist/types/lib/translations/en.d.ts +2 -0
  22. package/dist/types/packages/alpha/src/index.d.ts +4 -0
  23. package/dist/types/packages/alpha/theme/index.d.ts +116 -0
  24. package/dist/types/packages/alpha/theme/styles/buttons/buttons.themes.d.ts +4 -0
  25. package/dist/types/packages/alpha/theme/styles/colors/colors.themes.d.ts +2 -0
  26. package/dist/types/packages/alpha/theme/styles/fonts/fonts.themes.d.ts +9 -0
  27. package/dist/types/packages/alpha/theme/styles/settings/settings.themes.d.ts +245 -0
  28. package/dist/types/packages/beta/src/index.d.ts +3 -0
  29. package/dist/types/packages/beta/theme/index.d.ts +116 -0
  30. package/dist/types/packages/beta/theme/styles/buttons/buttons.themes.d.ts +4 -0
  31. package/dist/types/packages/beta/theme/styles/colors/colors.themes.d.ts +2 -0
  32. package/dist/types/packages/beta/theme/styles/fonts/fonts.themes.d.ts +9 -0
  33. package/dist/types/packages/beta/theme/styles/settings/settings.themes.d.ts +246 -0
  34. package/dist/types/packages/default/src/index.d.ts +4 -0
  35. package/dist/types/packages/default/theme/index.d.ts +116 -0
  36. package/dist/types/packages/default/theme/styles/cards/cards.themes.d.ts +7 -0
  37. package/package.json +4 -2
@@ -36,6 +36,7 @@ export interface Actions {
36
36
  export interface CardData {
37
37
  id: string;
38
38
  title?: string;
39
+ subtitle?: string;
39
40
  description?: string;
40
41
  image?: ImageData;
41
42
  video?: string;
@@ -1,7 +1,7 @@
1
1
  import React from 'react';
2
2
  import { Props } from './CardIcon.types';
3
3
  declare const CardIcon: {
4
- ({ id, title, description, icon, className, onClick, moreTitle, align, }: Props): React.ReactElement;
4
+ ({ id, title, subtitle, description, icon, className, onClick, moreTitle, align, }: Props): React.ReactElement;
5
5
  displayName: string;
6
6
  };
7
7
  export default CardIcon;
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ import { Props } from './FullScreenVideoModal.types';
3
+ declare const FullScreenVideoModal: {
4
+ ({ testID, modalOpen, videoProps, ariaHideApp, onCloseCallback, }: Props): React.ReactElement;
5
+ displayName: string;
6
+ };
7
+ export default FullScreenVideoModal;
8
+ export type { Props };
@@ -0,0 +1,8 @@
1
+ import { Props as VideoProps } from '../Video/Video.types';
2
+ export interface Props {
3
+ testID?: string;
4
+ videoProps: VideoProps;
5
+ ariaHideApp?: boolean;
6
+ modalOpen?: boolean;
7
+ onCloseCallback?: () => void;
8
+ }
@@ -0,0 +1 @@
1
+ export { default } from './FullScreenVideoModal';
@@ -1,7 +1,7 @@
1
1
  import React from 'react';
2
2
  import { Props } from './ScheduleItem.types';
3
3
  declare const ScheduleItem: {
4
- ({ testID, end, live, start, title }: Props): React.ReactElement;
4
+ ({ testID, end, live, start, title, video }: Props): React.ReactElement;
5
5
  displayName: string;
6
6
  };
7
7
  export default ScheduleItem;
@@ -1,3 +1,130 @@
1
+ interface VideoJsPlayerOptions {
2
+ autoplay?: boolean;
3
+ controls?: boolean;
4
+ height?: number;
5
+ loop?: boolean;
6
+ muted?: boolean;
7
+ poster?: string;
8
+ preload?: 'auto' | 'metadata' | 'none';
9
+ sources?: {
10
+ src: string;
11
+ type?: string;
12
+ }[];
13
+ width?: number;
14
+ aspectRatio?: string;
15
+ controlBar?: {
16
+ remainingTimeDisplay?: {
17
+ displayNegative: boolean;
18
+ };
19
+ skipButtons?: {
20
+ forward: number;
21
+ backward: number;
22
+ };
23
+ volumePanel?: {
24
+ inline: boolean;
25
+ };
26
+ };
27
+ html5?: {
28
+ hls?: {
29
+ enableLowInitialPlaylist: boolean;
30
+ };
31
+ };
32
+ playbackRates?: number[];
33
+ plugins?: any[];
34
+ responsive?: boolean;
35
+ fill?: boolean;
36
+ fluid?: boolean;
37
+ preferFullWindow?: boolean;
38
+ audioOnlyMode?: boolean;
39
+ audioPosterMode?: boolean;
40
+ enableSmoothSeeking?: boolean;
41
+ experimentalSvgIcons?: boolean;
42
+ fullscreen?: {
43
+ options: {
44
+ navigationUI: 'hide' | 'show';
45
+ };
46
+ };
47
+ liveui?: boolean;
48
+ liveTracker?: {
49
+ trackingThreshold: number;
50
+ liveTolerance: number;
51
+ };
52
+ nativeControlsForTouch?: boolean;
53
+ normalizeAutoplay?: boolean;
54
+ notSupportedMessage?: string;
55
+ noUITitleAttributes?: boolean;
56
+ playsinline?: boolean;
57
+ techCanOverridePoster?: boolean;
58
+ techOrder?: string[];
59
+ userActions?: {
60
+ click?: boolean;
61
+ doubleClick?: boolean;
62
+ hotkeys?: {
63
+ fullscreenKey: string;
64
+ muteKey: string;
65
+ playPauseKey: string;
66
+ };
67
+ };
68
+ language?: string;
69
+ languages?: {
70
+ [key: string]: {
71
+ Play: string;
72
+ Pause: string;
73
+ Mute: string;
74
+ Unmute: string;
75
+ Fullscreen: string;
76
+ PictureInPicture: string;
77
+ RemainingTime: string;
78
+ TimeDivider: string;
79
+ Time: string;
80
+ Live: string;
81
+ Volume: string;
82
+ Aired: string;
83
+ PlaybackRate: string;
84
+ Subtitles: string;
85
+ AudioTracks: string;
86
+ Settings: string;
87
+ Quality: string;
88
+ Speed: string;
89
+ Normal: string;
90
+ QualityBadge: string;
91
+ Rewind: string;
92
+ Forward: string;
93
+ FullscreenOff: string;
94
+ PictureInPictureOn: string;
95
+ PictureInPictureOff: string;
96
+ VolumePanel: string;
97
+ AudioTrack: string;
98
+ YouAreWatchingLive: string;
99
+ YouAreWatchingLiveEvent: string;
100
+ YouAreWatchingLiveStream: string;
101
+ LiveEvent: string;
102
+ LiveStream: string;
103
+ };
104
+ };
105
+ inactivityTimeout?: number;
106
+ breakpoints?: {
107
+ [key: string]: {
108
+ width: number;
109
+ height: number;
110
+ };
111
+ };
112
+ controlBarBreakpoints?: {
113
+ [key: string]: {
114
+ width: number;
115
+ height: number;
116
+ };
117
+ };
118
+ playbackRate?: number;
119
+ onReady?: (player: any) => void;
120
+ onPlay?: (event: Event) => void;
121
+ onPause?: (event: Event) => void;
122
+ onEnded?: (event: Event) => void;
123
+ onError?: (event: Event) => void;
124
+ onTimeUpdate?: (event: Event) => void;
125
+ onVolumeChange?: (event: Event) => void;
126
+ onFullscreenChange?: (event: Event) => void;
127
+ }
1
128
  export interface Props {
2
129
  url?: string;
3
130
  autoPlay?: boolean;
@@ -9,7 +136,7 @@ export interface Props {
9
136
  type?: string;
10
137
  }[];
11
138
  className?: string;
12
- options?: any;
139
+ options?: VideoJsPlayerOptions;
13
140
  isYoutube?: boolean;
14
141
  onReady?: (player: any) => void;
15
142
  onExitFullScreenCallback?: () => void;
@@ -17,4 +144,6 @@ export interface Props {
17
144
  rounded?: boolean;
18
145
  aspectRatioValue?: '16/9' | '4/3' | '1/1' | '3/4' | '9/16' | '16/7' | '16/5';
19
146
  fullScreenOnly?: boolean;
147
+ isModal?: boolean;
20
148
  }
149
+ export {};
@@ -51,6 +51,7 @@ export { default as Header } from './Header';
51
51
  export { default as Loader } from './Loader';
52
52
  export { default as Video } from './Video';
53
53
  export { default as OTPInput } from './OTPInput';
54
+ export { default as FullScreenVideoModal } from './FullScreenVideoModal';
54
55
  export type { Props as BlockquoteProps } from './Blockquote/Blockquote.types';
55
56
  export type { Props as ButtonProps } from './Button/Button.types';
56
57
  export { BTN_TYPES, BTN_VARIANTS, BTN_SIZES } from './Button/Button.types';
@@ -109,3 +110,7 @@ export type { Props as HtmlContentProps } from './HtmlContent/HtmlContent.types'
109
110
  export type { Props as CardGridProps } from './CardGrid/CardGrid.types';
110
111
  export type { Props as ScreenProps } from './Screen/Screen.types';
111
112
  export type { Props as CarouselProps } from './Carousel/Carousel.types';
113
+ export type { Props as AccordionProps } from './Accordion/Accordion.types';
114
+ export type { Props as SubscriptionManagerProps } from './SubscriptionManager/SubscriptionManager.types';
115
+ export type { Props as FullScreenVideoModalProps } from './FullScreenVideoModal/FullScreenVideoModal.types';
116
+ export type { Props as HeaderProps } from './Header/Header.types';
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ import { Props } from './Sidebar.types';
3
+ declare const Sidebar: {
4
+ ({ foo }: Props): React.ReactElement;
5
+ displayName: string;
6
+ };
7
+ export default Sidebar;
8
+ export type { Props };
@@ -0,0 +1,3 @@
1
+ export interface Props {
2
+ foo: string;
3
+ }
@@ -0,0 +1 @@
1
+ export { default } from './Sidebar';
@@ -0,0 +1 @@
1
+ import '@testing-library/jest-dom';
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ type Props = {
3
+ children: React.ReactNode;
4
+ };
5
+ export declare const Page: ({ children }: Props) => React.ReactElement;
6
+ export {};
@@ -1,7 +1,7 @@
1
1
  import React from 'react';
2
2
  import { Props } from './HomeScreen.types';
3
3
  declare const HomeScreen: {
4
- ({ testID, image, panelVideoProps, panelFeatureProps, panelCardsProps, panelHerosProps, panelDataCardsProps, panelProductProps, }: Props): React.ReactElement;
4
+ ({ testID, image, panelVideoProps, panelFeatureProps, panelCardsProps, panelHerosProps, panelSubscriptionsProps, panelTestimonialsProps, panelDataCardsProps, panelProductProps, }: Props): React.ReactElement;
5
5
  displayName: string;
6
6
  };
7
7
  export default HomeScreen;
@@ -11,6 +11,8 @@ export interface Props {
11
11
  panelFeatureProps?: panelFeatureProps;
12
12
  panelCardsProps?: panelCardsProps;
13
13
  panelHerosProps?: panelHerosProps[];
14
+ panelSubscriptionsProps?: panelCardsProps;
15
+ panelTestimonialsProps?: panelCardsProps;
14
16
  panelDataCardsProps?: panelCardsProps;
15
17
  panelProductProps?: panelProductProps;
16
18
  }
@@ -1,7 +1,7 @@
1
1
  import React from 'react';
2
2
  import { Props } from './WorkoutScreen.types';
3
3
  declare const WorkoutScreen: {
4
- ({ testID, id, title, image, description, created, duration, level, section, video, category, type, likeCallback, completedCallback, favouriteCallback, isLiked, isCompleted, isFavourite, relatedWorkouts, hasActiveSubscription, htmlDetails, noSubActionCallback, }: Props): React.ReactElement;
4
+ ({ testID, id, title, image, description, created, duration, level, section, video, videoType, category, type, likeCallback, completedCallback, favouriteCallback, isLiked, isCompleted, isFavourite, relatedWorkouts, hasActiveSubscription, htmlDetails, noSubActionCallback, }: Props): React.ReactElement;
5
5
  displayName: string;
6
6
  };
7
7
  export default WorkoutScreen;
@@ -10,6 +10,7 @@ export interface Props {
10
10
  level?: string;
11
11
  section?: string;
12
12
  video: string;
13
+ videoType?: string;
13
14
  videoPoster?: string;
14
15
  videoDownload?: string;
15
16
  category?: string;
@@ -162,6 +162,7 @@ declare const strings: {
162
162
  AUTH_ACCOUNT_EXISTS_MESSAGE: string;
163
163
  };
164
164
  UI: {
165
+ NEXT_WEEKS_CLASS: string;
165
166
  SHOW: string;
166
167
  NO_IMAGE: string;
167
168
  UPLOAD: string;
@@ -528,6 +529,7 @@ declare const strings: {
528
529
  PROMO_INFO: string;
529
530
  REQUEST_PROMO_INFO: string;
530
531
  LOGGING_OUT: string;
532
+ LAUNCH_PLAYBACK: string;
531
533
  };
532
534
  ERRORS: {
533
535
  GENERIC_ERROR: string;
@@ -0,0 +1,4 @@
1
+ import '../theme/base.css';
2
+ import '../theme/fonts.css';
3
+ export * from '../../../lib';
4
+ export { default as theme } from '../theme';
@@ -0,0 +1,116 @@
1
+ declare const theme: {
2
+ colors: any;
3
+ fontFamily: {
4
+ body: string[];
5
+ heading: string[];
6
+ sans: string[];
7
+ serif: string[];
8
+ mono: string[];
9
+ display: string[];
10
+ };
11
+ fontSize: {
12
+ xs: (string | {
13
+ lineHeight: string;
14
+ })[];
15
+ sm: (string | {
16
+ lineHeight: string;
17
+ })[];
18
+ base: (string | {
19
+ lineHeight: string;
20
+ })[];
21
+ lg: (string | {
22
+ lineHeight: string;
23
+ })[];
24
+ xl: (string | {
25
+ lineHeight: string;
26
+ })[];
27
+ '2xl': (string | {
28
+ lineHeight: string;
29
+ })[];
30
+ '3xl': (string | {
31
+ lineHeight: string;
32
+ })[];
33
+ '4xl': (string | {
34
+ lineHeight: string;
35
+ })[];
36
+ '5xl': (string | {
37
+ lineHeight: string;
38
+ })[];
39
+ '6xl': (string | {
40
+ lineHeight: string;
41
+ })[];
42
+ '7xl': (string | {
43
+ lineHeight: string;
44
+ })[];
45
+ '8xl': (string | {
46
+ lineHeight: string;
47
+ })[];
48
+ '9xl': (string | {
49
+ lineHeight: string;
50
+ })[];
51
+ };
52
+ fontWeight: {
53
+ light: string;
54
+ normal: string;
55
+ bold: string;
56
+ thin: string;
57
+ extralight: string;
58
+ medium: string;
59
+ semibold: string;
60
+ extrabold: string;
61
+ black: string;
62
+ };
63
+ buttons: {
64
+ raised: boolean;
65
+ };
66
+ screens: {
67
+ sm: string;
68
+ md: string;
69
+ lg: string;
70
+ xl: string;
71
+ };
72
+ borderRadius: {
73
+ none: string;
74
+ sm: string;
75
+ DEFAULT: string;
76
+ md: string;
77
+ lg: string;
78
+ xl: string;
79
+ '2xl': string;
80
+ '3xl': string;
81
+ full: string;
82
+ };
83
+ spacing: {
84
+ px: string;
85
+ 0: string;
86
+ 1: string;
87
+ 2: string;
88
+ 3: string;
89
+ 4: string;
90
+ 5: string;
91
+ 6: string;
92
+ 8: string;
93
+ 10: string;
94
+ 11: string;
95
+ 12: string;
96
+ 16: string;
97
+ 20: string;
98
+ 24: string;
99
+ 32: string;
100
+ 40: string;
101
+ 48: string;
102
+ 56: string;
103
+ 64: string;
104
+ 128: string;
105
+ };
106
+ extend: {
107
+ gridTemplateColumns: {
108
+ headerMd: string;
109
+ headerSd: string;
110
+ headerXs: string;
111
+ searchLayout: string;
112
+ searchLayoutWithSidebar: string;
113
+ };
114
+ };
115
+ };
116
+ export default theme;
@@ -0,0 +1,4 @@
1
+ declare const buttons: {
2
+ raised: boolean;
3
+ };
4
+ export default buttons;
@@ -0,0 +1,2 @@
1
+ declare const colors: any;
2
+ export default colors;
@@ -0,0 +1,9 @@
1
+ declare const fonts: {
2
+ body: string[];
3
+ heading: string[];
4
+ sans: string[];
5
+ serif: string[];
6
+ mono: string[];
7
+ display: string[];
8
+ };
9
+ export default fonts;
@@ -0,0 +1,245 @@
1
+ declare const settings: {
2
+ fontWeight: {
3
+ light: string;
4
+ normal: string;
5
+ bold: string;
6
+ thin: string;
7
+ extralight: string;
8
+ medium: string;
9
+ semibold: string;
10
+ extrabold: string;
11
+ black: string;
12
+ };
13
+ colors: {
14
+ white: string;
15
+ black: string;
16
+ primary: string;
17
+ secondary: string;
18
+ tertiary: string;
19
+ accent: string;
20
+ neutral: string;
21
+ info: string;
22
+ success: string;
23
+ warning: string;
24
+ error: string;
25
+ opacityDark10: string;
26
+ opacityDark20: string;
27
+ opacityDark30: string;
28
+ opacityDark40: string;
29
+ opacityDark50: string;
30
+ opacityDark60: string;
31
+ opacityDark70: string;
32
+ opacityDark80: string;
33
+ opacityDark90: string;
34
+ opacityLight10: string;
35
+ opacityLight20: string;
36
+ opacityLight30: string;
37
+ opacityLight40: string;
38
+ opacityLight50: string;
39
+ opacityLight60: string;
40
+ opacityLight70: string;
41
+ opacityLight80: string;
42
+ opacityLight90: string;
43
+ primary50: string;
44
+ primary100: string;
45
+ primary200: string;
46
+ primary300: string;
47
+ primary400: string;
48
+ primary500: string;
49
+ primary600: string;
50
+ primary700: string;
51
+ primary800: string;
52
+ primary900: string;
53
+ secondary50: string;
54
+ secondary100: string;
55
+ secondary200: string;
56
+ secondary300: string;
57
+ secondary400: string;
58
+ secondary500: string;
59
+ secondary600: string;
60
+ secondary700: string;
61
+ secondary800: string;
62
+ secondary900: string;
63
+ tertiary50: string;
64
+ tertiary100: string;
65
+ tertiary200: string;
66
+ tertiary300: string;
67
+ tertiary400: string;
68
+ tertiary500: string;
69
+ tertiary600: string;
70
+ tertiary700: string;
71
+ tertiary800: string;
72
+ tertiary900: string;
73
+ accent50: string;
74
+ accent100: string;
75
+ accent200: string;
76
+ accent300: string;
77
+ accent400: string;
78
+ accent500: string;
79
+ accent600: string;
80
+ accent700: string;
81
+ accent800: string;
82
+ accent900: string;
83
+ neutral50: string;
84
+ neutral100: string;
85
+ neutral200: string;
86
+ neutral300: string;
87
+ neutral400: string;
88
+ neutral500: string;
89
+ neutral600: string;
90
+ neutral700: string;
91
+ neutral800: string;
92
+ neutral900: string;
93
+ info50: string;
94
+ info100: string;
95
+ info200: string;
96
+ info300: string;
97
+ info400: string;
98
+ info500: string;
99
+ info600: string;
100
+ info700: string;
101
+ info800: string;
102
+ info900: string;
103
+ success50: string;
104
+ success100: string;
105
+ success200: string;
106
+ success300: string;
107
+ success400: string;
108
+ success500: string;
109
+ success600: string;
110
+ success700: string;
111
+ success800: string;
112
+ success900: string;
113
+ warning50: string;
114
+ warning100: string;
115
+ warning200: string;
116
+ warning300: string;
117
+ warning400: string;
118
+ warning500: string;
119
+ warning600: string;
120
+ warning700: string;
121
+ warning800: string;
122
+ warning900: string;
123
+ error50: string;
124
+ error100: string;
125
+ error200: string;
126
+ error300: string;
127
+ error400: string;
128
+ error500: string;
129
+ error600: string;
130
+ error700: string;
131
+ error800: string;
132
+ error900: string;
133
+ grey50: string;
134
+ grey100: string;
135
+ grey200: string;
136
+ grey300: string;
137
+ grey400: string;
138
+ grey500: string;
139
+ grey600: string;
140
+ grey700: string;
141
+ grey800: string;
142
+ grey900: string;
143
+ purple50: string;
144
+ purple100: string;
145
+ purple200: string;
146
+ purple300: string;
147
+ purple400: string;
148
+ purple500: string;
149
+ purple600: string;
150
+ purple700: string;
151
+ purple800: string;
152
+ purple900: string;
153
+ };
154
+ screens: {
155
+ sm: string;
156
+ md: string;
157
+ lg: string;
158
+ xl: string;
159
+ };
160
+ spacing: {
161
+ px: string;
162
+ 0: string;
163
+ 1: string;
164
+ 2: string;
165
+ 3: string;
166
+ 4: string;
167
+ 5: string;
168
+ 6: string;
169
+ 8: string;
170
+ 10: string;
171
+ 11: string;
172
+ 12: string;
173
+ 16: string;
174
+ 20: string;
175
+ 24: string;
176
+ 32: string;
177
+ 40: string;
178
+ 48: string;
179
+ 56: string;
180
+ 64: string;
181
+ 128: string;
182
+ };
183
+ borderRadius: {
184
+ none: string;
185
+ sm: string;
186
+ DEFAULT: string;
187
+ md: string;
188
+ lg: string;
189
+ xl: string;
190
+ '2xl': string;
191
+ '3xl': string;
192
+ full: string;
193
+ };
194
+ fontSize: {
195
+ xs: (string | {
196
+ lineHeight: string;
197
+ })[];
198
+ sm: (string | {
199
+ lineHeight: string;
200
+ })[];
201
+ base: (string | {
202
+ lineHeight: string;
203
+ })[];
204
+ lg: (string | {
205
+ lineHeight: string;
206
+ })[];
207
+ xl: (string | {
208
+ lineHeight: string;
209
+ })[];
210
+ '2xl': (string | {
211
+ lineHeight: string;
212
+ })[];
213
+ '3xl': (string | {
214
+ lineHeight: string;
215
+ })[];
216
+ '4xl': (string | {
217
+ lineHeight: string;
218
+ })[];
219
+ '5xl': (string | {
220
+ lineHeight: string;
221
+ })[];
222
+ '6xl': (string | {
223
+ lineHeight: string;
224
+ })[];
225
+ '7xl': (string | {
226
+ lineHeight: string;
227
+ })[];
228
+ '8xl': (string | {
229
+ lineHeight: string;
230
+ })[];
231
+ '9xl': (string | {
232
+ lineHeight: string;
233
+ })[];
234
+ };
235
+ extend: {
236
+ gridTemplateColumns: {
237
+ headerMd: string;
238
+ headerSd: string;
239
+ headerXs: string;
240
+ searchLayout: string;
241
+ searchLayoutWithSidebar: string;
242
+ };
243
+ };
244
+ };
245
+ export default settings;
@@ -0,0 +1,3 @@
1
+ import '../theme/base.css';
2
+ export * from '../../../lib';
3
+ export { default as theme } from '../theme';