@ornikar/bumper 2.7.1 → 2.7.2-canary.1768565076.501fccaa5e4ef824bb180cfd40a7e74454a29a3e.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 (143) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist/definitions/index.d.ts +19 -19
  3. package/dist/definitions/index.d.ts.map +1 -1
  4. package/dist/definitions/shared/storybook/BumperDecorator.d.ts.map +1 -0
  5. package/dist/definitions/{story-components → shared/storybook}/StorySection.d.ts +1 -1
  6. package/dist/definitions/shared/storybook/StorySection.d.ts.map +1 -0
  7. package/dist/definitions/{story-components → shared/storybook}/StoryTitle.d.ts +1 -1
  8. package/dist/definitions/shared/storybook/StoryTitle.d.ts.map +1 -0
  9. package/dist/definitions/{components → system/content}/typography/Typography.d.ts +1 -1
  10. package/dist/definitions/system/content/typography/Typography.d.ts.map +1 -0
  11. package/dist/definitions/{components → system/content}/typography/utils/getVariantAndWeightValues.d.ts +1 -1
  12. package/dist/definitions/system/content/typography/utils/getVariantAndWeightValues.d.ts.map +1 -0
  13. package/dist/definitions/system/core/breakpoints/SwitchBreakpoins.d.ts.map +1 -0
  14. package/dist/definitions/{themes/utils/breakpoints.d.ts → system/core/breakpoints/constants.d.ts} +1 -1
  15. package/dist/definitions/system/core/breakpoints/constants.d.ts.map +1 -0
  16. package/dist/definitions/system/core/breakpoints/hooks/useBreakpointValue.d.ts.map +1 -0
  17. package/dist/definitions/system/core/breakpoints/hooks/useCurrentBreakpointName.d.ts +3 -0
  18. package/dist/definitions/system/core/breakpoints/hooks/useCurrentBreakpointName.d.ts.map +1 -0
  19. package/dist/definitions/system/core/breakpoints/hooks/useWindowSize.d.ts.map +1 -0
  20. package/dist/definitions/{components → system/core}/breakpoints/utils/breakpointsUtils.d.ts +1 -1
  21. package/dist/definitions/system/core/breakpoints/utils/breakpointsUtils.d.ts.map +1 -0
  22. package/dist/definitions/system/core/primitives/Center.d.ts.map +1 -0
  23. package/dist/definitions/system/core/primitives/Pressable.d.ts.map +1 -0
  24. package/dist/definitions/system/core/primitives/Stack.d.ts.map +1 -0
  25. package/dist/definitions/system/core/primitives/View.d.ts.map +1 -0
  26. package/dist/definitions/system/core/provider/BumperProvider.d.ts.map +1 -0
  27. package/dist/definitions/system/core/themes/light.d.ts.map +1 -0
  28. package/dist/definitions/system/core/tokens/fonts.d.ts +17 -0
  29. package/dist/definitions/system/core/tokens/fonts.d.ts.map +1 -0
  30. package/dist/definitions/system/core/tokens/palettes/deepPurpleColorPalette.d.ts.map +1 -0
  31. package/dist/definitions/system/core/tokens/radius.d.ts.map +1 -0
  32. package/dist/definitions/system/core/tokens/size.d.ts.map +1 -0
  33. package/dist/definitions/system/core/tokens/space.d.ts.map +1 -0
  34. package/dist/definitions/tamagui.config.d.ts +37 -3
  35. package/dist/definitions/tamagui.config.d.ts.map +1 -1
  36. package/dist/index-metro.es.android.js +25 -50
  37. package/dist/index-metro.es.android.js.map +1 -1
  38. package/dist/index-metro.es.ios.js +25 -50
  39. package/dist/index-metro.es.ios.js.map +1 -1
  40. package/dist/index-node-22.22.cjs.js +25 -50
  41. package/dist/index-node-22.22.cjs.js.map +1 -1
  42. package/dist/index-node-22.22.cjs.web.js +25 -50
  43. package/dist/index-node-22.22.cjs.web.js.map +1 -1
  44. package/dist/index-node-22.22.es.mjs +25 -50
  45. package/dist/index-node-22.22.es.mjs.map +1 -1
  46. package/dist/index-node-22.22.es.web.mjs +25 -50
  47. package/dist/index-node-22.22.es.web.mjs.map +1 -1
  48. package/dist/index.es.js +19 -44
  49. package/dist/index.es.js.map +1 -1
  50. package/dist/index.es.web.js +19 -44
  51. package/dist/index.es.web.js.map +1 -1
  52. package/dist/tsbuildinfo +1 -1
  53. package/package.json +8 -8
  54. package/src/index.ts +19 -19
  55. package/src/{core → shared/storybook}/BumperDecorator.tsx +1 -1
  56. package/src/{story-components → shared/storybook}/StorySection.tsx +1 -2
  57. package/src/{story-components → shared/storybook}/StoryTitle.tsx +1 -1
  58. package/src/{components → system/content}/typography/Typography.stories.tsx +4 -4
  59. package/src/{components → system/content}/typography/Typography.tsx +1 -1
  60. package/src/{components → system/content}/typography/__snapshots__/Typography.stories.tsx.snap +75 -75
  61. package/src/{components → system/content}/typography/__snapshots_web__/Typography.stories.tsx.snap +76 -76
  62. package/src/{components → system/content}/typography/utils/getVariantAndWeightValues.test.tsx +1 -1
  63. package/src/{components → system/content}/typography/utils/getVariantAndWeightValues.tsx +2 -2
  64. package/src/{components → system/core}/breakpoints/__snapshots_web__/breakpoints.stories.tsx.snap +1 -1
  65. package/src/{components → system/core}/breakpoints/breakpoints.stories.tsx +1 -1
  66. package/src/{components → system/core}/breakpoints/hooks/useBreakpointValue.test.ts +1 -1
  67. package/src/{components → system/core}/breakpoints/hooks/useCurrentBreakpointName.test.ts +1 -1
  68. package/src/{components → system/core}/breakpoints/hooks/useCurrentBreakpointName.ts +1 -1
  69. package/src/{components → system/core}/breakpoints/utils/breakpointsUtils.test.ts +1 -1
  70. package/src/{components → system/core}/breakpoints/utils/breakpointsUtils.ts +1 -1
  71. package/src/{components → system/core}/primitives/Pressable.stories.tsx +1 -1
  72. package/src/{components → system/core}/primitives/__snapshots_web__/Center.stories.tsx.snap +1 -1
  73. package/src/{components → system/core}/primitives/__snapshots_web__/Pressable.stories.tsx.snap +1 -1
  74. package/src/{components → system/core}/primitives/__snapshots_web__/Stack.stories.tsx.snap +1 -1
  75. package/src/{components → system/core}/primitives/__snapshots_web__/View.stories.tsx.snap +1 -1
  76. package/src/{core → system/core/provider}/BumperProvider.tsx +1 -1
  77. package/src/{themes → system/core/themes}/__snapshots__/light.stories.tsx.snap +1 -1
  78. package/src/{themes → system/core/themes}/__snapshots_web__/light.stories.tsx.snap +2 -2
  79. package/src/{themes → system/core/themes}/light.stories.tsx +4 -4
  80. package/src/{themes → system/core/themes}/light.ts +3 -2
  81. package/src/{tokens → system/core/tokens}/fonts.ts +5 -16
  82. package/src/{tokens → system/core/tokens}/palettes/__snapshots__/deepPurpleColorPalette.stories.tsx.snap +1 -1
  83. package/src/{tokens → system/core/tokens}/palettes/__snapshots_web__/deepPurpleColorPalette.stories.tsx.snap +2 -2
  84. package/src/{tokens → system/core/tokens}/palettes/deepPurpleColorPalette.stories.tsx +3 -3
  85. package/src/tamagui.config.ts +16 -7
  86. package/dist/definitions/components/breakpoints/SwitchBreakpoins.d.ts.map +0 -1
  87. package/dist/definitions/components/breakpoints/hooks/useBreakpointValue.d.ts.map +0 -1
  88. package/dist/definitions/components/breakpoints/hooks/useCurrentBreakpointName.d.ts +0 -3
  89. package/dist/definitions/components/breakpoints/hooks/useCurrentBreakpointName.d.ts.map +0 -1
  90. package/dist/definitions/components/breakpoints/hooks/useWindowSize.d.ts.map +0 -1
  91. package/dist/definitions/components/breakpoints/utils/breakpointsUtils.d.ts.map +0 -1
  92. package/dist/definitions/components/primitives/Center.d.ts.map +0 -1
  93. package/dist/definitions/components/primitives/Pressable.d.ts.map +0 -1
  94. package/dist/definitions/components/primitives/Stack.d.ts.map +0 -1
  95. package/dist/definitions/components/primitives/View.d.ts.map +0 -1
  96. package/dist/definitions/components/typography/Typography.d.ts.map +0 -1
  97. package/dist/definitions/components/typography/utils/getVariantAndWeightValues.d.ts.map +0 -1
  98. package/dist/definitions/core/BumperDecorator.d.ts.map +0 -1
  99. package/dist/definitions/core/BumperProvider.d.ts.map +0 -1
  100. package/dist/definitions/story-components/StorySection.d.ts.map +0 -1
  101. package/dist/definitions/story-components/StoryTitle.d.ts.map +0 -1
  102. package/dist/definitions/themes/light.d.ts.map +0 -1
  103. package/dist/definitions/themes/utils/breakpoints.d.ts.map +0 -1
  104. package/dist/definitions/tokens/fonts.d.ts +0 -20
  105. package/dist/definitions/tokens/fonts.d.ts.map +0 -1
  106. package/dist/definitions/tokens/palettes/deepPurpleColorPalette.d.ts.map +0 -1
  107. package/dist/definitions/tokens/radius.d.ts.map +0 -1
  108. package/dist/definitions/tokens/size.d.ts.map +0 -1
  109. package/dist/definitions/tokens/space.d.ts.map +0 -1
  110. /package/dist/definitions/{core → shared/storybook}/BumperDecorator.d.ts +0 -0
  111. /package/dist/definitions/{components → system/core}/breakpoints/SwitchBreakpoins.d.ts +0 -0
  112. /package/dist/definitions/{components → system/core}/breakpoints/hooks/useBreakpointValue.d.ts +0 -0
  113. /package/dist/definitions/{components → system/core}/breakpoints/hooks/useWindowSize.d.ts +0 -0
  114. /package/dist/definitions/{components → system/core}/primitives/Center.d.ts +0 -0
  115. /package/dist/definitions/{components → system/core}/primitives/Pressable.d.ts +0 -0
  116. /package/dist/definitions/{components → system/core}/primitives/Stack.d.ts +0 -0
  117. /package/dist/definitions/{components → system/core}/primitives/View.d.ts +0 -0
  118. /package/dist/definitions/{core → system/core/provider}/BumperProvider.d.ts +0 -0
  119. /package/dist/definitions/{themes → system/core/themes}/light.d.ts +0 -0
  120. /package/dist/definitions/{tokens → system/core/tokens}/palettes/deepPurpleColorPalette.d.ts +0 -0
  121. /package/dist/definitions/{tokens → system/core/tokens}/radius.d.ts +0 -0
  122. /package/dist/definitions/{tokens → system/core/tokens}/size.d.ts +0 -0
  123. /package/dist/definitions/{tokens → system/core/tokens}/space.d.ts +0 -0
  124. /package/src/{components → system/core}/breakpoints/SwitchBreakpoins.tsx +0 -0
  125. /package/src/{components → system/core}/breakpoints/__snapshots__/breakpoints.stories.tsx.snap +0 -0
  126. /package/src/{themes/utils/breakpoints.ts → system/core/breakpoints/constants.ts} +0 -0
  127. /package/src/{components → system/core}/breakpoints/hooks/useBreakpointValue.ts +0 -0
  128. /package/src/{components → system/core}/breakpoints/hooks/useWindowSize.ts +0 -0
  129. /package/src/{components → system/core}/primitives/Center.stories.tsx +0 -0
  130. /package/src/{components → system/core}/primitives/Center.ts +0 -0
  131. /package/src/{components → system/core}/primitives/Pressable.tsx +0 -0
  132. /package/src/{components → system/core}/primitives/Stack.stories.tsx +0 -0
  133. /package/src/{components → system/core}/primitives/Stack.tsx +0 -0
  134. /package/src/{components → system/core}/primitives/View.stories.tsx +0 -0
  135. /package/src/{components → system/core}/primitives/View.ts +0 -0
  136. /package/src/{components → system/core}/primitives/__snapshots__/Center.stories.tsx.snap +0 -0
  137. /package/src/{components → system/core}/primitives/__snapshots__/Pressable.stories.tsx.snap +0 -0
  138. /package/src/{components → system/core}/primitives/__snapshots__/Stack.stories.tsx.snap +0 -0
  139. /package/src/{components → system/core}/primitives/__snapshots__/View.stories.tsx.snap +0 -0
  140. /package/src/{tokens → system/core/tokens}/palettes/deepPurpleColorPalette.ts +0 -0
  141. /package/src/{tokens → system/core/tokens}/radius.ts +0 -0
  142. /package/src/{tokens → system/core/tokens}/size.ts +0 -0
  143. /package/src/{tokens → system/core/tokens}/space.ts +0 -0
