@aerogel/core 0.1.1-next.a33efa4fd6560f7df50d8a64a9e9e2a2f62e79bb → 0.1.1-next.bad775a386a94fedbee1d575ee1f4fb99d1f5bab

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.
@@ -378,6 +378,8 @@ declare type __VLS_Props_13 = {
378
378
  declare type __VLS_Props_14 = InputProps & {
379
379
  inputClass?: HTMLAttributes['class'];
380
380
  wrapperClass?: HTMLAttributes['class'];
381
+ descriptionClass?: HTMLAttributes['class'];
382
+ errorClass?: HTMLAttributes['class'];
381
383
  };
382
384
 
383
385
  declare type __VLS_Props_15 = Omit<ButtonProps, 'variant'>;
@@ -394,6 +396,7 @@ declare type __VLS_Props_16 = {
394
396
 
395
397
  declare type __VLS_Props_17 = {
396
398
  filledClass?: string;
399
+ overflowClass?: string;
397
400
  progress?: number;
398
401
  job?: Falsifiable<Job>;
399
402
  };
@@ -453,6 +456,7 @@ declare type __VLS_Props_6 = InputProps & {
453
456
 
454
457
  declare type __VLS_Props_7 = {
455
458
  label: string;
459
+ contentClass?: HTMLAttributes['class'];
456
460
  };
457
461
 
458
462
  declare type __VLS_Props_8 = {
@@ -1220,6 +1224,7 @@ export declare class AppService extends _default_3 {
1220
1224
  isReady(): boolean;
1221
1225
  isMounted(): boolean;
1222
1226
  addSetting(setting: AppSetting): void;
1227
+ setSettingsFullscreenOnMobile(fullscreenOnMobile: boolean): void;
1223
1228
  whenReady<T>(callback: () => T): Promise<T>;
1224
1229
  reload(queryParameters?: Record<string, string | undefined>): Promise<void>;
1225
1230
  plugin<T extends Plugin_2 = Plugin_2>(name: string): T | null;
@@ -1391,6 +1396,7 @@ environment: string;
1391
1396
  version: string;
1392
1397
  sourceUrl: string | undefined;
1393
1398
  settings: AppSetting[];
1399
+ settingsFullscreenOnMobile: boolean;
1394
1400
  }, {
1395
1401
  development: boolean;
1396
1402
  staging: boolean;
@@ -1404,6 +1410,7 @@ environment: string;
1404
1410
  version: string;
1405
1411
  sourceUrl: string | undefined;
1406
1412
  settings: AppSetting[];
1413
+ settingsFullscreenOnMobile: boolean;
1407
1414
  }>>;
1408
1415
 
1409
1416
  declare const _default_4: ServiceWithState< {
@@ -1545,6 +1552,7 @@ declare class ErrorsService extends _default {
1545
1552
  forceReporting: boolean;
1546
1553
  private enabled;
1547
1554
  private eruda;
1555
+ private erudaPlugins;
1548
1556
  enable(): void;
1549
1557
  disable(): void;
1550
1558
  inspect(error: ErrorSource | ErrorReport, reports?: ErrorReport[]): Promise<void>;
@@ -2074,7 +2082,7 @@ export declare interface ModalExpose {
2074
2082
  export declare interface ModalProps {
2075
2083
  persistent?: boolean;
2076
2084
  fullscreen?: boolean;
2077
- fullscreenMobile?: boolean;
2085
+ fullscreenOnMobile?: boolean;
2078
2086
  title?: string;
2079
2087
  titleHidden?: boolean;
2080
2088
  description?: string;
@@ -2654,6 +2662,7 @@ declare module '@aerogel/core' {
2654
2662
  interface AerogelOptions {
2655
2663
  services?: Record<string, Service>;
2656
2664
  settings?: AppSetting[];
2665
+ settingsFullscreenOnMobile?: boolean;
2657
2666
  }
2658
2667
  }
2659
2668