@datagrok/hit-triage 1.4.2 → 1.4.4
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/.eslintrc.json +2 -1
- package/CHANGELOG.md +9 -0
- package/dist/package.js +1 -1
- package/dist/package.js.map +1 -1
- package/files/Hit Triage/campaigns/HTD-1/campaign.json +81 -1
- package/files/Hit Triage/templates/HT Demo Template.json +28 -1
- package/files/cache_config.json +27 -0
- package/package.json +12 -3
- package/src/app/hit-app-base.ts +5 -2
- package/src/app/hit-design-app.ts +7 -18
- package/src/app/utils.ts +17 -2
- package/src/package.ts +3 -1
- package/src/packageSettingsEditor.ts +54 -2
package/.eslintrc.json
CHANGED
|
@@ -16,7 +16,8 @@
|
|
|
16
16
|
],
|
|
17
17
|
"rules": {
|
|
18
18
|
"no-unused-vars": "off",
|
|
19
|
-
|
|
19
|
+
"@typescript-eslint/no-unused-vars": ["warn", { "varsIgnorePattern": "^(_|ui$|grok$|DG$)", "argsIgnorePattern": "^_"}],
|
|
20
|
+
"@typescript-eslint/require-array-sort-compare": "error",
|
|
20
21
|
"indent": [
|
|
21
22
|
"error",
|
|
22
23
|
2
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# HitTriage changelog
|
|
2
2
|
|
|
3
|
+
## 1.4.4 (2025-02-07)
|
|
4
|
+
|
|
5
|
+
* Fix permission check for admin members
|
|
6
|
+
* Add Default file storage for campaign files
|
|
7
|
+
|
|
8
|
+
## 1.4.3 (2025-02-06)
|
|
9
|
+
|
|
10
|
+
* Fix campaign auto-naming when creating new campaigns
|
|
11
|
+
|
|
3
12
|
## 1.4.2 (2025-02-03)
|
|
4
13
|
|
|
5
14
|
Correctly set semantic types for all columns in joining dataframes
|