@datarailsshared/datarailsshared 1.6.81 → 1.6.83
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/datarailsshared-datarailsshared-1.6.83.tgz +0 -0
- package/esm2022/lib/dr-inputs/dr-link/dr-link.component.mjs +2 -2
- package/esm2022/lib/dr-progress-bar/dr-progress-bar.component.mjs +48 -0
- package/esm2022/public-api.mjs +2 -1
- package/fesm2022/datarailsshared-datarailsshared.mjs +135 -91
- package/fesm2022/datarailsshared-datarailsshared.mjs.map +1 -1
- package/lib/dr-progress-bar/dr-progress-bar.component.d.ts +13 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
- package/datarailsshared-datarailsshared-1.6.81.tgz +0 -0
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class DrProgressBarComponent {
|
|
3
|
+
/**
|
|
4
|
+
* @description from 0 to 100
|
|
5
|
+
*/
|
|
6
|
+
progress: number;
|
|
7
|
+
/**
|
|
8
|
+
* @description Option to hide value label
|
|
9
|
+
*/
|
|
10
|
+
showValue: boolean;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DrProgressBarComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DrProgressBarComponent, "dr-progress-bar", never, { "progress": { "alias": "progress"; "required": true; }; "showValue": { "alias": "showValue"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
13
|
+
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -154,4 +154,5 @@ export { DrToastrModule } from './lib/dr-toastr/dr-toastr.module';
|
|
|
154
154
|
export { DrCodeEditorModule } from './lib/dr-code-editor/dr-code-editor.module';
|
|
155
155
|
export { DrChipComponent } from './lib/dr-chip/dr-chip.component';
|
|
156
156
|
export { DrGalleryComponent } from './lib/dr-gallery/dr-gallery.component';
|
|
157
|
+
export { DrProgressBarComponent } from './lib/dr-progress-bar/dr-progress-bar.component';
|
|
157
158
|
export * from './lib/drawer/public-api';
|
|
Binary file
|