@datarailsshared/datarailsshared 1.6.167 → 1.6.171
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.171.tgz +0 -0
- package/esm2022/lib/dr-badge/dr-badge.component.mjs +31 -0
- package/esm2022/lib/dr-progress-bar/dr-progress-bar.component.mjs +13 -5
- package/esm2022/public-api.mjs +2 -1
- package/fesm2022/datarailsshared-datarailsshared.mjs +130 -93
- package/fesm2022/datarailsshared-datarailsshared.mjs.map +1 -1
- package/lib/dr-badge/dr-badge.component.d.ts +10 -0
- package/lib/dr-progress-bar/dr-progress-bar.component.d.ts +3 -1
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
- package/datarailsshared-datarailsshared-1.6.167.tgz +0 -0
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export type TBadgeSize = 'medium' | 'small';
|
|
3
|
+
export type TBadgeColor = 'light-purple' | 'water' | 'baby-blue' | 'baby-pink' | 'light-turquoise' | 'bright-green' | 'stone' | 'peach' | 'soft-coral' | 'pale-yellow' | 'pastel-olive' | 'powder-blue-grey' | 'muted-plum';
|
|
4
|
+
export declare class DrBadgeComponent {
|
|
5
|
+
color: TBadgeColor;
|
|
6
|
+
size: TBadgeSize;
|
|
7
|
+
get elementClasses(): string;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DrBadgeComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DrBadgeComponent, "dr-badge", never, { "color": { "alias": "color"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
10
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
|
+
export type TProgressBarTheme = 'light' | 'dark';
|
|
2
3
|
export declare class DrProgressBarComponent {
|
|
3
4
|
/**
|
|
4
5
|
* @description from 0 to 100
|
|
@@ -8,6 +9,7 @@ export declare class DrProgressBarComponent {
|
|
|
8
9
|
* @description Option to hide value label
|
|
9
10
|
*/
|
|
10
11
|
showValue: boolean;
|
|
12
|
+
theme: TProgressBarTheme;
|
|
11
13
|
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>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DrProgressBarComponent, "dr-progress-bar", never, { "progress": { "alias": "progress"; "required": true; }; "showValue": { "alias": "showValue"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
13
15
|
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -157,6 +157,7 @@ export { DrCodeEditorModule } from './lib/dr-code-editor/dr-code-editor.module';
|
|
|
157
157
|
export { DrChipComponent } from './lib/dr-chip/dr-chip.component';
|
|
158
158
|
export { DrGalleryComponent } from './lib/dr-gallery/dr-gallery.component';
|
|
159
159
|
export { DrProgressBarComponent } from './lib/dr-progress-bar/dr-progress-bar.component';
|
|
160
|
+
export { DrBadgeComponent } from './lib/dr-badge/dr-badge.component';
|
|
160
161
|
export * from './lib/drawer/public-api';
|
|
161
162
|
export * from './lib/stepper-wizard/stepper-wizard.component';
|
|
162
163
|
export * from './lib/stepper-wizard/directives/step-wizard.directive';
|
|
Binary file
|