@energycap/components 0.39.21 → 0.39.22-ECAP-26473-ESA-Favicon.20240905-1414
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/esm2020/lib/core/date-time-helper.mjs +5 -3
- package/fesm2015/energycap-components.mjs +4 -2
- package/fesm2015/energycap-components.mjs.map +1 -1
- package/fesm2020/energycap-components.mjs +4 -2
- package/fesm2020/energycap-components.mjs.map +1 -1
- package/lib/core/date-time-helper.d.ts +3 -1
- package/package.json +1 -1
- package/src/assets/images/favicon-esa.svg +6 -0
@@ -6,6 +6,8 @@ export declare class DateTimeHelper {
|
|
6
6
|
static beginningOfTime: Date;
|
7
7
|
/** 3000-01-01 */
|
8
8
|
static endOfTime: Date;
|
9
|
+
/** 3000-01-01 UTC */
|
10
|
+
static endOfTimeUTC: Date;
|
9
11
|
/** Default effective date for new AccountMeter relationships: 2010-01-01 */
|
10
12
|
static defaultAccountMeterEffectiveDate: Date;
|
11
13
|
/** The default date that a newly created account becomes effective: 2010-01-01 */
|
@@ -42,7 +44,7 @@ export declare class DateTimeHelper {
|
|
42
44
|
/**
|
43
45
|
* Return true if @see date is equal to the @see endOfTime
|
44
46
|
*/
|
45
|
-
static isEndOfTime(date: Date | moment.Moment | string): boolean;
|
47
|
+
static isEndOfTime(date: Date | moment.Moment | string, timeZoneOffset?: boolean): boolean;
|
46
48
|
/**
|
47
49
|
* Compare two dates and return true if they represent the same year, month, and day (time is ignored).
|
48
50
|
*/
|
package/package.json
CHANGED
@@ -0,0 +1,6 @@
|
|
1
|
+
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<rect width="32" height="32" rx="4" fill="white"/>
|
3
|
+
<path d="M16.817 28C20.5622 28 23.9052 26.2838 26.1041 23.6022L24.1376 22.2078C22.3767 24.2816 19.7577 25.6045 16.817 25.6045C11.5164 25.5955 7.21697 21.2961 7.21697 15.9955C7.21697 14.4939 7.57451 13.0726 8.19127 11.8034L6.20691 10.3911C5.322 12.0626 4.8125 13.9754 4.8125 15.9955C4.8125 22.6279 10.1935 28 16.817 28Z" fill="#162F3B"/>
|
4
|
+
<path d="M16.8169 6.39553C19.7488 6.39553 22.3767 7.71844 24.1376 9.79218L26.1041 8.39777C23.9052 5.7162 20.5622 4 16.8169 4C13.0717 4 9.73761 5.70726 7.52979 8.38883L9.49627 9.78324C11.2661 7.7095 13.8851 6.39553 16.8169 6.39553Z" fill="#51B51C"/>
|
5
|
+
<path d="M25.5052 13.8503H21.5812L20.446 16.076L16.7544 8.83575L12.0795 18.8291H10.2829L9.39795 20.8045H13.456L16.9868 13.457L20.3745 20.5721L22.7611 15.8257H24.6114L25.5052 13.8503Z" fill="#51B51C"/>
|
6
|
+
</svg>
|