@aerogel/core 0.0.0-next.ea2e864c719d0a4d01b04729a9b681c0e9c85ea7 → 0.0.0-next.ec720bb060627e76b204dc15f6bf955d11a77cbc

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.
@@ -228,6 +228,8 @@ update(value: Nullable<FormFieldValue>): void;
228
228
  "onUpdate:modelValue"?: ((value: Nullable<FormFieldValue>) => any) | undefined;
229
229
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
230
230
 
231
+ declare const __VLS_component_30: DefineComponent<__VLS_Props_22, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_22> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
232
+
231
233
  declare const __VLS_component_4: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
232
234
 
233
235
  declare const __VLS_component_5: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
@@ -446,7 +448,15 @@ declare type __VLS_Props_21 = {
446
448
  class?: HTMLAttributes['class'];
447
449
  };
448
450
 
449
- declare type __VLS_Props_22 = ToastProps & {
451
+ declare type __VLS_Props_22 = {
452
+ title: string;
453
+ titleId?: string;
454
+ description?: string;
455
+ class?: HTMLAttributes['class'];
456
+ layout?: 'vertical' | 'horizontal';
457
+ };
458
+
459
+ declare type __VLS_Props_23 = ToastProps & {
450
460
  class?: HTMLAttributes['class'];
451
461
  };
452
462
 
@@ -777,6 +787,15 @@ declare function __VLS_template_3(): {
777
787
  rootEl: any;
778
788
  };
779
789
 
790
+ declare function __VLS_template_30(): {
791
+ attrs: Partial<{}>;
792
+ slots: {
793
+ default?(_: {}): any;
794
+ };
795
+ refs: {};
796
+ rootEl: HTMLDivElement;
797
+ };
798
+
780
799
  declare function __VLS_template_4(): {
781
800
  attrs: Partial<{}>;
782
801
  slots: {
@@ -997,6 +1016,8 @@ declare type __VLS_TemplateResult_29 = ReturnType<typeof __VLS_template_29>;
997
1016
 
998
1017
  declare type __VLS_TemplateResult_3 = ReturnType<typeof __VLS_template_3>;
999
1018
 
1019
+ declare type __VLS_TemplateResult_30 = ReturnType<typeof __VLS_template_30>;
1020
+
1000
1021
  declare type __VLS_TemplateResult_4 = ReturnType<typeof __VLS_template_4>;
1001
1022
 
1002
1023
  declare type __VLS_TemplateResult_5 = ReturnType<typeof __VLS_template_5>;
@@ -1147,6 +1168,12 @@ declare type __VLS_WithTemplateSlots_3<T, S> = T & {
1147
1168
  };
1148
1169
  };
1149
1170
 
1171
+ declare type __VLS_WithTemplateSlots_30<T, S> = T & {
1172
+ new (): {
1173
+ $slots: S;
1174
+ };
1175
+ };
1176
+
1150
1177
  declare type __VLS_WithTemplateSlots_4<T, S> = T & {
1151
1178
  new (): {
1152
1179
  $slots: S;
@@ -1202,6 +1229,7 @@ export declare interface AerogelOptions {
1202
1229
 
1203
1230
  export declare interface AerogelTestingRuntime {
1204
1231
  on: (typeof Events)['on'];
1232
+ service<T extends keyof Services>(name: T): Services[T] | null;
1205
1233
  }
1206
1234
 
1207
1235
  export declare const AlertModal: DefineComponent<AlertModalProps, {
@@ -2004,6 +2032,7 @@ export declare type LoadingOptions = AcceptRefs<{
2004
2032
  title?: string;
2005
2033
  message?: string;
2006
2034
  progress?: number;
2035
+ delay?: number;
2007
2036
  }>;
2008
2037
 
2009
2038
  export declare const Markdown: __VLS_WithTemplateSlots_26<typeof __VLS_component_26, __VLS_TemplateResult_26["slots"]>;
@@ -2271,6 +2300,8 @@ export declare type ServiceWithState<State extends ServiceState = ServiceState,
2271
2300
 
2272
2301
  export declare function setMarkdownRouter(markdownRouter: MarkdownRouter): void;
2273
2302
 
2303
+ export declare const Setting: __VLS_WithTemplateSlots_30<typeof __VLS_component_30, __VLS_TemplateResult_30["slots"]>;
2304
+
2274
2305
  export declare const SettingsModal: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
2275
2306
 
2276
2307
  export declare const StartupCrash: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
@@ -2294,7 +2325,7 @@ export declare type SubmitFormListener = () => unknown;
2294
2325
 
2295
2326
  export declare const Switch: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
2296
2327
 
2297
- export declare const Toast: DefineComponent<__VLS_Props_22, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_22> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
2328
+ export declare const Toast: DefineComponent<__VLS_Props_23, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_23> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
2298
2329
 
2299
2330
  export declare interface ToastAction {
2300
2331
  label: string;