@crystaldesign/diva-backoffice 24.14.0-rc.8 → 24.14.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/build/esm/index.js +27 -8
- package/build/types/backoffice/src/ui/IDMCatalogEditor/components/CatalogSelector/index.d.ts +2 -1
- package/build/types/backoffice/src/ui/IDMCatalogEditor/components/CatalogSelector/index.d.ts.map +1 -1
- package/build/types/backoffice/src/ui/IDMCatalogEditor/modules/TableCatalogs/index.d.ts.map +1 -1
- package/build/types/backoffice/src/ui/IDMCatalogEditor/modules/TableDecisions/index.d.ts.map +1 -1
- package/build/types/backoffice/src/ui/IDMCatalogEditor/modules/TableFeatureClasses/index.d.ts.map +1 -1
- package/build/types/backoffice/src/ui/IDMCatalogEditor/modules/TableFeatures/index.d.ts.map +1 -1
- package/build/types/backoffice/src/ui/IDMCatalogEditor/modules/TableItems/index.d.ts.map +1 -1
- package/build/types/backoffice/src/ui/IDMCatalogEditor/modules/TableOptions/index.d.ts.map +1 -1
- package/build/types/backoffice/src/ui/IDMCatalogEditor/modules/TableSeries/index.d.ts.map +1 -1
- package/build/types/backoffice/src/ui/IDMEnricherEditor/components/PackageSelector/index.d.ts +2 -1
- package/build/types/backoffice/src/ui/IDMEnricherEditor/components/PackageSelector/index.d.ts.map +1 -1
- package/build/types/backoffice/src/ui/IDMEnricherEditor/modules/TableExclusivity/index.d.ts.map +1 -1
- package/build/types/backoffice/src/ui/IDMEnricherEditor/modules/TableProperties/index.d.ts.map +1 -1
- package/build/types/backoffice/src/ui/IDMEnricherEditor/modules/TableRenaming/index.d.ts.map +1 -1
- package/build/types/backoffice/src/ui/IDMEnricherEditor/modules/TableTabGroups/index.d.ts.map +1 -1
- package/package.json +9 -9
package/build/esm/index.js
CHANGED
|
@@ -30075,12 +30075,13 @@ function TablePackages () {
|
|
|
30075
30075
|
function PackageSelector(_ref) {
|
|
30076
30076
|
var selectedPackage = _ref.selectedPackage,
|
|
30077
30077
|
setSelectedPackage = _ref.setSelectedPackage,
|
|
30078
|
-
enricherService = _ref.enricherService
|
|
30078
|
+
enricherService = _ref.enricherService,
|
|
30079
|
+
organizationId = _ref.organizationId;
|
|
30079
30080
|
var _useTranslation = useTranslation(),
|
|
30080
30081
|
t = _useTranslation.t;
|
|
30081
30082
|
return /*#__PURE__*/jsx(SimpleSelect, {
|
|
30082
30083
|
apiInterface: {
|
|
30083
|
-
read: enricherService +
|
|
30084
|
+
read: enricherService + "/packages?filter=organizationId==\"".concat(organizationId, "\"")
|
|
30084
30085
|
},
|
|
30085
30086
|
apiMapping: {
|
|
30086
30087
|
type: 'query',
|
|
@@ -30336,6 +30337,7 @@ function TableProperties () {
|
|
|
30336
30337
|
"float": 'right'
|
|
30337
30338
|
},
|
|
30338
30339
|
children: /*#__PURE__*/jsx(PackageSelector, {
|
|
30340
|
+
organizationId: organizationId,
|
|
30339
30341
|
selectedPackage: packageId,
|
|
30340
30342
|
setSelectedPackage: function setSelectedPackage(id) {
|
|
30341
30343
|
return updateNavigation(id);
|
|
@@ -30978,6 +30980,7 @@ var RenamingTable = function RenamingTable(_ref) {
|
|
|
30978
30980
|
t = _useTranslation.t;
|
|
30979
30981
|
var _useModule = useModule$1(['renaming', type]),
|
|
30980
30982
|
packageId = _useModule.packageId,
|
|
30983
|
+
organizationId = _useModule.organizationId,
|
|
30981
30984
|
updateNavigation = _useModule.updateNavigation,
|
|
30982
30985
|
apiConfig = _useModule.apiConfig;
|
|
30983
30986
|
var _useConfiguration = useConfiguration(config),
|
|
@@ -31006,6 +31009,7 @@ var RenamingTable = function RenamingTable(_ref) {
|
|
|
31006
31009
|
"float": 'right'
|
|
31007
31010
|
},
|
|
31008
31011
|
children: [/*#__PURE__*/jsx(PackageSelector, {
|
|
31012
|
+
organizationId: organizationId,
|
|
31009
31013
|
selectedPackage: packageId,
|
|
31010
31014
|
setSelectedPackage: function setSelectedPackage(id) {
|
|
31011
31015
|
return updateNavigation(id);
|
|
@@ -31481,6 +31485,7 @@ var ExclusivityTable = function ExclusivityTable(_ref) {
|
|
|
31481
31485
|
"float": 'right'
|
|
31482
31486
|
},
|
|
31483
31487
|
children: [/*#__PURE__*/jsx(PackageSelector, {
|
|
31488
|
+
organizationId: organizationId,
|
|
31484
31489
|
selectedPackage: packageId,
|
|
31485
31490
|
setSelectedPackage: function setSelectedPackage(id) {
|
|
31486
31491
|
return updateNavigation(id);
|
|
@@ -31542,9 +31547,9 @@ function TableTabGroups () {
|
|
|
31542
31547
|
t = _useTranslation.t;
|
|
31543
31548
|
var _useModule = useModule$1(['tabgroups']),
|
|
31544
31549
|
packageId = _useModule.packageId,
|
|
31550
|
+
organizationId = _useModule.organizationId,
|
|
31545
31551
|
updateNavigation = _useModule.updateNavigation,
|
|
31546
|
-
apiConfig = _useModule.apiConfig
|
|
31547
|
-
organizationId = _useModule.organizationId;
|
|
31552
|
+
apiConfig = _useModule.apiConfig;
|
|
31548
31553
|
return /*#__PURE__*/jsxs(Fragment, {
|
|
31549
31554
|
children: [/*#__PURE__*/jsx(Descriptions$1, {
|
|
31550
31555
|
title: /*#__PURE__*/jsxs("div", {
|
|
@@ -31553,6 +31558,7 @@ function TableTabGroups () {
|
|
|
31553
31558
|
"float": 'right'
|
|
31554
31559
|
},
|
|
31555
31560
|
children: /*#__PURE__*/jsx(PackageSelector, {
|
|
31561
|
+
organizationId: organizationId,
|
|
31556
31562
|
selectedPackage: packageId,
|
|
31557
31563
|
setSelectedPackage: function setSelectedPackage(id) {
|
|
31558
31564
|
return updateNavigation(id);
|
|
@@ -31852,6 +31858,12 @@ function TableCatalogs () {
|
|
|
31852
31858
|
updateNavigation(selectedNodes[0].data._id, ['series']);
|
|
31853
31859
|
}
|
|
31854
31860
|
}],
|
|
31861
|
+
preFilter: {
|
|
31862
|
+
colId: 'organizationId',
|
|
31863
|
+
filterType: 'text',
|
|
31864
|
+
type: 'equals',
|
|
31865
|
+
filter: organizationId
|
|
31866
|
+
},
|
|
31855
31867
|
configuration: {
|
|
31856
31868
|
type: 'dotnetSSM',
|
|
31857
31869
|
apiInterface: {
|
|
@@ -32327,12 +32339,13 @@ function TableCatalogs () {
|
|
|
32327
32339
|
function CatalogSelector(_ref) {
|
|
32328
32340
|
var selectedCatalog = _ref.selectedCatalog,
|
|
32329
32341
|
setSelectedCatalog = _ref.setSelectedCatalog,
|
|
32330
|
-
idmService = _ref.idmService
|
|
32342
|
+
idmService = _ref.idmService,
|
|
32343
|
+
organizationId = _ref.organizationId;
|
|
32331
32344
|
var _useTranslation = useTranslation(),
|
|
32332
32345
|
t = _useTranslation.t;
|
|
32333
32346
|
return /*#__PURE__*/jsx(SimpleSelect, {
|
|
32334
32347
|
apiInterface: {
|
|
32335
|
-
read: idmService +
|
|
32348
|
+
read: idmService + "/v3.0/catalogs?filter=organizationId==\"".concat(organizationId)
|
|
32336
32349
|
},
|
|
32337
32350
|
apiMapping: {
|
|
32338
32351
|
type: 'query',
|
|
@@ -32632,6 +32645,7 @@ function TableItems () {
|
|
|
32632
32645
|
"float": 'right'
|
|
32633
32646
|
},
|
|
32634
32647
|
children: [/*#__PURE__*/jsx(CatalogSelector, {
|
|
32648
|
+
organizationId: organizationId,
|
|
32635
32649
|
selectedCatalog: catalogId,
|
|
32636
32650
|
setSelectedCatalog: function setSelectedCatalog(id) {
|
|
32637
32651
|
return updateNavigation(id);
|
|
@@ -32945,6 +32959,7 @@ function TableSeries () {
|
|
|
32945
32959
|
"float": 'right'
|
|
32946
32960
|
},
|
|
32947
32961
|
children: /*#__PURE__*/jsx(CatalogSelector, {
|
|
32962
|
+
organizationId: organizationId,
|
|
32948
32963
|
selectedCatalog: catalogId,
|
|
32949
32964
|
setSelectedCatalog: function setSelectedCatalog(id) {
|
|
32950
32965
|
return updateNavigation(id);
|
|
@@ -33141,6 +33156,7 @@ function TableFeatures () {
|
|
|
33141
33156
|
"float": 'right'
|
|
33142
33157
|
},
|
|
33143
33158
|
children: /*#__PURE__*/jsx(CatalogSelector, {
|
|
33159
|
+
organizationId: organizationId,
|
|
33144
33160
|
selectedCatalog: catalogId,
|
|
33145
33161
|
setSelectedCatalog: function setSelectedCatalog(id) {
|
|
33146
33162
|
return updateNavigation(id);
|
|
@@ -33277,6 +33293,7 @@ function TableOptions () {
|
|
|
33277
33293
|
"float": 'right'
|
|
33278
33294
|
},
|
|
33279
33295
|
children: [/*#__PURE__*/jsx(CatalogSelector, {
|
|
33296
|
+
organizationId: organizationId,
|
|
33280
33297
|
selectedCatalog: catalogId,
|
|
33281
33298
|
setSelectedCatalog: function setSelectedCatalog(id) {
|
|
33282
33299
|
return updateNavigation(id);
|
|
@@ -33457,7 +33474,8 @@ function TableFeatureClasses () {
|
|
|
33457
33474
|
setSelectedCatalog: function setSelectedCatalog(id) {
|
|
33458
33475
|
return updateNavigation(id);
|
|
33459
33476
|
},
|
|
33460
|
-
idmService: apiConfig.idmService
|
|
33477
|
+
idmService: apiConfig.idmService,
|
|
33478
|
+
organizationId: organizationId
|
|
33461
33479
|
})
|
|
33462
33480
|
})]
|
|
33463
33481
|
})
|
|
@@ -33579,7 +33597,8 @@ function TableDecisions () {
|
|
|
33579
33597
|
setSelectedCatalog: function setSelectedCatalog(id) {
|
|
33580
33598
|
return updateNavigation(id);
|
|
33581
33599
|
},
|
|
33582
|
-
idmService: apiConfig.idmService
|
|
33600
|
+
idmService: apiConfig.idmService,
|
|
33601
|
+
organizationId: organizationId
|
|
33583
33602
|
})
|
|
33584
33603
|
})]
|
|
33585
33604
|
})
|
package/build/types/backoffice/src/ui/IDMCatalogEditor/components/CatalogSelector/index.d.ts
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
export default function CatalogSelector({ selectedCatalog, setSelectedCatalog, idmService, }: {
|
|
2
|
+
export default function CatalogSelector({ selectedCatalog, setSelectedCatalog, idmService, organizationId, }: {
|
|
3
3
|
selectedCatalog: string | undefined;
|
|
4
4
|
setSelectedCatalog: (id: string) => void;
|
|
5
5
|
idmService: string;
|
|
6
|
+
organizationId: string;
|
|
6
7
|
}): React.JSX.Element;
|
|
7
8
|
//# sourceMappingURL=index.d.ts.map
|
package/build/types/backoffice/src/ui/IDMCatalogEditor/components/CatalogSelector/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMCatalogEditor/components/CatalogSelector/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B,MAAM,CAAC,OAAO,UAAU,eAAe,CAAC,EACtC,eAAe,EACf,kBAAkB,EAClB,UAAU,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMCatalogEditor/components/CatalogSelector/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B,MAAM,CAAC,OAAO,UAAU,eAAe,CAAC,EACtC,eAAe,EACf,kBAAkB,EAClB,UAAU,EACV,cAAc,GACf,EAAE;IACD,eAAe,EAAE,MAAM,GAAG,SAAS,CAAC;IACpC,kBAAkB,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAC;IACzC,UAAU,EAAE,MAAM,CAAC;IACnB,cAAc,EAAE,MAAM,CAAC;CACxB,qBA0BA"}
|
|
@@ -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;AASlD,MAAM,CAAC,OAAO,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMCatalogEditor/modules/TableCatalogs/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA6B,MAAM,OAAO,CAAC;AASlD,MAAM,CAAC,OAAO,gCA0pBb"}
|
package/build/types/backoffice/src/ui/IDMCatalogEditor/modules/TableDecisions/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMCatalogEditor/modules/TableDecisions/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAC;AAQvC,MAAM,CAAC,OAAO,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMCatalogEditor/modules/TableDecisions/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAC;AAQvC,MAAM,CAAC,OAAO,gCA6Kb"}
|
package/build/types/backoffice/src/ui/IDMCatalogEditor/modules/TableFeatureClasses/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMCatalogEditor/modules/TableFeatureClasses/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAC;AAQvC,MAAM,CAAC,OAAO,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMCatalogEditor/modules/TableFeatureClasses/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAC;AAQvC,MAAM,CAAC,OAAO,gCA4Hb"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMCatalogEditor/modules/TableFeatures/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAC;AAQvC,MAAM,CAAC,OAAO,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMCatalogEditor/modules/TableFeatures/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAC;AAQvC,MAAM,CAAC,OAAO,gCA0Kb"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMCatalogEditor/modules/TableItems/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAS1B,MAAM,CAAC,OAAO,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMCatalogEditor/modules/TableItems/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAS1B,MAAM,CAAC,OAAO,gCAmYb"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMCatalogEditor/modules/TableOptions/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAS1B,MAAM,CAAC,OAAO,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMCatalogEditor/modules/TableOptions/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAS1B,MAAM,CAAC,OAAO,gCA+Mb"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMCatalogEditor/modules/TableSeries/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAC;AAQvC,MAAM,CAAC,OAAO,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMCatalogEditor/modules/TableSeries/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAC;AAQvC,MAAM,CAAC,OAAO,gCA8Mb"}
|
package/build/types/backoffice/src/ui/IDMEnricherEditor/components/PackageSelector/index.d.ts
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
export default function PackageSelector({ selectedPackage, setSelectedPackage, enricherService, }: {
|
|
2
|
+
export default function PackageSelector({ selectedPackage, setSelectedPackage, enricherService, organizationId, }: {
|
|
3
3
|
selectedPackage: string | undefined;
|
|
4
4
|
setSelectedPackage: (id: string) => void;
|
|
5
5
|
enricherService: string;
|
|
6
|
+
organizationId: string;
|
|
6
7
|
}): React.JSX.Element;
|
|
7
8
|
//# sourceMappingURL=index.d.ts.map
|
package/build/types/backoffice/src/ui/IDMEnricherEditor/components/PackageSelector/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMEnricherEditor/components/PackageSelector/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B,MAAM,CAAC,OAAO,UAAU,eAAe,CAAC,EACtC,eAAe,EACf,kBAAkB,EAClB,eAAe,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMEnricherEditor/components/PackageSelector/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B,MAAM,CAAC,OAAO,UAAU,eAAe,CAAC,EACtC,eAAe,EACf,kBAAkB,EAClB,eAAe,EACf,cAAc,GACf,EAAE;IACD,eAAe,EAAE,MAAM,GAAG,SAAS,CAAC;IACpC,kBAAkB,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAC;IACzC,eAAe,EAAE,MAAM,CAAC;IACxB,cAAc,EAAE,MAAM,CAAC;CACxB,qBA0BA"}
|
package/build/types/backoffice/src/ui/IDMEnricherEditor/modules/TableExclusivity/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMEnricherEditor/modules/TableExclusivity/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAC;AAUvC,KAAK,KAAK,GAAG;IAAE,IAAI,EAAE,aAAa,GAAG,OAAO,GAAG,UAAU,GAAG,SAAS,GAAG,QAAQ,CAAC;IAAC,MAAM,EAAE,GAAG,CAAA;CAAE,CAAC;AAEhG,QAAA,MAAM,gBAAgB,yBAErB,CAAC;AACF,QAAA,MAAM,kBAAkB,yBAEvB,CAAC;AAEF,QAAA,MAAM,gCAAgC,yBAErC,CAAC;AAEF,QAAA,MAAM,qBAAqB,yBAE1B,CAAC;AAEF,QAAA,MAAM,wBAAwB,yBAE7B,CAAC;AAEF,OAAO,EAAE,gBAAgB,EAAE,kBAAkB,EAAE,gCAAgC,EAAE,qBAAqB,EAAE,wBAAwB,EAAE,CAAC;AACnI,QAAA,MAAM,gBAAgB,qBAAsB,KAAK,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMEnricherEditor/modules/TableExclusivity/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAC;AAUvC,KAAK,KAAK,GAAG;IAAE,IAAI,EAAE,aAAa,GAAG,OAAO,GAAG,UAAU,GAAG,SAAS,GAAG,QAAQ,CAAC;IAAC,MAAM,EAAE,GAAG,CAAA;CAAE,CAAC;AAEhG,QAAA,MAAM,gBAAgB,yBAErB,CAAC;AACF,QAAA,MAAM,kBAAkB,yBAEvB,CAAC;AAEF,QAAA,MAAM,gCAAgC,yBAErC,CAAC;AAEF,QAAA,MAAM,qBAAqB,yBAE1B,CAAC;AAEF,QAAA,MAAM,wBAAwB,yBAE7B,CAAC;AAEF,OAAO,EAAE,gBAAgB,EAAE,kBAAkB,EAAE,gCAAgC,EAAE,qBAAqB,EAAE,wBAAwB,EAAE,CAAC;AACnI,QAAA,MAAM,gBAAgB,qBAAsB,KAAK,sBA6GhD,CAAC;AAEF,eAAe,gBAAgB,CAAC"}
|
package/build/types/backoffice/src/ui/IDMEnricherEditor/modules/TableProperties/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMEnricherEditor/modules/TableProperties/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAC;AAQvC,MAAM,CAAC,OAAO,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMEnricherEditor/modules/TableProperties/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAC;AAQvC,MAAM,CAAC,OAAO,gCA0Ob"}
|
package/build/types/backoffice/src/ui/IDMEnricherEditor/modules/TableRenaming/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMEnricherEditor/modules/TableRenaming/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAC;AAiBvC,KAAK,KAAK,GAAG;IAAE,IAAI,EAAE,UAAU,GAAG,aAAa,GAAG,UAAU,GAAG,OAAO,GAAG,SAAS,GAAG,QAAQ,CAAC;IAAC,MAAM,EAAE,GAAG,CAAA;CAAE,CAAC;AAE7G,QAAA,MAAM,eAAe,yBAEpB,CAAC;AAEF,QAAA,MAAM,kBAAkB,yBAEvB,CAAC;AACF,QAAA,MAAM,eAAe,yBAEpB,CAAC;AAEF,QAAA,MAAM,YAAY,yBAEjB,CAAC;AAEF,QAAA,MAAM,cAAc,yBAEnB,CAAC;AAEF,QAAA,MAAM,aAAa,yBAElB,CAAC;AAEF,OAAO,EAAE,eAAe,EAAE,kBAAkB,EAAE,eAAe,EAAE,YAAY,EAAE,cAAc,EAAE,aAAa,EAAE,CAAC;AAE7G,QAAA,MAAM,aAAa,qBAAsB,KAAK,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMEnricherEditor/modules/TableRenaming/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAC;AAiBvC,KAAK,KAAK,GAAG;IAAE,IAAI,EAAE,UAAU,GAAG,aAAa,GAAG,UAAU,GAAG,OAAO,GAAG,SAAS,GAAG,QAAQ,CAAC;IAAC,MAAM,EAAE,GAAG,CAAA;CAAE,CAAC;AAE7G,QAAA,MAAM,eAAe,yBAEpB,CAAC;AAEF,QAAA,MAAM,kBAAkB,yBAEvB,CAAC;AACF,QAAA,MAAM,eAAe,yBAEpB,CAAC;AAEF,QAAA,MAAM,YAAY,yBAEjB,CAAC;AAEF,QAAA,MAAM,cAAc,yBAEnB,CAAC;AAEF,QAAA,MAAM,aAAa,yBAElB,CAAC;AAEF,OAAO,EAAE,eAAe,EAAE,kBAAkB,EAAE,eAAe,EAAE,YAAY,EAAE,cAAc,EAAE,aAAa,EAAE,CAAC;AAE7G,QAAA,MAAM,aAAa,qBAAsB,KAAK,sBAwG7C,CAAC;AACF,eAAe,aAAa,CAAC"}
|
package/build/types/backoffice/src/ui/IDMEnricherEditor/modules/TableTabGroups/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMEnricherEditor/modules/TableTabGroups/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAQ1B,MAAM,CAAC,OAAO,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMEnricherEditor/modules/TableTabGroups/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAQ1B,MAAM,CAAC,OAAO,gCAiIb"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@crystaldesign/diva-backoffice",
|
|
3
|
-
"version": "24.14.0
|
|
3
|
+
"version": "24.14.0",
|
|
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": "24.14.0
|
|
19
|
-
"@crystaldesign/content-item": "24.14.0
|
|
20
|
-
"@crystaldesign/diva-core": "24.14.0
|
|
21
|
-
"@crystaldesign/diva-utils": "24.14.0
|
|
22
|
-
"@crystaldesign/media-upload": "24.14.0
|
|
23
|
-
"@crystaldesign/rtf-editor": "24.14.0
|
|
24
|
-
"@crystaldesign/spreadsheet": "24.14.0
|
|
18
|
+
"@crystaldesign/content-box": "24.14.0",
|
|
19
|
+
"@crystaldesign/content-item": "24.14.0",
|
|
20
|
+
"@crystaldesign/diva-core": "24.14.0",
|
|
21
|
+
"@crystaldesign/diva-utils": "24.14.0",
|
|
22
|
+
"@crystaldesign/media-upload": "24.14.0",
|
|
23
|
+
"@crystaldesign/rtf-editor": "24.14.0",
|
|
24
|
+
"@crystaldesign/spreadsheet": "24.14.0",
|
|
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": "9ff35d1f34a8bf3bf87caed56aeae9f886cd2728"
|
|
55
55
|
}
|