@tamagui/web 1.79.2 → 1.79.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/web",
3
- "version": "1.79.2",
3
+ "version": "1.79.3",
4
4
  "source": "src/index.ts",
5
5
  "main": "dist/cjs",
6
6
  "module": "dist/esm",
@@ -27,20 +27,20 @@
27
27
  "reset.css"
28
28
  ],
29
29
  "dependencies": {
30
- "@tamagui/compose-refs": "1.79.2",
31
- "@tamagui/constants": "1.79.2",
32
- "@tamagui/helpers": "1.79.2",
33
- "@tamagui/normalize-css-color": "1.79.2",
34
- "@tamagui/timer": "1.79.2",
35
- "@tamagui/use-did-finish-ssr": "1.79.2",
36
- "@tamagui/use-event": "1.79.2",
37
- "@tamagui/use-force-update": "1.79.2"
30
+ "@tamagui/compose-refs": "1.79.3",
31
+ "@tamagui/constants": "1.79.3",
32
+ "@tamagui/helpers": "1.79.3",
33
+ "@tamagui/normalize-css-color": "1.79.3",
34
+ "@tamagui/timer": "1.79.3",
35
+ "@tamagui/use-did-finish-ssr": "1.79.3",
36
+ "@tamagui/use-event": "1.79.3",
37
+ "@tamagui/use-force-update": "1.79.3"
38
38
  },
39
39
  "peerDependencies": {
40
40
  "react": "*"
41
41
  },
42
42
  "devDependencies": {
43
- "@tamagui/build": "1.79.2",
43
+ "@tamagui/build": "1.79.3",
44
44
  "@testing-library/react": "^14.0.0",
45
45
  "csstype": "^3.0.10",
46
46
  "react": "^18.2.0",
package/src/types.tsx CHANGED
@@ -745,7 +745,7 @@ type GenericTamaguiSettings = {
745
745
 
746
746
  /**
747
747
  * On Web, this allows changing the behavior of container groups which by default uses
748
- * `container-type: normal`.
748
+ * `container-type: inline-size`.
749
749
  */
750
750
  webContainerType?:
751
751
  | 'normal'
package/types/types.d.ts CHANGED
@@ -414,7 +414,7 @@ type GenericTamaguiSettings = {
414
414
  fastSchemeChange?: boolean;
415
415
  /**
416
416
  * On Web, this allows changing the behavior of container groups which by default uses
417
- * `container-type: normal`.
417
+ * `container-type: inline-size`.
418
418
  */
419
419
  webContainerType?: 'normal' | 'size' | 'inline-size' | 'inherit' | 'initial' | 'revert' | 'revert-layer' | 'unset';
420
420
  };