@cmstops/pro-compo 0.1.64 → 0.1.65
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/contentDetailList/__demo__/matrix/platform.d.ts +11 -2
- package/es/contentDetailList/component.js +12 -0
- package/es/contentDetailList/components/Doc/index.js +6 -0
- package/lib/contentDetailList/component.js +12 -0
- package/lib/contentDetailList/components/Doc/index.js +6 -0
- package/package.json +1 -1
|
@@ -1,11 +1,20 @@
|
|
|
1
|
-
declare const platform: {
|
|
1
|
+
declare const platform: ({
|
|
2
2
|
id: number;
|
|
3
3
|
key: string;
|
|
4
4
|
name: string;
|
|
5
5
|
indexUrl: string;
|
|
6
6
|
isDataAsync: boolean;
|
|
7
7
|
type: string[];
|
|
8
|
-
|
|
8
|
+
pfIcon?: undefined;
|
|
9
|
+
} | {
|
|
10
|
+
id: number;
|
|
11
|
+
key: string;
|
|
12
|
+
name: string;
|
|
13
|
+
indexUrl: string;
|
|
14
|
+
pfIcon: string;
|
|
15
|
+
isDataAsync: boolean;
|
|
16
|
+
type: string[];
|
|
17
|
+
})[];
|
|
9
18
|
export declare function getPlatformInfoById(id: number): any;
|
|
10
19
|
export declare const accounts: {
|
|
11
20
|
id: number;
|
|
@@ -123,6 +123,12 @@ const _sfc_main = defineComponent({
|
|
|
123
123
|
onCellMouseEnter: tableCellMouseEnter,
|
|
124
124
|
onCellMouseLeave: tableCellMouseLeave
|
|
125
125
|
}, {
|
|
126
|
+
tip: withCtx(() => [
|
|
127
|
+
renderSlot(_ctx.$slots, "tip", {
|
|
128
|
+
row: element,
|
|
129
|
+
index
|
|
130
|
+
})
|
|
131
|
+
]),
|
|
126
132
|
batch: withCtx(() => [
|
|
127
133
|
renderSlot(_ctx.$slots, "batch", {
|
|
128
134
|
row: element,
|
|
@@ -202,6 +208,12 @@ const _sfc_main = defineComponent({
|
|
|
202
208
|
onCellMouseEnter: tableCellMouseEnter,
|
|
203
209
|
onCellMouseLeave: tableCellMouseLeave
|
|
204
210
|
}, {
|
|
211
|
+
tip: withCtx(() => [
|
|
212
|
+
renderSlot(_ctx.$slots, "tip", {
|
|
213
|
+
row: item,
|
|
214
|
+
index
|
|
215
|
+
})
|
|
216
|
+
]),
|
|
205
217
|
batch: withCtx(() => [
|
|
206
218
|
renderSlot(_ctx.$slots, "batch", {
|
|
207
219
|
row: item,
|
|
@@ -29,6 +29,12 @@ const _sfc_main = defineComponent({
|
|
|
29
29
|
onCellMouseEnter: cellMouseEnter,
|
|
30
30
|
onCellMouseLeave: cellMouseLeave
|
|
31
31
|
}, {
|
|
32
|
+
tip: withCtx(() => [
|
|
33
|
+
renderSlot(_ctx.$slots, "tip", {
|
|
34
|
+
row: _ctx.item,
|
|
35
|
+
index: _ctx.index
|
|
36
|
+
})
|
|
37
|
+
]),
|
|
32
38
|
batch: withCtx(() => [
|
|
33
39
|
renderSlot(_ctx.$slots, "batch", {
|
|
34
40
|
row: _ctx.item,
|
|
@@ -128,6 +128,12 @@ const _sfc_main = vue.defineComponent({
|
|
|
128
128
|
onCellMouseEnter: tableCellMouseEnter,
|
|
129
129
|
onCellMouseLeave: tableCellMouseLeave
|
|
130
130
|
}, {
|
|
131
|
+
tip: vue.withCtx(() => [
|
|
132
|
+
vue.renderSlot(_ctx.$slots, "tip", {
|
|
133
|
+
row: element,
|
|
134
|
+
index: index$3
|
|
135
|
+
})
|
|
136
|
+
]),
|
|
131
137
|
batch: vue.withCtx(() => [
|
|
132
138
|
vue.renderSlot(_ctx.$slots, "batch", {
|
|
133
139
|
row: element,
|
|
@@ -207,6 +213,12 @@ const _sfc_main = vue.defineComponent({
|
|
|
207
213
|
onCellMouseEnter: tableCellMouseEnter,
|
|
208
214
|
onCellMouseLeave: tableCellMouseLeave
|
|
209
215
|
}, {
|
|
216
|
+
tip: vue.withCtx(() => [
|
|
217
|
+
vue.renderSlot(_ctx.$slots, "tip", {
|
|
218
|
+
row: item,
|
|
219
|
+
index: index$3
|
|
220
|
+
})
|
|
221
|
+
]),
|
|
210
222
|
batch: vue.withCtx(() => [
|
|
211
223
|
vue.renderSlot(_ctx.$slots, "batch", {
|
|
212
224
|
row: item,
|
|
@@ -30,6 +30,12 @@ const _sfc_main = vue.defineComponent({
|
|
|
30
30
|
onCellMouseEnter: cellMouseEnter,
|
|
31
31
|
onCellMouseLeave: cellMouseLeave
|
|
32
32
|
}, {
|
|
33
|
+
tip: vue.withCtx(() => [
|
|
34
|
+
vue.renderSlot(_ctx.$slots, "tip", {
|
|
35
|
+
row: _ctx.item,
|
|
36
|
+
index: _ctx.index
|
|
37
|
+
})
|
|
38
|
+
]),
|
|
33
39
|
batch: vue.withCtx(() => [
|
|
34
40
|
vue.renderSlot(_ctx.$slots, "batch", {
|
|
35
41
|
row: _ctx.item,
|