@public-ui/hydrate 3.0.0-887b7986b55acd713750f46753265f8330a1342a.0 → 3.0.0-a9055785014025fc4c165147816a14a28ccaa855.0
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/index.js +4 -4
- package/dist/index.mjs +4 -4
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -15261,7 +15261,7 @@ var KolInputStateWrapperFc = InputStateWrapper;
|
|
|
15261
15261
|
|
|
15262
15262
|
const KolButtonFc = (props) => {
|
|
15263
15263
|
const { label, icons, hideLabel, disabled, onClick } = props, other = __rest(props, ["label", "icons", "hideLabel", "disabled", "onClick"]);
|
|
15264
|
-
return hAsync(KolButtonWcTag, Object.assign({
|
|
15264
|
+
return hAsync(KolButtonWcTag, Object.assign({ _label: label, _disabled: disabled, _icons: icons, _hideLabel: hideLabel, _on: { onClick } }, other));
|
|
15265
15265
|
};
|
|
15266
15266
|
var KolButtonFc$1 = KolButtonFc;
|
|
15267
15267
|
|
|
@@ -15310,13 +15310,13 @@ const InputContainerStateWrapperFc = ({ state, endAdornment: defaultEndAdornment
|
|
|
15310
15310
|
}
|
|
15311
15311
|
}
|
|
15312
15312
|
if (leftIconProps) {
|
|
15313
|
-
startAdornment.push(hAsync(KolIconButtonFc$1, Object.assign({ componentName: "icon" }, (isObject$1(leftIconProps) ? leftIconProps : {}))));
|
|
15313
|
+
startAdornment.push(hAsync(KolIconButtonFc$1, Object.assign({ componentName: "icon", class: "kol-input-container__icon" }, (isObject$1(leftIconProps) ? leftIconProps : {}))));
|
|
15314
15314
|
}
|
|
15315
15315
|
if (isObject$1(smartButton)) {
|
|
15316
|
-
endAdornment.push(hAsync(KolIconButtonFc$1, Object.assign({ componentName: "button" }, smartButton, { hideLabel: true, disabled: disabled })));
|
|
15316
|
+
endAdornment.push(hAsync(KolIconButtonFc$1, Object.assign({ componentName: "button", class: "kol-input-container__smart-button" }, smartButton, { hideLabel: true, disabled: disabled })));
|
|
15317
15317
|
}
|
|
15318
15318
|
if (rightIconProps) {
|
|
15319
|
-
endAdornment.push(hAsync(KolIconButtonFc$1, Object.assign({ componentName: "icon" }, (isObject$1(rightIconProps) ? rightIconProps : {}))));
|
|
15319
|
+
endAdornment.push(hAsync(KolIconButtonFc$1, Object.assign({ componentName: "icon", class: "kol-input-container__icon" }, (isObject$1(rightIconProps) ? rightIconProps : {}))));
|
|
15320
15320
|
}
|
|
15321
15321
|
return (hAsync(KolInputContainerFc$1, { disabled: disabled, msg: msg, touched: touched, startAdornment: startAdornment, endAdornment: endAdornment }, children));
|
|
15322
15322
|
};
|
package/dist/index.mjs
CHANGED
|
@@ -15257,7 +15257,7 @@ var KolInputStateWrapperFc = InputStateWrapper;
|
|
|
15257
15257
|
|
|
15258
15258
|
const KolButtonFc = (props) => {
|
|
15259
15259
|
const { label, icons, hideLabel, disabled, onClick } = props, other = __rest(props, ["label", "icons", "hideLabel", "disabled", "onClick"]);
|
|
15260
|
-
return hAsync(KolButtonWcTag, Object.assign({
|
|
15260
|
+
return hAsync(KolButtonWcTag, Object.assign({ _label: label, _disabled: disabled, _icons: icons, _hideLabel: hideLabel, _on: { onClick } }, other));
|
|
15261
15261
|
};
|
|
15262
15262
|
var KolButtonFc$1 = KolButtonFc;
|
|
15263
15263
|
|
|
@@ -15306,13 +15306,13 @@ const InputContainerStateWrapperFc = ({ state, endAdornment: defaultEndAdornment
|
|
|
15306
15306
|
}
|
|
15307
15307
|
}
|
|
15308
15308
|
if (leftIconProps) {
|
|
15309
|
-
startAdornment.push(hAsync(KolIconButtonFc$1, Object.assign({ componentName: "icon" }, (isObject$1(leftIconProps) ? leftIconProps : {}))));
|
|
15309
|
+
startAdornment.push(hAsync(KolIconButtonFc$1, Object.assign({ componentName: "icon", class: "kol-input-container__icon" }, (isObject$1(leftIconProps) ? leftIconProps : {}))));
|
|
15310
15310
|
}
|
|
15311
15311
|
if (isObject$1(smartButton)) {
|
|
15312
|
-
endAdornment.push(hAsync(KolIconButtonFc$1, Object.assign({ componentName: "button" }, smartButton, { hideLabel: true, disabled: disabled })));
|
|
15312
|
+
endAdornment.push(hAsync(KolIconButtonFc$1, Object.assign({ componentName: "button", class: "kol-input-container__smart-button" }, smartButton, { hideLabel: true, disabled: disabled })));
|
|
15313
15313
|
}
|
|
15314
15314
|
if (rightIconProps) {
|
|
15315
|
-
endAdornment.push(hAsync(KolIconButtonFc$1, Object.assign({ componentName: "icon" }, (isObject$1(rightIconProps) ? rightIconProps : {}))));
|
|
15315
|
+
endAdornment.push(hAsync(KolIconButtonFc$1, Object.assign({ componentName: "icon", class: "kol-input-container__icon" }, (isObject$1(rightIconProps) ? rightIconProps : {}))));
|
|
15316
15316
|
}
|
|
15317
15317
|
return (hAsync(KolInputContainerFc$1, { disabled: disabled, msg: msg, touched: touched, startAdornment: startAdornment, endAdornment: endAdornment }, children));
|
|
15318
15318
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@public-ui/hydrate",
|
|
3
|
-
"version": "3.0.0-
|
|
3
|
+
"version": "3.0.0-a9055785014025fc4c165147816a14a28ccaa855.0",
|
|
4
4
|
"license": "EUPL-1.2",
|
|
5
5
|
"homepage": "https://public-ui.github.io",
|
|
6
6
|
"repository": {
|
|
@@ -46,10 +46,10 @@
|
|
|
46
46
|
],
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"rimraf": "6.0.1",
|
|
49
|
-
"@public-ui/components": "3.0.0-
|
|
49
|
+
"@public-ui/components": "3.0.0-a9055785014025fc4c165147816a14a28ccaa855.0"
|
|
50
50
|
},
|
|
51
51
|
"peerDependencies": {
|
|
52
|
-
"@public-ui/components": "3.0.0-
|
|
52
|
+
"@public-ui/components": "3.0.0-a9055785014025fc4c165147816a14a28ccaa855.0"
|
|
53
53
|
},
|
|
54
54
|
"sideEffects": false,
|
|
55
55
|
"type": "commonjs",
|