@fusioni/client-sdk 1.1.24 → 1.1.26

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/dist/i18n/el.d.ts CHANGED
@@ -31,7 +31,7 @@ export declare const el: {
31
31
  readonly attachedImages: "Εικόνες";
32
32
  readonly attachedVideos: "Βίντεο";
33
33
  readonly messages: {
34
- readonly loading: "Εργάζομαι...";
34
+ readonly loading: "Thinking...";
35
35
  readonly error: "Ουπς! Κάτι πήγε στραβά. Παρακαλώ δοκιμάστε ξανά αργότερα.";
36
36
  readonly delete: "Διαγραφή μηνύματος";
37
37
  readonly deleteConfirm: {
package/dist/i18n/en.d.ts CHANGED
@@ -31,7 +31,7 @@ export declare const en: {
31
31
  readonly attachedImages: "Images";
32
32
  readonly attachedVideos: "Videos";
33
33
  readonly messages: {
34
- readonly loading: "Working on it...";
34
+ readonly loading: "Thinking...";
35
35
  readonly error: "Oops! Something went wrong. Please try again later.";
36
36
  readonly delete: "Delete message";
37
37
  readonly deleteConfirm: {
@@ -35,7 +35,7 @@ export declare const translations: {
35
35
  readonly attachedImages: "Images";
36
36
  readonly attachedVideos: "Videos";
37
37
  readonly messages: {
38
- readonly loading: "Working on it...";
38
+ readonly loading: "Thinking...";
39
39
  readonly error: "Oops! Something went wrong. Please try again later.";
40
40
  readonly delete: "Delete message";
41
41
  readonly deleteConfirm: {
@@ -136,7 +136,7 @@ export declare const translations: {
136
136
  readonly attachedImages: "Εικόνες";
137
137
  readonly attachedVideos: "Βίντεο";
138
138
  readonly messages: {
139
- readonly loading: "Εργάζομαι...";
139
+ readonly loading: "Thinking...";
140
140
  readonly error: "Ουπς! Κάτι πήγε στραβά. Παρακαλώ δοκιμάστε ξανά αργότερα.";
141
141
  readonly delete: "Διαγραφή μηνύματος";
142
142
  readonly deleteConfirm: {
package/dist/index.css CHANGED
@@ -104,6 +104,16 @@
104
104
  background-color: var(--fusioni-bg-primary);
105
105
  }
106
106
 
107
+ /* Form controls inside the widget: explicit typography so UA / inherited styles
108
+ cannot shrink inputs (common inside Shadow DOM when host sets small html font-size). */
109
+ .fusioni-chat-widget textarea,
110
+ .fusioni-chat-widget input {
111
+ font-family: inherit;
112
+ font-size: 14px;
113
+ line-height: 1.5;
114
+ font-weight: 400;
115
+ }
116
+
107
117
  /* Floating Button */
108
118
  .fusioni-floating-button {
109
119
  position: fixed;
@@ -1649,7 +1659,7 @@
1649
1659
 
1650
1660
  .fusioni-input-wrapper {
1651
1661
  display: flex;
1652
- align-items: flex-end;
1662
+ align-items: center;
1653
1663
  gap: 7px;
1654
1664
  background: var(--fusioni-bg-secondary);
1655
1665
  border: 2px solid var(--fusioni-border);
@@ -1669,17 +1679,38 @@
1669
1679
  border: none;
1670
1680
  outline: none;
1671
1681
  resize: none;
1682
+ margin: 0;
1672
1683
  font-family: inherit;
1673
- font-size: 12.25px;
1684
+ font-size: 14px;
1685
+ font-weight: 400;
1674
1686
  line-height: 1.5;
1675
1687
  color: var(--fusioni-text-primary);
1676
- min-height: 20px;
1688
+ min-height: 22px;
1677
1689
  max-height: 120px;
1678
- padding: 7px;
1690
+ padding: 3.5px 7px;
1679
1691
  }
1680
1692
 
1681
1693
  .fusioni-textarea::placeholder {
1682
1694
  color: var(--fusioni-text-muted);
1695
+ font-family: inherit;
1696
+ font-size: 14px;
1697
+ font-weight: 400;
1698
+ line-height: 1.5;
1699
+ opacity: 1;
1700
+ }
1701
+
1702
+ .fusioni-textarea::-webkit-input-placeholder {
1703
+ color: var(--fusioni-text-muted);
1704
+ font-size: 14px;
1705
+ line-height: 1.5;
1706
+ opacity: 1;
1707
+ }
1708
+
1709
+ .fusioni-textarea::-moz-placeholder {
1710
+ color: var(--fusioni-text-muted);
1711
+ font-size: 14px;
1712
+ line-height: 1.5;
1713
+ opacity: 1;
1683
1714
  }
1684
1715
 
1685
1716
  .fusioni-input-actions {
@@ -4273,8 +4304,8 @@
4273
4304
  }
4274
4305
 
4275
4306
  .fusioni-textarea {
4276
- min-height: 24px;
4277
- padding: 7px 5.25px;
4307
+ min-height: 22px;
4308
+ padding: 3.5px 5.25px;
4278
4309
  }
4279
4310
 
4280
4311
  .fusioni-message-list {
@@ -4868,9 +4899,9 @@
4868
4899
  }
4869
4900
 
4870
4901
  .fusioni-input-wrapper {
4871
- align-items: flex-end;
4902
+ align-items: center;
4872
4903
  gap: 7px;
4873
- min-height: 58px;
4904
+ min-height: 52px;
4874
4905
  padding: 7px 7px 7px 10.5px;
4875
4906
  border-radius: 18px;
4876
4907
  border: 1px solid color-mix(in srgb, var(--fusioni-border) 86%, var(--fusioni-primary) 14%);
@@ -4887,22 +4918,39 @@
4887
4918
  }
4888
4919
 
4889
4920
  .fusioni-textarea {
4890
- min-height: 24px;
4921
+ min-height: 22px;
4891
4922
  max-height: 128px;
4892
- padding: 7.700000000000001px 3.5px;
4923
+ padding: 3.5px 3.5px;
4893
4924
  color: var(--fusioni-text-primary);
4894
- font-size: 12.950000000000001px;
4925
+ font-size: 14px;
4895
4926
  line-height: 1.5;
4896
4927
  }
4897
4928
 
4898
4929
  .fusioni-textarea::placeholder {
4899
4930
  color: color-mix(in srgb, var(--fusioni-text-muted) 86%, var(--fusioni-text-secondary));
4931
+ font-size: 14px;
4932
+ line-height: 1.5;
4933
+ opacity: 1;
4934
+ }
4935
+
4936
+ .fusioni-textarea::-webkit-input-placeholder {
4937
+ color: color-mix(in srgb, var(--fusioni-text-muted) 86%, var(--fusioni-text-secondary));
4938
+ font-size: 14px;
4939
+ line-height: 1.5;
4940
+ opacity: 1;
4941
+ }
4942
+
4943
+ .fusioni-textarea::-moz-placeholder {
4944
+ color: color-mix(in srgb, var(--fusioni-text-muted) 86%, var(--fusioni-text-secondary));
4945
+ font-size: 14px;
4946
+ line-height: 1.5;
4947
+ opacity: 1;
4900
4948
  }
4901
4949
 
4902
4950
  .fusioni-input-actions {
4903
4951
  align-items: center;
4904
4952
  gap: 3.5px;
4905
- padding-bottom: 1.75px;
4953
+ padding-bottom: 0;
4906
4954
  }
4907
4955
 
4908
4956
  .fusioni-input-actions .fusioni-btn-icon {
package/dist/index.d.ts CHANGED
@@ -286,7 +286,7 @@ declare const en: {
286
286
  readonly attachedImages: "Images";
287
287
  readonly attachedVideos: "Videos";
288
288
  readonly messages: {
289
- readonly loading: "Working on it...";
289
+ readonly loading: "Thinking...";
290
290
  readonly error: "Oops! Something went wrong. Please try again later.";
291
291
  readonly delete: "Delete message";
292
292
  readonly deleteConfirm: {