edvoyui-component-library-test-flight 0.0.39 → 0.0.40
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/library-vue-ts.cjs.js +15 -15
- package/dist/library-vue-ts.es.js +1015 -1017
- package/dist/library-vue-ts.umd.js +21 -21
- package/dist/table/EUIDashboardTable.vue.d.ts +1 -1
- package/dist/table/EUITable.vue.d.ts +1 -1
- package/package.json +1 -1
- package/src/components/dropdown/EUIMultiDropdown.stories.ts +4 -4
- package/src/components/table/EUIDashboardTable.vue +4 -4
- package/src/components/table/EUITable.vue +4 -4
- package/src/components/telephone/EUITelephone.vue +0 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export * from "/Volumes/work/repos/edvoy-ui-v2/src/components/table/EUIDashboardTable.vue?vue&type=script&setup=true&lang.ts";
|
|
2
|
-
import "/Volumes/work/repos/edvoy-ui-v2/src/components/table/EUIDashboardTable.vue?vue&type=style&index=0&scoped=
|
|
2
|
+
import "/Volumes/work/repos/edvoy-ui-v2/src/components/table/EUIDashboardTable.vue?vue&type=style&index=0&scoped=2b1db7c3&lang.scss";
|
|
3
3
|
declare const _default: any;
|
|
4
4
|
export default _default;
|
|
5
5
|
//# sourceMappingURL=EUIDashboardTable.vue.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export * from "/Volumes/work/repos/edvoy-ui-v2/src/components/table/EUITable.vue?vue&type=script&setup=true&lang.ts";
|
|
2
|
-
import "/Volumes/work/repos/edvoy-ui-v2/src/components/table/EUITable.vue?vue&type=style&index=0&scoped=
|
|
2
|
+
import "/Volumes/work/repos/edvoy-ui-v2/src/components/table/EUITable.vue?vue&type=style&index=0&scoped=125a9a20&lang.scss";
|
|
3
3
|
declare const _default: any;
|
|
4
4
|
export default _default;
|
|
5
5
|
//# sourceMappingURL=EUITable.vue.d.ts.map
|
package/package.json
CHANGED
|
@@ -50,12 +50,12 @@ const Template: StoryFn = (args) =>
|
|
|
50
50
|
defineComponent({
|
|
51
51
|
components: { EUIMultiDropdown, ChevronDownStroke },
|
|
52
52
|
setup() {
|
|
53
|
-
const handleMenuItem = (
|
|
54
|
-
console.log("Menu clicked:",
|
|
53
|
+
const handleMenuItem = (_item: any) => {
|
|
54
|
+
// console.log("Menu clicked:", _item);
|
|
55
55
|
};
|
|
56
56
|
|
|
57
|
-
const handleSubMenuItem = (
|
|
58
|
-
console.log("Submenu item clicked:",
|
|
57
|
+
const handleSubMenuItem = (_subItem: any) => {
|
|
58
|
+
// console.log("Submenu item clicked:", _subItem);
|
|
59
59
|
};
|
|
60
60
|
|
|
61
61
|
return { args, handleMenuItem, handleSubMenuItem };
|
|
@@ -272,8 +272,8 @@ const computedItems = computed(() => {
|
|
|
272
272
|
return items;
|
|
273
273
|
});
|
|
274
274
|
|
|
275
|
-
const searchData = (
|
|
276
|
-
console.log(
|
|
275
|
+
const searchData = (_data:any) => {
|
|
276
|
+
// console.log(_data);
|
|
277
277
|
};
|
|
278
278
|
|
|
279
279
|
const sortClass = computed(() => (header: any) => {
|
|
@@ -389,9 +389,9 @@ const isRowChecked = (row: any) => {
|
|
|
389
389
|
return indexOf(newCheckedRows.value, row, customIsChecked.value) >= 0;
|
|
390
390
|
};
|
|
391
391
|
|
|
392
|
-
const checkRow = (row: any,
|
|
392
|
+
const checkRow = (row: any, _rowIndex: number, _event:boolean) => {
|
|
393
393
|
if (!isRowCheckable.value(row)) return;
|
|
394
|
-
console.log('@event',row,
|
|
394
|
+
// console.log('@event',row, _rowIndex, _event)
|
|
395
395
|
};
|
|
396
396
|
|
|
397
397
|
// watch
|
|
@@ -287,8 +287,8 @@ const computedItems = computed(() => {
|
|
|
287
287
|
});
|
|
288
288
|
|
|
289
289
|
|
|
290
|
-
const searchData = (
|
|
291
|
-
console.log(
|
|
290
|
+
const searchData = (_data:any) => {
|
|
291
|
+
// console.log(_data);
|
|
292
292
|
};
|
|
293
293
|
|
|
294
294
|
const isIndeterminate = computed(() => {
|
|
@@ -396,9 +396,9 @@ const isRowChecked = (row:any) => {
|
|
|
396
396
|
return indexOf(newCheckedRows.value, row, customIsChecked.value) >= 0;
|
|
397
397
|
};
|
|
398
398
|
|
|
399
|
-
const checkRow = (row: any,
|
|
399
|
+
const checkRow = (row: any, _rowIndex: number, _event:boolean) => {
|
|
400
400
|
if (!isRowCheckable.value(row)) return;
|
|
401
|
-
console.log(
|
|
401
|
+
// console.log(row, _rowIndex, _event)
|
|
402
402
|
};
|
|
403
403
|
|
|
404
404
|
// watch
|
|
@@ -209,7 +209,6 @@ const bindProps = {
|
|
|
209
209
|
};
|
|
210
210
|
|
|
211
211
|
const onInputChanged = (_formattedNumber: string, phoneObject: any) => {
|
|
212
|
-
console.log(phoneObject.number); // Debugging
|
|
213
212
|
hasError.value = phoneObject.valid ? true : false;
|
|
214
213
|
emit("update:modelValue", phoneObject.number);
|
|
215
214
|
};
|