@tamagui/config-default 1.89.8 → 1.89.10
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/animations.js +35 -0
- package/dist/animations.js.map +6 -0
- package/dist/animations.native.js +60 -0
- package/dist/animations.native.js.map +6 -0
- package/dist/index.js +5 -4
- package/dist/index.js.map +2 -2
- package/dist/index.native.js +5 -4
- package/dist/index.native.js.map +2 -2
- package/package.json +4 -4
- package/types/animations.d.ts +15 -0
- package/types/animations.d.ts.map +1 -0
- package/types/animations.native.d.ts +35 -0
- package/types/animations.native.d.ts.map +1 -0
- package/types/index.d.ts +392 -340
- package/types/index.d.ts.map +1 -1
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
+
var __export = (target, all) => {
|
|
6
|
+
for (var name in all)
|
|
7
|
+
__defProp(target, name, { get: all[name], enumerable: !0 });
|
|
8
|
+
}, __copyProps = (to, from, except, desc) => {
|
|
9
|
+
if (from && typeof from == "object" || typeof from == "function")
|
|
10
|
+
for (let key of __getOwnPropNames(from))
|
|
11
|
+
!__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
12
|
+
return to;
|
|
13
|
+
};
|
|
14
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
|
|
15
|
+
var animations_exports = {};
|
|
16
|
+
__export(animations_exports, {
|
|
17
|
+
animations: () => animations
|
|
18
|
+
});
|
|
19
|
+
module.exports = __toCommonJS(animations_exports);
|
|
20
|
+
var import_animations_css = require("@tamagui/animations-css");
|
|
21
|
+
const smoothBezier = "cubic-bezier(0.215, 0.610, 0.355, 1.000)", animations = (0, import_animations_css.createAnimations)({
|
|
22
|
+
"75ms": "ease-in 75ms",
|
|
23
|
+
"100ms": "ease-in 100ms",
|
|
24
|
+
"200ms": "ease-in 200ms",
|
|
25
|
+
bouncy: "ease-in 200ms",
|
|
26
|
+
superBouncy: "ease-in 500ms",
|
|
27
|
+
lazy: "ease-in 1000ms",
|
|
28
|
+
medium: "ease-in 300ms",
|
|
29
|
+
slow: "ease-in 500ms",
|
|
30
|
+
quick: `${smoothBezier} 400ms`,
|
|
31
|
+
quicker: `${smoothBezier} 300ms`,
|
|
32
|
+
quickest: `${smoothBezier} 200ms`,
|
|
33
|
+
tooltip: "ease-in 400ms"
|
|
34
|
+
});
|
|
35
|
+
//# sourceMappingURL=animations.js.map
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../src/animations.ts"],
|
|
4
|
+
"mappings": ";;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,4BAAiC;AAEjC,MAAM,eAAe,4CAER,iBAAa,wCAAiB;AAAA,EACzC,QAAQ;AAAA,EACR,SAAS;AAAA,EACT,SAAS;AAAA,EACT,QAAQ;AAAA,EACR,aAAa;AAAA,EACb,MAAM;AAAA,EACN,QAAQ;AAAA,EACR,MAAM;AAAA,EACN,OAAO,GAAG,YAAY;AAAA,EACtB,SAAS,GAAG,YAAY;AAAA,EACxB,UAAU,GAAG,YAAY;AAAA,EACzB,SAAS;AACX,CAAC;",
|
|
5
|
+
"names": []
|
|
6
|
+
}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __export = (target, all) => {
|
|
7
|
+
for (var name in all)
|
|
8
|
+
__defProp(target, name, { get: all[name], enumerable: !0 });
|
|
9
|
+
}, __copyProps = (to, from, except, desc) => {
|
|
10
|
+
if (from && typeof from == "object" || typeof from == "function")
|
|
11
|
+
for (let key of __getOwnPropNames(from))
|
|
12
|
+
!__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
13
|
+
return to;
|
|
14
|
+
};
|
|
15
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
|
|
16
|
+
var animations_native_exports = {};
|
|
17
|
+
__export(animations_native_exports, {
|
|
18
|
+
animations: () => animations
|
|
19
|
+
});
|
|
20
|
+
module.exports = __toCommonJS(animations_native_exports);
|
|
21
|
+
var import_animations_react_native = require("@tamagui/animations-react-native");
|
|
22
|
+
const animations = (0, import_animations_react_native.createAnimations)({
|
|
23
|
+
"100ms": {
|
|
24
|
+
type: "timing",
|
|
25
|
+
duration: 100
|
|
26
|
+
},
|
|
27
|
+
bouncy: {
|
|
28
|
+
damping: 9,
|
|
29
|
+
mass: 0.9,
|
|
30
|
+
stiffness: 150
|
|
31
|
+
},
|
|
32
|
+
lazy: {
|
|
33
|
+
damping: 18,
|
|
34
|
+
stiffness: 50
|
|
35
|
+
},
|
|
36
|
+
medium: {
|
|
37
|
+
damping: 15,
|
|
38
|
+
stiffness: 120,
|
|
39
|
+
mass: 1
|
|
40
|
+
},
|
|
41
|
+
slow: {
|
|
42
|
+
damping: 15,
|
|
43
|
+
stiffness: 40
|
|
44
|
+
},
|
|
45
|
+
quick: {
|
|
46
|
+
damping: 20,
|
|
47
|
+
mass: 1.2,
|
|
48
|
+
stiffness: 250
|
|
49
|
+
},
|
|
50
|
+
tooltip: {
|
|
51
|
+
damping: 10,
|
|
52
|
+
mass: 0.9,
|
|
53
|
+
stiffness: 100
|
|
54
|
+
}
|
|
55
|
+
});
|
|
56
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
57
|
+
0 && (module.exports = {
|
|
58
|
+
animations
|
|
59
|
+
});
|
|
60
|
+
//# sourceMappingURL=animations.native.js.map
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../src/animations.native.ts"],
|
|
4
|
+
"mappings": ";;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,qCAAiC;AAE1B,MAAM,iBAAa,iDAAiB;AAAA,EACzC,SAAS;AAAA,IACP,MAAM;AAAA,IACN,UAAU;AAAA,EACZ;AAAA,EACA,QAAQ;AAAA,IACN,SAAS;AAAA,IACT,MAAM;AAAA,IACN,WAAW;AAAA,EACb;AAAA,EACA,MAAM;AAAA,IACJ,SAAS;AAAA,IACT,WAAW;AAAA,EACb;AAAA,EACA,QAAQ;AAAA,IACN,SAAS;AAAA,IACT,WAAW;AAAA,IACX,MAAM;AAAA,EACR;AAAA,EACA,MAAM;AAAA,IACJ,SAAS;AAAA,IACT,WAAW;AAAA,EACb;AAAA,EACA,OAAO;AAAA,IACL,SAAS;AAAA,IACT,MAAM;AAAA,IACN,WAAW;AAAA,EACb;AAAA,EACA,SAAS;AAAA,IACP,SAAS;AAAA,IACT,MAAM;AAAA,IACN,WAAW;AAAA,EACb;AACF,CAAC;",
|
|
5
|
+
"names": []
|
|
6
|
+
}
|
package/dist/index.js
CHANGED
|
@@ -17,8 +17,8 @@ __export(src_exports, {
|
|
|
17
17
|
getDefaultTamaguiConfig: () => getDefaultTamaguiConfig
|
|
18
18
|
});
|
|
19
19
|
module.exports = __toCommonJS(src_exports);
|
|
20
|
-
var import_core = require("@tamagui/core"), import_shorthands = require("@tamagui/shorthands");
|
|
21
|
-
function getDefaultTamaguiConfig() {
|
|
20
|
+
var import_core = require("@tamagui/core"), import_shorthands = require("@tamagui/shorthands"), import_animations = require("./animations"), import_animations2 = require("./animations.native");
|
|
21
|
+
function getDefaultTamaguiConfig(platform = "web") {
|
|
22
22
|
const headingFont = (0, import_core.createFont)({
|
|
23
23
|
family: "Heading",
|
|
24
24
|
size: {
|
|
@@ -187,9 +187,10 @@ function getDefaultTamaguiConfig() {
|
|
|
187
187
|
color: "red"
|
|
188
188
|
}
|
|
189
189
|
};
|
|
190
|
-
return
|
|
190
|
+
return {
|
|
191
191
|
shouldAddPrefersColorThemes: !0,
|
|
192
192
|
themeClassNameOnRoot: !0,
|
|
193
|
+
animations: platform === "web" ? import_animations.animations : import_animations2.animations,
|
|
193
194
|
shorthands: import_shorthands.shorthands,
|
|
194
195
|
fonts: {
|
|
195
196
|
heading: headingFont,
|
|
@@ -213,6 +214,6 @@ function getDefaultTamaguiConfig() {
|
|
|
213
214
|
hoverNone: { hover: "none" },
|
|
214
215
|
pointerCoarse: { pointer: "coarse" }
|
|
215
216
|
}
|
|
216
|
-
}
|
|
217
|
+
};
|
|
217
218
|
}
|
|
218
219
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../src/index.ts"],
|
|
4
|
-
"mappings": ";;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,
|
|
5
|
-
"names": []
|
|
4
|
+
"mappings": "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",
|
|
5
|
+
"names": ["import_animations", "animationsNative"]
|
|
6
6
|
}
|
package/dist/index.native.js
CHANGED
|
@@ -18,8 +18,8 @@ __export(src_exports, {
|
|
|
18
18
|
getDefaultTamaguiConfig: () => getDefaultTamaguiConfig
|
|
19
19
|
});
|
|
20
20
|
module.exports = __toCommonJS(src_exports);
|
|
21
|
-
var import_core = require("@tamagui/core"), import_shorthands = require("@tamagui/shorthands");
|
|
22
|
-
function getDefaultTamaguiConfig() {
|
|
21
|
+
var import_core = require("@tamagui/core"), import_shorthands = require("@tamagui/shorthands"), import_animations = require("./animations"), import_animations2 = require("./animations.native");
|
|
22
|
+
function getDefaultTamaguiConfig(platform = "web") {
|
|
23
23
|
const headingFont = (0, import_core.createFont)({
|
|
24
24
|
family: "Heading",
|
|
25
25
|
size: {
|
|
@@ -188,9 +188,10 @@ function getDefaultTamaguiConfig() {
|
|
|
188
188
|
color: "red"
|
|
189
189
|
}
|
|
190
190
|
};
|
|
191
|
-
return
|
|
191
|
+
return {
|
|
192
192
|
shouldAddPrefersColorThemes: !0,
|
|
193
193
|
themeClassNameOnRoot: !0,
|
|
194
|
+
animations: platform === "web" ? import_animations.animations : import_animations2.animations,
|
|
194
195
|
shorthands: import_shorthands.shorthands,
|
|
195
196
|
fonts: {
|
|
196
197
|
heading: headingFont,
|
|
@@ -214,7 +215,7 @@ function getDefaultTamaguiConfig() {
|
|
|
214
215
|
hoverNone: { hover: "none" },
|
|
215
216
|
pointerCoarse: { pointer: "coarse" }
|
|
216
217
|
}
|
|
217
|
-
}
|
|
218
|
+
};
|
|
218
219
|
}
|
|
219
220
|
// Annotate the CommonJS export names for ESM import in node:
|
|
220
221
|
0 && (module.exports = {
|
package/dist/index.native.js.map
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../src/index.ts"],
|
|
4
|
-
"mappings": ";;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,
|
|
5
|
-
"names": []
|
|
4
|
+
"mappings": "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",
|
|
5
|
+
"names": ["import_animations", "animationsNative"]
|
|
6
6
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/config-default",
|
|
3
|
-
"version": "1.89.
|
|
3
|
+
"version": "1.89.10",
|
|
4
4
|
"source": "src/index.ts",
|
|
5
5
|
"main": "dist",
|
|
6
6
|
"types": "./types/index.d.ts",
|
|
@@ -15,11 +15,11 @@
|
|
|
15
15
|
"dist"
|
|
16
16
|
],
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@tamagui/core": "1.89.
|
|
19
|
-
"@tamagui/shorthands": "1.89.
|
|
18
|
+
"@tamagui/core": "1.89.10",
|
|
19
|
+
"@tamagui/shorthands": "1.89.10"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
|
-
"@tamagui/build": "1.89.
|
|
22
|
+
"@tamagui/build": "1.89.10"
|
|
23
23
|
},
|
|
24
24
|
"publishConfig": {
|
|
25
25
|
"access": "public"
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export declare const animations: import("@tamagui/web").AnimationDriver<{
|
|
2
|
+
'75ms': string;
|
|
3
|
+
'100ms': string;
|
|
4
|
+
'200ms': string;
|
|
5
|
+
bouncy: string;
|
|
6
|
+
superBouncy: string;
|
|
7
|
+
lazy: string;
|
|
8
|
+
medium: string;
|
|
9
|
+
slow: string;
|
|
10
|
+
quick: string;
|
|
11
|
+
quicker: string;
|
|
12
|
+
quickest: string;
|
|
13
|
+
tooltip: string;
|
|
14
|
+
}>;
|
|
15
|
+
//# sourceMappingURL=animations.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"animations.d.ts","sourceRoot":"","sources":["../src/animations.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,UAAU;;;;;;;;;;;;;EAarB,CAAA"}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
export declare const animations: import("@tamagui/web").AnimationDriver<{
|
|
2
|
+
'100ms': {
|
|
3
|
+
type: "timing";
|
|
4
|
+
duration: number;
|
|
5
|
+
};
|
|
6
|
+
bouncy: {
|
|
7
|
+
damping: number;
|
|
8
|
+
mass: number;
|
|
9
|
+
stiffness: number;
|
|
10
|
+
};
|
|
11
|
+
lazy: {
|
|
12
|
+
damping: number;
|
|
13
|
+
stiffness: number;
|
|
14
|
+
};
|
|
15
|
+
medium: {
|
|
16
|
+
damping: number;
|
|
17
|
+
stiffness: number;
|
|
18
|
+
mass: number;
|
|
19
|
+
};
|
|
20
|
+
slow: {
|
|
21
|
+
damping: number;
|
|
22
|
+
stiffness: number;
|
|
23
|
+
};
|
|
24
|
+
quick: {
|
|
25
|
+
damping: number;
|
|
26
|
+
mass: number;
|
|
27
|
+
stiffness: number;
|
|
28
|
+
};
|
|
29
|
+
tooltip: {
|
|
30
|
+
damping: number;
|
|
31
|
+
mass: number;
|
|
32
|
+
stiffness: number;
|
|
33
|
+
};
|
|
34
|
+
}>;
|
|
35
|
+
//# sourceMappingURL=animations.native.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"animations.native.d.ts","sourceRoot":"","sources":["../src/animations.native.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAiCrB,CAAA"}
|
package/types/index.d.ts
CHANGED
|
@@ -1,357 +1,409 @@
|
|
|
1
|
-
export declare function getDefaultTamaguiConfig():
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
}
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
color: string;
|
|
167
|
-
};
|
|
168
|
-
dark_red_alt1: {
|
|
169
|
-
background: string;
|
|
170
|
-
color: string;
|
|
171
|
-
};
|
|
172
|
-
dark_red_Button: {
|
|
173
|
-
background: string;
|
|
174
|
-
color: string;
|
|
175
|
-
};
|
|
176
|
-
dark_yellow_Button: {
|
|
177
|
-
background: string;
|
|
178
|
-
color: string;
|
|
179
|
-
};
|
|
180
|
-
dark_red_active_ListItem: {
|
|
181
|
-
background: string;
|
|
182
|
-
color: string;
|
|
183
|
-
};
|
|
184
|
-
dark_red_alt2: {
|
|
185
|
-
background: string;
|
|
186
|
-
color: string;
|
|
187
|
-
};
|
|
188
|
-
dark_red_alt2_Button: {
|
|
189
|
-
background: string;
|
|
190
|
-
color: string;
|
|
191
|
-
};
|
|
192
|
-
red: {
|
|
193
|
-
background: string;
|
|
194
|
-
color: string;
|
|
195
|
-
};
|
|
196
|
-
}, {
|
|
197
|
-
readonly ussel: "userSelect";
|
|
198
|
-
readonly cur: "cursor";
|
|
199
|
-
readonly pe: "pointerEvents";
|
|
200
|
-
readonly col: "color";
|
|
201
|
-
readonly ff: "fontFamily";
|
|
202
|
-
readonly fos: "fontSize";
|
|
203
|
-
readonly fost: "fontStyle";
|
|
204
|
-
readonly fow: "fontWeight";
|
|
205
|
-
readonly ls: "letterSpacing";
|
|
206
|
-
readonly lh: "lineHeight";
|
|
207
|
-
readonly ta: "textAlign";
|
|
208
|
-
readonly tt: "textTransform";
|
|
209
|
-
readonly ww: "wordWrap";
|
|
210
|
-
readonly ac: "alignContent";
|
|
211
|
-
readonly ai: "alignItems";
|
|
212
|
-
readonly als: "alignSelf";
|
|
213
|
-
readonly b: "bottom";
|
|
214
|
-
readonly bc: "backgroundColor";
|
|
215
|
-
readonly bg: "backgroundColor";
|
|
216
|
-
readonly bbc: "borderBottomColor";
|
|
217
|
-
readonly bblr: "borderBottomLeftRadius";
|
|
218
|
-
readonly bbrr: "borderBottomRightRadius";
|
|
219
|
-
readonly bbw: "borderBottomWidth";
|
|
220
|
-
readonly blc: "borderLeftColor";
|
|
221
|
-
readonly blw: "borderLeftWidth";
|
|
222
|
-
readonly boc: "borderColor";
|
|
223
|
-
readonly br: "borderRadius";
|
|
224
|
-
readonly bs: "borderStyle";
|
|
225
|
-
readonly brw: "borderRightWidth";
|
|
226
|
-
readonly brc: "borderRightColor";
|
|
227
|
-
readonly btc: "borderTopColor";
|
|
228
|
-
readonly btlr: "borderTopLeftRadius";
|
|
229
|
-
readonly btrr: "borderTopRightRadius";
|
|
230
|
-
readonly btw: "borderTopWidth";
|
|
231
|
-
readonly bw: "borderWidth";
|
|
232
|
-
readonly dsp: "display";
|
|
233
|
-
readonly f: "flex";
|
|
234
|
-
readonly fb: "flexBasis";
|
|
235
|
-
readonly fd: "flexDirection";
|
|
236
|
-
readonly fg: "flexGrow";
|
|
237
|
-
readonly fs: "flexShrink";
|
|
238
|
-
readonly fw: "flexWrap";
|
|
239
|
-
readonly h: "height";
|
|
240
|
-
readonly jc: "justifyContent";
|
|
241
|
-
readonly l: "left";
|
|
242
|
-
readonly m: "margin";
|
|
243
|
-
readonly mah: "maxHeight";
|
|
244
|
-
readonly maw: "maxWidth";
|
|
245
|
-
readonly mb: "marginBottom";
|
|
246
|
-
readonly mih: "minHeight";
|
|
247
|
-
readonly miw: "minWidth";
|
|
248
|
-
readonly ml: "marginLeft";
|
|
249
|
-
readonly mr: "marginRight";
|
|
250
|
-
readonly mt: "marginTop";
|
|
251
|
-
readonly mx: "marginHorizontal";
|
|
252
|
-
readonly my: "marginVertical";
|
|
253
|
-
readonly o: "opacity";
|
|
254
|
-
readonly ov: "overflow";
|
|
255
|
-
readonly p: "padding";
|
|
256
|
-
readonly pb: "paddingBottom";
|
|
257
|
-
readonly pl: "paddingLeft";
|
|
258
|
-
readonly pos: "position";
|
|
259
|
-
readonly pr: "paddingRight";
|
|
260
|
-
readonly pt: "paddingTop";
|
|
261
|
-
readonly px: "paddingHorizontal";
|
|
262
|
-
readonly py: "paddingVertical";
|
|
263
|
-
readonly r: "right";
|
|
264
|
-
readonly shac: "shadowColor";
|
|
265
|
-
readonly shar: "shadowRadius";
|
|
266
|
-
readonly shof: "shadowOffset";
|
|
267
|
-
readonly shop: "shadowOpacity";
|
|
268
|
-
readonly t: "top";
|
|
269
|
-
readonly w: "width";
|
|
270
|
-
readonly zi: "zIndex";
|
|
271
|
-
}, {
|
|
272
|
-
xs: {
|
|
273
|
-
maxWidth: number;
|
|
274
|
-
};
|
|
275
|
-
sm: {
|
|
276
|
-
maxWidth: number;
|
|
277
|
-
};
|
|
278
|
-
md: {
|
|
279
|
-
maxWidth: number;
|
|
280
|
-
};
|
|
281
|
-
lg: {
|
|
282
|
-
maxWidth: number;
|
|
283
|
-
};
|
|
284
|
-
xl: {
|
|
285
|
-
maxWidth: number;
|
|
286
|
-
};
|
|
287
|
-
xxl: {
|
|
288
|
-
maxWidth: number;
|
|
289
|
-
};
|
|
290
|
-
gtXs: {
|
|
291
|
-
minWidth: number;
|
|
292
|
-
};
|
|
293
|
-
gtSm: {
|
|
294
|
-
minWidth: number;
|
|
295
|
-
};
|
|
296
|
-
gtMd: {
|
|
297
|
-
minWidth: number;
|
|
298
|
-
};
|
|
299
|
-
gtLg: {
|
|
300
|
-
minWidth: number;
|
|
301
|
-
};
|
|
302
|
-
short: {
|
|
303
|
-
maxHeight: number;
|
|
304
|
-
};
|
|
305
|
-
tall: {
|
|
306
|
-
minHeight: number;
|
|
307
|
-
};
|
|
308
|
-
hoverNone: {
|
|
309
|
-
hover: string;
|
|
1
|
+
export declare function getDefaultTamaguiConfig(platform?: 'native' | 'web'): {
|
|
2
|
+
shouldAddPrefersColorThemes: boolean;
|
|
3
|
+
themeClassNameOnRoot: boolean;
|
|
4
|
+
animations: import("@tamagui/core").AnimationDriver<{
|
|
5
|
+
'100ms': {
|
|
6
|
+
type: "timing";
|
|
7
|
+
duration: number;
|
|
8
|
+
};
|
|
9
|
+
bouncy: {
|
|
10
|
+
damping: number;
|
|
11
|
+
mass: number;
|
|
12
|
+
stiffness: number;
|
|
13
|
+
};
|
|
14
|
+
lazy: {
|
|
15
|
+
damping: number;
|
|
16
|
+
stiffness: number;
|
|
17
|
+
};
|
|
18
|
+
medium: {
|
|
19
|
+
damping: number;
|
|
20
|
+
stiffness: number;
|
|
21
|
+
mass: number;
|
|
22
|
+
};
|
|
23
|
+
slow: {
|
|
24
|
+
damping: number;
|
|
25
|
+
stiffness: number;
|
|
26
|
+
};
|
|
27
|
+
quick: {
|
|
28
|
+
damping: number;
|
|
29
|
+
mass: number;
|
|
30
|
+
stiffness: number;
|
|
31
|
+
};
|
|
32
|
+
tooltip: {
|
|
33
|
+
damping: number;
|
|
34
|
+
mass: number;
|
|
35
|
+
stiffness: number;
|
|
36
|
+
};
|
|
37
|
+
}> | import("@tamagui/core").AnimationDriver<{
|
|
38
|
+
'75ms': string;
|
|
39
|
+
'100ms': string;
|
|
40
|
+
'200ms': string;
|
|
41
|
+
bouncy: string;
|
|
42
|
+
superBouncy: string;
|
|
43
|
+
lazy: string;
|
|
44
|
+
medium: string;
|
|
45
|
+
slow: string;
|
|
46
|
+
quick: string;
|
|
47
|
+
quicker: string;
|
|
48
|
+
quickest: string;
|
|
49
|
+
tooltip: string;
|
|
50
|
+
}>;
|
|
51
|
+
shorthands: {
|
|
52
|
+
readonly ussel: "userSelect";
|
|
53
|
+
readonly cur: "cursor";
|
|
54
|
+
readonly pe: "pointerEvents";
|
|
55
|
+
readonly col: "color";
|
|
56
|
+
readonly ff: "fontFamily";
|
|
57
|
+
readonly fos: "fontSize";
|
|
58
|
+
readonly fost: "fontStyle";
|
|
59
|
+
readonly fow: "fontWeight";
|
|
60
|
+
readonly ls: "letterSpacing";
|
|
61
|
+
readonly lh: "lineHeight";
|
|
62
|
+
readonly ta: "textAlign";
|
|
63
|
+
readonly tt: "textTransform";
|
|
64
|
+
readonly ww: "wordWrap";
|
|
65
|
+
readonly ac: "alignContent";
|
|
66
|
+
readonly ai: "alignItems";
|
|
67
|
+
readonly als: "alignSelf";
|
|
68
|
+
readonly b: "bottom";
|
|
69
|
+
readonly bc: "backgroundColor";
|
|
70
|
+
readonly bg: "backgroundColor";
|
|
71
|
+
readonly bbc: "borderBottomColor";
|
|
72
|
+
readonly bblr: "borderBottomLeftRadius";
|
|
73
|
+
readonly bbrr: "borderBottomRightRadius";
|
|
74
|
+
readonly bbw: "borderBottomWidth";
|
|
75
|
+
readonly blc: "borderLeftColor";
|
|
76
|
+
readonly blw: "borderLeftWidth";
|
|
77
|
+
readonly boc: "borderColor";
|
|
78
|
+
readonly br: "borderRadius";
|
|
79
|
+
readonly bs: "borderStyle";
|
|
80
|
+
readonly brw: "borderRightWidth";
|
|
81
|
+
readonly brc: "borderRightColor";
|
|
82
|
+
readonly btc: "borderTopColor";
|
|
83
|
+
readonly btlr: "borderTopLeftRadius";
|
|
84
|
+
readonly btrr: "borderTopRightRadius";
|
|
85
|
+
readonly btw: "borderTopWidth";
|
|
86
|
+
readonly bw: "borderWidth";
|
|
87
|
+
readonly dsp: "display";
|
|
88
|
+
readonly f: "flex";
|
|
89
|
+
readonly fb: "flexBasis";
|
|
90
|
+
readonly fd: "flexDirection";
|
|
91
|
+
readonly fg: "flexGrow";
|
|
92
|
+
readonly fs: "flexShrink";
|
|
93
|
+
readonly fw: "flexWrap";
|
|
94
|
+
readonly h: "height";
|
|
95
|
+
readonly jc: "justifyContent";
|
|
96
|
+
readonly l: "left";
|
|
97
|
+
readonly m: "margin";
|
|
98
|
+
readonly mah: "maxHeight";
|
|
99
|
+
readonly maw: "maxWidth";
|
|
100
|
+
readonly mb: "marginBottom";
|
|
101
|
+
readonly mih: "minHeight";
|
|
102
|
+
readonly miw: "minWidth";
|
|
103
|
+
readonly ml: "marginLeft";
|
|
104
|
+
readonly mr: "marginRight";
|
|
105
|
+
readonly mt: "marginTop";
|
|
106
|
+
readonly mx: "marginHorizontal";
|
|
107
|
+
readonly my: "marginVertical";
|
|
108
|
+
readonly o: "opacity";
|
|
109
|
+
readonly ov: "overflow";
|
|
110
|
+
readonly p: "padding";
|
|
111
|
+
readonly pb: "paddingBottom";
|
|
112
|
+
readonly pl: "paddingLeft";
|
|
113
|
+
readonly pos: "position";
|
|
114
|
+
readonly pr: "paddingRight";
|
|
115
|
+
readonly pt: "paddingTop";
|
|
116
|
+
readonly px: "paddingHorizontal";
|
|
117
|
+
readonly py: "paddingVertical";
|
|
118
|
+
readonly r: "right";
|
|
119
|
+
readonly shac: "shadowColor";
|
|
120
|
+
readonly shar: "shadowRadius";
|
|
121
|
+
readonly shof: "shadowOffset";
|
|
122
|
+
readonly shop: "shadowOpacity";
|
|
123
|
+
readonly t: "top";
|
|
124
|
+
readonly w: "width";
|
|
125
|
+
readonly zi: "zIndex";
|
|
126
|
+
};
|
|
127
|
+
fonts: {
|
|
128
|
+
heading: {
|
|
129
|
+
family: string;
|
|
130
|
+
size: {
|
|
131
|
+
1: number;
|
|
132
|
+
};
|
|
133
|
+
lineHeight: {
|
|
134
|
+
1: number;
|
|
135
|
+
};
|
|
136
|
+
transform: {};
|
|
137
|
+
weight: {
|
|
138
|
+
1: string;
|
|
139
|
+
};
|
|
140
|
+
color: {
|
|
141
|
+
1: string;
|
|
142
|
+
};
|
|
143
|
+
letterSpacing: {
|
|
144
|
+
1: number;
|
|
145
|
+
};
|
|
146
|
+
};
|
|
147
|
+
body: {
|
|
148
|
+
family: string;
|
|
149
|
+
size: {
|
|
150
|
+
1: number;
|
|
151
|
+
};
|
|
152
|
+
lineHeight: {
|
|
153
|
+
1: number;
|
|
154
|
+
};
|
|
155
|
+
transform: {};
|
|
156
|
+
weight: {
|
|
157
|
+
1: string;
|
|
158
|
+
};
|
|
159
|
+
color: {
|
|
160
|
+
1: string;
|
|
161
|
+
};
|
|
162
|
+
letterSpacing: {
|
|
163
|
+
1: number;
|
|
164
|
+
};
|
|
165
|
+
};
|
|
310
166
|
};
|
|
311
|
-
|
|
312
|
-
|
|
167
|
+
themes: {
|
|
168
|
+
light: {
|
|
169
|
+
background: import("@tamagui/core").Variable<string>;
|
|
170
|
+
color: import("@tamagui/core").Variable<string>;
|
|
171
|
+
};
|
|
172
|
+
dark: {
|
|
173
|
+
background: import("@tamagui/core").Variable<string>;
|
|
174
|
+
color: import("@tamagui/core").Variable<string>;
|
|
175
|
+
};
|
|
176
|
+
dark_blue: {
|
|
177
|
+
background: string;
|
|
178
|
+
color: string;
|
|
179
|
+
};
|
|
180
|
+
dark_Card: {
|
|
181
|
+
background: string;
|
|
182
|
+
color: string;
|
|
183
|
+
};
|
|
184
|
+
dark_Button: {
|
|
185
|
+
background: string;
|
|
186
|
+
color: string;
|
|
187
|
+
};
|
|
188
|
+
dark_blue_Button: {
|
|
189
|
+
background: string;
|
|
190
|
+
color: string;
|
|
191
|
+
};
|
|
192
|
+
dark_red: {
|
|
193
|
+
background: string;
|
|
194
|
+
color: string;
|
|
195
|
+
};
|
|
196
|
+
dark_red_alt1: {
|
|
197
|
+
background: string;
|
|
198
|
+
color: string;
|
|
199
|
+
};
|
|
200
|
+
dark_red_Button: {
|
|
201
|
+
background: string;
|
|
202
|
+
color: string;
|
|
203
|
+
};
|
|
204
|
+
dark_yellow_Button: {
|
|
205
|
+
background: string;
|
|
206
|
+
color: string;
|
|
207
|
+
};
|
|
208
|
+
dark_red_active_ListItem: {
|
|
209
|
+
background: string;
|
|
210
|
+
color: string;
|
|
211
|
+
};
|
|
212
|
+
dark_red_alt2: {
|
|
213
|
+
background: string;
|
|
214
|
+
color: string;
|
|
215
|
+
};
|
|
216
|
+
dark_red_alt2_Button: {
|
|
217
|
+
background: string;
|
|
218
|
+
color: string;
|
|
219
|
+
};
|
|
220
|
+
red: {
|
|
221
|
+
background: string;
|
|
222
|
+
color: string;
|
|
223
|
+
};
|
|
313
224
|
};
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
225
|
+
tokens: {
|
|
226
|
+
color: {
|
|
227
|
+
white: import("@tamagui/core").Variable<string>;
|
|
228
|
+
black: import("@tamagui/core").Variable<string>;
|
|
229
|
+
};
|
|
230
|
+
space: {
|
|
231
|
+
[x: string]: import("@tamagui/core").Variable<number>;
|
|
232
|
+
[x: number]: import("@tamagui/core").Variable<number>;
|
|
233
|
+
[x: symbol]: import("@tamagui/core").Variable<number>;
|
|
234
|
+
};
|
|
317
235
|
size: {
|
|
318
|
-
|
|
236
|
+
0: import("@tamagui/core").Variable<number>;
|
|
237
|
+
9: import("@tamagui/core").Variable<number>;
|
|
238
|
+
18: import("@tamagui/core").Variable<number>;
|
|
239
|
+
15: import("@tamagui/core").Variable<number>;
|
|
240
|
+
1: import("@tamagui/core").Variable<number>;
|
|
241
|
+
20: import("@tamagui/core").Variable<number>;
|
|
242
|
+
10: import("@tamagui/core").Variable<number>;
|
|
243
|
+
2: import("@tamagui/core").Variable<number>;
|
|
244
|
+
4: import("@tamagui/core").Variable<number>;
|
|
245
|
+
8: import("@tamagui/core").Variable<number>;
|
|
246
|
+
0.25: import("@tamagui/core").Variable<number>;
|
|
247
|
+
0.5: import("@tamagui/core").Variable<number>;
|
|
248
|
+
0.75: import("@tamagui/core").Variable<number>;
|
|
249
|
+
1.5: import("@tamagui/core").Variable<number>;
|
|
250
|
+
2.5: import("@tamagui/core").Variable<number>;
|
|
251
|
+
3: import("@tamagui/core").Variable<number>;
|
|
252
|
+
3.5: import("@tamagui/core").Variable<number>;
|
|
253
|
+
true: import("@tamagui/core").Variable<number>;
|
|
254
|
+
4.5: import("@tamagui/core").Variable<number>;
|
|
255
|
+
5: import("@tamagui/core").Variable<number>;
|
|
256
|
+
5.5: import("@tamagui/core").Variable<number>;
|
|
257
|
+
6: import("@tamagui/core").Variable<number>;
|
|
258
|
+
6.5: import("@tamagui/core").Variable<number>;
|
|
259
|
+
7: import("@tamagui/core").Variable<number>;
|
|
260
|
+
7.6: import("@tamagui/core").Variable<number>;
|
|
261
|
+
8.5: import("@tamagui/core").Variable<number>;
|
|
262
|
+
9.5: import("@tamagui/core").Variable<number>;
|
|
263
|
+
11: import("@tamagui/core").Variable<number>;
|
|
264
|
+
12: import("@tamagui/core").Variable<number>;
|
|
265
|
+
13: import("@tamagui/core").Variable<number>;
|
|
266
|
+
14: import("@tamagui/core").Variable<number>;
|
|
267
|
+
16: import("@tamagui/core").Variable<number>;
|
|
268
|
+
17: import("@tamagui/core").Variable<number>;
|
|
269
|
+
19: import("@tamagui/core").Variable<number>;
|
|
319
270
|
};
|
|
320
|
-
|
|
321
|
-
|
|
271
|
+
radius: {
|
|
272
|
+
0: import("@tamagui/core").Variable<number>;
|
|
273
|
+
9: import("@tamagui/core").Variable<number>;
|
|
274
|
+
1: import("@tamagui/core").Variable<number>;
|
|
275
|
+
10: import("@tamagui/core").Variable<number>;
|
|
276
|
+
2: import("@tamagui/core").Variable<number>;
|
|
277
|
+
4: import("@tamagui/core").Variable<number>;
|
|
278
|
+
8: import("@tamagui/core").Variable<number>;
|
|
279
|
+
3: import("@tamagui/core").Variable<number>;
|
|
280
|
+
5: import("@tamagui/core").Variable<number>;
|
|
281
|
+
6: import("@tamagui/core").Variable<number>;
|
|
282
|
+
7: import("@tamagui/core").Variable<number>;
|
|
283
|
+
11: import("@tamagui/core").Variable<number>;
|
|
284
|
+
12: import("@tamagui/core").Variable<number>;
|
|
322
285
|
};
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
1:
|
|
286
|
+
zIndex: {
|
|
287
|
+
0: import("@tamagui/core").Variable<number>;
|
|
288
|
+
1: import("@tamagui/core").Variable<number>;
|
|
289
|
+
2: import("@tamagui/core").Variable<number>;
|
|
290
|
+
4: import("@tamagui/core").Variable<number>;
|
|
291
|
+
3: import("@tamagui/core").Variable<number>;
|
|
292
|
+
5: import("@tamagui/core").Variable<number>;
|
|
326
293
|
};
|
|
294
|
+
} & Omit<{
|
|
327
295
|
color: {
|
|
328
|
-
|
|
296
|
+
white: import("@tamagui/core").Variable<string>;
|
|
297
|
+
black: import("@tamagui/core").Variable<string>;
|
|
329
298
|
};
|
|
330
|
-
|
|
331
|
-
|
|
299
|
+
radius: {
|
|
300
|
+
0: import("@tamagui/core").Variable<number>;
|
|
301
|
+
9: import("@tamagui/core").Variable<number>;
|
|
302
|
+
1: import("@tamagui/core").Variable<number>;
|
|
303
|
+
10: import("@tamagui/core").Variable<number>;
|
|
304
|
+
2: import("@tamagui/core").Variable<number>;
|
|
305
|
+
4: import("@tamagui/core").Variable<number>;
|
|
306
|
+
8: import("@tamagui/core").Variable<number>;
|
|
307
|
+
3: import("@tamagui/core").Variable<number>;
|
|
308
|
+
5: import("@tamagui/core").Variable<number>;
|
|
309
|
+
6: import("@tamagui/core").Variable<number>;
|
|
310
|
+
7: import("@tamagui/core").Variable<number>;
|
|
311
|
+
11: import("@tamagui/core").Variable<number>;
|
|
312
|
+
12: import("@tamagui/core").Variable<number>;
|
|
313
|
+
};
|
|
314
|
+
zIndex: {
|
|
315
|
+
0: import("@tamagui/core").Variable<number>;
|
|
316
|
+
1: import("@tamagui/core").Variable<number>;
|
|
317
|
+
2: import("@tamagui/core").Variable<number>;
|
|
318
|
+
4: import("@tamagui/core").Variable<number>;
|
|
319
|
+
3: import("@tamagui/core").Variable<number>;
|
|
320
|
+
5: import("@tamagui/core").Variable<number>;
|
|
321
|
+
};
|
|
322
|
+
space: {
|
|
323
|
+
[x: string]: import("@tamagui/core").Variable<any>;
|
|
324
|
+
[x: number]: import("@tamagui/core").Variable<any>;
|
|
325
|
+
[x: symbol]: import("@tamagui/core").Variable<any>;
|
|
332
326
|
};
|
|
333
|
-
};
|
|
334
|
-
body: {
|
|
335
|
-
family: string;
|
|
336
327
|
size: {
|
|
337
|
-
|
|
328
|
+
0: import("@tamagui/core").Variable<number>;
|
|
329
|
+
9: import("@tamagui/core").Variable<number>;
|
|
330
|
+
18: import("@tamagui/core").Variable<number>;
|
|
331
|
+
15: import("@tamagui/core").Variable<number>;
|
|
332
|
+
1: import("@tamagui/core").Variable<number>;
|
|
333
|
+
20: import("@tamagui/core").Variable<number>;
|
|
334
|
+
10: import("@tamagui/core").Variable<number>;
|
|
335
|
+
2: import("@tamagui/core").Variable<number>;
|
|
336
|
+
4: import("@tamagui/core").Variable<number>;
|
|
337
|
+
8: import("@tamagui/core").Variable<number>;
|
|
338
|
+
0.25: import("@tamagui/core").Variable<number>;
|
|
339
|
+
0.5: import("@tamagui/core").Variable<number>;
|
|
340
|
+
0.75: import("@tamagui/core").Variable<number>;
|
|
341
|
+
1.5: import("@tamagui/core").Variable<number>;
|
|
342
|
+
2.5: import("@tamagui/core").Variable<number>;
|
|
343
|
+
3: import("@tamagui/core").Variable<number>;
|
|
344
|
+
3.5: import("@tamagui/core").Variable<number>;
|
|
345
|
+
true: import("@tamagui/core").Variable<number>;
|
|
346
|
+
4.5: import("@tamagui/core").Variable<number>;
|
|
347
|
+
5: import("@tamagui/core").Variable<number>;
|
|
348
|
+
5.5: import("@tamagui/core").Variable<number>;
|
|
349
|
+
6: import("@tamagui/core").Variable<number>;
|
|
350
|
+
6.5: import("@tamagui/core").Variable<number>;
|
|
351
|
+
7: import("@tamagui/core").Variable<number>;
|
|
352
|
+
7.6: import("@tamagui/core").Variable<number>;
|
|
353
|
+
8.5: import("@tamagui/core").Variable<number>;
|
|
354
|
+
9.5: import("@tamagui/core").Variable<number>;
|
|
355
|
+
11: import("@tamagui/core").Variable<number>;
|
|
356
|
+
12: import("@tamagui/core").Variable<number>;
|
|
357
|
+
13: import("@tamagui/core").Variable<number>;
|
|
358
|
+
14: import("@tamagui/core").Variable<number>;
|
|
359
|
+
16: import("@tamagui/core").Variable<number>;
|
|
360
|
+
17: import("@tamagui/core").Variable<number>;
|
|
361
|
+
19: import("@tamagui/core").Variable<number>;
|
|
338
362
|
};
|
|
339
|
-
|
|
340
|
-
|
|
363
|
+
}, "color" | "space" | "size" | "radius" | "zIndex">;
|
|
364
|
+
media: {
|
|
365
|
+
xs: {
|
|
366
|
+
maxWidth: number;
|
|
341
367
|
};
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
1: string;
|
|
368
|
+
sm: {
|
|
369
|
+
maxWidth: number;
|
|
345
370
|
};
|
|
346
|
-
|
|
347
|
-
|
|
371
|
+
md: {
|
|
372
|
+
maxWidth: number;
|
|
373
|
+
};
|
|
374
|
+
lg: {
|
|
375
|
+
maxWidth: number;
|
|
376
|
+
};
|
|
377
|
+
xl: {
|
|
378
|
+
maxWidth: number;
|
|
379
|
+
};
|
|
380
|
+
xxl: {
|
|
381
|
+
maxWidth: number;
|
|
382
|
+
};
|
|
383
|
+
gtXs: {
|
|
384
|
+
minWidth: number;
|
|
385
|
+
};
|
|
386
|
+
gtSm: {
|
|
387
|
+
minWidth: number;
|
|
388
|
+
};
|
|
389
|
+
gtMd: {
|
|
390
|
+
minWidth: number;
|
|
391
|
+
};
|
|
392
|
+
gtLg: {
|
|
393
|
+
minWidth: number;
|
|
394
|
+
};
|
|
395
|
+
short: {
|
|
396
|
+
maxHeight: number;
|
|
397
|
+
};
|
|
398
|
+
tall: {
|
|
399
|
+
minHeight: number;
|
|
400
|
+
};
|
|
401
|
+
hoverNone: {
|
|
402
|
+
hover: string;
|
|
348
403
|
};
|
|
349
|
-
|
|
350
|
-
|
|
404
|
+
pointerCoarse: {
|
|
405
|
+
pointer: string;
|
|
351
406
|
};
|
|
352
407
|
};
|
|
353
|
-
}
|
|
354
|
-
allowedStyleValues: false;
|
|
355
|
-
autocompleteSpecificTokens: "except-special";
|
|
356
|
-
}>;
|
|
408
|
+
};
|
|
357
409
|
//# sourceMappingURL=index.d.ts.map
|
package/types/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAMA,wBAAgB,uBAAuB,CAAC,QAAQ,GAAE,QAAQ,GAAG,KAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA4NzE"}
|