@tamagui/logo 1.73.0 → 1.73.1
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/package.json +8 -4
- package/types/LogoWords.d.ts +81 -6
- package/types/LogoWords.d.ts.map +1 -1
- package/types/TamaguiLogo.d.ts +81 -6
- package/types/TamaguiLogo.d.ts.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/logo",
|
|
3
|
-
"version": "1.73.
|
|
3
|
+
"version": "1.73.1",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"source": "src/index.ts",
|
|
6
6
|
"types": "./types/index.d.ts",
|
|
@@ -14,16 +14,20 @@
|
|
|
14
14
|
],
|
|
15
15
|
"scripts": {
|
|
16
16
|
"build": "tamagui-build",
|
|
17
|
-
"watch": "tamagui-build --watch"
|
|
17
|
+
"watch": "tamagui-build --watch",
|
|
18
|
+
"lint": "../../node_modules/.bin/biome check src",
|
|
19
|
+
"lint:fix": "../../node_modules/.bin/biome check --apply-unsafe src",
|
|
20
|
+
"clean": "tamagui-build clean",
|
|
21
|
+
"clean:build": "tamagui-build clean:build"
|
|
18
22
|
},
|
|
19
23
|
"peerDependencies": {
|
|
20
24
|
"react": "*"
|
|
21
25
|
},
|
|
22
26
|
"dependencies": {
|
|
23
|
-
"tamagui": "1.73.
|
|
27
|
+
"tamagui": "1.73.1"
|
|
24
28
|
},
|
|
25
29
|
"devDependencies": {
|
|
26
|
-
"@tamagui/build": "1.73.
|
|
30
|
+
"@tamagui/build": "1.73.1",
|
|
27
31
|
"react": "^18.2.0"
|
|
28
32
|
},
|
|
29
33
|
"publishConfig": {
|
package/types/LogoWords.d.ts
CHANGED
|
@@ -1,20 +1,95 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { XStackProps } from 'tamagui';
|
|
3
|
-
export declare const LogoWords: import("react").MemoExoticComponent<({ downscale, animated, ...props }: Omit<import("react-native").ViewProps, "style" | "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/web").ExtendBaseStackProps & import("tamagui").
|
|
3
|
+
export declare const LogoWords: import("react").MemoExoticComponent<({ downscale, animated, ...props }: Omit<import("react-native").ViewProps, "style" | "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
4
|
+
target?: string | undefined;
|
|
5
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
6
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
7
|
+
dangerouslySetInnerHTML?: {
|
|
8
|
+
__html: string;
|
|
9
|
+
} | undefined;
|
|
10
|
+
children?: any;
|
|
11
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
12
|
+
disabled?: boolean | undefined;
|
|
13
|
+
className?: string | undefined;
|
|
14
|
+
themeShallow?: boolean | undefined;
|
|
15
|
+
id?: string | undefined;
|
|
16
|
+
tag?: string | undefined;
|
|
17
|
+
theme?: string | null | undefined;
|
|
18
|
+
group?: undefined;
|
|
19
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
20
|
+
componentName?: string | undefined;
|
|
21
|
+
tabIndex?: string | number | undefined;
|
|
22
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
23
|
+
disableOptimization?: boolean | undefined;
|
|
24
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
25
|
+
disableClassName?: boolean | undefined;
|
|
26
|
+
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
27
|
+
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
28
|
+
} & {
|
|
4
29
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
5
30
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{}, "elevation" | "fullscreen"> & {
|
|
6
31
|
readonly fullscreen?: boolean | undefined;
|
|
7
|
-
readonly elevation?: import("tamagui").SizeTokens | undefined;
|
|
8
|
-
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "style" | "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/web").ExtendBaseStackProps & import("tamagui").
|
|
32
|
+
readonly elevation?: number | import("tamagui").SizeTokens | undefined;
|
|
33
|
+
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "style" | "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
34
|
+
target?: string | undefined;
|
|
35
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
36
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
37
|
+
dangerouslySetInnerHTML?: {
|
|
38
|
+
__html: string;
|
|
39
|
+
} | undefined;
|
|
40
|
+
children?: any;
|
|
41
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
42
|
+
disabled?: boolean | undefined;
|
|
43
|
+
className?: string | undefined;
|
|
44
|
+
themeShallow?: boolean | undefined;
|
|
45
|
+
id?: string | undefined;
|
|
46
|
+
tag?: string | undefined;
|
|
47
|
+
theme?: string | null | undefined;
|
|
48
|
+
group?: undefined;
|
|
49
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
50
|
+
componentName?: string | undefined;
|
|
51
|
+
tabIndex?: string | number | undefined;
|
|
52
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
53
|
+
disableOptimization?: boolean | undefined;
|
|
54
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
55
|
+
disableClassName?: boolean | undefined;
|
|
56
|
+
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
57
|
+
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
58
|
+
} & {
|
|
9
59
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
10
60
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{}, "elevation" | "fullscreen"> & {
|
|
11
61
|
readonly fullscreen?: boolean | undefined;
|
|
12
|
-
readonly elevation?: import("tamagui").SizeTokens | undefined;
|
|
13
|
-
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "style" | "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/web").ExtendBaseStackProps & import("tamagui").
|
|
62
|
+
readonly elevation?: number | import("tamagui").SizeTokens | undefined;
|
|
63
|
+
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "style" | "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
64
|
+
target?: string | undefined;
|
|
65
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
66
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
67
|
+
dangerouslySetInnerHTML?: {
|
|
68
|
+
__html: string;
|
|
69
|
+
} | undefined;
|
|
70
|
+
children?: any;
|
|
71
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
72
|
+
disabled?: boolean | undefined;
|
|
73
|
+
className?: string | undefined;
|
|
74
|
+
themeShallow?: boolean | undefined;
|
|
75
|
+
id?: string | undefined;
|
|
76
|
+
tag?: string | undefined;
|
|
77
|
+
theme?: string | null | undefined;
|
|
78
|
+
group?: undefined;
|
|
79
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
80
|
+
componentName?: string | undefined;
|
|
81
|
+
tabIndex?: string | number | undefined;
|
|
82
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
83
|
+
disableOptimization?: boolean | undefined;
|
|
84
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
85
|
+
disableClassName?: boolean | undefined;
|
|
86
|
+
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
87
|
+
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
88
|
+
} & {
|
|
14
89
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
15
90
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{}, "elevation" | "fullscreen"> & {
|
|
16
91
|
readonly fullscreen?: boolean | undefined;
|
|
17
|
-
readonly elevation?: import("tamagui").SizeTokens | undefined;
|
|
92
|
+
readonly elevation?: number | import("tamagui").SizeTokens | undefined;
|
|
18
93
|
}>> & {
|
|
19
94
|
downscale?: number | undefined;
|
|
20
95
|
animated?: boolean | undefined;
|
package/types/LogoWords.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"LogoWords.d.ts","sourceRoot":"","sources":["../src/LogoWords.tsx"],"names":[],"mappings":";AACA,OAAO,EAAkB,WAAW,EAAE,MAAM,SAAS,CAAA;AAIrD,eAAO,MAAM,SAAS
|
|
1
|
+
{"version":3,"file":"LogoWords.d.ts","sourceRoot":"","sources":["../src/LogoWords.tsx"],"names":[],"mappings":";AACA,OAAO,EAAkB,WAAW,EAAE,MAAM,SAAS,CAAA;AAIrD,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAqHrB,CAAA"}
|
package/types/TamaguiLogo.d.ts
CHANGED
|
@@ -3,20 +3,95 @@ export declare const TamaguiLogo: import("react").ForwardRefExoticComponent<{
|
|
|
3
3
|
showWords?: boolean | undefined;
|
|
4
4
|
downscale?: number | undefined;
|
|
5
5
|
animated?: boolean | undefined;
|
|
6
|
-
} & Omit<import("react-native").ViewProps, "style" | "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/web").ExtendBaseStackProps & import("tamagui").
|
|
6
|
+
} & Omit<import("react-native").ViewProps, "style" | "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
7
|
+
target?: string | undefined;
|
|
8
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
9
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
10
|
+
dangerouslySetInnerHTML?: {
|
|
11
|
+
__html: string;
|
|
12
|
+
} | undefined;
|
|
13
|
+
children?: any;
|
|
14
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
15
|
+
disabled?: boolean | undefined;
|
|
16
|
+
className?: string | undefined;
|
|
17
|
+
themeShallow?: boolean | undefined;
|
|
18
|
+
id?: string | undefined;
|
|
19
|
+
tag?: string | undefined;
|
|
20
|
+
theme?: string | null | undefined;
|
|
21
|
+
group?: undefined;
|
|
22
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
23
|
+
componentName?: string | undefined;
|
|
24
|
+
tabIndex?: string | number | undefined;
|
|
25
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
26
|
+
disableOptimization?: boolean | undefined;
|
|
27
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
28
|
+
disableClassName?: boolean | undefined;
|
|
29
|
+
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
30
|
+
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
31
|
+
} & {
|
|
7
32
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
8
33
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{}, "elevation" | "fullscreen"> & {
|
|
9
34
|
readonly fullscreen?: boolean | undefined;
|
|
10
|
-
readonly elevation?: import("tamagui").SizeTokens | undefined;
|
|
11
|
-
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "style" | "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/web").ExtendBaseStackProps & import("tamagui").
|
|
35
|
+
readonly elevation?: number | import("tamagui").SizeTokens | undefined;
|
|
36
|
+
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "style" | "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
37
|
+
target?: string | undefined;
|
|
38
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
39
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
40
|
+
dangerouslySetInnerHTML?: {
|
|
41
|
+
__html: string;
|
|
42
|
+
} | undefined;
|
|
43
|
+
children?: any;
|
|
44
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
45
|
+
disabled?: boolean | undefined;
|
|
46
|
+
className?: string | undefined;
|
|
47
|
+
themeShallow?: boolean | undefined;
|
|
48
|
+
id?: string | undefined;
|
|
49
|
+
tag?: string | undefined;
|
|
50
|
+
theme?: string | null | undefined;
|
|
51
|
+
group?: undefined;
|
|
52
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
53
|
+
componentName?: string | undefined;
|
|
54
|
+
tabIndex?: string | number | undefined;
|
|
55
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
56
|
+
disableOptimization?: boolean | undefined;
|
|
57
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
58
|
+
disableClassName?: boolean | undefined;
|
|
59
|
+
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
60
|
+
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
61
|
+
} & {
|
|
12
62
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
13
63
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{}, "elevation" | "fullscreen"> & {
|
|
14
64
|
readonly fullscreen?: boolean | undefined;
|
|
15
|
-
readonly elevation?: import("tamagui").SizeTokens | undefined;
|
|
16
|
-
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "style" | "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/web").ExtendBaseStackProps & import("tamagui").
|
|
65
|
+
readonly elevation?: number | import("tamagui").SizeTokens | undefined;
|
|
66
|
+
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "style" | "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
67
|
+
target?: string | undefined;
|
|
68
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
69
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
70
|
+
dangerouslySetInnerHTML?: {
|
|
71
|
+
__html: string;
|
|
72
|
+
} | undefined;
|
|
73
|
+
children?: any;
|
|
74
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
75
|
+
disabled?: boolean | undefined;
|
|
76
|
+
className?: string | undefined;
|
|
77
|
+
themeShallow?: boolean | undefined;
|
|
78
|
+
id?: string | undefined;
|
|
79
|
+
tag?: string | undefined;
|
|
80
|
+
theme?: string | null | undefined;
|
|
81
|
+
group?: undefined;
|
|
82
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
83
|
+
componentName?: string | undefined;
|
|
84
|
+
tabIndex?: string | number | undefined;
|
|
85
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
86
|
+
disableOptimization?: boolean | undefined;
|
|
87
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
88
|
+
disableClassName?: boolean | undefined;
|
|
89
|
+
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
90
|
+
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
91
|
+
} & {
|
|
17
92
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
18
93
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{}, "elevation" | "fullscreen"> & {
|
|
19
94
|
readonly fullscreen?: boolean | undefined;
|
|
20
|
-
readonly elevation?: import("tamagui").SizeTokens | undefined;
|
|
95
|
+
readonly elevation?: number | import("tamagui").SizeTokens | undefined;
|
|
21
96
|
}>> & import("react").RefAttributes<any>>;
|
|
22
97
|
//# sourceMappingURL=TamaguiLogo.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TamaguiLogo.d.ts","sourceRoot":"","sources":["../src/TamaguiLogo.tsx"],"names":[],"mappings":";AAYA,eAAO,MAAM,WAAW
|
|
1
|
+
{"version":3,"file":"TamaguiLogo.d.ts","sourceRoot":"","sources":["../src/TamaguiLogo.tsx"],"names":[],"mappings":";AAYA,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;yCAoBvB,CAAA"}
|