@wix/form-public 0.108.0 → 0.109.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.cjs +4 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.cjs
CHANGED
|
@@ -34344,7 +34344,8 @@ function timeValueToString(time) {
|
|
|
34344
34344
|
}
|
|
34345
34345
|
const hour = String(time.hour).padStart(2, "0");
|
|
34346
34346
|
const minute = String(time.minute).padStart(2, "0");
|
|
34347
|
-
|
|
34347
|
+
const second = String(time.second).padStart(2, "0");
|
|
34348
|
+
return [hour, minute, second].join(":");
|
|
34348
34349
|
}
|
|
34349
34350
|
var Dropdown = (_ref) => {
|
|
34350
34351
|
let {
|
|
@@ -38137,7 +38138,8 @@ function timeValueToString2(time) {
|
|
|
38137
38138
|
}
|
|
38138
38139
|
const hour = String(time.hour).padStart(2, "0");
|
|
38139
38140
|
const minute = String(time.minute).padStart(2, "0");
|
|
38140
|
-
|
|
38141
|
+
const second = String(time.second).padStart(2, "0");
|
|
38142
|
+
return [hour, minute, second].join(":");
|
|
38141
38143
|
}
|
|
38142
38144
|
var LoginBar = (_ref) => {
|
|
38143
38145
|
let {
|