@livechat/design-system-react-components 1.0.0-beta.11 → 1.0.0-beta.13
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/components/ActionMenu/ActionMenu.d.ts +0 -4
- package/dist/components/Tag/Tag.d.ts +1 -1
- package/dist/dsrc.cjs.js +4 -4
- package/dist/dsrc.es.js +1070 -1081
- package/dist/dsrc.umd.js +6 -6
- package/dist/preview-stats.json +635 -638
- package/dist/style.css +1 -1
- package/package.json +2 -2
|
@@ -30,9 +30,5 @@ export interface ActionMenuProps {
|
|
|
30
30
|
* Menu will stay open after option click
|
|
31
31
|
*/
|
|
32
32
|
keepOpenOnClick?: boolean;
|
|
33
|
-
/**
|
|
34
|
-
* Set the keys array for active elements
|
|
35
|
-
*/
|
|
36
|
-
activeOptionKeys?: string[];
|
|
37
33
|
}
|
|
38
34
|
export declare const ActionMenu: React.FC<ActionMenuProps>;
|