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.
@@ -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=0768fd93&lang.scss";
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=fd223767&lang.scss";
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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "edvoyui-component-library-test-flight",
3
3
  "private": false,
4
- "version": "0.0.39",
4
+ "version": "0.0.40",
5
5
  "type": "module",
6
6
  "files": [
7
7
  "dist/",
@@ -50,12 +50,12 @@ const Template: StoryFn = (args) =>
50
50
  defineComponent({
51
51
  components: { EUIMultiDropdown, ChevronDownStroke },
52
52
  setup() {
53
- const handleMenuItem = (item: any) => {
54
- console.log("Menu clicked:", item);
53
+ const handleMenuItem = (_item: any) => {
54
+ // console.log("Menu clicked:", _item);
55
55
  };
56
56
 
57
- const handleSubMenuItem = (subItem: any) => {
58
- console.log("Submenu item clicked:", subItem);
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 = (data: number) => {
276
- console.log(data);
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, rowIndex: number, event:boolean) => {
392
+ const checkRow = (row: any, _rowIndex: number, _event:boolean) => {
393
393
  if (!isRowCheckable.value(row)) return;
394
- console.log('@event',row, rowIndex, event)
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 = (data: number) => {
291
- console.log(data);
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, rowIndex: number, event:boolean) => {
399
+ const checkRow = (row: any, _rowIndex: number, _event:boolean) => {
400
400
  if (!isRowCheckable.value(row)) return;
401
- console.log('@event',row, rowIndex, event)
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
  };