@tellescope/react-components 1.232.1 → 1.233.0

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": "@tellescope/react-components",
3
- "version": "1.232.1",
3
+ "version": "1.233.0",
4
4
  "description": "",
5
5
  "main": "./lib/cjs/index.js",
6
6
  "module": "./lib/esm/index.js",
@@ -29,14 +29,14 @@
29
29
  },
30
30
  "homepage": "https://github.com/tellescope-os/enduser-authentication#readme",
31
31
  "devDependencies": {
32
- "@babel/core": "^7.16.0",
32
+ "@babel/core": "7.28.5",
33
33
  "@types/css-to-react-native": "^3.0.0",
34
34
  "@types/react": "^17.0.27",
35
35
  "@types/react-beautiful-dnd": "^13.1.2",
36
36
  "@types/react-dom": "^17.0.9",
37
37
  "@types/react-native": "^0.65.24",
38
38
  "@types/react-window": "^1.8.5",
39
- "babel-loader": "^8.2.3",
39
+ "babel-loader": "8.4.1",
40
40
  "react-native": "0.68.0",
41
41
  "typescript": "4.9.3"
42
42
  },
@@ -47,13 +47,13 @@
47
47
  "@reduxjs/toolkit": "^1.6.2",
48
48
  "@stripe/react-stripe-js": "^2.9.0",
49
49
  "@stripe/stripe-js": "^1.52.1",
50
- "@tellescope/constants": "1.232.1",
51
- "@tellescope/sdk": "1.232.1",
52
- "@tellescope/types-client": "1.232.1",
53
- "@tellescope/types-models": "1.232.1",
54
- "@tellescope/types-utilities": "1.232.1",
55
- "@tellescope/utilities": "1.232.1",
56
- "@tellescope/validation": "1.232.1",
50
+ "@tellescope/constants": "1.233.0",
51
+ "@tellescope/sdk": "1.233.0",
52
+ "@tellescope/types-client": "1.233.0",
53
+ "@tellescope/types-models": "1.233.0",
54
+ "@tellescope/types-utilities": "1.233.0",
55
+ "@tellescope/utilities": "1.233.0",
56
+ "@tellescope/validation": "1.233.0",
57
57
  "@typescript-eslint/eslint-plugin": "^4.33.0",
58
58
  "@typescript-eslint/parser": "^4.33.0",
59
59
  "css-to-react-native": "^3.0.0",
@@ -83,7 +83,7 @@
83
83
  "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
84
84
  "react-native": "^0.65.0 || ^0.66.0 || ^0.67.0 || ^0.68.0 || ^0.71.0"
85
85
  },
86
- "gitHead": "1cbb2f579785066cd64d72b4bfdd2c788e192391",
86
+ "gitHead": "2821652c6e475f2135aa6abdd7d7bb37f95f0fb0",
87
87
  "publishConfig": {
88
88
  "access": "public"
89
89
  }
@@ -44,8 +44,8 @@ const TellescopeFormContainerWithTheme: typeof TellescopeFormContainer = ({ pape
44
44
  ? null
45
45
  : theme.logoURL
46
46
  ? (
47
- <Flex alignItems="center" justifyContent={"center"} style={{ maxHeight: logoHeight || LOGO_HEIGHT, marginTop: 10 }}>
48
- <img src={theme.logoURL} alt={theme.name} style={{ maxHeight: logoHeight || LOGO_HEIGHT, maxWidth: 225 }} /> {/* todo: replace with something that resolves better for native */}
47
+ <Flex alignItems="center" justifyContent={"center"} style={{ height: logoHeight || LOGO_HEIGHT, marginTop: 10 }}>
48
+ <img src={theme.logoURL} alt={theme.name} style={{ height: logoHeight || LOGO_HEIGHT, maxWidth: 225 }} /> {/* todo: replace with something that resolves better for native */}
49
49
  </Flex>
50
50
  )
51
51
  : (
@@ -621,7 +621,7 @@ export const TellescopeSingleQuestionFlowV2: typeof TellescopeFormV2 = ({
621
621
  theme?.logoURL
622
622
  ? (
623
623
  <Flex alignItems="flex-start" style={{ marginBottom: '20px' }}>
624
- <img src={theme.logoURL} alt={theme.name} style={{ maxHeight: customization?.logoHeight || LOGO_HEIGHT, maxWidth: 225 }} />
624
+ <img src={theme.logoURL} alt={theme.name} style={{ height: customization?.logoHeight || LOGO_HEIGHT, maxWidth: 225 }} />
625
625
  </Flex>
626
626
  )
627
627
  : (