@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.js
CHANGED
|
@@ -1052,7 +1052,9 @@ const Textline$1 = React.forwardRef(((properties, reference) => {
|
|
|
1052
1052
|
autoCorrect: autoCorrect,
|
|
1053
1053
|
spellCheck: spellCheck,
|
|
1054
1054
|
"aria-label": ariaLabel,
|
|
1055
|
-
style: Object.assign({}, style),
|
|
1055
|
+
style: Object.assign(Object.assign({}, style), {
|
|
1056
|
+
paddingRight: showEnterIcon ? "35px" : undefined
|
|
1057
|
+
}),
|
|
1056
1058
|
ref: pluridFunctionsReact.mergeReferences(inputElement, reference)
|
|
1057
1059
|
}), error && React__default.default.createElement(StyledErrorLine, {
|
|
1058
1060
|
theme: _theme,
|
|
@@ -3143,8 +3145,8 @@ const Head$1 = properties => {
|
|
|
3143
3145
|
const robots = (defaults === null || defaults === void 0 ? void 0 : defaults.robots) || "index,follow";
|
|
3144
3146
|
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";
|
|
3145
3147
|
const faviconIcon = (_a = defaults === null || defaults === void 0 ? void 0 : defaults.faviconIcon) !== null && _a !== void 0 ? _a : "/favicon.ico";
|
|
3146
|
-
const favicon16 = (_b = defaults === null || defaults === void 0 ? void 0 : defaults.favicon16) !== null && _b !== void 0 ? _b : "/favicon-
|
|
3147
|
-
const favicon32 = (_c = defaults === null || defaults === void 0 ? void 0 : defaults.favicon32) !== null && _c !== void 0 ? _c : "/favicon-
|
|
3148
|
+
const favicon16 = (_b = defaults === null || defaults === void 0 ? void 0 : defaults.favicon16) !== null && _b !== void 0 ? _b : "/favicon-16x16.png";
|
|
3149
|
+
const favicon32 = (_c = defaults === null || defaults === void 0 ? void 0 : defaults.favicon32) !== null && _c !== void 0 ? _c : "/favicon-32x32.png";
|
|
3148
3150
|
const manifest = (_d = defaults === null || defaults === void 0 ? void 0 : defaults.manifest) !== null && _d !== void 0 ? _d : "/site.webmanifest";
|
|
3149
3151
|
const themeColor = (defaults === null || defaults === void 0 ? void 0 : defaults.themeColor) || "";
|
|
3150
3152
|
const titleValue = stateHead.title || (defaults === null || defaults === void 0 ? void 0 : defaults.title) || "";
|