@tamagui/themes 1.111.2 → 1.111.4
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 +7 -7
|
@@ -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.4",
|
|
4
4
|
"types": "./types/index.d.ts",
|
|
5
5
|
"main": "dist/cjs",
|
|
6
6
|
"module": "dist/esm",
|
|
@@ -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.4",
|
|
61
|
+
"@tamagui/create-theme": "1.111.4",
|
|
62
|
+
"@tamagui/theme-builder": "1.111.4",
|
|
63
|
+
"@tamagui/web": "1.111.4"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
|
-
"@tamagui/build": "1.111.
|
|
67
|
-
"@tamagui/cli": "1.111.
|
|
66
|
+
"@tamagui/build": "1.111.4",
|
|
67
|
+
"@tamagui/cli": "1.111.4",
|
|
68
68
|
"vitest": "0.34.3"
|
|
69
69
|
},
|
|
70
70
|
"publishConfig": {
|