@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@farris/ui-vue",
3
- "version": "1.8.5-beta.12",
3
+ "version": "1.8.5-beta.13",
4
4
  "license": "Apache-2.0",
5
5
  "description": "Farris Vue, a Farris Design based Vue3 component library.",
6
6
  "keywords": [
@@ -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?: {