@descope/flow-components 2.0.378 → 2.0.380
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/dist/index.d.ts +19 -2
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -851,7 +851,7 @@ type Props = {
|
|
|
851
851
|
'data-errormessage-value-missing-phone'?: string;
|
|
852
852
|
'label-type'?: LabelType;
|
|
853
853
|
'external-input'?: boolean;
|
|
854
|
-
};
|
|
854
|
+
} & DescopeInputProps;
|
|
855
855
|
declare global {
|
|
856
856
|
namespace JSX {
|
|
857
857
|
interface IntrinsicElements {
|
|
@@ -859,6 +859,23 @@ declare global {
|
|
|
859
859
|
}
|
|
860
860
|
}
|
|
861
861
|
}
|
|
862
|
-
declare const HybridField: React.ForwardRefExoticComponent<Omit<React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> &
|
|
862
|
+
declare const HybridField: React.ForwardRefExoticComponent<Omit<React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & {
|
|
863
|
+
variant?: 'countrySelection' | 'inputBox';
|
|
864
|
+
'default-code'?: string;
|
|
865
|
+
'phone-input-label'?: string;
|
|
866
|
+
'phone-input-placeholder'?: string;
|
|
867
|
+
'restrict-countries'?: string;
|
|
868
|
+
'full-width'?: boolean;
|
|
869
|
+
bordered?: boolean;
|
|
870
|
+
label?: string;
|
|
871
|
+
placeholder?: string;
|
|
872
|
+
size?: ComponentSize;
|
|
873
|
+
'helper-text'?: string;
|
|
874
|
+
'data-errormessage-pattern-mismatch-email'?: string;
|
|
875
|
+
'data-errormessage-value-missing-email'?: string;
|
|
876
|
+
'data-errormessage-value-missing-phone'?: string;
|
|
877
|
+
'label-type'?: LabelType;
|
|
878
|
+
'external-input'?: boolean;
|
|
879
|
+
} & HTMLInputAttrs & DescopeInputExtraProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
863
880
|
|
|
864
881
|
export { AppsList, Avatar, Badge, Boolean, Button, Checkbox, Code, CodeSnippet, ComboBox, Container, DateField, Divider, Grid, GridCustomColumn, GridItemDetailsColumn, GridSelectionColumn, GridTextColumn, HybridField, Image, Input, Link, List, ListItem, Loader, Logo, MappingsField, Modal, MultiSelect, NOTPImage, NOTPLink, NewPassword, NumberField, Password, Phone, Recaptcha, SAMLGroupMappings, ScopesList, SecurityQuestionsSetup, SecurityQuestionsVerify, Select, SingleSelect, Switch, TOTPImage, TOTPLink, Text, TextField, Textarea, ThirdPartyAppLogo, UploadFile, UserAttribute, UserAuthMethod, ReactComponent as apple, ReactComponent as authenticator, ReactComponent as discord, ReactComponent as edit, ReactComponent as facebook, ReactComponent as fingerprint, ReactComponent as github, ReactComponent as gitlab, ReactComponent as google, ReactComponent as linkedin, ReactComponent as microsoft, ReactComponent as passkey, ReactComponent as password, ReactComponent as plus, ReactComponent as reload, ReactComponent as slack, ReactComponent as sso, ReactComponent as whatsapp };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@descope/flow-components",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.380",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"module": "dist/index.esm.js",
|
|
@@ -102,7 +102,7 @@
|
|
|
102
102
|
"typescript": "^5.0.0"
|
|
103
103
|
},
|
|
104
104
|
"dependencies": {
|
|
105
|
-
"@descope/web-components-ui": "1.0.
|
|
105
|
+
"@descope/web-components-ui": "1.0.406"
|
|
106
106
|
},
|
|
107
107
|
"peerDependencies": {
|
|
108
108
|
"react": ">=17"
|