@idds/vue 1.5.9 → 1.5.10
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.es.js
CHANGED
|
@@ -9909,7 +9909,7 @@ const _sfc_main$6 = /* @__PURE__ */ defineComponent({
|
|
|
9909
9909
|
const minutes = parseInt(parts[1] || "0", 10);
|
|
9910
9910
|
const seconds = parseInt(parts[2] || "0", 10);
|
|
9911
9911
|
if (props.use12Hours) {
|
|
9912
|
-
const period =
|
|
9912
|
+
const period = timeStr.includes("AM") ? "AM" : "PM";
|
|
9913
9913
|
const hour12 = parseInt(time.replace(/[^\d]/g, ""), 10);
|
|
9914
9914
|
const hours = hour12 === 12 ? 0 : hour12;
|
|
9915
9915
|
return { hours, minutes, seconds, period };
|
|
@@ -10162,7 +10162,6 @@ const _sfc_main$6 = /* @__PURE__ */ defineComponent({
|
|
|
10162
10162
|
onClick: handleWrapperClick,
|
|
10163
10163
|
onKeydown: handleWrapperKeydown
|
|
10164
10164
|
}, [
|
|
10165
|
-
_cache[0] || (_cache[0] = createTextVNode(" > ", -1)),
|
|
10166
10165
|
createElementVNode("div", _hoisted_4$3, [
|
|
10167
10166
|
renderSlot(_ctx.$slots, "prefixIcon", {}, () => [
|
|
10168
10167
|
__props.prefixIcon ? (openBlock(), createBlock(resolveDynamicComponent(__props.prefixIcon), { key: 0 })) : (openBlock(), createBlock(unref(IconClock), {
|