tscommons-esm-dashboards 0.0.15 → 1.0.0
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/dist/index.d.mts +5 -5
- package/dist/index.mjs +4 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +7 -7
package/dist/index.d.mts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { ECommonsTimeRangePeriod, toECommonsTimeRangePeriod, fromECommonsTimeRangePeriod, isECommonsTimeRangePeriod, keyToECommonsTimeRangePeriod, EPERIODS } from './enums/eperiod.mjs';
|
|
2
1
|
import { commonsDashboardsFillPartialDateRanges, commonsDashboardsPivotAndFillAndSanitisePartialDateRanges } from './helpers/date-range.mjs';
|
|
3
|
-
import { commonsDashboardsComputeHeatline, commonsDashboardsAutoComputeHeatline } from './helpers/heatline.mjs';
|
|
4
2
|
import { commonsDashboardsComputeTimestack, commonsDashboardsAutoComputeTimestack } from './helpers/timestack.mjs';
|
|
5
|
-
import { commonsDashboardsClampDateRanges, commonsDashboardsClampDateRangesForPeriod } from './helpers/clamp.mjs';
|
|
6
3
|
import { commonsDashboardsComputeTimeGraph, commonsDashboardsAutoComputeTimeGraph } from './helpers/time-graph.mjs';
|
|
7
4
|
import { commonsDashboardsComputeDurations, commonsDashboardsAutoComputeDurations } from './helpers/duration.mjs';
|
|
5
|
+
import { commonsDashboardsClampDateRanges, commonsDashboardsClampDateRangesForPeriod } from './helpers/clamp.mjs';
|
|
6
|
+
import { commonsDashboardsComputeHeatline, commonsDashboardsAutoComputeHeatline } from './helpers/heatline.mjs';
|
|
7
|
+
import { ECommonsTimeRangePeriod, toECommonsTimeRangePeriod, fromECommonsTimeRangePeriod, isECommonsTimeRangePeriod, keyToECommonsTimeRangePeriod, EPERIODS } from './enums/eperiod.mjs';
|
|
8
|
+
import { TCommonsFixedDurationTally } from './types/tfixed-duration-tally.mjs';
|
|
8
9
|
import { TCommonsFixedHeat } from './types/tfixed-heat.mjs';
|
|
9
10
|
import { TCommonsFixedDateTally } from './types/tfixed-date-tally.mjs';
|
|
10
11
|
import { TCommonsFixedFromAndDuration } from './types/tfixed-from-and-duration.mjs';
|
|
11
|
-
import { TCommonsFixedDurationTally } from './types/tfixed-duration-tally.mjs';
|
|
12
12
|
import { COMMONS_PERIOD_PIVOT_HOURS, commonsDashboardsGetClampForPeriod } from './consts/periods.mjs';
|
|
13
|
-
export {
|
|
13
|
+
export { commonsDashboardsFillPartialDateRanges, commonsDashboardsPivotAndFillAndSanitisePartialDateRanges, commonsDashboardsComputeTimestack, commonsDashboardsAutoComputeTimestack, commonsDashboardsComputeTimeGraph, commonsDashboardsAutoComputeTimeGraph, commonsDashboardsComputeDurations, commonsDashboardsAutoComputeDurations, commonsDashboardsClampDateRanges, commonsDashboardsClampDateRangesForPeriod, commonsDashboardsComputeHeatline, commonsDashboardsAutoComputeHeatline, ECommonsTimeRangePeriod, toECommonsTimeRangePeriod, fromECommonsTimeRangePeriod, isECommonsTimeRangePeriod, keyToECommonsTimeRangePeriod, EPERIODS, TCommonsFixedDurationTally, TCommonsFixedHeat, TCommonsFixedDateTally, TCommonsFixedFromAndDuration, COMMONS_PERIOD_PIVOT_HOURS, commonsDashboardsGetClampForPeriod };
|
package/dist/index.mjs
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { ECommonsTimeRangePeriod, toECommonsTimeRangePeriod, fromECommonsTimeRangePeriod, isECommonsTimeRangePeriod, keyToECommonsTimeRangePeriod, EPERIODS } from './enums/eperiod.mjs';
|
|
2
1
|
import { commonsDashboardsFillPartialDateRanges, commonsDashboardsPivotAndFillAndSanitisePartialDateRanges } from './helpers/date-range.mjs';
|
|
3
|
-
import { commonsDashboardsComputeHeatline, commonsDashboardsAutoComputeHeatline } from './helpers/heatline.mjs';
|
|
4
2
|
import { commonsDashboardsComputeTimestack, commonsDashboardsAutoComputeTimestack } from './helpers/timestack.mjs';
|
|
5
|
-
import { commonsDashboardsClampDateRanges, commonsDashboardsClampDateRangesForPeriod } from './helpers/clamp.mjs';
|
|
6
3
|
import { commonsDashboardsComputeTimeGraph, commonsDashboardsAutoComputeTimeGraph } from './helpers/time-graph.mjs';
|
|
7
4
|
import { commonsDashboardsComputeDurations, commonsDashboardsAutoComputeDurations } from './helpers/duration.mjs';
|
|
5
|
+
import { commonsDashboardsClampDateRanges, commonsDashboardsClampDateRangesForPeriod } from './helpers/clamp.mjs';
|
|
6
|
+
import { commonsDashboardsComputeHeatline, commonsDashboardsAutoComputeHeatline } from './helpers/heatline.mjs';
|
|
7
|
+
import { ECommonsTimeRangePeriod, toECommonsTimeRangePeriod, fromECommonsTimeRangePeriod, isECommonsTimeRangePeriod, keyToECommonsTimeRangePeriod, EPERIODS } from './enums/eperiod.mjs';
|
|
8
8
|
import { COMMONS_PERIOD_PIVOT_HOURS, commonsDashboardsGetClampForPeriod } from './consts/periods.mjs';
|
|
9
|
-
export {
|
|
9
|
+
export { commonsDashboardsFillPartialDateRanges, commonsDashboardsPivotAndFillAndSanitisePartialDateRanges, commonsDashboardsComputeTimestack, commonsDashboardsAutoComputeTimestack, commonsDashboardsComputeTimeGraph, commonsDashboardsAutoComputeTimeGraph, commonsDashboardsComputeDurations, commonsDashboardsAutoComputeDurations, commonsDashboardsClampDateRanges, commonsDashboardsClampDateRangesForPeriod, commonsDashboardsComputeHeatline, commonsDashboardsAutoComputeHeatline, ECommonsTimeRangePeriod, toECommonsTimeRangePeriod, fromECommonsTimeRangePeriod, isECommonsTimeRangePeriod, keyToECommonsTimeRangePeriod, EPERIODS, COMMONS_PERIOD_PIVOT_HOURS, commonsDashboardsGetClampForPeriod };
|
|
10
10
|
//# sourceMappingURL=index.mjs.map
|
package/dist/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.mjs","sourceRoot":"","sources":["../src/index.mts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"index.mjs","sourceRoot":"","sources":["../src/index.mts"],"names":[],"mappings":"AAAA,OAAO,EAAE,sCAAsC,EAAE,yDAAyD,EAAE,MAAM,0BAA0B,CAAC;AAC7I,OAAO,EAAE,iCAAiC,EAAE,qCAAqC,EAAE,MAAM,yBAAyB,CAAC;AACnH,OAAO,EAAE,iCAAiC,EAAE,qCAAqC,EAAE,MAAM,0BAA0B,CAAC;AACpH,OAAO,EAAE,iCAAiC,EAAE,qCAAqC,EAAE,MAAM,wBAAwB,CAAC;AAClH,OAAO,EAAE,gCAAgC,EAAE,yCAAyC,EAAE,MAAM,qBAAqB,CAAC;AAClH,OAAO,EAAE,gCAAgC,EAAE,oCAAoC,EAAE,MAAM,wBAAwB,CAAC;AAChH,OAAO,EACL,uBAAuB,EACvB,yBAAyB,EACzB,2BAA2B,EAC3B,yBAAyB,EACzB,4BAA4B,EAC5B,QAAQ,EACT,MAAM,qBAAqB,CAAC;AAK7B,OAAO,EAAE,0BAA0B,EAAE,kCAAkC,EAAE,MAAM,sBAAsB,CAAC;AACtG,OAAO,EACN,sCAAsC,EACtC,yDAAyD,EACzD,iCAAiC,EACjC,qCAAqC,EACrC,iCAAiC,EACjC,qCAAqC,EACrC,iCAAiC,EACjC,qCAAqC,EACrC,gCAAgC,EAChC,yCAAyC,EACzC,gCAAgC,EAChC,oCAAoC,EACpC,uBAAuB,EACvB,yBAAyB,EACzB,2BAA2B,EAC3B,yBAAyB,EACzB,4BAA4B,EAC5B,QAAQ,EAKR,0BAA0B,EAC1B,kCAAkC,EAClC,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tscommons-esm-dashboards",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"tsc": "./node_modules/typescript/bin/tsc",
|
|
@@ -15,16 +15,16 @@
|
|
|
15
15
|
"author": "Pete Morris",
|
|
16
16
|
"license": "ISC",
|
|
17
17
|
"devDependencies": {
|
|
18
|
-
"@stylistic/eslint-plugin
|
|
19
|
-
"eslint-plugin-import": "^2.
|
|
20
|
-
"eslint-plugin-prefer-arrow-functions": "^3.
|
|
21
|
-
"typescript": "^5.
|
|
22
|
-
"typescript-eslint": "^8.
|
|
18
|
+
"@stylistic/eslint-plugin": "^5.10.0",
|
|
19
|
+
"eslint-plugin-import": "^2.32.0",
|
|
20
|
+
"eslint-plugin-prefer-arrow-functions": "^3.9.1",
|
|
21
|
+
"typescript": "^5.8.0",
|
|
22
|
+
"typescript-eslint": "^8.53.0"
|
|
23
23
|
},
|
|
24
24
|
"files": [
|
|
25
25
|
"dist/**/*"
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"tscommons-esm-core": "^0.
|
|
28
|
+
"tscommons-esm-core": "^1.0.1"
|
|
29
29
|
}
|
|
30
30
|
}
|