@crystaldesign/diva-backoffice 25.15.0-beta.4 → 25.15.0-beta.6

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.
@@ -76,7 +76,7 @@ import DeleteOutlined from '@ant-design/icons/DeleteOutlined';
76
76
  import JSONEditor from 'jsoneditor';
77
77
  import 'jsoneditor/dist/jsoneditor.css';
78
78
  import _objectWithoutProperties from '@babel/runtime/helpers/objectWithoutProperties';
79
- import { MinusCircleOutlined, PlusOutlined, DownloadOutlined as DownloadOutlined$1, PlusSquareOutlined, DeleteOutlined as DeleteOutlined$1, FullscreenOutlined, FileUnknownOutlined, CloseOutlined as CloseOutlined$1, PlusCircleOutlined as PlusCircleOutlined$1, HomeOutlined as HomeOutlined$1, InboxOutlined, EditOutlined, EyeOutlined, InfoCircleOutlined as InfoCircleOutlined$1, FilePdfOutlined, LoadingOutlined, DownOutlined as DownOutlined$1, UploadOutlined as UploadOutlined$2, GlobalOutlined, DatabaseOutlined as DatabaseOutlined$1, DatabaseFilled, ReloadOutlined as ReloadOutlined$1 } from '@ant-design/icons';
79
+ import { MinusCircleOutlined, PlusOutlined, DownloadOutlined as DownloadOutlined$1, PlusSquareOutlined, DeleteOutlined as DeleteOutlined$1, FullscreenOutlined, CloseOutlined as CloseOutlined$1, PlusCircleOutlined as PlusCircleOutlined$1, HomeOutlined as HomeOutlined$1, InboxOutlined, EditOutlined, EyeOutlined, InfoCircleOutlined as InfoCircleOutlined$1, FilePdfOutlined, LoadingOutlined, DownOutlined as DownOutlined$1, UploadOutlined as UploadOutlined$2, GlobalOutlined, DatabaseOutlined as DatabaseOutlined$1, DatabaseFilled, ReloadOutlined as ReloadOutlined$1 } from '@ant-design/icons';
80
80
  import classnames from 'classnames';
81
81
  import RTFEditor from '@crystaldesign/rtf-editor';
82
82
  import debounce from 'lodash/debounce';
@@ -6088,10 +6088,9 @@ function loadConfiguration(t, root, config, lang, apiConfig) {
6088
6088
  width: 150
6089
6089
  }, {
6090
6090
  title: t('backoffice.table.renderjobs.columns.fileUrl'),
6091
- field: 'fileUrl',
6092
- imageEnding: '_low',
6091
+ field: 'mediaItems',
6093
6092
  width: 99,
6094
- type: 'media',
6093
+ type: 'mediaItem',
6095
6094
  align: 'center'
6096
6095
  }, {
6097
6096
  title: t('backoffice.table.renderjobs.columns.realTimeRenderUrl'),
@@ -18521,16 +18520,27 @@ function useSelectSimpleData (_ref) {
18521
18520
  return selected.value;
18522
18521
  }, [selected]);
18523
18522
 
