@livechat/design-system-react-components 1.0.0-alpha.35 → 1.0.0-alpha.37
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/dsrc.cjs.js +2 -2
- package/dist/dsrc.es.js +5 -2
- package/dist/dsrc.umd.js +2 -2
- package/dist/src/themes/design-token.d.ts +2 -0
- package/dist/style.css +1 -1
- package/dist/themes/dark.css +19 -9
- package/dist/themes/dark.css.map +1 -1
- package/dist/themes/legacy.css +11 -1
- package/dist/themes/legacy.css.map +1 -1
- package/dist/themes/light.css +10 -0
- package/dist/themes/light.css.map +1 -1
- package/package.json +2 -2
package/dist/dsrc.es.js
CHANGED
|
@@ -119,6 +119,7 @@ const DesignToken = {
|
|
|
119
119
|
ContentBasicPositive: "--content-basic-positive",
|
|
120
120
|
ContentBasicInfo: "--content-basic-info",
|
|
121
121
|
ContentBasicPurple: "--content-basic-purple",
|
|
122
|
+
ContentBasicGradient01: "--content-basic-gradient-01",
|
|
122
123
|
ContentWhiteLocked: "--content-white-locked",
|
|
123
124
|
ContentLockedWhite: "--content-locked-white",
|
|
124
125
|
ContentBlackLocked: "--content-black-locked",
|
|
@@ -132,6 +133,7 @@ const DesignToken = {
|
|
|
132
133
|
ContentInvertSubtle: "--content-invert-subtle",
|
|
133
134
|
ContentInvertSecondary: "--content-invert-secondary",
|
|
134
135
|
ContentInvertDisabled: "--content-invert-disabled",
|
|
136
|
+
ContentInvertGradient01: "--content-invert-gradient-01",
|
|
135
137
|
BorderDefault: "--border-default",
|
|
136
138
|
BorderBasicPrimary: "--border-basic-primary",
|
|
137
139
|
BorderBasicSecondary: "--border-basic-secondary",
|
|
@@ -1815,8 +1817,9 @@ const Input = React.forwardRef((_y, ref) => {
|
|
|
1815
1817
|
className: mergedClassNames,
|
|
1816
1818
|
"aria-disabled": disabled,
|
|
1817
1819
|
"tab-index": "0"
|
|
1818
|
-
}, shouldRenderLeftIcon && renderIcon(icon2, disabled), /* @__PURE__ */ React.createElement("input", __spreadProps(__spreadValues({
|
|
1819
|
-
"data-testid": "input"
|
|
1820
|
+
}, shouldRenderLeftIcon && renderIcon(icon2, disabled), /* @__PURE__ */ React.createElement("input", __spreadProps(__spreadValues({
|
|
1821
|
+
"data-testid": "input"
|
|
1822
|
+
}, inputProps), {
|
|
1820
1823
|
ref,
|
|
1821
1824
|
onFocus: (e) => {
|
|
1822
1825
|
setIsFocused(true);
|