@ornikar/bumper 2.8.1-canary.1768839311.501438316959a9593513e74c70cb87b0597f2db6.0 → 2.8.1-canary.1769087114.a46790da1b5b6361954b6ad25766074d3ed69784.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.
- package/CHANGELOG.md +6 -6
- package/dist/definitions/index.d.ts +5 -1
- package/dist/definitions/index.d.ts.map +1 -1
- package/dist/definitions/shared/storybook/StoryTitle.d.ts +1 -1
- package/dist/definitions/shared/storybook/helpers/argsHelpers.d.ts +8 -0
- package/dist/definitions/shared/storybook/helpers/argsHelpers.d.ts.map +1 -0
- package/dist/definitions/system/content/icon/Icon.d.ts +4 -7
- package/dist/definitions/system/content/icon/Icon.d.ts.map +1 -1
- package/dist/definitions/system/content/typography/Typography.d.ts +11 -19
- package/dist/definitions/system/content/typography/Typography.d.ts.map +1 -1
- package/dist/definitions/system/content/typography/TypographyIcon.d.ts +9 -0
- package/dist/definitions/system/content/typography/TypographyIcon.d.ts.map +1 -0
- package/dist/definitions/system/content/typography/TypographyLink.d.ts +9 -0
- package/dist/definitions/system/content/typography/TypographyLink.d.ts.map +1 -0
- package/dist/definitions/system/content/typography/TypographyView.d.ts +18 -0
- package/dist/definitions/system/content/typography/TypographyView.d.ts.map +1 -0
- package/dist/definitions/system/content/typography/index.d.ts +21 -0
- package/dist/definitions/system/content/typography/index.d.ts.map +1 -0
- package/dist/definitions/system/content/typography/utils/getVariantAndWeightValues.d.ts +2 -1
- package/dist/definitions/system/content/typography/utils/getVariantAndWeightValues.d.ts.map +1 -1
- package/dist/definitions/system/content/typography/utils/typographyContext.d.ts +16 -0
- package/dist/definitions/system/content/typography/utils/typographyContext.d.ts.map +1 -0
- package/dist/definitions/system/core/primitives/Image/Image.d.ts +3 -0
- package/dist/definitions/system/core/primitives/Image/Image.d.ts.map +1 -0
- package/dist/definitions/system/core/themes/light/light.d.ts +3 -0
- package/dist/definitions/system/core/themes/light/light.d.ts.map +1 -0
- package/dist/definitions/system/core/themes/themes.d.ts +6 -0
- package/dist/definitions/system/core/themes/themes.d.ts.map +1 -0
- package/dist/definitions/tamagui.config.d.ts +1 -57
- package/dist/definitions/tamagui.config.d.ts.map +1 -1
- package/dist/index-metro.es.android.js +151 -12
- package/dist/index-metro.es.android.js.map +1 -1
- package/dist/index-metro.es.ios.js +151 -12
- package/dist/index-metro.es.ios.js.map +1 -1
- package/dist/index-node-22.22.cjs.js +154 -8
- package/dist/index-node-22.22.cjs.js.map +1 -1
- package/dist/index-node-22.22.cjs.web.js +154 -8
- package/dist/index-node-22.22.cjs.web.js.map +1 -1
- package/dist/index-node-22.22.es.mjs +155 -10
- package/dist/index-node-22.22.es.mjs.map +1 -1
- package/dist/index-node-22.22.es.web.mjs +155 -10
- package/dist/index-node-22.22.es.web.mjs.map +1 -1
- package/dist/index.es.js +149 -12
- package/dist/index.es.js.map +1 -1
- package/dist/index.es.web.js +149 -12
- package/dist/index.es.web.js.map +1 -1
- package/dist/tsbuildinfo +1 -1
- package/package.json +11 -10
- package/src/index.ts +5 -1
- package/src/shared/storybook/StoryTitle.tsx +1 -1
- package/src/shared/storybook/helpers/argsHelpers.ts +47 -0
- package/src/system/content/icon/Icon.features.stories.tsx +1 -1
- package/src/system/content/icon/Icon.stories.tsx +3 -22
- package/src/system/content/icon/Icon.tsx +4 -14
- package/src/system/content/icon/__snapshots_web__/Icon.features.stories.tsx.snap +2 -2
- package/src/system/content/icon/__snapshots_web__/Icon.stories.tsx.snap +1 -1
- package/src/system/content/typography/Typography.features.stories.tsx +1 -1
- package/src/system/content/typography/Typography.stories.tsx +3 -23
- package/src/system/content/typography/Typography.tsx +24 -27
- package/src/system/content/typography/TypographyIcon.features.stories.tsx +163 -0
- package/src/system/content/typography/TypographyIcon.stories.tsx +35 -0
- package/src/system/content/typography/TypographyIcon.tsx +33 -0
- package/src/system/content/typography/TypographyLink.features.stories.tsx +62 -0
- package/src/system/content/typography/TypographyLink.stories.tsx +72 -0
- package/src/system/content/typography/TypographyLink.tsx +38 -0
- package/src/system/content/typography/TypographyView.tsx +34 -0
- package/src/system/content/typography/__snapshots__/TypographyIcon.features.stories.tsx.snap +839 -0
- package/src/system/content/typography/__snapshots__/TypographyIcon.stories.tsx.snap +31 -0
- package/src/system/content/typography/__snapshots__/TypographyLink.features.stories.tsx.snap +229 -0
- package/src/system/content/typography/__snapshots__/TypographyLink.stories.tsx.snap +41 -0
- package/src/system/content/typography/__snapshots_web__/Typography.features.stories.tsx.snap +7 -7
- package/src/system/content/typography/__snapshots_web__/Typography.stories.tsx.snap +1 -1
- package/src/system/content/typography/__snapshots_web__/TypographyIcon.features.stories.tsx.snap +543 -0
- package/src/system/content/typography/__snapshots_web__/TypographyIcon.stories.tsx.snap +37 -0
- package/src/system/content/typography/__snapshots_web__/TypographyLink.features.stories.tsx.snap +196 -0
- package/src/system/content/typography/__snapshots_web__/TypographyLink.stories.tsx.snap +33 -0
- package/src/system/content/typography/index.ts +15 -0
- package/src/system/content/typography/utils/getVariantAndWeightValues.tsx +2 -6
- package/src/system/content/typography/utils/typographyContext.ts +29 -0
- package/src/system/core/primitives/Center.features.stories.tsx +1 -1
- package/src/system/core/primitives/Center.stories.tsx +6 -89
- package/src/system/core/primitives/Image/Image.stories.tsx +34 -0
- package/src/system/core/primitives/Image/Image.ts +2 -0
- package/src/system/core/primitives/Image/__snapshots__/Image.stories.tsx.snap +30 -0
- package/src/system/core/primitives/Image/__snapshots_web__/Image.stories.tsx.snap +40 -0
- package/src/system/core/primitives/Pressable.features.stories.tsx +1 -1
- package/src/system/core/primitives/Pressable.stories.tsx +4 -53
- package/src/system/core/primitives/ScrollView/ScrollView.features.stories.tsx +1 -1
- package/src/system/core/primitives/ScrollView/ScrollView.stories.tsx +3 -6
- package/src/system/core/primitives/ScrollView/__snapshots_web__/ScrollView.features.stories.tsx.snap +11 -11
- package/src/system/core/primitives/ScrollView/__snapshots_web__/ScrollView.stories.tsx.snap +3 -3
- package/src/system/core/primitives/Stack.features.stories.tsx +1 -1
- package/src/system/core/primitives/Stack.stories.tsx +4 -39
- package/src/system/core/primitives/View.features.stories.tsx +1 -1
- package/src/system/core/primitives/View.stories.tsx +6 -107
- package/src/system/core/primitives/__snapshots_web__/Center.features.stories.tsx.snap +2 -2
- package/src/system/core/primitives/__snapshots_web__/Center.stories.tsx.snap +1 -1
- package/src/system/core/primitives/__snapshots_web__/Pressable.features.stories.tsx.snap +3 -3
- package/src/system/core/primitives/__snapshots_web__/Pressable.stories.tsx.snap +1 -1
- package/src/system/core/primitives/__snapshots_web__/Stack.features.stories.tsx.snap +6 -6
- package/src/system/core/primitives/__snapshots_web__/Stack.stories.tsx.snap +1 -1
- package/src/system/core/primitives/__snapshots_web__/View.features.stories.tsx.snap +11 -11
- package/src/system/core/primitives/__snapshots_web__/View.stories.tsx.snap +1 -1
- package/src/system/core/themes/{__snapshots_web__ → light/__snapshots_web__}/light.stories.tsx.snap +1 -1
- package/src/system/core/themes/{light.stories.tsx → light/light.stories.tsx} +5 -5
- package/src/system/core/themes/{light.ts → light/light.ts} +3 -2
- package/src/system/core/themes/themes.ts +69 -0
- package/src/system/core/tokens/__snapshots_web__/breakpoints.stories.tsx.snap +1 -1
- package/src/system/core/tokens/__snapshots_web__/fonts.stories.tsx.snap +1 -1
- package/src/system/core/tokens/__snapshots_web__/radius.stories.tsx.snap +1 -1
- package/src/system/core/tokens/__snapshots_web__/size.stories.tsx.snap +1 -1
- package/src/system/core/tokens/__snapshots_web__/space.stories.tsx.snap +1 -1
- package/src/system/core/tokens/breakpoints.stories.tsx +1 -1
- package/src/system/core/tokens/fonts.stories.tsx +1 -1
- package/src/system/core/tokens/palettes/__snapshots_web__/deepPurpleColorPalette.stories.tsx.snap +1 -1
- package/src/system/core/tokens/palettes/deepPurpleColorPalette.stories.tsx +1 -1
- package/src/system/core/tokens/radius.stories.tsx +1 -1
- package/src/system/core/tokens/size.stories.tsx +1 -1
- package/src/system/core/tokens/space.stories.tsx +1 -1
- package/src/tamagui.config.ts +1 -1
- package/dist/definitions/system/core/themes/light.d.ts +0 -58
- package/dist/definitions/system/core/themes/light.d.ts.map +0 -1
- /package/src/system/core/themes/{__snapshots__ → light/__snapshots__}/light.stories.tsx.snap +0 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { Meta, StoryObj } from '@storybook/react';
|
|
2
|
-
import { Typography } from '../../content/typography
|
|
2
|
+
import { Typography } from '../../content/typography';
|
|
3
3
|
import { HStack, VStack } from '../primitives/Stack';
|
|
4
4
|
import { View } from '../primitives/View';
|
|
5
5
|
import { breakpoints } from './breakpoints';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { Meta, StoryObj } from '@storybook/react';
|
|
2
|
-
import { Typography } from '../../content/typography
|
|
2
|
+
import { Typography } from '../../content/typography';
|
|
3
3
|
import { HStack, VStack } from '../primitives/Stack';
|
|
4
4
|
import { View } from '../primitives/View';
|
|
5
5
|
import { VARIANTS, lineHeight, size } from './fonts';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { Meta, StoryObj } from '@storybook/react';
|
|
2
|
-
import { Typography } from '../../../content/typography
|
|
2
|
+
import { Typography } from '../../../content/typography';
|
|
3
3
|
import { HStack, VStack } from '../../primitives/Stack';
|
|
4
4
|
import type { ViewProps } from '../../primitives/View';
|
|
5
5
|
import { View } from '../../primitives/View';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { Meta, StoryObj } from '@storybook/react';
|
|
2
|
-
import { Typography } from '../../content/typography
|
|
2
|
+
import { Typography } from '../../content/typography';
|
|
3
3
|
import { HStack, VStack } from '../primitives/Stack';
|
|
4
4
|
import { View } from '../primitives/View';
|
|
5
5
|
import { radiusTokens } from './radius';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { Meta, StoryObj } from '@storybook/react';
|
|
2
|
-
import { Typography } from '../../content/typography
|
|
2
|
+
import { Typography } from '../../content/typography';
|
|
3
3
|
import { HStack, VStack } from '../primitives/Stack';
|
|
4
4
|
import { View } from '../primitives/View';
|
|
5
5
|
import { sizeTokens } from './size';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { Meta, StoryObj } from '@storybook/react';
|
|
2
|
-
import { Typography } from '../../content/typography
|
|
2
|
+
import { Typography } from '../../content/typography';
|
|
3
3
|
import { HStack, VStack } from '../primitives/Stack';
|
|
4
4
|
import { View } from '../primitives/View';
|
|
5
5
|
import { spaceTokens } from './space';
|
package/src/tamagui.config.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { createFont, createTamagui, createTokens } from '@tamagui/core';
|
|
2
|
-
import { light } from './system/core/themes/light';
|
|
2
|
+
import { light } from './system/core/themes/light/light';
|
|
3
3
|
import { BreakpointNameEnum, breakpoints } from './system/core/tokens/breakpoints';
|
|
4
4
|
import { GTStandardFaces, letterSpacing, lineHeight, size, weight } from './system/core/tokens/fonts';
|
|
5
5
|
import { radiusTokens } from './system/core/tokens/radius';
|
|
@@ -1,58 +0,0 @@
|
|
|
1
|
-
export declare const light: {
|
|
2
|
-
'content.base.low': string;
|
|
3
|
-
'content.base.mid': string;
|
|
4
|
-
'content.base.hi': string;
|
|
5
|
-
'content.base.onContrasted.low': string;
|
|
6
|
-
'content.base.onContrasted.mid': string;
|
|
7
|
-
'content.base.onContrasted.hi': string;
|
|
8
|
-
'content.accent': string;
|
|
9
|
-
'content.promo': string;
|
|
10
|
-
'content.promo.onContrasted': string;
|
|
11
|
-
'content.info': string;
|
|
12
|
-
'content.success': string;
|
|
13
|
-
'content.warning': string;
|
|
14
|
-
'content.danger': string;
|
|
15
|
-
'content.muted': string;
|
|
16
|
-
'content.disabled': string;
|
|
17
|
-
'content.disabled.onContrasted': string;
|
|
18
|
-
'bg.base.low.default': string;
|
|
19
|
-
'bg.base.low.pressed': string;
|
|
20
|
-
'bg.base.mid.default': string;
|
|
21
|
-
'bg.base.mid.pressed': string;
|
|
22
|
-
'bg.base.hi.default': string;
|
|
23
|
-
'bg.base.hi.pressed': string;
|
|
24
|
-
'bg.accent.default': string;
|
|
25
|
-
'bg.accent.pressed': string;
|
|
26
|
-
'bg.promo.mid.default': string;
|
|
27
|
-
'bg.promo.mid.pressed': string;
|
|
28
|
-
'bg.promo.hi.default': string;
|
|
29
|
-
'bg.promo.hi.pressed': string;
|
|
30
|
-
'bg.highlight.mid.default': string;
|
|
31
|
-
'bg.highlight.mid.pressed': string;
|
|
32
|
-
'bg.highlight.hi.default': string;
|
|
33
|
-
'bg.highlight.hi.pressed': string;
|
|
34
|
-
'bg.info.mid': string;
|
|
35
|
-
'bg.info.hi': string;
|
|
36
|
-
'bg.success.mid': string;
|
|
37
|
-
'bg.success.hi': string;
|
|
38
|
-
'bg.warning.mid': string;
|
|
39
|
-
'bg.warning.hi': string;
|
|
40
|
-
'bg.danger.mid': string;
|
|
41
|
-
'bg.danger.hi': string;
|
|
42
|
-
'bg.disabled.mid': string;
|
|
43
|
-
'bg.disabled.hi': string;
|
|
44
|
-
'bg.overlay': string;
|
|
45
|
-
'border.base.low': string;
|
|
46
|
-
'border.base.mid': string;
|
|
47
|
-
'border.base.hi': string;
|
|
48
|
-
'border.base.onContrasted.mid': string;
|
|
49
|
-
'border.base.onContrasted.hi': string;
|
|
50
|
-
'border.base.accent': string;
|
|
51
|
-
'border.info': string;
|
|
52
|
-
'border.success': string;
|
|
53
|
-
'border.warning': string;
|
|
54
|
-
'border.danger': string;
|
|
55
|
-
'border.disabled': string;
|
|
56
|
-
'border.highlight': string;
|
|
57
|
-
};
|
|
58
|
-
//# sourceMappingURL=light.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"light.d.ts","sourceRoot":"","sources":["../../../../../src/system/core/themes/light.ts"],"names":[],"mappings":"AAMA,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6DjB,CAAC"}
|
/package/src/system/core/themes/{__snapshots__ → light/__snapshots__}/light.stories.tsx.snap
RENAMED
|
File without changes
|