@aplus-frontend/ui 7.19.7 → 7.20.0

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 (53) hide show
  1. package/es/src/ag-grid/editable/form-item.vue.mjs +113 -93
  2. package/es/src/ag-grid/editable/index.vue.mjs +91 -79
  3. package/es/src/ag-grid/editable/interface.d.ts +7 -0
  4. package/es/src/ag-grid/hooks/use-editable-api.mjs +106 -132
  5. package/es/src/ag-grid/hooks/use-editable-form-item-api.d.ts +0 -1
  6. package/es/src/ag-grid/hooks/use-editable-form-item-api.mjs +100 -165
  7. package/es/src/ag-grid/index.vue.mjs +124 -120
  8. package/es/src/ag-grid/interface.d.ts +6 -0
  9. package/es/src/ap-button/ap-button.vue.mjs +23 -23
  10. package/es/src/ap-button/interface.d.ts +1 -1
  11. package/es/src/ap-button/utils/index.d.ts +1 -1
  12. package/es/src/ap-button/utils/index.mjs +7 -7
  13. package/es/src/business/ag-grid-modal/constants.d.ts +1 -1
  14. package/es/src/business/ag-grid-modal/constants.mjs +1 -1
  15. package/es/src/business/ag-grid-modal/hooks/use-ag-grid-instance.d.ts +6 -2
  16. package/es/src/business/ag-grid-modal/hooks/use-ag-grid-instance.mjs +51 -41
  17. package/es/src/business/ag-grid-modal/hooks/use-ag-grid-modal.mjs +33 -30
  18. package/es/src/business/ag-grid-modal/hooks/use-ag-grid-select-modal.mjs +71 -68
  19. package/es/src/business/ag-grid-modal/interface.d.ts +4 -2
  20. package/es/src/business/ag-grid-modal/utils.d.ts +2 -0
  21. package/es/src/business/ag-grid-modal/utils.mjs +34 -30
  22. package/es/src/business/ag-grid-modal/wrapper/index.vue.d.ts +7 -3
  23. package/es/src/business/ag-grid-modal/wrapper/index.vue2.mjs +25 -23
  24. package/es/src/business/ap-batch-action-group/index.d.ts +3 -3
  25. package/es/src/version.d.ts +1 -1
  26. package/es/src/version.mjs +1 -1
  27. package/lib/src/ag-grid/editable/form-item.vue.js +1 -1
  28. package/lib/src/ag-grid/editable/index.vue.js +1 -1
  29. package/lib/src/ag-grid/editable/interface.d.ts +7 -0
  30. package/lib/src/ag-grid/hooks/use-editable-api.js +1 -1
  31. package/lib/src/ag-grid/hooks/use-editable-form-item-api.d.ts +0 -1
  32. package/lib/src/ag-grid/hooks/use-editable-form-item-api.js +1 -1
  33. package/lib/src/ag-grid/index.vue.js +1 -1
  34. package/lib/src/ag-grid/interface.d.ts +6 -0
  35. package/lib/src/ap-button/ap-button.vue.js +1 -1
  36. package/lib/src/ap-button/interface.d.ts +1 -1
  37. package/lib/src/ap-button/utils/index.d.ts +1 -1
  38. package/lib/src/ap-button/utils/index.js +1 -1
  39. package/lib/src/business/ag-grid-modal/constants.d.ts +1 -1
  40. package/lib/src/business/ag-grid-modal/constants.js +1 -1
  41. package/lib/src/business/ag-grid-modal/hooks/use-ag-grid-instance.d.ts +6 -2
  42. package/lib/src/business/ag-grid-modal/hooks/use-ag-grid-instance.js +1 -1
  43. package/lib/src/business/ag-grid-modal/hooks/use-ag-grid-modal.js +1 -1
  44. package/lib/src/business/ag-grid-modal/hooks/use-ag-grid-select-modal.js +1 -1
  45. package/lib/src/business/ag-grid-modal/interface.d.ts +4 -2
  46. package/lib/src/business/ag-grid-modal/utils.d.ts +2 -0
  47. package/lib/src/business/ag-grid-modal/utils.js +1 -1
  48. package/lib/src/business/ag-grid-modal/wrapper/index.vue.d.ts +7 -3
  49. package/lib/src/business/ag-grid-modal/wrapper/index.vue2.js +1 -1
  50. package/lib/src/business/ap-batch-action-group/index.d.ts +3 -3
  51. package/lib/src/version.d.ts +1 -1
  52. package/lib/src/version.js +1 -1
  53. package/package.json +1 -1
@@ -76,7 +76,7 @@ declare const ApBatchActionGroup: {
76
76
  borderLinkColor?: string;
77
77
  minWidth?: boolean | number | string;
78
78
  lazy?: boolean | number;
79
- onClick?: () => any | Promise<any>;
79
+ onClick?: (e: MouseEvent) => any | Promise<any>;
80
80
  } & {
81
81
  content?: VNodeChild;
82
82
  }) | ({
@@ -398,7 +398,7 @@ declare const ApBatchActionGroup: {
398
398
  borderLinkColor?: string;
399
399
  minWidth?: boolean | number | string;
400
400
  lazy?: boolean | number;
401
- onClick?: () => any | Promise<any>;
401
+ onClick?: (e: MouseEvent) => any | Promise<any>;
402
402
  } & {
403
403
  content?: VNodeChild;
404
404
  }) | ({
@@ -717,7 +717,7 @@ declare const ApBatchActionGroup: {
717
717
  borderLinkColor?: string;
718
718
  minWidth?: boolean | number | string;
719
719
  lazy?: boolean | number;
720
- onClick?: () => any | Promise<any>;
720
+ onClick?: (e: MouseEvent) => any | Promise<any>;
721
721
  } & {
722
722
  content?: VNodeChild;
723
723
  }) | ({
@@ -1,2 +1,2 @@
1
- declare const _default: "7.19.7";
1
+ declare const _default: "7.20.0";
2
2
  export default _default;
@@ -1 +1 @@
1
- "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e="7.19.7";exports.default=e;
1
+ "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e="7.20.0";exports.default=e;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aplus-frontend/ui",
3
- "version": "7.19.7",
3
+ "version": "7.20.0",
4
4
  "main": "./lib/index.js",
5
5
  "type": "module",
6
6
  "typings": "./lib/index.d.ts",