@descope/flow-components 2.0.434 → 2.0.436

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.
@@ -0,0 +1,17 @@
1
+ import React from 'react';
2
+ import { DescopeInputProps } from '../types';
3
+ type Props = {
4
+ connector?: string;
5
+ 'connector-template'?: string;
6
+ 'min-search-length'?: number;
7
+ 'allow-custom-value'?: boolean;
8
+ };
9
+ declare global {
10
+ namespace React.JSX {
11
+ interface IntrinsicElements {
12
+ 'descope-address-field': Omit<DescopeInputProps, 'external-input'> & Props;
13
+ }
14
+ }
15
+ }
16
+ declare const AddressField: React.ForwardRefExoticComponent<Omit<Omit<DescopeInputProps, "external-input"> & Props, "ref"> & React.RefAttributes<HTMLInputElement>>;
17
+ export default AddressField;
@@ -0,0 +1 @@
1
+ export { default as AddressField } from './AddressField';
@@ -81,6 +81,7 @@ export declare const SecurityQuestionsSetupClass: ComponentClass;
81
81
  export declare const SecurityQuestionsVerifyClass: ComponentClass;
82
82
  export declare const HybridFieldClass: ComponentClass;
83
83
  export declare const AlertClass: ComponentClass;
84
+ export declare const AddressFieldClass: ComponentClass;
84
85
  export { globalsThemeToStyle, createComponentsTheme, themeToStyle, componentsThemeManager, darkTheme, genColor, defaultTheme, themeVars };
85
86
  export type Theme = {
86
87
  globals: {
@@ -153,4 +154,5 @@ export * from './ThirdPartyAppLogo';
153
154
  export * from './DateField';
154
155
  export * from './HybridField';
155
156
  export * from './Alert';
157
+ export * from './AddressField';
156
158
  export * from '@descope/web-components-ui';