rtcpts 0.0.13 → 0.0.15
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/components/j-c-tree/index.d.ts +39 -7
- package/dist/components/j-c-tree-select/index.d.ts +0 -58
- package/dist/components/j-q-dialog/index.d.ts +7 -5
- package/dist/components/j-q-table/pagination.d.ts +19 -20
- package/dist/index.d.ts +2 -0
- package/dist/rtcpt.cjs.js +1 -1
- package/dist/rtcpt.es.js +1161 -1082
- package/dist/types.d.ts +3 -2
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { val2Str, valSplit, dataCvSize, obj2Arr } from './components/j-q-dialog/form';
|
|
2
|
-
import { transformTreeUseLabelAndValue } from './components/j-c-tree/index';
|
|
3
2
|
import { generateDownloadFileName, JQDownloadFile } from './components/j-q-file/download';
|
|
4
3
|
import { formRules } from './components/j-q-dialog/index';
|
|
5
4
|
import type * as toolUtils from './utils/tool';
|
|
5
|
+
import type * as treeUtils from './components/j-c-tree/index';
|
|
6
6
|
export interface JQToolType extends Record<string, any> {
|
|
7
|
-
transformTreeUseLabelAndValue: typeof transformTreeUseLabelAndValue;
|
|
7
|
+
transformTreeUseLabelAndValue: typeof treeUtils.transformTreeUseLabelAndValue;
|
|
8
8
|
JQDownloadFile: typeof JQDownloadFile;
|
|
9
9
|
generateDownloadFileName: typeof generateDownloadFileName;
|
|
10
10
|
formRules: typeof formRules;
|
|
@@ -14,6 +14,7 @@ export interface JQToolType extends Record<string, any> {
|
|
|
14
14
|
dataCvSize: typeof dataCvSize;
|
|
15
15
|
obj2Arr: typeof obj2Arr;
|
|
16
16
|
};
|
|
17
|
+
treeUtils: typeof treeUtils;
|
|
17
18
|
defaultFill: typeof toolUtils.defaultFill;
|
|
18
19
|
formatSize: typeof toolUtils.formatSize;
|
|
19
20
|
getUpperSize: typeof toolUtils.getUpperSize;
|
package/package.json
CHANGED