Compare commits

...

14 Commits

Author SHA1 Message Date
semantic-release-bot 8cbcd18f4b chore(release): 6.3.0 [skip ci]
# [6.3.0](https://git.datacontroller.io/dc/dc/compare/v6.2.8...v6.3.0) (2023-12-04)

### Features

* viewer row handle ([dadac4f](dadac4f13f))
2023-12-04 18:49:31 +00:00
allan 6bb2378790 Merge pull request 'ci: doxygen fix' (#66) from ci-fix into main
Release / Build-production-and-ng-test (push) Successful in 3m8s Details
Release / Build-and-test-development (push) Successful in 6m27s Details
Release / release (push) Successful in 5m23s Details
Reviewed-on: #66
2023-12-04 18:38:27 +00:00
mihajlo e7d0ffe8c0 Merge branch 'main' into ci-fix
Build / Build-and-ng-test (pull_request) Successful in 48s Details
2023-12-04 17:38:00 +00:00
Mihajlo Medjedovic ab89600c73 style: lint
Build / Build-and-ng-test (pull_request) Successful in 47s Details
2023-12-04 18:37:05 +01:00
Mihajlo Medjedovic 830e3816a0 ci: build, syntax fix
Build / Build-and-ng-test (pull_request) Failing after 12s Details
2023-12-04 18:32:17 +01:00
Mihajlo Medjedovic dadac4f13f feat: viewer row handle
Build / Build-and-ng-test (pull_request) Failing after 0s Details
2023-12-04 18:17:49 +01:00
Mihajlo Medjedovic 1de48a49af ci: doxygen fix
Build / Build-and-ng-test (pull_request) Failing after 0s Details
2023-12-04 17:06:18 +01:00
Mihajlo Medjedovic 687a1e1cb5 ci: doxygen fix
Build / Build-and-ng-test (pull_request) Failing after 33s Details
2023-12-04 17:02:08 +01:00
Mihajlo Medjedovic 665a04f5c5 ci: doxygen fix
Build / Build-and-ng-test (pull_request) Failing after 14s Details
2023-12-04 17:01:26 +01:00
Mihajlo Medjedovic fdb18d242b ci: doxygen fix
Build / Build-and-ng-test (pull_request) Failing after 19s Details
2023-12-04 14:47:30 +01:00
Mihajlo Medjedovic ec173da4ce ci: doxygen fix
Build / Build-and-ng-test (pull_request) Failing after 9s Details
2023-12-04 14:47:02 +01:00
Mihajlo Medjedovic bb35cc15d2 ci: doxygen fix
Build / Build-and-ng-test (pull_request) Failing after 8s Details
2023-12-04 14:46:32 +01:00
Mihajlo Medjedovic 181f52eaea ci: doxygen fix
Build / Build-and-ng-test (pull_request) Failing after 8s Details
2023-12-04 14:45:57 +01:00
Mihajlo Medjedovic fc7c8101ed ci: doxygen fix
Build / Build-and-ng-test (pull_request) Failing after 8s Details
2023-12-04 14:44:49 +01:00
12 changed files with 34 additions and 13 deletions

View File

@ -18,8 +18,11 @@ jobs:
env:
NPMRC: ${{ secrets.NPMRC}}
- run: npm run lint:check
- run: |
- name: Lint check
run: npm run lint:check
- name: Licence checker
run: |
cd client
npm ci
npm run license-checker

View File

@ -168,6 +168,9 @@ jobs:
npm i -g @sasjs/cli
# jq is used to parse the release JSON
apt-get install jq -y
# doxygen is used for the SASJS docs
apt-get update
apt-get install doxygen -y
- name: Create Empty Release (assets are posted later)
run: |

View File

@ -1,3 +1,10 @@
# [6.3.0](https://git.datacontroller.io/dc/dc/compare/v6.2.8...v6.3.0) (2023-12-04)
### Features
* viewer row handle ([dadac4f](https://git.datacontroller.io/dc/dc/commit/dadac4f13f85b5446198b6340cad28844defc94d))
## [6.2.8](https://git.datacontroller.io/dc/dc/compare/v6.2.7...v6.2.8) (2023-12-04)

View File

@ -280,7 +280,7 @@
licenceState.value.editor_rows_allowed === 1
? 'row'
: 'rows'
}}, contact support@datacontroller.io</span
}}, contact support&#64;datacontroller.io</span
>
</clr-tooltip-content>
</clr-tooltip>
@ -417,7 +417,7 @@
licenceState.value.editor_rows_allowed === 1
? 'row'
: 'rows'
}}, contact support@datacontroller.io</span
}}, contact support&#64;datacontroller.io</span
>
</clr-tooltip-content>
</clr-tooltip>
@ -467,7 +467,7 @@
: 'rows'
}}
will be submitted. To remove the restriction, contact
support@datacontroller.io</span
support&#64;datacontroller.io</span
>
<div *ngIf="tableTrue" class="clr-offset-md-2 clr-col-md-8">
<div class="form-group">
@ -528,7 +528,7 @@
Due to current licence, only
{{ licenceState.value.submit_rows_limit }} rows in a file will
be submitted. To remove the restriction, contact
support@datacontroller.io
support&#64;datacontroller.io
</p>
</div>
<div class="modal-footer">

