@crystaldesign/diva-backoffice 24.7.0-beta.43 → 24.7.0-beta.45

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.
@@ -4996,6 +4996,71 @@ function loadConfiguration(t, root, config, lang) {
4996
4996
  }]
4997
4997
  }]
4998
4998
  },
4999
+ TableRenderPackages: {
5000
+ title: t('backoffice.table.renderpackages.title'),
5001
+ type: 'Table',
5002
+ canRefresh: true,
5003
+ columns: [{
5004
+ title: 'ID',
5005
+ field: '_id',
5006
+ sorter: 1,
5007
+ filter: 'advanced'
5008
+ }, {
5009
+ title: t('backoffice.table.renderpackages.columns.name'),
5010
+ field: 'name',
5011
+ sorter: 1,
5012
+ filter: 'advanced',
5013
+ width: 150
5014
+ }, {
5015
+ title: t('backoffice.table.renderpackages.columns.category'),
5016
+ field: 'category',
5017
+ sorter: 3,
5018
+ filter: 'advanced',
5019
+ width: 100
5020
+ }, {
5021
+ title: 'organizationId',
5022
+ field: 'organizationId',
5023
+ hidden: true
5024
+ }, {
5025
+ title: 'organization',
5026
+ field: 'organizationId_displayName'
5027
+ }, {
5028
+ title: t('backoffice.table.rooms.columns.lastUpdated'),
5029
+ field: 'lastUpdated',
5030
+ type: 'unixTimeStamp',
5031
+ width: 150
5032
+ }, {
5033
+ title: t('backoffice.table.rooms.columns.created'),
5034
+ field: 'created',
5035
+ type: 'unixTimeStamp',
5036
+ sorter: 8,
5037
+ width: 150
5038
+ }],
5039
+ apiInterface: {
5040
+ read: {
5041
+ list: '${mediaService}/renderpackages',
5042
+ filterServerSide: true
5043
+ },
5044
+ "delete": '${mediaService}/renderpackages/${id}'
5045
+ },
5046
+ rowAction: [{
5047
+ actionType: 'Detail',
5048
+ id: 'FormCreateOrUpdateRenderPackages',
5049
+ type: 'Form'
5050
+ }],
5051
+ createAction: {
5052
+ actionType: 'Detail',
5053
+ id: 'FormCreateOrUpdateRenderPackages',
5054
+ type: 'Form'
5055
+ },
5056
+ createActionMapping: {
5057
+ type: 'body',
5058
+ map: [{
5059
+ targetField: 'organizationId',
5060
+ globalValue: 'selectedOrganizationId'
5061
+ }]
5062
+ }
5063
+ },
4999
5064
  TableArchiveChecks: {
5000
5065
  title: t('backoffice.table.archivechecks.title'),
5001
5066
  type: 'Table',
@@ -7576,6 +7641,92 @@ function loadConfiguration(t, root, config, lang) {
7576
7641
  type: 'input'
7577
7642
  }]
7578
7643
  },
7644
+ FormCreateOrUpdateRenderPackages: {
7645
+ type: 'Form',
7646
+ title: t('backoffice.form.createorupdateviewpoints.title'),
7647
+ apiInterface: {
7648
+ create: {
7649
+ url: '${mediaService}/renderpackages',
7650
+ method: 'POST'
7651
+ },
7652
+ update: {
7653
+ url: '${mediaService}/renderpackages/{_id}',
7654
+ method: 'PATCH',
7655
+ jsonPatch: true
7656
+ }
7657
+ },
7658
+ items: [{
7659
+ name: '_id',
7660
+ label: 'ID',
7661
+ type: 'input',
7662
+ readonly: true
7663
+ }, {
7664
+ name: 'name',
7665
+ label: t('backoffice.form.createorupdaterenderpackages.items.name'),
7666
+ type: 'input',
7667
+ required: true
7668
+ }, {
7669
+ name: 'icon',
7670
+ label: t('backoffice.form.createorupdaterenderpackages.items.icon'),
7671
+ type: 'input',
7672
+ required: true
7673
+ }, {
7674
+ name: 'category',
7675
+ label: t('backoffice.form.createorupdaterenderpackages.items.category'),
7676
+ type: 'input',
7677
+ required: true
7678
+ }, {
7679
+ type: 'subTitle',
7680
+ name: 'Presets'
7681
+ }, {
7682
+ name: 'presets',
7683
+ label: t('Presets'),
7684
+ type: 'array',
7685
+ items: [{
7686
+ type: 'radio',
7687
+ name: 'job',
7688
+ label: t('Job'),
7689
+ required: true,
7690
+ optionType: 'button',
7691
+ defaultValue: 'HQ',
7692
+ options: [{
7693
+ value: 'HQ',
7694
+ label: 'HQ'
7695
+ }, {
7696
+ value: 'SPIN',
7697
+ label: 'SPIN'
7698
+ }, {
7699
+ value: 'AR',
7700
+ label: 'AR'
7701
+ }, {
7702
+ value: 'CUTOUT',
7703
+ label: 'CUTOUT'
7704
+ }]
7705
+ }, {
7706
+ type: 'input',
7707
+ name: 'viewPoint',
7708
+ label: t('backoffice.form.createorupdaterenderpackages.items.job')
7709
+ }, {
7710
+ name: 'preset',
7711
+ label: t('Preset'),
7712
+ type: 'selectSimple',
7713
+ search: true,
7714
+ apiInterface: {
7715
+ read: '${mediaService}/renderjobpresets'
7716
+ },
7717
+ selectMapping: {
7718
+ label: '${name} (${_id})',
7719
+ value: '${_id}',
7720
+ externalValue: 'value'
7721
+ }
7722
+ }],
7723
+ initialValue: []
7724
+ }, {
7725
+ name: 'organizationId',
7726
+ label: t('backoffice.form.createorupdaterenderpackages.items.category'),
7727
+ hidden: true
7728
+ }]
7729
+ },
7579
7730
  FormUpdatePermission: {
7580
7731
  type: 'Form',
7581
7732
  title: t('backoffice.form.updatepermission.title'),
@@ -11397,6 +11548,11 @@ var menu$1 = [{
11397
11548
  label: 'backoffice.menu.items.label.TableRooms',
11398
11549
  permission: 'backoffice_admin_rooms',
11399
11550
  icon: 'HomeOutlined'
11551
+ }, {
11552
+ id: 'TableRenderPackages',
11553
+ label: 'backoffice.menu.items.label.TableRenderPackages',
11554
+ permission: 'backoffice_admin_rooms',
11555
+ icon: 'HomeOutlined'
11400
11556
  }]
11401
11557
  }, {
11402
11558
  id: 'adminOther',
@@ -22651,69 +22807,23 @@ var config$1 = {
22651
22807
  filter: 'text',
22652
22808
  editable: false
22653
22809
  }, {
22654
- headerName: 'externalName',
22655
- marryChildren: true,
22656
- required: true,
22810
+ field: 'externalName',
22657
22811
  editable: false,
22658
- children: [{
22659
- field: 'externalName.de',
22660
- headerName: 'DE',
22661
- isDictionary: true,
22662
- editable: false,
22663
- filter: 'text'
22664
- }, {
22665
- field: 'externalName.en',
22666
- headerName: 'EN',
22667
- isDictionary: true,
22668
- editable: false,
22669
- filter: 'text'
22670
- }, {
22671
- field: 'externalName.fr',
22672
- headerName: 'FR',
22673
- isDictionary: true,
22674
- filter: 'text',
22675
- editable: false
22676
- }]
22812
+ filter: 'text',
22813
+ type: 'translated',
22814
+ isDictionary: true
22677
22815
  }, {
22678
- headerName: 'internalName',
22679
- marryChildren: true,
22680
- required: true,
22681
- children: [{
22682
- field: 'internalName.de',
22683
- headerName: 'DE',
22684
- isDictionary: true,
22685
- filter: 'text'
22686
- }, {
22687
- field: 'internalName.en',
22688
- headerName: 'EN',
22689
- isDictionary: true,
22690
- filter: 'text'
22691
- }, {
22692
- field: 'internalName.fr',
22693
- headerName: 'FR',
22694
- isDictionary: true,
22695
- filter: 'text'
22696
- }]
22816
+ field: 'internalName',
22817
+ editable: false,
22818
+ filter: 'text',
22819
+ type: 'translated',
22820
+ isDictionary: true
22697
22821
  }, {
22698
- headerName: 'toolTip',
22699
- marryChildren: true,
22700
- required: true,
22701
- children: [{
22702
- field: 'toolTip.de',
22703
- headerName: 'DE',
22704
- isDictionary: true,
22705
- filter: 'text'
22706
- }, {
22707
- field: 'toolTip.en',
22708
- headerName: 'EN',
22709
- isDictionary: true,
22710
- filter: 'text'
22711
- }, {
22712
- field: 'toolTip.fr',
22713
- headerName: 'FR',
22714
- isDictionary: true,
22715
- filter: 'text'
22716
- }]
22822
+ field: 'toolTip',
22823
+ editable: false,
22824
+ filter: 'text',
22825
+ type: 'translated',
22826
+ isDictionary: true
22717
22827
  }, {
22718
22828
  field: 'catalogId',
22719
22829
  filter: 'text',
@@ -22721,7 +22831,8 @@ var config$1 = {
22721
22831
  }, {
22722
22832
  field: 'organizationId',
22723
22833
  filter: 'text',
22724
- editable: false
22834
+ editable: false,
22835
+ defaultValue: '${organizationId}'
22725
22836
  }]
22726
22837
  },
