@tamagui/themes 1.111.3 → 1.111.5
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/esm/componentThemeDefinitions.native.mjs +1 -1
- package/dist/esm/index.native.mjs +7 -7
- package/dist/esm/palettes.native.mjs +2 -2
- package/dist/esm/templates.native.mjs +1 -1
- package/dist/esm/themes-new.native.mjs +6 -6
- package/dist/esm/themes-old.native.mjs +1 -1
- package/dist/esm/themes.native.mjs +1 -1
- package/dist/esm/v2-themes.native.mjs +2 -2
- package/dist/esm/v2.native.mjs +2 -2
- package/dist/esm/v3.native.mjs +2 -2
- package/package.json +12 -12
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
export * from "./themes.mjs";
|
|
2
|
-
export * from "./tokens.mjs";
|
|
3
|
-
export * from "./masks.mjs";
|
|
4
|
-
export * from "./componentThemeDefinitions.mjs";
|
|
5
|
-
export * from "./palettes.mjs";
|
|
1
|
+
export * from "./themes.native.mjs";
|
|
2
|
+
export * from "./tokens.native.mjs";
|
|
3
|
+
export * from "./masks.native.mjs";
|
|
4
|
+
export * from "./componentThemeDefinitions.native.mjs";
|
|
5
|
+
export * from "./palettes.native.mjs";
|
|
6
6
|
export * from "@tamagui/colors";
|
|
7
|
-
export * from "./templates.mjs";
|
|
8
|
-
export * from "./shadows.mjs";
|
|
7
|
+
export * from "./templates.native.mjs";
|
|
8
|
+
export * from "./shadows.native.mjs";
|
|
9
9
|
//# sourceMappingURL=index.native.mjs.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { objectFromEntries, objectKeys } from "./helpers.mjs";
|
|
2
|
-
import { colorTokens } from "./tokens.mjs";
|
|
1
|
+
import { objectFromEntries, objectKeys } from "./helpers.native.mjs";
|
|
2
|
+
import { colorTokens } from "./tokens.native.mjs";
|
|
3
3
|
var palettes = function () {
|
|
4
4
|
var lightTransparent = "rgba(255,255,255,0)",
|
|
5
5
|
darkTransparent = "rgba(10,10,10,0)",
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { createThemeBuilder } from "@tamagui/theme-builder";
|
|
2
|
-
import { componentThemeDefinitions } from "./componentThemeDefinitions.mjs";
|
|
3
|
-
import { masks } from "./masks.mjs";
|
|
4
|
-
import { palettes } from "./palettes.mjs";
|
|
5
|
-
import { shadows } from "./shadows.mjs";
|
|
6
|
-
import { maskOptions, templates } from "./templates.mjs";
|
|
7
|
-
import { darkColors, lightColors } from "./tokens.mjs";
|
|
2
|
+
import { componentThemeDefinitions } from "./componentThemeDefinitions.native.mjs";
|
|
3
|
+
import { masks } from "./masks.native.mjs";
|
|
4
|
+
import { palettes } from "./palettes.native.mjs";
|
|
5
|
+
import { shadows } from "./shadows.native.mjs";
|
|
6
|
+
import { maskOptions, templates } from "./templates.native.mjs";
|
|
7
|
+
import { darkColors, lightColors } from "./tokens.native.mjs";
|
|
8
8
|
var colorThemeDefinition = function (colorName) {
|
|
9
9
|
return [{
|
|
10
10
|
parent: "light",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { addChildren, applyMask, createStrengthenMask, createTheme, createWeakenMask, skipMask } from "@tamagui/create-theme";
|
|
2
|
-
import { colorTokens, darkColors, lightColors } from "./tokens.mjs";
|
|
2
|
+
import { colorTokens, darkColors, lightColors } from "./tokens.native.mjs";
|
|
3
3
|
var lightTransparent = "rgba(255,255,255,0)",
|
|
4
4
|
darkTransparent = "rgba(10,10,10,0)",
|
|
5
5
|
palettes = {
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { createThemeBuilder } from "@tamagui/theme-builder";
|
|
2
2
|
import { blue, blueDark, gray, grayDark, green, greenDark, orange, orangeDark, pink, pinkDark, purple, purpleDark, red, redDark, yellow, yellowDark } from "@tamagui/colors";
|
|
3
3
|
import { createTokens } from "@tamagui/web";
|
|
4
|
-
import { masks } from "./masks.mjs";
|
|
5
|
-
import { masks as masks2 } from "./masks.mjs";
|
|
4
|
+
import { masks } from "./masks.native.mjs";
|
|
5
|
+
import { masks as masks2 } from "./masks.native.mjs";
|
|
6
6
|
var colorTokens = {
|
|
7
7
|
light: {
|
|
8
8
|
blue,
|
package/dist/esm/v2.native.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import * as generatedThemes from "./generated-v2.mjs";
|
|
2
|
-
import { tokens } from "./tokens.mjs";
|
|
1
|
+
import * as generatedThemes from "./generated-v2.native.mjs";
|
|
2
|
+
import { tokens } from "./tokens.native.mjs";
|
|
3
3
|
import { blue, blueDark } from "@tamagui/colors";
|
|
4
4
|
import { green, greenDark } from "@tamagui/colors";
|
|
5
5
|
import { red, redDark } from "@tamagui/colors";
|
package/dist/esm/v3.native.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import * as generatedThemes from "./generated-v3.mjs";
|
|
2
|
-
import { tokens } from "./v3-themes.mjs";
|
|
1
|
+
import * as generatedThemes from "./generated-v3.native.mjs";
|
|
2
|
+
import { tokens } from "./v3-themes.native.mjs";
|
|
3
3
|
import { blue, blueDark } from "@tamagui/colors";
|
|
4
4
|
import { green, greenDark } from "@tamagui/colors";
|
|
5
5
|
import { red, redDark } from "@tamagui/colors";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/themes",
|
|
3
|
-
"version": "1.111.
|
|
3
|
+
"version": "1.111.5",
|
|
4
4
|
"types": "./types/index.d.ts",
|
|
5
5
|
"main": "dist/cjs",
|
|
6
6
|
"module": "dist/esm",
|
|
@@ -21,35 +21,35 @@
|
|
|
21
21
|
"./package.json": "./package.json",
|
|
22
22
|
"./src/themes-new.ts": "./src/themes-new.ts",
|
|
23
23
|
".": {
|
|
24
|
-
"react-native-import": "./dist/esm/index.native.
|
|
24
|
+
"react-native-import": "./dist/esm/index.native.mjs",
|
|
25
25
|
"react-native": "./dist/cjs/index.native.js",
|
|
26
26
|
"types": "./types/index.d.ts",
|
|
27
27
|
"import": "./dist/esm/index.mjs",
|
|
28
28
|
"require": "./dist/cjs/index.js"
|
|
29
29
|
},
|
|
30
30
|
"./v2": {
|
|
31
|
-
"react-native-import": "./dist/esm/v2.native.
|
|
31
|
+
"react-native-import": "./dist/esm/v2.native.mjs",
|
|
32
32
|
"react-native": "./dist/cjs/v2.native.js",
|
|
33
33
|
"types": "./types/v2.d.ts",
|
|
34
34
|
"import": "./dist/esm/v2.mjs",
|
|
35
35
|
"require": "./dist/cjs/v2.js"
|
|
36
36
|
},
|
|
37
37
|
"./v2-themes": {
|
|
38
|
-
"react-native-import": "./dist/esm/v2-themes.native.
|
|
38
|
+
"react-native-import": "./dist/esm/v2-themes.native.mjs",
|
|
39
39
|
"react-native": "./dist/cjs/v2-themes.native.js",
|
|
40
40
|
"types": "./types/v2-themes.d.ts",
|
|
41
41
|
"import": "./dist/esm/v2-themes.mjs",
|
|
42
42
|
"require": "./dist/cjs/v2-themes.js"
|
|
43
43
|
},
|
|
44
44
|
"./v3": {
|
|
45
|
-
"react-native-import": "./dist/esm/v3.native.
|
|
45
|
+
"react-native-import": "./dist/esm/v3.native.mjs",
|
|
46
46
|
"react-native": "./dist/cjs/v3.native.js",
|
|
47
47
|
"types": "./types/v3.d.ts",
|
|
48
48
|
"import": "./dist/esm/v3.mjs",
|
|
49
49
|
"require": "./dist/cjs/v3.js"
|
|
50
50
|
},
|
|
51
51
|
"./v3-themes": {
|
|
52
|
-
"react-native-import": "./dist/esm/v3-themes.native.
|
|
52
|
+
"react-native-import": "./dist/esm/v3-themes.native.mjs",
|
|
53
53
|
"react-native": "./dist/cjs/v3-themes.native.js",
|
|
54
54
|
"types": "./types/v3-themes.d.ts",
|
|
55
55
|
"import": "./dist/esm/v3-themes.mjs",
|
|
@@ -57,14 +57,14 @@
|
|
|
57
57
|
}
|
|
58
58
|
},
|
|
59
59
|
"dependencies": {
|
|
60
|
-
"@tamagui/colors": "1.111.
|
|
61
|
-
"@tamagui/create-theme": "1.111.
|
|
62
|
-
"@tamagui/theme-builder": "1.111.
|
|
63
|
-
"@tamagui/web": "1.111.
|
|
60
|
+
"@tamagui/colors": "1.111.5",
|
|
61
|
+
"@tamagui/create-theme": "1.111.5",
|
|
62
|
+
"@tamagui/theme-builder": "1.111.5",
|
|
63
|
+
"@tamagui/web": "1.111.5"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
|
-
"@tamagui/build": "1.111.
|
|
67
|
-
"@tamagui/cli": "1.111.
|
|
66
|
+
"@tamagui/build": "1.111.5",
|
|
67
|
+
"@tamagui/cli": "1.111.5",
|
|
68
68
|
"vitest": "0.34.3"
|
|
69
69
|
},
|
|
70
70
|
"publishConfig": {
|