paas-component-library 1.0.76 → 1.0.79
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/paas-ui.js +56 -14
- package/dist/paas-ui.umd.cjs +4 -4
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/components/MentionInput/index.vue +3 -2
- package/src/components/OrgPathSelector/index.vue +2 -1
- package/src/components/PaasDate/index.vue +9 -3
- package/src/components/PaasDateRange/index.vue +7 -2
- package/src/components/PaasEditor/index.vue +10 -1
- package/src/components/PaasForm/index.vue +2 -2
- package/src/components/PaasInput/index.vue +3 -2
- package/src/components/PaasNumber/index.vue +3 -2
- package/src/components/PaasPageSelect/index.vue +1 -1
- package/src/components/PaasRadio/index.vue +3 -2
- package/src/components/PaasSelect/index.vue +1 -1
- package/src/components/PaasTextarea/index.vue +3 -2
- package/src/components/form/FormTree/index.vue +32 -8
package/dist/paas-ui.js
CHANGED
|
@@ -28,7 +28,8 @@ const cr = (r, e) => {
|
|
|
28
28
|
default: !1
|
|
29
29
|
},
|
|
30
30
|
modelValue: {
|
|
31
|
-
type: [String, Array, Date]
|
|
31
|
+
type: [String, Array, Date],
|
|
32
|
+
default: null
|
|
32
33
|
},
|
|
33
34
|
showTime: {
|
|
34
35
|
type: Boolean,
|
|
@@ -37,6 +38,10 @@ const cr = (r, e) => {
|
|
|
37
38
|
format: {
|
|
38
39
|
type: String,
|
|
39
40
|
default: null
|
|
41
|
+
},
|
|
42
|
+
onChange: {
|
|
43
|
+
type: Function,
|
|
44
|
+
default: null
|
|
40
45
|
}
|
|
41
46
|
},
|
|
42
47
|
data() {
|
|
@@ -21606,7 +21611,7 @@ const rGe = /* @__PURE__ */ cr(KYe, [["render", tGe], ["__scopeId", "data-v-d2bc
|
|
|
21606
21611
|
modelValue: { type: [String, Number, Array], default: null },
|
|
21607
21612
|
data: { type: Array, default: () => [] },
|
|
21608
21613
|
params: { type: String, default: "" },
|
|
21609
|
-
style: { type: String, default: "min-width: 200px; width: 100%;" }
|
|
21614
|
+
style: { type: [String, Object], default: "min-width: 200px; width: 100%;" }
|
|
21610
21615
|
},
|
|
21611
21616
|
data() {
|
|
21612
21617
|
return {
|
|
@@ -21694,7 +21699,7 @@ const aGe = /* @__PURE__ */ cr(nGe, [["render", iGe]]), oGe = Rh({
|
|
|
21694
21699
|
modelValue: [String, Array],
|
|
21695
21700
|
url: { type: String, required: !0 },
|
|
21696
21701
|
vars: { type: Object, default: () => ({}) },
|
|
21697
|
-
style: { type: String, default: "min-width: 200px; width: 100%;" }
|
|
21702
|
+
style: { type: [String, Object], default: "min-width: 200px; width: 100%;" }
|
|
21698
21703
|
},
|
|
21699
21704
|
data() {
|
|
21700
21705
|
return {
|
|
@@ -23057,22 +23062,46 @@ const UGe = /* @__PURE__ */ cr(QGe, [["render", WGe]]), XGe = {
|
|
|
23057
23062
|
default: ""
|
|
23058
23063
|
},
|
|
23059
23064
|
colSpan: { type: Number },
|
|
23060
|
-
|
|
23061
|
-
|
|
23062
|
-
|
|
23065
|
+
multiple: {
|
|
23066
|
+
type: [Boolean, void 0],
|
|
23067
|
+
default: void 0
|
|
23068
|
+
},
|
|
23069
|
+
modelValue: {
|
|
23070
|
+
type: [String, Number, Array],
|
|
23071
|
+
default: null
|
|
23072
|
+
},
|
|
23063
23073
|
open: {
|
|
23064
23074
|
type: Boolean,
|
|
23065
23075
|
default: !1
|
|
23066
23076
|
},
|
|
23067
23077
|
fieldNames: {
|
|
23068
23078
|
type: Object,
|
|
23069
|
-
default: { children: "children", title: "title", key: "id" }
|
|
23079
|
+
default: () => ({ children: "children", title: "title", key: "id" })
|
|
23070
23080
|
},
|
|
23071
|
-
params: {
|
|
23072
|
-
|
|
23073
|
-
|
|
23074
|
-
|
|
23075
|
-
|
|
23081
|
+
params: {
|
|
23082
|
+
type: Object,
|
|
23083
|
+
default: () => ({})
|
|
23084
|
+
},
|
|
23085
|
+
label: {
|
|
23086
|
+
type: String,
|
|
23087
|
+
default: ""
|
|
23088
|
+
},
|
|
23089
|
+
name: {
|
|
23090
|
+
type: String,
|
|
23091
|
+
default: ""
|
|
23092
|
+
},
|
|
23093
|
+
disabled: {
|
|
23094
|
+
type: Boolean,
|
|
23095
|
+
default: !1
|
|
23096
|
+
},
|
|
23097
|
+
url: {
|
|
23098
|
+
type: String,
|
|
23099
|
+
default: ""
|
|
23100
|
+
},
|
|
23101
|
+
onChange: {
|
|
23102
|
+
type: Function,
|
|
23103
|
+
default: null
|
|
23104
|
+
}
|
|
23076
23105
|
},
|
|
23077
23106
|
computed: {
|
|
23078
23107
|
see() {
|
|
@@ -32828,12 +32857,21 @@ const $G = {
|
|
|
32828
32857
|
type: String,
|
|
32829
32858
|
default: ""
|
|
32830
32859
|
},
|
|
32831
|
-
modelValue:
|
|
32860
|
+
modelValue: {
|
|
32861
|
+
type: String,
|
|
32862
|
+
default: ""
|
|
32863
|
+
},
|
|
32832
32864
|
height: {
|
|
32865
|
+
type: [Number, String],
|
|
32833
32866
|
default: 350
|
|
32834
32867
|
},
|
|
32835
32868
|
readonly: {
|
|
32869
|
+
type: Boolean,
|
|
32836
32870
|
default: !1
|
|
32871
|
+
},
|
|
32872
|
+
onChange: {
|
|
32873
|
+
type: Function,
|
|
32874
|
+
default: null
|
|
32837
32875
|
}
|
|
32838
32876
|
},
|
|
32839
32877
|
watch: {
|
|
@@ -32907,7 +32945,7 @@ function gJe(r, e, t, n, i, o) {
|
|
|
32907
32945
|
placeholder: t.placeholder
|
|
32908
32946
|
}, r.$attrs), null, 16, ["content", "options", "style", "readOnly", "placeholder"]);
|
|
32909
32947
|
}
|
|
32910
|
-
const OJe = /* @__PURE__ */ cr(mJe, [["render", gJe], ["__scopeId", "data-v-
|
|
32948
|
+
const OJe = /* @__PURE__ */ cr(mJe, [["render", gJe], ["__scopeId", "data-v-541aea24"]]);
|
|
32911
32949
|
function ti(r) {
|
|
32912
32950
|
this.content = r;
|
|
32913
32951
|
}
|
|
@@ -113433,6 +113471,10 @@ const IJt = {
|
|
|
113433
113471
|
isJoin: {
|
|
113434
113472
|
type: Boolean,
|
|
113435
113473
|
default: !1
|
|
113474
|
+
},
|
|
113475
|
+
onChange: {
|
|
113476
|
+
type: Function,
|
|
113477
|
+
default: null
|
|
113436
113478
|
}
|
|
113437
113479
|
},
|
|
113438
113480
|
computed: {
|