@datarailsshared/datarailsshared 1.4.158-rocket → 1.4.159
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/bundles/datarailsshared-datarailsshared.umd.js +513 -396
- package/bundles/datarailsshared-datarailsshared.umd.js.map +1 -1
- package/datarailsshared-datarailsshared-1.4.159.tgz +0 -0
- package/datarailsshared-datarailsshared.d.ts +23 -22
- package/datarailsshared-datarailsshared.metadata.json +1 -1
- package/esm2015/datarailsshared-datarailsshared.js +24 -23
- package/esm2015/lib/date-tags/date-tag.component.js +2 -4
- package/esm2015/lib/date-tags/date-tag.module.js +1 -3
- package/esm2015/lib/date-tags/day-tag/day-tag.component.js +13 -3
- package/esm2015/lib/date-tags/forecast-tag/forecast-tag.component.js +1 -3
- package/esm2015/lib/date-tags/month-tag/month-tag.component.js +13 -3
- package/esm2015/lib/date-tags/week-tag/week-tag.component.js +13 -3
- package/esm2015/lib/date-tags/year-tag/year-tag.component.js +13 -3
- package/esm2015/lib/dr-details-list/dr-details-list.component.js +65 -0
- package/esm2015/lib/dr-details-list/dr-details-list.module.js +16 -0
- package/esm2015/lib/dr-dialog/components/dialog-wrapper/dialog-wrapper.component.js +3 -3
- package/esm2015/lib/dr-dialog/dialog.module.js +4 -2
- package/esm2015/lib/dr-dialog/interfaces/dialog-data.js +1 -1
- package/esm2015/lib/dr-tags/dr-tag.component.js +1 -3
- package/esm2015/lib/dr-tags/dr-tag.module.js +2 -3
- package/esm2015/lib/stepper/stepper.component.js +3 -3
- package/esm2015/public-api.js +3 -2
- package/fesm2015/datarailsshared-datarailsshared.js +465 -362
- package/fesm2015/datarailsshared-datarailsshared.js.map +1 -1
- package/lib/dr-details-list/dr-details-list.component.d.ts +12 -0
- package/lib/dr-details-list/dr-details-list.module.d.ts +2 -0
- package/lib/dr-dialog/interfaces/dialog-data.d.ts +8 -0
- package/lib/dr-inputs/date-pickers/services/dr-date-picker.service.d.ts +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +2 -1
- package/datarailsshared-datarailsshared-1.4.158-rocket.tgz +0 -0
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { OnDestroy } from '@angular/core';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
export declare class DrDetailsListComponent implements OnDestroy {
|
|
4
|
+
private destroy$;
|
|
5
|
+
list: string[];
|
|
6
|
+
title: string;
|
|
7
|
+
set items(val: string[] | Observable<string[]>);
|
|
8
|
+
collapse: boolean;
|
|
9
|
+
get state(): string;
|
|
10
|
+
constructor();
|
|
11
|
+
ngOnDestroy(): void;
|
|
12
|
+
}
|
|
@@ -33,6 +33,10 @@ export interface DialogData<T = any> extends DialogConfig {
|
|
|
33
33
|
fields?: ModalFormField[];
|
|
34
34
|
hideCloseBtn?: boolean;
|
|
35
35
|
footerTemplateData?: FooterTemplateData;
|
|
36
|
+
details?: {
|
|
37
|
+
title?: string;
|
|
38
|
+
items?: string[] | Observable<string[]>;
|
|
39
|
+
};
|
|
36
40
|
};
|
|
37
41
|
}
|
|
38
42
|
export interface ConfirmDialogData {
|
|
@@ -54,6 +58,10 @@ export interface ConfirmDialogData {
|
|
|
54
58
|
confirmFn?: (response?: any) => Observable<any>;
|
|
55
59
|
fields?: ModalFormField[];
|
|
56
60
|
footerTemplateData?: FooterTemplateData;
|
|
61
|
+
details?: {
|
|
62
|
+
title?: string;
|
|
63
|
+
items?: string[] | Observable<string[]>;
|
|
64
|
+
};
|
|
57
65
|
}
|
|
58
66
|
export interface ConfirmDialogModalData extends ConfirmDialogData {
|
|
59
67
|
confirmFn?: any;
|
|
@@ -18,7 +18,7 @@ export declare class DrDatePickerService {
|
|
|
18
18
|
formatConfig: IDatePickerFormatConfig;
|
|
19
19
|
calendarInstance: MatCalendar<any>;
|
|
20
20
|
fiscalYearMonthsModifier: number;
|
|
21
|
-
getDisplayPrefix(): "
|
|
21
|
+
getDisplayPrefix(): "" | "Q" | "W";
|
|
22
22
|
getTimeframe(format: string): TimeframeOption;
|
|
23
23
|
getConfiguredFormat(timeframe: TTimeframeOption): string;
|
|
24
24
|
updateTimeframeAndFormat(format: string): void;
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -41,6 +41,7 @@ export * from './lib/dr-layout/dr-layout-header.component';
|
|
|
41
41
|
export * from './lib/dr-layout/dr-layout-body.component';
|
|
42
42
|
export * from './lib/dr-error/dr-error.component';
|
|
43
43
|
export * from './lib/dr-dialog/services/dialog.service';
|
|
44
|
+
export * from './lib/dr-details-list/dr-details-list.component';
|
|
44
45
|
export { TooltipPosition } from './lib/dr-tooltip/enums/tooltip-position.enum';
|
|
45
46
|
export { TooltipInfoContext } from './lib/dr-tooltip/interfaces/tooltip-component-context';
|
|
46
47
|
export { Step } from './lib/stepper/interfaces/stepper';
|
|
@@ -53,7 +54,6 @@ export { ElPosition, IDropdown, IDropdownItem, IDropdownActionIcon, IDropdownCoo
|
|
|
53
54
|
export { DrPopoverRef, IDrPopoverComponentModel, Point, DrPopoverConfig, IPopoverManualClosing, DrPopoverAlignment, DrPopoverAlignmentDimension, } from './lib/models/popover';
|
|
54
55
|
export { IValidationError } from './lib/models/validationError';
|
|
55
56
|
export * from './lib/models/chat';
|
|
56
|
-
export { DrDatePickerService } from './lib/dr-inputs/date-pickers/services/dr-date-picker.service';
|
|
57
57
|
export { DateTagModule } from './lib/date-tags/date-tag.module';
|
|
58
58
|
export { ListTagModule } from './lib/list-tags/list-tag.module';
|
|
59
59
|
export { DrTagModule } from './lib/dr-tags/dr-tag.module';
|
|
@@ -71,3 +71,4 @@ export { DrErrorModule } from './lib/dr-error/dr-error.module';
|
|
|
71
71
|
export { DrStepperModule } from './lib/stepper/stepper.module';
|
|
72
72
|
export { DrDialogModule } from './lib/dr-dialog/dialog.module';
|
|
73
73
|
export { DrChatModule } from './lib/dr-chat/chat.module';
|
|
74
|
+
export { DrDetailsListModule } from './lib/dr-details-list/dr-details-list.module';
|
|
Binary file
|