demio-ui 2.5.8 → 2.5.11
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/cjs/index.css +1 -1
- package/dist/cjs/index.js +4 -4
- package/dist/cjs/types/src/components/FormGroup/FormGroup.d.ts +4 -3
- package/dist/cjs/types/src/components/MultiSelect/MultiSelect.d.ts +1 -0
- package/dist/esm/index.css +1 -1
- package/dist/esm/index.js +3 -3
- package/dist/esm/types/src/components/FormGroup/FormGroup.d.ts +4 -3
- package/dist/esm/types/src/components/MultiSelect/MultiSelect.d.ts +1 -0
- package/dist/types.d.ts +5 -3
- package/package.json +1 -1
|
@@ -2,8 +2,9 @@ import React from 'react';
|
|
|
2
2
|
type Props = {
|
|
3
3
|
children: React.ReactNode;
|
|
4
4
|
position?: 'horizontal' | 'vertical';
|
|
5
|
-
justify?: 'between' | 'start';
|
|
6
|
-
alignItems?: 'start' | 'stretch';
|
|
5
|
+
justify?: 'between' | 'start' | 'center';
|
|
6
|
+
alignItems?: 'start' | 'stretch' | 'center';
|
|
7
|
+
className?: string;
|
|
7
8
|
};
|
|
8
|
-
declare function FormGroup({ children, position, justify, alignItems, }: Props): React.JSX.Element;
|
|
9
|
+
declare function FormGroup({ children, position, justify, alignItems, className, }: Props): React.JSX.Element;
|
|
9
10
|
export default FormGroup;
|
package/dist/types.d.ts
CHANGED
|
@@ -177,10 +177,11 @@ declare const DropdownItem: FC<Props$d>;
|
|
|
177
177
|
type Props$c = {
|
|
178
178
|
children: React__default.ReactNode;
|
|
179
179
|
position?: 'horizontal' | 'vertical';
|
|
180
|
-
justify?: 'between' | 'start';
|
|
181
|
-
alignItems?: 'start' | 'stretch';
|
|
180
|
+
justify?: 'between' | 'start' | 'center';
|
|
181
|
+
alignItems?: 'start' | 'stretch' | 'center';
|
|
182
|
+
className?: string;
|
|
182
183
|
};
|
|
183
|
-
declare function FormGroup({ children, position, justify, alignItems, }: Props$c): React__default.JSX.Element;
|
|
184
|
+
declare function FormGroup({ children, position, justify, alignItems, className, }: Props$c): React__default.JSX.Element;
|
|
184
185
|
|
|
185
186
|
type Props$b = {
|
|
186
187
|
children?: ReactNode;
|
|
@@ -278,6 +279,7 @@ interface Props$5 {
|
|
|
278
279
|
isDisabled?: boolean;
|
|
279
280
|
isMulti?: boolean;
|
|
280
281
|
isSearchable?: boolean;
|
|
282
|
+
isVisibleOptional?: boolean;
|
|
281
283
|
label?: string;
|
|
282
284
|
menuIsOpen?: boolean;
|
|
283
285
|
name?: string;
|