@abgov/jsonforms-components 2.21.4 → 2.22.1
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": "2.
|
|
3
|
+
"version": "2.22.1",
|
|
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",
|
|
@@ -3,3 +3,4 @@ export declare const GoADropdownTextbox: import("styled-components/dist/types").
|
|
|
3
3
|
export declare const GoADropdownListContainerWrapper: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, GoADropdownListContainerWrapperProps>> & string;
|
|
4
4
|
export declare const GoADropdownListContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, GoADropdownListContainerProps>> & string;
|
|
5
5
|
export declare const GoADropdownListOption: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, GoADropdownListOptionProps>> & string;
|
|
6
|
+
export declare const LabelItem: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, never>> & string;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { RankedTester, WithClassname, ControlProps } from '@jsonforms/core';
|
|
3
|
+
import { WithInputProps } from './type';
|
|
4
|
+
type GoAEmailControlProps = ControlProps & WithInputProps;
|
|
5
|
+
export declare const GoAEmailInput: (props: GoAEmailControlProps) => JSX.Element;
|
|
6
|
+
export declare const GoAEmailControl: (props: ControlProps & WithClassname) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export declare const GoAEmailControlTester: RankedTester;
|
|
8
|
+
export declare const GoAInputEmailControl: React.ComponentType<import("@jsonforms/core").OwnPropsOfControl>;
|
|
9
|
+
export {};
|