@tamagui/tamagui-dev-config 1.138.1 → 1.138.3
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/tamagui.dev.config.cjs +7 -12
- package/dist/cjs/tamagui.dev.config.js +7 -10
- package/dist/cjs/tamagui.dev.config.js.map +1 -1
- package/dist/esm/tamagui.dev.config.js +7 -11
- package/dist/esm/tamagui.dev.config.js.map +1 -1
- package/dist/esm/tamagui.dev.config.mjs +7 -12
- package/dist/esm/tamagui.dev.config.mjs.map +1 -1
- package/package.json +14 -14
- package/src/tamagui.dev.config.ts +7 -14
|
@@ -23,9 +23,8 @@ __export(tamagui_dev_config_exports, {
|
|
|
23
23
|
config: () => config
|
|
24
24
|
});
|
|
25
25
|
module.exports = __toCommonJS(tamagui_dev_config_exports);
|
|
26
|
-
var
|
|
26
|
+
var import_v4 = require("@tamagui/config/v4"),
|
|
27
27
|
import_core = require("@tamagui/core"),
|
|
28
|
-
import_v2 = require("@tamagui/shorthands/v2"),
|
|
29
28
|
import_animations = require("./animations.cjs"),
|
|
30
29
|
import_fonts = require("./fonts.cjs"),
|
|
31
30
|
import_media = require("./media.cjs"),
|
|
@@ -40,21 +39,15 @@ const fonts = {
|
|
|
40
39
|
silkscreen: import_fonts.silkscreenFont,
|
|
41
40
|
cherryBomb: import_fonts.cherryBombFont
|
|
42
41
|
},
|
|
43
|
-
fixTypescript55Bug = {
|
|
44
|
-
space: import_v3.tokens.space,
|
|
45
|
-
size: import_v3.tokens.size,
|
|
46
|
-
radius: import_v3.tokens.radius,
|
|
47
|
-
zIndex: import_v3.tokens.zIndex,
|
|
48
|
-
color: import_v3.tokens.color
|
|
49
|
-
},
|
|
50
42
|
config = {
|
|
43
|
+
...import_v4.defaultConfig,
|
|
51
44
|
fonts,
|
|
52
45
|
animations: import_animations.animations,
|
|
53
46
|
themes: import_theme.themeDev,
|
|
54
47
|
media: import_media.media,
|
|
55
|
-
shorthands
|
|
56
|
-
tokens: fixTypescript55Bug,
|
|
48
|
+
// v4 has shorthands built-in, no need to import
|
|
57
49
|
settings: {
|
|
50
|
+
...import_v4.defaultConfig.settings,
|
|
58
51
|
defaultFont: "body",
|
|
59
52
|
shouldAddPrefersColorThemes: !0,
|
|
60
53
|
maxDarkLightNesting: 2,
|
|
@@ -66,7 +59,9 @@ const fonts = {
|
|
|
66
59
|
color: theme.color11
|
|
67
60
|
}),
|
|
68
61
|
allowedStyleValues: "somewhat-strict-web",
|
|
69
|
-
autocompleteSpecificTokens: "except-special"
|
|
62
|
+
autocompleteSpecificTokens: "except-special",
|
|
63
|
+
// Allow full style props (not just shorthands) for demos
|
|
64
|
+
onlyAllowShorthands: !1
|
|
70
65
|
}
|
|
71
66
|
};
|
|
72
67
|
Object.assign(config.media, {
|
|
@@ -17,7 +17,7 @@ __export(tamagui_dev_config_exports, {
|
|
|
17
17
|
config: () => config
|
|
18
18
|
});
|
|
19
19
|
module.exports = __toCommonJS(tamagui_dev_config_exports);
|
|
20
|
-
var
|
|
20
|
+
var import_v4 = require("@tamagui/config/v4"), import_core = require("@tamagui/core"), import_animations = require("./animations"), import_fonts = require("./fonts"), import_media = require("./media"), import_theme = require("./theme.dev");
|
|
21
21
|
(0, import_core.setupDev)({
|
|
22
22
|
visualizer: !0
|
|
23
23
|
});
|
|
@@ -27,20 +27,15 @@ const fonts = {
|
|
|
27
27
|
mono: import_fonts.monoFont,
|
|
28
28
|
silkscreen: import_fonts.silkscreenFont,
|
|
29
29
|
cherryBomb: import_fonts.cherryBombFont
|
|
30
|
-
}, fixTypescript55Bug = {
|
|
31
|
-
space: import_v3.tokens.space,
|
|
32
|
-
size: import_v3.tokens.size,
|
|
33
|
-
radius: import_v3.tokens.radius,
|
|
34
|
-
zIndex: import_v3.tokens.zIndex,
|
|
35
|
-
color: import_v3.tokens.color
|
|
36
30
|
}, config = {
|
|
31
|
+
...import_v4.defaultConfig,
|
|
37
32
|
fonts,
|
|
38
33
|
animations: import_animations.animations,
|
|
39
34
|
themes: import_theme.themeDev,
|
|
40
35
|
media: import_media.media,
|
|
41
|
-
shorthands
|
|
42
|
-
tokens: fixTypescript55Bug,
|
|
36
|
+
// v4 has shorthands built-in, no need to import
|
|
43
37
|
settings: {
|
|
38
|
+
...import_v4.defaultConfig.settings,
|
|
44
39
|
defaultFont: "body",
|
|
45
40
|
shouldAddPrefersColorThemes: !0,
|
|
46
41
|
maxDarkLightNesting: 2,
|
|
@@ -52,7 +47,9 @@ const fonts = {
|
|
|
52
47
|
color: theme.color11
|
|
53
48
|
}),
|
|
54
49
|
allowedStyleValues: "somewhat-strict-web",
|
|
55
|
-
autocompleteSpecificTokens: "except-special"
|
|
50
|
+
autocompleteSpecificTokens: "except-special",
|
|
51
|
+
// Allow full style props (not just shorthands) for demos
|
|
52
|
+
onlyAllowShorthands: !1
|
|
56
53
|
}
|
|
57
54
|
};
|
|
58
55
|
Object.assign(config.media, {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/tamagui.dev.config.ts"],
|
|
4
|
-
"mappings": ";;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,
|
|
4
|
+
"mappings": ";;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,gBAA8B,+BAE9B,cAAyB,0BACzB,oBAA2B,yBAC3B,eAAgF,oBAChF,eAA+C,oBAC/C,eAAyB;AAAA,IAEzB,sBAAS;AAAA,EACP,YAAY;AACd,CAAC;AAED,MAAM,QAAQ;AAAA,EACZ,SAAS;AAAA,EACT,MAAM;AAAA,EACN,MAAM;AAAA,EACN,YAAY;AAAA,EACZ,YAAY;AACd,GAGa,SAAS;AAAA,EACpB,GAAG;AAAA,EACH;AAAA,EACA;AAAA,EACA,QAAQ;AAAA,EACR;AAAA;AAAA,EAEA,UAAU;AAAA,IACR,GAAG,wBAAc;AAAA,IACjB,aAAa;AAAA,IACb,6BAA6B;AAAA,IAC7B,qBAAqB;AAAA,IACrB,sBAAsB;AAAA,IACtB,uBAAuB;AAAA,IACvB;AAAA,IACA,iBAAiB,CAAC,WAAW;AAAA,MAC3B,iBAAiB,MAAM;AAAA,MACvB,OAAO,MAAM;AAAA,IACf;AAAA,IACA,oBAAoB;AAAA,IACpB,4BAA4B;AAAA;AAAA,IAE5B,qBAAqB;AAAA,EACvB;AACF;AAGA,OAAO,OAAO,OAAO,OAAO;AAAA,EAC1B,MAAM,EAAE,UAAU,IAAI;AAAA,EACtB,QAAQ,EAAE,UAAU,IAAQ;AAAA,EAC5B,OAAO,EAAE,UAAU,IAAI;AAAA,EACvB,SAAS,EAAE,UAAU,IAAQ;AAAA,EAC7B,QAAQ,EAAE,UAAU,IAAI;AAAA,EACxB,UAAU,EAAE,UAAU,IAAQ;AAAA,EAC9B,OAAO,EAAE,UAAU,IAAI;AAAA,EACvB,SAAS,EAAE,UAAU,IAAQ;AAC/B,CAAC;",
|
|
5
5
|
"names": []
|
|
6
6
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { defaultConfig } from "@tamagui/config/v4";
|
|
2
2
|
import { setupDev } from "@tamagui/core";
|
|
3
|
-
import { shorthands } from "@tamagui/shorthands/v2";
|
|
4
3
|
import { animations } from "./animations";
|
|
5
4
|
import { bodyFont, cherryBombFont, headingFont, monoFont, silkscreenFont } from "./fonts";
|
|
6
5
|
import { media, mediaQueryDefaultActive } from "./media";
|
|
@@ -14,20 +13,15 @@ const fonts = {
|
|
|
14
13
|
mono: monoFont,
|
|
15
14
|
silkscreen: silkscreenFont,
|
|
16
15
|
cherryBomb: cherryBombFont
|
|
17
|
-
}, fixTypescript55Bug = {
|
|
18
|
-
space: tokens.space,
|
|
19
|
-
size: tokens.size,
|
|
20
|
-
radius: tokens.radius,
|
|
21
|
-
zIndex: tokens.zIndex,
|
|
22
|
-
color: tokens.color
|
|
23
16
|
}, config = {
|
|
17
|
+
...defaultConfig,
|
|
24
18
|
fonts,
|
|
25
19
|
animations,
|
|
26
20
|
themes: themeDev,
|
|
27
21
|
media,
|
|
28
|
-
shorthands,
|
|
29
|
-
tokens: fixTypescript55Bug,
|
|
22
|
+
// v4 has shorthands built-in, no need to import
|
|
30
23
|
settings: {
|
|
24
|
+
...defaultConfig.settings,
|
|
31
25
|
defaultFont: "body",
|
|
32
26
|
shouldAddPrefersColorThemes: !0,
|
|
33
27
|
maxDarkLightNesting: 2,
|
|
@@ -39,7 +33,9 @@ const fonts = {
|
|
|
39
33
|
color: theme.color11
|
|
40
34
|
}),
|
|
41
35
|
allowedStyleValues: "somewhat-strict-web",
|
|
42
|
-
autocompleteSpecificTokens: "except-special"
|
|
36
|
+
autocompleteSpecificTokens: "except-special",
|
|
37
|
+
// Allow full style props (not just shorthands) for demos
|
|
38
|
+
onlyAllowShorthands: !1
|
|
43
39
|
}
|
|
44
40
|
};
|
|
45
41
|
Object.assign(config.media, {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/tamagui.dev.config.ts"],
|
|
4
|
-
"mappings": "AAAA,SAAS,
|
|
4
|
+
"mappings": "AAAA,SAAS,qBAAqB;AAE9B,SAAS,gBAAgB;AACzB,SAAS,kBAAkB;AAC3B,SAAS,UAAU,gBAAgB,aAAa,UAAU,sBAAsB;AAChF,SAAS,OAAO,+BAA+B;AAC/C,SAAS,gBAAgB;AAEzB,SAAS;AAAA,EACP,YAAY;AACd,CAAC;AAED,MAAM,QAAQ;AAAA,EACZ,SAAS;AAAA,EACT,MAAM;AAAA,EACN,MAAM;AAAA,EACN,YAAY;AAAA,EACZ,YAAY;AACd,GAGa,SAAS;AAAA,EACpB,GAAG;AAAA,EACH;AAAA,EACA;AAAA,EACA,QAAQ;AAAA,EACR;AAAA;AAAA,EAEA,UAAU;AAAA,IACR,GAAG,cAAc;AAAA,IACjB,aAAa;AAAA,IACb,6BAA6B;AAAA,IAC7B,qBAAqB;AAAA,IACrB,sBAAsB;AAAA,IACtB,uBAAuB;AAAA,IACvB;AAAA,IACA,iBAAiB,CAAC,WAAW;AAAA,MAC3B,iBAAiB,MAAM;AAAA,MACvB,OAAO,MAAM;AAAA,IACf;AAAA,IACA,oBAAoB;AAAA,IACpB,4BAA4B;AAAA;AAAA,IAE5B,qBAAqB;AAAA,EACvB;AACF;AAGA,OAAO,OAAO,OAAO,OAAO;AAAA,EAC1B,MAAM,EAAE,UAAU,IAAI;AAAA,EACtB,QAAQ,EAAE,UAAU,IAAQ;AAAA,EAC5B,OAAO,EAAE,UAAU,IAAI;AAAA,EACvB,SAAS,EAAE,UAAU,IAAQ;AAAA,EAC7B,QAAQ,EAAE,UAAU,IAAI;AAAA,EACxB,UAAU,EAAE,UAAU,IAAQ;AAAA,EAC9B,OAAO,EAAE,UAAU,IAAI;AAAA,EACvB,SAAS,EAAE,UAAU,IAAQ;AAC/B,CAAC;",
|
|
5
5
|
"names": []
|
|
6
6
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { defaultConfig } from "@tamagui/config/v4";
|
|
2
2
|
import { setupDev } from "@tamagui/core";
|
|
3
|
-
import { shorthands } from "@tamagui/shorthands/v2";
|
|
4
3
|
import { animations } from "./animations.mjs";
|
|
5
4
|
import { bodyFont, cherryBombFont, headingFont, monoFont, silkscreenFont } from "./fonts.mjs";
|
|
6
5
|
import { media, mediaQueryDefaultActive } from "./media.mjs";
|
|
@@ -15,21 +14,15 @@ const fonts = {
|
|
|
15
14
|
silkscreen: silkscreenFont,
|
|
16
15
|
cherryBomb: cherryBombFont
|
|
17
16
|
},
|
|
18
|
-
fixTypescript55Bug = {
|
|
19
|
-
space: tokens.space,
|
|
20
|
-
size: tokens.size,
|
|
21
|
-
radius: tokens.radius,
|
|
22
|
-
zIndex: tokens.zIndex,
|
|
23
|
-
color: tokens.color
|
|
24
|
-
},
|
|
25
17
|
config = {
|
|
18
|
+
...defaultConfig,
|
|
26
19
|
fonts,
|
|
27
20
|
animations,
|
|
28
21
|
themes: themeDev,
|
|
29
22
|
media,
|
|
30
|
-
shorthands,
|
|
31
|
-
tokens: fixTypescript55Bug,
|
|
23
|
+
// v4 has shorthands built-in, no need to import
|
|
32
24
|
settings: {
|
|
25
|
+
...defaultConfig.settings,
|
|
33
26
|
defaultFont: "body",
|
|
34
27
|
shouldAddPrefersColorThemes: !0,
|
|
35
28
|
maxDarkLightNesting: 2,
|
|
@@ -41,7 +34,9 @@ const fonts = {
|
|
|
41
34
|
color: theme.color11
|
|
42
35
|
}),
|
|
43
36
|
allowedStyleValues: "somewhat-strict-web",
|
|
44
|
-
autocompleteSpecificTokens: "except-special"
|
|
37
|
+
autocompleteSpecificTokens: "except-special",
|
|
38
|
+
// Allow full style props (not just shorthands) for demos
|
|
39
|
+
onlyAllowShorthands: !1
|
|
45
40
|
}
|
|
46
41
|
};
|
|
47
42
|
Object.assign(config.media, {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["
|
|
1
|
+
{"version":3,"names":["defaultConfig","setupDev","animations","bodyFont","cherryBombFont","headingFont","monoFont","silkscreenFont","media","mediaQueryDefaultActive","themeDev","visualizer","fonts","heading","body","mono","silkscreen","cherryBomb","config","themes","settings","defaultFont","shouldAddPrefersColorThemes","maxDarkLightNesting","themeClassNameOnRoot","disableRootThemeClass","selectionStyles","theme","backgroundColor","color5","color","color11","allowedStyleValues","autocompleteSpecificTokens","onlyAllowShorthands","Object","assign","tiny","maxWidth","gtTiny","minWidth","small","gtSmall","medium","gtMedium","large","gtLarge"],"sources":["../../src/tamagui.dev.config.ts"],"sourcesContent":[null],"mappings":"AAAA,SAASA,aAAA,QAAqB;AAE9B,SAASC,QAAA,QAAgB;AACzB,SAASC,UAAA,QAAkB;AAC3B,SAASC,QAAA,EAAUC,cAAA,EAAgBC,WAAA,EAAaC,QAAA,EAAUC,cAAA,QAAsB;AAChF,SAASC,KAAA,EAAOC,uBAAA,QAA+B;AAC/C,SAASC,QAAA,QAAgB;AAEzBT,QAAA,CAAS;EACPU,UAAA,EAAY;AACd,CAAC;AAED,MAAMC,KAAA,GAAQ;IACZC,OAAA,EAASR,WAAA;IACTS,IAAA,EAAMX,QAAA;IACNY,IAAA,EAAMT,QAAA;IACNU,UAAA,EAAYT,cAAA;IACZU,UAAA,EAAYb;EACd;EAGac,MAAA,GAAS;IACpB,GAAGlB,aAAA;IACHY,KAAA;IACAV,UAAA;IACAiB,MAAA,EAAQT,QAAA;IACRF,KAAA;IAAA;IAEAY,QAAA,EAAU;MACR,GAAGpB,aAAA,CAAcoB,QAAA;MACjBC,WAAA,EAAa;MACbC,2BAAA,EAA6B;MAC7BC,mBAAA,EAAqB;MACrBC,oBAAA,EAAsB;MACtBC,qBAAA,EAAuB;MACvBhB,uBAAA;MACAiB,eAAA,EAAkBC,KAAA,KAAW;QAC3BC,eAAA,EAAiBD,KAAA,CAAME,MAAA;QACvBC,KAAA,EAAOH,KAAA,CAAMI;MACf;MACAC,kBAAA,EAAoB;MACpBC,0BAAA,EAA4B;MAAA;MAE5BC,mBAAA,EAAqB;IACvB;EACF;AAGAC,MAAA,CAAOC,MAAA,CAAOlB,MAAA,CAAOV,KAAA,EAAO;EAC1B6B,IAAA,EAAM;IAAEC,QAAA,EAAU;EAAI;EACtBC,MAAA,EAAQ;IAAEC,QAAA,EAAU;EAAQ;EAC5BC,KAAA,EAAO;IAAEH,QAAA,EAAU;EAAI;EACvBI,OAAA,EAAS;IAAEF,QAAA,EAAU;EAAQ;EAC7BG,MAAA,EAAQ;IAAEL,QAAA,EAAU;EAAI;EACxBM,QAAA,EAAU;IAAEJ,QAAA,EAAU;EAAQ;EAC9BK,KAAA,EAAO;IAAEP,QAAA,EAAU;EAAI;EACvBQ,OAAA,EAAS;IAAEN,QAAA,EAAU;EAAQ;AAC/B,CAAC","ignoreList":[]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/tamagui-dev-config",
|
|
3
|
-
"version": "1.138.
|
|
3
|
+
"version": "1.138.3",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"source": "src/index.ts",
|
|
6
6
|
"types": "./src/index.ts",
|
|
@@ -30,22 +30,22 @@
|
|
|
30
30
|
"clean:build": "tamagui-build clean:build"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@tamagui/animations-css": "1.138.
|
|
34
|
-
"@tamagui/animations-moti": "1.138.
|
|
35
|
-
"@tamagui/animations-motion": "1.138.
|
|
36
|
-
"@tamagui/colors": "1.138.
|
|
37
|
-
"@tamagui/config": "1.138.
|
|
38
|
-
"@tamagui/core": "1.138.
|
|
39
|
-
"@tamagui/font-cherry-bomb": "1.138.
|
|
40
|
-
"@tamagui/font-inter": "1.138.
|
|
41
|
-
"@tamagui/font-silkscreen": "1.138.
|
|
42
|
-
"@tamagui/shorthands": "1.138.
|
|
43
|
-
"@tamagui/theme-builder": "1.138.
|
|
44
|
-
"@tamagui/themes": "1.138.
|
|
33
|
+
"@tamagui/animations-css": "1.138.3",
|
|
34
|
+
"@tamagui/animations-moti": "1.138.3",
|
|
35
|
+
"@tamagui/animations-motion": "1.138.3",
|
|
36
|
+
"@tamagui/colors": "1.138.3",
|
|
37
|
+
"@tamagui/config": "1.138.3",
|
|
38
|
+
"@tamagui/core": "1.138.3",
|
|
39
|
+
"@tamagui/font-cherry-bomb": "1.138.3",
|
|
40
|
+
"@tamagui/font-inter": "1.138.3",
|
|
41
|
+
"@tamagui/font-silkscreen": "1.138.3",
|
|
42
|
+
"@tamagui/shorthands": "1.138.3",
|
|
43
|
+
"@tamagui/theme-builder": "1.138.3",
|
|
44
|
+
"@tamagui/themes": "1.138.3",
|
|
45
45
|
"color2k": "^2.0.2"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@tamagui/build": "1.138.
|
|
48
|
+
"@tamagui/build": "1.138.3",
|
|
49
49
|
"react": "*"
|
|
50
50
|
},
|
|
51
51
|
"peerDependencies": {
|
|
@@ -1,9 +1,7 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { defaultConfig } from '@tamagui/config/v4'
|
|
2
2
|
import type { CreateTamaguiProps } from '@tamagui/core'
|
|
3
3
|
import { setupDev } from '@tamagui/core'
|
|
4
|
-
import { shorthands } from '@tamagui/shorthands/v2'
|
|
5
4
|
import { animations } from './animations'
|
|
6
|
-
// import { animationsMotion as animations } from './animations.motion'
|
|
7
5
|
import { bodyFont, cherryBombFont, headingFont, monoFont, silkscreenFont } from './fonts'
|
|
8
6
|
import { media, mediaQueryDefaultActive } from './media'
|
|
9
7
|
import { themeDev } from './theme.dev'
|
|
@@ -20,23 +18,16 @@ const fonts = {
|
|
|
20
18
|
cherryBomb: cherryBombFont,
|
|
21
19
|
}
|
|
22
20
|
|
|
23
|
-
//
|
|
24
|
-
const fixTypescript55Bug = {
|
|
25
|
-
space: tokens.space,
|
|
26
|
-
size: tokens.size,
|
|
27
|
-
radius: tokens.radius,
|
|
28
|
-
zIndex: tokens.zIndex,
|
|
29
|
-
color: tokens.color,
|
|
30
|
-
}
|
|
31
|
-
|
|
21
|
+
// Use v4 config as base and override with our customizations
|
|
32
22
|
export const config = {
|
|
23
|
+
...defaultConfig,
|
|
33
24
|
fonts,
|
|
34
25
|
animations,
|
|
35
26
|
themes: themeDev,
|
|
36
27
|
media,
|
|
37
|
-
shorthands,
|
|
38
|
-
tokens: fixTypescript55Bug,
|
|
28
|
+
// v4 has shorthands built-in, no need to import
|
|
39
29
|
settings: {
|
|
30
|
+
...defaultConfig.settings,
|
|
40
31
|
defaultFont: 'body',
|
|
41
32
|
shouldAddPrefersColorThemes: true,
|
|
42
33
|
maxDarkLightNesting: 2,
|
|
@@ -49,6 +40,8 @@ export const config = {
|
|
|
49
40
|
}),
|
|
50
41
|
allowedStyleValues: 'somewhat-strict-web',
|
|
51
42
|
autocompleteSpecificTokens: 'except-special',
|
|
43
|
+
// Allow full style props (not just shorthands) for demos
|
|
44
|
+
onlyAllowShorthands: false,
|
|
52
45
|
},
|
|
53
46
|
} satisfies CreateTamaguiProps
|
|
54
47
|
|