@datarailsshared/datarailsshared 1.6.273 → 1.6.277
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.277.tgz +0 -0
- package/esm2022/lib/dr-inputs/date-pickers/dr-fiscal-month-calendar-picker/dr-fiscal-month-calendar-picker.component.mjs +2 -2
- package/esm2022/lib/dr-inputs/dr-toggle-button/dr-toggle-button.component.mjs +34 -19
- package/esm2022/lib/dr-tags/_consts/scenario-tags-config.mjs +87 -0
- package/esm2022/lib/dr-tags/_interfaces/scenario.mjs +8 -0
- package/esm2022/lib/dr-tags/_services/scenario.service.mjs +195 -0
- package/esm2022/lib/dr-tags/_services/tags-constructor.service.mjs +71 -0
- package/esm2022/lib/dr-tags/dr-tag/dr-tag-date/any-tag.component.mjs +42 -0
- package/esm2022/lib/dr-tags/dr-tag/dr-tag-date/dr-tag-date.component.mjs +151 -0
- package/esm2022/lib/dr-tags/dr-tag/dr-tag-date/dr-tag-day/dr-tag-day.component.mjs +98 -0
- package/esm2022/lib/dr-tags/dr-tag/dr-tag-date/dr-tag-forecast/dr-tag-forecast.component.mjs +225 -0
- package/esm2022/lib/dr-tags/dr-tag/dr-tag-date/dr-tag-forecast/forecast-tag.service.mjs +87 -0
- package/esm2022/lib/dr-tags/dr-tag/dr-tag-date/dr-tag-month/dr-tag-month.component.mjs +101 -0
- package/esm2022/lib/dr-tags/dr-tag/dr-tag-date/dr-tag-quarter/dr-tag-quarter.component.mjs +129 -0
- package/esm2022/lib/dr-tags/dr-tag/dr-tag-date/dr-tag-week/dr-tag-week.component.mjs +105 -0
- package/esm2022/lib/dr-tags/dr-tag/dr-tag-date/dr-tag-year/dr-tag-year.component.mjs +99 -0
- package/esm2022/lib/dr-tags/dr-tag/dr-tag-dynamic/dr-tag-dynamic.component.mjs +230 -0
- package/esm2022/lib/dr-tags/dr-tag/dr-tag-list/dr-tag-list.component.mjs +85 -0
- package/esm2022/lib/dr-tags/dr-tag/dr-tag.component.mjs +241 -0
- package/esm2022/lib/dr-tags/dr-tag/dr-tag.types.mjs +2 -0
- package/esm2022/lib/dr-tags/dr-tags-and-scenario/dr-tags-and-scenario.component.mjs +103 -0
- package/esm2022/lib/dr-tags/dr-tags-and-scenario-constructor/dr-tags-and-scenario-constructor.component.mjs +107 -0
- package/esm2022/lib/dr-tags/dr-tags-constructor/dr-tags-constructor.component.mjs +164 -0
- package/esm2022/local-api.mjs +18 -25
- package/fesm2022/datarailsshared-datarailsshared.mjs +8655 -8743
- package/fesm2022/datarailsshared-datarailsshared.mjs.map +1 -1
- package/lib/dr-inputs/dr-toggle-button/dr-toggle-button.component.d.ts +6 -3
- package/lib/{dr-scenario/consts → dr-tags/_consts}/scenario-tags-config.d.ts +1 -1
- package/lib/{dr-scenario/services → dr-tags/_services}/scenario.service.d.ts +1 -1
- package/lib/{dr-tags-constructor → dr-tags/_services}/tags-constructor.service.d.ts +2 -2
- package/lib/{date-tags → dr-tags/dr-tag/dr-tag-date}/any-tag.component.d.ts +1 -1
- package/lib/dr-tags/dr-tag/dr-tag-date/dr-tag-date.component.d.ts +18 -0
- package/lib/dr-tags/dr-tag/dr-tag-date/dr-tag-day/dr-tag-day.component.d.ts +14 -0
- package/lib/{date-tags/forecast-tag/forecast-tag.component.d.ts → dr-tags/dr-tag/dr-tag-date/dr-tag-forecast/dr-tag-forecast.component.d.ts} +5 -5
- package/lib/dr-tags/dr-tag/dr-tag-date/dr-tag-month/dr-tag-month.component.d.ts +14 -0
- package/lib/{date-tags/quarter-tag/quarter-tag.component.d.ts → dr-tags/dr-tag/dr-tag-date/dr-tag-quarter/dr-tag-quarter.component.d.ts} +3 -3
- package/lib/{date-tags/week-tag/week-tag.component.d.ts → dr-tags/dr-tag/dr-tag-date/dr-tag-week/dr-tag-week.component.d.ts} +3 -3
- package/lib/dr-tags/dr-tag/dr-tag-date/dr-tag-year/dr-tag-year.component.d.ts +14 -0
- package/lib/{dr-dynamic-tag/dr-dynamic-tag.component.d.ts → dr-tags/dr-tag/dr-tag-dynamic/dr-tag-dynamic.component.d.ts} +5 -5
- package/lib/dr-tags/dr-tag/dr-tag-list/dr-tag-list.component.d.ts +15 -0
- package/lib/dr-tags/{dr-tag.component.d.ts → dr-tag/dr-tag.component.d.ts} +2 -2
- package/lib/dr-tags/dr-tags-and-scenario/dr-tags-and-scenario.component.d.ts +31 -0
- package/lib/{dr-scenario/components/dr-scenario-configuration/dr-scenario-configuration.component.d.ts → dr-tags/dr-tags-and-scenario-constructor/dr-tags-and-scenario-constructor.component.d.ts} +6 -6
- package/lib/{dr-tags-constructor → dr-tags/dr-tags-constructor}/dr-tags-constructor.component.d.ts +6 -6
- package/local-api.d.ts +17 -24
- package/package.json +1 -1
- package/datarailsshared-datarailsshared-1.6.273.tgz +0 -0
- package/esm2022/lib/date-tags/any-tag.component.mjs +0 -42
- package/esm2022/lib/date-tags/date-tag.component.mjs +0 -131
- package/esm2022/lib/date-tags/date-tag.module.mjs +0 -53
- package/esm2022/lib/date-tags/day-tag/day-tag.component.mjs +0 -95
- package/esm2022/lib/date-tags/forecast-tag/forecast-tag.component.mjs +0 -222
- package/esm2022/lib/date-tags/forecast-tag/forecast-tag.service.mjs +0 -87
- package/esm2022/lib/date-tags/month-tag/month-tag.component.mjs +0 -98
- package/esm2022/lib/date-tags/quarter-tag/quarter-tag.component.mjs +0 -126
- package/esm2022/lib/date-tags/week-tag/week-tag.component.mjs +0 -102
- package/esm2022/lib/date-tags/year-tag/year-tag.component.mjs +0 -96
- package/esm2022/lib/dr-dynamic-tag/dr-dynamic-tag.component.mjs +0 -227
- package/esm2022/lib/dr-dynamic-tag/dr-dynamic-tag.module.mjs +0 -21
- package/esm2022/lib/dr-scenario/components/dr-scenario-configuration/dr-scenario-configuration.component.mjs +0 -104
- package/esm2022/lib/dr-scenario/components/dr-scenario-tag-configuration/dr-scenario-tag-configuration.component.mjs +0 -100
- package/esm2022/lib/dr-scenario/consts/scenario-tags-config.mjs +0 -87
- package/esm2022/lib/dr-scenario/dr-scenario.module.mjs +0 -27
- package/esm2022/lib/dr-scenario/interfaces/scenario.mjs +0 -8
- package/esm2022/lib/dr-scenario/services/scenario.service.mjs +0 -195
- package/esm2022/lib/dr-tags/dr-tag.component.mjs +0 -240
- package/esm2022/lib/dr-tags/dr-tag.module.mjs +0 -23
- package/esm2022/lib/dr-tags/dr-tag.types.mjs +0 -2
- package/esm2022/lib/dr-tags-constructor/dr-tags-constructor.component.mjs +0 -161
- package/esm2022/lib/dr-tags-constructor/dr-tags-constructor.module.mjs +0 -24
- package/esm2022/lib/dr-tags-constructor/tags-constructor.service.mjs +0 -71
- package/esm2022/lib/list-tags/list-tag.component.mjs +0 -82
- package/esm2022/lib/list-tags/list-tag.module.mjs +0 -22
- package/lib/date-tags/date-tag.component.d.ts +0 -18
- package/lib/date-tags/date-tag.module.d.ts +0 -21
- package/lib/date-tags/day-tag/day-tag.component.d.ts +0 -14
- package/lib/date-tags/month-tag/month-tag.component.d.ts +0 -14
- package/lib/date-tags/year-tag/year-tag.component.d.ts +0 -14
- package/lib/dr-dynamic-tag/dr-dynamic-tag.module.d.ts +0 -10
- package/lib/dr-scenario/components/dr-scenario-tag-configuration/dr-scenario-tag-configuration.component.d.ts +0 -31
- package/lib/dr-scenario/dr-scenario.module.d.ts +0 -13
- package/lib/dr-tags/dr-tag.module.d.ts +0 -11
- package/lib/dr-tags-constructor/dr-tags-constructor.module.d.ts +0 -10
- package/lib/list-tags/list-tag.component.d.ts +0 -15
- package/lib/list-tags/list-tag.module.d.ts +0 -10
- /package/lib/{dr-scenario/interfaces → dr-tags/_interfaces}/scenario.d.ts +0 -0
- /package/lib/{date-tags/forecast-tag → dr-tags/dr-tag/dr-tag-date/dr-tag-forecast}/forecast-tag.service.d.ts +0 -0
- /package/lib/dr-tags/{dr-tag.types.d.ts → dr-tag/dr-tag.types.d.ts} +0 -0
|
@@ -4,15 +4,17 @@ import { ToggleButtonMode } from './toggle-button-mode';
|
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class DrToggleButtonComponent implements ControlValueAccessor {
|
|
6
6
|
private cdr;
|
|
7
|
-
_disabled: boolean;
|
|
8
7
|
items: string[] | any[];
|
|
9
8
|
bindLabel: string | null;
|
|
10
9
|
bindValue: string | null;
|
|
11
10
|
bindHidden: string | null;
|
|
12
11
|
mode: ToggleButtonMode;
|
|
13
12
|
selectedValue: any | string;
|
|
14
|
-
|
|
13
|
+
name: string;
|
|
15
14
|
dataAnalytics: string;
|
|
15
|
+
set disabled(value: boolean);
|
|
16
|
+
get disabled(): boolean;
|
|
17
|
+
private _disabled;
|
|
16
18
|
readonly ToggleButtonMode: typeof ToggleButtonMode;
|
|
17
19
|
constructor(cdr: ChangeDetectorRef);
|
|
18
20
|
onChange: (value: boolean) => void;
|
|
@@ -22,7 +24,8 @@ export declare class DrToggleButtonComponent implements ControlValueAccessor {
|
|
|
22
24
|
registerOnTouched(fn: any): void;
|
|
23
25
|
setDisabledState?(isDisabled: boolean): void;
|
|
24
26
|
setValue(item: any): void;
|
|
27
|
+
isSelected(item: any): boolean;
|
|
25
28
|
getDataAnalyticsTag(item: any): string;
|
|
26
29
|
static ɵfac: i0.ɵɵFactoryDeclaration<DrToggleButtonComponent, never>;
|
|
27
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DrToggleButtonComponent, "dr-toggle-button", never, { "items": { "alias": "items"; "required": false; }; "bindLabel": { "alias": "bindLabel"; "required": false; }; "bindValue": { "alias": "bindValue"; "required": false; }; "bindHidden": { "alias": "bindHidden"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "selectedValue": { "alias": "selectedValue"; "required": false; }; "
|
|
30
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DrToggleButtonComponent, "dr-toggle-button", never, { "items": { "alias": "items"; "required": false; }; "bindLabel": { "alias": "bindLabel"; "required": false; }; "bindValue": { "alias": "bindValue"; "required": false; }; "bindHidden": { "alias": "bindHidden"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "selectedValue": { "alias": "selectedValue"; "required": false; }; "name": { "alias": "name"; "required": false; }; "dataAnalytics": { "alias": "data-analytics"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, {}, never, never, false, never>;
|
|
28
31
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ITag } from '../../models/serverTags';
|
|
2
|
-
import { IScenarioSubTag, IScenarioTagUi, Scenario } from '../
|
|
2
|
+
import { IScenarioSubTag, IScenarioTagUi, Scenario } from '../_interfaces/scenario';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class ScenarioService {
|
|
5
5
|
private DEFAULT_FORECAST_DATE_TAG;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { ITag } from '
|
|
2
|
-
import { IScenarioTagUi } from '../
|
|
1
|
+
import { ITag } from '../../models/serverTags';
|
|
2
|
+
import { IScenarioTagUi } from '../_interfaces/scenario';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class TagsConstructorService {
|
|
5
5
|
private readonly tagsNotSupportingDatesTag;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { IDateTag } from '
|
|
2
|
+
import { IDateTag } from '../../../models/serverTags';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class AnyTagComponent implements OnInit {
|
|
5
5
|
dateChange: EventEmitter<IDateTag>;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { IDateTag } from '../../../models/serverTags';
|
|
3
|
+
import { ITagAdditionalSettings } from '../dr-tag.types';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class DrTagDateComponent {
|
|
6
|
+
name: string | undefined;
|
|
7
|
+
lockedDate: any[];
|
|
8
|
+
defaultValue: number | undefined;
|
|
9
|
+
dateTypeChosen: any;
|
|
10
|
+
disabled: boolean;
|
|
11
|
+
fiscalYearStartsFrom?: number;
|
|
12
|
+
fiscalYearBack?: boolean;
|
|
13
|
+
tagAdditionalSettings: ITagAdditionalSettings;
|
|
14
|
+
selectedDate: EventEmitter<IDateTag>;
|
|
15
|
+
changeSelectedDate(date: any, dateType?: string): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DrTagDateComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DrTagDateComponent, "dr-tag-date", never, { "name": { "alias": "name"; "required": false; }; "lockedDate": { "alias": "lockedDate"; "required": false; }; "defaultValue": { "alias": "defaultValue"; "required": false; }; "dateTypeChosen": { "alias": "dateTypeChosen"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "fiscalYearStartsFrom": { "alias": "fiscalYearStartsFrom"; "required": false; }; "fiscalYearBack": { "alias": "fiscalYearBack"; "required": false; }; "tagAdditionalSettings": { "alias": "tagAdditionalSettings"; "required": false; }; }, { "selectedDate": "selectedDate"; }, never, never, true, never>;
|
|
18
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { AnyTagComponent } from '../any-tag.component';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class DrTagDayComponent extends AnyTagComponent {
|
|
4
|
+
get isLocked(): boolean;
|
|
5
|
+
lockedDate: any[];
|
|
6
|
+
date: any;
|
|
7
|
+
constructor();
|
|
8
|
+
initDate(): void;
|
|
9
|
+
initName(): void;
|
|
10
|
+
chosenTagHandler(value: number): void;
|
|
11
|
+
dateFilter(momentData: any): boolean;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DrTagDayComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DrTagDayComponent, "dr-tag-day", never, { "lockedDate": { "alias": "lockedDate"; "required": false; }; }, {}, never, never, true, never>;
|
|
14
|
+
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { OnChanges, SimpleChanges } from '@angular/core';
|
|
2
2
|
import { AnyTagComponent } from '../any-tag.component';
|
|
3
|
-
import { ITagAdditionalSettings } from '
|
|
4
|
-
import { DatePickerPeriodPosition } from '
|
|
3
|
+
import { ITagAdditionalSettings } from '../../../dr-tag/dr-tag.types';
|
|
4
|
+
import { DatePickerPeriodPosition } from '../../../../models/datePicker';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class
|
|
6
|
+
export declare class DrTagForecastComponent extends AnyTagComponent implements OnChanges {
|
|
7
7
|
readonly datePickerPeriodPosition: typeof DatePickerPeriodPosition;
|
|
8
8
|
fiscalYearStartsFrom?: number;
|
|
9
9
|
fiscalYearBack?: boolean;
|
|
@@ -26,6 +26,6 @@ export declare class ForecastTagComponent extends AnyTagComponent implements OnC
|
|
|
26
26
|
changeYearInputHandler(): void;
|
|
27
27
|
chosenTagHandler(): void;
|
|
28
28
|
dateFilter(date: any): boolean;
|
|
29
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
30
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
29
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DrTagForecastComponent, never>;
|
|
30
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DrTagForecastComponent, "dr-tag-forecast", never, { "fiscalYearStartsFrom": { "alias": "fiscalYearStartsFrom"; "required": false; }; "fiscalYearBack": { "alias": "fiscalYearBack"; "required": false; }; "lockedDate": { "alias": "lockedDate"; "required": false; }; "tagAdditionalSettings": { "alias": "tagAdditionalSettings"; "required": false; }; }, {}, never, never, true, never>;
|
|
31
31
|
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { AnyTagComponent } from '../any-tag.component';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class DrTagMonthComponent extends AnyTagComponent {
|
|
4
|
+
get isLocked(): boolean;
|
|
5
|
+
lockedDate: any[];
|
|
6
|
+
date: any;
|
|
7
|
+
constructor();
|
|
8
|
+
initDate(): void;
|
|
9
|
+
initName(): void;
|
|
10
|
+
chosenTagHandler(value: number): void;
|
|
11
|
+
dateFilter(date: any): boolean;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DrTagMonthComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DrTagMonthComponent, "dr-tag-month", never, { "lockedDate": { "alias": "lockedDate"; "required": false; }; }, {}, never, never, true, never>;
|
|
14
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { OnChanges, OnInit, SimpleChanges } from '@angular/core';
|
|
2
2
|
import { AnyTagComponent } from '../any-tag.component';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class
|
|
4
|
+
export declare class DrTagQuarterComponent extends AnyTagComponent implements OnInit, OnChanges {
|
|
5
5
|
get isLocked(): boolean;
|
|
6
6
|
lockedDate: any[];
|
|
7
7
|
selectedValue: number;
|
|
@@ -16,6 +16,6 @@ export declare class QuarterTagComponent extends AnyTagComponent implements OnIn
|
|
|
16
16
|
private getQuarterLabel;
|
|
17
17
|
private getUTCTimestamp;
|
|
18
18
|
dateFilter(quarter: any): boolean;
|
|
19
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
20
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DrTagQuarterComponent, never>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DrTagQuarterComponent, "dr-tag-quarter", never, { "lockedDate": { "alias": "lockedDate"; "required": false; }; }, {}, never, never, true, never>;
|
|
21
21
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { AnyTagComponent } from '../any-tag.component';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class
|
|
4
|
+
export declare class DrTagWeekComponent extends AnyTagComponent implements OnInit {
|
|
5
5
|
get isLocked(): boolean;
|
|
6
6
|
lockedDate: any[];
|
|
7
7
|
date: any;
|
|
@@ -11,6 +11,6 @@ export declare class WeekTagComponent extends AnyTagComponent implements OnInit
|
|
|
11
11
|
dateFilter(date: any): boolean;
|
|
12
12
|
chosenTagHandler(value: number): void;
|
|
13
13
|
private getWeekLabel;
|
|
14
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
15
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DrTagWeekComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DrTagWeekComponent, "dr-tag-week", never, { "lockedDate": { "alias": "lockedDate"; "required": false; }; }, {}, never, never, true, never>;
|
|
16
16
|
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { AnyTagComponent } from '../any-tag.component';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class DrTagYearComponent extends AnyTagComponent {
|
|
4
|
+
get isLocked(): boolean;
|
|
5
|
+
lockedDate: any[];
|
|
6
|
+
date: any;
|
|
7
|
+
constructor();
|
|
8
|
+
initDate(): void;
|
|
9
|
+
initName(): void;
|
|
10
|
+
chosenTagHandler(value: number): void;
|
|
11
|
+
dateFilter(date: any): boolean;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DrTagYearComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DrTagYearComponent, "dr-tag-year", never, { "lockedDate": { "alias": "lockedDate"; "required": false; }; }, {}, never, never, true, never>;
|
|
14
|
+
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
-
import { ITag, ITagForServer, TDynamicTag, TDynamicTagValue } from '
|
|
3
|
-
import { IMultipleLockedTag } from '../dr-
|
|
2
|
+
import { ITag, ITagForServer, TDynamicTag, TDynamicTagValue } from '../../../models/serverTags';
|
|
3
|
+
import { IMultipleLockedTag } from '../dr-tag.types';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class
|
|
5
|
+
export declare class DrTagDynamicComponent implements OnChanges {
|
|
6
6
|
values: TDynamicTag;
|
|
7
7
|
tagConfig: ITag;
|
|
8
8
|
selectedTag: ITagForServer;
|
|
@@ -38,6 +38,6 @@ export declare class DrDynamicTagComponent implements OnChanges {
|
|
|
38
38
|
isLockedTag(tagValue: string | number): boolean;
|
|
39
39
|
private getSingleParentKey;
|
|
40
40
|
private hasLockedTagInMultiple;
|
|
41
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
42
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
41
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DrTagDynamicComponent, never>;
|
|
42
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DrTagDynamicComponent, "dr-tag-dynamic", never, { "values": { "alias": "values"; "required": false; }; "tagConfig": { "alias": "tagConfig"; "required": false; }; "selectedTag": { "alias": "selectedTag"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "lockedTags": { "alias": "lockedTags"; "required": false; }; "connectedTags": { "alias": "connectedTags"; "required": false; }; "isDynamicTagAddEnabled": { "alias": "isDynamicTagAddEnabled"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "lockedMultipleTags": { "alias": "lockedMultipleTags"; "required": false; }; "tagsConfig": { "alias": "tagsConfig"; "required": false; }; "fiscalYearStartsFrom": { "alias": "fiscalYearStartsFrom"; "required": false; }; "fiscalYearBack": { "alias": "fiscalYearBack"; "required": false; }; "parentKeyFormat": { "alias": "parentKeyFormat"; "required": false; }; "parentKeyFormatterFn": { "alias": "parentKeyFormatterFn"; "required": false; }; "label": { "alias": "label"; "required": false; }; "hideFavoriteStar": { "alias": "hideFavoriteStar"; "required": false; }; }, { "tagChange": "tagChange"; "tagAdd": "tagAdd"; }, never, never, true, never>;
|
|
43
43
|
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { IListTag } from '../../../models/serverTags';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class DrTagListComponent implements OnInit {
|
|
5
|
+
values: string[];
|
|
6
|
+
defaultValue: string;
|
|
7
|
+
name: string;
|
|
8
|
+
disabled: boolean;
|
|
9
|
+
tagChange: EventEmitter<IListTag>;
|
|
10
|
+
constructor();
|
|
11
|
+
ngOnInit(): void;
|
|
12
|
+
chosenTagHandler(value: any): void;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DrTagListComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DrTagListComponent, "dr-tag-list", never, { "values": { "alias": "values"; "required": false; }; "defaultValue": { "alias": "defaultValue"; "required": false; }; "name": { "alias": "name"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "tagChange": "tagChange"; }, never, never, true, never>;
|
|
15
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core';
|
|
2
|
-
import { IDateTag, IListTag, ITag, ITagForServer, TagTypes, TDynamicTag, TDynamicTagValue } from '
|
|
2
|
+
import { IDateTag, IListTag, ITag, ITagForServer, TagTypes, TDynamicTag, TDynamicTagValue } from '../../models/serverTags';
|
|
3
3
|
import { IMultipleLockedTag, ITagAdditionalSettings } from './dr-tag.types';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class DrTagComponent implements OnInit, OnChanges {
|
|
@@ -41,5 +41,5 @@ export declare class DrTagComponent implements OnInit, OnChanges {
|
|
|
41
41
|
private configureTagItems;
|
|
42
42
|
private calculateDynamicTag;
|
|
43
43
|
static ɵfac: i0.ɵɵFactoryDeclaration<DrTagComponent, never>;
|
|
44
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DrTagComponent, "dr-tag", never, { "tagConfig": { "alias": "tagConfig"; "required": false; }; "selectedTag": { "alias": "selectedTag"; "required": false; }; "lockedDate": { "alias": "lockedDate"; "required": false; }; "lockedMultipleTags": { "alias": "lockedMultipleTags"; "required": false; }; "fiscalYearStartsFrom": { "alias": "fiscalYearStartsFrom"; "required": false; }; "fiscalYearBack": { "alias": "fiscalYearBack"; "required": false; }; "tagsConfig": { "alias": "tagsConfig"; "required": false; }; "dynamicTagValues": { "alias": "dynamicTagValues"; "required": false; }; "connectedTags": { "alias": "connectedTags"; "required": false; }; "isDynamicTagAddEnabled": { "alias": "isDynamicTagAddEnabled"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "tagAdditionalSettings": { "alias": "tagAdditionalSettings"; "required": false; }; }, { "tagChange": "tagChange"; "dynamicTagChange": "dynamicTagChange"; "dynamicTagAdd": "dynamicTagAdd"; }, never, never,
|
|
44
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DrTagComponent, "dr-tag", never, { "tagConfig": { "alias": "tagConfig"; "required": false; }; "selectedTag": { "alias": "selectedTag"; "required": false; }; "lockedDate": { "alias": "lockedDate"; "required": false; }; "lockedMultipleTags": { "alias": "lockedMultipleTags"; "required": false; }; "fiscalYearStartsFrom": { "alias": "fiscalYearStartsFrom"; "required": false; }; "fiscalYearBack": { "alias": "fiscalYearBack"; "required": false; }; "tagsConfig": { "alias": "tagsConfig"; "required": false; }; "dynamicTagValues": { "alias": "dynamicTagValues"; "required": false; }; "connectedTags": { "alias": "connectedTags"; "required": false; }; "isDynamicTagAddEnabled": { "alias": "isDynamicTagAddEnabled"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "tagAdditionalSettings": { "alias": "tagAdditionalSettings"; "required": false; }; }, { "tagChange": "tagChange"; "dynamicTagChange": "dynamicTagChange"; "dynamicTagAdd": "dynamicTagAdd"; }, never, never, true, never>;
|
|
45
45
|
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { ITag, ITagForServer, TConnectedTags, TDynamicTag } from '../../models/serverTags';
|
|
3
|
+
import { Scenario, TScenarioDataChanged } from '../_interfaces/scenario';
|
|
4
|
+
import { ITagAdditionalSettings } from '../dr-tag/dr-tag.types';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class DrTagsAndScenarioComponent implements OnChanges {
|
|
7
|
+
tagsConfig: ITag[];
|
|
8
|
+
set currentTags(tags: ITagForServer[]);
|
|
9
|
+
scenario: Scenario;
|
|
10
|
+
connectedTags: TConnectedTags;
|
|
11
|
+
dynamicTagValues: TDynamicTag;
|
|
12
|
+
tagAdditionalSettings: Record<string, ITagAdditionalSettings>;
|
|
13
|
+
lockedDates: string[] | number[];
|
|
14
|
+
fiscalYearStartsFrom: number;
|
|
15
|
+
fiscalYearBack: boolean;
|
|
16
|
+
isDynamicAddEnabled: boolean;
|
|
17
|
+
scenarioTagDataChanged: EventEmitter<TScenarioDataChanged>;
|
|
18
|
+
currentTagsMap: {
|
|
19
|
+
[tagId: number]: ITagForServer;
|
|
20
|
+
};
|
|
21
|
+
private _currentTags;
|
|
22
|
+
private dynamicTagsToSave;
|
|
23
|
+
private tagsToSave;
|
|
24
|
+
get currentTags(): ITagForServer[];
|
|
25
|
+
ngOnChanges(simpleChanges: SimpleChanges): void;
|
|
26
|
+
onTagChange($event: ITagForServer): void;
|
|
27
|
+
onDynamicTagsChange($event: ITagForServer[]): void;
|
|
28
|
+
onScenarioTagDataChanged(): void;
|
|
29
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DrTagsAndScenarioComponent, never>;
|
|
30
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DrTagsAndScenarioComponent, "dr-tags-and-scenario", never, { "tagsConfig": { "alias": "tagsConfig"; "required": false; }; "currentTags": { "alias": "currentTags"; "required": false; }; "scenario": { "alias": "scenario"; "required": false; }; "connectedTags": { "alias": "connectedTags"; "required": false; }; "dynamicTagValues": { "alias": "dynamicTagValues"; "required": false; }; "tagAdditionalSettings": { "alias": "tagAdditionalSettings"; "required": false; }; "lockedDates": { "alias": "lockedDates"; "required": false; }; "fiscalYearStartsFrom": { "alias": "fiscalYearStartsFrom"; "required": false; }; "fiscalYearBack": { "alias": "fiscalYearBack"; "required": false; }; "isDynamicAddEnabled": { "alias": "isDynamicAddEnabled"; "required": false; }; }, { "scenarioTagDataChanged": "scenarioTagDataChanged"; }, never, never, true, never>;
|
|
31
|
+
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { IScenarioTagUi, Scenario, TScenarioDataChanged } from '
|
|
3
|
-
import { ScenarioService } from '
|
|
4
|
-
import { ITag } from '
|
|
2
|
+
import { IScenarioTagUi, Scenario, TScenarioDataChanged } from '../_interfaces/scenario';
|
|
3
|
+
import { ScenarioService } from '../_services/scenario.service';
|
|
4
|
+
import { ITag } from '../../models/serverTags';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class
|
|
6
|
+
export declare class DrTagsAndScenarioConstructorComponent implements OnInit {
|
|
7
7
|
private scenarioService;
|
|
8
8
|
scenarios: Scenario[];
|
|
9
9
|
private _scenarioTags;
|
|
@@ -24,6 +24,6 @@ export declare class DrScenarioConfigurationComponent implements OnInit {
|
|
|
24
24
|
onScenarioChange(scenario: Scenario): void;
|
|
25
25
|
onScenarioTagToggle(tag: IScenarioTagUi): void;
|
|
26
26
|
onScenarioDataChange(): void;
|
|
27
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
28
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
27
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DrTagsAndScenarioConstructorComponent, never>;
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DrTagsAndScenarioConstructorComponent, "dr-tags-and-scenario-constructor", never, { "currentTagsConfig": { "alias": "currentTagsConfig"; "required": false; }; "wholeTagsConfig": { "alias": "wholeTagsConfig"; "required": false; }; "selectedScenario": { "alias": "selectedScenario"; "required": false; }; "isMultipleDimension": { "alias": "isMultipleDimension"; "required": false; }; "isForecastMultipleDimension": { "alias": "isForecastMultipleDimension"; "required": false; }; }, { "scenarioDataChanged": "scenarioDataChanged"; }, never, never, true, never>;
|
|
29
29
|
}
|
package/lib/{dr-tags-constructor → dr-tags/dr-tags-constructor}/dr-tags-constructor.component.d.ts
RENAMED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { IScenarioTagUi } from '../
|
|
3
|
-
import { ToggleButtonMode } from '
|
|
4
|
-
import { ITag } from '
|
|
5
|
-
import { ScenarioService } from '../
|
|
6
|
-
import { TagsConstructorService } from '
|
|
2
|
+
import { IScenarioTagUi } from '../_interfaces/scenario';
|
|
3
|
+
import { ToggleButtonMode } from '../../dr-inputs/dr-toggle-button/toggle-button-mode';
|
|
4
|
+
import { ITag } from '../../models/serverTags';
|
|
5
|
+
import { ScenarioService } from '../_services/scenario.service';
|
|
6
|
+
import { TagsConstructorService } from '../_services/tags-constructor.service';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class DrTagsConstructorComponent implements OnInit {
|
|
9
9
|
private scenarioService;
|
|
@@ -29,5 +29,5 @@ export declare class DrTagsConstructorComponent implements OnInit {
|
|
|
29
29
|
private getTagsConfig;
|
|
30
30
|
private updateTagsState;
|
|
31
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<DrTagsConstructorComponent, never>;
|
|
32
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DrTagsConstructorComponent, "dr-tags-constructor", never, { "scenarioTagsConfig": { "alias": "scenarioTagsConfig"; "required": false; }; "tagsConfigToDisplay": { "alias": "tagsConfigToDisplay"; "required": false; }; "selectedTagsConfig": { "alias": "selectedTagsConfig"; "required": false; }; }, { "tagChange": "tagChange"; "tagToggle": "tagToggle"; "stateChange": "stateChange"; }, never, never,
|
|
32
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DrTagsConstructorComponent, "dr-tags-constructor", never, { "scenarioTagsConfig": { "alias": "scenarioTagsConfig"; "required": false; }; "tagsConfigToDisplay": { "alias": "tagsConfigToDisplay"; "required": false; }; "selectedTagsConfig": { "alias": "selectedTagsConfig"; "required": false; }; }, { "tagChange": "tagChange"; "tagToggle": "tagToggle"; "stateChange": "stateChange"; }, never, never, true, never>;
|
|
33
33
|
}
|
package/local-api.d.ts
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
export * from './lib/
|
|
2
|
-
export * from './lib/
|
|
3
|
-
export * from './lib/
|
|
4
|
-
export * from './lib/
|
|
5
|
-
export * from './lib/
|
|
6
|
-
export * from './lib/
|
|
7
|
-
export * from './lib/
|
|
8
|
-
export * from './lib/
|
|
9
|
-
export * from './lib/dr-tags/dr-tag.component';
|
|
10
|
-
export * from './lib/dr-tags/dr-tag.
|
|
11
|
-
export * from './lib/
|
|
12
|
-
export * from './lib/
|
|
13
|
-
export * from './lib/
|
|
1
|
+
export * from './lib/dr-tags/dr-tag/dr-tag.component';
|
|
2
|
+
export * from './lib/dr-tags/dr-tag/dr-tag.types';
|
|
3
|
+
export * from './lib/dr-tags/dr-tag/dr-tag-list/dr-tag-list.component';
|
|
4
|
+
export * from './lib/dr-tags/dr-tag/dr-tag-date/dr-tag-date.component';
|
|
5
|
+
export * from './lib/dr-tags/dr-tag/dr-tag-date/dr-tag-day/dr-tag-day.component';
|
|
6
|
+
export * from './lib/dr-tags/dr-tag/dr-tag-date/dr-tag-week/dr-tag-week.component';
|
|
7
|
+
export * from './lib/dr-tags/dr-tag/dr-tag-date/dr-tag-month/dr-tag-month.component';
|
|
8
|
+
export * from './lib/dr-tags/dr-tag/dr-tag-date/dr-tag-quarter/dr-tag-quarter.component';
|
|
9
|
+
export * from './lib/dr-tags/dr-tag/dr-tag-date/dr-tag-year/dr-tag-year.component';
|
|
10
|
+
export * from './lib/dr-tags/dr-tag/dr-tag-date/dr-tag-forecast/dr-tag-forecast.component';
|
|
11
|
+
export * from './lib/dr-tags/dr-tags-constructor/dr-tags-constructor.component';
|
|
12
|
+
export * from './lib/dr-tags/dr-tags-and-scenario/dr-tags-and-scenario.component';
|
|
13
|
+
export * from './lib/dr-tags/dr-tags-and-scenario-constructor/dr-tags-and-scenario-constructor.component';
|
|
14
14
|
export * from './lib/dr-inputs/radio-button/radio-button.component';
|
|
15
15
|
export * from './lib/dr-inputs/radio-button/radio-group.component';
|
|
16
16
|
export * from './lib/dr-inputs/checkbox/checkbox.component';
|
|
@@ -57,9 +57,6 @@ export * from './lib/dr-alert/dr-alert.component';
|
|
|
57
57
|
export * from './lib/dr-code-editor/dr-code-editor.component';
|
|
58
58
|
export * from './lib/dr-code-editor/components/dr-codemirror.component';
|
|
59
59
|
export * from './lib/dr-code-editor/components/code-editor-hint-wrapper.component';
|
|
60
|
-
export * from './lib/dr-scenario/components/dr-scenario-tag-configuration/dr-scenario-tag-configuration.component';
|
|
61
|
-
export * from './lib/dr-scenario/components/dr-scenario-configuration/dr-scenario-configuration.component';
|
|
62
|
-
export * from './lib/dr-tags-constructor/dr-tags-constructor.component';
|
|
63
60
|
export * from './lib/dr-popover/dr-popover.directive';
|
|
64
61
|
export * from './lib/dr-popover/dr-popover.component';
|
|
65
62
|
export * from './lib/dr-popover/dr-popover.service';
|
|
@@ -95,7 +92,7 @@ export * from './lib/dr-toastr/default-toastr/default-toastr.component';
|
|
|
95
92
|
export * from './lib/utils/data-analytics.service';
|
|
96
93
|
export * from './lib/models/colors';
|
|
97
94
|
export { TooltipTheme } from './lib/dr-tooltip/enums/tooltip-theme.enum';
|
|
98
|
-
export { Scenario, TScenarioDataChanged } from './lib/dr-
|
|
95
|
+
export { Scenario, TScenarioDataChanged } from './lib/dr-tags/_interfaces/scenario';
|
|
99
96
|
export { ToggleButtonMode } from './lib/dr-inputs/dr-toggle-button/toggle-button-mode';
|
|
100
97
|
export { DrAlertTheme } from './lib/dr-alert/enums/dr-alert-theme.enum';
|
|
101
98
|
export { TooltipInfoContext, TooltipInfoWidth, TooltipInfoIconTheme, } from './lib/dr-tooltip/interfaces/tooltip-component-context';
|
|
@@ -126,13 +123,11 @@ export * from './lib/models/feedback';
|
|
|
126
123
|
export * from './lib/models/toastr';
|
|
127
124
|
export * from './lib/models/datePickerRange';
|
|
128
125
|
export * from './lib/dr-code-editor/models/code-editor-hint';
|
|
129
|
-
export { ScenarioService } from './lib/dr-
|
|
130
|
-
export { TagsConstructorService } from './lib/dr-tags
|
|
126
|
+
export { ScenarioService } from './lib/dr-tags/_services/scenario.service';
|
|
127
|
+
export { TagsConstructorService } from './lib/dr-tags/_services/tags-constructor.service';
|
|
128
|
+
export { ForecastTagService } from './lib/dr-tags/dr-tag/dr-tag-date/dr-tag-forecast/forecast-tag.service';
|
|
131
129
|
export { DrAvatarService } from './lib/dr-avatar/services/dr-avatar.service';
|
|
132
130
|
export { DrToastrService } from './lib/dr-toastr/dr-toastr.service';
|
|
133
|
-
export { DateTagModule } from './lib/date-tags/date-tag.module';
|
|
134
|
-
export { ListTagModule } from './lib/list-tags/list-tag.module';
|
|
135
|
-
export { DrTagModule } from './lib/dr-tags/dr-tag.module';
|
|
136
131
|
export { DrInputsModule } from './lib/dr-inputs/dr-inputs.module';
|
|
137
132
|
export { DrTooltipModule } from './lib/dr-tooltip/dr-tooltip.module';
|
|
138
133
|
export { DrAvatarModule } from './lib/dr-avatar/dr-avatar.module';
|
|
@@ -151,12 +146,10 @@ export { DrStepperModule } from './lib/stepper/stepper.module';
|
|
|
151
146
|
export { DrDialogModule } from './lib/dr-dialog/dialog.module';
|
|
152
147
|
export { DrChatModule } from './lib/dr-chat/chat.module';
|
|
153
148
|
export { DrDetailsListModule } from './lib/dr-details-list/dr-details-list.module';
|
|
154
|
-
export { DrScenarioModule } from './lib/dr-scenario/dr-scenario.module';
|
|
155
149
|
export { DrBadgeStatusModule } from './lib/dr-badge-status/dr-badge-status.module';
|
|
156
150
|
export { TreeviewModule } from './lib/dr-treeview/dr-tree-view.module';
|
|
157
151
|
export { ClickOutsideModule } from './lib/directives/click-outside/click-outside.module';
|
|
158
152
|
export { DrAlertModule } from './lib/dr-alert/dr-alert.module';
|
|
159
|
-
export { DrTagsConstructorModule } from './lib/dr-tags-constructor/dr-tags-constructor.module';
|
|
160
153
|
export { DrToastrModule } from './lib/dr-toastr/dr-toastr.module';
|
|
161
154
|
export { DrCodeEditorModule } from './lib/dr-code-editor/dr-code-editor.module';
|
|
162
155
|
export { DrChipComponent } from './lib/dr-chip/dr-chip.component';
|
package/package.json
CHANGED
|
Binary file
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
import { Component, EventEmitter, Input, Output } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export class AnyTagComponent {
|
|
4
|
-
constructor() {
|
|
5
|
-
this.dateChange = new EventEmitter();
|
|
6
|
-
this.name = undefined;
|
|
7
|
-
this.defaultValue = undefined;
|
|
8
|
-
this.dateObj = { date: undefined };
|
|
9
|
-
}
|
|
10
|
-
ngOnInit() {
|
|
11
|
-
this.initDate();
|
|
12
|
-
this.initName();
|
|
13
|
-
this.chosenTagHandler(this.dateObj.date);
|
|
14
|
-
}
|
|
15
|
-
initDate() { }
|
|
16
|
-
initName() { }
|
|
17
|
-
changeInputHandler(event) {
|
|
18
|
-
const input = event.target;
|
|
19
|
-
this.chosenTagHandler(input.value);
|
|
20
|
-
}
|
|
21
|
-
chosenTagHandler(value) {
|
|
22
|
-
// need implement in all tags
|
|
23
|
-
}
|
|
24
|
-
/** @nocollapse */ static { this.ɵfac = function AnyTagComponent_Factory(t) { return new (t || AnyTagComponent)(); }; }
|
|
25
|
-
/** @nocollapse */ static { this.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: AnyTagComponent, selectors: [["any-tag"]], inputs: { name: "name", defaultValue: "defaultValue", disabled: "disabled" }, outputs: { dateChange: "dateChange" }, decls: 0, vars: 0, template: function AnyTagComponent_Template(rf, ctx) { }, encapsulation: 2 }); }
|
|
26
|
-
}
|
|
27
|
-
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AnyTagComponent, [{
|
|
28
|
-
type: Component,
|
|
29
|
-
args: [{
|
|
30
|
-
template: ``,
|
|
31
|
-
selector: 'any-tag',
|
|
32
|
-
}]
|
|
33
|
-
}], function () { return []; }, { dateChange: [{
|
|
34
|
-
type: Output
|
|
35
|
-
}], name: [{
|
|
36
|
-
type: Input
|
|
37
|
-
}], defaultValue: [{
|
|
38
|
-
type: Input
|
|
39
|
-
}], disabled: [{
|
|
40
|
-
type: Input
|
|
41
|
-
}] }); })();
|
|
42
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYW55LXRhZy5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9kYXRhcmFpbHNzaGFyZWQvc3JjL2xpYi9kYXRlLXRhZ3MvYW55LXRhZy5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxZQUFZLEVBQUUsS0FBSyxFQUFVLE1BQU0sRUFBRSxNQUFNLGVBQWUsQ0FBQzs7QUFPL0UsTUFBTSxPQUFPLGVBQWU7SUFNeEI7UUFMVSxlQUFVLEdBQTJCLElBQUksWUFBWSxFQUFZLENBQUM7UUFDbkUsU0FBSSxHQUF1QixTQUFTLENBQUM7UUFDckMsaUJBQVksR0FBdUIsU0FBUyxDQUFDO1FBRXRELFlBQU8sR0FBRyxFQUFFLElBQUksRUFBRSxTQUFTLEVBQUUsQ0FBQztJQUNmLENBQUM7SUFDaEIsUUFBUTtRQUNKLElBQUksQ0FBQyxRQUFRLEVBQUUsQ0FBQztRQUNoQixJQUFJLENBQUMsUUFBUSxFQUFFLENBQUM7UUFDaEIsSUFBSSxDQUFDLGdCQUFnQixDQUFDLElBQUksQ0FBQyxPQUFPLENBQUMsSUFBSSxDQUFDLENBQUM7SUFDN0MsQ0FBQztJQUNELFFBQVEsS0FBSSxDQUFDO0lBQ2IsUUFBUSxLQUFJLENBQUM7SUFDYixrQkFBa0IsQ0FBQyxLQUFZO1FBQzNCLE1BQU0sS0FBSyxHQUF1QyxLQUFLLENBQUMsTUFBTSxDQUFDO1FBQy9ELElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxLQUFLLENBQUMsS0FBSyxDQUFDLENBQUM7SUFDdkMsQ0FBQztJQUNELGdCQUFnQixDQUFDLEtBQUs7UUFDbEIsNkJBQTZCO0lBQ2pDLENBQUM7bUdBcEJRLGVBQWU7bUdBQWYsZUFBZTs7dUZBQWYsZUFBZTtjQUozQixTQUFTO2VBQUM7Z0JBQ1AsUUFBUSxFQUFFLEVBQUU7Z0JBQ1osUUFBUSxFQUFFLFNBQVM7YUFDdEI7c0NBRWEsVUFBVTtrQkFBbkIsTUFBTTtZQUNFLElBQUk7a0JBQVosS0FBSztZQUNHLFlBQVk7a0JBQXBCLEtBQUs7WUFDRyxRQUFRO2tCQUFoQixLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBFdmVudEVtaXR0ZXIsIElucHV0LCBPbkluaXQsIE91dHB1dCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgSURhdGVUYWcgfSBmcm9tICcuLi9tb2RlbHMvc2VydmVyVGFncyc7XG5cbkBDb21wb25lbnQoe1xuICAgIHRlbXBsYXRlOiBgYCxcbiAgICBzZWxlY3RvcjogJ2FueS10YWcnLFxufSlcbmV4cG9ydCBjbGFzcyBBbnlUYWdDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xuICAgIEBPdXRwdXQoKSBkYXRlQ2hhbmdlOiBFdmVudEVtaXR0ZXI8SURhdGVUYWc+ID0gbmV3IEV2ZW50RW1pdHRlcjxJRGF0ZVRhZz4oKTtcbiAgICBASW5wdXQoKSBuYW1lOiBzdHJpbmcgfCB1bmRlZmluZWQgPSB1bmRlZmluZWQ7XG4gICAgQElucHV0KCkgZGVmYXVsdFZhbHVlOiBudW1iZXIgfCB1bmRlZmluZWQgPSB1bmRlZmluZWQ7XG4gICAgQElucHV0KCkgZGlzYWJsZWQ6IGJvb2xlYW47XG4gICAgZGF0ZU9iaiA9IHsgZGF0ZTogdW5kZWZpbmVkIH07XG4gICAgY29uc3RydWN0b3IoKSB7fVxuICAgIG5nT25Jbml0KCkge1xuICAgICAgICB0aGlzLmluaXREYXRlKCk7XG4gICAgICAgIHRoaXMuaW5pdE5hbWUoKTtcbiAgICAgICAgdGhpcy5jaG9zZW5UYWdIYW5kbGVyKHRoaXMuZGF0ZU9iai5kYXRlKTtcbiAgICB9XG4gICAgaW5pdERhdGUoKSB7fVxuICAgIGluaXROYW1lKCkge31cbiAgICBjaGFuZ2VJbnB1dEhhbmRsZXIoZXZlbnQ6IEV2ZW50KSB7XG4gICAgICAgIGNvbnN0IGlucHV0OiBIVE1MSW5wdXRFbGVtZW50ID0gPEhUTUxJbnB1dEVsZW1lbnQ+ZXZlbnQudGFyZ2V0O1xuICAgICAgICB0aGlzLmNob3NlblRhZ0hhbmRsZXIoaW5wdXQudmFsdWUpO1xuICAgIH1cbiAgICBjaG9zZW5UYWdIYW5kbGVyKHZhbHVlKSB7XG4gICAgICAgIC8vIG5lZWQgaW1wbGVtZW50IGluIGFsbCB0YWdzXG4gICAgfVxufVxuIl19
|