yc-pro-components 0.0.9 → 0.0.11
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/es/components/yc-text/src/index.vue2.mjs +31 -4
- package/index.js +31 -4
- package/index.min.js +2 -2
- package/index.min.mjs +3 -3
- package/index.mjs +31 -4
- package/lib/components/yc-text/src/index.vue2.js +30 -3
- package/locale/en.js +1 -1
- package/locale/en.min.js +1 -1
- package/locale/en.min.mjs +1 -1
- package/locale/en.mjs +1 -1
- package/locale/ja.js +1 -1
- package/locale/ja.min.js +1 -1
- package/locale/ja.min.mjs +1 -1
- package/locale/ja.mjs +1 -1
- package/locale/ko.js +1 -1
- package/locale/ko.min.js +1 -1
- package/locale/ko.min.mjs +1 -1
- package/locale/ko.mjs +1 -1
- package/locale/zh-cn.js +1 -1
- package/locale/zh-cn.min.js +1 -1
- package/locale/zh-cn.min.mjs +1 -1
- package/locale/zh-cn.mjs +1 -1
- package/locale/zh-tw.js +1 -1
- package/locale/zh-tw.min.js +1 -1
- package/locale/zh-tw.min.mjs +1 -1
- package/locale/zh-tw.mjs +1 -1
- package/package.json +1 -1
- package/theme-chalk/src/mixins/mixins.scss +4 -0
package/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! yc-pro-components v0.0.
|
|
1
|
+
/*! yc-pro-components v0.0.11 */
|
|
2
2
|
import { unref, isRef, ref, isReactive, watch, inject, computed, shallowRef, provide, onMounted, nextTick, onBeforeUnmount, defineComponent, watchEffect, openBlock, createBlock, mergeProps, createSlots, withCtx, createElementVNode, renderSlot, normalizeStyle, createVNode, createTextVNode, toDisplayString, createElementBlock, normalizeClass, createCommentVNode, reactive, useAttrs, Fragment, renderList, resolveDynamicComponent, normalizeProps, guardReactiveProps, h, withDirectives, isVNode, withKeys, withModifiers, TransitionGroup, toHandlers, getCurrentInstance, resolveComponent, toRefs, useSlots, onUnmounted, resolveDirective, pushScopeId, popScopeId, onBeforeMount, getCurrentScope, onScopeDispose, toRef, mergeModels, useModel, vShow } from 'vue';
|
|
3
3
|
import { dayjs, localeContextKey, ElDialog, ElButton, ElPagination, ElRadioGroup, ElRadio, ElTableColumn, ElDropdown, ElDropdownMenu, ElDropdownItem, ElIcon, ElTooltip, ElPopconfirm, ElLink, ElMessageBox, useFormDisabled, ElDatePicker, ClickOutside, ElTag, ElInput, ElAutocomplete, ElCascader, ElCheckboxGroup, ElCheckbox, ElColorPicker, ElInputNumber, ElRate, ElSelect, ElOption, ElSlider, ElSwitch, ElTimePicker, ElTimeSelect, ElTransfer, ElTreeSelect, ElSelectV2, ElText, ElDivider, ElFormItem, ElOptionGroup, ElRow, ElCol, ElForm, ElCard, ElMessage, ElImage, ElProgress, ElAvatar, ElPopover, ElTable, vLoading, ElDescriptions, ElDescriptionsItem, ElDrawer, ElSteps, ElStep, ElBreadcrumb, ElBreadcrumbItem, ElMenuItem, ElSubMenu, ElMenu, ElScrollbar, ElHeader, ElContainer, ElMain, ElBacktop } from 'element-plus';
|
|
4
4
|
|
|
@@ -58437,6 +58437,32 @@ var _sfc_main$3 = /* @__PURE__ */ defineComponent({
|
|
|
58437
58437
|
useSlots();
|
|
58438
58438
|
const textRef = ref();
|
|
58439
58439
|
const showTooltip = ref(false);
|
|
58440
|
+
const tooltipProps = computed(() => {
|
|
58441
|
+
const { offset, popperOptions: popperOptions2, ...rest } = props.tippyProps;
|
|
58442
|
+
return rest;
|
|
58443
|
+
});
|
|
58444
|
+
const popperOptions = computed(() => {
|
|
58445
|
+
var _a, _b, _c;
|
|
58446
|
+
const offset = (_a = props.tippyProps) == null ? void 0 : _a.offset;
|
|
58447
|
+
const userPopperOptions = (_b = props.tippyProps) == null ? void 0 : _b.popperOptions;
|
|
58448
|
+
if (!Array.isArray(offset)) {
|
|
58449
|
+
return userPopperOptions;
|
|
58450
|
+
}
|
|
58451
|
+
const normalizedOffset = [Number(offset[0]) || 0, Number(offset[1]) || 0];
|
|
58452
|
+
const userModifiers = (_c = userPopperOptions == null ? void 0 : userPopperOptions.modifiers) != null ? _c : [];
|
|
58453
|
+
return {
|
|
58454
|
+
...userPopperOptions,
|
|
58455
|
+
modifiers: [
|
|
58456
|
+
...userModifiers,
|
|
58457
|
+
{
|
|
58458
|
+
name: "offset",
|
|
58459
|
+
options: {
|
|
58460
|
+
offset: normalizedOffset
|
|
58461
|
+
}
|
|
58462
|
+
}
|
|
58463
|
+
]
|
|
58464
|
+
};
|
|
58465
|
+
});
|
|
58440
58466
|
const isTextEllipsis = (el) => {
|
|
58441
58467
|
if (!props.lineClamp) {
|
|
58442
58468
|
return el.scrollWidth > el.clientWidth;
|
|
@@ -58452,8 +58478,9 @@ var _sfc_main$3 = /* @__PURE__ */ defineComponent({
|
|
|
58452
58478
|
const _component_el_tooltip = resolveComponent("el-tooltip");
|
|
58453
58479
|
return openBlock(), createBlock(_component_el_tooltip, mergeProps({
|
|
58454
58480
|
disabled: !showTooltip.value,
|
|
58455
|
-
content: __props.tippyProps.content
|
|
58456
|
-
|
|
58481
|
+
content: __props.tippyProps.content,
|
|
58482
|
+
"popper-options": popperOptions.value
|
|
58483
|
+
}, tooltipProps.value), {
|
|
58457
58484
|
content: withCtx(() => [
|
|
58458
58485
|
renderSlot(_ctx.$slots, "content", {}, () => [
|
|
58459
58486
|
renderSlot(_ctx.$slots, "default")
|
|
@@ -58484,7 +58511,7 @@ var _sfc_main$3 = /* @__PURE__ */ defineComponent({
|
|
|
58484
58511
|
]),
|
|
58485
58512
|
_: 3
|
|
58486
58513
|
/* FORWARDED */
|
|
58487
|
-
}, 16, ["disabled", "content"]);
|
|
58514
|
+
}, 16, ["disabled", "content", "popper-options"]);
|
|
58488
58515
|
};
|
|
58489
58516
|
}
|
|
58490
58517
|
});
|
|
@@ -25,6 +25,32 @@ var _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
|
25
25
|
vue.useSlots();
|
|
26
26
|
const textRef = vue.ref();
|
|
27
27
|
const showTooltip = vue.ref(false);
|
|
28
|
+
const tooltipProps = vue.computed(() => {
|
|
29
|
+
const { offset, popperOptions: popperOptions2, ...rest } = props.tippyProps;
|
|
30
|
+
return rest;
|
|
31
|
+
});
|
|
32
|
+
const popperOptions = vue.computed(() => {
|
|
33
|
+
var _a, _b, _c;
|
|
34
|
+
const offset = (_a = props.tippyProps) == null ? void 0 : _a.offset;
|
|
35
|
+
const userPopperOptions = (_b = props.tippyProps) == null ? void 0 : _b.popperOptions;
|
|
36
|
+
if (!Array.isArray(offset)) {
|
|
37
|
+
return userPopperOptions;
|
|
38
|
+
}
|
|
39
|
+
const normalizedOffset = [Number(offset[0]) || 0, Number(offset[1]) || 0];
|
|
40
|
+
const userModifiers = (_c = userPopperOptions == null ? void 0 : userPopperOptions.modifiers) != null ? _c : [];
|
|
41
|
+
return {
|
|
42
|
+
...userPopperOptions,
|
|
43
|
+
modifiers: [
|
|
44
|
+
...userModifiers,
|
|
45
|
+
{
|
|
46
|
+
name: "offset",
|
|
47
|
+
options: {
|
|
48
|
+
offset: normalizedOffset
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
]
|
|
52
|
+
};
|
|
53
|
+
});
|
|
28
54
|
const isTextEllipsis = (el) => {
|
|
29
55
|
if (!props.lineClamp) {
|
|
30
56
|
return el.scrollWidth > el.clientWidth;
|
|
@@ -40,8 +66,9 @@ var _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
|
40
66
|
const _component_el_tooltip = vue.resolveComponent("el-tooltip");
|
|
41
67
|
return vue.openBlock(), vue.createBlock(_component_el_tooltip, vue.mergeProps({
|
|
42
68
|
disabled: !showTooltip.value,
|
|
43
|
-
content: __props.tippyProps.content
|
|
44
|
-
|
|
69
|
+
content: __props.tippyProps.content,
|
|
70
|
+
"popper-options": popperOptions.value
|
|
71
|
+
}, tooltipProps.value), {
|
|
45
72
|
content: vue.withCtx(() => [
|
|
46
73
|
vue.renderSlot(_ctx.$slots, "content", {}, () => [
|
|
47
74
|
vue.renderSlot(_ctx.$slots, "default")
|
|
@@ -72,7 +99,7 @@ var _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
|
72
99
|
]),
|
|
73
100
|
_: 3
|
|
74
101
|
/* FORWARDED */
|
|
75
|
-
}, 16, ["disabled", "content"]);
|
|
102
|
+
}, 16, ["disabled", "content", "popper-options"]);
|
|
76
103
|
};
|
|
77
104
|
}
|
|
78
105
|
});
|
package/locale/en.js
CHANGED
package/locale/en.min.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
/*! yc-pro-components v0.0.
|
|
1
|
+
/*! yc-pro-components v0.0.11 */(function(e,t){typeof exports=="object"&&typeof module!="undefined"?module.exports=t():typeof define=="function"&&define.amd?define(t):(e=typeof globalThis!="undefined"?globalThis:e||self,e.YcComponentsLocaleEn=t())})(this,function(){"use strict";var e={name:"en",plus:{dialog:{confirmText:"Yes",cancelText:"No",title:"Dialog"},datepicker:{startPlaceholder:"Please select start time",endPlaceholder:"Please select end time"},dialogForm:{title:"Dialog form"},drawerForm:{title:"Drawer form",confirmText:"Yes",cancelText:"No"},form:{submitText:"Submit",resetText:"Reset",errorTip:"Please complete the form and submit again!"},field:{pleaseEnter:"Please enter ",pleaseSelect:"Please select "},popover:{confirmText:"Yes",cancelText:"No"},search:{searchText:"Search",resetText:"Reset",expand:"Expand",retract:"Retract"},table:{title:"Table",density:"Density",refresh:"Refresh",columnSettings:"Column settings",selectAll:"Select all",default:"Default",loose:"Loose",compact:"Compact",action:"Action",more:"More",confirmToPerformThisOperation:"Confirm to perform this operation?",prompt:"Prompt",sort:"Sort",resetText:"Reset"},stepsForm:{nextText:"Next step",preText:"Previous step",submitText:"Submit"},inputTag:{placeholder:"Please enter keywords and press enter or space key"},header:{logout:"logout"}}};return e});
|
package/locale/en.min.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
/*! yc-pro-components v0.0.
|
|
1
|
+
/*! yc-pro-components v0.0.11 */var e={name:"en",plus:{dialog:{confirmText:"Yes",cancelText:"No",title:"Dialog"},datepicker:{startPlaceholder:"Please select start time",endPlaceholder:"Please select end time"},dialogForm:{title:"Dialog form"},drawerForm:{title:"Drawer form",confirmText:"Yes",cancelText:"No"},form:{submitText:"Submit",resetText:"Reset",errorTip:"Please complete the form and submit again!"},field:{pleaseEnter:"Please enter ",pleaseSelect:"Please select "},popover:{confirmText:"Yes",cancelText:"No"},search:{searchText:"Search",resetText:"Reset",expand:"Expand",retract:"Retract"},table:{title:"Table",density:"Density",refresh:"Refresh",columnSettings:"Column settings",selectAll:"Select all",default:"Default",loose:"Loose",compact:"Compact",action:"Action",more:"More",confirmToPerformThisOperation:"Confirm to perform this operation?",prompt:"Prompt",sort:"Sort",resetText:"Reset"},stepsForm:{nextText:"Next step",preText:"Previous step",submitText:"Submit"},inputTag:{placeholder:"Please enter keywords and press enter or space key"},header:{logout:"logout"}}};export{e as default};
|
package/locale/en.mjs
CHANGED
package/locale/ja.js
CHANGED
package/locale/ja.min.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
/*! yc-pro-components v0.0.
|
|
1
|
+
/*! yc-pro-components v0.0.11 */(function(u,e){typeof exports=="object"&&typeof module!="undefined"?module.exports=e():typeof define=="function"&&define.amd?define(e):(u=typeof globalThis!="undefined"?globalThis:u||self,u.YcComponentsLocaleJa=e())})(this,function(){"use strict";var u={name:"ja",plus:{dialog:{confirmText:"\u78BA\u5B9A",cancelText:"\u30AD\u30E3\u30F3\u30BB\u30EB",title:"\u30DD\u30C3\u30D7\u30A2\u30C3\u30D7"},datepicker:{startPlaceholder:"\u958B\u59CB\u6642\u9593\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",endPlaceholder:"\u7D42\u4E86\u6642\u9593\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044"},dialogForm:{title:"\u30DD\u30C3\u30D7\u30A2\u30C3\u30D7\u30D5\u30A9\u30FC\u30E0"},drawerForm:{title:"\u30C9\u30A5\u30ED\u30EF\u30FC\u30D5\u30A9\u30FC\u30E0",confirmText:"\u78BA\u5B9A",cancelText:"\u30AD\u30E3\u30F3\u30BB\u30EB"},form:{submitText:"\u9001\u4FE1",resetText:"\u30EA\u30BB\u30C3\u30C8",errorTip:"\u30D5\u30A9\u30FC\u30E0\u3092\u5B8C\u5168\u306B\u8A18\u5165\u3057\u3066\u304B\u3089\u518D\u5EA6\u9001\u4FE1\u3057\u3066\u304F\u3060\u3055\u3044\uFF01"},field:{pleaseEnter:"\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",pleaseSelect:"\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044"},popover:{confirmText:"\u78BA\u5B9A",cancelText:"\u30AD\u30E3\u30F3\u30BB\u30EB"},search:{searchText:"\u691C\u7D22",resetText:"\u30EA\u30BB\u30C3\u30C8",expand:"\u958B\u304F",retract:"\u9589\u307E\u308B"},table:{title:"\u30C6\u30FC\u30D6\u30EB",density:"\u5BC6\u5EA6",refresh:"\u30EA\u30D5\u30EC\u30C3\u30B7\u30E5",columnSettings:"\u5217\u306E\u8A2D\u5B9A",selectAll:"\u3059\u3079\u3066\u9078\u629E",default:"\u30C7\u30D5\u30A9\u30EB\u30C8",loose:"\u3086\u3063\u305F\u308A",compact:"\u304D\u3061\u3093\u3068",action:"\u30AA\u30D7\u30B7\u30E7\u30F3",more:"\u3082\u3063\u3068\u898B\u308B",confirmToPerformThisOperation:"\u3053\u306E\u64CD\u4F5C\u3092\u5B9F\u884C\u3057\u3066\u3082\u3088\u308D\u3057\u3044\u3067\u3059\u304B\uFF1F",prompt:"\u30D2\u30F3\u30C8",sort:"\u4E26\u3079\u66FF\u3048",resetText:"\u30EA\u30BB\u30C3\u30C8"},stepsForm:{nextText:"\u6B21\u3078",preText:"\u524D\u3078",submitText:"\u9001\u4FE1"},inputTag:{placeholder:"\u30AD\u30FC\u30EF\u30FC\u30C9\u3092\u5165\u529B\u3057\u3066Enter/\u30B9\u30DA\u30FC\u30B9\u30AD\u30FC\u3092\u62BC\u3057\u3066\u304F\u3060\u3055\u3044"},header:{logout:"\u30ED\u30B0\u30A2\u30A6\u30C8"}}};return u});
|
package/locale/ja.min.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
/*! yc-pro-components v0.0.
|
|
1
|
+
/*! yc-pro-components v0.0.11 */var u={name:"ja",plus:{dialog:{confirmText:"\u78BA\u5B9A",cancelText:"\u30AD\u30E3\u30F3\u30BB\u30EB",title:"\u30DD\u30C3\u30D7\u30A2\u30C3\u30D7"},datepicker:{startPlaceholder:"\u958B\u59CB\u6642\u9593\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",endPlaceholder:"\u7D42\u4E86\u6642\u9593\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044"},dialogForm:{title:"\u30DD\u30C3\u30D7\u30A2\u30C3\u30D7\u30D5\u30A9\u30FC\u30E0"},drawerForm:{title:"\u30C9\u30A5\u30ED\u30EF\u30FC\u30D5\u30A9\u30FC\u30E0",confirmText:"\u78BA\u5B9A",cancelText:"\u30AD\u30E3\u30F3\u30BB\u30EB"},form:{submitText:"\u9001\u4FE1",resetText:"\u30EA\u30BB\u30C3\u30C8",errorTip:"\u30D5\u30A9\u30FC\u30E0\u3092\u5B8C\u5168\u306B\u8A18\u5165\u3057\u3066\u304B\u3089\u518D\u5EA6\u9001\u4FE1\u3057\u3066\u304F\u3060\u3055\u3044\uFF01"},field:{pleaseEnter:"\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",pleaseSelect:"\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044"},popover:{confirmText:"\u78BA\u5B9A",cancelText:"\u30AD\u30E3\u30F3\u30BB\u30EB"},search:{searchText:"\u691C\u7D22",resetText:"\u30EA\u30BB\u30C3\u30C8",expand:"\u958B\u304F",retract:"\u9589\u307E\u308B"},table:{title:"\u30C6\u30FC\u30D6\u30EB",density:"\u5BC6\u5EA6",refresh:"\u30EA\u30D5\u30EC\u30C3\u30B7\u30E5",columnSettings:"\u5217\u306E\u8A2D\u5B9A",selectAll:"\u3059\u3079\u3066\u9078\u629E",default:"\u30C7\u30D5\u30A9\u30EB\u30C8",loose:"\u3086\u3063\u305F\u308A",compact:"\u304D\u3061\u3093\u3068",action:"\u30AA\u30D7\u30B7\u30E7\u30F3",more:"\u3082\u3063\u3068\u898B\u308B",confirmToPerformThisOperation:"\u3053\u306E\u64CD\u4F5C\u3092\u5B9F\u884C\u3057\u3066\u3082\u3088\u308D\u3057\u3044\u3067\u3059\u304B\uFF1F",prompt:"\u30D2\u30F3\u30C8",sort:"\u4E26\u3079\u66FF\u3048",resetText:"\u30EA\u30BB\u30C3\u30C8"},stepsForm:{nextText:"\u6B21\u3078",preText:"\u524D\u3078",submitText:"\u9001\u4FE1"},inputTag:{placeholder:"\u30AD\u30FC\u30EF\u30FC\u30C9\u3092\u5165\u529B\u3057\u3066Enter/\u30B9\u30DA\u30FC\u30B9\u30AD\u30FC\u3092\u62BC\u3057\u3066\u304F\u3060\u3055\u3044"},header:{logout:"\u30ED\u30B0\u30A2\u30A6\u30C8"}}};export{u as default};
|
package/locale/ja.mjs
CHANGED
package/locale/ko.js
CHANGED
package/locale/ko.min.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
/*! yc-pro-components v0.0.
|
|
1
|
+
/*! yc-pro-components v0.0.11 */(function(u,C){typeof exports=="object"&&typeof module!="undefined"?module.exports=C():typeof define=="function"&&define.amd?define(C):(u=typeof globalThis!="undefined"?globalThis:u||self,u.YcComponentsLocaleKo=C())})(this,function(){"use strict";var u={name:"ko",plus:{dialog:{confirmText:"\uD655\uC2E0\uD558\uB294",cancelText:"\uCDE8\uC18C",title:"\uD31D \uC5C5"},datepicker:{startPlaceholder:"\uC2DC\uC791 \uC2DC\uAC04\uC744 \uC120\uD0DD\uD558\uC138\uC694",endPlaceholder:"\uC885\uB8CC\uC2DC\uAC04\uC744 \uC120\uD0DD\uD574\uC8FC\uC138\uC694"},dialogForm:{title:"\uD31D\uC5C5 \uD615\uD0DC"},drawerForm:{title:"\uC11C\uB78D \uD615\uD0DC",confirmText:"\uD655\uC2E0\uD558\uB294",cancelText:"\uCDE8\uC18C"},form:{submitText:"\uC81C\uCD9C\uD558\uB2E4",resetText:"\uCD08\uAE30\uD654",errorTip:"\uC591\uC2DD\uC744 \uC644\uC804\uD788 \uC791\uC131\uD558\uC2E0 \uD6C4 \uB2E4\uC2DC \uC81C\uCD9C\uD574 \uC8FC\uC138\uC694!"},field:{pleaseEnter:"\uB4E4\uC5B4 \uC624\uC138\uC694",pleaseSelect:"\uC120\uD0DD\uD574\uC8FC\uC138\uC694"},popover:{confirmText:"\uD655\uC2E0\uD558\uB294",cancelText:"\uCDE8\uC18C"},search:{searchText:"\uCC3E\uB2E4",resetText:"\uCD08\uAE30\uD654",expand:"\uD655\uC7A5\uD558\uB2E4",retract:"\uB2EB\uB2E4"},table:{title:"\uC2DC\uD2B8",density:"\uBC00\uB3C4",refresh:"\uC0C8\uB85C \uACE0\uCE58\uB2E4",columnSettings:"\uC5F4 \uC124\uC815",selectAll:"\uBAA8\uB450 \uC120\uD0DD",default:"\uAE30\uBCF8",loose:"\uD5D0\uB801\uD55C",compact:"\uCF64\uD329\uD2B8",action:"\uC791\uB3D9\uD558\uB2E4",more:"\uB354",confirmToPerformThisOperation:"\uC774 \uC791\uC5C5\uC744 \uC218\uD589\uD558\uB824\uBA74 \uD655\uC778\uD558\uC138\uC694?",prompt:"\uD78C\uD2B8",sort:"\uC885\uB958",resetText:"\uCD08\uAE30\uD654"},stepsForm:{nextText:"\uB2E4\uC74C \uB2E8\uACC4",preText:"\uC774\uC804\uC758",submitText:"\uC81C\uCD9C\uD558\uB2E4"},inputTag:{placeholder:"\uD0A4\uC6CC\uB4DC\uB97C \uC785\uB825\uD558\uACE0 Enter/\uC2A4\uD398\uC774\uC2A4\uBC14\uB97C \uB204\uB974\uC138\uC694"},header:{logout:"\uB85C\uADF8\uC544\uC6C3"}}};return u});
|
package/locale/ko.min.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
/*! yc-pro-components v0.0.
|
|
1
|
+
/*! yc-pro-components v0.0.11 */var u={name:"ko",plus:{dialog:{confirmText:"\uD655\uC2E0\uD558\uB294",cancelText:"\uCDE8\uC18C",title:"\uD31D \uC5C5"},datepicker:{startPlaceholder:"\uC2DC\uC791 \uC2DC\uAC04\uC744 \uC120\uD0DD\uD558\uC138\uC694",endPlaceholder:"\uC885\uB8CC\uC2DC\uAC04\uC744 \uC120\uD0DD\uD574\uC8FC\uC138\uC694"},dialogForm:{title:"\uD31D\uC5C5 \uD615\uD0DC"},drawerForm:{title:"\uC11C\uB78D \uD615\uD0DC",confirmText:"\uD655\uC2E0\uD558\uB294",cancelText:"\uCDE8\uC18C"},form:{submitText:"\uC81C\uCD9C\uD558\uB2E4",resetText:"\uCD08\uAE30\uD654",errorTip:"\uC591\uC2DD\uC744 \uC644\uC804\uD788 \uC791\uC131\uD558\uC2E0 \uD6C4 \uB2E4\uC2DC \uC81C\uCD9C\uD574 \uC8FC\uC138\uC694!"},field:{pleaseEnter:"\uB4E4\uC5B4 \uC624\uC138\uC694",pleaseSelect:"\uC120\uD0DD\uD574\uC8FC\uC138\uC694"},popover:{confirmText:"\uD655\uC2E0\uD558\uB294",cancelText:"\uCDE8\uC18C"},search:{searchText:"\uCC3E\uB2E4",resetText:"\uCD08\uAE30\uD654",expand:"\uD655\uC7A5\uD558\uB2E4",retract:"\uB2EB\uB2E4"},table:{title:"\uC2DC\uD2B8",density:"\uBC00\uB3C4",refresh:"\uC0C8\uB85C \uACE0\uCE58\uB2E4",columnSettings:"\uC5F4 \uC124\uC815",selectAll:"\uBAA8\uB450 \uC120\uD0DD",default:"\uAE30\uBCF8",loose:"\uD5D0\uB801\uD55C",compact:"\uCF64\uD329\uD2B8",action:"\uC791\uB3D9\uD558\uB2E4",more:"\uB354",confirmToPerformThisOperation:"\uC774 \uC791\uC5C5\uC744 \uC218\uD589\uD558\uB824\uBA74 \uD655\uC778\uD558\uC138\uC694?",prompt:"\uD78C\uD2B8",sort:"\uC885\uB958",resetText:"\uCD08\uAE30\uD654"},stepsForm:{nextText:"\uB2E4\uC74C \uB2E8\uACC4",preText:"\uC774\uC804\uC758",submitText:"\uC81C\uCD9C\uD558\uB2E4"},inputTag:{placeholder:"\uD0A4\uC6CC\uB4DC\uB97C \uC785\uB825\uD558\uACE0 Enter/\uC2A4\uD398\uC774\uC2A4\uBC14\uB97C \uB204\uB974\uC138\uC694"},header:{logout:"\uB85C\uADF8\uC544\uC6C3"}}};export{u as default};
|
package/locale/ko.mjs
CHANGED
package/locale/zh-cn.js
CHANGED
package/locale/zh-cn.min.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
/*! yc-pro-components v0.0.
|
|
1
|
+
/*! yc-pro-components v0.0.11 */(function(u,e){typeof exports=="object"&&typeof module!="undefined"?module.exports=e():typeof define=="function"&&define.amd?define(e):(u=typeof globalThis!="undefined"?globalThis:u||self,u.YcComponentsLocaleZhCn=e())})(this,function(){"use strict";var u={name:"zh-cn",plus:{dialog:{confirmText:"\u786E\u5B9A",cancelText:"\u53D6\u6D88",title:"\u5F39\u7A97"},datepicker:{startPlaceholder:"\u8BF7\u9009\u62E9\u5F00\u59CB\u65F6\u95F4",endPlaceholder:"\u8BF7\u9009\u62E9\u7ED3\u675F\u65F6\u95F4"},dialogForm:{title:"\u5F39\u7A97\u8868\u5355"},drawerForm:{title:"\u62BD\u5C49\u8868\u5355",confirmText:"\u786E\u5B9A",cancelText:"\u53D6\u6D88"},form:{submitText:"\u63D0\u4EA4",resetText:"\u91CD\u7F6E",errorTip:"\u8BF7\u5B8C\u6574\u586B\u5199\u8868\u5355\u7136\u540E\u518D\u6B21\u63D0\u4EA4\uFF01"},field:{pleaseEnter:"\u8BF7\u8F93\u5165",pleaseSelect:"\u8BF7\u9009\u62E9"},popover:{confirmText:"\u786E\u5B9A",cancelText:"\u53D6\u6D88"},search:{searchText:"\u641C\u7D22",resetText:"\u91CD\u7F6E",expand:"\u5C55\u5F00",retract:"\u6536\u8D77"},table:{title:"\u8868\u683C",density:"\u5BC6\u5EA6",refresh:"\u5237\u65B0",columnSettings:"\u5217\u8BBE\u7F6E",selectAll:"\u5168\u9009",default:"\u9ED8\u8BA4",loose:"\u5BBD\u677E",compact:"\u7D27\u51D1",action:"\u64CD\u4F5C",more:"\u66F4\u591A",confirmToPerformThisOperation:"\u786E\u5B9A\u6267\u884C\u672C\u6B21\u64CD\u4F5C?",prompt:"\u63D0\u793A",sort:"\u6392\u5E8F",resetText:"\u91CD\u7F6E"},stepsForm:{nextText:"\u4E0B\u4E00\u6B65",preText:"\u4E0A\u4E00\u6B65",submitText:"\u63D0\u4EA4"},inputTag:{placeholder:"\u8BF7\u8F93\u5165\u5173\u952E\u5B57\u540E\u6309\u56DE\u8F66/\u7A7A\u683C\u952E"},header:{logout:"\u9000\u51FA\u767B\u5F55"}}};return u});
|
package/locale/zh-cn.min.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
/*! yc-pro-components v0.0.
|
|
1
|
+
/*! yc-pro-components v0.0.11 */var u={name:"zh-cn",plus:{dialog:{confirmText:"\u786E\u5B9A",cancelText:"\u53D6\u6D88",title:"\u5F39\u7A97"},datepicker:{startPlaceholder:"\u8BF7\u9009\u62E9\u5F00\u59CB\u65F6\u95F4",endPlaceholder:"\u8BF7\u9009\u62E9\u7ED3\u675F\u65F6\u95F4"},dialogForm:{title:"\u5F39\u7A97\u8868\u5355"},drawerForm:{title:"\u62BD\u5C49\u8868\u5355",confirmText:"\u786E\u5B9A",cancelText:"\u53D6\u6D88"},form:{submitText:"\u63D0\u4EA4",resetText:"\u91CD\u7F6E",errorTip:"\u8BF7\u5B8C\u6574\u586B\u5199\u8868\u5355\u7136\u540E\u518D\u6B21\u63D0\u4EA4\uFF01"},field:{pleaseEnter:"\u8BF7\u8F93\u5165",pleaseSelect:"\u8BF7\u9009\u62E9"},popover:{confirmText:"\u786E\u5B9A",cancelText:"\u53D6\u6D88"},search:{searchText:"\u641C\u7D22",resetText:"\u91CD\u7F6E",expand:"\u5C55\u5F00",retract:"\u6536\u8D77"},table:{title:"\u8868\u683C",density:"\u5BC6\u5EA6",refresh:"\u5237\u65B0",columnSettings:"\u5217\u8BBE\u7F6E",selectAll:"\u5168\u9009",default:"\u9ED8\u8BA4",loose:"\u5BBD\u677E",compact:"\u7D27\u51D1",action:"\u64CD\u4F5C",more:"\u66F4\u591A",confirmToPerformThisOperation:"\u786E\u5B9A\u6267\u884C\u672C\u6B21\u64CD\u4F5C?",prompt:"\u63D0\u793A",sort:"\u6392\u5E8F",resetText:"\u91CD\u7F6E"},stepsForm:{nextText:"\u4E0B\u4E00\u6B65",preText:"\u4E0A\u4E00\u6B65",submitText:"\u63D0\u4EA4"},inputTag:{placeholder:"\u8BF7\u8F93\u5165\u5173\u952E\u5B57\u540E\u6309\u56DE\u8F66/\u7A7A\u683C\u952E"},header:{logout:"\u9000\u51FA\u767B\u5F55"}}};export{u as default};
|
package/locale/zh-cn.mjs
CHANGED
package/locale/zh-tw.js
CHANGED
package/locale/zh-tw.min.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
/*! yc-pro-components v0.0.
|
|
1
|
+
/*! yc-pro-components v0.0.11 */(function(u,e){typeof exports=="object"&&typeof module!="undefined"?module.exports=e():typeof define=="function"&&define.amd?define(e):(u=typeof globalThis!="undefined"?globalThis:u||self,u.YcComponentsLocaleZhTw=e())})(this,function(){"use strict";var u={name:"zh-tw",plus:{dialog:{confirmText:"\u78BA\u5B9A",cancelText:"\u53D6\u6D88",title:"\u5F48\u7A97"},datepicker:{startPlaceholder:"\u8ACB\u9078\u64C7\u958B\u59CB\u6642\u9593",endPlaceholder:"\u8ACB\u9078\u64C7\u7D50\u675F\u6642\u9593"},dialogForm:{title:"\u5F48\u7A97\u8868\u55AE"},drawerForm:{title:"\u62BD\u5C5C\u8868\u55AE",confirmText:"\u78BA\u5B9A",cancelText:"\u53D6\u6D88"},form:{submitText:"\u63D0\u4EA4",resetText:"\u91CD\u7F6E",errorTip:"\u8ACB\u5B8C\u6574\u586B\u5BEB\u8868\u55AE\u7136\u5F8C\u518D\u6B21\u63D0\u4EA4\uFF01"},field:{pleaseEnter:"\u8ACB\u8F38\u5165",pleaseSelect:"\u8ACB\u9078\u64C7"},popover:{confirmText:"\u78BA\u5B9A",cancelText:"\u53D6\u6D88"},search:{searchText:"\u641C\u5C0B",resetText:"\u91CD\u7F6E",expand:"\u5C55\u958B",retract:"\u6536\u8D77"},table:{title:"\u8868\u683C",density:"\u5BC6\u5EA6",refresh:"\u5237\u65B0",columnSettings:"\u5217\u8A2D\u5B9A",selectAll:"\u5168\u9078",default:"\u9810\u8A2D",loose:"\u5BEC\u9B06",compact:"\u7DCA\u6E4A",action:"\u64CD\u4F5C",more:"\u66F4\u591A",confirmToPerformThisOperation:"\u78BA\u5B9A\u57F7\u884C\u672C\u6B21\u64CD\u4F5C?",prompt:"\u63D0\u793A",sort:"\u6392\u5E8F",resetText:"\u91CD\u7F6E"},stepsForm:{nextText:"\u4E0B\u4E00\u6B65",preText:"\u4E0A\u4E00\u6B65",submitText:"\u63D0\u4EA4"},inputTag:{placeholder:"\u8ACB\u8F38\u5165\u95DC\u9375\u5B57\u5F8C\u6309\u56DE\u8ECA/\u7A7A\u767D\u9375"},header:{logout:"\u767B\u51FA"}}};return u});
|
package/locale/zh-tw.min.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
/*! yc-pro-components v0.0.
|
|
1
|
+
/*! yc-pro-components v0.0.11 */var u={name:"zh-tw",plus:{dialog:{confirmText:"\u78BA\u5B9A",cancelText:"\u53D6\u6D88",title:"\u5F48\u7A97"},datepicker:{startPlaceholder:"\u8ACB\u9078\u64C7\u958B\u59CB\u6642\u9593",endPlaceholder:"\u8ACB\u9078\u64C7\u7D50\u675F\u6642\u9593"},dialogForm:{title:"\u5F48\u7A97\u8868\u55AE"},drawerForm:{title:"\u62BD\u5C5C\u8868\u55AE",confirmText:"\u78BA\u5B9A",cancelText:"\u53D6\u6D88"},form:{submitText:"\u63D0\u4EA4",resetText:"\u91CD\u7F6E",errorTip:"\u8ACB\u5B8C\u6574\u586B\u5BEB\u8868\u55AE\u7136\u5F8C\u518D\u6B21\u63D0\u4EA4\uFF01"},field:{pleaseEnter:"\u8ACB\u8F38\u5165",pleaseSelect:"\u8ACB\u9078\u64C7"},popover:{confirmText:"\u78BA\u5B9A",cancelText:"\u53D6\u6D88"},search:{searchText:"\u641C\u5C0B",resetText:"\u91CD\u7F6E",expand:"\u5C55\u958B",retract:"\u6536\u8D77"},table:{title:"\u8868\u683C",density:"\u5BC6\u5EA6",refresh:"\u5237\u65B0",columnSettings:"\u5217\u8A2D\u5B9A",selectAll:"\u5168\u9078",default:"\u9810\u8A2D",loose:"\u5BEC\u9B06",compact:"\u7DCA\u6E4A",action:"\u64CD\u4F5C",more:"\u66F4\u591A",confirmToPerformThisOperation:"\u78BA\u5B9A\u57F7\u884C\u672C\u6B21\u64CD\u4F5C?",prompt:"\u63D0\u793A",sort:"\u6392\u5E8F",resetText:"\u91CD\u7F6E"},stepsForm:{nextText:"\u4E0B\u4E00\u6B65",preText:"\u4E0A\u4E00\u6B65",submitText:"\u63D0\u4EA4"},inputTag:{placeholder:"\u8ACB\u8F38\u5165\u95DC\u9375\u5B57\u5F8C\u6309\u56DE\u8ECA/\u7A7A\u767D\u9375"},header:{logout:"\u767B\u51FA"}}};export{u as default};
|
package/locale/zh-tw.mjs
CHANGED
package/package.json
CHANGED