Skip to content

Commit

Permalink
fix menu css & hide preview image (#68)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucanis committed Dec 7, 2021
1 parent 80d3bba commit 25d5c6d
Show file tree
Hide file tree
Showing 9 changed files with 316 additions and 202 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { BlockModuleComponentProps, BlockPluginDefinition } from "../../types";
export declare type BlockProductData = {
productId: string | null;
productList: string[];
};
export declare type BlockProductComponentProps = BlockModuleComponentProps<BlockProductData>;
declare const blockProduct: BlockPluginDefinition<BlockProductData>;
Expand Down
2 changes: 2 additions & 0 deletions templates/backOffice/default/app/dist/hooks/data.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,6 @@ export declare function useLinkContentToGroup(): import("react-query").UseMutati
export declare function useUnlinkContentFromGroup(): import("react-query").UseMutationResult<any, unknown, {
id: GroupTypeStore["id"];
}, unknown>;
export declare function useProductByTitle(title: string | null): import("react-query").UseQueryResult<any, unknown>;
export declare function useProductsByIds(ids: string | null): import("react-query").UseQueryResult<any, unknown>;
//# sourceMappingURL=data.d.ts.map
13 changes: 13 additions & 0 deletions templates/backOffice/default/app/dist/pluginManager.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,19 @@ export declare const __PLUGINS: ({
}) => JSX.Element;
initialData: import("./blocks/Video").BlockVideoData;
id: string;
} | {
title: import("./types").i18nString;
description?: import("./types").i18nString | undefined;
image?: import("./types").i18nString | undefined;
type: import("./types").BlockModuleType;
component: (props: {
[key: string]: any;
data: import("./blocks/Product/Product").BlockProductData;
id: string;
onUpdate: (props: import("./blocks/Product/Product").BlockProductData) => any;
}) => JSX.Element;
initialData: import("./blocks/Product/Product").BlockProductData;
id: string;
} | {
title: import("./types").i18nString;
description?: import("./types").i18nString | undefined;
Expand Down
2 changes: 1 addition & 1 deletion templates/backOffice/default/app/dist/style.css

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions templates/backOffice/default/app/dist/thelia-blocks.es.js

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions templates/backOffice/default/app/dist/thelia-blocks.umd.js

Large diffs are not rendered by default.

Loading

0 comments on commit 25d5c6d

Please sign in to comment.