@verma-consulting/design-library 0.1.44 → 0.1.45
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.mts +17 -1
- package/dist/index.d.ts +17 -1
- package/dist/index.js +448 -80
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +451 -78
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -199,4 +199,20 @@ interface PhoneNumberFieldProps {
|
|
|
199
199
|
}
|
|
200
200
|
declare const PhoneNumberField: React__default.FC<PhoneNumberFieldProps>;
|
|
201
201
|
|
|
202
|
-
|
|
202
|
+
interface CountryType {
|
|
203
|
+
code: string;
|
|
204
|
+
label: string;
|
|
205
|
+
phone: string;
|
|
206
|
+
suggested?: boolean;
|
|
207
|
+
}
|
|
208
|
+
interface CountrySelectProps {
|
|
209
|
+
value: string;
|
|
210
|
+
onChange: (newValue: CountryType | null) => void;
|
|
211
|
+
label?: string;
|
|
212
|
+
size?: "small" | "medium";
|
|
213
|
+
disabled?: boolean;
|
|
214
|
+
style?: React__default.CSSProperties;
|
|
215
|
+
}
|
|
216
|
+
declare const CountrySelect: React__default.FC<CountrySelectProps>;
|
|
217
|
+
|
|
218
|
+
export { CountrySelect, type CountryType, EmptyState, FormDialog, FormDrawer, FormPopover, FormSnackBar, IOSSwitch, ImageUploadAvatar, InputFileUpload, Loader, Logo, PhoneNumberField, Pill, SearchableSelect, SkeletonBar, StatusPill, TabPanel, TablePagination, type TablePaginationDesignProps };
|
package/dist/index.d.ts
CHANGED
|
@@ -199,4 +199,20 @@ interface PhoneNumberFieldProps {
|
|
|
199
199
|
}
|
|
200
200
|
declare const PhoneNumberField: React__default.FC<PhoneNumberFieldProps>;
|
|
201
201
|
|
|
202
|
-
|
|
202
|
+
interface CountryType {
|
|
203
|
+
code: string;
|
|
204
|
+
label: string;
|
|
205
|
+
phone: string;
|
|
206
|
+
suggested?: boolean;
|
|
207
|
+
}
|
|
208
|
+
interface CountrySelectProps {
|
|
209
|
+
value: string;
|
|
210
|
+
onChange: (newValue: CountryType | null) => void;
|
|
211
|
+
label?: string;
|
|
212
|
+
size?: "small" | "medium";
|
|
213
|
+
disabled?: boolean;
|
|
214
|
+
style?: React__default.CSSProperties;
|
|
215
|
+
}
|
|
216
|
+
declare const CountrySelect: React__default.FC<CountrySelectProps>;
|
|
217
|
+
|
|
218
|
+
export { CountrySelect, type CountryType, EmptyState, FormDialog, FormDrawer, FormPopover, FormSnackBar, IOSSwitch, ImageUploadAvatar, InputFileUpload, Loader, Logo, PhoneNumberField, Pill, SearchableSelect, SkeletonBar, StatusPill, TabPanel, TablePagination, type TablePaginationDesignProps };
|