@wlydfe/pro-ui 0.2.14 → 0.2.15
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/README.md +119 -119
- package/es/components/form-item/src/index.vue.d.ts +6 -2
- package/es/components/form-item/src/index.vue2.mjs +6 -6
- package/es/components/page/src/index.vue.d.ts +30 -54
- package/es/components/radio/src/index.vue2.mjs +1 -1
- package/es/components/render/src/index.vue2.mjs +1 -1
- package/es/directives/copy.d.ts +0 -0
- package/es/directives/copy.mjs +1 -0
- package/es/directives/longpress.d.ts +0 -0
- package/es/directives/longpress.mjs +1 -0
- package/es/directives/optimize.d.ts +0 -0
- package/es/directives/optimize.mjs +1 -0
- package/es/directives/tippy.d.ts +0 -0
- package/es/directives/tippy.mjs +1 -0
- package/es/index.css +14 -13
- package/global.d.ts +29 -29
- package/index.js +9 -9
- package/index.min.js +2 -2
- package/index.min.mjs +1 -1
- package/index.mjs +9 -9
- package/lib/components/form-item/src/index.vue.d.ts +6 -2
- package/lib/components/form-item/src/index.vue2.js +6 -6
- package/lib/components/page/src/index.vue.d.ts +30 -54
- package/lib/components/radio/src/index.vue2.js +1 -1
- package/lib/components/render/src/index.vue2.js +1 -1
- package/lib/directives/copy.d.ts +0 -0
- package/lib/directives/copy.js +2 -0
- package/lib/directives/longpress.d.ts +0 -0
- package/lib/directives/longpress.js +2 -0
- package/lib/directives/optimize.d.ts +0 -0
- package/lib/directives/optimize.js +2 -0
- package/lib/directives/tippy.d.ts +0 -0
- package/lib/directives/tippy.js +2 -0
- package/lib/{form.css → display-item.css} +11 -11
- 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 +2 -2
- package/theme-chalk/src/breadcrumb.scss +9 -9
- package/theme-chalk/src/date-picker.scss +96 -96
- package/theme-chalk/src/descriptions.scss +41 -41
- package/theme-chalk/src/display-item.scss +82 -82
- package/theme-chalk/src/drawer-form.scss +16 -16
- package/theme-chalk/src/form.scss +34 -34
- package/theme-chalk/src/input-tag.scss +91 -91
- package/theme-chalk/src/layout.scss +36 -36
- package/theme-chalk/src/mixins/function.scss +73 -73
- package/theme-chalk/src/search.scss +49 -49
- package/theme-chalk/src/sidebar.scss +93 -93
- package/theme-chalk/src/steps-form.scss +18 -18
- package/theme-chalk/src/table.scss +170 -170
- package/theme-chalk/src/var/index.scss +6 -6
- package/LICENSE +0 -21
package/global.d.ts
CHANGED
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
// GlobalComponents for Volar
|
|
2
|
-
declare module '@vue/runtime-core' {
|
|
3
|
-
export interface GlobalComponents {
|
|
4
|
-
PlusDialog: typeof import('plus-pro-components')['PlusDialog']
|
|
5
|
-
PlusPagination: typeof import('plus-pro-components')['PlusPagination']
|
|
6
|
-
PlusTable: typeof import('plus-pro-components')['PlusTable']
|
|
7
|
-
PlusRadio: typeof import('plus-pro-components')['PlusRadio']
|
|
8
|
-
PlusDatePicker: typeof import('plus-pro-components')['PlusDatePicker']
|
|
9
|
-
PlusDescriptions: typeof import('plus-pro-components')['PlusDescriptions']
|
|
10
|
-
PlusDisplayItem: typeof import('plus-pro-components')['PlusDisplayItem']
|
|
11
|
-
PlusFormItem: typeof import('plus-pro-components')['PlusFormItem']
|
|
12
|
-
PlusForm: typeof import('plus-pro-components')['PlusForm']
|
|
13
|
-
PlusSearch: typeof import('plus-pro-components')['PlusSearch']
|
|
14
|
-
PlusDialogForm: typeof import('plus-pro-components')['PlusDialogForm']
|
|
15
|
-
PlusDrawerForm: typeof import('plus-pro-components')['PlusDrawerForm']
|
|
16
|
-
PlusPage: typeof import('plus-pro-components')['PlusPage']
|
|
17
|
-
PlusPopover: typeof import('plus-pro-components')['PlusPopover']
|
|
18
|
-
PlusStepsForm: typeof import('plus-pro-components')['PlusStepsForm']
|
|
19
|
-
PlusInputTag: typeof import('plus-pro-components')['PlusInputTag']
|
|
20
|
-
PlusBreadcrumb: typeof import('plus-pro-components')['PlusBreadcrumb']
|
|
21
|
-
PlusSidebar: typeof import('plus-pro-components')['PlusSidebar']
|
|
22
|
-
PlusHeader: typeof import('plus-pro-components')['PlusHeader']
|
|
23
|
-
PlusLayout: typeof import('plus-pro-components')['PlusLayout']
|
|
24
|
-
PlusCheckCard: typeof import('plus-pro-components')['PlusCheckCard']
|
|
25
|
-
PlusCheckCardGroup: typeof import('plus-pro-components')['PlusCheckCardGroup']
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
export {}
|
|
1
|
+
// GlobalComponents for Volar
|
|
2
|
+
declare module '@vue/runtime-core' {
|
|
3
|
+
export interface GlobalComponents {
|
|
4
|
+
PlusDialog: typeof import('plus-pro-components')['PlusDialog']
|
|
5
|
+
PlusPagination: typeof import('plus-pro-components')['PlusPagination']
|
|
6
|
+
PlusTable: typeof import('plus-pro-components')['PlusTable']
|
|
7
|
+
PlusRadio: typeof import('plus-pro-components')['PlusRadio']
|
|
8
|
+
PlusDatePicker: typeof import('plus-pro-components')['PlusDatePicker']
|
|
9
|
+
PlusDescriptions: typeof import('plus-pro-components')['PlusDescriptions']
|
|
10
|
+
PlusDisplayItem: typeof import('plus-pro-components')['PlusDisplayItem']
|
|
11
|
+
PlusFormItem: typeof import('plus-pro-components')['PlusFormItem']
|
|
12
|
+
PlusForm: typeof import('plus-pro-components')['PlusForm']
|
|
13
|
+
PlusSearch: typeof import('plus-pro-components')['PlusSearch']
|
|
14
|
+
PlusDialogForm: typeof import('plus-pro-components')['PlusDialogForm']
|
|
15
|
+
PlusDrawerForm: typeof import('plus-pro-components')['PlusDrawerForm']
|
|
16
|
+
PlusPage: typeof import('plus-pro-components')['PlusPage']
|
|
17
|
+
PlusPopover: typeof import('plus-pro-components')['PlusPopover']
|
|
18
|
+
PlusStepsForm: typeof import('plus-pro-components')['PlusStepsForm']
|
|
19
|
+
PlusInputTag: typeof import('plus-pro-components')['PlusInputTag']
|
|
20
|
+
PlusBreadcrumb: typeof import('plus-pro-components')['PlusBreadcrumb']
|
|
21
|
+
PlusSidebar: typeof import('plus-pro-components')['PlusSidebar']
|
|
22
|
+
PlusHeader: typeof import('plus-pro-components')['PlusHeader']
|
|
23
|
+
PlusLayout: typeof import('plus-pro-components')['PlusLayout']
|
|
24
|
+
PlusCheckCard: typeof import('plus-pro-components')['PlusCheckCard']
|
|
25
|
+
PlusCheckCardGroup: typeof import('plus-pro-components')['PlusCheckCardGroup']
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
export {}
|
package/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @wlydfe/pro-ui v0.2.
|
|
1
|
+
/*! @wlydfe/pro-ui v0.2.15 */
|
|
2
2
|
(function (global, factory) {
|
|
3
3
|
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('vue'), require('element-plus')) :
|
|
4
4
|
typeof define === 'function' && define.amd ? define(['exports', 'vue', 'element-plus'], factory) :
|
|
@@ -4694,7 +4694,7 @@
|
|
|
4694
4694
|
options: { default: () => [] },
|
|
4695
4695
|
isCancel: { type: Boolean, default: true },
|
|
4696
4696
|
fieldSlots: { default: void 0 },
|
|
4697
|
-
fieldChildrenSlot: {
|
|
4697
|
+
fieldChildrenSlot: { default: void 0 }
|
|
4698
4698
|
},
|
|
4699
4699
|
emits: ["change", "update:modelValue"],
|
|
4700
4700
|
setup(__props, { expose: __expose, emit: __emit }) {
|
|
@@ -5450,7 +5450,7 @@
|
|
|
5450
5450
|
__name: "index",
|
|
5451
5451
|
props: {
|
|
5452
5452
|
renderType: { default: void 0 },
|
|
5453
|
-
callbackValue: {
|
|
5453
|
+
callbackValue: { default: "" },
|
|
5454
5454
|
customFieldProps: { default: () => ({}) },
|
|
5455
5455
|
render: {},
|
|
5456
5456
|
params: { default: () => ({}) },
|
|
@@ -5894,20 +5894,20 @@
|
|
|
5894
5894
|
},
|
|
5895
5895
|
__name: "index",
|
|
5896
5896
|
props: {
|
|
5897
|
-
modelValue: {
|
|
5898
|
-
hasLabel: {
|
|
5897
|
+
modelValue: { default: "" },
|
|
5898
|
+
hasLabel: { default: true },
|
|
5899
5899
|
label: { default: "" },
|
|
5900
5900
|
prop: {},
|
|
5901
5901
|
fieldProps: { default: () => ({}) },
|
|
5902
5902
|
valueType: { default: void 0 },
|
|
5903
5903
|
options: { default: () => [] },
|
|
5904
5904
|
formItemProps: { default: () => ({}) },
|
|
5905
|
-
renderField: {
|
|
5906
|
-
renderLabel: {
|
|
5905
|
+
renderField: { default: void 0 },
|
|
5906
|
+
renderLabel: { default: void 0 },
|
|
5907
5907
|
tooltip: { default: "" },
|
|
5908
5908
|
fieldSlots: { default: () => ({}) },
|
|
5909
|
-
fieldChildrenSlot: {
|
|
5910
|
-
renderErrorMessage: {
|
|
5909
|
+
fieldChildrenSlot: { default: void 0 },
|
|
5910
|
+
renderErrorMessage: { default: void 0 },
|
|
5911
5911
|
optionsMap: { default: void 0 },
|
|
5912
5912
|
index: { default: 0 },
|
|
5913
5913
|
clearable: { type: Boolean, default: true }
|