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

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 +44 -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',
@@ -9511,6 +9515,18 @@ function loadConfiguration(t, root, config, lang) {
9511
9515
  value: 3
9512
9516
  },
9513
9517
  type: 'select'
9518
+ }, {
9519
+ name: 'quality',
9520
+ label: t('backoffice.form.renderjob.items.quality'),
9521
+ mode: 'single',
9522
+ values: ['low', 'standard'],
9523
+ defaultValue: 'standard',
9524
+ readonly: {
9525
+ field: 'state',
9526
+ op: 'gt',
9527
+ value: 3
9528
+ },
9529
+ type: 'select'
9514
9530
  }, {
9515
9531
  label: t('backoffice.form.renderjob.items.dracoCompression'),
9516
9532
  name: 'dracoCompression',
@@ -30071,12 +30087,13 @@ function TablePackages () {
30071
30087
  function PackageSelector(_ref) {
30072
30088
  var selectedPackage = _ref.selectedPackage,
30073
30089
  setSelectedPackage = _ref.setSelectedPackage,
30074
- enricherService = _ref.enricherService;
30090
+ enricherService = _ref.enricherService,
30091
+ organizationId = _ref.organizationId;
30075
30092
  var _useTranslation = useTranslation(),
30076
30093
  t = _useTranslation.t;
30077
30094
  return /*#__PURE__*/jsx(SimpleSelect, {
30078
30095
  apiInterface: {
30079
- read: enricherService + '/packages'
30096
+ read: enricherService + "/packages?filter=organizationId==\"".concat(organizationId, "\"")
30080
30097
  },
30081
30098
  apiMapping: {
30082
30099
  type: 'query',
@@ -30332,6 +30349,7 @@ function TableProperties () {
30332
30349
  "float": 'right'
30333
30350
  },
30334
30351
  children: /*#__PURE__*/jsx(PackageSelector, {
30352
+ organizationId: organizationId,
30335
30353
  selectedPackage: packageId,
30336
30354
  setSelectedPackage: function setSelectedPackage(id) {
30337
30355
  return updateNavigation(id);
@@ -30974,6 +30992,7 @@ var RenamingTable = function RenamingTable(_ref) {
30974
30992
  t = _useTranslation.t;
30975
30993
  var _useModule = useModule$1(['renaming', type]),
30976
30994
  packageId = _useModule.packageId,
30995
+ organizationId = _useModule.organizationId,
30977
30996
  updateNavigation = _useModule.updateNavigation,
30978
30997
  apiConfig = _useModule.apiConfig;
30979
30998
  var _useConfiguration = useConfiguration(config),
@@ -31002,6 +31021,7 @@ var RenamingTable = function RenamingTable(_ref) {
31002
31021
  "float": 'right'
31003
31022
  },
31004
31023
  children: [/*#__PURE__*/jsx(PackageSelector, {
31024
+ organizationId: organizationId,
31005
31025
  selectedPackage: packageId,
31006
31026
  setSelectedPackage: function setSelectedPackage(id) {
31007
31027
  return updateNavigation(id);
@@ -31477,6 +31497,7 @@ var ExclusivityTable = function ExclusivityTable(_ref) {
31477
31497
  "float": 'right'
31478
31498
  },
31479
31499
  children: [/*#__PURE__*/jsx(PackageSelector, {
31500
+ organizationId: organizationId,
31480
31501
  selectedPackage: packageId,
31481
31502
  setSelectedPackage: function setSelectedPackage(id) {
31482
31503
  return updateNavigation(id);
@@ -31538,9 +31559,9 @@ function TableTabGroups () {
31538
31559
  t = _useTranslation.t;
31539
31560
  var _useModule = useModule$1(['tabgroups']),
31540
31561
  packageId = _useModule.packageId,
31562
+ organizationId = _useModule.organizationId,
31541
31563
  updateNavigation = _useModule.updateNavigation,
31542
- apiConfig = _useModule.apiConfig,
31543
- organizationId = _useModule.organizationId;
31564
+ apiConfig = _useModule.apiConfig;
31544
31565
  return /*#__PURE__*/jsxs(Fragment, {
31545
31566
  children: [/*#__PURE__*/jsx(Descriptions$1, {
31546
31567
  title: /*#__PURE__*/jsxs("div", {
@@ -31549,6 +31570,7 @@ function TableTabGroups () {
31549
31570
  "float": 'right'
31550
31571
  },
31551
31572
  children: /*#__PURE__*/jsx(PackageSelector, {
31573
+ organizationId: organizationId,
31552
31574
  selectedPackage: packageId,
31553
31575
  setSelectedPackage: function setSelectedPackage(id) {
31554
31576
  return updateNavigation(id);
@@ -31848,6 +31870,12 @@ function TableCatalogs () {
31848
31870
  updateNavigation(selectedNodes[0].data._id, ['series']);
31849
31871
  }
31850
31872
  }],
31873
+ preFilter: {
31874
+ colId: 'organizationId',
31875
+ filterType: 'text',
31876
+ type: 'equals',
31877
+ filter: organizationId
31878
+ },
31851
31879
  configuration: {
31852
31880
  type: 'dotnetSSM',
31853
31881
  apiInterface: {
@@ -32323,12 +32351,13 @@ function TableCatalogs () {
32323
32351
  function CatalogSelector(_ref) {
32324
32352
  var selectedCatalog = _ref.selectedCatalog,
32325
32353
  setSelectedCatalog = _ref.setSelectedCatalog,
32326
- idmService = _ref.idmService;
32354
+ idmService = _ref.idmService,
32355
+ organizationId = _ref.organizationId;
32327
32356
  var _useTranslation = useTranslation(),
32328
32357
  t = _useTranslation.t;
32329
32358
  return /*#__PURE__*/jsx(SimpleSelect, {
32330
32359
  apiInterface: {
32331
- read: idmService + '/v3.0/catalogs'
32360
+ read: idmService + "/v3.0/catalogs?filter=organizationId==\"".concat(organizationId)
32332
32361
  },
32333
32362
  apiMapping: {
32334
32363
  type: 'query',
@@ -32628,6 +32657,7 @@ function TableItems () {
32628
32657
  "float": 'right'
32629
32658
  },
32630
32659
  children: [/*#__PURE__*/jsx(CatalogSelector, {
32660
+ organizationId: organizationId,
32631
32661
  selectedCatalog: catalogId,
32632
32662
  setSelectedCatalog: function setSelectedCatalog(id) {
32633
32663
  return updateNavigation(id);
@@ -32941,6 +32971,7 @@ function TableSeries () {
32941
32971
  "float": 'right'
32942
32972
  },
32943
32973
  children: /*#__PURE__*/jsx(CatalogSelector, {
32974
+ organizationId: organizationId,
32944
32975
  selectedCatalog: catalogId,
32945
32976
  setSelectedCatalog: function setSelectedCatalog(id) {
32946
32977
  return updateNavigation(id);
@@ -33137,6 +33168,7 @@ function TableFeatures () {
33137
33168
  "float": 'right'
33138
33169
  },
33139
33170
  children: /*#__PURE__*/jsx(CatalogSelector, {
33171
+ organizationId: organizationId,
33140
33172
  selectedCatalog: catalogId,
33141
33173
  setSelectedCatalog: function setSelectedCatalog(id) {
33142
33174
  return updateNavigation(id);
@@ -33273,6 +33305,7 @@ function TableOptions () {
33273
33305
  "float": 'right'
33274
33306
  },
33275
33307
  children: [/*#__PURE__*/jsx(CatalogSelector, {
33308
+ organizationId: organizationId,
33276
33309
  selectedCatalog: catalogId,
33277
33310
  setSelectedCatalog: function setSelectedCatalog(id) {
33278
33311
  return updateNavigation(id);
@@ -33453,7 +33486,8 @@ function TableFeatureClasses () {
33453
33486
  setSelectedCatalog: function setSelectedCatalog(id) {
33454
33487
  return updateNavigation(id);
33455
33488
  },
33456
- idmService: apiConfig.idmService
33489
+ idmService: apiConfig.idmService,
33490
+ organizationId: organizationId
33457
33491
  })
33458
33492
  })]
33459
33493
  })
@@ -33575,7 +33609,8 @@ function TableDecisions () {
33575
33609
  setSelectedCatalog: function setSelectedCatalog(id) {
33576
33610
  return updateNavigation(id);
33577
33611
  },
33578
- idmService: apiConfig.idmService
33612
+ idmService: apiConfig.idmService,
33613
+ organizationId: organizationId
33579
33614
  })
33580
33615
  })]
33581
33616
  })
@@ -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.21",
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.21",
19
+ "@crystaldesign/content-item": "24.15.0-beta.21",
20
+ "@crystaldesign/diva-core": "24.15.0-beta.21",
21
+ "@crystaldesign/diva-utils": "24.15.0-beta.21",
22
+ "@crystaldesign/media-upload": "24.15.0-beta.21",
23
+ "@crystaldesign/rtf-editor": "24.15.0-beta.21",
24
+ "@crystaldesign/spreadsheet": "24.15.0-beta.21",
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": "35f68e92ee56efc006300e1ff754898adef7962a"
55
55
  }