@crystaldesign/diva-backoffice 25.1.0-beta.1 → 25.1.0-beta.3
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/build/esm/index.js +539 -278
- package/build/types/backoffice/src/ui/IDMCatalogEditor/components/OpenModalButton/Forms/IDMImportForm.d.ts +11 -0
- package/build/types/backoffice/src/ui/IDMCatalogEditor/components/OpenModalButton/Forms/IDMImportForm.d.ts.map +1 -0
- package/build/types/backoffice/src/ui/IDMCatalogEditor/components/OpenModalButton/index.d.ts +10 -0
- package/build/types/backoffice/src/ui/IDMCatalogEditor/components/OpenModalButton/index.d.ts.map +1 -0
- package/build/types/backoffice/src/ui/IDMCatalogEditor/components/UploadButton/index.d.ts +12 -0
- package/build/types/backoffice/src/ui/IDMCatalogEditor/components/UploadButton/index.d.ts.map +1 -0
- package/build/types/backoffice/src/ui/IDMCatalogEditor/components/types.d.ts +2 -0
- package/build/types/backoffice/src/ui/IDMCatalogEditor/components/types.d.ts.map +1 -0
- package/build/types/backoffice/src/ui/IDMCatalogEditor/modules/TableCatalogs/index.d.ts.map +1 -1
- package/build/types/backoffice/src/ui/IDMCatalogEditor/useNavigation.d.ts.map +1 -1
- package/build/types/backoffice/src/ui/IDMEnricherEditor/modules/TablePackages/index.d.ts.map +1 -1
- package/build/types/backoffice/src/ui/RelationSelector/useRelationSelectorData.d.ts.map +1 -1
- package/build/types/backoffice/src/utils/downloadHandler.d.ts +3 -2
- package/build/types/backoffice/src/utils/downloadHandler.d.ts.map +1 -1
- package/package.json +9 -9
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IDMIMportProgressState } from '../../types';
|
|
3
|
+
interface Props {
|
|
4
|
+
idmService: string;
|
|
5
|
+
organizationId: string;
|
|
6
|
+
setProgress: (state: IDMIMportProgressState) => void;
|
|
7
|
+
progress: IDMIMportProgressState;
|
|
8
|
+
}
|
|
9
|
+
export default function ({ idmService, organizationId, setProgress, progress }: Props): React.JSX.Element;
|
|
10
|
+
export {};
|
|
11
|
+
//# sourceMappingURL=IDMImportForm.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IDMImportForm.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/ui/IDMCatalogEditor/components/OpenModalButton/Forms/IDMImportForm.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAmB,MAAM,OAAO,CAAC;AAIxC,OAAO,EAAE,sBAAsB,EAAE,MAAM,aAAa,CAAC;AAErD,UAAU,KAAK;IACb,UAAU,EAAE,MAAM,CAAC;IACnB,cAAc,EAAE,MAAM,CAAC;IACvB,WAAW,EAAE,CAAC,KAAK,EAAE,sBAAsB,KAAK,IAAI,CAAC;IACrD,QAAQ,EAAE,sBAAsB,CAAC;CAClC;AAED,MAAM,CAAC,OAAO,WAAW,EAAE,UAAU,EAAE,cAAc,EAAE,WAAW,EAAE,QAAQ,EAAE,EAAE,KAAK,qBAmBpF"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
interface Props {
|
|
3
|
+
title: string;
|
|
4
|
+
type: 'IDM_IMPORT';
|
|
5
|
+
idmService: string;
|
|
6
|
+
organizationId: string;
|
|
7
|
+
}
|
|
8
|
+
export default function ({ title, type, idmService, organizationId }: Props): React.JSX.Element;
|
|
9
|
+
export {};
|
|
10
|
+
//# sourceMappingURL=index.d.ts.map
|
package/build/types/backoffice/src/ui/IDMCatalogEditor/components/OpenModalButton/index.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMCatalogEditor/components/OpenModalButton/index.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAmB,MAAM,OAAO,CAAC;AAKxC,UAAU,KAAK;IACb,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,YAAY,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;IACnB,cAAc,EAAE,MAAM,CAAC;CACxB;AAED,MAAM,CAAC,OAAO,WAAW,EAAE,KAAK,EAAE,IAAI,EAAE,UAAU,EAAE,cAAc,EAAE,EAAE,KAAK,qBAmC1E"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IDMIMportProgressState } from '../types';
|
|
3
|
+
interface Props {
|
|
4
|
+
action: string;
|
|
5
|
+
contentType: 'multipart/form-data';
|
|
6
|
+
title?: string;
|
|
7
|
+
disabled?: boolean;
|
|
8
|
+
setProgress: (state: IDMIMportProgressState) => void;
|
|
9
|
+
}
|
|
10
|
+
export default function ({ action, title, disabled, contentType, setProgress }: Props): React.JSX.Element;
|
|
11
|
+
export {};
|
|
12
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMCatalogEditor/components/UploadButton/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAmB,MAAM,OAAO,CAAC;AAOxC,OAAO,EAAE,sBAAsB,EAAE,MAAM,UAAU,CAAC;AAElD,UAAU,KAAK;IACb,MAAM,EAAE,MAAM,CAAC;IACf,WAAW,EAAE,qBAAqB,CAAC;IACnC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,WAAW,EAAE,CAAC,KAAK,EAAE,sBAAsB,KAAK,IAAI,CAAC;CACtD;AAED,MAAM,CAAC,OAAO,WAAW,EAAE,MAAM,EAAE,KAAK,EAAE,QAAQ,EAAE,WAAW,EAAE,WAAW,EAAE,EAAE,KAAK,qBA2CpF"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../../../src/ui/IDMCatalogEditor/components/types.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,sBAAsB,GAAG,YAAY,GAAG,SAAS,GAAG,OAAO,GAAG,SAAS,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMCatalogEditor/modules/TableCatalogs/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA6B,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMCatalogEditor/modules/TableCatalogs/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA6B,MAAM,OAAO,CAAC;AAalD,MAAM,CAAC,OAAO,gCA2qBb"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useNavigation.d.ts","sourceRoot":"","sources":["../../../../../../src/ui/IDMCatalogEditor/useNavigation.ts"],"names":[],"mappings":"AAIA,MAAM,CAAC,OAAO;uCAaO,MAAM,WAAW,MAAM,EAAE,SAAQ,MAAM;;;;
|
|
1
|
+
{"version":3,"file":"useNavigation.d.ts","sourceRoot":"","sources":["../../../../../../src/ui/IDMCatalogEditor/useNavigation.ts"],"names":[],"mappings":"AAIA,MAAM,CAAC,OAAO;uCAaO,MAAM,WAAW,MAAM,EAAE,SAAQ,MAAM;;;;EAa3D"}
|
package/build/types/backoffice/src/ui/IDMEnricherEditor/modules/TablePackages/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMEnricherEditor/modules/TablePackages/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA6B,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMEnricherEditor/modules/TablePackages/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA6B,MAAM,OAAO,CAAC;AAWlD,MAAM,CAAC,OAAO,gCAuKb"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useRelationSelectorData.d.ts","sourceRoot":"","sources":["../../../../../../src/ui/RelationSelector/useRelationSelectorData.ts"],"names":[],"mappings":"AAAA,OAAO,0BAA0B,MAAM,8BAA8B,CAAC;AAGtE,OAAO,EAAE,OAAO,EAAiC,MAAM,SAAS,CAAC;AAGjE,MAAM,WAAW,KAAK;IACpB,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,CAAC,EAAE,GAAG,CAAC;CACZ;AAED,MAAM,WAAW,KAAK;IACpB,IAAI,EAAE,GAAG,EAAE,CAAC;IACZ,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,GAAG,CAAC;CACb;AAOD,MAAM,CAAC,OAAO,WAAW,EAAE,EAAE,EAAE,IAAI,EAAE,EAAE,KAAK;6BAgHJ,GAAG,YAAW,MAAM;;;;qBAgElC,GAAG;uBA6CD,GAAG,EAAE,SAAS,MAAM;0BAzKX,MAAM;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"useRelationSelectorData.d.ts","sourceRoot":"","sources":["../../../../../../src/ui/RelationSelector/useRelationSelectorData.ts"],"names":[],"mappings":"AAAA,OAAO,0BAA0B,MAAM,8BAA8B,CAAC;AAGtE,OAAO,EAAE,OAAO,EAAiC,MAAM,SAAS,CAAC;AAGjE,MAAM,WAAW,KAAK;IACpB,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,CAAC,EAAE,GAAG,CAAC;CACZ;AAED,MAAM,WAAW,KAAK;IACpB,IAAI,EAAE,GAAG,EAAE,CAAC;IACZ,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,GAAG,CAAC;CACb;AAOD,MAAM,CAAC,OAAO,WAAW,EAAE,EAAE,EAAE,IAAI,EAAE,EAAE,KAAK;6BAgHJ,GAAG,YAAW,MAAM;;;;qBAgElC,GAAG;uBA6CD,GAAG,EAAE,SAAS,MAAM;0BAzKX,MAAM;;;;;;;;;;;;;;;6BApDX,CAAC;uBAC3B,CAAC;;;;;;6BA2BiC,GAAG;;yBAkNb,MAAM,SAAS,MAAM;;;EAkFlD"}
|
|
@@ -11,6 +11,7 @@ interface ExportChildrenParams {
|
|
|
11
11
|
interface ExportParams extends ExportChildrenParams {
|
|
12
12
|
length: number;
|
|
13
13
|
}
|
|
14
|
-
declare const generateCSVData: (exportParam: ExportParams) => Promise<void>;
|
|
15
|
-
export
|
|
14
|
+
export declare const generateCSVData: (exportParam: ExportParams) => Promise<void>;
|
|
15
|
+
export declare function downloadFile(url: string, jwt: string, accept: string, fileName: string): Promise<void>;
|
|
16
|
+
export {};
|
|
16
17
|
//# sourceMappingURL=downloadHandler.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"downloadHandler.d.ts","sourceRoot":"","sources":["../../../../../src/utils/downloadHandler.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,kBAAkB,CAAC;AAO3C,UAAU,oBAAoB;IAC5B,GAAG,EAAE,QAAQ,CAAC;IACd,OAAO,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAC9B,WAAW,EAAE,GAAG,CAAC;IACjB,QAAQ,EAAE,MAAM,CAAC;IAEjB,MAAM,EAAE,MAAM,EAAE,CAAC;IACjB,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,CAAC,EAAE,oBAAoB,CAAC;CACjC;AAED,UAAU,YAAa,SAAQ,oBAAoB;IACjD,MAAM,EAAE,MAAM,CAAC;CAChB;AAuBD,
|
|
1
|
+
{"version":3,"file":"downloadHandler.d.ts","sourceRoot":"","sources":["../../../../../src/utils/downloadHandler.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,kBAAkB,CAAC;AAO3C,UAAU,oBAAoB;IAC5B,GAAG,EAAE,QAAQ,CAAC;IACd,OAAO,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAC9B,WAAW,EAAE,GAAG,CAAC;IACjB,QAAQ,EAAE,MAAM,CAAC;IAEjB,MAAM,EAAE,MAAM,EAAE,CAAC;IACjB,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,CAAC,EAAE,oBAAoB,CAAC;CACjC;AAED,UAAU,YAAa,SAAQ,oBAAoB;IACjD,MAAM,EAAE,MAAM,CAAC;CAChB;AAuBD,eAAO,MAAM,eAAe,gBAAuB,YAAY,kBAkB9D,CAAC;AAEF,wBAAsB,YAAY,CAAC,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,iBAsB5F"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@crystaldesign/diva-backoffice",
|
|
3
|
-
"version": "25.1.0-beta.
|
|
3
|
+
"version": "25.1.0-beta.3",
|
|
4
4
|
"license": "COMMERCIAL",
|
|
5
5
|
"devDependencies": {
|
|
6
6
|
"@testing-library/jest-dom": "^6.5.0",
|
|
@@ -15,13 +15,13 @@
|
|
|
15
15
|
"dependencies": {
|
|
16
16
|
"@ant-design/icons": "5.4.0",
|
|
17
17
|
"@babel/runtime": "7.24.7",
|
|
18
|
-
"@crystaldesign/content-box": "25.1.0-beta.
|
|
19
|
-
"@crystaldesign/content-item": "25.1.0-beta.
|
|
20
|
-
"@crystaldesign/diva-core": "25.1.0-beta.
|
|
21
|
-
"@crystaldesign/diva-utils": "25.1.0-beta.
|
|
22
|
-
"@crystaldesign/media-upload": "25.1.0-beta.
|
|
23
|
-
"@crystaldesign/rtf-editor": "25.1.0-beta.
|
|
24
|
-
"@crystaldesign/spreadsheet": "25.1.0-beta.
|
|
18
|
+
"@crystaldesign/content-box": "25.1.0-beta.3",
|
|
19
|
+
"@crystaldesign/content-item": "25.1.0-beta.3",
|
|
20
|
+
"@crystaldesign/diva-core": "25.1.0-beta.3",
|
|
21
|
+
"@crystaldesign/diva-utils": "25.1.0-beta.3",
|
|
22
|
+
"@crystaldesign/media-upload": "25.1.0-beta.3",
|
|
23
|
+
"@crystaldesign/rtf-editor": "25.1.0-beta.3",
|
|
24
|
+
"@crystaldesign/spreadsheet": "25.1.0-beta.3",
|
|
25
25
|
"@google/model-viewer": "3.5.0",
|
|
26
26
|
"ag-charts-community": "^10.1.0",
|
|
27
27
|
"ag-charts-react": "^10.1.0",
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
},
|
|
52
52
|
"module": "build/esm/index.js",
|
|
53
53
|
"types": "./build/types/backoffice/src/index.d.ts",
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "fbf1ef780692f644a2d3a29ae58eb3b28349bdc8"
|
|
55
55
|
}
|