@abgov/jsonforms-components 1.34.1 → 1.34.3
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abgov/jsonforms-components",
|
|
3
|
-
"version": "1.34.
|
|
3
|
+
"version": "1.34.3",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"description": "Government of Alberta - React renderers for JSON Forms based on the design system.",
|
|
6
6
|
"repository": "https://github.com/GovAlta/adsp-monorepo",
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
export declare const
|
|
1
|
+
export declare const SearchBox: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
2
|
+
export declare const LabelDiv: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { Address, Suggestion } from './types';
|
|
2
2
|
export declare const fetchAddressSuggestions: (formUrl: string, searchTerm: string, isAlbertaAddress?: boolean) => Promise<Suggestion[]>;
|
|
3
3
|
export declare const filterAlbertaAddresses: (suggestions: Suggestion[]) => Suggestion[];
|
|
4
|
+
export declare const filterSuggestionsWithoutAddressCount: (suggestions: Suggestion[]) => Suggestion[];
|
|
4
5
|
export declare const mapSuggestionToAddress: (suggestion: Suggestion) => Address;
|