@crowdfarming/oliva-ds 1.85.0 → 1.86.0-rc.2
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/crowdfarming-oliva-ds.mjs +178 -144
- package/fesm2022/crowdfarming-oliva-ds.mjs.map +1 -1
- package/index.d.ts +2 -0
- package/lib/progress-bar/src/index.d.ts +1 -0
- package/lib/progress-bar/src/lib/progress-bar/progress-bar.component.d.ts +11 -0
- package/lib/progress-bar-item/src/index.d.ts +1 -0
- package/lib/progress-bar-item/src/lib/progress-bar-item/progress-bar-item.component.d.ts +17 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -28,6 +28,8 @@ export * from './lib/modal/src/index';
|
|
|
28
28
|
export * from './lib/overlay/src/index';
|
|
29
29
|
export * from './lib/pagination/src/index';
|
|
30
30
|
export * from './lib/password-input/src/index';
|
|
31
|
+
export * from './lib/progress-bar/src/index';
|
|
32
|
+
export * from './lib/progress-bar-item/src/index';
|
|
31
33
|
export * from './lib/radio-group/src/index';
|
|
32
34
|
export * from './lib/radio/src/index';
|
|
33
35
|
export * from './lib/segmented-control/src/index';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './lib/progress-bar/progress-bar.component';
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export type ProgressBarSize = 'xs' | 'sm' | 'md';
|
|
3
|
+
export declare class ProgressBarComponent {
|
|
4
|
+
readonly progress: import("@angular/core").InputSignal<number>;
|
|
5
|
+
readonly size: import("@angular/core").InputSignal<ProgressBarSize>;
|
|
6
|
+
readonly ariaLabel: import("@angular/core").InputSignal<string>;
|
|
7
|
+
readonly clampedProgress: import("@angular/core").Signal<number>;
|
|
8
|
+
get classes(): string;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProgressBarComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ProgressBarComponent, "lib-progress-bar", never, { "progress": { "alias": "progress"; "required": true; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
11
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './lib/progress-bar-item/progress-bar-item.component';
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { TooltipPosition } from '../../../../tooltip/src/lib/tooltip/tooltip.directive';
|
|
2
|
+
import { ProgressBarSize } from '../../../../progress-bar/src/lib/progress-bar/progress-bar.component';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export type ProgressBarItemAlign = 'horizontal' | 'vertical';
|
|
5
|
+
export declare class ProgressBarItemComponent {
|
|
6
|
+
readonly value: import("@angular/core").InputSignal<string>;
|
|
7
|
+
readonly text: import("@angular/core").InputSignal<string>;
|
|
8
|
+
readonly tooltip: import("@angular/core").InputSignal<string>;
|
|
9
|
+
readonly progress: import("@angular/core").InputSignal<number>;
|
|
10
|
+
readonly size: import("@angular/core").InputSignal<ProgressBarSize>;
|
|
11
|
+
readonly align: import("@angular/core").InputSignal<ProgressBarItemAlign>;
|
|
12
|
+
readonly ariaLabel: import("@angular/core").InputSignal<string>;
|
|
13
|
+
readonly showIcon: import("@angular/core").Signal<boolean>;
|
|
14
|
+
readonly TooltipPosition: typeof TooltipPosition;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProgressBarItemComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ProgressBarItemComponent, "lib-progress-bar-item", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "text": { "alias": "text"; "required": false; "isSignal": true; }; "tooltip": { "alias": "tooltip"; "required": false; "isSignal": true; }; "progress": { "alias": "progress"; "required": true; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "align": { "alias": "align"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
17
|
+
}
|