@airpower/web 0.2.18 → 0.2.20

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 (140) hide show
  1. package/dist/components/button/Button.vue.d.ts +2 -2
  2. package/dist/components/dialog/Dialog.vue.d.ts +2 -2
  3. package/dist/components/dialog/index.d.ts +0 -2
  4. package/dist/components/form/FormField.vue.d.ts +9 -9
  5. package/dist/components/frame/Frame.vue.d.ts +2 -2
  6. package/dist/components/image/Image.vue.d.ts +18 -18
  7. package/dist/components/input/Input.vue.d.ts +9 -9
  8. package/dist/components/menu/ChildMenu.vue.d.ts +1 -1
  9. package/dist/components/menu/index.d.ts +0 -1
  10. package/dist/components/money/Money.vue.d.ts +2 -2
  11. package/dist/components/page/Page.vue.d.ts +3 -2
  12. package/dist/components/panel/Panel.vue.d.ts +1 -1
  13. package/dist/components/payload/Payload.vue.d.ts +2 -2
  14. package/dist/components/payload/index.d.ts +1 -1
  15. package/dist/components/select/Select.vue.d.ts +3 -3
  16. package/dist/components/select/Selector.vue.d.ts +6 -2
  17. package/dist/components/table/Table.vue.d.ts +16 -10
  18. package/dist/components/table/component/ColumnSelector.vue.d.ts +2 -2
  19. package/dist/components/table/component/CopyColumn.vue.d.ts +2 -2
  20. package/dist/components/table/component/EnumColumn.vue.d.ts +3 -3
  21. package/dist/components/table/component/Export.vue.d.ts +6 -6
  22. package/dist/components/table/useTableButton.d.ts +1 -1
  23. package/dist/components/table/useTableColumn.d.ts +3 -2
  24. package/dist/components/table/useTableSelect.d.ts +1 -1
  25. package/dist/components/tree/TreeBox.vue.d.ts +5 -5
  26. package/dist/components/upload/IUploadProps.d.ts +2 -2
  27. package/dist/components/upload/Upload.vue.d.ts +8 -8
  28. package/dist/config/WebConfig.d.ts +4 -0
  29. package/dist/config/WebConstant.d.ts +15 -0
  30. package/dist/{curd/decorator → decorator}/@Field/Field.d.ts +5 -5
  31. package/dist/{curd/decorator → decorator}/@Field/IFieldConfig.d.ts +2 -2
  32. package/dist/{curd/decorator → decorator}/@Form/Form.d.ts +5 -5
  33. package/dist/{curd/decorator → decorator}/@Form/IFormField.d.ts +2 -2
  34. package/dist/{curd/decorator → decorator}/@Search/ISearchField.d.ts +1 -1
  35. package/dist/{curd/decorator → decorator}/@Search/Search.d.ts +5 -5
  36. package/dist/{curd/decorator → decorator}/@Table/ITableColumn.d.ts +1 -1
  37. package/dist/{curd/decorator → decorator}/@Table/Table.d.ts +5 -5
  38. package/dist/{components/dialog → dialog}/DialogProps.d.ts +1 -1
  39. package/dist/{components/dialog → dialog}/DialogUtil.d.ts +4 -4
  40. package/dist/{curd/hooks → hooks}/detail/IDetailOption.d.ts +1 -1
  41. package/dist/{curd/hooks → hooks}/detail/IDetailResult.d.ts +2 -2
  42. package/dist/{curd/hooks → hooks}/detail/useDetail.d.ts +3 -2
  43. package/dist/{curd/hooks → hooks}/editor/IEditorOption.d.ts +3 -3
  44. package/dist/{curd/hooks → hooks}/editor/IEditorResult.d.ts +4 -4
  45. package/dist/{curd/hooks → hooks}/editor/useEditor.d.ts +3 -2
  46. package/dist/{curd/hooks → hooks}/table/base/IBaseTableOption.d.ts +2 -2
  47. package/dist/{curd/hooks → hooks}/table/base/IBaseTableResult.d.ts +6 -3
  48. package/dist/{curd/hooks → hooks}/table/base/useBaseTable.d.ts +3 -2
  49. package/dist/{curd/hooks → hooks}/table/list/ITableOption.d.ts +2 -2
  50. package/dist/{curd/hooks → hooks}/table/list/ITableResult.d.ts +3 -3
  51. package/dist/{curd/hooks → hooks}/table/list/useTable.d.ts +3 -2
  52. package/dist/{curd/hooks → hooks}/table/selector/ISelectorOption.d.ts +2 -2
  53. package/dist/{curd/hooks → hooks}/table/selector/ISelectorResult.d.ts +3 -3
  54. package/dist/{curd/hooks → hooks}/table/selector/useSelector.d.ts +3 -2
  55. package/dist/{curd/hooks → hooks}/table/tree/ITableTreeOption.d.ts +3 -3
  56. package/dist/{curd/hooks → hooks}/table/tree/ITableTreeResult.d.ts +3 -3
  57. package/dist/{curd/hooks → hooks}/table/tree/useTableTree.d.ts +4 -3
  58. package/dist/{util/http → http}/Http.d.ts +3 -9
  59. package/dist/{util/http → http}/type.d.ts +2 -1
  60. package/dist/index.d.ts +0 -6
  61. package/dist/{components/menu → interface}/IMenu.d.ts +1 -1
  62. package/dist/{curd/model/tree → interface}/ITree.d.ts +1 -1
  63. package/dist/main.js +0 -12069
  64. package/dist/{base → model}/RootEntity.d.ts +1 -1
  65. package/dist/{curd/model → model}/export/ExportModel.d.ts +1 -1
  66. package/dist/{curd/model → model}/query/QueryRequest.d.ts +1 -1
  67. package/dist/{curd/model → model}/query/QueryRequestPage.d.ts +1 -1
  68. package/dist/{curd/model → model}/query/QueryResponsePage.d.ts +1 -1
  69. package/dist/{util/permission → permission}/PermissionUtil.d.ts +1 -5
  70. package/dist/{util/router → router}/RouterUtil.d.ts +1 -1
  71. package/dist/{curd → service}/AbstractCurdService.d.ts +5 -3
  72. package/dist/{base → service}/AbstractService.d.ts +1 -1
  73. package/dist/{curd → service}/type.d.ts +1 -1
  74. package/dist/tests/App.vue.d.ts +2 -0
  75. package/dist/tests/main.d.ts +1 -0
  76. package/dist/{util/validator → validator}/WebValidator.d.ts +2 -2
  77. package/dist/{util/validator → validator}/type.d.ts +1 -1
  78. package/dist/web.css +1 -1091
  79. package/package.json +1 -1
  80. package/dist/base/index.d.ts +0 -4
  81. package/dist/config/index.d.ts +0 -1
  82. package/dist/curd/decorator/@Field/index.d.ts +0 -3
  83. package/dist/curd/decorator/@Form/index.d.ts +0 -3
  84. package/dist/curd/decorator/@Model/index.d.ts +0 -2
  85. package/dist/curd/decorator/@Search/index.d.ts +0 -2
  86. package/dist/curd/decorator/@Table/index.d.ts +0 -4
  87. package/dist/curd/decorator/common/index.d.ts +0 -1
  88. package/dist/curd/decorator/index.d.ts +0 -6
  89. package/dist/curd/hooks/detail/index.d.ts +0 -3
  90. package/dist/curd/hooks/editor/index.d.ts +0 -3
  91. package/dist/curd/hooks/index.d.ts +0 -3
  92. package/dist/curd/hooks/table/base/index.d.ts +0 -3
  93. package/dist/curd/hooks/table/index.d.ts +0 -4
  94. package/dist/curd/hooks/table/list/index.d.ts +0 -3
  95. package/dist/curd/hooks/table/selector/index.d.ts +0 -3
  96. package/dist/curd/hooks/table/tree/index.d.ts +0 -3
  97. package/dist/curd/index.d.ts +0 -5
  98. package/dist/curd/model/export/index.d.ts +0 -1
  99. package/dist/curd/model/index.d.ts +0 -3
  100. package/dist/curd/model/query/index.d.ts +0 -6
  101. package/dist/curd/model/tree/index.d.ts +0 -1
  102. package/dist/util/enum/index.d.ts +0 -5
  103. package/dist/util/feedback/index.d.ts +0 -2
  104. package/dist/util/file/index.d.ts +0 -2
  105. package/dist/util/http/enum/index.d.ts +0 -4
  106. package/dist/util/http/index.d.ts +0 -4
  107. package/dist/util/i18n/index.d.ts +0 -1
  108. package/dist/util/index.d.ts +0 -8
  109. package/dist/util/permission/index.d.ts +0 -2
  110. package/dist/util/router/index.d.ts +0 -1
  111. package/dist/util/validator/index.d.ts +0 -2
  112. /package/dist/{curd/decorator → decorator}/@Field/type.d.ts +0 -0
  113. /package/dist/{curd/decorator → decorator}/@Form/FormTrim.d.ts +0 -0
  114. /package/dist/{curd/decorator → decorator}/@Model/IModelConfig.d.ts +0 -0
  115. /package/dist/{curd/decorator → decorator}/@Model/Model.d.ts +0 -0
  116. /package/dist/{curd/decorator → decorator}/@Table/IElementTableColumn.d.ts +0 -0
  117. /package/dist/{curd/decorator → decorator}/@Table/TableType.d.ts +0 -0
  118. /package/dist/{curd/decorator → decorator}/common/IBaseField.d.ts +0 -0
  119. /package/dist/{util/enum → enum}/DisableEnum.d.ts +0 -0
  120. /package/dist/{util/enum → enum}/IWebEnum.d.ts +0 -0
  121. /package/dist/{util/enum → enum}/WebColor.d.ts +0 -0
  122. /package/dist/{util/enum → enum}/WebEnum.d.ts +0 -0
  123. /package/dist/{util/enum → enum}/type.d.ts +0 -0
  124. /package/dist/{util/feedback → feedback}/FeedbackUtil.d.ts +0 -0
  125. /package/dist/{util/feedback → feedback}/type.d.ts +0 -0
  126. /package/dist/{util/file → file}/WebFileUtil.d.ts +0 -0
  127. /package/dist/{util/http → http}/HttpResponse.d.ts +0 -0
  128. /package/dist/{util/http → http}/enum/HttpContentType.d.ts +0 -0
  129. /package/dist/{util/http → http}/enum/HttpHeader.d.ts +0 -0
  130. /package/dist/{util/http → http}/enum/HttpMethod.d.ts +0 -0
  131. /package/dist/{util/http → http}/enum/HttpStatus.d.ts +0 -0
  132. /package/dist/{util/i18n → i18n}/WebI18n.d.ts +0 -0
  133. /package/dist/{base → interface}/IEntity.d.ts +0 -0
  134. /package/dist/{util/file → interface}/IFile.d.ts +0 -0
  135. /package/dist/{components/payload → interface}/IPayload.d.ts +0 -0
  136. /package/dist/{base → model}/RootModel.d.ts +0 -0
  137. /package/dist/{curd/model → model}/query/QueryPage.d.ts +0 -0
  138. /package/dist/{curd/model → model}/query/QuerySort.d.ts +0 -0
  139. /package/dist/{curd/model → model}/query/type.d.ts +0 -0
  140. /package/dist/{util/permission → permission}/PermissionAction.d.ts +0 -0
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@airpower/web",
3
3
  "type": "module",
