@abgov/jsonforms-components 2.21.4 → 2.22.0
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.0",
|
|
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",
|
|
@@ -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 {};
|