@crystaldesign/diva-backoffice 24.15.0-beta.2 → 24.15.0-beta.20

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.
Files changed (17) hide show
  1. package/build/esm/index.js +32 -9
  2. package/build/types/backoffice/src/ui/IDMCatalogEditor/components/CatalogSelector/index.d.ts +2 -1
  3. package/build/types/backoffice/src/ui/IDMCatalogEditor/components/CatalogSelector/index.d.ts.map +1 -1
  4. package/build/types/backoffice/src/ui/IDMCatalogEditor/modules/TableCatalogs/index.d.ts.map +1 -1
  5. package/build/types/backoffice/src/ui/IDMCatalogEditor/modules/TableDecisions/index.d.ts.map +1 -1
  6. package/build/types/backoffice/src/ui/IDMCatalogEditor/modules/TableFeatureClasses/index.d.ts.map +1 -1
  7. package/build/types/backoffice/src/ui/IDMCatalogEditor/modules/TableFeatures/index.d.ts.map +1 -1
  8. package/build/types/backoffice/src/ui/IDMCatalogEditor/modules/TableItems/index.d.ts.map +1 -1
  9. package/build/types/backoffice/src/ui/IDMCatalogEditor/modules/TableOptions/index.d.ts.map +1 -1
  10. package/build/types/backoffice/src/ui/IDMCatalogEditor/modules/TableSeries/index.d.ts.map +1 -1
  11. package/build/types/backoffice/src/ui/IDMEnricherEditor/components/PackageSelector/index.d.ts +2 -1
  12. package/build/types/backoffice/src/ui/IDMEnricherEditor/components/PackageSelector/index.d.ts.map +1 -1
  13. package/build/types/backoffice/src/ui/IDMEnricherEditor/modules/TableExclusivity/index.d.ts.map +1 -1
  14. package/build/types/backoffice/src/ui/IDMEnricherEditor/modules/TableProperties/index.d.ts.map +1 -1
  15. package/build/types/backoffice/src/ui/IDMEnricherEditor/modules/TableRenaming/index.d.ts.map +1 -1
  16. package/build/types/backoffice/src/ui/IDMEnricherEditor/modules/TableTabGroups/index.d.ts.map +1 -1
  17. package/package.json +9 -9
