@tamagui/themes 1.123.2 → 1.123.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tamagui/themes",
3
- "version": "1.123.2",
3
+ "version": "1.123.3",
4
4
  "types": "./types/index.d.ts",
5
5
  "main": "dist/cjs",
6
6
  "module": "dist/esm",
@@ -79,15 +79,15 @@
79
79
  }
80
80
  },
81
81
  "dependencies": {
82
- "@tamagui/colors": "1.123.2",
83
- "@tamagui/create-theme": "1.123.2",
84
- "@tamagui/theme-builder": "1.123.2",
85
- "@tamagui/web": "1.123.2",
82
+ "@tamagui/colors": "1.123.3",
83
+ "@tamagui/create-theme": "1.123.3",
84
+ "@tamagui/theme-builder": "1.123.3",
85
+ "@tamagui/web": "1.123.3",
86
86
  "color2k": "^2.0.2"
87
87
  },
88
88
  "devDependencies": {
89
- "@tamagui/build": "1.123.2",
90
- "@tamagui/cli": "1.123.2",
89
+ "@tamagui/build": "1.123.3",
90
+ "@tamagui/cli": "1.123.3",
91
91
  "vitest": "^3.0.2"
92
92
  },
93
93
  "publishConfig": {
package/src/v4-tamagui.ts CHANGED
@@ -252,7 +252,7 @@ export type TamaguiThemes = typeof themes
252
252
 
253
253
  /**
254
254
  * This is an optional production optimization: themes JS can get to 20Kb or more.
255
- * Tamagui has ~1Kb of logic to hydrate themes from CSS, so you can remove the JS.
255
+ * Tamagui has <1Kb of logic to hydrate themes from CSS, so you can remove the JS.
256
256
  * So long as you server render your Tamagui CSS, this will save you bundle size:
257
257
  */
258
258
  export const tamaguiThemes: TamaguiThemes =
@@ -182,7 +182,7 @@ declare const themes: Record<"light_blue" | "light_gray" | "light_green" | "ligh
182
182
  export type TamaguiThemes = typeof themes;
183
183
  /**
184
184
  * This is an optional production optimization: themes JS can get to 20Kb or more.
185
- * Tamagui has ~1Kb of logic to hydrate themes from CSS, so you can remove the JS.
185
+ * Tamagui has <1Kb of logic to hydrate themes from CSS, so you can remove the JS.
186
186
  * So long as you server render your Tamagui CSS, this will save you bundle size:
187
187
  */
188
188
  export declare const tamaguiThemes: TamaguiThemes;