View File

@ -100,7 +100,7 @@
*clrIfOpen
>
<span *ngIf="tableLocked">
To unlock all tables, contact support@datacontroller.io
To unlock all tables, contact support&#64;datacontroller.io
</span>
</clr-tooltip-content>
</clr-tooltip>

View File

@ -72,7 +72,7 @@
>
To unlock more than
{{ licenceState.value.history_rows_allowed }} records, contact
support@datacontroller.io
support&#64;datacontroller.io
</p>
</div>

View File

@ -2,5 +2,5 @@
[ngClass]="classes"
[class.unset]="classes !== ''"
href="mailto:support@datacontroller.io?subject=Licence"
>support@datacontroller.io</a
>support&#64;datacontroller.io</a
>

View File

@ -106,7 +106,7 @@
*clrIfOpen
>
<span *ngIf="tableLocked">
To unlock all tables, contact support@datacontroller.io
To unlock all tables, contact support&#64;datacontroller.io
</span>
</clr-tooltip-content>

View File

@ -13,7 +13,7 @@
class="licence-notice"
>To unlock more then {{ licenceState.value.viewbox_limit }}
{{ licenceState.value.viewbox_limit === 1 ? 'viewbox' : 'viewboxes' }},
contact support@datacontroller.io</span
contact support&#64;datacontroller.io</span
>
</h3>

View File

@ -105,7 +105,7 @@
*clrIfOpen
>
<span *ngIf="tableLocked">
To unlock all tables, contact support@datacontroller.io
To unlock all tables, contact support&#64;datacontroller.io
</span>
</clr-tooltip-content>
</clr-tooltip>
@ -630,6 +630,9 @@
[cells]="hotTable.cells"
[maxRows]="hotTable.maxRows"
[manualColumnResize]="true"
[rowHeaders]="hotTable.rowHeaders"
[rowHeaderWidth]="hotTable.rowHeaderWidth"
[rowHeights]="hotTable.rowHeights"
[licenseKey]="hotTable.licenseKey"
>
</hot-table>

View File

@ -108,6 +108,11 @@ export class ViewerComponent implements AfterContentInit, AfterViewInit {
settings: {},
afterGetColHeader: undefined,
licenseKey: undefined,
rowHeaders: (index: number) => {
return ' '
},
rowHeaderWidth: 15,
rowHeights: 20,
contextMenu: ['copy_with_column_headers', 'copy_column_headers_only'],
copyPaste: {
copyColumnHeaders: true,

View File

@ -1,6 +1,6 @@
{
"name": "dcfrontend",
"version": "6.2.8",
"version": "6.3.0",
"description": "Data Controller",
"devDependencies": {
"@saithodev/semantic-release-gitea": "^2.1.0",