@commercetools-frontend/application-shell 20.10.2 → 20.10.6
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/{application-entry-point-4b134bcb.cjs.dev.js → application-entry-point-015f1dfd.cjs.dev.js} +55 -55
- package/dist/{application-entry-point-b7c5325e.esm.js → application-entry-point-7f99da26.esm.js} +3 -3
- package/dist/{application-entry-point-83ea80e3.cjs.prod.js → application-entry-point-9247fc63.cjs.prod.js} +52 -52
- package/dist/commercetools-frontend-application-shell.cjs.dev.js +15 -41
- package/dist/commercetools-frontend-application-shell.cjs.prod.js +15 -41
- package/dist/commercetools-frontend-application-shell.esm.js +2 -2
- package/dist/declarations/src/components/locale-switcher/locale-switcher.d.ts +0 -5
- package/dist/declarations/src/components/quick-access/butler-command/butler-command.d.ts +0 -11
- package/dist/declarations/src/types/generated/ctp.d.ts +2874 -2565
- package/dist/declarations/src/version.d.ts +1 -1
- package/dist/{index-3775646c.cjs.dev.js → index-c6cce324.cjs.dev.js} +296 -295
- package/dist/{index-03a73e71.esm.js → index-e34cdcda.esm.js} +15 -14
- package/dist/{index-48776732.cjs.prod.js → index-f012b7bd.cjs.prod.js} +206 -204
- package/dist/{project-expired-fe40b83e.cjs.prod.js → project-expired-0c4726a5.cjs.prod.js} +7 -7
- package/dist/{project-expired-5b345763.esm.js → project-expired-3b4cf60d.esm.js} +3 -3
- package/dist/{project-expired-a143edeb.cjs.dev.js → project-expired-a8eb69b9.cjs.dev.js} +7 -7
- package/dist/{project-not-found-428e819f.cjs.prod.js → project-not-found-0baa83dc.cjs.prod.js} +7 -7
- package/dist/{project-not-found-b2e92b89.esm.js → project-not-found-1a2b80e0.esm.js} +3 -3
- package/dist/{project-not-found-574a7ad2.cjs.dev.js → project-not-found-52138a75.cjs.dev.js} +7 -7
- package/dist/{project-not-initialized-5fc287ba.esm.js → project-not-initialized-40da3944.esm.js} +3 -3
- package/dist/{project-not-initialized-7c2f13a9.cjs.prod.js → project-not-initialized-429473b1.cjs.prod.js} +7 -7
- package/dist/{project-not-initialized-807325a2.cjs.dev.js → project-not-initialized-8589ae81.cjs.dev.js} +7 -7
- package/dist/{project-suspended-52ca080a.cjs.dev.js → project-suspended-9697db58.cjs.dev.js} +7 -7
- package/dist/{project-suspended-85ffdac8.cjs.prod.js → project-suspended-9bc132ab.cjs.prod.js} +7 -7
- package/dist/{project-suspended-77485a95.esm.js → project-suspended-a23e7271.esm.js} +3 -3
- package/dist/{quick-access-47b3e3d6.esm.js → quick-access-74ab8004.esm.js} +9 -15
- package/dist/{quick-access-68372e16.cjs.prod.js → quick-access-821643e7.cjs.prod.js} +87 -87
- package/dist/{quick-access-d501da1b.cjs.dev.js → quick-access-9fbae3f2.cjs.dev.js} +104 -110
- package/dist/{service-page-project-switcher-10fddb23.esm.js → service-page-project-switcher-03ca40af.esm.js} +1 -1
- package/dist/{service-page-project-switcher-8b05ea61.cjs.prod.js → service-page-project-switcher-3adcc61d.cjs.prod.js} +2 -2
- package/dist/{service-page-project-switcher-9c4740ca.cjs.dev.js → service-page-project-switcher-690fde70.cjs.dev.js} +2 -2
- package/package.json +28 -30
- package/test-utils/dist/commercetools-frontend-application-shell-test-utils.cjs.dev.js +25 -29
- package/test-utils/dist/commercetools-frontend-application-shell-test-utils.cjs.prod.js +19 -23
- package/test-utils/dist/commercetools-frontend-application-shell-test-utils.esm.js +1 -1
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import type { Command } from '../types';
|
|
2
2
|
import { MouseEventHandler } from 'react';
|
|
3
|
-
import PropTypes from 'prop-types';
|
|
4
3
|
declare type Props = {
|
|
5
4
|
command: Command;
|
|
6
5
|
isSelected?: boolean;
|
|
@@ -10,15 +9,5 @@ declare type Props = {
|
|
|
10
9
|
declare const ButlerCommand: {
|
|
11
10
|
(props: Props): import("@emotion/react/jsx-runtime").JSX.Element;
|
|
12
11
|
displayName: string;
|
|
13
|
-
propTypes: {
|
|
14
|
-
command: PropTypes.Validator<PropTypes.InferProps<{
|
|
15
|
-
id: PropTypes.Validator<string>;
|
|
16
|
-
text: PropTypes.Validator<string>;
|
|
17
|
-
subCommands: PropTypes.Requireable<((...args: any[]) => any) | (object | null | undefined)[]>;
|
|
18
|
-
}>>;
|
|
19
|
-
isSelected: PropTypes.Requireable<boolean>;
|
|
20
|
-
onMouseEnter: PropTypes.Validator<(...args: any[]) => any>;
|
|
21
|
-
onClick: PropTypes.Validator<(...args: any[]) => any>;
|
|
22
|
-
};
|
|
23
12
|
};
|
|
24
13
|
export default ButlerCommand;
|