@tamagui/themes 1.111.3 → 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.
@@ -1,4 +1,4 @@
1
- import { maskOptions } from "./templates.mjs";
1
+ import { maskOptions } from "./templates.native.mjs";
2
2
  var overlayThemes = {
3
3
  light: {
4
4
  background: "rgba(0,0,0,0.5)"
@@ -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,4 +1,4 @@
1
- import { palettes } from "./palettes.mjs";
1
+ import { palettes } from "./palettes.native.mjs";
2
2
  var templateColorsSpecific = {
3
3
  color1: 1,
4
4
  color2: 2,
@@ -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,3 +1,3 @@
1
- import * as themes from "./generated-new.mjs";
1
+ import * as themes from "./generated-new.native.mjs";
2
2
  export { themes };
3
3
  //# sourceMappingURL=themes.native.mjs.map
@@ -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,
@@ -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";
@@ -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",
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.3",
61
- "@tamagui/create-theme": "1.111.3",
62
- "@tamagui/theme-builder": "1.111.3",
63
- "@tamagui/web": "1.111.3"
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.3",
67
- "@tamagui/cli": "1.111.3",
66
+ "@tamagui/build": "1.111.4",
67
+ "@tamagui/cli": "1.111.4",
68
68
  "vitest": "0.34.3"
69
69
  },
70
70
  "publishConfig": {