vrfi-design-system 1.1.49 → 1.1.51
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/index.d.ts +3 -11
- package/dist/main.es.js +11433 -11437
- package/dist/main.umd.js +126 -126
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -323,20 +323,21 @@ export declare interface CheckboxSelectFieldProps extends SelectPropsBase {
|
|
|
323
323
|
handleCheckboxChange?: (value: string) => void;
|
|
324
324
|
}
|
|
325
325
|
|
|
326
|
-
export declare const CheckBoxWithFormWrapper: ({ name, onCheckboxChange, group, children, singleSelectionMode, customOptionDisplay, options, defaultValue, ...props }: CheckBoxWithFormWrapperProps) => default_2.JSX.Element;
|
|
326
|
+
export declare const CheckBoxWithFormWrapper: ({ name, onCheckboxChange, group, children, singleSelectionMode, customOptionDisplay, options, defaultValue, preserveSelectionsAcrossPagination, ...props }: CheckBoxWithFormWrapperProps) => default_2.JSX.Element;
|
|
327
327
|
|
|
328
328
|
declare interface CheckBoxWithFormWrapperProps {
|
|
329
329
|
children?: default_2.ReactNode;
|
|
330
330
|
disabled?: boolean;
|
|
331
331
|
indeterminate?: boolean;
|
|
332
332
|
group?: boolean;
|
|
333
|
-
onCheckboxChange?: (event: string | number | boolean | (string | number)[] | null
|
|
333
|
+
onCheckboxChange?: (event: string | number | boolean | (string | number)[] | null) => void;
|
|
334
334
|
options?: (CheckboxOptionType | string | number)[];
|
|
335
335
|
name: string;
|
|
336
336
|
className?: string;
|
|
337
337
|
singleSelectionMode?: boolean;
|
|
338
338
|
customOptionDisplay?: boolean;
|
|
339
339
|
defaultValue?: boolean;
|
|
340
|
+
preserveSelectionsAcrossPagination?: boolean;
|
|
340
341
|
value?: string | number | boolean | (string | number)[] | null;
|
|
341
342
|
}
|
|
342
343
|
|
|
@@ -735,15 +736,6 @@ export declare interface NoRecordsProps {
|
|
|
735
736
|
declare const Notification_2: ({ message, description, type, }: INotification) => unknown;
|
|
736
737
|
export { Notification_2 as Notification }
|
|
737
738
|
|
|
738
|
-
export declare const NotificationCard: (props: NotificationCardProps) => default_2.JSX.Element;
|
|
739
|
-
|
|
740
|
-
export declare interface NotificationCardProps extends HTMLAttributes<HTMLDivElement> {
|
|
741
|
-
title: string;
|
|
742
|
-
description: string;
|
|
743
|
-
createdAt: string;
|
|
744
|
-
avatarNames: string[];
|
|
745
|
-
}
|
|
746
|
-
|
|
747
739
|
export { NotificationTypes }
|
|
748
740
|
|
|
749
741
|
export declare const Offline: ({ children, }: PropsWithChildren<OfflineProps>) => default_2.JSX.Element;
|