tsv2-library 1.0.64 → 1.0.66

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.
Files changed (79) hide show
  1. package/dist/loading-table-fa-8b779ca8.js +4 -0
  2. package/dist/src/build-entry.d.ts +5 -3
  3. package/dist/src/components/v2/Animation/Animation.vue.d.ts +40 -0
  4. package/dist/src/components/v2/AssetAttribute/UrlFormat.vue.d.ts +22 -0
  5. package/dist/src/components/v2/CustomColumn/ColumnList.vue.d.ts +4 -0
  6. package/dist/src/components/v2/CustomColumn/CustomColumn.vue.d.ts +23 -1
  7. package/dist/src/components/v2/CustomColumn/DialogColumnSetup.vue.d.ts +4 -0
  8. package/dist/src/components/v2/DataTable/DataTable.vue.d.ts +16 -6
  9. package/dist/src/components/v2/Dialog/Dialog.vue.d.ts +1 -0
  10. package/dist/src/components/v2/DialogConfirm/DialogConfirm.vue.d.ts +5 -0
  11. package/dist/src/components/v2/DialogCoordinate/AssetList.vue.d.ts +4 -0
  12. package/dist/src/components/v2/DialogCoordinate/AssetListFilter.vue.d.ts +4 -0
  13. package/dist/src/components/v2/DialogCoordinate/CoordinateHeader.vue.d.ts +4 -0
  14. package/dist/src/components/v2/DialogCoordinate/DialogCoordinate.vue.d.ts +24 -0
  15. package/dist/src/components/v2/DialogCoordinate/MapSearch.vue.d.ts +4 -2
  16. package/dist/src/components/v2/DialogCoordinate/Marker.vue.d.ts +13 -0
  17. package/dist/src/components/v2/DialogCoordinate/PopupDetail.vue.d.ts +13 -0
  18. package/dist/src/components/v2/DialogForm/DialogForm.vue.d.ts +11 -0
  19. package/dist/src/components/v2/FailedLoad/FailedLoad.vue.d.ts +26 -0
  20. package/dist/src/components/v2/FilterAssetValue/FilterAssetValue.vue.d.ts +20 -0
  21. package/dist/src/components/v2/FilterCustomField/FilterCustomField.vue.d.ts +17 -0
  22. package/dist/src/components/v2/Icon/Icon.vue.d.ts +10 -0
  23. package/dist/src/components/v2/ImageCompressor/ImageCompressor.vue.d.ts +1 -1
  24. package/dist/src/components/v2/InputCoordinate/InputCoordinate.vue.d.ts +9 -3
  25. package/dist/src/components/v2/InputPhoneNumber/InputPhoneNumber.vue.d.ts +1 -0
  26. package/dist/src/components/v2/InputText/InputText.vue.d.ts +1 -1
  27. package/dist/src/components/v2/InputURL/InputURL.vue.d.ts +1 -0
  28. package/dist/src/components/v2/LazyLoadTrigger/LazyLoadTrigger.vue.d.ts +4 -0
  29. package/dist/src/components/v2/Textarea/Textarea.vue.d.ts +1 -0
  30. package/dist/src/components/v2/TransactionRoles/TransactionRoles.vue.d.ts +2 -0
  31. package/dist/src/components/v2/index.d.ts +6 -1
  32. package/dist/src/dto/assets.dto.d.ts +15 -0
  33. package/dist/src/event-bus/index.d.ts +8 -0
  34. package/dist/src/event-bus/mitt.d.ts +26 -0
  35. package/dist/src/presets/datatable/index.js +1 -1
  36. package/dist/src/services/assetName.service.d.ts +1 -2
  37. package/dist/src/services/assets.service.d.ts +6 -2
  38. package/dist/src/services/column.service.d.ts +13 -0
  39. package/dist/src/services/settingsAttribute.service.d.ts +8 -0
  40. package/dist/src/store/assetAttribute.store.d.ts +12 -0
  41. package/dist/src/store/index.d.ts +1 -0
  42. package/dist/src/types/assets.type.d.ts +24 -6
  43. package/dist/src/types/filterField.type.d.ts +35 -0
  44. package/dist/src/types/settingsAttribute.type.d.ts +28 -0
  45. package/dist/src/utils/customMarker.util.d.ts +64 -0
  46. package/dist/src/utils/debounce.util.d.ts +1 -0
  47. package/dist/src/utils/googleMapLoader.util.d.ts +1 -0
  48. package/dist/src/utils/index.d.ts +3 -2
  49. package/dist/src/utils/role.util.d.ts +1 -1
  50. package/dist/src/utils/textFormater.util.d.ts +5 -0
  51. package/dist/src/utils/toast.util.d.ts +1 -1
  52. package/dist/style.css +1 -1
  53. package/dist/tsv2-library.es.js +14206 -9773
  54. package/dist/tsv2-library.umd.js +7 -7
  55. package/package.json +3 -1
  56. package/src/components/v2/Animation/Animation.vue.d.ts +40 -0
  57. package/src/components/v2/CustomColumn/CustomColumn.vue.d.ts +23 -1
  58. package/src/components/v2/DataTable/DataTable.vue.d.ts +16 -6
  59. package/src/components/v2/Dialog/Dialog.vue.d.ts +1 -0
  60. package/src/components/v2/DialogConfirm/DialogConfirm.vue.d.ts +5 -0
  61. package/src/components/v2/DialogCoordinate/DialogCoordinate.vue.d.ts +24 -0
  62. package/src/components/v2/DialogForm/DialogForm.vue.d.ts +11 -0
  63. package/src/components/v2/FailedLoad/FailedLoad.vue.d.ts +26 -0
  64. package/src/components/v2/FilterAssetValue/FilterAssetValue.vue.d.ts +20 -0
  65. package/src/components/v2/FilterCustomField/FilterCustomField.vue.d.ts +17 -0
  66. package/src/components/v2/Icon/Icon.vue.d.ts +10 -0
  67. package/src/components/v2/ImageCompressor/ImageCompressor.vue.d.ts +1 -1
  68. package/src/components/v2/InputCoordinate/InputCoordinate.vue.d.ts +9 -3
  69. package/src/components/v2/InputPhoneNumber/InputPhoneNumber.vue.d.ts +1 -0
  70. package/src/components/v2/InputText/InputText.vue.d.ts +1 -1
  71. package/src/components/v2/InputURL/InputURL.vue.d.ts +1 -0
  72. package/src/components/v2/Textarea/Textarea.vue.d.ts +1 -0
  73. package/src/components/v2/TransactionRoles/TransactionRoles.vue.d.ts +2 -0
  74. package/src/module.d.ts +3 -0
  75. package/src/presets/datatable/index.js +1 -1
  76. package/src/services/assets.service.ts +40 -1
  77. package/src/services/column.service.ts +42 -0
  78. package/src/services/settingsAttribute.service.ts +41 -0
  79. package/dist/src/components/v2/DataTable/store/dataTable.store.d.ts +0 -22

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.