@@ -1,4 +1,4 @@
1
- import { BODY_VARIANTS, CONTENT_CAPS_VARIANTS, HEADING_VARIANTS, LABEL_VARIANTS } from '../../../tokens/fonts';
1
+ import { BODY_VARIANTS, CONTENT_CAPS_VARIANTS, HEADING_VARIANTS, LABEL_VARIANTS } from '../../../core/tokens/fonts';
2
2
  import { getVariantAndWeightValues } from './getVariantAndWeightValues';
3
3
 
4
4
  describe('getVariantAndWeightValues', () => {
@@ -1,5 +1,5 @@
1
- import type { FontVariants } from '../../../tokens/fonts';
2
- import { BODY_VARIANTS, CONTENT_CAPS_VARIANTS, HEADING_VARIANTS, LABEL_VARIANTS } from '../../../tokens/fonts';
1
+ import type { FontVariants } from '../../../core/tokens/fonts';
2
+ import { BODY_VARIANTS, CONTENT_CAPS_VARIANTS, HEADING_VARIANTS, LABEL_VARIANTS } from '../../../core/tokens/fonts';
3
3
  import type {
4
4
  InternalTypographyProps,
5
5
  TypographyTextProps,
@@ -3,7 +3,7 @@
3
3
  exports[`bumper/utils/Breakpoints Breakpoints 1`] = `
4
4
  <DocumentFragment>
5
5
  <div
6
- class="css-view-175oi2r r-flex-13awgt0"
6
+ class="css-view-g5y9jx r-flex-13awgt0"
7
7
  >
8
8
  <span
9
9
  class=""
@@ -1,7 +1,7 @@
1
1
  import type { Meta, StoryFn } from '@storybook/react';
2
2
  import type { View } from '@tamagui/core';
3
3
  import type { ReactElement } from 'react';
4
- import { Typography } from '../typography/Typography';
4
+ import { Typography } from '../../content/typography/Typography';
5
5
  import { SwitchBreakpoints } from './SwitchBreakpoins';
6
6
  import { useBreakpointValue } from './hooks/useBreakpointValue';
7
7
  import { useCurrentBreakpointName } from './hooks/useCurrentBreakpointName';
@@ -1,5 +1,5 @@
1
1
  import { renderHook } from '@testing-library/react-native';
2
- import { BreakpointNameEnum } from '../../../themes/utils/breakpoints';
2
+ import { BreakpointNameEnum } from '../constants';
3
3
  import { getValueForBreakpoint } from '../utils/breakpointsUtils';
4
4
  import { useBreakpointValue } from './useBreakpointValue';
5
5
  import { useCurrentBreakpointName } from './useCurrentBreakpointName';
@@ -1,6 +1,6 @@
1
1
  import { type UseMediaState, useMedia } from '@tamagui/core';
2
2
  import { renderHook } from '@testing-library/react-native';
3
- import { BreakpointNameEnum } from '../../../themes/utils/breakpoints';
3
+ import { BreakpointNameEnum } from '../constants';
4
4
  import { useCurrentBreakpointName } from './useCurrentBreakpointName';
5
5
 
6
6
  jest.mock('@tamagui/core');
@@ -1,5 +1,5 @@
1
1
  import { useMedia } from '@tamagui/core';
2
- import { BreakpointNameEnum } from '../../../themes/utils/breakpoints';
2
+ import { BreakpointNameEnum } from '../constants';
3
3
 
4
4
  export function useCurrentBreakpointName(): BreakpointNameEnum {
5
5
  const media = useMedia();
@@ -1,4 +1,4 @@
1
- import { BreakpointNameEnum } from '../../../themes/utils/breakpoints';
1
+ import { BreakpointNameEnum } from '../constants';
2
2
  import { getValueForBreakpoint } from './breakpointsUtils';
3
3
 
4
4
  describe('getValueForBreakpoint', () => {
@@ -1,4 +1,4 @@
1
- import { BreakpointNameEnum } from '../../../themes/utils/breakpoints';
1
+ import { BreakpointNameEnum } from '../constants';
2
2
 
3
3
  export interface ValueForBreakpoint<T> {
4
4
  base: T;
@@ -1,5 +1,5 @@
1
1
  import type { Meta, StoryFn } from '@storybook/react';
2
- import { Typography } from '../typography/Typography';
2
+ import { Typography } from '../../content/typography/Typography';
3
3
  import type { CenterProps } from './Center';
4
4
  import { Center } from './Center';
5
5
  import { Pressable } from './Pressable';
@@ -3,7 +3,7 @@
3
3
  exports[`bumper/Primitives Center 1`] = `
4
4
  <DocumentFragment>
5
5
  <div
6
- class="css-view-175oi2r r-flex-13awgt0"
6
+ class="css-view-g5y9jx r-flex-13awgt0"
7
7
  >
8
8
  <span
9
9
  class=""
@@ -3,7 +3,7 @@
3
3
  exports[`bumper/Primitives Pressable 1`] = `
4
4
  <DocumentFragment>
5
5
  <div
6
- class="css-view-175oi2r r-flex-13awgt0"
6
+ class="css-view-g5y9jx r-flex-13awgt0"
7
7
  >
8
8
  <span
9
9
  class=""
@@ -3,7 +3,7 @@
3
3
  exports[`bumper/Primitives Stack 1`] = `
4
4
  <DocumentFragment>
5
5
  <div
6
- class="css-view-175oi2r r-flex-13awgt0"
6
+ class="css-view-g5y9jx r-flex-13awgt0"
7
7
  >
8
8
  <span
9
9
  class=""
@@ -3,7 +3,7 @@
3
3
  exports[`bumper/Primitives View 1`] = `
4
4
  <DocumentFragment>
5
5
  <div
6
- class="css-view-175oi2r r-flex-13awgt0"
6
+ class="css-view-g5y9jx r-flex-13awgt0"
7
7
  >
8
8
  <span
9
9
  class=""
@@ -1,6 +1,6 @@
1
1
  import { TamaguiProvider } from '@tamagui/core';
2
2
  import type { ReactNode } from 'react';
3
- import { config } from '../tamagui.config';
3
+ import { config } from '../../../tamagui.config';
4
4
 
5
5
  export interface BumperProviderProps {
6
6
  children: ReactNode;
@@ -27,7 +27,7 @@ exports[`bumper/Theme Light 1`] = `
27
27
  style={
28
28
  {
29
29
  "fontFamily": "GTStandardSemibold",
30
- "fontSize": 38,
30
+ "fontSize": "$heading-l",
31
31
  "letterSpacing": 0,
32
32
  "lineHeight": 44,
33
33
  "marginBottom": 4,
@@ -3,7 +3,7 @@
3
3
  exports[`bumper/Theme Light 1`] = `
4
4
  <DocumentFragment>
5
5
  <div
6
- class="css-view-175oi2r r-flex-13awgt0"
6
+ class="css-view-g5y9jx r-flex-13awgt0"
7
7
  >
8
8
  <span
9
9
  class=""
@@ -21,7 +21,7 @@ exports[`bumper/Theme Light 1`] = `
21
21
  class="is_VStack _display-flex _alignItems-stretch _flexBasis-auto _boxSizing-border-box _position-relative _minHeight-0px _minWidth-0px _flexShrink-0 _flexDirection-column _paddingTop-t-space-spa94482162 _paddingBottom-t-space-spa94482162 _paddingRight-t-space-spa94482162 _paddingLeft-t-space-spa94482162"
22
22
  >
23
23
  <span
24
- class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _display-inline _boxSizing-border-box _wordWrap-break-word _whiteSpace-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-t-space-spa94482162 _marginLeft-0px _fontFamily-f-family _fontSize-f-size-head100347201 _lineHeight-f-lineHeigh1544154440 _letterSpacing-f-letterSpa1195674547 _fontWeight-f-weight-se1074390495"
24
+ class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _display-inline _boxSizing-border-box _wordWrap-break-word _whiteSpace-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-t-space-spa94482162 _marginLeft-0px _fontFamily-f-family _fontSize-heading-l36 _lineHeight-f-lineHeigh1544154440 _letterSpacing-f-letterSpa1195674547 _fontWeight-f-weight-se1074390495"
25
25
  data-disable-theme="true"
26
26
  >
27
27
  Tokens
@@ -1,9 +1,9 @@
1
1
  import type { Meta, StoryFn } from '@storybook/react';
2
2
  import type { GetThemeValueForKey } from '@tamagui/core';
3
- import { VStack } from '../components/primitives/Stack';
4
- import { View } from '../components/primitives/View';
5
- import { Typography } from '../components/typography/Typography';
6
- import { StorySection } from '../story-components/StorySection';
3
+ import { StorySection } from '../../../shared/storybook/StorySection';
4
+ import { Typography } from '../../content/typography/Typography';
5
+ import { VStack } from '../primitives/Stack';
6
+ import { View } from '../primitives/View';
7
7
  import { light } from './light';
8
8
 
9
9
  export default {
@@ -1,7 +1,8 @@
1
- import { deepPurpleColorPalette } from '../tokens/palettes/deepPurpleColorPalette';
2
-
3
1
  // WARNING
4
2
  // If you modify this theme, don't forget to update the theme in @ornikar/kitt-universal as well
3
+
4
+ import { deepPurpleColorPalette } from '../tokens/palettes/deepPurpleColorPalette';
5
+
5
6
  // https://github.com/ornikar/kitt/blob/79e367e962c957c016c4df67dbcf515c8f45ff0e/@ornikar/kitt-universal/src/themes/late-ocean/colors.ts#L28
6
7
  export const light = {
7
8
  // content
@@ -1,5 +1,3 @@
1
- import { createFont } from '@tamagui/core';
2
-
3
1
  export const HEADING_VARIANTS = [
4
2
  'heading-2xl',
5
3
  'heading-xl',
@@ -30,13 +28,13 @@ export type ContentCapsVariants = (typeof CONTENT_CAPS_VARIANTS)[number];
30
28
 
31
29
  export type GTStandardFontWeight = '500' | '600' | '700';
32
30
 
33
- const GTStandardFaces: Record<GTStandardFontWeight, Record<string, string>> = {
31
+ export const GTStandardFaces: Record<GTStandardFontWeight, Record<string, string>> = {
34
32
  500: { normal: 'GTStandardRegular' },
35
33
  600: { normal: 'GTStandardSemibold' },
36
34
  700: { normal: 'GTStandardBold' },
37
35
  };
38
36
 
39
- const size: Record<FontVariants, number> = {
37
+ export const size: Record<FontVariants, number> = {
40
38
  'heading-2xl': 56,
41
39
  'heading-xl': 48,
42
40
  'heading-l': 38,
@@ -62,7 +60,7 @@ const size: Record<FontVariants, number> = {
62
60
  'content-caps-xs': 12,
63
61
  };
64
62
 
65
- const lineHeight: Record<FontVariants, number> = {
63
+ export const lineHeight: Record<FontVariants, number> = {
66
64
  'heading-2xl': 64,
67
65
  'heading-xl': 56,
68
66
  'heading-l': 44,
@@ -88,7 +86,7 @@ const lineHeight: Record<FontVariants, number> = {
88
86
  'content-caps-xs': 14,
89
87
  };
90
88
 
91
- const letterSpacing: Record<FontVariants, number> = {
89
+ export const letterSpacing: Record<FontVariants, number> = {
92
90
  'heading-2xl': 0,
93
91
  'heading-xl': 0,
94
92
  'heading-l': 0,
@@ -114,17 +112,8 @@ const letterSpacing: Record<FontVariants, number> = {
114
112
  'content-caps-xs': 0,
115
113
  };
116
114
 
117
- const weight: Record<string, GTStandardFontWeight> = {
115
+ export const weight: Record<string, GTStandardFontWeight> = {
118
116
  bold: '700',
119
117
  semibold: '600',
120
118
  regular: '500',
121
119
  };
122
-
123
- export const fonts = createFont({
124
- family: 'GTStandard',
125
- size,
126
- lineHeight,
127
- letterSpacing,
128
- weight,
129
- face: GTStandardFaces,
130
- });
@@ -27,7 +27,7 @@ exports[`bumper/Core Tokens Deep Purple Palette 1`] = `
27
27
  style={
28
28
  {
29
29
  "fontFamily": "GTStandardSemibold",
30
- "fontSize": 38,
30
+ "fontSize": "$heading-l",
31
31
  "letterSpacing": 0,
32
32
  "lineHeight": 44,
33
33
  "marginBottom": 4,
@@ -3,7 +3,7 @@
3
3
  exports[`bumper/Core Tokens Deep Purple Palette 1`] = `
4
4
  <DocumentFragment>
5
5
  <div
6
- class="css-view-175oi2r r-flex-13awgt0"
6
+ class="css-view-g5y9jx r-flex-13awgt0"
7
7
  >
8
8
  <span
9
9
  class=""
@@ -21,7 +21,7 @@ exports[`bumper/Core Tokens Deep Purple Palette 1`] = `
21
21
  class="is_VStack _display-flex _alignItems-stretch _flexBasis-auto _boxSizing-border-box _position-relative _minHeight-0px _minWidth-0px _flexShrink-0 _flexDirection-column _paddingTop-t-space-spa94482162 _paddingBottom-t-space-spa94482162 _paddingRight-t-space-spa94482162 _paddingLeft-t-space-spa94482162"
22
22
  >
23
23
  <span
24
- class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _display-inline _boxSizing-border-box _wordWrap-break-word _whiteSpace-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-t-space-spa94482162 _marginLeft-0px _fontFamily-f-family _fontSize-f-size-head100347201 _lineHeight-f-lineHeigh1544154440 _letterSpacing-f-letterSpa1195674547 _fontWeight-f-weight-se1074390495"
24
+ class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _display-inline _boxSizing-border-box _wordWrap-break-word _whiteSpace-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-t-space-spa94482162 _marginLeft-0px _fontFamily-f-family _fontSize-heading-l36 _lineHeight-f-lineHeigh1544154440 _letterSpacing-f-letterSpa1195674547 _fontWeight-f-weight-se1074390495"
25
25
  data-disable-theme="true"
26
26
  >
27
27
  Palette
@@ -1,8 +1,8 @@
1
1
  import type { Meta, StoryFn } from '@storybook/react';
2
2
  import type { GetThemeValueForKey } from '@tamagui/core';
3
- import { View } from '../../components/primitives/View';
4
- import { Typography } from '../../components/typography/Typography';
5
- import { StorySection } from '../../story-components/StorySection';
3
+ import { StorySection } from '../../../../shared/storybook/StorySection';
4
+ import { Typography } from '../../../content/typography/Typography';
5
+ import { View } from '../../primitives/View';
6
6
  import { deepPurpleColorPalette } from './deepPurpleColorPalette';
7
7
 
8
8
  export default {
@@ -1,10 +1,19 @@
1
- import { createTamagui, createTokens } from '@tamagui/core';
2
- import { light } from './themes/light';
3
- import { BreakpointNameEnum, breakpoints } from './themes/utils/breakpoints';
4
- import { fonts } from './tokens/fonts';
5
- import { radiusTokens } from './tokens/radius';
6
- import { sizeTokens } from './tokens/size';
7
- import { spaceTokens } from './tokens/space';
1
+ import { createFont, createTamagui, createTokens } from '@tamagui/core';
2
+ import { BreakpointNameEnum, breakpoints } from './system/core/breakpoints/constants';
3
+ import { light } from './system/core/themes/light';
4
+ import { GTStandardFaces, letterSpacing, lineHeight, weight } from './system/core/tokens/fonts';
5
+ import { radiusTokens } from './system/core/tokens/radius';
6
+ import { sizeTokens } from './system/core/tokens/size';
7
+ import { spaceTokens } from './system/core/tokens/space';
8
+
9
+ export const fonts = createFont({
10
+ family: 'GTStandard',
11
+ size: sizeTokens,
12
+ lineHeight,
13
+ letterSpacing,
14
+ weight,
15
+ face: GTStandardFaces,
16
+ });
8
17
 
9
18
  const tokens = createTokens({
10
19
  color: {},
@@ -1 +0,0 @@
1
- {"version":3,"file":"SwitchBreakpoins.d.ts","sourceRoot":"","sources":["../../../../src/components/breakpoints/SwitchBreakpoins.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAEvC,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,0BAA0B,CAAC;AAGnE,MAAM,MAAM,sBAAsB,GAAG,kBAAkB,CAAC,SAAS,CAAC,CAAC;AAEnE,wBAAgB,iBAAiB,CAAC,MAAM,EAAE,sBAAsB,GAAG,SAAS,CAI3E"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"useBreakpointValue.d.ts","sourceRoot":"","sources":["../../../../../src/components/breakpoints/hooks/useBreakpointValue.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,2BAA2B,CAAC;AAIpE,wBAAgB,kBAAkB,CAAC,CAAC,EAAE,MAAM,EAAE,kBAAkB,CAAC,CAAC,CAAC,GAAG,CAAC,CAMtE"}
@@ -1,3 +0,0 @@
1
- import { BreakpointNameEnum } from '../../../themes/utils/breakpoints';
2
- export declare function useCurrentBreakpointName(): BreakpointNameEnum;
3
- //# sourceMappingURL=useCurrentBreakpointName.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"useCurrentBreakpointName.d.ts","sourceRoot":"","sources":["../../../../../src/components/breakpoints/hooks/useCurrentBreakpointName.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,kBAAkB,EAAE,MAAM,mCAAmC,CAAC;AAEvE,wBAAgB,wBAAwB,IAAI,kBAAkB,CAgB7D"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"useWindowSize.d.ts","sourceRoot":"","sources":["../../../../../src/components/breakpoints/hooks/useWindowSize.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,IAAI,aAAa,EAAE,MAAM,cAAc,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"breakpointsUtils.d.ts","sourceRoot":"","sources":["../../../../../src/components/breakpoints/utils/breakpointsUtils.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,mCAAmC,CAAC;AAEvE,MAAM,WAAW,kBAAkB,CAAC,CAAC;IACnC,IAAI,EAAE,CAAC,CAAC;IACR,KAAK,CAAC,EAAE,CAAC,CAAC;IACV,MAAM,CAAC,EAAE,CAAC,CAAC;IACX,KAAK,CAAC,EAAE,CAAC,CAAC;IACV,IAAI,CAAC,EAAE,CAAC,CAAC;CACV;AAED,wBAAgB,qBAAqB,CAAC,CAAC,EACrC,UAAU,EAAE,kBAAkB,EAC9B,EAAE,IAAI,EAAE,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,IAAI,EAAE,EAAE,kBAAkB,CAAC,CAAC,CAAC,GAC1D,CAAC,CAcH"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"Center.d.ts","sourceRoot":"","sources":["../../../../src/components/primitives/Center.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AAI/C,MAAM,WAAW,WAAY,SAAQ,SAAS;CAAG;AAEjD,eAAO,MAAM,MAAM,iQAGjB,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"Pressable.d.ts","sourceRoot":"","sources":["../../../../src/components/primitives/Pressable.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,gBAAgB,EAAE,MAAM,eAAe,CAAC;AAChE,OAAO,EAAE,IAAI,EAAU,MAAM,eAAe,CAAC;AAC7C,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AACvC,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,WAAW,CAAC;AAExC,MAAM,MAAM,cAAc,CAAC,CAAC,SAAS,gBAAgB,GAAG,OAAO,IAAI,IAAI;IACrE;;;;OAIG;IACH,EAAE,CAAC,EAAE,CAAC,CAAC;CACR,GAAG,MAAM,CAAC,QAAQ,CAAC,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC;AAE9B;;;;;;;;;;;GAWG;AACH,wBAAgB,SAAS,CAAC,CAAC,SAAS,gBAAgB,GAAG,OAAO,IAAI,EAAE,EAAE,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,cAAc,CAAC,CAAC,CAAC,GAAG,SAAS,CAQjH"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"Stack.d.ts","sourceRoot":"","sources":["../../../../src/components/primitives/Stack.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AAG9C,YAAY,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAChD,OAAO,EAAE,KAAK,EAAE,MAAM,eAAe,CAAC;AAEtC,eAAO,MAAM,MAAM,iQAGjB,CAAC;AAEH,MAAM,MAAM,WAAW,GAAG,QAAQ,CAAC,OAAO,MAAM,CAAC,CAAC;AAElD,eAAO,MAAM,MAAM,iQAGjB,CAAC;AAEH,MAAM,MAAM,WAAW,GAAG,QAAQ,CAAC,OAAO,MAAM,CAAC,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"View.d.ts","sourceRoot":"","sources":["../../../../src/components/primitives/View.ts"],"names":[],"mappings":"AAAA,YAAY,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AAC/C,OAAO,EAAE,IAAI,EAAE,MAAM,eAAe,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"Typography.d.ts","sourceRoot":"","sources":["../../../../src/components/typography/Typography.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAuB,gBAAgB,EAAE,cAAc,EAAE,MAAM,eAAe,CAAC;AAGrG,OAAO,EAAE,KAAK,MAAM,EAAE,MAAM,WAAW,CAAC;AACxC,OAAO,KAAK,EACV,gBAAgB,EAChB,mBAAmB,EACnB,YAAY,EACZ,mBAAmB,EACnB,iBAAiB,EAClB,MAAM,oBAAoB,CAAC;AAI5B,KAAK,iBAAiB,CAAC,CAAC,IAAI;KAEzB,GAAG,IAAI,MAAM,CAAC,IAAI,GAAG,SAAS,IAAI,MAAM,EAAE,GAAG,KAAK,GAAG,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG,CAAC;CACpE,CAAC;AAEF,KAAK,6BAA6B,CAAC,CAAC,IAAI,iBAAiB,CAAC,CAAC,CAAC,GAAG,cAAc,CAAC,iBAAiB,CAAC,CAAC,CAAC,CAAC,CAAC;AAEpG,QAAA,MAAM,kBAAkB;;;8CAgCtB,CAAC;AAEH,MAAM,MAAM,uBAAuB,GAAG,QAAQ,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAE1E,MAAM,MAAM,6BAA6B,GAAG,YAAY,GAAG,IAAI,CAAC;AAChE,MAAM,MAAM,4BAA4B,GAAG,SAAS,GAAG,MAAM,GAAG,UAAU,GAAG,IAAI,CAAC;AAClF,MAAM,MAAM,0BAA0B,GAAG,uBAAuB,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC;AAOjF,KAAK,gCAAgC,GACjC,YAAY,GACZ,UAAU,GACV,YAAY,GACZ,WAAW,GACX,aAAa,GACb,YAAY,CAAC;AAEjB,KAAK,oCAAoC,GAAG,MAAM,CAAC,uBAAuB,EAAE,gCAAgC,CAAC,CAAC;AAE9G,MAAM,WAAW,SAAU,SAAQ,oCAAoC;IACrE,OAAO,CAAC,EAAE,gBAAgB,CAAC;IAC3B,MAAM,CAAC,EAAE,SAAS,GAAG,MAAM,CAAC;CAC7B;AACD,MAAM,WAAW,iBAAkB,SAAQ,oCAAoC;IAC7E,OAAO,EAAE,mBAAmB,GAAG,iBAAiB,CAAC;IACjD,MAAM,CAAC,EAAE,UAAU,CAAC;CACrB;AACD,MAAM,WAAW,gBAAiB,SAAQ,oCAAoC;IAC5E,OAAO,EAAE,mBAAmB,CAAC;IAC7B,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,MAAM,mBAAmB,GAC3B,6BAA6B,CAAC,SAAS,CAAC,GACxC,6BAA6B,CAAC,iBAAiB,CAAC,GAChD,6BAA6B,CAAC,gBAAgB,CAAC,CAAC;AAuDpD,eAAO,MAAM,UAAU;;;;;;;;;;;CAQtB,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"getVariantAndWeightValues.d.ts","sourceRoot":"","sources":["../../../../../src/components/typography/utils/getVariantAndWeightValues.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAE1D,OAAO,KAAK,EACV,uBAAuB,EACvB,mBAAmB,EACnB,6BAA6B,EAC7B,4BAA4B,EAC7B,MAAM,eAAe,CAAC;AAEvB,UAAU,sBAAsB;IAC9B,MAAM,EAAE,uBAAuB,CAAC,QAAQ,CAAC,GAAG,SAAS,CAAC;IACtD,OAAO,EAAE,YAAY,GAAG,SAAS,CAAC;CACnC;AAED,wBAAgB,yBAAyB,CACvC,UAAU,EAAE,mBAAmB,CAAC,QAAQ,CAAC,EACzC,WAAW,EAAE,mBAAmB,CAAC,SAAS,CAAC,EAC3C,6BAA6B,EAAE,4BAA4B,EAC3D,8BAA8B,EAAE,6BAA6B,GAC5D,sBAAsB,CAuBxB"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"BumperDecorator.d.ts","sourceRoot":"","sources":["../../../src/core/BumperDecorator.tsx"],"names":[],"mappings":"AAIA,eAAO,MAAM,eAAe,uBAM1B,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"BumperProvider.d.ts","sourceRoot":"","sources":["../../../src/core/BumperProvider.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAGvC,MAAM,WAAW,mBAAmB;IAClC,QAAQ,EAAE,SAAS,CAAC;CACrB;AAED,wBAAgB,cAAc,CAAC,EAAE,QAAQ,EAAE,EAAE,mBAAmB,GAAG,SAAS,CAM3E"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"StorySection.d.ts","sourceRoot":"","sources":["../../../src/story-components/StorySection.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AACvC,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,WAAW,CAAC;AACxC,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,gCAAgC,CAAC;AAgBlE,MAAM,MAAM,iBAAiB,GAAG,MAAM,CAAC,WAAW,EAAE,cAAc,CAAC,GAAG;IACpE,KAAK,EAAE,SAAS,CAAC;IACjB,QAAQ,EAAE,SAAS,CAAC;IACpB,KAAK,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC;IACd,eAAe;IACf,qBAAqB,CAAC,EAAE,OAAO,CAAC;IAChC,cAAc,CAAC,EAAE,OAAO,CAAC;CAC1B,CAAC;AAEF,wBAAgB,YAAY,CAAC,EAC3B,KAAK,EACL,QAAQ,EACR,KAAS,EACT,qBAAqB,EACrB,cAAc,EACd,GAAG,KAAK,EACT,EAAE,iBAAiB,GAAG,SAAS,CAQ/B;yBAfe,YAAY;uCAqBqC,gBAAgB,KAAG,SAAS;oEAa1F,iBAAiB,KAAG,SAAS;;AAjBhC,MAAM,MAAM,gBAAgB,GAAG,MAAM,CAAC,iBAAiB,EAAE,eAAe,GAAG,OAAO,GAAG,uBAAuB,CAAC,GAAG;IAC9G,QAAQ,EAAE,SAAS,CAAC;CACrB,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"StoryTitle.d.ts","sourceRoot":"","sources":["../../../src/story-components/StoryTitle.tsx"],"names":[],"mappings":"AAGA,eAAO,MAAM,UAAU;;;;8CAYZ,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"light.d.ts","sourceRoot":"","sources":["../../../src/themes/light.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6DjB,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"breakpoints.d.ts","sourceRoot":"","sources":["../../../../src/themes/utils/breakpoints.ts"],"names":[],"mappings":"AAAA,oBAAY,kBAAkB;IAC5B,IAAI,SAAS;IACb,KAAK,UAAU;IACf,MAAM,WAAW;IACjB,KAAK,UAAU;IACf,IAAI,SAAS;CACd;AAED,eAAO,MAAM,WAAW;;;;;;CAMvB,CAAC"}
@@ -1,20 +0,0 @@
1
- export declare const HEADING_VARIANTS: readonly ["heading-2xl", "heading-xl", "heading-l", "heading-m", "heading-s", "heading-xs", "heading-2xs"];
2
- export declare const BODY_VARIANTS: readonly ["body-xl", "body-l", "body-m", "body-s", "body-xs"];
3
- export declare const LABEL_VARIANTS: readonly ["label-xl", "label-l", "label-m", "label-s"];
4
- export declare const CONTENT_CAPS_VARIANTS: readonly ["content-caps-3xl", "content-caps-2xl", "content-caps-xl", "content-caps-l", "content-caps-m", "content-caps-s", "content-caps-xs"];
5
- export declare const VARIANTS: readonly ["heading-2xl", "heading-xl", "heading-l", "heading-m", "heading-s", "heading-xs", "heading-2xs", "body-xl", "body-l", "body-m", "body-s", "body-xs", "label-xl", "label-l", "label-m", "label-s", "content-caps-3xl", "content-caps-2xl", "content-caps-xl", "content-caps-l", "content-caps-m", "content-caps-s", "content-caps-xs"];
6
- export type FontVariants = (typeof VARIANTS)[number];
7
- export type BodyFontVariants = (typeof BODY_VARIANTS)[number];
8
- export type LabelFontVariants = (typeof LABEL_VARIANTS)[number];
9
- export type HeadingFontVariants = (typeof HEADING_VARIANTS)[number];
10
- export type ContentCapsVariants = (typeof CONTENT_CAPS_VARIANTS)[number];
11
- export type GTStandardFontWeight = '500' | '600' | '700';
12
- export declare const fonts: {
13
- family: string;
14
- size: Record<"heading-2xl" | "heading-xl" | "heading-l" | "heading-m" | "heading-s" | "heading-xs" | "heading-2xs" | "body-xl" | "body-l" | "body-m" | "body-s" | "body-xs" | "label-xl" | "label-l" | "label-m" | "label-s" | "content-caps-3xl" | "content-caps-2xl" | "content-caps-xl" | "content-caps-l" | "content-caps-m" | "content-caps-s" | "content-caps-xs", number>;
15
- lineHeight: Record<"heading-2xl" | "heading-xl" | "heading-l" | "heading-m" | "heading-s" | "heading-xs" | "heading-2xs" | "body-xl" | "body-l" | "body-m" | "body-s" | "body-xs" | "label-xl" | "label-l" | "label-m" | "label-s" | "content-caps-3xl" | "content-caps-2xl" | "content-caps-xl" | "content-caps-l" | "content-caps-m" | "content-caps-s" | "content-caps-xs", number>;
16
- letterSpacing: Record<"heading-2xl" | "heading-xl" | "heading-l" | "heading-m" | "heading-s" | "heading-xs" | "heading-2xs" | "body-xl" | "body-l" | "body-m" | "body-s" | "body-xs" | "label-xl" | "label-l" | "label-m" | "label-s" | "content-caps-3xl" | "content-caps-2xl" | "content-caps-xl" | "content-caps-l" | "content-caps-m" | "content-caps-s" | "content-caps-xs", number>;
17
- weight: Record<string, GTStandardFontWeight>;
18
- face: Record<GTStandardFontWeight, Record<string, string>>;
19
- };
20
- //# sourceMappingURL=fonts.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"fonts.d.ts","sourceRoot":"","sources":["../../../src/tokens/fonts.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,gBAAgB,4GAQnB,CAAC;AACX,eAAO,MAAM,aAAa,+DAAgE,CAAC;AAC3F,eAAO,MAAM,cAAc,wDAAyD,CAAC;AACrF,eAAO,MAAM,qBAAqB,+IAQxB,CAAC;AACX,eAAO,MAAM,QAAQ,iVAAgG,CAAC;AAEtH,MAAM,MAAM,YAAY,GAAG,CAAC,OAAO,QAAQ,CAAC,CAAC,MAAM,CAAC,CAAC;AACrD,MAAM,MAAM,gBAAgB,GAAG,CAAC,OAAO,aAAa,CAAC,CAAC,MAAM,CAAC,CAAC;AAC9D,MAAM,MAAM,iBAAiB,GAAG,CAAC,OAAO,cAAc,CAAC,CAAC,MAAM,CAAC,CAAC;AAChE,MAAM,MAAM,mBAAmB,GAAG,CAAC,OAAO,gBAAgB,CAAC,CAAC,MAAM,CAAC,CAAC;AACpE,MAAM,MAAM,mBAAmB,GAAG,CAAC,OAAO,qBAAqB,CAAC,CAAC,MAAM,CAAC,CAAC;AAEzE,MAAM,MAAM,oBAAoB,GAAG,KAAK,GAAG,KAAK,GAAG,KAAK,CAAC;AA4FzD,eAAO,MAAM,KAAK;;;;;;;CAOhB,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"deepPurpleColorPalette.d.ts","sourceRoot":"","sources":["../../../../src/tokens/palettes/deepPurpleColorPalette.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAuB,MAAM,WAAW,CAAC;AAE/D,UAAU,iBAAiB;IACzB,UAAU,EAAE,QAAQ,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC;IAC5B,KAAK,EAAE,QAAQ,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;IACtB,SAAS,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;IACzB,OAAO,EACH,MAAM,GACN,OAAO,GACP,QAAQ,GACR,MAAM,GACN,KAAK,GACL,YAAY,GACZ,aAAa,GACb,aAAa,GACb,eAAe,GACf,UAAU,CAAC;IACf,IAAI,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;IAChC,IAAI,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;IACpB,KAAK,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;IACrB,MAAM,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;IACtB,GAAG,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;IACnB,KAAK,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;IACrB,aAAa,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IAClC,YAAY,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IACjC,aAAa,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;CACjD;AAED,KAAK,gBAAgB,CAAC,CAAC,SAAS,MAAM,iBAAiB,IAAI,MAAM,CAAC,iBAAiB,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC;AAEhG,KAAK,WAAW,GAAG;KAChB,CAAC,IAAI,MAAM,iBAAiB,GAAG,gBAAgB,CAAC,CAAC,CAAC;CACpD,CAAC;AAgBF,eAAO,MAAM,WAAW,EAAE,WA0FhB,CAAC;AAYX,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKlC,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"radius.d.ts","sourceRoot":"","sources":["../../../src/tokens/radius.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,YAAY;;;;;;CAMxB,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"size.d.ts","sourceRoot":"","sources":["../../../src/tokens/size.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,UAAU;;;;;;;;;;;;;CAatB,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"space.d.ts","sourceRoot":"","sources":["../../../src/tokens/space.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,WAAW;;;;;;;;;;;;;;CAcvB,CAAC"}
File without changes
File without changes
File without changes