@scaleflex/widget-provider-views 0.2.0 → 0.2.1
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/CHANGELOG.md +8 -0
- package/lib/index.js +3 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [0.2.1](https://code.scaleflex.cloud/scaleflex/widget/compare/v0.2.0...v0.2.1) (2025-08-06)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @scaleflex/widget-provider-views
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [0.2.0](https://code.scaleflex.cloud/scaleflex/widget/compare/v0.1.2...v0.2.0) (2025-08-05)
|
|
7
15
|
|
|
8
16
|
|
package/lib/index.js
CHANGED
|
@@ -1040,6 +1040,9 @@ var ProviderView = /*#__PURE__*/function () {
|
|
|
1040
1040
|
key: "renderPanelUploadActionButtons",
|
|
1041
1041
|
value: function renderPanelUploadActionButtons() {
|
|
1042
1042
|
var _this11 = this;
|
|
1043
|
+
if (!this.plugin.filerobot.opts.enableRemoteRecursiveUpload) {
|
|
1044
|
+
return null;
|
|
1045
|
+
}
|
|
1043
1046
|
var _this$plugin$getPlugi15 = this.plugin.getPluginCommonState(),
|
|
1044
1047
|
shouldIncludeSubFolders = _this$plugin$getPlugi15.shouldIncludeSubFolders,
|
|
1045
1048
|
currentSelection = _this$plugin$getPlugi15.currentSelection;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scaleflex/widget-provider-views",
|
|
3
3
|
"description": "View library for Scaleflex remote provider plugins.",
|
|
4
|
-
"version": "0.2.
|
|
4
|
+
"version": "0.2.1",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "lib/index.js",
|
|
7
7
|
"style": "dist/style.min.css",
|
|
@@ -17,9 +17,9 @@
|
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"@scaleflex/icons": "^3.0.0-beta.11",
|
|
19
19
|
"@scaleflex/ui": "^3.0.0-beta.11",
|
|
20
|
-
"@scaleflex/widget-common": "^0.2.
|
|
21
|
-
"@scaleflex/widget-icons": "^0.2.
|
|
22
|
-
"@scaleflex/widget-utils": "^0.2.
|
|
20
|
+
"@scaleflex/widget-common": "^0.2.1",
|
|
21
|
+
"@scaleflex/widget-icons": "^0.2.1",
|
|
22
|
+
"@scaleflex/widget-utils": "^0.2.1",
|
|
23
23
|
"classnames": "^2.2.6",
|
|
24
24
|
"use-context-selector": "^1.3.9"
|
|
25
25
|
},
|
|
@@ -32,5 +32,5 @@
|
|
|
32
32
|
"react": ">=19.0.0",
|
|
33
33
|
"react-dom": ">=19.0.0"
|
|
34
34
|
},
|
|
35
|
-
"gitHead": "
|
|
35
|
+
"gitHead": "a195e3fe116e2bec65550e5390ae71496eec0d90"
|
|
36
36
|
}
|