dcp-design-react 1.9.12 → 1.9.14

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.
@@ -119,7 +119,7 @@ declare class QmForm extends Component<IProps, IState> {
119
119
  getFlattenItems: import("memoize-one").MemoizedFn<(items: IFormItem[]) => IFormItem[]>;
120
120
  setViewValue(fieldName: string, val?: string): void;
121
121
  getViewValue(fieldName: string): string;
122
- setExpandHandle(collapse: boolean): void;
122
+ setExpandHandle(value: boolean): void;
123
123
  createInputFocus(): void;
124
124
  getFormItemLabel<T extends React.ReactNode>(label: T | IFormItem): string;
125
125
  getBlockDerivedItems(): Pick<IFormItem, "label" | "fieldName">[][];
@@ -161,6 +161,7 @@ export type IFormItem = {
161
161
  listHeight?: number;
162
162
  collapseTags?: boolean;
163
163
  maxTagTextLength?: number;
164
+ dropdownStyle?: React.CSSProperties;
164
165
  openPyt?: boolean;
165
166
  checkStrategy?: ICheckStrategy;
166
167
  checkStrictly?: boolean;