@campxdev/react-blueprint 2.0.3 → 2.0.5
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.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/src/components/DataDisplay/Chips/Chips.d.ts +1 -1
- package/dist/cjs/types/src/components/DataDisplay/export.d.ts +1 -0
- package/dist/cjs/types/src/components/Input/FormActions/FormActions.d.ts +1 -2
- package/dist/cjs/types/src/components/Input/export.d.ts +1 -0
- package/dist/cjs/types/src/stories/DataDisplay/Chips.stories.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/src/components/DataDisplay/Chips/Chips.d.ts +1 -1
- package/dist/esm/types/src/components/DataDisplay/export.d.ts +1 -0
- package/dist/esm/types/src/components/Input/FormActions/FormActions.d.ts +1 -2
- package/dist/esm/types/src/components/Input/export.d.ts +1 -0
- package/dist/esm/types/src/stories/DataDisplay/Chips.stories.d.ts +1 -1
- package/dist/index.d.ts +25 -2
- package/package.json +1 -1
|
@@ -10,5 +10,5 @@ interface ChipsProps {
|
|
|
10
10
|
singleSelection?: boolean;
|
|
11
11
|
toggle?: boolean;
|
|
12
12
|
}
|
|
13
|
-
export
|
|
13
|
+
export declare const Chips: ({ list, selected: _selected, onSelected, direction, singleSelection, toggle, }: ChipsProps) => import("react/jsx-runtime").JSX.Element;
|
|
14
14
|
export {};
|
|
@@ -11,5 +11,4 @@ export interface FormActionsProps {
|
|
|
11
11
|
stackProps?: StackProps;
|
|
12
12
|
showTopBorder?: boolean;
|
|
13
13
|
}
|
|
14
|
-
declare
|
|
15
|
-
export default FormActions;
|
|
14
|
+
export declare const FormActions: ({ submitButtonProps, cancelButtonProps, stackProps, showTopBorder, }: FormActionsProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -6,6 +6,7 @@ export * from './FormActions/FormActions';
|
|
|
6
6
|
export * from './FormControlWrapper/FormControlWrapper';
|
|
7
7
|
export * from './FormWrapper/FormWrapper';
|
|
8
8
|
export * from './IconButtons/IconButtons';
|
|
9
|
+
export * from './LabelWrapper/LabelWrapper';
|
|
9
10
|
export * from './MultiCheckBox/MultiCheckBox';
|
|
10
11
|
export * from './PasswordField/PasswordField';
|
|
11
12
|
export * from './RadioGroup/RadioGroup';
|