zhytech-ui 1.0.29 → 1.0.30
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/src/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/src/index.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { MessageType, filterConditionTypes, componentType } from './types/enum';
|
|
2
2
|
import { conditionType, dynamicFilter as zhyDynamicFilter } from './components/dynamicFilter/index';
|
|
3
|
-
import { documentView, dynamicFormData, formAttribute, uploadOption, batchAddComponentParam, getFormTemplateMethod, formListView, searchParam, formDesigner as zhyFormDesigner, formRenderer as zhyFormRenderer } from './components/dynamicForm/index';
|
|
3
|
+
import { documentView, dynamicFormData, formAttribute, dictionaryData, dictionaryItem, uploadOption, batchAddComponentParam, getFormTemplateMethod, formListView, searchParam, formDesigner as zhyFormDesigner, formRenderer as zhyFormRenderer } from './components/dynamicForm/index';
|
|
4
4
|
import { icon as zhyIcon } from './components/icon/index';
|
|
5
5
|
type optionView = OptionView;
|
|
6
6
|
type selectOptionsView = SelectOptionsView;
|
|
7
|
-
export type { optionView, selectOptionsView, conditionType, dynamicFormData, formAttribute, uploadOption, documentView, batchAddComponentParam, getFormTemplateMethod, formListView, searchParam };
|
|
7
|
+
export type { optionView, selectOptionsView, conditionType, dynamicFormData, formAttribute, dictionaryData, dictionaryItem, uploadOption, documentView, batchAddComponentParam, getFormTemplateMethod, formListView, searchParam };
|
|
8
8
|
export { MessageType, filterConditionTypes, componentType };
|
|
9
9
|
export { zhyIcon, zhyFormDesigner, zhyFormRenderer, zhyDynamicFilter };
|
|
10
10
|
declare const _default: {
|