@tekkare/auriga 0.1.150 → 0.1.152
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/module.json
CHANGED
|
@@ -122,13 +122,15 @@
|
|
|
122
122
|
? 'text_cell'
|
|
123
123
|
: 'text_cell crop_text'
|
|
124
124
|
"
|
|
125
|
-
:id="
|
|
125
|
+
:id="`${tableId}_content_${contIndex}_${valIndex}`"
|
|
126
126
|
>
|
|
127
127
|
{{ value }}
|
|
128
128
|
</p>
|
|
129
129
|
<p
|
|
130
130
|
v-if="
|
|
131
|
-
hasReadMore.includes(
|
|
131
|
+
hasReadMore.includes(
|
|
132
|
+
`${tableId}_content_${contIndex}_${valIndex}`
|
|
133
|
+
)
|
|
132
134
|
"
|
|
133
135
|
class="read_more"
|
|
134
136
|
@click="applyToggleCrop(contIndex, valIndex)"
|
|
@@ -343,6 +345,10 @@ export default defineComponent({
|
|
|
343
345
|
autoCrop: {
|
|
344
346
|
type: Boolean,
|
|
345
347
|
default: false
|
|
348
|
+
},
|
|
349
|
+
tableId: {
|
|
350
|
+
type: String,
|
|
351
|
+
default: "arg"
|
|
346
352
|
}
|
|
347
353
|
},
|
|
348
354
|
emits: ["changeInputValue"],
|
|
@@ -676,7 +682,7 @@ export default defineComponent({
|
|
|
676
682
|
}
|
|
677
683
|
});
|
|
678
684
|
}
|
|
679
|
-
},
|
|
685
|
+
}, 300);
|
|
680
686
|
});
|
|
681
687
|
function applyToggleCrop(index, value) {
|
|
682
688
|
if (toggleCrop.value !== null) {
|
|
@@ -156,6 +156,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
156
156
|
type: BooleanConstructor;
|
|
157
157
|
default: boolean;
|
|
158
158
|
};
|
|
159
|
+
tableId: {
|
|
160
|
+
type: StringConstructor;
|
|
161
|
+
default: string;
|
|
162
|
+
};
|
|
159
163
|
}, {
|
|
160
164
|
sortCol: import("vue").Ref<any>;
|
|
161
165
|
sortDir: import("vue").Ref<any>;
|
|
@@ -356,6 +360,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
356
360
|
type: BooleanConstructor;
|
|
357
361
|
default: boolean;
|
|
358
362
|
};
|
|
363
|
+
tableId: {
|
|
364
|
+
type: StringConstructor;
|
|
365
|
+
default: string;
|
|
366
|
+
};
|
|
359
367
|
}>> & {
|
|
360
368
|
onChangeInputValue?: ((...args: any[]) => any) | undefined;
|
|
361
369
|
}, {
|
|
@@ -377,5 +385,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
377
385
|
fullTableScroll: boolean;
|
|
378
386
|
maxHeight: string | number;
|
|
379
387
|
autoCrop: boolean;
|
|
388
|
+
tableId: string;
|
|
380
389
|
}, {}>;
|
|
381
390
|
export default _default;
|