18524
- //initialize the selected value if it is not set yet and handle race condition between value and options
18523
+ // Sync selection when external value changes
18525
18524
  useEffect(function () {
18526
- if (value && options && selected == undefined) {
18527
- var sel = findByValue(value, options, selectMapping);
18528
- if (sel) {
18529
- var selectedValues = Array.isArray(sel) ? sel.map(function (item) {
18530
- return item.value;
18531
- }) : sel.value;
18532
- onSelectionChanged(selectedValues, sel);
18525
+ if (!options) return;
18526
+ if (value === undefined) {
18527
+ if (selected !== undefined) {
18528
+ setSelected(undefined);
18533
18529
  }
18530
+ return;
18531
+ }
18532
+ var sel = findByValue(value, options, selectMapping);
18533
+ if (!sel) return;
18534
+
18535
+ // Compare found option's value with current value
18536
+ var foundValue = Array.isArray(sel) ? sel.map(function (item) {
18537
+ return item.value;
18538
+ }) : sel.value;
18539
+ var valuesMatch = Array.isArray(foundValue) ? Array.isArray(currentValue) && foundValue.length === currentValue.length && foundValue.every(function (v, i) {
18540
+ return v === currentValue[i];
18541
+ }) : foundValue === currentValue;
18542
+ if (!valuesMatch) {
18543
+ onSelectionChanged(foundValue, sel);
18534
18544
  }
18535
18545
  }, [value, options]);
18536
18546
  var setLoadedOptions = function setLoadedOptions(options) {
@@ -26667,7 +26677,7 @@ _defineProperty(UtilStore, "viewConfig", void 0);
26667
26677
  function MediaItemViewerCell (_ref) {
26668
26678
  var children = _ref.children;
26669
26679
  _ref.column;
26670
- var _useState = useState(undefined),
26680
+ var _useState = useState(),
26671
26681
  _useState2 = _slicedToArray(_useState, 2),
26672
26682
  media = _useState2[0],
26673
26683
  setMedia = _useState2[1];
@@ -26693,32 +26703,38 @@ function MediaItemViewerCell (_ref) {
26693
26703
  useEffect(function () {
26694
26704
  if (!id) return;
26695
26705
  handler.mediaHandler.getMediaById(id).then(function (res) {
26696
- var _mediaItem$urlVariant, _url;
26706
+ var _mediaItem$variants;
26697
26707
  var mediaItem = res.data[0];
26698
- if (!(mediaItem !== null && mediaItem !== void 0 && mediaItem.url)) return;
26699
- var url = new URL(mediaItem.url);
26700
- var mediaType = url.pathname.endsWith('.glb') ? 'AR' : 'PCT';
26701
- if (url.pathname.endsWith('.tif') || url.pathname.endsWith('.tiff') && (_mediaItem$urlVariant = mediaItem.urlVariants) !== null && _mediaItem$urlVariant !== void 0 && _mediaItem$urlVariant[0]) {
26702
- url = mediaItem.urlVariants[0];
26703
- }
26704
- if (mediaType == 'AR') {
26708
+ var mediaUrl;
26709
+ if (mediaItem.thumbnailUrl) {
26710
+ mediaUrl = mediaItem.thumbnailUrl;
26711
+ } else if ((_mediaItem$variants = mediaItem.variants) !== null && _mediaItem$variants !== void 0 && _mediaItem$variants[0]) {
26712
+ mediaUrl = mediaItem.variants[0];
26713
+ } else if (mediaItem.url && mediaItem.mediaType !== 'AR') {
26714
+ mediaUrl = mediaItem.url;
26715
+ }
26716
+ if (mediaItem.mediaType == 'AR' && mediaUrl) {
26717
+ var url = new URL(mediaUrl);
26705
26718
  url.searchParams.append('v', timeStamp.toString());
26719
+ mediaUrl = url.toString();
26720
+ }
26721
+ if (mediaItem.mediaType === 'AR' && mediaItem.mimeType === 'application/octet-stream') {
26722
+ setMedia(undefined);
26723
+ return;
26706
26724
  }
26707
26725
  setMedia({
26708
- url: (_url = url) === null || _url === void 0 ? void 0 : _url.toString(),
26709
- mediaType: mediaType,
26710
- functionType: 'ART',
26711
- storage: 'OTHER',
26712
- arViewerSettings: UtilStore.getArViewerSettings()
26726
+ thumbnailUrl: mediaUrl,
26727
+ originalUrl: mediaItem.url,
26728
+ mediaType: mediaItem.mediaType
26713
26729
  });
26714
26730
  });
26715
26731
  }, [timeStamp, id]);
26716
- if (!id) return /*#__PURE__*/jsx(FileUnknownOutlined, {});
26732
+ if (!id) return /*#__PURE__*/jsx(Fragment, {});
26717
26733
  var openModelViewer = function openModelViewer() {
26718
26734
  actions.openFullscreen({
26719
26735
  content: /*#__PURE__*/jsx("model-viewer", {
26720
26736
  id: "model-viewer",
26721
- src: children[1],
26737
+ src: media === null || media === void 0 ? void 0 : media.originalUrl,
26722
26738
  ar: true,
26723
26739
  "ar-scale": 'fixed',
26724
26740
  "ar-modes": !isFirefox ? 'webxr quick-look' : '',
@@ -26743,7 +26759,13 @@ function MediaItemViewerCell (_ref) {
26743
26759
  settings: {
26744
26760
  contentBoxProps: {
26745
26761
  type: 'MediaViewer',
26746
- medias: media ? [media] : undefined,
26762
+ medias: media !== null && media !== void 0 && media.originalUrl ? [{
26763
+ url: media.originalUrl,
26764
+ mediaType: media.mediaType,
26765
+ functionType: 'ART',
26766
+ storage: 'OTHER',
26767
+ arViewerSettings: UtilStore.getArViewerSettings()
26768
+ }] : undefined,
26747
26769
  defaultDataOptions: 'fullscreen.enable:false;'
26748
26770
  }
26749
26771
  }
@@ -26754,7 +26776,10 @@ function MediaItemViewerCell (_ref) {
26754
26776
  children: (media === null || media === void 0 ? void 0 : media.mediaType) === 'AR' ? /*#__PURE__*/jsx(FullscreenOutlined, {
26755
26777
  onClick: openModelViewer
26756
26778
  }) : /*#__PURE__*/jsx("img", {
26757
- src: media === null || media === void 0 ? void 0 : media.url,
26779
+ style: {
26780
+ cursor: 'pointer'
26781
+ },
26782
+ src: media === null || media === void 0 ? void 0 : media.thumbnailUrl,
26758
26783
  width: 39,
26759
26784
  onClick: openContentBox
26760
26785
  })
@@ -39506,6 +39531,9 @@ var useSeriesSelector = function useSeriesSelector(modules) {
39506
39531
  label: "${seriesName.".concat(i18n.language.toLocaleUpperCase(), "} (${serieNo})"),
39507
39532
  value: '${_id}'
39508
39533
  };
39534
+ useEffect(function () {
39535
+ setSelected(selectedSerie);
39536
+ }, [selectedSerie]);
39509
39537
  var fetchSerie = /*#__PURE__*/function () {
39510
39538
  var _ref2 = _asyncToGenerator(/*#__PURE__*/_regeneratorRuntime.mark(function _callee(newSerie) {
39511
39539
  var _seriesSelectorState$, _seriesSelectorState$2;
@@ -40203,7 +40231,7 @@ var TableItems = observer(function () {
40203
40231
  serie: selectedSerie,
40204
40232
  setSerie: setSelectedSerie,
40205
40233
  setArticle: setSelectedItem,
40206
- item: selectedItem === null || selectedItem === void 0 ? void 0 : selectedItem.typeNo
40234
+ item: selectedItem
40207
40235
  });
40208
40236
  var hooks = useMemo(function () {
40209
40237
  return {
@@ -40752,38 +40780,24 @@ var TableFeatures$2 = observer(function () {
40752
40780
  apiConfig = _useModule.apiConfig,
40753
40781
  setSelectedSerie = _useModule.setSelectedSerie,
40754
40782
  setSelectedItem = _useModule.setSelectedItem;
40755
- var _useTools = useTools({
40756
- catalog: selectedCatalog,
40757
- setSerie: setSelectedSerie,
40758
- setArticle: setSelectedItem,
40759
- conditionalTools: [{
40760
- id: 'globalfeatures',
40761
- name: t('backoffice.menu.features.label.IDMGlobalFeatures'),
40762
- elementComponent: Features$1,
40763
- elementProps: {
40764
- readOnly: true
40765
- },
40766
- where: 'right',
40767
- condition: function condition() {
40768
- return selectedCatalog !== undefined;
40769
- }
40770
- }]
40771
- }),
40772
- updateConfigurator = _useTools.updateConfigurator;
40773
- var ref = useRef(null);
40774
- var hooks = useMemo(function () {
40775
- return {
40776
- onCellSelectionChanged: function onCellSelectionChanged(event) {
40777
- // Check if all selections are from the same node
40778
- if (event.selection.length == 1) {
40779
- var _event$selection$;
40780
- updateConfigurator({
40781
- opt: (_event$selection$ = event.selection[0]) === null || _event$selection$ === void 0 || (_event$selection$ = _event$selection$.node) === null || _event$selection$ === void 0 || (_event$selection$ = _event$selection$.data) === null || _event$selection$ === void 0 ? void 0 : _event$selection$.featureNo
40782
- });
40783
- }
40783
+ useTools({
40784
+ catalog: selectedCatalog,
40785
+ setSerie: setSelectedSerie,
40786
+ setArticle: setSelectedItem,
40787
+ conditionalTools: [{
40788
+ id: 'globalfeatures',
40789
+ name: t('backoffice.menu.features.label.IDMGlobalFeatures'),
40790
+ elementComponent: Features$1,
40791
+ elementProps: {
40792
+ readOnly: true
40793
+ },
40794
+ where: 'right',
40795
+ condition: function condition() {
40796
+ return selectedCatalog !== undefined;
40784
40797
  }
40785
- };
40786
- }, [updateConfigurator]);
40798
+ }]
40799
+ });
40800
+ var ref = useRef(null);
40787
40801
  return /*#__PURE__*/jsxs(Fragment, {
40788
40802
  children: [/*#__PURE__*/jsx(Descriptions$1, {
40789
40803
  title: /*#__PURE__*/jsxs("div", {
@@ -40843,7 +40857,6 @@ var TableFeatures$2 = observer(function () {
40843
40857
  }), selectedCatalog && /*#__PURE__*/jsx(Features$2, {
40844
40858
  organizationId: organizationId,
40845
40859
  selectedCatalog: selectedCatalog,
40846
- hooks: hooks,
40847
40860
  apiConfig: apiConfig,
40848
40861
  ref: ref
40849
40862
  })]
@@ -41026,27 +41039,15 @@ var TableOptions$1 = observer(function () {
41026
41039
  apiConfig = _useModule.apiConfig,
41027
41040
  organizationId = _useModule.organizationId,
41028
41041
  setSelectedSerie = _useModule.setSelectedSerie,
41029
- setSelectedItem = _useModule.setSelectedItem;
41030
- var _useTools = useTools({
41031
- catalog: selectedCatalog,
41032
- setSerie: setSelectedSerie,
41033
- setArticle: setSelectedItem
41034
- }),
41035
- updateConfigurator = _useTools.updateConfigurator;
41042
+ setSelectedItem = _useModule.setSelectedItem,
41043
+ selectedSerie = _useModule.selectedSerie;
41044
+ useTools({
41045
+ catalog: selectedCatalog,
41046
+ serie: selectedSerie,
41047
+ setSerie: setSelectedSerie,
41048
+ setArticle: setSelectedItem
41049
+ });
41036
41050
  var ref = useRef(null);
41037
- var hooks = useMemo(function () {
41038
- return {
41039
- onCellSelectionChanged: function onCellSelectionChanged(event) {
41040
- // Check if all selections are from the same node
41041
- if (event.selection.length == 1) {
41042
- var _event$selection$;
41043
- updateConfigurator({
41044
- opv: (_event$selection$ = event.selection[0]) === null || _event$selection$ === void 0 || (_event$selection$ = _event$selection$.node) === null || _event$selection$ === void 0 || (_event$selection$ = _event$selection$.data) === null || _event$selection$ === void 0 ? void 0 : _event$selection$.optionKey
41045
- });
41046
- }
41047
- }
41048
- };
41049
- }, [updateConfigurator]);
41050
41051
  return /*#__PURE__*/jsxs(Fragment, {
41051
41052
  children: [/*#__PURE__*/jsx(Descriptions$1, {
41052
41053
  title: /*#__PURE__*/jsxs("div", {
@@ -41088,7 +41089,6 @@ var TableOptions$1 = observer(function () {
41088
41089
  }), selectedCatalog && /*#__PURE__*/jsx(Options$1, {
41089
41090
  organizationId: organizationId,
41090
41091
  selectedCatalog: selectedCatalog,
41091
- hooks: hooks,
41092
41092
  apiConfig: apiConfig,
41093
41093
  ref: ref
41094
41094
  })]
@@ -46045,6 +46045,11 @@ var CatalogSelection = function CatalogSelection(_ref) {
46045
46045
  setArticleCodex(undefined);
46046
46046
  setSerieProp === null || setSerieProp === void 0 || setSerieProp(cat);
46047
46047
  };
46048
+ useEffect(function () {
46049
+ if (options.length > 0 && !serie) {
46050
+ onChange(options[0].value);
46051
+ }
46052
+ }, [options]);
46048
46053
  return /*#__PURE__*/jsx("div", {
46049
46054
  className: wrapper,
46050
46055
  children: /*#__PURE__*/jsx(Select$1, {
@@ -46061,7 +46066,7 @@ var CatalogSelection$1 = observer(CatalogSelection);
46061
46066
  function ownKeys$3(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
46062
46067
  function _objectSpread$3(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys$3(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$3(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
46063
46068
  var Wsyiwyg = function Wsyiwyg(_ref) {
46064
- var _state$serie, _state$serie2, _state$serie3, _state$serie4, _tool$parameters, _state$articleCodex, _state$serie$catalogC, _state$serie5, _state$mask2, _state$serie6, _state$serie$accountI, _state$serie7, _state$mask3;
46069
+ var _tool$elementProps$in, _state$serie, _state$serie2, _state$serie3, _state$serie4, _tool$parameters, _state$articleCodex, _state$serie$catalogC, _state$serie5, _state$mask2, _state$serie6, _state$serie$accountI, _state$serie7, _state$mask3;
46065
46070
  var tool = _ref.tool,
46066
46071
  toolbar = _ref.toolbar;
46067
46072
  var _useDivaCore = useDivaCore(),
@@ -46102,10 +46107,12 @@ var Wsyiwyg = function Wsyiwyg(_ref) {
46102
46107
  state.setArticleCodex(undefined);
46103
46108
  }
46104
46109
  }
46110
+ }, [(_tool$elementProps$in = tool.elementProps.initSerie) === null || _tool$elementProps$in === void 0 ? void 0 : _tool$elementProps$in.serieNo, state.serieList]);
46111
+ useEffect(function () {
46105
46112
  if (tool.elementProps.initItem) {
46106
46113
  state.setArticleCodex(tool.elementProps.initItem);
46107
46114
  }
46108
- }, [tool.elementProps.initItem, tool.elementProps.initSerie, state.serieList]);
46115
+ }, [tool.elementProps.initItem]);
46109
46116
  if (tool.elementProps.onlyPlaceholder) {
46110
46117
  return /*#__PURE__*/jsx("div", {});
46111
46118
  }
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/layout/Toolbar/Tools/WYSIWYG_Configurator/CatalogSelection/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAC;AAGvC,OAAO,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAC;AAIzD,MAAM,WAAW,OAAO;IACtB,KAAK,EAAE,KAAK,CAAC,SAAS,CAAC;IACvB,KAAK,EAAE,MAAM,CAAC;CACf;AAGD,KAAK,KAAK,GAAG;IAAE,KAAK,EAAE,YAAY,CAAC;IAAC,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,GAAG,KAAK,IAAI,CAAA;CAAE,CAAC;8GACwC,KAAK;;;AAoCnH,wBAA0C"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/layout/Toolbar/Tools/WYSIWYG_Configurator/CatalogSelection/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA6B,MAAM,OAAO,CAAC;AAGlD,OAAO,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAC;AAIzD,MAAM,WAAW,OAAO;IACtB,KAAK,EAAE,KAAK,CAAC,SAAS,CAAC;IACvB,KAAK,EAAE,MAAM,CAAC;CACf;AAGD,KAAK,KAAK,GAAG;IAAE,KAAK,EAAE,YAAY,CAAC;IAAC,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,GAAG,KAAK,IAAI,CAAA;CAAE,CAAC;8GACwC,KAAK;;;AA0CnH,wBAA0C"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/layout/Toolbar/Tools/WYSIWYG_Configurator/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAoB,MAAM,OAAO,CAAC;AAMzC,OAAO,EAAE,SAAS,EAAE,MAAM,2BAA2B,CAAC;AAMtD,QAAA,MAAM,OAAO,sBAAuB,SAAS,sBAuG5C,CAAC;AAEF,eAAe,OAAO,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/layout/Toolbar/Tools/WYSIWYG_Configurator/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAoB,MAAM,OAAO,CAAC;AAMzC,OAAO,EAAE,SAAS,EAAE,MAAM,2BAA2B,CAAC;AAMtD,QAAA,MAAM,OAAO,sBAAuB,SAAS,sBA0G5C,CAAC;AAEF,eAAe,OAAO,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"SeriesSelector.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMCatalogEditor/components/PrefilterSelectors/SeriesSelector.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAmB,MAAM,OAAO,CAAC;uCASH;IAAE,OAAO,EAAE,MAAM,EAAE,CAAA;CAAE;;;AAqB1D,wBAAwC"}
1
+ {"version":3,"file":"SeriesSelector.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMCatalogEditor/components/PrefilterSelectors/SeriesSelector.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA8B,MAAM,OAAO,CAAC;uCASd;IAAE,OAAO,EAAE,MAAM,EAAE,CAAA;CAAE;;;AAqB1D,wBAAwC"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMCatalogEditor/modules/TableFeatures/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAqC,MAAM,OAAO,CAAC;AAgB1D,eAAO,MAAM,aAAa;;CAgFxB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMCatalogEditor/modules/TableFeatures/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAiB,MAAM,OAAO,CAAC;AAgBtC,eAAO,MAAM,aAAa;;CAiExB,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMCatalogEditor/modules/TableOptions/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA0B,MAAM,OAAO,CAAC;AAa/C,eAAO,MAAM,YAAY;;CAmEvB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMCatalogEditor/modules/TableOptions/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAiB,MAAM,OAAO,CAAC;AAatC,eAAO,MAAM,YAAY;;CA0DvB,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"useSelectSimpleData.d.ts","sourceRoot":"","sources":["../../../../../../src/ui/SelectSimple/useSelectSimpleData.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,qBAAqB,EAAE,MAAM,EAAiB,MAAM,SAAS,CAAC;AAOvE,MAAM,CAAC,OAAO,WAAW,EACvB,YAAY,EACZ,aAAa,EACb,UAAU,EACV,QAAQ,EACR,KAAK,EACL,OAAO,EAAE,iBAAiB,EAC1B,eAAe,EACf,WAAW,GACZ,EAAE,qBAAqB;;;;sBAkFa,GAAG,UAAU,MAAM,GAAG,MAAM,EAAE,GAAG,SAAS;;EAiB9E"}
1
+ {"version":3,"file":"useSelectSimpleData.d.ts","sourceRoot":"","sources":["../../../../../../src/ui/SelectSimple/useSelectSimpleData.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,qBAAqB,EAAE,MAAM,EAAiB,MAAM,SAAS,CAAC;AAOvE,MAAM,CAAC,OAAO,WAAW,EACvB,YAAY,EACZ,aAAa,EACb,UAAU,EACV,QAAQ,EACR,KAAK,EACL,OAAO,EAAE,iBAAiB,EAC1B,eAAe,EACf,WAAW,GACZ,EAAE,qBAAqB;;;;sBAgGa,GAAG,UAAU,MAAM,GAAG,MAAM,EAAE,GAAG,SAAS;;EAiB9E"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/ui/Table/BaseTable/cellRenderer/MediaItemViewerCell/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA8B,MAAM,OAAO,CAAC;AACnD,OAAO,EAAE,kBAAkB,EAAE,MAAM,IAAI,CAAC;AAOxC,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,GAAG,CAAC;QACZ,UAAU,iBAAiB;YACzB,cAAc,EAAE,GAAG,CAAC;SACrB;KACF;CACF;AAED,MAAM,CAAC,OAAO,WAAW,EAAE,QAAQ,EAAE,MAAM,EAAE,EAAE,kBAAkB,qBAqFhE"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/ui/Table/BaseTable/cellRenderer/MediaItemViewerCell/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA8B,MAAM,OAAO,CAAC;AACnD,OAAO,EAAE,kBAAkB,EAAE,MAAM,IAAI,CAAC;AAOxC,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,GAAG,CAAC;QACZ,UAAU,iBAAiB;YACzB,cAAc,EAAE,GAAG,CAAC;SACrB;KACF;CACF;AAED,MAAM,CAAC,OAAO,WAAW,EAAE,QAAQ,EAAE,MAAM,EAAE,EAAE,kBAAkB,qBAgHhE"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crystaldesign/diva-backoffice",
3
- "version": "25.15.0-beta.4",
3
+ "version": "25.15.0-beta.6",
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.15.0-beta.4",
19
- "@crystaldesign/content-item": "25.15.0-beta.4",
20
- "@crystaldesign/diva-core": "25.15.0-beta.4",
21
- "@crystaldesign/diva-utils": "25.15.0-beta.4",
22
- "@crystaldesign/media-upload": "25.15.0-beta.4",
23
- "@crystaldesign/rtf-editor": "25.15.0-beta.4",
24
- "@crystaldesign/spreadsheet": "25.15.0-beta.4",
18
+ "@crystaldesign/content-box": "25.15.0-beta.6",
19
+ "@crystaldesign/content-item": "25.15.0-beta.6",
20
+ "@crystaldesign/diva-core": "25.15.0-beta.6",
21
+ "@crystaldesign/diva-utils": "25.15.0-beta.6",
22
+ "@crystaldesign/media-upload": "25.15.0-beta.6",
23
+ "@crystaldesign/rtf-editor": "25.15.0-beta.6",
24
+ "@crystaldesign/spreadsheet": "25.15.0-beta.6",
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": "82a7544bd1b3dd32c808cfce692e81a3be6ca088"
54
+ "gitHead": "e04ac62e2e9d1cce3ed314ed39afae13387a19ca"
55
55
  }