@vitrosoftware/common-ui-ts 1.1.19 → 1.1.21
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/css/common.css +1 -1
- package/css/std/controls/activity/activity.css +21 -0
- package/css/std/controls/activity-item/activity-item.css +74 -0
- package/css/std/controls/button/button.css +1 -1
- package/css/std/controls/command-menu/command-menu-item.css +1 -1
- package/css/std/controls/icon/icon.css +3 -0
- package/css/std/controls/sidebar/sidebar-item.css +12 -12
- package/css/std/controls/table-view/treegrid.css +6 -6
- package/css/std/controls/uploader/uploader.css +11 -10
- package/css/white/controls/activity/activity.css +21 -0
- package/css/white/controls/activity-item/activity-item.css +65 -0
- package/dist/constants/Event.d.ts +3 -1
- package/dist/controls/Activity/Activity.d.ts +9 -0
- package/dist/controls/ActivityItem/ActivityItem.d.ts +16 -0
- package/dist/controls/Icon/Icon.d.ts +11 -0
- package/dist/controls/TelerikUploader/TelerikUploaderConstants.d.ts +0 -1
- package/dist/controls/TelerikUploader/TelerikUploaderContextImpl.d.ts +2 -2
- package/dist/controls/TelerikUploader/TelerikUploaderSettings.d.ts +6 -4
- package/dist/controls/TreeView/TreeViewConstants.d.ts +2 -1
- package/dist/controls/ViewPart/ViewPart.d.ts +1 -0
- package/dist/index.css +130 -26
- package/dist/index.d.ts +8 -0
- package/dist/index.js +277 -429
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +233 -387
- package/dist/index.modern.js.map +1 -1
- package/package.json +2 -4
- package/src/controls/PdfViewer/js/pdf-viewer.js +1 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vitrosoftware/common-ui-ts",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.21",
|
|
4
4
|
"description": "vitro software common ui ts",
|
|
5
5
|
"author": "",
|
|
6
6
|
"license": "MIT",
|
|
@@ -33,7 +33,6 @@
|
|
|
33
33
|
"@types/node": "latest",
|
|
34
34
|
"@types/react": "latest",
|
|
35
35
|
"@types/react-dom": "latest",
|
|
36
|
-
"@types/react-router-dom": "^5.3.3",
|
|
37
36
|
"@types/react-router-bootstrap": "latest",
|
|
38
37
|
"@typescript-eslint/eslint-plugin": "^2.26.0",
|
|
39
38
|
"@typescript-eslint/parser": "^2.26.0",
|
|
@@ -57,7 +56,6 @@
|
|
|
57
56
|
"prettier": "^2.0.4",
|
|
58
57
|
"react": "18.2.0",
|
|
59
58
|
"react-dom": "18.2.0",
|
|
60
|
-
"react-router-dom": "^4.3.1",
|
|
61
59
|
"react-scripts": "5.0.1",
|
|
62
60
|
"typescript": "^4.7.4",
|
|
63
61
|
"concat": "1.0.3",
|
|
@@ -74,7 +72,7 @@
|
|
|
74
72
|
"rollup-plugin-postcss": "^3.1.3",
|
|
75
73
|
"inversify": "6.0.1",
|
|
76
74
|
"inversify-react": "1.0.2",
|
|
77
|
-
"@vitrosoftware/common-ui": "1.1.
|
|
75
|
+
"@vitrosoftware/common-ui": "1.1.21",
|
|
78
76
|
"react-router-bootstrap": "^0.24.4"
|
|
79
77
|
}
|
|
80
78
|
}
|
|
@@ -2251,9 +2251,7 @@ const PDFViewerApplication = {
|
|
|
2251
2251
|
pdfTitle = metadataTitle;
|
|
2252
2252
|
}
|
|
2253
2253
|
}
|
|
2254
|
-
if (
|
|
2255
|
-
this.setTitle(`${pdfTitle} - ${this._contentDispositionFilename || this._title}`);
|
|
2256
|
-
} else if (this._contentDispositionFilename) {
|
|
2254
|
+
if (this._contentDispositionFilename) {
|
|
2257
2255
|
this.setTitle(this._contentDispositionFilename);
|
|
2258
2256
|
}
|
|
2259
2257
|
if (info.IsXFAPresent && !info.IsAcroFormPresent && !pdfDocument.isPureXfa) {
|