tutor-pro-ui-vue 1.2.74-beta → 1.2.78-beta
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/index.css +1 -1
- package/dist/index.css.gz +0 -0
- package/dist/index.js +6998 -6947
- package/dist/index.js.gz +0 -0
- package/dist/index.umd.cjs +24 -24
- package/dist/src/components/CommonForm/fields/ColorPicker.vue.d.ts +9 -0
- package/dist/src/components/CommonForm/index.d.ts +2 -0
- package/dist/src/components/CommonForm/types.d.ts +2 -1
- package/dist/src/components/CommonIcon/index.d.ts +4 -0
- package/dist/src/components/CommonIcon/src/index.vue.d.ts +15 -0
- package/dist/src/components/index.d.ts +2 -1
- package/dist/src/index.d.ts +2 -2
- package/package.json +1 -1
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
type __VLS_PublicProps = {
|
|
2
|
+
modelValue?: any;
|
|
3
|
+
};
|
|
4
|
+
declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
5
|
+
"update:modelValue": (modelValue: any) => any;
|
|
6
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
7
|
+
"onUpdate:modelValue"?: ((modelValue: any) => any) | undefined;
|
|
8
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
9
|
+
export default _default;
|
|
@@ -2,9 +2,11 @@ import { SFCWithInstall } from '../typescript';
|
|
|
2
2
|
import { default as Form } from './src/index.vue';
|
|
3
3
|
import { default as Select } from './fields/Select.vue';
|
|
4
4
|
import { default as Input } from './fields/Input.vue';
|
|
5
|
+
import { default as Upload } from './fields/upload/Upload.vue';
|
|
5
6
|
declare const CommonForm: SFCWithInstall<typeof Form & {
|
|
6
7
|
Select?: typeof Select;
|
|
7
8
|
Input?: typeof Input;
|
|
9
|
+
Upload?: typeof Upload;
|
|
8
10
|
}>;
|
|
9
11
|
export default CommonForm;
|
|
10
12
|
export * from './types';
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { Component, PropType } from 'vue';
|
|
2
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
3
|
+
icon: {
|
|
4
|
+
type: PropType<string | Component>;
|
|
5
|
+
default: string;
|
|
6
|
+
};
|
|
7
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
8
|
+
icon: {
|
|
9
|
+
type: PropType<string | Component>;
|
|
10
|
+
default: string;
|
|
11
|
+
};
|
|
12
|
+
}>> & Readonly<{}>, {
|
|
13
|
+
icon: string | Component;
|
|
14
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
15
|
+
export default _default;
|
|
@@ -11,4 +11,5 @@ import { default as CommonForm } from './CommonForm';
|
|
|
11
11
|
import { default as CommonDescriptions } from './CommonDescriptions';
|
|
12
12
|
import { default as CommonTable } from './CommonTable';
|
|
13
13
|
import { default as CommonPagination } from './CommonPagination';
|
|
14
|
-
|
|
14
|
+
import { default as CommonIcon } from './CommonIcon';
|
|
15
|
+
export { CommonButton, CommonButtonGroup, CommonTabs, InfiniteScroll, InfiniteVirtualScroll, CommonForm, CommonDescriptions, CommonTable, CommonPagination, CommonRadio, CommonRadioGroup, CommonCheckbox, CommonCheckboxGroup, CommonDatePicker, CommonIcon, };
|
package/dist/src/index.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { CommonButton, CommonButtonGroup, CommonRadio, CommonRadioGroup, CommonTabs, CommonDatePicker, CommonCheckbox, CommonCheckboxGroup, CommonDescriptions, CommonTable, CommonForm, CommonPagination } from './components';
|
|
1
|
+
import { CommonButton, CommonButtonGroup, CommonRadio, CommonRadioGroup, CommonTabs, CommonDatePicker, CommonCheckbox, CommonCheckboxGroup, CommonDescriptions, CommonTable, CommonForm, CommonPagination, CommonIcon } from './components';
|
|
2
2
|
/**
|
|
3
3
|
* 按需引入
|
|
4
4
|
*/
|
|
5
|
-
export { CommonButton, CommonButtonGroup, CommonTabs, CommonRadio, CommonRadioGroup, CommonCheckbox, CommonCheckboxGroup, CommonDatePicker, CommonDescriptions, CommonTable, CommonForm, CommonPagination, };
|
|
5
|
+
export { CommonButton, CommonButtonGroup, CommonTabs, CommonRadio, CommonRadioGroup, CommonCheckbox, CommonCheckboxGroup, CommonDatePicker, CommonDescriptions, CommonTable, CommonForm, CommonPagination, CommonIcon, };
|
|
6
6
|
declare const _default: {
|
|
7
7
|
install: any;
|
|
8
8
|
};
|