@shop-prompter/react 1.2.0 → 1.2.1

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # shop-prompter-react
2
2
 
3
+ ## 1.2.1
4
+
5
+ ### Patch Changes
6
+
7
+ - a403ed4: Welcome screen layout adjustments
8
+
3
9
  ## 1.2.0
4
10
 
5
11
  ### Minor Changes
package/dist/index.js CHANGED
@@ -729,7 +729,7 @@ var TRANSLATIONS = {
729
729
  disclaimer: "KI-Inhalte k\xF6nnen Fehler beinhalten.",
730
730
  loadingProducts: "Produkte werden geladen...",
731
731
  productFetchError: "Die Produkte konnten leider nicht geladen werden.",
732
- predefinedPromptDisclaimer: "Klicken Sie auf einen Text, um die Unterhaltung zu starten"
732
+ predefinedPromptDisclaimer: "Klicke auf einen Text, um die Unterhaltung zu starten"
733
733
  }
734
734
  };
735
735
  function getTranslations(locale) {
@@ -1063,7 +1063,7 @@ var styles2 = {
1063
1063
  },
1064
1064
  button: {
1065
1065
  padding: "0.625rem 1rem",
1066
- border: "1px solid #e5e7eb",
1066
+ border: "2px solid #e5e7eb",
1067
1067
  borderRadius: "0.75rem",
1068
1068
  backgroundColor: "transparent",
1069
1069
  transition: "background-color 0.2s, color 0.2s",
@@ -1110,6 +1110,7 @@ var styles2 = {
1110
1110
  leadingTrim: "NONE",
1111
1111
  lineHeight: "100%",
1112
1112
  letterSpacing: "0%",
1113
+ paddingBottom: "1rem",
1113
1114
  textAlign: "center"
1114
1115
  },
1115
1116
  welcomeDescription: {
package/dist/index.mjs CHANGED
@@ -693,7 +693,7 @@ var TRANSLATIONS = {
693
693
  disclaimer: "KI-Inhalte k\xF6nnen Fehler beinhalten.",
694
694
  loadingProducts: "Produkte werden geladen...",
695
695
  productFetchError: "Die Produkte konnten leider nicht geladen werden.",
696
- predefinedPromptDisclaimer: "Klicken Sie auf einen Text, um die Unterhaltung zu starten"
696
+ predefinedPromptDisclaimer: "Klicke auf einen Text, um die Unterhaltung zu starten"
697
697
  }
698
698
  };
699
699
  function getTranslations(locale) {
@@ -1027,7 +1027,7 @@ var styles2 = {
1027
1027
  },
1028
1028
  button: {
1029
1029
  padding: "0.625rem 1rem",
1030
- border: "1px solid #e5e7eb",
1030
+ border: "2px solid #e5e7eb",
1031
1031
  borderRadius: "0.75rem",
1032
1032
  backgroundColor: "transparent",
1033
1033
  transition: "background-color 0.2s, color 0.2s",
@@ -1074,6 +1074,7 @@ var styles2 = {
1074
1074
  leadingTrim: "NONE",
1075
1075
  lineHeight: "100%",
1076
1076
  letterSpacing: "0%",
1077
+ paddingBottom: "1rem",
1077
1078
  textAlign: "center"
1078
1079
  },
1079
1080
  welcomeDescription: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shop-prompter/react",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.mjs",
6
6
  "types": "dist/index.d.ts",
@@ -42,7 +42,7 @@ const styles = {
42
42
  },
43
43
  button: {
44
44
  padding: "0.625rem 1rem",
45
- border: "1px solid #e5e7eb",
45
+ border: "2px solid #e5e7eb",
46
46
  borderRadius: "0.75rem",
47
47
  backgroundColor: "transparent",
48
48
  transition: "background-color 0.2s, color 0.2s",
@@ -89,6 +89,7 @@ const styles = {
89
89
  leadingTrim: "NONE",
90
90
  lineHeight: "100%",
91
91
  letterSpacing: "0%",
92
+ paddingBottom: "1rem",
92
93
  textAlign: "center",
93
94
  },
94
95
  welcomeDescription: {
@@ -43,7 +43,7 @@ export const TRANSLATIONS: Record<string, Record<string, string>> = {
43
43
  disclaimer: 'KI-Inhalte können Fehler beinhalten.',
44
44
  loadingProducts: 'Produkte werden geladen...',
45
45
  productFetchError: 'Die Produkte konnten leider nicht geladen werden.',
46
- predefinedPromptDisclaimer: 'Klicken Sie auf einen Text, um die Unterhaltung zu starten',
46
+ predefinedPromptDisclaimer: 'Klicke auf einen Text, um die Unterhaltung zu starten',
47
47
  },
48
48
  }
49
49