@alfresco/adf-core 8.4.0-20847691470 → 8.4.0-20851019409
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/fesm2022/adf-core.mjs +43 -125
- package/fesm2022/adf-core.mjs.map +1 -1
- package/package.json +3 -3
- package/public-api.d.ts +0 -1
- package/lib/progress/progress.component.d.ts +0 -36
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alfresco/adf-core",
|
|
3
3
|
"description": "Alfresco ADF core",
|
|
4
|
-
"version": "8.4.0-
|
|
4
|
+
"version": "8.4.0-20851019409",
|
|
5
5
|
"author": "Hyland Software, Inc. and its affiliates",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -63,8 +63,8 @@
|
|
|
63
63
|
"@angular/router": ">=16.0.0",
|
|
64
64
|
"@mat-datetimepicker/core": ">=12.0.1",
|
|
65
65
|
"@ngx-translate/core": ">=16.0.0",
|
|
66
|
-
"@alfresco/js-api": ">=9.4.0-
|
|
67
|
-
"@alfresco/adf-extensions": ">=8.4.0-
|
|
66
|
+
"@alfresco/js-api": ">=9.4.0-20851019409",
|
|
67
|
+
"@alfresco/adf-extensions": ">=8.4.0-20851019409",
|
|
68
68
|
"minimatch": ">=10.0.0",
|
|
69
69
|
"pdfjs-dist": ">=3.3.122"
|
|
70
70
|
},
|
package/public-api.d.ts
CHANGED
|
@@ -17,7 +17,6 @@
|
|
|
17
17
|
export * from './lib/about/index';
|
|
18
18
|
export * from './lib/avatar/avatar.component';
|
|
19
19
|
export * from './lib/button/button.component';
|
|
20
|
-
export * from './lib/progress/progress.component';
|
|
21
20
|
export * from './lib/viewer/index';
|
|
22
21
|
export * from './lib/toolbar/index';
|
|
23
22
|
export * from './lib/header/index';
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
import { ProgressBarMode } from '@angular/material/progress-bar';
|
|
2
|
-
import { ProgressSpinnerMode } from '@angular/material/progress-spinner';
|
|
3
|
-
import { ThemePalette } from '@angular/material/core';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export type ProgressVariant = 'bar' | 'spinner' | undefined;
|
|
6
|
-
export type ProgressMode = ProgressBarMode | ProgressSpinnerMode;
|
|
7
|
-
export type ProgressColor = ThemePalette;
|
|
8
|
-
export declare class ProgressComponent {
|
|
9
|
-
private _mode;
|
|
10
|
-
private _value?;
|
|
11
|
-
variant: ProgressVariant;
|
|
12
|
-
color?: ProgressColor;
|
|
13
|
-
ariaLabel?: string;
|
|
14
|
-
ariaHidden?: boolean;
|
|
15
|
-
testId?: string;
|
|
16
|
-
/**
|
|
17
|
-
* The value of the progress bar or spinner.
|
|
18
|
-
* Changes the mode to `determinate` if a value is provided.
|
|
19
|
-
*
|
|
20
|
-
* @returns The progress value
|
|
21
|
-
*/
|
|
22
|
-
get value(): number | undefined;
|
|
23
|
-
set value(value: number | undefined);
|
|
24
|
-
/**
|
|
25
|
-
* The progress bar display mode. Defaults to `indeterminate`.
|
|
26
|
-
*
|
|
27
|
-
* For progress spinner, the mode can be either `indeterminate` or `determinate`.
|
|
28
|
-
* For progress bar, the mode can be either `determinate`, `indeterminate`, `buffer`, or `query`.
|
|
29
|
-
*
|
|
30
|
-
* @returns The progress mode
|
|
31
|
-
*/
|
|
32
|
-
get mode(): ProgressMode;
|
|
33
|
-
set mode(value: ProgressMode);
|
|
34
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ProgressComponent, never>;
|
|
35
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ProgressComponent, "adf-progress", never, { "variant": { "alias": "variant"; "required": false; }; "color": { "alias": "color"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "ariaHidden": { "alias": "ariaHidden"; "required": false; }; "testId": { "alias": "testId"; "required": false; }; "value": { "alias": "value"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; }, {}, never, never, true, never>;
|
|
36
|
-
}
|