@openui5/sap.ui.mdc 1.96.5 → 1.99.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.reuse/dep5 +26 -31
- package/THIRDPARTY.txt +15 -21
- package/package.json +4 -4
- package/src/sap/ui/mdc/.library +1 -1
- package/src/sap/ui/mdc/ActionToolbar.js +7 -9
- package/src/sap/ui/mdc/AggregationBaseDelegate.js +2 -2
- package/src/sap/ui/mdc/BaseDelegate.js +1 -1
- package/src/sap/ui/mdc/Chart.js +1100 -1796
- package/src/sap/ui/mdc/ChartDelegate.js +429 -270
- package/src/sap/ui/mdc/ChartRenderer.js +73 -77
- package/src/sap/ui/mdc/Control.js +1 -1
- package/src/sap/ui/mdc/Element.js +1 -1
- package/src/sap/ui/mdc/Field.js +3 -2
- package/src/sap/ui/mdc/FilterBar.js +3 -2
- package/src/sap/ui/mdc/FilterField.js +25 -8
- package/src/sap/ui/mdc/Link.js +23 -4
- package/src/sap/ui/mdc/LinkDelegate.js +3 -3
- package/src/sap/ui/mdc/MultiValueField.js +21 -6
- package/src/sap/ui/mdc/Table.js +204 -161
- package/src/sap/ui/mdc/TableDelegate.js +47 -17
- package/src/sap/ui/mdc/ValueHelp.js +51 -15
- package/src/sap/ui/mdc/ValueHelpDelegate.js +20 -0
- package/src/sap/ui/mdc/actiontoolbar/ActionToolbarAction.js +2 -2
- package/src/sap/ui/mdc/{chartNew/ChartSelectionDetailsNew.js → chart/ChartSelectionDetails.js} +8 -8
- package/src/sap/ui/mdc/{chartNew/ChartToolbarNew.js → chart/ChartToolbar.js} +49 -13
- package/src/sap/ui/mdc/chart/ChartTypeButton.js +55 -54
- package/src/sap/ui/mdc/{chartNew/DrillBreadcrumbsNew.js → chart/DrillBreadcrumbs.js} +3 -3
- package/src/sap/ui/mdc/chart/DrillStackHandler.js +38 -249
- package/src/sap/ui/mdc/chart/Item.js +62 -92
- package/src/sap/ui/mdc/{chartNew/PropertyHelperNew.js → chart/PropertyHelper.js} +3 -3
- package/src/sap/ui/mdc/chart/SelectionDetailsActions.js +17 -21
- package/src/sap/ui/mdc/condition/Condition.js +1 -1
- package/src/sap/ui/mdc/condition/ConditionConverter.js +1 -1
- package/src/sap/ui/mdc/condition/ConditionModel.js +1 -1
- package/src/sap/ui/mdc/condition/FilterConverter.js +1 -1
- package/src/sap/ui/mdc/condition/FilterOperatorUtil.js +261 -44
- package/src/sap/ui/mdc/condition/Operator.js +9 -9
- package/src/sap/ui/mdc/condition/OperatorDynamicDateOption.js +437 -0
- package/src/sap/ui/mdc/condition/RangeOperator.js +1 -1
- package/src/sap/ui/mdc/designtime/chart/Chart.designtime.js +80 -5
- package/src/sap/ui/mdc/designtime/field/Field.designtime.js +97 -0
- package/src/sap/ui/mdc/designtime/field/FieldBase.designtime.js +104 -0
- package/src/sap/ui/mdc/designtime/field/FilterField.designtime.js +22 -0
- package/src/sap/ui/mdc/designtime/field/MultiValueField.designtime.js +23 -0
- package/src/sap/ui/mdc/designtime/filterbar/FilterBarBase.designtime.js +3 -0
- package/src/sap/ui/mdc/designtime/table/Table.designtime.js +60 -20
- package/src/sap/ui/mdc/field/BoolFieldHelp.js +1 -1
- package/src/sap/ui/mdc/field/ConditionFieldHelp.js +1 -1
- package/src/sap/ui/mdc/field/ConditionType.js +9 -9
- package/src/sap/ui/mdc/field/ConditionsType.js +7 -7
- package/src/sap/ui/mdc/field/CustomFieldHelp.js +1 -1
- package/src/sap/ui/mdc/field/CustomFieldInfo.js +1 -1
- package/src/sap/ui/mdc/field/DefineConditionPanel.js +75 -27
- package/src/sap/ui/mdc/field/DynamicDateRangeConditionsType.js +311 -0
- package/src/sap/ui/mdc/field/FieldBase.js +85 -52
- package/src/sap/ui/mdc/field/FieldBaseRenderer.js +0 -3
- package/src/sap/ui/mdc/field/FieldHelpBase.js +2 -2
- package/src/sap/ui/mdc/field/FieldInfoBase.js +23 -10
- package/src/sap/ui/mdc/field/FieldInput.js +1 -1
- package/src/sap/ui/mdc/field/FieldInputRenderUtil.js +1 -1
- package/src/sap/ui/mdc/field/FieldMultiInput.js +1 -1
- package/src/sap/ui/mdc/field/FieldValueHelp.js +7 -7
- package/src/sap/ui/mdc/field/FieldValueHelpContentWrapperBase.js +1 -1
- package/src/sap/ui/mdc/field/FieldValueHelpDelegate.js +20 -0
- package/src/sap/ui/mdc/field/FieldValueHelpMTableWrapper.js +1 -1
- package/src/sap/ui/mdc/field/FieldValueHelpMdcTableWrapper.js +2 -2
- package/src/sap/ui/mdc/field/FieldValueHelpTableWrapperBase.js +7 -3
- package/src/sap/ui/mdc/field/FieldValueHelpUITableWrapper.js +1 -1
- package/src/sap/ui/mdc/field/InParameter.js +1 -1
- package/src/sap/ui/mdc/field/ListFieldHelp.js +10 -2
- package/src/sap/ui/mdc/field/ListFieldHelpItem.js +1 -1
- package/src/sap/ui/mdc/field/MultiValueFieldItem.js +1 -1
- package/src/sap/ui/mdc/field/OutParameter.js +1 -1
- package/src/sap/ui/mdc/field/TokenDisplay.js +70 -0
- package/src/sap/ui/mdc/field/TokenDisplayRenderer.js +24 -0
- package/src/sap/ui/mdc/field/TokenizerDisplay.js +80 -0
- package/src/sap/ui/mdc/field/TokenizerDisplayRenderer.js +69 -0
- package/src/sap/ui/mdc/field/ValueHelpPanel.js +2 -1
- package/src/sap/ui/mdc/field/content/BooleanContent.js +1 -1
- package/src/sap/ui/mdc/field/content/ContentFactory.js +28 -26
- package/src/sap/ui/mdc/field/content/DateContent.js +128 -2
- package/src/sap/ui/mdc/field/content/DateTimeContent.js +9 -1
- package/src/sap/ui/mdc/field/content/DefaultContent.js +36 -14
- package/src/sap/ui/mdc/field/content/LinkContent.js +1 -1
- package/src/sap/ui/mdc/field/content/TimeContent.js +8 -1
- package/src/sap/ui/mdc/field/content/UnitContent.js +23 -4
- package/src/sap/ui/mdc/filterbar/FilterBarBase.js +359 -142
- package/src/sap/ui/mdc/filterbar/FilterBarBaseRenderer.js +1 -1
- package/src/sap/ui/mdc/filterbar/PropertyHelper.js +1 -1
- package/src/sap/ui/mdc/filterbar/p13n/AdaptationFilterBar.js +8 -2
- package/src/sap/ui/mdc/filterbar/vh/CollectiveSearchSelect.js +3 -1
- package/src/sap/ui/mdc/filterbar/vh/FilterBar.js +7 -1
- package/src/sap/ui/mdc/filterbar/vh/GenericFilterBarDelegate.js +6 -6
- package/src/sap/ui/mdc/flexibility/AggregateFlex.js +2 -2
- package/src/sap/ui/mdc/flexibility/Chart.flexibility.js +6 -4
- package/src/sap/ui/mdc/flexibility/ColumnFlex.js +1 -1
- package/src/sap/ui/mdc/flexibility/FilterBar.flexibility.js +4 -3
- package/src/sap/ui/mdc/flexibility/FilterItemFlex.js +1 -1
- package/src/sap/ui/mdc/flexibility/GroupFlex.js +1 -1
- package/src/sap/ui/mdc/flexibility/Panel.flexibility.js +9 -3
- package/src/sap/ui/mdc/flexibility/PropertyInfoFlex.js +110 -0
- package/src/sap/ui/mdc/flexibility/SortFlex.js +2 -2
- package/src/sap/ui/mdc/flp/FlpLinkDelegate.js +6 -6
- package/src/sap/ui/mdc/library.js +62 -43
- package/src/sap/ui/mdc/link/ContactDetails.js +1 -1
- package/src/sap/ui/mdc/link/ContactDetailsAddressItem.js +1 -1
- package/src/sap/ui/mdc/link/ContactDetailsEmailItem.js +1 -1
- package/src/sap/ui/mdc/link/ContactDetailsItem.js +1 -1
- package/src/sap/ui/mdc/link/ContactDetailsPhoneItem.js +1 -1
- package/src/sap/ui/mdc/link/Factory.js +2 -2
- package/src/sap/ui/mdc/link/FakeFlpConnector.js +1 -1
- package/src/sap/ui/mdc/link/LinkItem.js +1 -1
- package/src/sap/ui/mdc/link/Log.js +1 -1
- package/src/sap/ui/mdc/link/Panel.js +140 -177
- package/src/sap/ui/mdc/link/PanelItem.js +1 -1
- package/src/sap/ui/mdc/link/PanelListItem.js +1 -1
- package/src/sap/ui/mdc/link/SemanticObjectMapping.js +1 -1
- package/src/sap/ui/mdc/link/SemanticObjectMappingItem.js +1 -1
- package/src/sap/ui/mdc/link/SemanticObjectUnavailableAction.js +1 -1
- package/src/sap/ui/mdc/messagebundle.properties +68 -5
- package/src/sap/ui/mdc/messagebundle_ar.properties +47 -6
- package/src/sap/ui/mdc/messagebundle_bg.properties +61 -20
- package/src/sap/ui/mdc/messagebundle_ca.properties +45 -4
- package/src/sap/ui/mdc/messagebundle_cs.properties +60 -19
- package/src/sap/ui/mdc/messagebundle_cy.properties +45 -4
- package/src/sap/ui/mdc/messagebundle_da.properties +52 -11
- package/src/sap/ui/mdc/messagebundle_de.properties +45 -4
- package/src/sap/ui/mdc/messagebundle_el.properties +46 -5
- package/src/sap/ui/mdc/messagebundle_en.properties +45 -4
- package/src/sap/ui/mdc/messagebundle_en_GB.properties +45 -4
- package/src/sap/ui/mdc/messagebundle_en_US_sappsd.properties +51 -2
- package/src/sap/ui/mdc/messagebundle_en_US_saprigi.properties +45 -4
- package/src/sap/ui/mdc/messagebundle_en_US_saptrc.properties +51 -2
- package/src/sap/ui/mdc/messagebundle_es.properties +46 -5
- package/src/sap/ui/mdc/messagebundle_es_MX.properties +59 -18
- package/src/sap/ui/mdc/messagebundle_et.properties +45 -4
- package/src/sap/ui/mdc/messagebundle_fi.properties +51 -10
- package/src/sap/ui/mdc/messagebundle_fr.properties +50 -9
- package/src/sap/ui/mdc/messagebundle_fr_CA.properties +45 -4
- package/src/sap/ui/mdc/messagebundle_hi.properties +46 -5
- package/src/sap/ui/mdc/messagebundle_hr.properties +45 -4
- package/src/sap/ui/mdc/messagebundle_hu.properties +45 -4
- package/src/sap/ui/mdc/messagebundle_id.properties +45 -4
- package/src/sap/ui/mdc/messagebundle_it.properties +61 -20
- package/src/sap/ui/mdc/messagebundle_iw.properties +46 -5
- package/src/sap/ui/mdc/messagebundle_ja.properties +46 -5
- package/src/sap/ui/mdc/messagebundle_kk.properties +45 -4
- package/src/sap/ui/mdc/messagebundle_ko.properties +46 -5
- package/src/sap/ui/mdc/messagebundle_lt.properties +45 -4
- package/src/sap/ui/mdc/messagebundle_lv.properties +49 -8
- package/src/sap/ui/mdc/messagebundle_ms.properties +45 -4
- package/src/sap/ui/mdc/messagebundle_nl.properties +49 -8
- package/src/sap/ui/mdc/messagebundle_no.properties +53 -12
- package/src/sap/ui/mdc/messagebundle_pl.properties +46 -5
- package/src/sap/ui/mdc/messagebundle_pt.properties +52 -11
- package/src/sap/ui/mdc/messagebundle_pt_PT.properties +45 -4
- package/src/sap/ui/mdc/messagebundle_ro.properties +45 -4
- package/src/sap/ui/mdc/messagebundle_ru.properties +45 -4
- package/src/sap/ui/mdc/messagebundle_sh.properties +45 -4
- package/src/sap/ui/mdc/messagebundle_sk.properties +45 -4
- package/src/sap/ui/mdc/messagebundle_sl.properties +45 -4
- package/src/sap/ui/mdc/messagebundle_sv.properties +47 -6
- package/src/sap/ui/mdc/messagebundle_th.properties +48 -7
- package/src/sap/ui/mdc/messagebundle_tr.properties +45 -4
- package/src/sap/ui/mdc/messagebundle_uk.properties +49 -8
- package/src/sap/ui/mdc/messagebundle_vi.properties +45 -4
- package/src/sap/ui/mdc/messagebundle_zh_CN.properties +46 -5
- package/src/sap/ui/mdc/messagebundle_zh_TW.properties +45 -4
- package/src/sap/ui/mdc/mixin/AdaptationMixin.js +19 -5
- package/src/sap/ui/mdc/mixin/DelegateMixin.js +2 -2
- package/src/sap/ui/mdc/mixin/FilterIntegrationMixin.js +16 -11
- package/src/sap/ui/mdc/mixin/PromiseMixin.js +2 -3
- package/src/sap/ui/mdc/odata/TypeUtil.js +1 -1
- package/src/sap/ui/mdc/odata/v4/ChartDelegate.js +29 -483
- package/src/sap/ui/mdc/odata/v4/{ChartPropertyHelperNew.js → ChartPropertyHelper.js} +5 -5
- package/src/sap/ui/mdc/odata/v4/TableDelegate.js +160 -116
- package/src/sap/ui/mdc/odata/v4/TypeUtil.js +1 -1
- package/src/sap/ui/mdc/odata/v4/ValueHelpDelegate.js +1 -1
- package/src/sap/ui/mdc/odata/v4/util/DelegateUtil.js +1 -1
- package/src/sap/ui/mdc/odata/v4/vizChart/{ChartDelegateNew.js → ChartDelegate.js} +215 -116
- package/src/sap/ui/mdc/p13n/Engine.js +61 -20
- package/src/sap/ui/mdc/p13n/FlexUtil.js +11 -118
- package/src/sap/ui/mdc/p13n/P13nBuilder.js +8 -8
- package/src/sap/ui/mdc/p13n/PersistenceProvider.js +21 -10
- package/src/sap/ui/mdc/p13n/PropertyHelper.js +1 -1
- package/src/sap/ui/mdc/p13n/StateUtil.js +40 -6
- package/src/sap/ui/mdc/p13n/UIManager.js +15 -12
- package/src/sap/ui/mdc/p13n/modification/FlexModificationHandler.js +4 -1
- package/src/sap/ui/mdc/p13n/modification/ModificationHandler.js +9 -6
- package/src/sap/ui/mdc/p13n/{DefaultProviderRegistry.js → modules/DefaultProviderRegistry.js} +2 -2
- package/src/sap/ui/mdc/p13n/modules/StateHandlerRegistry.js +86 -0
- package/src/sap/ui/mdc/p13n/panels/AdaptFiltersPanel.js +19 -3
- package/src/sap/ui/mdc/p13n/panels/ChartItemPanel.js +1092 -48
- package/src/sap/ui/mdc/p13n/panels/LinkSelectionPanel.js +72 -0
- package/src/sap/ui/mdc/p13n/panels/ListView.js +6 -2
- package/src/sap/ui/mdc/p13n/subcontroller/AdaptFiltersController.js +6 -5
- package/src/sap/ui/mdc/p13n/subcontroller/AggregateController.js +1 -1
- package/src/sap/ui/mdc/p13n/subcontroller/BaseController.js +156 -11
- package/src/sap/ui/mdc/p13n/subcontroller/ChartItemController.js +15 -26
- package/src/sap/ui/mdc/p13n/subcontroller/ColumnController.js +6 -5
- package/src/sap/ui/mdc/p13n/subcontroller/FilterController.js +14 -7
- package/src/sap/ui/mdc/p13n/subcontroller/LinkPanelController.js +173 -0
- package/src/sap/ui/mdc/p13n/subcontroller/SortController.js +10 -17
- package/src/sap/ui/mdc/table/Column.js +35 -10
- package/src/sap/ui/mdc/table/CreationRow.js +14 -13
- package/src/sap/ui/mdc/table/GridTableType.js +13 -13
- package/src/sap/ui/mdc/table/PropertyHelper.js +64 -27
- package/src/sap/ui/mdc/table/ResponsiveTableType.js +26 -29
- package/src/sap/ui/mdc/table/RowSettings.js +7 -5
- package/src/sap/ui/mdc/table/TableTypeBase.js +6 -6
- package/src/sap/ui/mdc/table/V4AnalyticsPropertyHelper.js +15 -71
- package/src/sap/ui/mdc/themes/base/Chart.less +3 -0
- package/src/sap/ui/mdc/themes/base/FieldBase.less +0 -5
- package/src/sap/ui/mdc/themes/base/TokenDisplay.less +89 -0
- package/src/sap/ui/mdc/themes/base/TokenizerDisplay.less +90 -0
- package/src/sap/ui/mdc/themes/base/ValueHelpDialog.less +15 -4
- package/src/sap/ui/mdc/themes/base/library.source.less +3 -0
- package/src/sap/ui/mdc/ui/Container.js +2 -2
- package/src/sap/ui/mdc/ui/ContainerItem.js +2 -2
- package/src/sap/ui/mdc/util/Common.js +1 -1
- package/src/sap/ui/mdc/util/DateUtil.js +1 -1
- package/src/sap/ui/mdc/util/FilterUtil.js +1 -1
- package/src/sap/ui/mdc/util/FormatUtil.js +3 -3
- package/src/sap/ui/mdc/util/IdentifierUtil.js +6 -6
- package/src/sap/ui/mdc/util/PromiseCache.js +1 -1
- package/src/sap/ui/mdc/util/PropertyHelper.js +148 -325
- package/src/sap/ui/mdc/util/TypeUtil.js +5 -4
- package/src/sap/ui/mdc/valuehelp/Dialog.js +12 -8
- package/src/sap/ui/mdc/valuehelp/Popover.js +14 -2
- package/src/sap/ui/mdc/valuehelp/base/Container.js +33 -1
- package/src/sap/ui/mdc/valuehelp/base/Content.js +36 -5
- package/src/sap/ui/mdc/valuehelp/base/DialogTab.js +2 -1
- package/src/sap/ui/mdc/valuehelp/base/FilterableListContent.js +43 -15
- package/src/sap/ui/mdc/valuehelp/base/ListContent.js +2 -1
- package/src/sap/ui/mdc/valuehelp/content/Bool.js +2 -1
- package/src/sap/ui/mdc/valuehelp/content/Conditions.js +28 -32
- package/src/sap/ui/mdc/valuehelp/content/FixedList.js +11 -5
- package/src/sap/ui/mdc/valuehelp/content/MDCTable.js +50 -10
- package/src/sap/ui/mdc/valuehelp/content/MTable.js +57 -26
- package/test/sap/ui/mdc/testutils/opa/TestLibrary.js +3 -1
- package/test/sap/ui/mdc/testutils/opa/actions/OpenContextMenu.js +3 -3
- package/test/sap/ui/mdc/testutils/opa/{chartNew → chart}/ActionsBase.js +3 -3
- package/test/sap/ui/mdc/testutils/opa/{chartNew → chart}/ActionsViz.js +0 -0
- package/test/sap/ui/mdc/testutils/opa/{chartNew → chart}/AssertionsBase.js +1 -1
- package/test/sap/ui/mdc/testutils/opa/{chartNew → chart}/AssertionsViz.js +0 -0
- package/test/sap/ui/mdc/testutils/opa/{chartNew → chart}/ChartNew.js +0 -0
- package/test/sap/ui/mdc/testutils/opa/chart/TestObjects.js +289 -0
- package/test/sap/ui/mdc/testutils/opa/chartNew/TestObjects.js +7 -7
- package/test/sap/ui/mdc/testutils/opa/filterbar/TestObjects.js +9 -9
- package/test/sap/ui/mdc/testutils/opa/filterbar/Util.js +12 -11
- package/test/sap/ui/mdc/testutils/opa/link/Actions.js +85 -0
- package/test/sap/ui/mdc/testutils/opa/link/Assertions.js +79 -0
- package/test/sap/ui/mdc/testutils/opa/link/TestObjects.js +112 -0
- package/test/sap/ui/mdc/testutils/opa/link/waitForLink.js +50 -0
- package/test/sap/ui/mdc/testutils/opa/p13n/Actions.js +362 -233
- package/test/sap/ui/mdc/testutils/opa/p13n/Util.js +27 -26
- package/test/sap/ui/mdc/testutils/opa/valueHelp/Actions.js +54 -0
- package/test/sap/ui/mdc/testutils/opa/valueHelp/Assertions.js +5 -0
- package/test/sap/ui/mdc/testutils/opa/valueHelp/TestObjects.js +40 -0
- package/test/sap/ui/mdc/testutils/opa/valueHelp/Util.js +28 -0
- package/src/sap/ui/mdc/ChartDelegateNew.js +0 -395
- package/src/sap/ui/mdc/ChartNew.js +0 -1114
- package/src/sap/ui/mdc/ChartNewRenderer.js +0 -91
- package/src/sap/ui/mdc/chart/DimensionItem.js +0 -281
- package/src/sap/ui/mdc/chart/MeasureItem.js +0 -318
- package/src/sap/ui/mdc/chart/MetadataDelegate.js +0 -31
- package/src/sap/ui/mdc/chart/SelectionHandler.js +0 -127
- package/src/sap/ui/mdc/chart/ToolbarHandler.js +0 -328
- package/src/sap/ui/mdc/chartNew/ChartTypeButtonNew.js +0 -295
- package/src/sap/ui/mdc/chartNew/DrillStackHandlerNew.js +0 -212
- package/src/sap/ui/mdc/chartNew/ItemNew.js +0 -72
- package/src/sap/ui/mdc/chartNew/SelectionDetailsActionsNew.js +0 -34
- package/src/sap/ui/mdc/designtime/chart/ChartNew.designtime.js +0 -91
- package/src/sap/ui/mdc/link/SelectionDialog.control.xml +0 -66
- package/src/sap/ui/mdc/link/SelectionDialog.js +0 -213
- package/src/sap/ui/mdc/link/SelectionDialogItem.js +0 -86
- package/src/sap/ui/mdc/odata/v4/ChartDelegateNew.js +0 -35
- package/src/sap/ui/mdc/p13n/panels/ChartItemPanelNew.js +0 -1171
- package/src/sap/ui/mdc/p13n/panels/GroupPanel.js +0 -111
- package/src/sap/ui/mdc/p13n/panels/QueryPanel.js +0 -322
- package/src/sap/ui/mdc/p13n/panels/SortQueryPanel.js +0 -133
- package/src/sap/ui/mdc/p13n/panels/Wrapper.js +0 -203
|
@@ -6,25 +6,15 @@
|
|
|
6
6
|
|
|
7
7
|
sap.ui.define([
|
|
8
8
|
'sap/ui/core/XMLComposite',
|
|
9
|
-
'sap/ui/mdc/library',
|
|
10
|
-
'sap/m/HBox',
|
|
11
|
-
'sap/m/VBox',
|
|
12
|
-
'sap/m/Text',
|
|
13
|
-
'sap/m/Image',
|
|
14
|
-
'sap/m/Link',
|
|
15
|
-
'sap/ui/core/CustomData',
|
|
16
9
|
'sap/base/Log',
|
|
17
|
-
'sap/m/SelectDialog',
|
|
18
|
-
'sap/m/StandardListItem',
|
|
19
|
-
'sap/ui/mdc/link/SelectionDialog',
|
|
20
|
-
'sap/ui/mdc/link/SelectionDialogItem',
|
|
21
10
|
'sap/ui/model/json/JSONModel',
|
|
22
11
|
'sap/ui/model/BindingMode',
|
|
23
12
|
'sap/ui/base/ManagedObjectObserver',
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
"sap/ui/
|
|
27
|
-
|
|
13
|
+
"sap/ui/mdc/p13n/subcontroller/LinkPanelController",
|
|
14
|
+
"sap/ui/mdc/p13n/Engine",
|
|
15
|
+
"sap/ui/mdc/mixin/AdaptationMixin",
|
|
16
|
+
"sap/ui/mdc/link/PanelItem"
|
|
17
|
+
], function(XMLComposite, Log, JSONModel, BindingMode, ManagedObjectObserver, LinkPanelController, Engine, AdaptationMixin, PanelItem) {
|
|
28
18
|
"use strict";
|
|
29
19
|
|
|
30
20
|
/**
|
|
@@ -36,7 +26,7 @@ sap.ui.define([
|
|
|
36
26
|
* supposed that the properties of the item structure is not changed.
|
|
37
27
|
* @extends sap.ui.core.XMLComposite
|
|
38
28
|
* @author SAP SE
|
|
39
|
-
* @version 1.
|
|
29
|
+
* @version 1.99.0
|
|
40
30
|
* @constructor
|
|
41
31
|
* @private
|
|
42
32
|
* @since 1.54.0
|
|
@@ -109,6 +99,23 @@ sap.ui.define([
|
|
|
109
99
|
});
|
|
110
100
|
Panel.prototype.init = function() {
|
|
111
101
|
XMLComposite.prototype.init.call(this);
|
|
102
|
+
|
|
103
|
+
Engine.getInstance().registerAdaptation(this, {
|
|
104
|
+
controller: {
|
|
105
|
+
LinkItems: LinkPanelController
|
|
106
|
+
}
|
|
107
|
+
});
|
|
108
|
+
|
|
109
|
+
AdaptationMixin.call(Panel.prototype);
|
|
110
|
+
|
|
111
|
+
Engine.getInstance().defaultProviderRegistry.attach(this, "Global");
|
|
112
|
+
|
|
113
|
+
sap.ui.require([
|
|
114
|
+
this.getMetadataHelperPath() || "sap/ui/mdc/Link"
|
|
115
|
+
], function(MetadataHelper) {
|
|
116
|
+
this._oMetadataHelper = MetadataHelper;
|
|
117
|
+
}.bind(this));
|
|
118
|
+
|
|
112
119
|
var oModel = new JSONModel({
|
|
113
120
|
// disjunct sets
|
|
114
121
|
countAdditionalContent: 0,
|
|
@@ -148,6 +155,9 @@ sap.ui.define([
|
|
|
148
155
|
this._oObserver.disconnect();
|
|
149
156
|
this._oObserver = null;
|
|
150
157
|
}
|
|
158
|
+
if (this._oMetadataHelper) {
|
|
159
|
+
this._oMetadataHelper = null;
|
|
160
|
+
}
|
|
151
161
|
};
|
|
152
162
|
|
|
153
163
|
Panel.prototype.onPressLink = function(oEvent) {
|
|
@@ -156,169 +166,85 @@ sap.ui.define([
|
|
|
156
166
|
oEvent.preventDefault();
|
|
157
167
|
this.getBeforeNavigationCallback()(oEvent).then(function(bNavigate) {
|
|
158
168
|
if (bNavigate) {
|
|
159
|
-
|
|
169
|
+
Panel.navigate(sHref);
|
|
160
170
|
}
|
|
161
171
|
});
|
|
162
172
|
}
|
|
163
173
|
};
|
|
164
174
|
|
|
165
|
-
Panel.
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
// If the condition, that a control is assigned to a AppComponent is not fulfilled, we can go ahead
|
|
178
|
-
if (!FlexRuntimeInfoAPI.isFlexSupported({element: this})) {
|
|
179
|
-
Log.error("No AppComponent fount for control " + this + ". Without AppComponent the personalization is not available.");
|
|
180
|
-
return Promise.resolve();
|
|
181
|
-
}
|
|
182
|
-
// Otherwise we wait until the changes are applied
|
|
183
|
-
return FlexRuntimeInfoAPI.waitForChanges({element: this}).then(function() {
|
|
184
|
-
|
|
185
|
-
return new Promise(function(resolve) {
|
|
186
|
-
var aAllLinkItems = MetadataHelper.retrieveAllMetadata(this);
|
|
187
|
-
|
|
188
|
-
var bShowDefaultIcon = aAllLinkItems.some(function(oMItem) {
|
|
189
|
-
return !!oMItem.icon;
|
|
190
|
-
});
|
|
191
|
-
var aMRuntimeItems = jQuery.extend(true, [], this._getInternalModel().getProperty("/runtimeItems"));
|
|
192
|
-
|
|
193
|
-
var aMBaselineItems = MetadataHelper.retrieveBaseline(this);
|
|
194
|
-
// TODO: add KEYUSER changed items
|
|
195
|
-
var aMBaselineItemsTotal = aMBaselineItems;
|
|
196
|
-
this._getInternalModel().setProperty("/baselineItems", aMBaselineItemsTotal);
|
|
197
|
-
|
|
198
|
-
var fnCleanUp = function(oSelectionDialog) {
|
|
199
|
-
oSelectionDialog.close();
|
|
200
|
-
oSelectionDialog.destroy();
|
|
201
|
-
this.fireAfterSelectionDialogClose();
|
|
202
|
-
}.bind(this);
|
|
203
|
-
var aRuntimeChanges = [];
|
|
204
|
-
var fnAddRuntimeChange = function(sId, bVisible) {
|
|
205
|
-
aRuntimeChanges.push({
|
|
206
|
-
id: sId,
|
|
207
|
-
visible: bVisible
|
|
208
|
-
});
|
|
209
|
-
};
|
|
210
|
-
|
|
211
|
-
var fnUpdateResetButton = function(oSelectionDialog) {
|
|
212
|
-
var bShowResetEnabled = Panel._showResetButtonEnabled(aMBaselineItemsTotal, oSelectionDialog.getItems());
|
|
213
|
-
this._getInternalModel().setProperty("/showResetEnabled", bShowResetEnabled);
|
|
214
|
-
};
|
|
215
|
-
|
|
216
|
-
this.fireBeforeSelectionDialogOpen();
|
|
217
|
-
|
|
218
|
-
var bUnconfirmedResetPressed = false;
|
|
219
|
-
|
|
220
|
-
var oSelectionDialog = new SelectionDialog({
|
|
221
|
-
showItemAsLink: !bForbidNavigation,
|
|
222
|
-
showReset: bShowReset,
|
|
223
|
-
showResetEnabled: {
|
|
224
|
-
path: '$selectionDialog>/showResetEnabled'
|
|
225
|
-
},
|
|
226
|
-
items: aAllLinkItems.map(function(oMItem) {
|
|
227
|
-
// Overwrite metadata with the current values
|
|
228
|
-
var oMItemRuntime = Panel._getItemById(oMItem.id, aMRuntimeItems);
|
|
229
|
-
var bIsBaseline = this._isItemBaseline(oMItem);
|
|
230
|
-
var sIcon = oMItem.icon;
|
|
231
|
-
if (bShowDefaultIcon && !sIcon) {
|
|
232
|
-
sIcon = "sap-icon://chain-link";
|
|
233
|
-
}
|
|
234
|
-
return new SelectionDialogItem({
|
|
235
|
-
key: oMItem.id, // convert id to key
|
|
236
|
-
text: oMItem.text,
|
|
237
|
-
description: oMItem.description,
|
|
238
|
-
href: oMItem.href,
|
|
239
|
-
target: oMItem.target,
|
|
240
|
-
icon: sIcon,
|
|
241
|
-
visible: oMItemRuntime ? oMItemRuntime.visible : false,
|
|
242
|
-
isBaseline: bIsBaseline
|
|
243
|
-
});
|
|
244
|
-
}.bind(this)),
|
|
245
|
-
visibilityChanged: function(oEvent) {
|
|
246
|
-
// convert key to id
|
|
247
|
-
var sId = oEvent.getParameter("key");
|
|
248
|
-
fnAddRuntimeChange(sId, oEvent.getParameter("visible"));
|
|
249
|
-
fnUpdateResetButton.call(this, oEvent.getSource());
|
|
250
|
-
}.bind(this),
|
|
251
|
-
ok: function() {
|
|
252
|
-
var that = this;
|
|
253
|
-
var fnCreateChanges = function() {
|
|
254
|
-
var aPanelChanges = PanelFlexibility.createChanges(that, aRuntimeChanges);
|
|
255
|
-
var aFlexChangesTotal = [];
|
|
256
|
-
ControlPersonalizationWriteAPI.add({
|
|
257
|
-
changes: aPanelChanges,
|
|
258
|
-
ignoreVariantManagement: true
|
|
259
|
-
}).then(function(aFlexChanges) {
|
|
260
|
-
aFlexChangesTotal = aFlexChangesTotal.concat(aFlexChanges);
|
|
261
|
-
// Then use the new item instance as selector control
|
|
262
|
-
var aPanelItemChanges = PanelItemFlexibility.createChanges(aRuntimeChanges);
|
|
263
|
-
return ControlPersonalizationWriteAPI.add({
|
|
264
|
-
changes: aPanelItemChanges,
|
|
265
|
-
ignoreVariantManagement: true
|
|
266
|
-
});
|
|
267
|
-
}).then(function(aFlexChanges) {
|
|
268
|
-
aFlexChangesTotal = aFlexChangesTotal.concat(aFlexChanges);
|
|
269
|
-
return ControlPersonalizationWriteAPI.save({
|
|
270
|
-
selector: that,
|
|
271
|
-
changes: aFlexChangesTotal
|
|
272
|
-
});
|
|
273
|
-
}).then(function() {
|
|
274
|
-
fnCleanUp(oSelectionDialog);
|
|
275
|
-
return resolve(true);
|
|
276
|
-
});
|
|
277
|
-
};
|
|
278
|
-
|
|
279
|
-
if (bUnconfirmedResetPressed) {
|
|
280
|
-
ControlPersonalizationWriteAPI.reset({selectors: this.getItems()}).then(function() {
|
|
281
|
-
fnCreateChanges();
|
|
282
|
-
});
|
|
283
|
-
} else {
|
|
284
|
-
fnCreateChanges();
|
|
285
|
-
}
|
|
286
|
-
}.bind(this),
|
|
287
|
-
cancel: function() {
|
|
288
|
-
fnCleanUp(oSelectionDialog);
|
|
289
|
-
return resolve(true);
|
|
290
|
-
},
|
|
291
|
-
reset: function() {
|
|
292
|
-
aRuntimeChanges = [];
|
|
293
|
-
bUnconfirmedResetPressed = true;
|
|
294
|
-
}
|
|
295
|
-
});
|
|
296
|
-
if (sStyleClass) {
|
|
297
|
-
oSelectionDialog.addStyleClass(sStyleClass);
|
|
175
|
+
Panel.oNavigationPromise = undefined;
|
|
176
|
+
|
|
177
|
+
Panel.navigate = function(sHref) {
|
|
178
|
+
if (sHref.indexOf("#") === 0 && sap.ushell && sap.ushell.Container && sap.ushell.Container.getServiceAsync) {
|
|
179
|
+
// if we are inside a FLP -> navigate with CrossApplicationNavigation
|
|
180
|
+
if (!Panel.oNavigationPromise) {
|
|
181
|
+
Panel.oNavigationPromise = sap.ushell.Container.getServiceAsync("CrossApplicationNavigation").then(function (oCrossApplicationNavigation) {
|
|
182
|
+
oCrossApplicationNavigation.toExternal({
|
|
183
|
+
target: {
|
|
184
|
+
// navigate to href without #
|
|
185
|
+
shellHash: sHref.substring(1)
|
|
298
186
|
}
|
|
299
|
-
|
|
187
|
+
});
|
|
188
|
+
Panel.oNavigationPromise = undefined;
|
|
189
|
+
});
|
|
190
|
+
}
|
|
191
|
+
} else {
|
|
192
|
+
// if we are not inside a FLP -> navigate "normally"
|
|
193
|
+
window.location.href = sHref;
|
|
194
|
+
}
|
|
195
|
+
};
|
|
300
196
|
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
197
|
+
Panel.prototype.onPressLinkPersonalization = function() {
|
|
198
|
+
sap.ui.require([this.getMetadataHelperPath() || "sap/ui/mdc/Link"], function(MetadataHelper) {
|
|
199
|
+
var oModel = this._getInternalModel();
|
|
200
|
+
var aMBaselineItems = MetadataHelper.retrieveBaseline(this);
|
|
201
|
+
var aMBaselineItemsTotal = aMBaselineItems;
|
|
202
|
+
var fnUpdateResetButton = function(oSelectionPanel) {
|
|
203
|
+
var aSelectedItems = oSelectionPanel._oListControl.getItems().filter(function(oItem) {
|
|
204
|
+
return oItem.getSelected();
|
|
205
|
+
});
|
|
206
|
+
aSelectedItems = aSelectedItems.map(function(oSelectedItem) {
|
|
207
|
+
var oItem = oSelectionPanel._getP13nModel().getProperty(oSelectedItem.getBindingContext(oSelectionPanel.P13N_MODEL).sPath);
|
|
208
|
+
return {
|
|
209
|
+
id: oItem.name,
|
|
210
|
+
description: oItem.description,
|
|
211
|
+
href: oItem.href,
|
|
212
|
+
target: oItem.target,
|
|
213
|
+
text: oItem.text,
|
|
214
|
+
visible: oItem.visible
|
|
215
|
+
};
|
|
216
|
+
});
|
|
217
|
+
var bShowResetEnabled = Panel._showResetButtonEnabled(aMBaselineItemsTotal, aSelectedItems);
|
|
218
|
+
this._getInternalModel().setProperty("/showResetEnabled", bShowResetEnabled);
|
|
219
|
+
};
|
|
305
220
|
|
|
306
|
-
|
|
307
|
-
|
|
221
|
+
var oPopover = this.getParent();
|
|
222
|
+
oPopover.setModal(true);
|
|
223
|
+
Engine.getInstance().uimanager.show(this, "LinkItems").then(function(oDialog) {
|
|
224
|
+
var oResetButton = oDialog.getCustomHeader().getContentRight()[0];
|
|
225
|
+
var oSelectionPanel = oDialog.getContent()[0];
|
|
226
|
+
oResetButton.setModel(oModel, "$sapuimdclinkPanel");
|
|
227
|
+
oResetButton.bindProperty("enabled", {
|
|
228
|
+
path: '$sapuimdclinkPanel>/showResetEnabled'
|
|
229
|
+
});
|
|
230
|
+
fnUpdateResetButton.call(this, oSelectionPanel);
|
|
231
|
+
oSelectionPanel.attachChange(function(oEvent) {
|
|
232
|
+
fnUpdateResetButton.call(this, oSelectionPanel);
|
|
308
233
|
}.bind(this));
|
|
309
|
-
|
|
234
|
+
oDialog.attachAfterClose(function(){
|
|
235
|
+
oPopover.setModal(false);
|
|
236
|
+
});
|
|
310
237
|
}.bind(this));
|
|
311
238
|
}.bind(this));
|
|
312
239
|
};
|
|
313
240
|
|
|
314
|
-
Panel._showResetButtonEnabled = function(aMBaseLineItems,
|
|
241
|
+
Panel._showResetButtonEnabled = function(aMBaseLineItems, aSelectedItems) {
|
|
315
242
|
var bShowResetButtonEnabled = false;
|
|
316
|
-
var aMRuntimeItems = Panel._mapSelectionDialogItems(aSelectionDialogItems);
|
|
317
243
|
|
|
318
|
-
var aMVisibleRuntimeItems = Panel._getVisibleItems(
|
|
244
|
+
var aMVisibleRuntimeItems = Panel._getVisibleItems(aSelectedItems);
|
|
319
245
|
var aMVisibleBaseLineItems = Panel._getVisibleItems(aMBaseLineItems);
|
|
320
246
|
|
|
321
|
-
if (
|
|
247
|
+
if (aSelectedItems.length !== aMBaseLineItems.length) {
|
|
322
248
|
bShowResetButtonEnabled = true;
|
|
323
249
|
} else if (aMVisibleBaseLineItems.length && aMVisibleRuntimeItems.length) {
|
|
324
250
|
var bAllVisibleBaselineItemsIncludedInVisibleRuntimeItems = Panel._allItemsIncludedInArray(aMVisibleBaseLineItems, aMVisibleRuntimeItems);
|
|
@@ -356,20 +282,6 @@ sap.ui.define([
|
|
|
356
282
|
});
|
|
357
283
|
};
|
|
358
284
|
|
|
359
|
-
Panel._mapSelectionDialogItems = function(aSelectionDialogItems) {
|
|
360
|
-
return aSelectionDialogItems.map(function(oSelectionDialogItem) {
|
|
361
|
-
return {
|
|
362
|
-
id: oSelectionDialogItem.getKey(),
|
|
363
|
-
visible: oSelectionDialogItem.getVisible()
|
|
364
|
-
};
|
|
365
|
-
});
|
|
366
|
-
};
|
|
367
|
-
|
|
368
|
-
Panel.prototype._isItemBaseline = function(oItem) {
|
|
369
|
-
var aBaselineItems = this._getInternalModel().getProperty("/baselineItems");
|
|
370
|
-
return !!Panel._getItemsById(oItem.id, aBaselineItems).length;
|
|
371
|
-
};
|
|
372
|
-
|
|
373
285
|
Panel.prototype._getInternalModel = function() {
|
|
374
286
|
return this.getModel("$sapuimdclinkPanel");
|
|
375
287
|
};
|
|
@@ -427,13 +339,17 @@ sap.ui.define([
|
|
|
427
339
|
oModel.setProperty("/countItemsWithIcon", oPanelItem.getIcon() ? oModel.getProperty("/countItemsWithIcon") - 1 : oModel.getProperty("/countItemsWithIcon"));
|
|
428
340
|
oModel.setProperty("/countItemsWithoutIcon", oPanelItem.getIcon() ? oModel.getProperty("/countItemsWithoutIcon") : oModel.getProperty("/countItemsWithoutIcon") - 1);
|
|
429
341
|
|
|
430
|
-
aRuntimeItems.
|
|
342
|
+
var oRuntimeItem = aRuntimeItems.find(function(oItem) {
|
|
343
|
+
return oItem.id === oPanelItem.getId();
|
|
344
|
+
});
|
|
345
|
+
aRuntimeItems.splice(aRuntimeItems.indexOf(oRuntimeItem), 1);
|
|
431
346
|
oModel.setProperty("/runtimeItems", aRuntimeItems);
|
|
432
347
|
|
|
433
348
|
this._propagateDefaultIcon(oModel.getProperty("/countItemsWithIcon") > 0 && oModel.getProperty("/countItemsWithoutIcon") > 0);
|
|
434
349
|
|
|
435
350
|
this._oObserver.unobserve(oPanelItem);
|
|
436
351
|
oPanelItem.destroy();
|
|
352
|
+
this.invalidate(); // TODO: Check why this is needed to update the items on the panel
|
|
437
353
|
break;
|
|
438
354
|
default:
|
|
439
355
|
Log.error("Mutation '" + oChanges.mutation + "' is not supported yet.");
|
|
@@ -471,6 +387,53 @@ sap.ui.define([
|
|
|
471
387
|
return oModel.getProperty("/contentTitle");
|
|
472
388
|
};
|
|
473
389
|
|
|
390
|
+
Panel.prototype.getCurrentState = function() {
|
|
391
|
+
var aItems = [], sId;
|
|
392
|
+
|
|
393
|
+
this.getItems().forEach(function(oItem, iIndex) {
|
|
394
|
+
sId = oItem && oItem.getId();
|
|
395
|
+
if (oItem.getVisible()) {
|
|
396
|
+
aItems.push({
|
|
397
|
+
name: sId
|
|
398
|
+
});
|
|
399
|
+
}
|
|
400
|
+
});
|
|
401
|
+
|
|
402
|
+
return {
|
|
403
|
+
items: aItems
|
|
404
|
+
};
|
|
405
|
+
};
|
|
406
|
+
|
|
407
|
+
Panel.prototype.initPropertyHelper = function() {
|
|
408
|
+
|
|
409
|
+
var aAllLinkItems = this._oMetadataHelper.retrieveAllMetadata(this);
|
|
410
|
+
|
|
411
|
+
return Promise.resolve({
|
|
412
|
+
getProperties: function() {
|
|
413
|
+
|
|
414
|
+
var aItems = [];
|
|
415
|
+
aAllLinkItems.forEach(function(oItem){
|
|
416
|
+
aItems.push({
|
|
417
|
+
name: oItem.id,
|
|
418
|
+
getName: function() {
|
|
419
|
+
return oItem.id;
|
|
420
|
+
},
|
|
421
|
+
getLabel: function() {
|
|
422
|
+
return oItem.text;
|
|
423
|
+
},
|
|
424
|
+
text: oItem.text,
|
|
425
|
+
href: oItem.href,
|
|
426
|
+
description: oItem.description,
|
|
427
|
+
target: oItem.target,
|
|
428
|
+
visible: oItem.visible
|
|
429
|
+
});
|
|
430
|
+
});
|
|
431
|
+
|
|
432
|
+
return aItems;
|
|
433
|
+
}
|
|
434
|
+
});
|
|
435
|
+
};
|
|
436
|
+
|
|
474
437
|
Panel.prototype._updateContentTitle = function() {
|
|
475
438
|
var oModel = this._getInternalModel();
|
|
476
439
|
var aAdditionalContent = this.getAdditionalContent();
|
|
@@ -16,7 +16,7 @@ sap.ui.define([
|
|
|
16
16
|
* @param {object} [mSettings] initial settings for the new control
|
|
17
17
|
* @class Type for <code>items</code> aggregation in <code>Panel</code> control.
|
|
18
18
|
* @extends sap.ui.core.Element
|
|
19
|
-
* @version 1.
|
|
19
|
+
* @version 1.99.0
|
|
20
20
|
* @constructor
|
|
21
21
|
* @private
|
|
22
22
|
* @since 1.54.0
|
|
@@ -16,7 +16,7 @@ sap.ui.define([
|
|
|
16
16
|
* @param {object} [mSettings] initial settings for the new control
|
|
17
17
|
* @class Type for <code>items</code> aggregation in <code>Panel</code> control.
|
|
18
18
|
* @extends sap.ui.core.XMLComposite
|
|
19
|
-
* @version 1.
|
|
19
|
+
* @version 1.99.0
|
|
20
20
|
* @constructor
|
|
21
21
|
* @private
|
|
22
22
|
* @since 1.54.0
|
|
@@ -176,12 +176,54 @@ operators.NEXTYEARS.tokenText=Next {0} years
|
|
|
176
176
|
#XTIT: token long text for "year to date" operator
|
|
177
177
|
operators.YEARTODATE.longText=Year to date
|
|
178
178
|
|
|
179
|
+
#XTIT: token long text for "date to year" operator
|
|
180
|
+
operators.DATETOYEAR.longText=Date to year
|
|
181
|
+
|
|
182
|
+
#XTIT: token long text for "first day of this week" operator
|
|
183
|
+
operators.FIRSTDAYWEEK.longText=First Date in This Week
|
|
184
|
+
|
|
185
|
+
#XTIT: token long text for "last day of this week" operator
|
|
186
|
+
operators.LASTDAYWEEK.longText=Last Date in This Week
|
|
187
|
+
|
|
188
|
+
#XTIT: token long text for "first day of this month" operator
|
|
189
|
+
operators.FIRSTDAYMONTH.longText=First Date in This Month
|
|
190
|
+
|
|
191
|
+
#XTIT: token long text for "last day of this month" operator
|
|
192
|
+
operators.LASTDAYMONTH.longText=Last Date in This Month
|
|
193
|
+
|
|
194
|
+
#XTIT: token long text for "first day of this quarter" operator
|
|
195
|
+
operators.FIRSTDAYQUARTER.longText=First Date in This Quarter
|
|
196
|
+
|
|
197
|
+
#XTIT: token long text for "last day of this quarter" operator
|
|
198
|
+
operators.LASTDAYQUARTER.longText=Last Date in This Quarter
|
|
199
|
+
|
|
200
|
+
#XTIT: token long text for "first day of this year" operator
|
|
201
|
+
operators.FIRSTDAYYEAR.longText=First Date in This Year
|
|
202
|
+
|
|
203
|
+
#XTIT: token long text for "last day of this year" operator
|
|
204
|
+
operators.LASTDAYYEAR.longText=Last Date in This Year
|
|
205
|
+
|
|
179
206
|
#XTIT: token text for "specificMonth" operator
|
|
180
207
|
operators.SPECIFICMONTH.tokenText=Month ({0})
|
|
181
208
|
|
|
209
|
+
#XTXT: label/placeholder text for "specificMonth" operator Month field
|
|
210
|
+
operators.SPECIFICMONTH_MONTH.label=Month
|
|
211
|
+
|
|
182
212
|
#XTIT: token long text for "specificMonth" operator
|
|
183
213
|
operators.SPECIFICMONTH.longText=Month
|
|
184
214
|
|
|
215
|
+
#XTIT: token text for "specificMonthInYear" operator
|
|
216
|
+
operators.SPECIFICMONTHINYEAR.tokenText=Month in Year ({0},{1})
|
|
217
|
+
|
|
218
|
+
#XTXT: label/placeholder text for "specificMonthInYear" operator Month field
|
|
219
|
+
operators.SPECIFICMONTHINYEAR_MONTH.label=Month
|
|
220
|
+
|
|
221
|
+
#XTXT: label/placeholder text for "specificMonthInYear" operator Year field
|
|
222
|
+
operators.SPECIFICMONTHINYEAR_YEAR.label=Year
|
|
223
|
+
|
|
224
|
+
#XTIT: token long text for "specificMonthInYear" operator
|
|
225
|
+
operators.SPECIFICMONTHINYEAR.longText=Month in Year
|
|
226
|
+
|
|
185
227
|
#XTXT: between operator validation exception
|
|
186
228
|
operator.between.validate.missingValue=Between must have two values
|
|
187
229
|
|
|
@@ -292,6 +334,15 @@ field.NO_VALUE=No value
|
|
|
292
334
|
#XTXT: Denotes the separator between texts in the display mode. By default, the unicode character (.) is set as the separator.
|
|
293
335
|
field.SEPARATOR=\u00a0\u00b7\u00a0
|
|
294
336
|
|
|
337
|
+
#XACT: Label for number field
|
|
338
|
+
field.NUMBER=Number
|
|
339
|
+
|
|
340
|
+
#XACT: Label for uni field
|
|
341
|
+
field.UNIT=Unit
|
|
342
|
+
|
|
343
|
+
#XACT: Label for currency field
|
|
344
|
+
field.CURRENCY=Currency
|
|
345
|
+
|
|
295
346
|
#XTIT: valuehelp dialog Title template with two parts. When only one content exist on the valuehelp dialog the content ShortTitle {0} will be displayed together with the title of the dialog {1} e.g. "Select: Customer"
|
|
296
347
|
valuehelp.DIALOGSHORTTITLECOLONTITLE={0}: {1}
|
|
297
348
|
|
|
@@ -310,9 +361,15 @@ valuehelp.RESET=Reset
|
|
|
310
361
|
#XTOL, 48: Tooltip for Remove condition in Define Conditions
|
|
311
362
|
valuehelp.DEFINECONDITIONS_REMOVECONDITION=Remove Condition
|
|
312
363
|
|
|
364
|
+
#XTOL, 48: Screenreader annouce text for Remove condition in Define Conditions
|
|
365
|
+
valuehelp.DEFINECONDITIONS_REMOVECONDITION_ANNOUNCE=Condition removed
|
|
366
|
+
|
|
313
367
|
#XBUT, 48: Button for Add condition in Define Conditions
|
|
314
368
|
valuehelp.DEFINECONDITIONS_ADDCONDITION=Add
|
|
315
369
|
|
|
370
|
+
#XBUT, 48: desciption for Add condition in Define Conditions
|
|
371
|
+
valuehelp.DEFINECONDITIONS_ADDCONDITION_DESCRIPTION=Add Condition
|
|
372
|
+
|
|
316
373
|
#XTIT: invisible field label for operators field on define conditions
|
|
317
374
|
valuehelp.DEFINECONDITIONS_OPERATORLABEL=Operator
|
|
318
375
|
|
|
@@ -383,7 +440,7 @@ filterbar.GoBtnShortCutHint=Enter
|
|
|
383
440
|
valuehelp.SHOWALLFILTERS=Show All Filters
|
|
384
441
|
|
|
385
442
|
#XTOL: remove all token button tooltip
|
|
386
|
-
valuehelp.REMOVEALLTOKEN=Remove
|
|
443
|
+
valuehelp.REMOVEALLTOKEN=Remove All
|
|
387
444
|
|
|
388
445
|
#XFLD:
|
|
389
446
|
info.POPOVER_FACTSHEET=Display Fact Sheet
|
|
@@ -423,6 +480,10 @@ info.SELECTION_DIALOG_ALIGNEDTITLE=Define Link List
|
|
|
423
480
|
info.SELECTION_DIALOG_COLUMNHEADER=Select All ({0}/{1})
|
|
424
481
|
#XTIT: info toolbar for selected links
|
|
425
482
|
info.SELECTION_DIALOG_INFO_TOOLBAR=Selected Links:
|
|
483
|
+
#XLST: SelectionDialog Select All label
|
|
484
|
+
info.SELECTION_DIALOG_COLUMNHEADER_WITHOUT_COUNT=Select All
|
|
485
|
+
#YMSG, 90
|
|
486
|
+
info.SELECTION_DIALOG_RESET_WARNING=You are about to reset all the changes you made to the links.
|
|
426
487
|
|
|
427
488
|
#XTIT: Title for p13n popups
|
|
428
489
|
p13nDialog.VIEW_SETTINGS=View Settings
|
|
@@ -576,10 +637,12 @@ chart.NO_RESULTS=No data found. Try adjusting the filter settings.
|
|
|
576
637
|
chart.PERSONALIZATION_DIALOG_MEASURE_GROUP_HEADER=Measures
|
|
577
638
|
# XTXT: Name for "Dimension" group of Chart personalization
|
|
578
639
|
chart.PERSONALIZATION_DIALOG_DIMENSION_GROUP_HEADER=Dimensions
|
|
579
|
-
#XTXT:
|
|
580
|
-
chart.
|
|
581
|
-
#XTXT:
|
|
582
|
-
chart.
|
|
640
|
+
#XTXT: Placeholder for empty combobox of templating row
|
|
641
|
+
chart.PERSONALIZATION_DIALOG_TEMPLATE_PLACEHOLDER=Select
|
|
642
|
+
#XTXT: Warning when selected chart type can show only one measure
|
|
643
|
+
chart.PERSONALIZATION_DIALOG_MEASURE_WARNING=The selected chart type can show only one measure at a time. Only the measure on top of the list will be shown.
|
|
644
|
+
#XTXT: Tooltip for removing an entry from the p13n table
|
|
645
|
+
chart.PERSONALIZATION_DIALOG_REMOVE_ENTRY=Remove
|
|
583
646
|
|
|
584
647
|
|
|
585
648
|
# XTOL: Tooltip & text of the add/remove column settings dialog
|