@plurid/plurid-ui-components-react 0.0.0-24 → 0.0.0-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/distribution/index.es.js
CHANGED
|
@@ -1034,7 +1034,9 @@ const Textline$1 = forwardRef(((properties, reference) => {
|
|
|
1034
1034
|
autoCorrect: autoCorrect,
|
|
1035
1035
|
spellCheck: spellCheck,
|
|
1036
1036
|
"aria-label": ariaLabel,
|
|
1037
|
-
style: Object.assign({}, style),
|
|
1037
|
+
style: Object.assign(Object.assign({}, style), {
|
|
1038
|
+
paddingRight: showEnterIcon ? "35px" : undefined
|
|
1039
|
+
}),
|
|
1038
1040
|
ref: mergeReferences(inputElement, reference)
|
|
1039
1041
|
}), error && React.createElement(StyledErrorLine, {
|
|
1040
1042
|
theme: _theme,
|
|
@@ -3125,8 +3127,8 @@ const Head$1 = properties => {
|
|
|
3125
3127
|
const robots = (defaults === null || defaults === void 0 ? void 0 : defaults.robots) || "index,follow";
|
|
3126
3128
|
const viewport = (defaults === null || defaults === void 0 ? void 0 : defaults.viewport) || "width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0, shrink-to-fit=no";
|
|
3127
3129
|
const faviconIcon = (_a = defaults === null || defaults === void 0 ? void 0 : defaults.faviconIcon) !== null && _a !== void 0 ? _a : "/favicon.ico";
|
|
3128
|
-
const favicon16 = (_b = defaults === null || defaults === void 0 ? void 0 : defaults.favicon16) !== null && _b !== void 0 ? _b : "/favicon-
|
|
3129
|
-
const favicon32 = (_c = defaults === null || defaults === void 0 ? void 0 : defaults.favicon32) !== null && _c !== void 0 ? _c : "/favicon-
|
|
3130
|
+
const favicon16 = (_b = defaults === null || defaults === void 0 ? void 0 : defaults.favicon16) !== null && _b !== void 0 ? _b : "/favicon-16x16.png";
|
|
3131
|
+
const favicon32 = (_c = defaults === null || defaults === void 0 ? void 0 : defaults.favicon32) !== null && _c !== void 0 ? _c : "/favicon-32x32.png";
|
|
3130
3132
|
const manifest = (_d = defaults === null || defaults === void 0 ? void 0 : defaults.manifest) !== null && _d !== void 0 ? _d : "/site.webmanifest";
|
|
3131
3133
|
const themeColor = (defaults === null || defaults === void 0 ? void 0 : defaults.themeColor) || "";
|
|
3132
3134
|
const titleValue = stateHead.title || (defaults === null || defaults === void 0 ? void 0 : defaults.title) || "";
|