@tamagui/web 1.103.1 → 1.103.2

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.
@@ -24,7 +24,7 @@ const ellipseStyle = {
24
24
  textOverflow: "ellipsis",
25
25
  whiteSpace: "nowrap"
26
26
  }, defaultWebStyle = {
27
- display: "inline-block",
27
+ display: "inline",
28
28
  // display: inline breaks css transform styles
29
29
  boxSizing: "border-box",
30
30
  wordWrap: "break-word",
@@ -6,7 +6,7 @@ const ellipseStyle = {
6
6
  textOverflow: "ellipsis",
7
7
  whiteSpace: "nowrap"
8
8
  }, defaultWebStyle = {
9
- display: "inline-block",
9
+ display: "inline",
10
10
  // display: inline breaks css transform styles
11
11
  boxSizing: "border-box",
12
12
  wordWrap: "break-word",
@@ -7,7 +7,7 @@ const ellipseStyle = {
7
7
  whiteSpace: "nowrap"
8
8
  },
9
9
  defaultWebStyle = {
10
- display: "inline-block",
10
+ display: "inline",
11
11
  // display: inline breaks css transform styles
12
12
  boxSizing: "border-box",
13
13
  wordWrap: "break-word",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tamagui/web",
3
- "version": "1.103.1",
3
+ "version": "1.103.2",
4
4
  "source": "src/index.ts",
5
5
  "main": "dist/cjs",
6
6
  "module": "dist/esm",
@@ -27,18 +27,18 @@
27
27
  "reset.css"
28
28
  ],
29
29
  "dependencies": {
30
- "@tamagui/compose-refs": "1.103.1",
31
- "@tamagui/constants": "1.103.1",
32
- "@tamagui/helpers": "1.103.1",
33
- "@tamagui/normalize-css-color": "1.103.1",
34
- "@tamagui/timer": "1.103.1",
35
- "@tamagui/types": "1.103.1",
36
- "@tamagui/use-did-finish-ssr": "1.103.1",
37
- "@tamagui/use-event": "1.103.1",
38
- "@tamagui/use-force-update": "1.103.1"
30
+ "@tamagui/compose-refs": "1.103.2",
31
+ "@tamagui/constants": "1.103.2",
32
+ "@tamagui/helpers": "1.103.2",
33
+ "@tamagui/normalize-css-color": "1.103.2",
34
+ "@tamagui/timer": "1.103.2",
35
+ "@tamagui/types": "1.103.2",
36
+ "@tamagui/use-did-finish-ssr": "1.103.2",
37
+ "@tamagui/use-event": "1.103.2",
38
+ "@tamagui/use-force-update": "1.103.2"
39
39
  },
40
40
  "devDependencies": {
41
- "@tamagui/build": "1.103.1",
41
+ "@tamagui/build": "1.103.2",
42
42
  "@testing-library/react": "^14.0.0",
43
43
  "csstype": "^3.0.10",
44
44
  "typescript": "^5.5.2",
@@ -18,7 +18,7 @@ const ellipseStyle = {
18
18
  export type Text = TamaguiTextElement
19
19
 
20
20
  const defaultWebStyle = {
21
- display: 'inline-block', // display: inline breaks css transform styles
21
+ display: 'inline', // display: inline breaks css transform styles
22
22
  boxSizing: 'border-box',
23
23
  wordWrap: 'break-word',
24
24
  whiteSpace: 'pre-wrap',