vrfi-design-system 1.2.6 → 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 +5 -2
- package/dist/main.es.js +4390 -4389
- 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,7 +196,9 @@ declare interface AgencyJobCardProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
195
196
|
|
|
196
197
|
export { Align }
|
|
197
198
|
|
|
198
|
-
|
|
199
|
+
export { AllowedCountries }
|
|
200
|
+
|
|
201
|
+
declare enum AllowedCountries_2 {
|
|
199
202
|
CANADA = "CA",
|
|
200
203
|
UNITED_STATES = "US"
|
|
201
204
|
}
|
|
@@ -680,7 +683,7 @@ export declare const InputWithCountry: ({ label, type, required, isdCodeName, cu
|
|
|
680
683
|
declare interface InputWithCountryFlagProps extends Omit<CustomInputProps, "customOnChange"> {
|
|
681
684
|
isdCodeName: string;
|
|
682
685
|
onChange?: (value: MobileInputValue_2) => void;
|
|
683
|
-
onlyCountries?:
|
|
686
|
+
onlyCountries?: AllowedCountries_2[];
|
|
684
687
|
}
|
|
685
688
|
|
|
686
689
|
export declare const JobCard: FC<JobCardProps>;
|