@@ -9018,7 +9018,11 @@ function loadConfiguration(t, root, config, lang) {
9018
9018
  name: 'viewPoint',
9019
9019
  label: t('backoffice.form.createorupdaterenderpackages.items.viewpoint'),
9020
9020
  hidden: function hidden(data) {
9021
- return (data === null || data === void 0 ? void 0 : data.job) !== 'HQ' && data !== undefined;
9021
+ var hidden = (data === null || data === void 0 ? void 0 : data.job) !== 'HQ' && data !== undefined;
9022
+ if (hidden) {
9023
+ data.viewPoint = undefined;
9024
+ }
9025
+ return hidden;
9022
9026
  }
9023
9027
  }, {
9024
9028
  name: 'preset',
@@ -30071,12 +30075,13 @@ function TablePackages () {
30071
30075
  function PackageSelector(_ref) {
30072
30076
  var selectedPackage = _ref.selectedPackage,
30073
30077
  setSelectedPackage = _ref.setSelectedPackage,
30074
- enricherService = _ref.enricherService;
30078
+ enricherService = _ref.enricherService,
30079
+ organizationId = _ref.organizationId;
30075
30080
  var _useTranslation = useTranslation(),
30076
30081
  t = _useTranslation.t;
30077
30082
  return /*#__PURE__*/jsx(SimpleSelect, {
30078
30083
  apiInterface: {
30079
- read: enricherService + '/packages'
30084
+ read: enricherService + "/packages?filter=organizationId==\"".concat(organizationId, "\"")
30080
30085
  },
30081
30086
  apiMapping: {
30082
30087
  type: 'query',
@@ -30332,6 +30337,7 @@ function TableProperties () {
30332
30337
  "float": 'right'
30333
30338
  },
30334
30339
  children: /*#__PURE__*/jsx(PackageSelector, {
30340
+ organizationId: organizationId,
30335
30341
  selectedPackage: packageId,
30336
30342
  setSelectedPackage: function setSelectedPackage(id) {
30337
30343
  return updateNavigation(id);
@@ -30974,6 +30980,7 @@ var RenamingTable = function RenamingTable(_ref) {
30974
30980
  t = _useTranslation.t;
30975
30981
  var _useModule = useModule$1(['renaming', type]),
30976
30982
  packageId = _useModule.packageId,
30983
+ organizationId = _useModule.organizationId,
30977
30984
  updateNavigation = _useModule.updateNavigation,
30978
30985
  apiConfig = _useModule.apiConfig;
30979
30986
  var _useConfiguration = useConfiguration(config),
@@ -31002,6 +31009,7 @@ var RenamingTable = function RenamingTable(_ref) {
31002
31009
  "float": 'right'
31003
31010
  },
31004
31011
  children: [/*#__PURE__*/jsx(PackageSelector, {
31012
+ organizationId: organizationId,
31005
31013
  selectedPackage: packageId,
31006
31014
  setSelectedPackage: function setSelectedPackage(id) {
31007
31015
  return updateNavigation(id);
@@ -31477,6 +31485,7 @@ var ExclusivityTable = function ExclusivityTable(_ref) {
31477
31485
  "float": 'right'
31478
31486
  },
31479
31487
  children: [/*#__PURE__*/jsx(PackageSelector, {
31488
+ organizationId: organizationId,
31480
31489
  selectedPackage: packageId,
31481
31490
  setSelectedPackage: function setSelectedPackage(id) {
31482
31491
  return updateNavigation(id);
@@ -31538,9 +31547,9 @@ function TableTabGroups () {
31538
31547
  t = _useTranslation.t;
31539
31548
  var _useModule = useModule$1(['tabgroups']),
31540
31549
  packageId = _useModule.packageId,
31550
+ organizationId = _useModule.organizationId,
31541
31551
  updateNavigation = _useModule.updateNavigation,
31542
- apiConfig = _useModule.apiConfig,
31543
- organizationId = _useModule.organizationId;
31552
+ apiConfig = _useModule.apiConfig;
31544
31553
  return /*#__PURE__*/jsxs(Fragment, {
31545
31554
  children: [/*#__PURE__*/jsx(Descriptions$1, {
31546
31555
  title: /*#__PURE__*/jsxs("div", {
@@ -31549,6 +31558,7 @@ function TableTabGroups () {
31549
31558
  "float": 'right'
31550
31559
  },
31551
31560
  children: /*#__PURE__*/jsx(PackageSelector, {
31561
+ organizationId: organizationId,
31552
31562
  selectedPackage: packageId,
31553
31563
  setSelectedPackage: function setSelectedPackage(id) {
31554
31564
  return updateNavigation(id);
@@ -31848,6 +31858,12 @@ function TableCatalogs () {
31848
31858
  updateNavigation(selectedNodes[0].data._id, ['series']);
31849
31859
  }
31850
31860
  }],
31861
+ preFilter: {
31862
+ colId: 'organizationId',
31863
+ filterType: 'text',
31864
+ type: 'equals',
31865
+ filter: organizationId
31866
+ },
31851
31867
  configuration: {
31852
31868
  type: 'dotnetSSM',
31853
31869
  apiInterface: {
@@ -32323,12 +32339,13 @@ function TableCatalogs () {
32323
32339
  function CatalogSelector(_ref) {
32324
32340
  var selectedCatalog = _ref.selectedCatalog,
32325
32341
  setSelectedCatalog = _ref.setSelectedCatalog,
32326
- idmService = _ref.idmService;
32342
+ idmService = _ref.idmService,
32343
+ organizationId = _ref.organizationId;
32327
32344
  var _useTranslation = useTranslation(),
32328
32345
  t = _useTranslation.t;
32329
32346
  return /*#__PURE__*/jsx(SimpleSelect, {
32330
32347
  apiInterface: {
32331
- read: idmService + '/v3.0/catalogs'
32348
+ read: idmService + "/v3.0/catalogs?filter=organizationId==\"".concat(organizationId)
32332
32349
  },
32333
32350
  apiMapping: {
32334
32351
  type: 'query',
@@ -32628,6 +32645,7 @@ function TableItems () {
32628
32645
  "float": 'right'
32629
32646
  },
32630
32647
  children: [/*#__PURE__*/jsx(CatalogSelector, {
32648
+ organizationId: organizationId,
32631
32649
  selectedCatalog: catalogId,
32632
32650
  setSelectedCatalog: function setSelectedCatalog(id) {
32633
32651
  return updateNavigation(id);
@@ -32941,6 +32959,7 @@ function TableSeries () {
32941
32959
  "float": 'right'
32942
32960
  },
32943
32961
  children: /*#__PURE__*/jsx(CatalogSelector, {
32962
+ organizationId: organizationId,
32944
32963
  selectedCatalog: catalogId,
32945
32964
  setSelectedCatalog: function setSelectedCatalog(id) {
32946
32965
  return updateNavigation(id);
@@ -33137,6 +33156,7 @@ function TableFeatures () {
33137
33156
  "float": 'right'
33138
33157
  },
33139
33158
  children: /*#__PURE__*/jsx(CatalogSelector, {
33159
+ organizationId: organizationId,
33140
33160
  selectedCatalog: catalogId,
33141
33161
  setSelectedCatalog: function setSelectedCatalog(id) {
33142
33162
  return updateNavigation(id);
@@ -33273,6 +33293,7 @@ function TableOptions () {
33273
33293
  "float": 'right'
33274
33294
  },
33275
33295
  children: [/*#__PURE__*/jsx(CatalogSelector, {
33296
+ organizationId: organizationId,
33276
33297
  selectedCatalog: catalogId,
33277
33298
  setSelectedCatalog: function setSelectedCatalog(id) {
33278
33299
  return updateNavigation(id);
@@ -33453,7 +33474,8 @@ function TableFeatureClasses () {
33453
33474
  setSelectedCatalog: function setSelectedCatalog(id) {
33454
33475
  return updateNavigation(id);
33455
33476
  },
33456
- idmService: apiConfig.idmService
33477
+ idmService: apiConfig.idmService,
33478
+ organizationId: organizationId
33457
33479
  })
33458
33480
  })]
33459
33481
  })
@@ -33575,7 +33597,8 @@ function TableDecisions () {
33575
33597
  setSelectedCatalog: function setSelectedCatalog(id) {
33576
33598
  return updateNavigation(id);
33577
33599
  },
33578
- idmService: apiConfig.idmService
33600
+ idmService: apiConfig.idmService,
33601
+ organizationId: organizationId
33579
33602
  })
33580
33603
  })]
33581
33604
  })
@@ -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
@@ -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,GACX,EAAE;IACD,eAAe,EAAE,MAAM,GAAG,SAAS,CAAC;IACpC,kBAAkB,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAC;IACzC,UAAU,EAAE,MAAM,CAAC;CACpB,qBA0BA"}
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,gCAmpBb"}
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"}
@@ -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,gCAwKb"}
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"}
@@ -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,gCAuHb"}
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,gCAqKb"}
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,gCA8Xb"}
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,gCA0Mb"}
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,gCAyMb"}
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"}
@@ -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
@@ -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,GAChB,EAAE;IACD,eAAe,EAAE,MAAM,GAAG,SAAS,CAAC;IACpC,kBAAkB,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAC;IACzC,eAAe,EAAE,MAAM,CAAC;CACzB,qBA0BA"}
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"}
@@ -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,sBA4GhD,CAAC;AAEF,eAAe,gBAAgB,CAAC"}
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"}
@@ -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,gCAyOb"}
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"}
@@ -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,sBAuG7C,CAAC;AACF,eAAe,aAAa,CAAC"}
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"}
@@ -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,gCAgIb"}
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.15.0-beta.2",
3
+ "version": "24.15.0-beta.20",
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.15.0-beta.2",
19
- "@crystaldesign/content-item": "24.15.0-beta.2",
20
- "@crystaldesign/diva-core": "24.15.0-beta.2",
21
- "@crystaldesign/diva-utils": "24.15.0-beta.2",
22
- "@crystaldesign/media-upload": "24.15.0-beta.2",
23
- "@crystaldesign/rtf-editor": "24.15.0-beta.2",
24
- "@crystaldesign/spreadsheet": "24.15.0-beta.2",
18
+ "@crystaldesign/content-box": "24.15.0-beta.20",
19
+ "@crystaldesign/content-item": "24.15.0-beta.20",
20
+ "@crystaldesign/diva-core": "24.15.0-beta.20",
21
+ "@crystaldesign/diva-utils": "24.15.0-beta.20",
22
+ "@crystaldesign/media-upload": "24.15.0-beta.20",
23
+ "@crystaldesign/rtf-editor": "24.15.0-beta.20",
24
+ "@crystaldesign/spreadsheet": "24.15.0-beta.20",
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": "d24497fced167be03ca8861138f41273e517e9c1"
54
+ "gitHead": "03ade2926b6e425906af296beb5be2ef0e5cace1"
55
55
  }