@datarailsshared/datarailsshared 1.5.294 → 1.5.297
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.5.297.tgz +0 -0
- package/esm2022/lib/date-tags/forecast-tag/forecast-tag.component.mjs +21 -16
- package/esm2022/lib/date-tags/quarter-tag/quarter-tag.component.mjs +15 -9
- package/fesm2022/datarailsshared-datarailsshared.mjs +34 -23
- package/fesm2022/datarailsshared-datarailsshared.mjs.map +1 -1
- package/lib/date-tags/forecast-tag/forecast-tag.component.d.ts +3 -1
- package/lib/date-tags/quarter-tag/quarter-tag.component.d.ts +4 -2
- package/package.json +1 -1
- package/datarailsshared-datarailsshared-1.5.294.tgz +0 -0
|
@@ -1,8 +1,9 @@
|
|
|
1
|
+
import { OnChanges } from '@angular/core';
|
|
1
2
|
import { AnyTagComponent } from '../any-tag.component';
|
|
2
3
|
import { MatLegacySelectChange as MatSelectChange } from '@angular/material/legacy-select';
|
|
3
4
|
import { MatButtonToggleChange } from '@angular/material/button-toggle';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class ForecastTagComponent extends AnyTagComponent {
|
|
6
|
+
export declare class ForecastTagComponent extends AnyTagComponent implements OnChanges {
|
|
6
7
|
fiscalYearStartsFrom?: number;
|
|
7
8
|
fiscalYearBack?: boolean;
|
|
8
9
|
lockedDate: any[];
|
|
@@ -11,6 +12,7 @@ export declare class ForecastTagComponent extends AnyTagComponent {
|
|
|
11
12
|
forecastTags: any[];
|
|
12
13
|
private initDateValue;
|
|
13
14
|
constructor();
|
|
15
|
+
ngOnChanges(): void;
|
|
14
16
|
initDate(): void;
|
|
15
17
|
updateYear(fiscalYear?: number, month?: number): void;
|
|
16
18
|
updateLockedDate(): void;
|
|
@@ -1,14 +1,16 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
1
|
+
import { OnChanges, OnInit } from '@angular/core';
|
|
2
2
|
import { AnyTagComponent } from '../any-tag.component';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class QuarterTagComponent extends AnyTagComponent implements OnInit {
|
|
4
|
+
export declare class QuarterTagComponent extends AnyTagComponent implements OnInit, OnChanges {
|
|
5
5
|
get isLocked(): boolean;
|
|
6
6
|
lockedDate: any[];
|
|
7
7
|
selectedValue: number;
|
|
8
8
|
quarters: any[];
|
|
9
9
|
constructor();
|
|
10
|
+
ngOnChanges(): void;
|
|
10
11
|
ngOnInit(): void;
|
|
11
12
|
initName(): void;
|
|
13
|
+
initTags(): void;
|
|
12
14
|
chosenTagHandler(quarter: any): void;
|
|
13
15
|
getQuarterOptions(): any[];
|
|
14
16
|
private getQuarterLabel;
|
package/package.json
CHANGED
|
Binary file
|