vrfi-design-system 1.2.5 → 1.2.7
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 +10 -1
- package/dist/main.es.js +4409 -4406
- package/dist/main.umd.js +98 -98
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ActionType } from '../../enums/trigger';
|
|
2
2
|
import { Align } from '../../enums/align.enum';
|
|
3
|
+
import { AllowedCountries } from '../../enums/allowedCountries';
|
|
3
4
|
import { RadioProps as AntdRadioProps } from 'antd';
|
|
4
5
|
import { default as AuthBanner } from '../../views/Auth/AuthBanner';
|
|
5
6
|
import { AuthBannerTextType } from '../../views/Auth/AuthBanner/authBanner.constants';
|
|
@@ -195,6 +196,13 @@ declare interface AgencyJobCardProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
195
196
|
|
|
196
197
|
export { Align }
|
|
197
198
|
|
|
199
|
+
export { AllowedCountries }
|
|
200
|
+
|
|
201
|
+
declare enum AllowedCountries_2 {
|
|
202
|
+
CANADA = "CA",
|
|
203
|
+
UNITED_STATES = "US"
|
|
204
|
+
}
|
|
205
|
+
|
|
198
206
|
export { AntdRadioProps }
|
|
199
207
|
|
|
200
208
|
export declare const ApplicationHeader: default_2.FC<ApplicationHeaderProps>;
|
|
@@ -670,11 +678,12 @@ export { InputRef }
|
|
|
670
678
|
|
|
671
679
|
export { InputTypes }
|
|
672
680
|
|
|
673
|
-
export declare const InputWithCountry: ({ label, type, required, isdCodeName, customInput, ...rest }: Omit<InputWithCountryFlagProps & InputProps_2, "icon">) => default_2.JSX.Element;
|
|
681
|
+
export declare const InputWithCountry: ({ label, type, required, isdCodeName, customInput, onlyCountries, ...rest }: Omit<InputWithCountryFlagProps & InputProps_2, "icon">) => default_2.JSX.Element;
|
|
674
682
|
|
|
675
683
|
declare interface InputWithCountryFlagProps extends Omit<CustomInputProps, "customOnChange"> {
|
|
676
684
|
isdCodeName: string;
|
|
677
685
|
onChange?: (value: MobileInputValue_2) => void;
|
|
686
|
+
onlyCountries?: AllowedCountries_2[];
|
|
678
687
|
}
|
|
679
688
|
|
|
680
689
|
export declare const JobCard: FC<JobCardProps>;
|