@sps-woodland/list-bar 8.0.0-rc1

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/README.md ADDED
@@ -0,0 +1,3 @@
1
+ ## [@sps-woodland/list-bar](https://github.com/SPSCommerce/woodland/tree/master/packages/@sps-woodland/list-bar#readme)
2
+
3
+ SPS Woodland Design System list bar components
@@ -0,0 +1,9 @@
1
+ import { BooleanRecipeVariant, VariantDefinitions } from "@sps-woodland/core";
2
+ interface AdvancedSearchVariantDefinitions extends VariantDefinitions {
3
+ open: BooleanRecipeVariant;
4
+ }
5
+ export declare const advancedSearch: import("@vanilla-extract/recipes/dist/declarations/src/types").RuntimeFn<Pick<AdvancedSearchVariantDefinitions, "open">>;
6
+ export declare const advancedSearchForm: string;
7
+ export declare const advancedSearchFooter: string;
8
+ export declare const advancedSearchFooterControls: string;
9
+ export {};
@@ -0,0 +1,13 @@
1
+ import * as React from "react";
2
+ import { ComponentProps } from "@sps-woodland/core";
3
+ import { SpsFormArray, SpsFormGroup, SpsFormSetMeta } from "@spscommerce/ds-react";
4
+ export declare function AdvancedSearch({ formArray, formGroup, formMeta, onSubmit, controlsDisabled, footerLinks, isOpen, onClear, className, children, ...rest }: ComponentProps<{
5
+ formArray?: SpsFormArray<any>;
6
+ formGroup?: SpsFormGroup;
7
+ formMeta?: SpsFormSetMeta<any>;
8
+ onSubmit?: React.FormEventHandler;
9
+ controlsDisabled?: boolean;
10
+ footerLinks?: React.ReactNode | (() => React.ReactNode);
11
+ isOpen?: boolean;
12
+ onClear?: () => void;
13
+ }, HTMLDivElement>): React.ReactElement;
@@ -0,0 +1,2 @@
1
+ import type { ComponentManifestEntry } from "@sps-woodland/core";
2
+ export declare const AdvancedSearchExamples: ComponentManifestEntry;