22727
22838
  features: {
@@ -22734,29 +22845,11 @@ var config$1 = {
22734
22845
  filter: 'number',
22735
22846
  editable: false
22736
22847
  }, {
22737
- headerName: 'featureText',
22738
- marryChildren: true,
22739
- required: true,
22848
+ field: 'featureText',
22740
22849
  editable: false,
22741
- children: [{
22742
- field: 'featureText.de',
22743
- headerName: 'DE',
22744
- isDictionary: true,
22745
- editable: false,
22746
- filter: 'text'
22747
- }, {
22748
- field: 'featureText.en',
22749
- headerName: 'EN',
22750
- isDictionary: true,
22751
- editable: false,
22752
- filter: 'text'
22753
- }, {
22754
- field: 'featureText.fr',
22755
- headerName: 'FR',
22756
- isDictionary: true,
22757
- editable: false,
22758
- filter: 'text'
22759
- }]
22850
+ filter: 'text',
22851
+ type: 'translated',
22852
+ isDictionary: true
22760
22853
  }, {
22761
22854
  field: 'featureNo',
22762
22855
  filter: 'text',
@@ -22793,53 +22886,17 @@ var config$1 = {
22793
22886
  filter: 'text',
22794
22887
  editable: false
22795
22888
  }, {
22796
- headerName: 'seriesName',
22797
- marryChildren: true,
22798
- required: true,
22889
+ field: 'seriesName',
22799
22890
  editable: false,
22800
- children: [{
22801
- field: 'seriesName.de',
22802
- headerName: 'DE',
22803
- isDictionary: true,
22804
- editable: false,
22805
- filter: 'text'
22806
- }, {
22807
- field: 'seriesName.en',
22808
- headerName: 'EN',
22809
- isDictionary: true,
22810
- editable: false,
22811
- filter: 'text'
22812
- }, {
22813
- field: 'seriesName.fr',
22814
- headerName: 'FR',
22815
- isDictionary: true,
22816
- editable: false,
22817
- filter: 'text'
22818
- }]
22891
+ filter: 'text',
22892
+ type: 'translated',
22893
+ isDictionary: true
22819
22894
  }, {
22820
- headerName: 'SeriesFullText',
22821
- marryChildren: true,
22822
- required: true,
22895
+ field: 'seriesFullText',
22823
22896
  editable: false,
22824
- children: [{
22825
- field: 'seriesFullText.de',
22826
- headerName: 'DE',
22827
- isDictionary: true,
22828
- editable: false,
22829
- filter: 'text'
22830
- }, {
22831
- field: 'seriesFullText.en',
22832
- headerName: 'EN',
22833
- isDictionary: true,
22834
- editable: false,
22835
- filter: 'text'
22836
- }, {
22837
- field: 'seriesFullText.fr',
22838
- headerName: 'FR',
22839
- isDictionary: true,
22840
- editable: false,
22841
- filter: 'text'
22842
- }]
22897
+ filter: 'text',
22898
+ type: 'translated',
22899
+ isDictionary: true
22843
22900
  }, {
22844
22901
  field: 'serieNo',
22845
22902
  filter: 'number',
@@ -22851,7 +22908,8 @@ var config$1 = {
22851
22908
  }, {
22852
22909
  field: 'organizationId',
22853
22910
  filter: 'text',
22854
- editable: false
22911
+ editable: false,
22912
+ defaultValue: '${organizationId}'
22855
22913
  }, {
22856
22914
  field: 'sequenceNo',
22857
22915
  filter: 'number',
@@ -22886,53 +22944,17 @@ var config$1 = {
22886
22944
  filter: 'text',
22887
22945
  editable: false
22888
22946
  }, {
22889
- headerName: 'shortText',
22890
- marryChildren: true,
22891
- required: true,
22947
+ field: 'shortText',
22892
22948
  editable: false,
22893
- children: [{
22894
- field: 'shortText.de',
22895
- headerName: 'DE',
22896
- isDictionary: true,
22897
- filter: 'text',
22898
- editable: false
22899
- }, {
22900
- field: 'shortText.en',
22901
- headerName: 'EN',
22902
- isDictionary: true,
22903
- filter: 'text',
22904
- editable: false
22905
- }, {
22906
- field: 'shortText.fr',
22907
- headerName: 'FR',
22908
- isDictionary: true,
22909
- filter: 'text',
22910
- editable: false
22911
- }]
22949
+ filter: 'text',
22950
+ type: 'translated',
22951
+ isDictionary: true
22912
22952
  }, {
22913
- headerName: 'fullText',
22914
- marryChildren: true,
22915
- required: true,
22953
+ field: 'fullText',
22916
22954
  editable: false,
22917
- children: [{
22918
- field: 'fullText.de',
22919
- headerName: 'DE',
22920
- isDictionary: true,
22921
- filter: 'text',
22922
- editable: false
22923
- }, {
22924
- field: 'fullText.en',
22925
- headerName: 'EN',
22926
- isDictionary: true,
22927
- filter: 'text',
22928
- editable: false
22929
- }, {
22930
- field: 'fullText.fr',
22931
- headerName: 'FR',
22932
- isDictionary: true,
22933
- filter: 'text',
22934
- editable: false
22935
- }]
22955
+ filter: 'text',
22956
+ type: 'translated',
22957
+ isDictionary: true
22936
22958
  }, {
22937
22959
  field: 'featureClassRefNo',
22938
22960
  filter: 'number',
@@ -23007,45 +23029,17 @@ var config$1 = {
23007
23029
  filter: 'number',
23008
23030
  editable: false
23009
23031
  }, {
23010
- headerName: 'planningAdvice',
23011
- marryChildren: true,
23012
- required: true,
23013
- children: [{
23014
- field: 'planningAdvice.de',
23015
- headerName: 'DE',
23016
- isDictionary: true,
23017
- filter: 'text'
23018
- }, {
23019
- field: 'planningAdvice.en',
23020
- headerName: 'EN',
23021
- isDictionary: true,
23022
- filter: 'text'
23023
- }, {
23024
- field: 'planningAdvice.fr',
23025
- headerName: 'FR',
23026
- isDictionary: true,
23027
- filter: 'text'
23028
- }]
23032
+ field: 'planningAdvice',
23033
+ editable: false,
23034
+ filter: 'text',
23035
+ type: 'translated',
23036
+ isDictionary: true
23029
23037
  }, {
23030
- headerName: 'groupTitleDb',
23031
- marryChildren: true,
23032
- required: true,
23033
- children: [{
23034
- field: 'optionalAdditionalItems.groupTitleDb.de',
23035
- headerName: 'DE',
23036
- isDictionary: true,
23037
- filter: 'text'
23038
- }, {
23039
- field: 'optionalAdditionalItems.groupTitleDb.en',
23040
- headerName: 'EN',
23041
- isDictionary: true,
23042
- filter: 'text'
23043
- }, {
23044
- field: 'optionalAdditionalItems.groupTitleDb.fr',
23045
- headerName: 'FR',
23046
- isDictionary: true,
23047
- filter: 'text'
23048
- }]
23038
+ field: 'groupTitleDb',
23039
+ editable: false,
23040
+ filter: 'text',
23041
+ type: 'translated',
23042
+ isDictionary: true
23049
23043
  }, {
23050
23044
  field: 'salesNumber',
23051
23045
  filter: 'text',
@@ -23066,55 +23060,20 @@ var config$1 = {
23066
23060
  filter: 'text',
23067
23061
  editable: false
23068
23062
  }, {
23069
- headerName: 'optionText',
23070
- marryChildren: true,
23071
- required: true,
23063
+ field: 'optionText',
23072
23064
  editable: false,
23073
- children: [{
23074
- field: 'optionText.de',
23075
- headerName: 'DE',
23076
- isDictionary: true,
23077
- editable: false,
23078
- filter: 'text'
23079
- }, {
23080
- field: 'optionText.en',
23081
- headerName: 'EN',
23082
- isDictionary: true,
23083
- editable: false,
23084
- filter: 'text'
23085
- }, {
23086
- field: 'optionText.fr',
23087
- headerName: 'FR',
23088
- isDictionary: true,
23089
- editable: false,
23090
- filter: 'text'
23091
- }]
23065
+ filter: 'text',
23066
+ type: 'translated',
23067
+ isDictionary: true
23092
23068
  }, {
23093
- headerName: 'optionCommentText',
23094
- marryChildren: true,
23095
- required: true,
23069
+ field: 'optionCommentText',
23096
23070
  editable: false,
23097
- children: [{
23098
- field: 'optionCommentText.de',
23099
- headerName: 'DE',
23100
- isDictionary: true,
23101
- editable: false,
23102
- filter: 'text'
23103
- }, {
23104
- field: 'optionCommentText.en',
23105
- headerName: 'EN',
23106
- isDictionary: true,
23107
- editable: false,
23108
- filter: 'text'
23109
- }, {
23110
- field: 'optionCommentText.fr',
23111
- headerName: 'FR',
23112
- isDictionary: true,
23113
- editable: false,
23114
- filter: 'text'
23115
- }]
23071
+ filter: 'text',
23072
+ type: 'translated',
23073
+ isDictionary: true
23116
23074
  }, {
23117
23075
  field: 'optionFreeText',
23076
+ filter: 'text',
23118
23077
  editable: false
23119
23078
  }, {
23120
23079
  field: 'validFromDate',
@@ -23396,8 +23355,15 @@ function TablePackages (_ref) {
23396
23355
  floatingFilter: true,
23397
23356
  colDef: [{
23398
23357
  field: 'name',
23399
- filter: 'text',
23400
- editable: false
23358
+ filter: 'text'
23359
+ }, {
23360
+ field: 'basedCatalogId',
23361
+ headerName: 'basedCatalogId (TODO: onOff required, lookup)',
23362
+ filter: 'text'
23363
+ }, {
23364
+ field: 'basedPackageId',
23365
+ headerName: 'basedPackageId (TODO: onOff required, lookup)',
23366
+ filter: 'text'
23401
23367
  }, {
23402
23368
  field: 'lastUpdatedDate',
23403
23369
  filter: 'date',
@@ -23420,6 +23386,11 @@ function TablePackages (_ref) {
23420
23386
  field: '_id',
23421
23387
  filter: 'text',
23422
23388
  editable: false
23389
+ }, {
23390
+ field: 'organizationId',
23391
+ editable: false,
23392
+ hide: true,
23393
+ defaultValue: '${organizationId}'
23423
23394
  }]
23424
23395
  }
23425
23396
  })]
@@ -23466,30 +23437,27 @@ function TableProperties (_ref) {
23466
23437
  colDef: [{
23467
23438
  field: 'key',
23468
23439
  headerName: 'Key',
23469
- cellDataType: 'string',
23470
- editable: true,
23471
- width: 200
23440
+ cellDataType: 'string'
23472
23441
  }, {
23473
23442
  headerName: 'Name',
23474
23443
  marryChildren: true,
23475
- required: true,
23476
23444
  children: [{
23477
- field: 'name.DE',
23445
+ field: 'name.de',
23478
23446
  headerName: 'DE',
23479
23447
  isDictionary: true,
23480
23448
  filter: 'text'
23481
23449
  }, {
23482
- field: 'name.EN',
23450
+ field: 'name.en',
23483
23451
  headerName: 'EN',
23484
23452
  isDictionary: true,
23485
23453
  filter: 'text'
23486
23454
  }, {
23487
- field: 'name.FR',
23455
+ field: 'name.fr',
23488
23456
  headerName: 'FR',
23489
23457
  isDictionary: true,
23490
23458
  filter: 'text'
23491
23459
  }, {
23492
- field: 'name.IT',
23460
+ field: 'name.it',
23493
23461
  headerName: 'IT',
23494
23462
  isDictionary: true,
23495
23463
  filter: 'text'
@@ -23497,19 +23465,18 @@ function TableProperties (_ref) {
23497
23465
  }, {
23498
23466
  headerName: 'Value',
23499
23467
  marryChildren: true,
23500
- required: true,
23501
23468
  children: [{
23502
- field: 'value.DE',
23469
+ field: 'value.de',
23503
23470
  headerName: 'DE',
23504
23471
  isDictionary: true,
23505
23472
  filter: 'text'
23506
23473
  }, {
23507
- field: 'value.EN',
23474
+ field: 'value.en',
23508
23475
  headerName: 'EN',
23509
23476
  isDictionary: true,
23510
23477
  filter: 'text'
23511
23478
  }, {
23512
- field: 'value.FR',
23479
+ field: 'value.fr',
23513
23480
  headerName: 'FR',
23514
23481
  isDictionary: true,
23515
23482
  filter: 'text'
@@ -23523,32 +23490,28 @@ function TableProperties (_ref) {
23523
23490
  field: 'featureNos',
23524
23491
  headerName: 'FeatureNo (TODO Lookup)',
23525
23492
  cellDataType: 'string',
23526
- editable: true,
23527
- width: 200
23493
+ editable: true
23528
23494
  }, {
23529
23495
  field: 'optionKeys',
23530
23496
  headerName: 'OptionKeys (TODO Lookup)',
23531
23497
  cellDataType: 'string',
23532
- editable: true,
23533
- width: 200
23498
+ editable: true
23534
23499
  }, {
23535
23500
  field: 'serieNos',
23536
23501
  headerName: 'SerieNos (TODO Lookup)',
23537
23502
  cellDataType: 'string',
23538
- editable: true,
23539
- width: 200
23503
+ editable: true
23540
23504
  }, {
23541
23505
  field: 'typeNos',
23542
23506
  headerName: 'TypeNos (TODO Lookup)',
23543
23507
  cellDataType: 'string',
23544
- editable: true,
23545
- width: 200
23508
+ editable: true
23546
23509
  }, {
23547
23510
  field: 'organizationId',
23548
- headerName: 'OrganizationId (TODO DefaultValue)',
23549
23511
  cellDataType: 'string',
23550
- editable: true,
23551
- width: 200
23512
+ defaultValue: '${organizationId}',
23513
+ required: true,
23514
+ hide: true
23552
23515
  }, {
23553
23516
  field: 'lastUpdatedDate',
23554
23517
  filter: 'date',
@@ -23589,25 +23552,24 @@ var config = {
23589
23552
  }, {
23590
23553
  headerName: 'catalogName',
23591
23554
  marryChildren: true,
23592
- required: true,
23593
23555
  children: [{
23594
- field: 'catalogName.DE',
23556
+ field: 'catalogName.de',
23595
23557
  headerName: 'DE',
23596
23558
  isDictionary: true,
23597
23559
  filter: 'text'
23598
23560
  }, {
23599
- field: 'catalogName.EN',
23561
+ field: 'catalogName.en',
23600
23562
  headerName: 'EN',
23601
23563
  isDictionary: true,
23602
23564
  filter: 'text'
23603
23565
  }, {
23604
- field: 'catalogName.FR',
23566
+ field: 'catalogName.fr',
23605
23567
  headerName: 'FR',
23606
23568
  isDictionary: true,
23607
23569
  filter: 'text'
23608
23570
  }, {
23609
- field: 'catalogName.FR',
23610
- headerName: 'FR',
23571
+ field: 'catalogName.it',
23572
+ headerName: 'IT',
23611
23573
  isDictionary: true,
23612
23574
  filter: 'text'
23613
23575
  }]
@@ -23615,22 +23577,22 @@ var config = {
23615
23577
  headerName: 'catalogInfo',
23616
23578
  marryChildren: true,
23617
23579
  children: [{
23618
- field: 'catalogInfo.DE',
23580
+ field: 'catalogInfo.de',
23619
23581
  headerName: 'DE',
23620
23582
  isDictionary: true,
23621
23583
  filter: 'text'
23622
23584
  }, {
23623
- field: 'catalogInfo.EN',
23585
+ field: 'catalogInfo.en',
23624
23586
  headerName: 'EN',
23625
23587
  isDictionary: true,
23626
23588
  filter: 'text'
23627
23589
  }, {
23628
- field: 'catalogInfo.FR',
23590
+ field: 'catalogInfo.fr',
23629
23591
  headerName: 'FR',
23630
23592
  isDictionary: true,
23631
23593
  filter: 'text'
23632
23594
  }, {
23633
- field: 'catalogInfo.FR',
23595
+ field: 'catalogInfo.it',
23634
23596
  headerName: 'FR',
23635
23597
  isDictionary: true,
23636
23598
  filter: 'text'
@@ -23649,7 +23611,21 @@ var config = {
23649
23611
  filter: 'text'
23650
23612
  }, {
23651
23613
  field: 'formOfAddress1',
23652
- filter: 'number'
23614
+ filter: 'number',
23615
+ type: 'enum',
23616
+ cellRendererParams: {
23617
+ options: [{
23618
+ value: 0,
23619
+ label: {
23620
+ de: 'Herr'
23621
+ }
23622
+ }, {
23623
+ value: 1,
23624
+ label: {
23625
+ de: 'Frau'
23626
+ }
23627
+ }]
23628
+ }
23653
23629
  }, {
23654
23630
  field: 'department1',
23655
23631
  filter: 'text'
@@ -23672,7 +23648,7 @@ var config = {
23672
23648
  field: 'city1',
23673
23649
  filter: 'text'
23674
23650
  }, {
23675
- field: 'isoCountryId1',
23651
+ field: 'isoCountryId1 (TODO: lookup)',
23676
23652
  filter: 'text'
23677
23653
  }, {
23678
23654
  field: 'contactPersonNo2',
@@ -23688,7 +23664,21 @@ var config = {
23688
23664
  filter: 'text'
23689
23665
  }, {
23690
23666
  field: 'formOfAddress2',
23691
- filter: 'number'
23667
+ filter: 'number',
23668
+ type: 'enum',
23669
+ cellRendererParams: {
23670
+ options: [{
23671
+ value: 0,
23672
+ label: {
23673
+ de: 'Herr'
23674
+ }
23675
+ }, {
23676
+ value: 1,
23677
+ label: {
23678
+ de: 'Frau'
23679
+ }
23680
+ }]
23681
+ }
23692
23682
  }, {
23693
23683
  field: 'department2',
23694
23684
  filter: 'text'
@@ -23711,7 +23701,7 @@ var config = {
23711
23701
  field: 'city2',
23712
23702
  filter: 'text'
23713
23703
  }, {
23714
- field: 'isoCountryId2',
23704
+ field: 'isoCountryId2 (TODO: lookup)',
23715
23705
  filter: 'text'
23716
23706
  }, {
23717
23707
  field: 'manufactureName1',
@@ -23735,7 +23725,7 @@ var config = {
23735
23725
  field: 'city',
23736
23726
  filter: 'text'
23737
23727
  }, {
23738
- field: 'contactSupplierIsoCountryId',
23728
+ field: 'contactSupplierIsoCountryId (TODO: lookup)',
23739
23729
  filter: 'text'
23740
23730
  }, {
23741
23731
  field: 'zipCodePostBox',
@@ -23758,64 +23748,76 @@ var config = {
23758
23748
  required: true,
23759
23749
  editable: false
23760
23750
  }, {
23761
- headerName: 'externalName',
23751
+ headerName: 'externalName ',
23762
23752
  marryChildren: true,
23763
- required: true,
23764
23753
  children: [{
23765
- field: 'externalName.DE',
23754
+ field: 'externalName.de',
23766
23755
  headerName: 'DE',
23767
23756
  isDictionary: true,
23768
23757
  filter: 'text'
23769
23758
  }, {
23770
- field: 'externalName.EN',
23759
+ field: 'externalName.en',
23771
23760
  headerName: 'EN',
23772
23761
  isDictionary: true,
23773
23762
  filter: 'text'
23774
23763
  }, {
23775
- field: 'externalName.FR',
23776
- headerName: 'FR',
23764
+ field: 'externalName.fr',
23765
+ headerName: 'FE',
23766
+ isDictionary: true,
23767
+ filter: 'text'
23768
+ }, {
23769
+ field: 'externalName.it',
23770
+ headerName: 'IT',
23777
23771
  isDictionary: true,
23778
23772
  filter: 'text'
23779
23773
  }]
23780
23774
  }, {
23781
23775
  headerName: 'internalName',
23782
23776
  marryChildren: true,
23783
- required: true,
23784
23777
  children: [{
23785
- field: 'internalName.DE',
23778
+ field: 'internalName.de',
23786
23779
  headerName: 'DE',
23787
23780
  isDictionary: true,
23788
23781
  filter: 'text'
23789
23782
  }, {
23790
- field: 'internalName.EN',
23783
+ field: 'internalName.en',
23791
23784
  headerName: 'EN',
23792
23785
  isDictionary: true,
23793
23786
  filter: 'text'
23794
23787
  }, {
23795
- field: 'internalName.FR',
23788
+ field: 'internalName.fr',
23796
23789
  headerName: 'FR',
23797
23790
  isDictionary: true,
23798
23791
  filter: 'text'
23792
+ }, {
23793
+ field: 'internalName.it',
23794
+ headerName: 'IT',
23795
+ isDictionary: true,
23796
+ filter: 'text'
23799
23797
  }]
23800
23798
  }, {
23801
23799
  headerName: 'toolTip',
23802
23800
  marryChildren: true,
23803
- required: true,
23804
23801
  children: [{
23805
- field: 'toolTip.DE',
23802
+ field: 'toolTip.de',
23806
23803
  headerName: 'DE',
23807
23804
  isDictionary: true,
23808
23805
  filter: 'text'
23809
23806
  }, {
23810
- field: 'toolTip.EN',
23807
+ field: 'toolTip.en',
23811
23808
  headerName: 'EN',
23812
23809
  isDictionary: true,
23813
23810
  filter: 'text'
23814
23811
  }, {
23815
- field: 'toolTip.FR',
23812
+ field: 'toolTip.fr',
23816
23813
  headerName: 'FR',
23817
23814
  isDictionary: true,
23818
23815
  filter: 'text'
23816
+ }, {
23817
+ field: 'toolTip.it',
23818
+ headerName: 'IT',
23819
+ isDictionary: true,
23820
+ filter: 'text'
23819
23821
  }]
23820
23822
  }]
23821
23823
  },
@@ -23828,22 +23830,26 @@ var config = {
23828
23830
  }, {
23829
23831
  headerName: 'featureText',
23830
23832
  marryChildren: true,
23831
- required: true,
23832
23833
  children: [{
23833
- field: 'featureText.DE',
23834
+ field: 'featureText.de',
23834
23835
  headerName: 'DE',
23835
23836
  isDictionary: true,
23836
23837
  filter: 'text'
23837
23838
  }, {
23838
- field: 'featureText.EN',
23839
+ field: 'featureText.en',
23839
23840
  headerName: 'EN',
23840
23841
  isDictionary: true,
23841
23842
  filter: 'text'
23842
23843
  }, {
23843
- field: 'featureText.FR',
23844
+ field: 'featureText.fr',
23844
23845
  headerName: 'FR',
23845
23846
  isDictionary: true,
23846
23847
  filter: 'text'
23848
+ }, {
23849
+ field: 'featureText.it',
23850
+ headerName: 'IT',
23851
+ isDictionary: true,
23852
+ filter: 'text'
23847
23853
  }]
23848
23854
  }]
23849
23855
  },
@@ -23871,57 +23877,71 @@ var config = {
23871
23877
  }, {
23872
23878
  headerName: 'shortText',
23873
23879
  marryChildren: true,
23874
- required: true,
23875
23880
  children: [{
23876
- field: 'shortText.DE',
23881
+ field: 'shortText.de',
23877
23882
  headerName: 'DE',
23878
23883
  isDictionary: true,
23879
23884
  filter: 'text'
23880
23885
  }, {
23881
- field: 'shortText.EN',
23886
+ field: 'shortText.ne',
23882
23887
  headerName: 'EN',
23883
23888
  isDictionary: true,
23884
23889
  filter: 'text'
23885
23890
  }, {
23886
- field: 'shortText.FR',
23891
+ field: 'shortText.fr',
23887
23892
  headerName: 'FR',
23888
23893
  isDictionary: true,
23889
23894
  filter: 'text'
23895
+ }, {
23896
+ field: 'shortText.it',
23897
+ headerName: 'IT',
23898
+ isDictionary: true,
23899
+ filter: 'text'
23890
23900
  }]
23891
23901
  }, {
23892
23902
  headerName: 'fullText',
23893
23903
  marryChildren: true,
23894
23904
  children: [{
23895
- field: 'fullText.DE',
23905
+ field: 'fullText.de',
23896
23906
  headerName: 'DE',
23897
23907
  isDictionary: true,
23898
23908
  filter: 'text'
23899
23909
  }, {
23900
- field: 'fullText.EN',
23910
+ field: 'fullText.en',
23901
23911
  headerName: 'EN',
23902
23912
  isDictionary: true,
23903
23913
  filter: 'text'
23904
23914
  }, {
23905
- field: 'fullText.FR',
23915
+ field: 'fullText.fr',
23906
23916
  headerName: 'FR',
23907
23917
  isDictionary: true,
23908
23918
  filter: 'text'
23919
+ }, {
23920
+ field: 'fullText.it',
23921
+ headerName: 'IT',
23922
+ isDictionary: true,
23923
+ filter: 'text'
23909
23924
  }]
23910
23925
  }, {
23911
23926
  headerName: 'planningAdvice',
23912
23927
  marryChildren: true,
23913
23928
  children: [{
23914
- field: 'planningAdvice.DE',
23929
+ field: 'planningAdvice.de',
23915
23930
  headerName: 'DE',
23916
23931
  isDictionary: true,
23917
23932
  filter: 'text'
23918
23933
  }, {
23919
- field: 'planningAdvice.EN',
23934
+ field: 'planningAdvice.en',
23920
23935
  headerName: 'EN',
23921
23936
  isDictionary: true,
23922
23937
  filter: 'text'
23923
23938
  }, {
23924
- field: 'planningAdvice.FR',
23939
+ field: 'planningAdvice.fr',
23940
+ headerName: 'FR',
23941
+ isDictionary: true,
23942
+ filter: 'text'
23943
+ }, {
23944
+ field: 'planningAdvice.it',
23925
23945
  headerName: 'FR',
23926
23946
  isDictionary: true,
23927
23947
  filter: 'text'
@@ -23945,18 +23965,24 @@ var config = {
23945
23965
  }, {
23946
23966
  headerName: 'optionText',
23947
23967
  marryChildren: true,
23948
- required: true,
23949
23968
  children: [{
23950
- field: 'optionText.DE',
23969
+ field: 'optionText.de',
23951
23970
  headerName: 'DE',
23952
23971
  isDictionary: true,
23953
23972
  filter: 'text'
23954
23973
  }, {
23955
- field: 'optionText.EN',
23974
+ field: 'optionText.en',
23975
+ headerName: 'EN',
23956
23976
  isDictionary: true,
23957
23977
  filter: 'text'
23958
23978
  }, {
23959
- field: 'optionText.FR',
23979
+ field: 'optionText.fr',
23980
+ headerName: 'FR',
23981
+ isDictionary: true,
23982
+ filter: 'text'
23983
+ }, {
23984
+ field: 'optionText.it',
23985
+ headerName: 'IT',
23960
23986
  isDictionary: true,
23961
23987
  filter: 'text'
23962
23988
  }]
@@ -23964,15 +23990,23 @@ var config = {
23964
23990
  headerName: 'optionCommentText',
23965
23991
  marryChildren: true,
23966
23992
  children: [{
23967
- field: 'optionCommentText.DE',
23993
+ field: 'optionCommentText.de',
23994
+ headerName: 'DE',
23968
23995
  isDictionary: true,
23969
23996
  filter: 'text'
23970
23997
  }, {
23971
- field: 'optionCommentText.EN',
23998
+ field: 'optionCommentText.en',
23999
+ headerName: 'EN',
23972
24000
  isDictionary: true,
23973
24001
  filter: 'text'
23974
24002
  }, {
23975
- field: 'optionCommentText.FR',
24003
+ field: 'optionCommentText.fr',
24004
+ headerName: 'FR',
24005
+ isDictionary: true,
24006
+ filter: 'text'
24007
+ }, {
24008
+ field: 'optionCommentText.it',
24009
+ headerName: 'IT',
23976
24010
  isDictionary: true,
23977
24011
  filter: 'text'
23978
24012
  }]
@@ -23980,19 +24014,32 @@ var config = {
23980
24014
  },
23981
24015
  serie: {
23982
24016
  colDef: [{
24017
+ field: 'serieNo',
24018
+ filter: 'text',
24019
+ required: true,
24020
+ editable: false
24021
+ }, {
23983
24022
  headerName: 'seriesName',
23984
24023
  marryChildren: true,
23985
24024
  required: true,
23986
24025
  children: [{
23987
- field: 'seriesName.DE',
24026
+ field: 'seriesName.de',
24027
+ headerName: 'DE',
23988
24028
  isDictionary: true,
23989
24029
  filter: 'text'
23990
24030
  }, {
23991
- field: 'seriesName.EN',
24031
+ field: 'seriesName.en',
24032
+ headerName: 'EN',
23992
24033
  isDictionary: true,
23993
24034
  filter: 'text'
23994
24035
  }, {
23995
- field: 'seriesName.FR',
24036
+ field: 'seriesName.fr',
24037
+ headerName: 'FR',
24038
+ isDictionary: true,
24039
+ filter: 'text'
24040
+ }, {
24041
+ field: 'seriesName.it',
24042
+ headerName: 'IT',
23996
24043
  isDictionary: true,
23997
24044
  filter: 'text'
23998
24045
  }]
@@ -24000,23 +24047,26 @@ var config = {
24000
24047
  headerName: 'seriesFullText',
24001
24048
  marryChildren: true,
24002
24049
  children: [{
24003
- field: 'seriesFullText.DE',
24050
+ field: 'seriesFullText.de',
24051
+ headerName: 'DE',
24004
24052
  isDictionary: true,
24005
24053
  filter: 'text'
24006
24054
  }, {
24007
- field: 'seriesFullText.EN',
24055
+ field: 'seriesFullText.en',
24056
+ headerName: 'EN',
24057
+ isDictionary: true,
24058
+ filter: 'text'
24059
+ }, {
24060
+ field: 'seriesFullText.fr',
24061
+ headerName: 'FR',
24008
24062
  isDictionary: true,
24009
24063
  filter: 'text'
24010
24064
  }, {
24011
- field: 'seriesFullText.FR',
24065
+ field: 'seriesFullText.it',
24066
+ headerName: 'IT',
24012
24067
  isDictionary: true,
24013
24068
  filter: 'text'
24014
24069
  }]
24015
- }, {
24016
- field: 'serieNo',
24017
- filter: 'text',
24018
- required: true,
24019
- editable: false
24020
24070
  }]
24021
24071
  }
24022
24072
  };
@@ -24107,8 +24157,6 @@ function TableRenaming (_ref) {
24107
24157
  type: 'dotnetSSM',
24108
24158
  apiInterface: {
24109
24159
  read: apiConfig.enricherService + '/packages/${packageId}/renaming/${type}',
24110
- create: apiConfig.enricherService + '/packages/${packageId}/renaming/${type}',
24111
- "delete": apiConfig.enricherService + '/packages/${packageId}/renaming/${type}/${_id}',
24112
24160
  update: apiConfig.enricherService + '/packages/${packageId}/renaming/${type}/${_id}'
24113
24161
  },
24114
24162
  dateFormat: 'LL',
@@ -24145,6 +24193,7 @@ function IDMCatalogEditor(_ref) {
24145
24193
  var selectedPackage = _ref.selectedPackage,
24146
24194
  setSelectedPackage = _ref.setSelectedPackage,
24147
24195
  jwt = _ref.jwt,
24196
+ organizationId = _ref.organizationId,
24148
24197
  apiConfig = _ref.apiConfig;
24149
24198
  var _useTranslation = useTranslation$1(),
24150
24199
  t = _useTranslation.t;
@@ -24166,6 +24215,7 @@ function IDMCatalogEditor(_ref) {
24166
24215
  gridId: 'crud-grid_tabgroups',
24167
24216
  jwt: jwt,
24168
24217
  applicationData: {
24218
+ organizationId: organizationId,
24169
24219
  packageId: selectedPackage
24170
24220
  },
24171
24221
  configuration: {
@@ -24208,14 +24258,13 @@ function IDMCatalogEditor(_ref) {
24208
24258
  field: 'featureNos',
24209
24259
  headerName: 'FeatureNo (TODO Lookup)',
24210
24260
  cellDataType: 'string',
24211
- editable: true,
24212
- width: 200
24261
+ editable: true
24213
24262
  }, {
24214
24263
  field: 'organizationId',
24215
- headerName: 'OrganizationId (TODO DefaultValue)',
24216
24264
  cellDataType: 'string',
24217
- editable: true,
24218
- width: 200
24265
+ editable: false,
24266
+ hide: true,
24267
+ defaultValue: '${organizationId}'
24219
24268
  }, {
24220
24269
  field: 'lastUpdatedDate',
24221
24270
  filter: 'date',
@@ -1 +1 @@
1
- {"version":3,"file":"tableConfiguration.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMEnricherEditor/modules/TableExclusivity/tableConfiguration.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAC;AAElF,QAAA,MAAM,MAAM,EAAE;IAAE,CAAC,GAAG,EAAE,MAAM,GAAG;QAAE,MAAM,EAAE,CAAC,mBAAmB,CAAC,GAAG,CAAC,GAAG,eAAe,CAAC,GAAG,EAAE,mBAAmB,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAA;KAAE,CAAA;CAusBvH,CAAC;AAEF,eAAe,MAAM,CAAC"}
1
+ {"version":3,"file":"tableConfiguration.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMEnricherEditor/modules/TableExclusivity/tableConfiguration.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAC;AAElF,QAAA,MAAM,MAAM,EAAE;IAAE,CAAC,GAAG,EAAE,MAAM,GAAG;QAAE,MAAM,EAAE,CAAC,mBAAmB,CAAC,GAAG,CAAC,GAAG,eAAe,CAAC,GAAG,EAAE,mBAAmB,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAA;KAAE,CAAA;CAkdvH,CAAC;AAEF,eAAe,MAAM,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMEnricherEditor/modules/TablePackages/index.tsx"],"names":[],"mappings":"AAKA,OAAO,EAAE,sBAAsB,EAAE,MAAM,4BAA4B,CAAC;AAEpE,MAAM,CAAC,OAAO,WAAW,EAAE,GAAG,EAAE,cAAc,EAAE,SAAS,EAAE,WAAW,EAAE,EAAE,sBAAsB,eA2D/F"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMEnricherEditor/modules/TablePackages/index.tsx"],"names":[],"mappings":"AAKA,OAAO,EAAE,sBAAsB,EAAE,MAAM,4BAA4B,CAAC;AAEpE,MAAM,CAAC,OAAO,WAAW,EAAE,GAAG,EAAE,cAAc,EAAE,SAAS,EAAE,WAAW,EAAE,EAAE,sBAAsB,eA0E/F"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMEnricherEditor/modules/TableProperties/index.tsx"],"names":[],"mappings":"AAKA,OAAO,EAAE,sBAAsB,EAAE,MAAM,4BAA4B,CAAC;AAGpE,MAAM,CAAC,OAAO,WAAW,EAAE,eAAe,EAAE,kBAAkB,EAAE,GAAG,EAAE,SAAS,EAAE,EAAE,sBAAsB,eAqKvG"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMEnricherEditor/modules/TableProperties/index.tsx"],"names":[],"mappings":"AAKA,OAAO,EAAE,sBAAsB,EAAE,MAAM,4BAA4B,CAAC;AAGpE,MAAM,CAAC,OAAO,WAAW,EAAE,eAAe,EAAE,kBAAkB,EAAE,GAAG,EAAE,SAAS,EAAE,EAAE,sBAAsB,eA6JvG"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMEnricherEditor/modules/TableRenaming/index.tsx"],"names":[],"mappings":"AASA,OAAO,EAAE,sBAAsB,EAAE,MAAM,4BAA4B,CAAC;AAqDpE,MAAM,CAAC,OAAO,WAAW,EAAE,eAAe,EAAE,kBAAkB,EAAE,GAAG,EAAE,SAAS,EAAE,EAAE,sBAAsB,eAuEvG"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMEnricherEditor/modules/TableRenaming/index.tsx"],"names":[],"mappings":"AASA,OAAO,EAAE,sBAAsB,EAAE,MAAM,4BAA4B,CAAC;AAqDpE,MAAM,CAAC,OAAO,WAAW,EAAE,eAAe,EAAE,kBAAkB,EAAE,GAAG,EAAE,SAAS,EAAE,EAAE,sBAAsB,eAqEvG"}
@@ -1 +1 @@
1
- {"version":3,"file":"tableConfiguration.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMEnricherEditor/modules/TableRenaming/tableConfiguration.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAC;AAElF,QAAA,MAAM,MAAM,EAAE;IAAE,CAAC,GAAG,EAAE,MAAM,GAAG;QAAE,MAAM,EAAE,CAAC,mBAAmB,CAAC,GAAG,CAAC,GAAG,eAAe,CAAC,GAAG,EAAE,mBAAmB,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAA;KAAE,CAAA;CAsjBvH,CAAC;AAEF,eAAe,MAAM,CAAC"}
1
+ {"version":3,"file":"tableConfiguration.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMEnricherEditor/modules/TableRenaming/tableConfiguration.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAC;AAElF,QAAA,MAAM,MAAM,EAAE;IAAE,CAAC,GAAG,EAAE,MAAM,GAAG;QAAE,MAAM,EAAE,CAAC,mBAAmB,CAAC,GAAG,CAAC,GAAG,eAAe,CAAC,GAAG,EAAE,mBAAmB,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAA;KAAE,CAAA;CA0oBvH,CAAC;AAEF,eAAe,MAAM,CAAC"}
@@ -1,3 +1,3 @@
1
1
  import { IDMEnricherEditorState } from '../../useIDMEnricherEditor';
2
- export default function IDMCatalogEditor({ selectedPackage, setSelectedPackage, jwt, apiConfig }: IDMEnricherEditorState): JSX.Element;
2
+ export default function IDMCatalogEditor({ selectedPackage, setSelectedPackage, jwt, organizationId, apiConfig }: IDMEnricherEditorState): JSX.Element;
3
3
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMEnricherEditor/modules/TableTabGroups/index.tsx"],"names":[],"mappings":"AAKA,OAAO,EAAE,sBAAsB,EAAE,MAAM,4BAA4B,CAAC;AAGpE,MAAM,CAAC,OAAO,UAAU,gBAAgB,CAAC,EAAE,eAAe,EAAE,kBAAkB,EAAE,GAAG,EAAE,SAAS,EAAE,EAAE,sBAAsB,eA2GvH"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMEnricherEditor/modules/TableTabGroups/index.tsx"],"names":[],"mappings":"AAKA,OAAO,EAAE,sBAAsB,EAAE,MAAM,4BAA4B,CAAC;AAGpE,MAAM,CAAC,OAAO,UAAU,gBAAgB,CAAC,EAAE,eAAe,EAAE,kBAAkB,EAAE,GAAG,EAAE,cAAc,EAAE,SAAS,EAAE,EAAE,sBAAsB,eA2GvI"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crystaldesign/diva-backoffice",
3
- "version": "24.7.0-beta.43",
3
+ "version": "24.7.0-beta.45",
4
4
  "license": "COMMERCIAL",
5
5
  "devDependencies": {
6
6
  "@testing-library/jest-dom": "^5.15.0",
@@ -52,5 +52,5 @@
52
52
  },
53
53
  "module": "build/esm/index.js",
54
54
  "types": "./build/types/backoffice/src/index.d.ts",
55
- "gitHead": "0391bedf6aecd6895f09f69e8bc6238f9bf605c1"
55
+ "gitHead": "df97239667a20975dd8c28bb6d64d593f3c21ab7"
56
56
  }