@tasenor/common-plugins 1.13.23 → 1.13.25

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.
@@ -1,4 +1,4 @@
1
1
 
2
- > @tasenor/common-plugins@1.13.22 build /home/ci/tasenor-qa/tasenor-bookkeeper/packages/tasenor-common-plugins
2
+ > @tasenor/common-plugins@1.13.24 build /home/ci/tasenor-qa/tasenor-bookkeeper/packages/tasenor-common-plugins
3
3
  > rm -fr dist && tsc
4
4
 
@@ -1,8 +1,8 @@
1
1
 
2
- > @tasenor/common-plugins@1.13.22 ci /home/ci/tasenor-qa/tasenor-bookkeeper/packages/tasenor-common-plugins
2
+ > @tasenor/common-plugins@1.13.24 ci /home/ci/tasenor-qa/tasenor-bookkeeper/packages/tasenor-common-plugins
3
3
  > pnpm run lint
4
4
 
5
5
 
6
- > @tasenor/common-plugins@1.13.22 lint /home/ci/tasenor-qa/tasenor-bookkeeper/packages/tasenor-common-plugins
6
+ > @tasenor/common-plugins@1.13.24 lint /home/ci/tasenor-qa/tasenor-bookkeeper/packages/tasenor-common-plugins
7
7
  > eslint 'src/**/*.{ts,tsx}' 'data/**/*.mjs'
8
8
 
@@ -67,7 +67,7 @@ class FinnishIncomeStatementReport extends ReportPlugin {
67
67
  else {
68
68
  end = this.time2str(period.end_date);
69
69
  }
70
- return '{' + start + '} - {' + end + '}';
70
+ return '{' + start + '} {' + end + '}';
71
71
  }
72
72
  async getColumns(id, entries, options, settings) {
73
73
  // Construct columns for each tag and extra column for non-tagged.
@@ -65,7 +65,7 @@ class FinnishIncomeStatementReportLite extends ReportPlugin {
65
65
  else {
66
66
  end = this.time2str(period.end_date);
67
67
  }
68
- return '{' + start + '} - {' + end + '}';
68
+ return '{' + start + '} {' + end + '}';
69
69
  }
70
70
  async getColumns(id, entries, options, settings) {
71
71
  // Construct columns for each tag and extra column for non-tagged.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tasenor/common-plugins",
3
- "version": "1.13.23",
3
+ "version": "1.13.25",
4
4
  "description": "Shared common plugins of Tasenor project",
5
5
  "repository": "git@github.com:dataplugoy/tasenor-bookkeeper.git",
6
6
  "author": "Tommi Ronkainen <tommi.ronkainen@gmail.com>",
@@ -13,9 +13,9 @@
13
13
  "dayjs": "1.10.8",
14
14
  "sprintf-js": "^1.1.2",
15
15
  "tsx": "^4.7.0",
16
- "@tasenor/common-ui": "1.13.23",
17
- "@tasenor/common": "1.13.23",
18
- "@tasenor/common-node": "1.13.23"
16
+ "@tasenor/common-ui": "1.13.25",
17
+ "@tasenor/common-node": "1.13.25",
18
+ "@tasenor/common": "1.13.25"
19
19
  },
20
20
  "devDependencies": {
21
21
  "@mui/icons-material": "^5.14.1",
@@ -31,7 +31,7 @@
31
31
  "react-i18next": "^14.0.5",
32
32
  "react-router-dom": "^6.14.1",
33
33
  "typescript": "^5.1.6",
34
- "@tasenor/config": "1.13.23",
34
+ "@tasenor/config": "1.13.25",
35
35
  "eslint-config-tasenor": "0.0.0"
36
36
  },
37
37
  "peerDependencies": {
@@ -75,7 +75,7 @@ class FinnishIncomeStatementReport extends ReportPlugin {
75
75
  end = this.time2str(period.end_date)
76
76
  }
77
77
 
78
- return '{' + start + '} - {' + end + '}'
78
+ return '{' + start + '} {' + end + '}'
79
79
  }
80
80
 
81
81
  async getColumns(id, entries, options, settings) {
@@ -73,7 +73,7 @@ class FinnishIncomeStatementReportLite extends ReportPlugin {
73
73
  end = this.time2str(period.end_date)
74
74
  }
75
75
 
76
- return '{' + start + '} - {' + end + '}'
76
+ return '{' + start + '} {' + end + '}'
77
77
  }
78
78
 
79
79
  async getColumns(id, entries, options, settings) {