@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 +3 -0
- package/lib/advanced-search/AdvancedSearch.css.d.ts +9 -0
- package/lib/advanced-search/AdvancedSearch.d.ts +13 -0
- package/lib/advanced-search/AdvancedSearch.examples.d.ts +2 -0
- package/lib/index.cjs.js +1047 -0
- package/lib/index.d.ts +8 -0
- package/lib/index.es.js +1668 -0
- package/lib/list-bar/InputGroupWrapper.d.ts +3 -0
- package/lib/list-bar/ListBar.css.d.ts +38 -0
- package/lib/list-bar/ListBar.d.ts +17 -0
- package/lib/list-bar/ListBar.examples.d.ts +3 -0
- package/lib/list-bar/ListBarSearch.d.ts +5 -0
- package/lib/list-bar/ListBarSearchInfo.d.ts +3 -0
- package/lib/list-bar/ListBarSortBy.d.ts +15 -0
- package/lib/manifest.d.ts +2 -0
- package/lib/search-results-bar/SearchResultsBar.css.d.ts +9 -0
- package/lib/search-results-bar/SearchResultsBar.d.ts +10 -0
- package/lib/search-results-bar/SearchResultsBar.examples.d.ts +2 -0
- package/lib/style.css +1 -0
- package/package.json +49 -0
- package/vite.config.js +21 -0
package/README.md
ADDED
@@ -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;
|