@aerogel/core 0.1.1-next.3efa6858f5942a7048392e08e88f511c6c5ca343 → 0.1.1-next.794da2a581990f8be4a2f33880a77e15fa1e40a7
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 +5 -0
- package/dist/aerogel-core.js +798 -774
- package/dist/aerogel-core.js.map +1 -1
- package/package.json +2 -1
- package/src/components/ui/Details.vue +5 -2
- package/src/components/ui/Input.vue +12 -4
- package/src/components/ui/LoadingModal.vue +1 -2
- package/src/components/ui/Modal.vue +1 -1
- package/src/components/ui/ProgressBar.vue +16 -2
- package/src/errors/Errors.ts +4 -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
|
};
|
|
@@ -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 = {
|
|
@@ -1545,6 +1549,7 @@ declare class ErrorsService extends _default {
|
|
|
1545
1549
|
forceReporting: boolean;
|
|
1546
1550
|
private enabled;
|
|
1547
1551
|
private eruda;
|
|
1552
|
+
private erudaPlugins;
|
|
1548
1553
|
enable(): void;
|
|
1549
1554
|
disable(): void;
|
|
1550
1555
|
inspect(error: ErrorSource | ErrorReport, reports?: ErrorReport[]): Promise<void>;
|