@clasing/ui 0.1.56 → 0.1.57
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 +2 -1
- package/dist/index.es.js +172 -175
- package/dist/index.umd.js +7 -7
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -330,7 +330,7 @@ declare interface ITooltipProps extends React.HTMLAttributes<HTMLSpanElement>, V
|
|
|
330
330
|
content: string;
|
|
331
331
|
}
|
|
332
332
|
|
|
333
|
-
export declare const Modal: ({ className, children, isOpen, setIsOpen, canClose, intent, closeOnClickOutside, }: ModalProps) => ReactPortal | null;
|
|
333
|
+
export declare const Modal: ({ className, children, isOpen, setIsOpen, canClose, intent, closeOnClickOutside, closeButtonAriaLabel, }: ModalProps) => ReactPortal | null;
|
|
334
334
|
|
|
335
335
|
declare interface ModalProps {
|
|
336
336
|
className?: string;
|
|
@@ -340,6 +340,7 @@ declare interface ModalProps {
|
|
|
340
340
|
canClose?: boolean;
|
|
341
341
|
intent?: 'card' | 'sheet';
|
|
342
342
|
closeOnClickOutside?: boolean;
|
|
343
|
+
closeButtonAriaLabel?: string;
|
|
343
344
|
}
|
|
344
345
|
|
|
345
346
|
declare type Option_2 = {
|