@aerogel/core 0.1.1-next.3efa6858f5942a7048392e08e88f511c6c5ca343 → 0.1.1-next.47ee6e5e3485291a8763a804016f87a051476893
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/aerogel-core.d.ts +13 -2
- package/dist/aerogel-core.js +908 -869
- package/dist/aerogel-core.js.map +1 -1
- package/package.json +2 -1
- package/src/components/AppLayout.vue +1 -1
- package/src/components/contracts/Modal.ts +1 -1
- package/src/components/ui/Details.vue +19 -6
- package/src/components/ui/Input.vue +12 -4
- package/src/components/ui/LoadingModal.vue +1 -2
- package/src/components/ui/Modal.vue +3 -3
- package/src/components/ui/ProgressBar.vue +16 -2
- package/src/components/ui/SettingsModal.vue +1 -1
- package/src/errors/Errors.ts +4 -0
- package/src/index.css +1 -0
- package/src/services/App.state.ts +1 -0
- package/src/services/App.ts +4 -0
- package/src/services/index.ts +5 -0
package/dist/aerogel-core.d.ts
CHANGED
|
@@ -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
|
};
|
|
@@ -452,7 +455,9 @@ declare type __VLS_Props_6 = InputProps & {
|
|
|
452
455
|
};
|
|
453
456
|
|
|
454
457
|
declare type __VLS_Props_7 = {
|
|
455
|
-
label
|
|
458
|
+
label?: string;
|
|
459
|
+
contentClass?: HTMLAttributes['class'];
|
|
460
|
+
summaryClass?: HTMLAttributes['class'];
|
|
456
461
|
};
|
|
457
462
|
|
|
458
463
|
declare type __VLS_Props_8 = {
|
|
@@ -642,6 +647,7 @@ declare function __VLS_template_18(): {
|
|
|
642
647
|
declare function __VLS_template_19(): {
|
|
643
648
|
attrs: Partial<{}>;
|
|
644
649
|
slots: {
|
|
650
|
+
label?(_: {}): any;
|
|
645
651
|
default?(_: {}): any;
|
|
646
652
|
};
|
|
647
653
|
refs: {};
|
|
@@ -1220,6 +1226,7 @@ export declare class AppService extends _default_3 {
|
|
|
1220
1226
|
isReady(): boolean;
|
|
1221
1227
|
isMounted(): boolean;
|
|
1222
1228
|
addSetting(setting: AppSetting): void;
|
|
1229
|
+
setSettingsFullscreenOnMobile(fullscreenOnMobile: boolean): void;
|
|
1223
1230
|
whenReady<T>(callback: () => T): Promise<T>;
|
|
1224
1231
|
reload(queryParameters?: Record<string, string | undefined>): Promise<void>;
|
|
1225
1232
|
plugin<T extends Plugin_2 = Plugin_2>(name: string): T | null;
|
|
@@ -1391,6 +1398,7 @@ environment: string;
|
|
|
1391
1398
|
version: string;
|
|
1392
1399
|
sourceUrl: string | undefined;
|
|
1393
1400
|
settings: AppSetting[];
|
|
1401
|
+
settingsFullscreenOnMobile: boolean;
|
|
1394
1402
|
}, {
|
|
1395
1403
|
development: boolean;
|
|
1396
1404
|
staging: boolean;
|
|
@@ -1404,6 +1412,7 @@ environment: string;
|
|
|
1404
1412
|
version: string;
|
|
1405
1413
|
sourceUrl: string | undefined;
|
|
1406
1414
|
settings: AppSetting[];
|
|
1415
|
+
settingsFullscreenOnMobile: boolean;
|
|
1407
1416
|
}>>;
|
|
1408
1417
|
|
|
1409
1418
|
declare const _default_4: ServiceWithState< {
|
|
@@ -1545,6 +1554,7 @@ declare class ErrorsService extends _default {
|
|
|
1545
1554
|
forceReporting: boolean;
|
|
1546
1555
|
private enabled;
|
|
1547
1556
|
private eruda;
|
|
1557
|
+
private erudaPlugins;
|
|
1548
1558
|
enable(): void;
|
|
1549
1559
|
disable(): void;
|
|
1550
1560
|
inspect(error: ErrorSource | ErrorReport, reports?: ErrorReport[]): Promise<void>;
|
|
@@ -2074,7 +2084,7 @@ export declare interface ModalExpose {
|
|
|
2074
2084
|
export declare interface ModalProps {
|
|
2075
2085
|
persistent?: boolean;
|
|
2076
2086
|
fullscreen?: boolean;
|
|
2077
|
-
|
|
2087
|
+
fullscreenOnMobile?: boolean;
|
|
2078
2088
|
title?: string;
|
|
2079
2089
|
titleHidden?: boolean;
|
|
2080
2090
|
description?: string;
|
|
@@ -2654,6 +2664,7 @@ declare module '@aerogel/core' {
|
|
|
2654
2664
|
interface AerogelOptions {
|
|
2655
2665
|
services?: Record<string, Service>;
|
|
2656
2666
|
settings?: AppSetting[];
|
|
2667
|
+
settingsFullscreenOnMobile?: boolean;
|
|
2657
2668
|
}
|
|
2658
2669
|
}
|
|
2659
2670
|
|