@acorex/platform 20.6.0-next.24 → 20.6.0-next.26
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/common/index.d.ts +4 -0
- package/core/index.d.ts +1 -1
- package/fesm2022/acorex-platform-common.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-components.mjs +2 -2
- package/fesm2022/acorex-platform-layout-components.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-entity.mjs +4 -3
- package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-widgets.mjs +54 -40
- package/fesm2022/acorex-platform-layout-widgets.mjs.map +1 -1
- package/package.json +9 -9
package/common/index.d.ts
CHANGED
|
@@ -824,6 +824,10 @@ interface AXPFileStorageUpdateRequest {
|
|
|
824
824
|
* If null, the service will resolve the path based on metadata, user, tenant, or default rules.
|
|
825
825
|
*/
|
|
826
826
|
path?: string;
|
|
827
|
+
/**
|
|
828
|
+
* The name of the file.
|
|
829
|
+
*/
|
|
830
|
+
name?: string;
|
|
827
831
|
/**
|
|
828
832
|
* Metadata associated with the file.
|
|
829
833
|
*/
|
package/core/index.d.ts
CHANGED
|
@@ -989,7 +989,7 @@ type AXPWidgetTrigger = {
|
|
|
989
989
|
};
|
|
990
990
|
type AXPWidgetTriggers = AXPWidgetTrigger[];
|
|
991
991
|
|
|
992
|
-
type AXPFileStatus = 'attached' | 'uploading' | 'uploaded' | 'deleted' | 'remote';
|
|
992
|
+
type AXPFileStatus = 'attached' | 'uploading' | 'uploaded' | 'deleted' | 'remote' | 'editing';
|
|
993
993
|
interface AXPFileSource {
|
|
994
994
|
kind: 'blob' | 'url' | 'preview' | 'none' | 'fileId' | 'reference';
|
|
995
995
|
value?: Blob | string | AXPEntityReference;
|