@scaleflex/widget-provider-views 0.2.0 → 0.3.0

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 CHANGED
@@ -3,34 +3,54 @@
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.0](https://code.scaleflex.cloud/scaleflex/widget/compare/v0.1.2...v0.2.0) (2025-08-05)
6
+ # [0.3.0](https://code.scaleflex.cloud/scaleflex/widget/compare/v0.2.1...v0.3.0) (2025-08-12)
7
7
 
8
8
 
9
9
  ### Features
10
10
 
11
- * implement the recursive remote upload for 3rd parties [FRA-1343] ([4db5cba](https://code.scaleflex.cloud/scaleflex/widget/commits/4db5cba125d155b1d1ab6cdbc68c28ae07d78f4c))
12
-
13
-
14
-
15
-
16
-
17
- ## [0.1.2](https://code.scaleflex.cloud/scaleflex/widget/compare/v0.1.1...v0.1.2) (2025-07-30)
18
-
19
- **Note:** Version bump only for package @scaleflex/widget-provider-views
20
-
21
-
22
-
23
-
24
-
25
- ## [0.1.1](https://code.scaleflex.cloud/scaleflex/widget/compare/v0.1.0...v0.1.1) (2025-07-28)
26
-
27
- **Note:** Version bump only for package @scaleflex/widget-provider-views
11
+ * add closeAfterUploadStart option to modal behavior and update documentation ([f9d8afc](https://code.scaleflex.cloud/scaleflex/widget/commits/f9d8afc95f6d848de0d197680e3dbc97c82aca48))
28
12
 
29
13
 
30
14
 
31
15
 
32
16
 
33
17
 
18
+ ## [0.2.1](https://code.scaleflex.cloud/scaleflex/widget/compare/v0.2.0...v0.2.1) (2025-08-06)
19
+
20
+ **Note:** Version bump only for package @scaleflex/widget-provider-views
21
+
22
+
23
+
24
+
25
+
26
+ # [0.2.0](https://code.scaleflex.cloud/scaleflex/widget/compare/v0.1.2...v0.2.0) (2025-08-05)
27
+
28
+
29
+ ### Features
30
+
31
+ * implement the recursive remote upload for 3rd parties [FRA-1343] ([4db5cba](https://code.scaleflex.cloud/scaleflex/widget/commits/4db5cba125d155b1d1ab6cdbc68c28ae07d78f4c))
32
+
33
+
34
+
35
+
36
+
37
+ ## [0.1.2](https://code.scaleflex.cloud/scaleflex/widget/compare/v0.1.1...v0.1.2) (2025-07-30)
38
+
39
+ **Note:** Version bump only for package @scaleflex/widget-provider-views
40
+
41
+
42
+
43
+
44
+
45
+ ## [0.1.1](https://code.scaleflex.cloud/scaleflex/widget/compare/v0.1.0...v0.1.1) (2025-07-28)
46
+
47
+ **Note:** Version bump only for package @scaleflex/widget-provider-views
48
+
49
+
50
+
51
+
52
+
53
+
34
54
  # [0.1.0](https://code.scaleflex.cloud/scaleflex/widget/compare/v0.0.5...v0.1.0) (2025-07-23)
35
55
 
36
56
  **Note:** Version bump only for package @scaleflex/widget-provider-views
package/lib/index.js CHANGED
@@ -1040,9 +1040,11 @@ 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
- shouldIncludeSubFolders = _this$plugin$getPlugi15.shouldIncludeSubFolders,
1045
- currentSelection = _this$plugin$getPlugi15.currentSelection;
1047
+ shouldIncludeSubFolders = _this$plugin$getPlugi15.shouldIncludeSubFolders;
1046
1048
  var handleToggleIncludeSubfoldersOption = function handleToggleIncludeSubfoldersOption() {
1047
1049
  return _this11.plugin.setPluginCommonState({
1048
1050
  shouldIncludeSubFolders: !shouldIncludeSubFolders
@@ -1052,9 +1054,6 @@ var ProviderView = /*#__PURE__*/function () {
1052
1054
  checked: shouldIncludeSubFolders,
1053
1055
  label: this.plugin.filerobot.i18n('remoteUploadIncludeSubFoldersCheckbox'),
1054
1056
  labelPosition: "after",
1055
- disabled: currentSelection.length === 0 || !currentSelection.some(function (item) {
1056
- return item.isFolder;
1057
- }),
1058
1057
  onChange: handleToggleIncludeSubfoldersOption,
1059
1058
  size: "sm",
1060
1059
  type: "checkbox"
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.0",
4
+ "version": "0.3.0",
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.0",
21
- "@scaleflex/widget-icons": "^0.2.0",
22
- "@scaleflex/widget-utils": "^0.2.0",
20
+ "@scaleflex/widget-common": "^0.3.0",
21
+ "@scaleflex/widget-icons": "^0.3.0",
22
+ "@scaleflex/widget-utils": "^0.3.0",
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": "26ec7e315c676a2b2060361f58082fc275a2d7bf"
35
+ "gitHead": "184ae299a77257f5dfd7e6e645e4003da18a75b4"
36
36
  }