@asantemedia-org/edwardsvacuum-design-system 1.6.12 → 1.6.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/index.css +31 -0
- package/dist/index.esm.css +31 -0
- package/dist/index.esm.js +52 -7
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +50 -5
- package/dist/index.js.map +1 -1
- package/dist/index.scss +31 -0
- package/dist/src/stories/components/Card/card.d.ts +1 -1
- package/dist/src/stories/components/Card/card.types.d.ts +7 -0
- package/dist/src/stories/experiences/Algolia-dynamic-search/algolia-dynamic-search.d.ts +3 -2
- package/dist/src/stories/experiences/Algolia-dynamic-search/algolia-dynamic-search.stories.d.ts +2 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
import { Facet } from "@stories/components/Card/card.types";
|
|
2
2
|
interface AlgoliaDynamicSearchProps {
|
|
3
3
|
className?: string;
|
|
4
4
|
heading?: string;
|
|
@@ -18,7 +18,8 @@ interface AlgoliaDynamicSearchProps {
|
|
|
18
18
|
isLoading?: boolean;
|
|
19
19
|
placeholder?: string;
|
|
20
20
|
analytics?: (objectID: string, position: number, queryID: string) => void;
|
|
21
|
+
facets?: Facet[];
|
|
21
22
|
}
|
|
22
23
|
type HeadingLevel = "h2" | "h3" | "h4" | "h5" | "h6";
|
|
23
|
-
export declare const AlgoliaDynamicSearch: ({ className, heading, titleSize, subtext, callToActionType, callToActionText, callToActionUrl, callToActionTargetSelector, queryType, hits, hitCta, showProductPrice, query, backgroundColour, maxResults, isLoading, placeholder, analytics, }: AlgoliaDynamicSearchProps) => JSX.Element | null;
|
|
24
|
+
export declare const AlgoliaDynamicSearch: ({ className, heading, titleSize, subtext, callToActionType, callToActionText, callToActionUrl, callToActionTargetSelector, queryType, hits, hitCta, showProductPrice, query, backgroundColour, maxResults, isLoading, placeholder, analytics, facets }: AlgoliaDynamicSearchProps) => JSX.Element | null;
|
|
24
25
|
export default AlgoliaDynamicSearch;
|
package/dist/src/stories/experiences/Algolia-dynamic-search/algolia-dynamic-search.stories.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ import { AlgoliaDynamicSearch } from "./algolia-dynamic-search";
|
|
|
6
6
|
declare const meta: Meta<typeof AlgoliaDynamicSearch>;
|
|
7
7
|
export default meta;
|
|
8
8
|
type Story = StoryObj<typeof AlgoliaDynamicSearch>;
|
|
9
|
-
export declare const
|
|
9
|
+
export declare const Products: Story;
|
|
10
|
+
export declare const ProductDetails: Story;
|
|
10
11
|
export declare const Content: Story;
|
|
11
12
|
export declare const Careers: Story;
|