@farris/ui-vue 1.8.5-beta.12 → 1.8.5-beta.13
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/components/batch-editor/index.esm.js +8 -9
- package/components/batch-editor/index.umd.cjs +3 -3
- package/components/button/index.esm.js +8 -9
- package/components/button/index.umd.cjs +3 -3
- package/components/condition/index.esm.js +3 -3
- package/components/condition/index.umd.cjs +1 -1
- package/components/data-view/index.esm.js +8 -9
- package/components/data-view/index.umd.cjs +3 -3
- package/components/number-range/index.esm.js +2 -2
- package/components/number-range/index.umd.cjs +1 -1
- package/components/order/index.esm.js +2 -3
- package/components/order/index.umd.cjs +1 -1
- package/components/pagination/index.esm.js +18 -18
- package/components/pagination/index.umd.cjs +1 -1
- package/components/query-solution/index.esm.js +444 -441
- package/components/query-solution/index.umd.cjs +4 -4
- package/components/schema-selector/index.esm.js +1 -1
- package/components/schema-selector/index.umd.cjs +1 -1
- package/designer/data-grid/index.esm.js +8 -9
- package/designer/data-grid/index.umd.cjs +3 -3
- package/designer/farris-designer.all.esm.js +1994 -1994
- package/designer/farris-designer.all.umd.cjs +1 -1
- package/farris.all.esm.js +13 -11
- package/farris.all.umd.cjs +3 -3
- package/package.json +1 -1
- package/types/button/src/button.props.d.ts +1 -1
- package/types/condition/src/composition/condition-value/checkbox-value.d.ts +1 -1
package/package.json
CHANGED
|
@@ -17,7 +17,7 @@ import { ExtractPropTypes, PropType, StyleValue } from 'vue';
|
|
|
17
17
|
/**
|
|
18
18
|
* 按钮显示样式类型。
|
|
19
19
|
*/
|
|
20
|
-
export type ButtonType = 'primary' | 'warning' | 'danger' | 'success' | 'link' | 'secondary';
|
|
20
|
+
export type ButtonType = 'primary' | 'warning' | 'danger' | 'success' | 'link' | 'secondary' | '';
|
|
21
21
|
/**
|
|
22
22
|
* 按钮尺寸类型。
|
|
23
23
|
*/
|
|
@@ -2,7 +2,7 @@ import { EditorType } from '../../../../dynamic-form';
|
|
|
2
2
|
import { ConditionValue } from "./types";
|
|
3
3
|
export declare class CheckBoxValue implements ConditionValue {
|
|
4
4
|
editorType: EditorType;
|
|
5
|
-
value: boolean[];
|
|
5
|
+
value: boolean | boolean[];
|
|
6
6
|
valueType: string;
|
|
7
7
|
editorConfig: any;
|
|
8
8
|
constructor(initialData?: {
|