@club-employes/utopia 4.75.0 → 4.76.1
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/components/molecules/DatePicker/DatePicker.d.ts +1 -0
- package/dist/components/molecules/DatePicker/types.d.ts +1 -0
- package/dist/components/molecules/InputPhone/InputPhone.d.ts +1 -2
- package/dist/components/molecules/InputPhone/countries.d.ts +9 -3
- package/dist/components/molecules/InputPhone/types.d.ts +1 -0
- package/dist/icons-list.json +1 -1
- package/dist/index.js +9725 -8111
- package/dist/utopia.css +1 -1
- package/package.json +1 -1
|
@@ -19,6 +19,7 @@ declare const _default: DefineComponent<DatePickerProps, {}, {}, {}, {}, Compone
|
|
|
19
19
|
clearable: boolean;
|
|
20
20
|
enableTime: boolean;
|
|
21
21
|
use24HourFormat: boolean;
|
|
22
|
+
dday: boolean;
|
|
22
23
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
23
24
|
containerRef: HTMLDivElement;
|
|
24
25
|
triggerRef: HTMLDivElement;
|
|
@@ -27,11 +27,10 @@ declare const _default: DefineComponent<InputPhoneProps, {}, {}, {}, {}, Compone
|
|
|
27
27
|
modelValue: string | null;
|
|
28
28
|
placeholder: string;
|
|
29
29
|
id: string;
|
|
30
|
+
language: string;
|
|
30
31
|
defaultCountry: string;
|
|
31
32
|
preferredCountries: string[];
|
|
32
|
-
searchPlaceholder: string;
|
|
33
33
|
helperText: string;
|
|
34
|
-
noResultsText: string;
|
|
35
34
|
example: boolean;
|
|
36
35
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
37
36
|
containerRef: HTMLDivElement;
|
|
@@ -6,7 +6,9 @@ export interface Country {
|
|
|
6
6
|
/** Code ISO 3166-1 alpha-2 (ex: FR, BE, US) */
|
|
7
7
|
code: string;
|
|
8
8
|
/** Nom du pays en français */
|
|
9
|
-
name:
|
|
9
|
+
name: {
|
|
10
|
+
[key: string]: string;
|
|
11
|
+
};
|
|
10
12
|
/** Indicatif téléphonique sans le + (ex: 33, 1, 44) */
|
|
11
13
|
dialCode: string;
|
|
12
14
|
/** Emoji du drapeau */
|
|
@@ -16,8 +18,12 @@ export interface Country {
|
|
|
16
18
|
export declare const DEFAULT_COUNTRY_CODE = "FR";
|
|
17
19
|
/** Liste complète des pays supportés */
|
|
18
20
|
export declare const COUNTRIES: Country[];
|
|
19
|
-
/** Exemples de numéros par pays (format national)
|
|
20
|
-
|
|
21
|
+
/** Exemples de numéros par pays (format national)
|
|
22
|
+
* Peut être une string (exemple unique) ou un tableau (plusieurs exemples possibles)
|
|
23
|
+
* Pour les pays avec plusieurs préfixes mobiles (ex: Guadeloupe 0690, 0691),
|
|
24
|
+
* on peut fournir plusieurs exemples, le premier sera utilisé par défaut
|
|
25
|
+
*/
|
|
26
|
+
export declare const PHONE_EXAMPLES: Record<string, string | string[]>;
|
|
21
27
|
/**
|
|
22
28
|
* Trouve un pays par son code ISO
|
|
23
29
|
*/
|
package/dist/icons-list.json
CHANGED