@multiplatform.one/components 0.2.4 → 0.2.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.
- package/dist/cjs/table/Table/index.js +4 -2
- package/dist/cjs/table/Table/index.js.map +1 -1
- package/dist/esm/table/Table/index.js +2 -1
- package/dist/esm/table/Table/index.js.map +1 -1
- package/dist/jsx/table/Table/index.js +2 -1
- package/dist/jsx/table/Table/index.js.map +1 -1
- package/dist/jsx/table/Table/index.mjs +2 -1
- package/dist/jsx/table/Table/index.mjs.map +1 -1
- package/package.json +8 -8
- package/src/table/Table/index.tsx +1 -1
- package/types/code/Code/index.d.ts +77 -18
- package/types/code/Code/index.d.ts.map +1 -1
- package/types/code/Pre/index.d.ts +22 -7
- package/types/code/Pre/index.d.ts.map +1 -1
- package/types/layouts/Debug/index.d.ts +2 -2
- package/types/layouts/Debug/index.d.ts.map +1 -1
- package/types/mdx/LI/index.d.ts +60 -15
- package/types/mdx/LI/index.d.ts.map +1 -1
- package/types/mdx/UL/UL.stories.d.ts +21 -7
- package/types/mdx/UL/UL.stories.d.ts.map +1 -1
- package/types/mdx/UL/index.d.ts +22 -7
- package/types/mdx/UL/index.d.ts.map +1 -1
- package/types/mdx/components.d.ts +22 -7
- package/types/mdx/components.d.ts.map +1 -1
- package/types/table/Table/Table.stories.d.ts +38 -10
- package/types/table/Table/Table.stories.d.ts.map +1 -1
- package/types/table/Table/index.d.ts +43 -10
- package/types/table/Table/index.d.ts.map +1 -1
- package/types/table/TableCell/index.d.ts +18 -3
- package/types/table/TableCell/index.d.ts.map +1 -1
- package/types/table/TableCol/index.d.ts +22 -7
- package/types/table/TableCol/index.d.ts.map +1 -1
|
@@ -1,30 +1,47 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
+
export declare const TableFrame: ({ heading, children, ...props }: {
|
|
3
|
+
[x: string]: any;
|
|
4
|
+
heading: any;
|
|
5
|
+
children: any;
|
|
6
|
+
}) => React.JSX.Element;
|
|
2
7
|
export declare const Table: (({ heading, children, ...props }: {
|
|
3
8
|
[x: string]: any;
|
|
4
9
|
heading: any;
|
|
5
10
|
children: any;
|
|
6
11
|
}) => React.JSX.Element) & {
|
|
7
|
-
Cell: import("tamagui").TamaguiComponent<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/web").
|
|
12
|
+
Cell: import("tamagui").TamaguiComponent<Omit<import("react-native").TextProps, "style" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/web").ExtendBaseTextProps & import("tamagui").TamaguiComponentPropsBase & {
|
|
13
|
+
style?: import("@tamagui/web").StyleProp<React.CSSProperties & import("react-native").TextStyle>;
|
|
14
|
+
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase>> & Omit<{
|
|
15
|
+
readonly unstyled?: boolean | undefined;
|
|
8
16
|
readonly size?: import("tamagui").FontSizeTokens | undefined;
|
|
9
17
|
} | ({
|
|
18
|
+
readonly unstyled?: boolean | undefined;
|
|
10
19
|
readonly size?: import("tamagui").FontSizeTokens | undefined;
|
|
11
20
|
} & {
|
|
12
21
|
[x: string]: undefined;
|
|
13
22
|
}), "head" | "highlight"> & {
|
|
14
23
|
readonly head?: boolean | undefined;
|
|
15
24
|
readonly highlight?: boolean | undefined;
|
|
16
|
-
} & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/web").
|
|
25
|
+
} & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").TextProps, "style" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/web").ExtendBaseTextProps & import("tamagui").TamaguiComponentPropsBase & {
|
|
26
|
+
style?: import("@tamagui/web").StyleProp<React.CSSProperties & import("react-native").TextStyle>;
|
|
27
|
+
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase>> & Omit<{
|
|
28
|
+
readonly unstyled?: boolean | undefined;
|
|
17
29
|
readonly size?: import("tamagui").FontSizeTokens | undefined;
|
|
18
30
|
} | ({
|
|
31
|
+
readonly unstyled?: boolean | undefined;
|
|
19
32
|
readonly size?: import("tamagui").FontSizeTokens | undefined;
|
|
20
33
|
} & {
|
|
21
34
|
[x: string]: undefined;
|
|
22
35
|
}), "head" | "highlight"> & {
|
|
23
36
|
readonly head?: boolean | undefined;
|
|
24
37
|
readonly highlight?: boolean | undefined;
|
|
25
|
-
}>> & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/web").
|
|
38
|
+
}>> & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").TextProps, "style" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/web").ExtendBaseTextProps & import("tamagui").TamaguiComponentPropsBase & {
|
|
39
|
+
style?: import("@tamagui/web").StyleProp<React.CSSProperties & import("react-native").TextStyle>;
|
|
40
|
+
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase>> & Omit<{
|
|
41
|
+
readonly unstyled?: boolean | undefined;
|
|
26
42
|
readonly size?: import("tamagui").FontSizeTokens | undefined;
|
|
27
43
|
} | ({
|
|
44
|
+
readonly unstyled?: boolean | undefined;
|
|
28
45
|
readonly size?: import("tamagui").FontSizeTokens | undefined;
|
|
29
46
|
} & {
|
|
30
47
|
[x: string]: undefined;
|
|
@@ -32,8 +49,10 @@ export declare const Table: (({ heading, children, ...props }: {
|
|
|
32
49
|
readonly head?: boolean | undefined;
|
|
33
50
|
readonly highlight?: boolean | undefined;
|
|
34
51
|
}>>, import("tamagui").TamaguiElement, import("tamagui").TextPropsBase, ({
|
|
52
|
+
readonly unstyled?: boolean | undefined;
|
|
35
53
|
readonly size?: import("tamagui").FontSizeTokens | undefined;
|
|
36
54
|
} | ({
|
|
55
|
+
readonly unstyled?: boolean | undefined;
|
|
37
56
|
readonly size?: import("tamagui").FontSizeTokens | undefined;
|
|
38
57
|
} & {
|
|
39
58
|
[x: string]: undefined;
|
|
@@ -43,7 +62,9 @@ export declare const Table: (({ heading, children, ...props }: {
|
|
|
43
62
|
}, {
|
|
44
63
|
displayName: string | undefined;
|
|
45
64
|
}>;
|
|
46
|
-
Col: import("tamagui").TamaguiComponent<(Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/web").ExtendBaseStackProps & import("tamagui").TamaguiComponentPropsBase &
|
|
65
|
+
Col: import("tamagui").TamaguiComponent<(Omit<import("react-native").ViewProps, "style" | "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/web").ExtendBaseStackProps & import("tamagui").TamaguiComponentPropsBase & {
|
|
66
|
+
style?: import("@tamagui/web").StyleProp<React.CSSProperties & import("react-native").ViewStyle>;
|
|
67
|
+
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
47
68
|
readonly fullscreen?: boolean | undefined;
|
|
48
69
|
readonly elevation?: import("tamagui").SizeTokens | undefined;
|
|
49
70
|
}, "backgrounded" | "radiused" | "hoverTheme" | "pressTheme" | "focusTheme" | "circular" | "padded" | "elevate" | "bordered" | "transparent" | "chromeless"> & {
|
|
@@ -58,7 +79,9 @@ export declare const Table: (({ heading, children, ...props }: {
|
|
|
58
79
|
readonly bordered?: number | boolean | undefined;
|
|
59
80
|
readonly transparent?: boolean | undefined;
|
|
60
81
|
readonly chromeless?: boolean | "all" | undefined;
|
|
61
|
-
} & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/web").ExtendBaseStackProps & import("tamagui").TamaguiComponentPropsBase &
|
|
82
|
+
} & 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").TamaguiComponentPropsBase & {
|
|
83
|
+
style?: import("@tamagui/web").StyleProp<React.CSSProperties & import("react-native").ViewStyle>;
|
|
84
|
+
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
62
85
|
readonly fullscreen?: boolean | undefined;
|
|
63
86
|
readonly elevation?: import("tamagui").SizeTokens | undefined;
|
|
64
87
|
}, "backgrounded" | "radiused" | "hoverTheme" | "pressTheme" | "focusTheme" | "circular" | "padded" | "elevate" | "bordered" | "transparent" | "chromeless"> & {
|
|
@@ -73,7 +96,9 @@ export declare const Table: (({ heading, children, ...props }: {
|
|
|
73
96
|
readonly bordered?: number | boolean | undefined;
|
|
74
97
|
readonly transparent?: boolean | undefined;
|
|
75
98
|
readonly chromeless?: boolean | "all" | undefined;
|
|
76
|
-
}>> & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/web").ExtendBaseStackProps & import("tamagui").TamaguiComponentPropsBase &
|
|
99
|
+
}>> & 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").TamaguiComponentPropsBase & {
|
|
100
|
+
style?: import("@tamagui/web").StyleProp<React.CSSProperties & import("react-native").ViewStyle>;
|
|
101
|
+
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
77
102
|
readonly fullscreen?: boolean | undefined;
|
|
78
103
|
readonly elevation?: import("tamagui").SizeTokens | undefined;
|
|
79
104
|
}, "backgrounded" | "radiused" | "hoverTheme" | "pressTheme" | "focusTheme" | "circular" | "padded" | "elevate" | "bordered" | "transparent" | "chromeless"> & {
|
|
@@ -88,7 +113,9 @@ export declare const Table: (({ heading, children, ...props }: {
|
|
|
88
113
|
readonly bordered?: number | boolean | undefined;
|
|
89
114
|
readonly transparent?: boolean | undefined;
|
|
90
115
|
readonly chromeless?: boolean | "all" | undefined;
|
|
91
|
-
}>>) | (Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/web").ExtendBaseStackProps & import("tamagui").TamaguiComponentPropsBase &
|
|
116
|
+
}>>) | (Omit<import("react-native").ViewProps, "style" | "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/web").ExtendBaseStackProps & import("tamagui").TamaguiComponentPropsBase & {
|
|
117
|
+
style?: import("@tamagui/web").StyleProp<React.CSSProperties & import("react-native").ViewStyle>;
|
|
118
|
+
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
92
119
|
readonly fullscreen?: boolean | undefined;
|
|
93
120
|
readonly elevation?: import("tamagui").SizeTokens | undefined;
|
|
94
121
|
} & {
|
|
@@ -105,7 +132,9 @@ export declare const Table: (({ heading, children, ...props }: {
|
|
|
105
132
|
readonly chromeless?: boolean | "all" | undefined;
|
|
106
133
|
}, string | number> & {
|
|
107
134
|
[x: string]: undefined;
|
|
108
|
-
} & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/web").ExtendBaseStackProps & import("tamagui").TamaguiComponentPropsBase &
|
|
135
|
+
} & 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").TamaguiComponentPropsBase & {
|
|
136
|
+
style?: import("@tamagui/web").StyleProp<React.CSSProperties & import("react-native").ViewStyle>;
|
|
137
|
+
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
109
138
|
readonly fullscreen?: boolean | undefined;
|
|
110
139
|
readonly elevation?: import("tamagui").SizeTokens | undefined;
|
|
111
140
|
} & {
|
|
@@ -122,7 +151,9 @@ export declare const Table: (({ heading, children, ...props }: {
|
|
|
122
151
|
readonly chromeless?: boolean | "all" | undefined;
|
|
123
152
|
}, string | number> & {
|
|
124
153
|
[x: string]: undefined;
|
|
125
|
-
}>> & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/web").ExtendBaseStackProps & import("tamagui").TamaguiComponentPropsBase &
|
|
154
|
+
}>> & 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").TamaguiComponentPropsBase & {
|
|
155
|
+
style?: import("@tamagui/web").StyleProp<React.CSSProperties & import("react-native").ViewStyle>;
|
|
156
|
+
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
126
157
|
readonly fullscreen?: boolean | undefined;
|
|
127
158
|
readonly elevation?: import("tamagui").SizeTokens | undefined;
|
|
128
159
|
} & {
|
|
@@ -139,7 +170,9 @@ export declare const Table: (({ heading, children, ...props }: {
|
|
|
139
170
|
readonly chromeless?: boolean | "all" | undefined;
|
|
140
171
|
}, string | number> & {
|
|
141
172
|
[x: string]: undefined;
|
|
142
|
-
}>>), import("tamagui").TamaguiElement, Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/web").ExtendBaseStackProps & import("tamagui").TamaguiComponentPropsBase &
|
|
173
|
+
}>>), import("tamagui").TamaguiElement, Omit<import("react-native").ViewProps, "style" | "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/web").ExtendBaseStackProps & import("tamagui").TamaguiComponentPropsBase & {
|
|
174
|
+
style?: import("@tamagui/web").StyleProp<React.CSSProperties & import("react-native").ViewStyle>;
|
|
175
|
+
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps, {
|
|
143
176
|
readonly fullscreen?: boolean | undefined;
|
|
144
177
|
readonly elevation?: import("tamagui").SizeTokens | undefined;
|
|
145
178
|
} & {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/table/Table/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/table/Table/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAe1B,eAAO,MAAM,UAAU;;;;uBAatB,CAAC;AAEF,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAGhB,CAAC"}
|
|
@@ -1,24 +1,37 @@
|
|
|
1
|
-
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export declare const TableCell: import("tamagui").TamaguiComponent<Omit<import("react-native").TextProps, "style" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/web").ExtendBaseTextProps & import("tamagui").TamaguiComponentPropsBase & {
|
|
3
|
+
style?: import("@tamagui/web").StyleProp<import("react").CSSProperties & import("react-native").TextStyle>;
|
|
4
|
+
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase>> & Omit<{
|
|
5
|
+
readonly unstyled?: boolean | undefined;
|
|
2
6
|
readonly size?: import("tamagui").FontSizeTokens | undefined;
|
|
3
7
|
} | ({
|
|
8
|
+
readonly unstyled?: boolean | undefined;
|
|
4
9
|
readonly size?: import("tamagui").FontSizeTokens | undefined;
|
|
5
10
|
} & {
|
|
6
11
|
[x: string]: undefined;
|
|
7
12
|
}), "head" | "highlight"> & {
|
|
8
13
|
readonly head?: boolean | undefined;
|
|
9
14
|
readonly highlight?: boolean | undefined;
|
|
10
|
-
} & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/web").
|
|
15
|
+
} & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").TextProps, "style" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/web").ExtendBaseTextProps & import("tamagui").TamaguiComponentPropsBase & {
|
|
16
|
+
style?: import("@tamagui/web").StyleProp<import("react").CSSProperties & import("react-native").TextStyle>;
|
|
17
|
+
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase>> & Omit<{
|
|
18
|
+
readonly unstyled?: boolean | undefined;
|
|
11
19
|
readonly size?: import("tamagui").FontSizeTokens | undefined;
|
|
12
20
|
} | ({
|
|
21
|
+
readonly unstyled?: boolean | undefined;
|
|
13
22
|
readonly size?: import("tamagui").FontSizeTokens | undefined;
|
|
14
23
|
} & {
|
|
15
24
|
[x: string]: undefined;
|
|
16
25
|
}), "head" | "highlight"> & {
|
|
17
26
|
readonly head?: boolean | undefined;
|
|
18
27
|
readonly highlight?: boolean | undefined;
|
|
19
|
-
}>> & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/web").
|
|
28
|
+
}>> & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").TextProps, "style" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/web").ExtendBaseTextProps & import("tamagui").TamaguiComponentPropsBase & {
|
|
29
|
+
style?: import("@tamagui/web").StyleProp<import("react").CSSProperties & import("react-native").TextStyle>;
|
|
30
|
+
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase>> & Omit<{
|
|
31
|
+
readonly unstyled?: boolean | undefined;
|
|
20
32
|
readonly size?: import("tamagui").FontSizeTokens | undefined;
|
|
21
33
|
} | ({
|
|
34
|
+
readonly unstyled?: boolean | undefined;
|
|
22
35
|
readonly size?: import("tamagui").FontSizeTokens | undefined;
|
|
23
36
|
} & {
|
|
24
37
|
[x: string]: undefined;
|
|
@@ -26,8 +39,10 @@ export declare const TableCell: import("tamagui").TamaguiComponent<Omit<import("
|
|
|
26
39
|
readonly head?: boolean | undefined;
|
|
27
40
|
readonly highlight?: boolean | undefined;
|
|
28
41
|
}>>, import("tamagui").TamaguiElement, import("tamagui").TextPropsBase, ({
|
|
42
|
+
readonly unstyled?: boolean | undefined;
|
|
29
43
|
readonly size?: import("tamagui").FontSizeTokens | undefined;
|
|
30
44
|
} | ({
|
|
45
|
+
readonly unstyled?: boolean | undefined;
|
|
31
46
|
readonly size?: import("tamagui").FontSizeTokens | undefined;
|
|
32
47
|
} & {
|
|
33
48
|
[x: string]: undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/table/TableCell/index.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,SAAS
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/table/TableCell/index.ts"],"names":[],"mappings":";AAGA,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA4BpB,CAAC"}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export declare const TableCol: import("tamagui").TamaguiComponent<(Omit<import("react-native").ViewProps, "style" | "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/web").ExtendBaseStackProps & import("tamagui").TamaguiComponentPropsBase & {
|
|
3
|
+
style?: import("@tamagui/web").StyleProp<import("react").CSSProperties & import("react-native").ViewStyle>;
|
|
4
|
+
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
2
5
|
readonly fullscreen?: boolean | undefined;
|
|
3
6
|
readonly elevation?: import("tamagui").SizeTokens | undefined;
|
|
4
7
|
}, "backgrounded" | "radiused" | "hoverTheme" | "pressTheme" | "focusTheme" | "circular" | "padded" | "elevate" | "bordered" | "transparent" | "chromeless"> & {
|
|
@@ -13,7 +16,9 @@ export declare const TableCol: import("tamagui").TamaguiComponent<(Omit<import("
|
|
|
13
16
|
readonly bordered?: number | boolean | undefined;
|
|
14
17
|
readonly transparent?: boolean | undefined;
|
|
15
18
|
readonly chromeless?: boolean | "all" | undefined;
|
|
16
|
-
} & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/web").ExtendBaseStackProps & import("tamagui").TamaguiComponentPropsBase &
|
|
19
|
+
} & 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").TamaguiComponentPropsBase & {
|
|
20
|
+
style?: import("@tamagui/web").StyleProp<import("react").CSSProperties & import("react-native").ViewStyle>;
|
|
21
|
+
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
17
22
|
readonly fullscreen?: boolean | undefined;
|
|
18
23
|
readonly elevation?: import("tamagui").SizeTokens | undefined;
|
|
19
24
|
}, "backgrounded" | "radiused" | "hoverTheme" | "pressTheme" | "focusTheme" | "circular" | "padded" | "elevate" | "bordered" | "transparent" | "chromeless"> & {
|
|
@@ -28,7 +33,9 @@ export declare const TableCol: import("tamagui").TamaguiComponent<(Omit<import("
|
|
|
28
33
|
readonly bordered?: number | boolean | undefined;
|
|
29
34
|
readonly transparent?: boolean | undefined;
|
|
30
35
|
readonly chromeless?: boolean | "all" | undefined;
|
|
31
|
-
}>> & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/web").ExtendBaseStackProps & import("tamagui").TamaguiComponentPropsBase &
|
|
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").TamaguiComponentPropsBase & {
|
|
37
|
+
style?: import("@tamagui/web").StyleProp<import("react").CSSProperties & import("react-native").ViewStyle>;
|
|
38
|
+
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
32
39
|
readonly fullscreen?: boolean | undefined;
|
|
33
40
|
readonly elevation?: import("tamagui").SizeTokens | undefined;
|
|
34
41
|
}, "backgrounded" | "radiused" | "hoverTheme" | "pressTheme" | "focusTheme" | "circular" | "padded" | "elevate" | "bordered" | "transparent" | "chromeless"> & {
|
|
@@ -43,7 +50,9 @@ export declare const TableCol: import("tamagui").TamaguiComponent<(Omit<import("
|
|
|
43
50
|
readonly bordered?: number | boolean | undefined;
|
|
44
51
|
readonly transparent?: boolean | undefined;
|
|
45
52
|
readonly chromeless?: boolean | "all" | undefined;
|
|
46
|
-
}>>) | (Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/web").ExtendBaseStackProps & import("tamagui").TamaguiComponentPropsBase &
|
|
53
|
+
}>>) | (Omit<import("react-native").ViewProps, "style" | "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/web").ExtendBaseStackProps & import("tamagui").TamaguiComponentPropsBase & {
|
|
54
|
+
style?: import("@tamagui/web").StyleProp<import("react").CSSProperties & import("react-native").ViewStyle>;
|
|
55
|
+
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
47
56
|
readonly fullscreen?: boolean | undefined;
|
|
48
57
|
readonly elevation?: import("tamagui").SizeTokens | undefined;
|
|
49
58
|
} & {
|
|
@@ -60,7 +69,9 @@ export declare const TableCol: import("tamagui").TamaguiComponent<(Omit<import("
|
|
|
60
69
|
readonly chromeless?: boolean | "all" | undefined;
|
|
61
70
|
}, string | number> & {
|
|
62
71
|
[x: string]: undefined;
|
|
63
|
-
} & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/web").ExtendBaseStackProps & import("tamagui").TamaguiComponentPropsBase &
|
|
72
|
+
} & 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").TamaguiComponentPropsBase & {
|
|
73
|
+
style?: import("@tamagui/web").StyleProp<import("react").CSSProperties & import("react-native").ViewStyle>;
|
|
74
|
+
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
64
75
|
readonly fullscreen?: boolean | undefined;
|
|
65
76
|
readonly elevation?: import("tamagui").SizeTokens | undefined;
|
|
66
77
|
} & {
|
|
@@ -77,7 +88,9 @@ export declare const TableCol: import("tamagui").TamaguiComponent<(Omit<import("
|
|
|
77
88
|
readonly chromeless?: boolean | "all" | undefined;
|
|
78
89
|
}, string | number> & {
|
|
79
90
|
[x: string]: undefined;
|
|
80
|
-
}>> & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/web").ExtendBaseStackProps & import("tamagui").TamaguiComponentPropsBase &
|
|
91
|
+
}>> & 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").TamaguiComponentPropsBase & {
|
|
92
|
+
style?: import("@tamagui/web").StyleProp<import("react").CSSProperties & import("react-native").ViewStyle>;
|
|
93
|
+
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
81
94
|
readonly fullscreen?: boolean | undefined;
|
|
82
95
|
readonly elevation?: import("tamagui").SizeTokens | undefined;
|
|
83
96
|
} & {
|
|
@@ -94,7 +107,9 @@ export declare const TableCol: import("tamagui").TamaguiComponent<(Omit<import("
|
|
|
94
107
|
readonly chromeless?: boolean | "all" | undefined;
|
|
95
108
|
}, string | number> & {
|
|
96
109
|
[x: string]: undefined;
|
|
97
|
-
}>>), import("tamagui").TamaguiElement, Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/web").ExtendBaseStackProps & import("tamagui").TamaguiComponentPropsBase &
|
|
110
|
+
}>>), import("tamagui").TamaguiElement, Omit<import("react-native").ViewProps, "style" | "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/web").ExtendBaseStackProps & import("tamagui").TamaguiComponentPropsBase & {
|
|
111
|
+
style?: import("@tamagui/web").StyleProp<import("react").CSSProperties & import("react-native").ViewStyle>;
|
|
112
|
+
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps, {
|
|
98
113
|
readonly fullscreen?: boolean | undefined;
|
|
99
114
|
readonly elevation?: import("tamagui").SizeTokens | undefined;
|
|
100
115
|
} & {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/table/TableCol/index.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,QAAQ
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/table/TableCol/index.ts"],"names":[],"mappings":";AAGA,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAQnB,CAAC"}
|