4
- "version": "0.2.18",
4
+ "version": "0.2.20",
5
5
  "description": "AirPower-Web",
6
6
  "author": {
7
7
  "name": "Hamm",
@@ -1,4 +0,0 @@
1
- export * from './AbstractService';
2
- export * from './IEntity';
3
- export * from './RootEntity';
4
- export * from './RootModel';
@@ -1 +0,0 @@
1
- export * from './WebConfig';
@@ -1,3 +0,0 @@
1
- export * from './Field';
2
- export * from './IFieldConfig';
3
- export * from './type';
@@ -1,3 +0,0 @@
1
- export * from './Form';
2
- export * from './FormTrim';
3
- export * from './IFormField';
@@ -1,2 +0,0 @@
1
- export * from './IModelConfig';
2
- export * from './Model';
@@ -1,2 +0,0 @@
1
- export * from './ISearchField';
2
- export * from './Search';
@@ -1,4 +0,0 @@
1
- export * from './IElementTableColumn';
2
- export * from './ITableColumn';
3
- export * from './Table';
4
- export * from './TableType';
@@ -1 +0,0 @@
1
- export * from './IBaseField';
@@ -1,6 +0,0 @@
1
- export * from './@Field';
2
- export * from './@Form';
3
- export * from './@Model';
4
- export * from './@Search';
5
- export * from './@Table';
6
- export * from './common';
@@ -1,3 +0,0 @@
1
- export * from './IDetailOption';
2
- export * from './IDetailResult';
3
- export * from './useDetail';
@@ -1,3 +0,0 @@
1
- export * from './IEditorOption';
2
- export * from './IEditorResult';
3
- export * from './useEditor';
@@ -1,3 +0,0 @@
1
- export * from './detail';
2
- export * from './editor';
3
- export * from './table';
@@ -1,3 +0,0 @@
1
- export * from './IBaseTableOption';
2
- export * from './IBaseTableResult';
3
- export * from './useBaseTable';
@@ -1,4 +0,0 @@
1
- export * from './base';
2
- export * from './list';
3
- export * from './selector';
4
- export * from './tree';
@@ -1,3 +0,0 @@
1
- export * from './ITableOption';
2
- export * from './ITableResult';
3
- export * from './useTable';
@@ -1,3 +0,0 @@
1
- export * from './ISelectorOption';
2
- export * from './ISelectorResult';
3
- export * from './useSelector';
@@ -1,3 +0,0 @@
1
- export * from './ITableTreeOption';
2
- export * from './ITableTreeResult';
3
- export * from './useTableTree';
@@ -1,5 +0,0 @@
1
- export * from './AbstractCurdService';
2
- export * from './decorator';
3
- export * from './hooks';
4
- export * from './model';
5
- export * from './type';
@@ -1 +0,0 @@
1
- export * from './ExportModel';
@@ -1,3 +0,0 @@
1
- export * from './export';
2
- export * from './query';
3
- export * from './tree';
@@ -1,6 +0,0 @@
1
- export * from './QueryPage';
2
- export * from './QueryRequest';
3
- export * from './QueryRequestPage';
4
- export * from './QueryResponsePage';
5
- export * from './QuerySort';
6
- export * from './type';
@@ -1 +0,0 @@
1
- export * from './ITree';
@@ -1,5 +0,0 @@
1
- export * from './DisableEnum';
2
- export * from './IWebEnum';
3
- export * from './type';
4
- export * from './WebColor';
5
- export * from './WebEnum';
@@ -1,2 +0,0 @@
1
- export * from './FeedbackUtil';
2
- export * from './type';
@@ -1,2 +0,0 @@
1
- export * from './IFile';
2
- export * from './WebFileUtil';
@@ -1,4 +0,0 @@
1
- export * from './HttpContentType';
2
- export * from './HttpHeader';
3
- export * from './HttpMethod';
4
- export * from './HttpStatus';
@@ -1,4 +0,0 @@
1
- export * from './enum';
2
- export * from './Http';
3
- export * from './HttpResponse';
4
- export * from './type';
@@ -1 +0,0 @@
1
- export * from './WebI18n';
@@ -1,8 +0,0 @@
1
- export * from './enum';
2
- export * from './feedback';
3
- export * from './file';
4
- export * from './http';
5
- export * from './i18n';
6
- export * from './permission';
7
- export * from './router';
8
- export * from './validator';
@@ -1,2 +0,0 @@
1
- export * from './PermissionAction';
2
- export * from './PermissionUtil';
@@ -1 +0,0 @@
1
- export * from './RouterUtil';
@@ -1,2 +0,0 @@
1
- export * from './type';
2
- export * from './WebValidator';
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes