@hotelinking/ui 16.46.12 → 16.47.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/ui.cjs +1 -1
- package/dist/ui.d.ts +12 -0
- package/dist/ui.es.js +407 -367
- package/package.json +1 -1
package/dist/ui.d.ts
CHANGED
|
@@ -152,6 +152,13 @@ declare function install(app: App): void;
|
|
|
152
152
|
|
|
153
153
|
export declare const MonoColors: readonly ["black", "gray", "white"];
|
|
154
154
|
|
|
155
|
+
declare interface Props {
|
|
156
|
+
/** Idioma del componente: 'es' para español, 'en' para inglés (ISO 639-1) */
|
|
157
|
+
lang?: 'es' | 'en';
|
|
158
|
+
/** Enlace de soporte técnico */
|
|
159
|
+
supportLink?: string;
|
|
160
|
+
}
|
|
161
|
+
|
|
155
162
|
export declare type SelectItemType = {
|
|
156
163
|
/** Unique value inside the select */
|
|
157
164
|
id?: string;
|
|
@@ -227,6 +234,11 @@ declare const Types: string[];
|
|
|
227
234
|
|
|
228
235
|
declare type Types_2 = (typeof Types)[number];
|
|
229
236
|
|
|
237
|
+
export declare const ui404: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
238
|
+
lang: "es" | "en";
|
|
239
|
+
supportLink: string;
|
|
240
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
241
|
+
|
|
230
242
|
export declare const uiAlert: __VLS_WithTemplateSlots_4<DefineComponent<UiAlertInterface, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
231
243
|
alertEvent: (T: string) => any;
|
|
232
244
|
}, string, PublicProps, Readonly<UiAlertInterface> & Readonly<{
|