@openui5/sap.ui.documentation 1.119.0 → 1.120.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/THIRDPARTY.txt +6 -6
- package/package.json +7 -7
- package/src/sap/ui/documentation/.library +1 -1
- package/src/sap/ui/documentation/library.js +2 -2
- package/src/sap/ui/documentation/messagebundle_da.properties +1 -1
- package/src/sap/ui/documentation/messagebundle_el.properties +1 -1
- package/src/sap/ui/documentation/messagebundle_en.properties +3 -3
- package/src/sap/ui/documentation/messagebundle_en_GB.properties +2 -2
- package/src/sap/ui/documentation/messagebundle_es.properties +1 -1
- package/src/sap/ui/documentation/messagebundle_et.properties +1 -1
- package/src/sap/ui/documentation/messagebundle_fi.properties +1 -1
- package/src/sap/ui/documentation/messagebundle_fr.properties +2 -2
- package/src/sap/ui/documentation/messagebundle_hi.properties +1 -1
- package/src/sap/ui/documentation/messagebundle_hr.properties +2 -2
- package/src/sap/ui/documentation/messagebundle_hu.properties +1 -1
- package/src/sap/ui/documentation/messagebundle_id.properties +1 -1
- package/src/sap/ui/documentation/messagebundle_ko.properties +1 -1
- package/src/sap/ui/documentation/messagebundle_lt.properties +1 -1
- package/src/sap/ui/documentation/messagebundle_mk.properties +427 -0
- package/src/sap/ui/documentation/messagebundle_ms.properties +1 -1
- package/src/sap/ui/documentation/messagebundle_pt.properties +1 -1
- package/src/sap/ui/documentation/messagebundle_sh.properties +52 -52
- package/src/sap/ui/documentation/messagebundle_th.properties +1 -1
- package/src/sap/ui/documentation/messagebundle_vi.properties +1 -1
- package/src/sap/ui/documentation/sdk/controller/App.controller.js +1 -48
- package/src/sap/ui/documentation/sdk/controller/Code.controller.js +4 -1
- package/src/sap/ui/documentation/sdk/controller/util/EntityInfo.js +20 -18
- package/src/sap/ui/documentation/sdk/controller/util/ThemePicker.js +3 -5
- package/src/sap/ui/documentation/sdk/controls/FileEditor.js +5 -13
- package/src/sap/ui/documentation/sdk/cookieSettingsDialog/Component.js +3 -4
- package/src/sap/ui/documentation/sdk/cookieSettingsDialog/i18n/i18n_mk.properties +11 -0
- package/src/sap/ui/documentation/sdk/css/style.css +0 -14
- package/src/sap/ui/documentation/sdk/view/App.view.xml +4 -13
- package/src/sap/ui/documentation/sdk/view/Code.view.xml +0 -10
- package/src/sap/ui/documentation/sdk/view/Sample.view.xml +1 -1
- package/src/sap/ui/documentation/themes/base/Documentation.less +19 -34
|
@@ -48,6 +48,7 @@
|
|
|
48
48
|
alt="{i18n>APP_HEADER_LOGO_ALT}"
|
|
49
49
|
class="sapUiDemokitMainHeaderLogo"
|
|
50
50
|
height="2rem"
|
|
51
|
+
id="sap_logo"
|
|
51
52
|
decorative="false"
|
|
52
53
|
press="onHeaderLogoPress" />
|
|
53
54
|
|
|
@@ -69,7 +70,7 @@
|
|
|
69
70
|
|
|
70
71
|
<OverflowToolbar class="sapUiDemoKitHeaderOTB" style="Clear">
|
|
71
72
|
<ObjectStatus
|
|
72
|
-
text="{= ${versionData>/isDevVersion}
|
|
73
|
+
text="{= ${versionData>/isDevVersion} && !${appView>/bShowVersionSwitchButton}
|
|
73
74
|
? [${i18n>APP_VERSION_VERSION}, ${versionData>/version}, ${i18n>APP_VERSION_IN_PROGRESS}].join(' ')
|
|
74
75
|
: '' }"
|
|
75
76
|
state="Information"
|
|
@@ -86,7 +87,7 @@
|
|
|
86
87
|
? [${i18n>APP_VERSION_VERSION}, ${versionData>/version}].join(' ')
|
|
87
88
|
: '' }"
|
|
88
89
|
press="onChangeVersionButtonPress"
|
|
89
|
-
visible="{= ${appView>/bShowVersionSwitchButton}
|
|
90
|
+
visible="{= ${appView>/bShowVersionSwitchButton} }">
|
|
90
91
|
</Button>
|
|
91
92
|
|
|
92
93
|
<OverflowToolbarButton
|
|
@@ -187,7 +188,7 @@
|
|
|
187
188
|
</OverflowToolbarMenuButton>
|
|
188
189
|
|
|
189
190
|
<OverflowToolbarButton
|
|
190
|
-
class="
|
|
191
|
+
class="sapUiDemoKitHeaderActionsNewsButton"
|
|
191
192
|
icon="sap-icon://bell"
|
|
192
193
|
press="onNewsButtonPress"
|
|
193
194
|
text="{i18n>APP_INFORMATION_BTN_NEWS}"
|
|
@@ -244,12 +245,6 @@
|
|
|
244
245
|
key="tools"
|
|
245
246
|
icon="sap-icon://wrench"
|
|
246
247
|
text="{i18n>APP_TABHEADER_ITEM_TOOLS}">
|
|
247
|
-
<items>
|
|
248
|
-
<IconTabFilter key="fioriTools" text="{i18n>APP_TABHEADER_SUBITEM_FIORI_TOOLS}" />
|
|
249
|
-
<IconTabFilter key="iconExplorer" text="{i18n>APP_TABHEADER_SUBITEM_ICON_EXPLORER}" />
|
|
250
|
-
<IconTabFilter key="ui5Inspector" text="{i18n>APP_TABHEADER_SUBITEM_UI5_INSPECTOR}" />
|
|
251
|
-
<IconTabFilter key="ui5Tooling" text="{i18n>APP_TABHEADER_SUBITEM_UI5_TOOLING}" />
|
|
252
|
-
</items>
|
|
253
248
|
</IconTabFilter>
|
|
254
249
|
</items>
|
|
255
250
|
</IconTabHeader>
|
|
@@ -288,10 +283,6 @@
|
|
|
288
283
|
key="tools"
|
|
289
284
|
icon="sap-icon://wrench"
|
|
290
285
|
text="{i18n>APP_TABHEADER_ITEM_TOOLS}">
|
|
291
|
-
<tnt:NavigationListItem key="fioriTools" text="{i18n>APP_TABHEADER_SUBITEM_FIORI_TOOLS}" />
|
|
292
|
-
<tnt:NavigationListItem key="iconExplorer" text="{i18n>APP_TABHEADER_SUBITEM_ICON_EXPLORER}" />
|
|
293
|
-
<tnt:NavigationListItem key="ui5Inspector" text="{i18n>APP_TABHEADER_SUBITEM_UI5_INSPECTOR}" />
|
|
294
|
-
<tnt:NavigationListItem key="ui5Tooling" text="{i18n>APP_TABHEADER_SUBITEM_UI5_TOOLING}" />
|
|
295
286
|
</tnt:NavigationListItem>
|
|
296
287
|
</tnt:NavigationList>
|
|
297
288
|
</tnt:SideNavigation>
|
|
@@ -64,21 +64,11 @@
|
|
|
64
64
|
${device>/orientation/landscape} ) }"
|
|
65
65
|
tooltip="{i18n>SAMPLE_FULLSCREEN_BTN_TOOLTIP}"
|
|
66
66
|
press="onToggleFullScreen" />
|
|
67
|
-
<Button
|
|
68
|
-
id="toggleRTA"
|
|
69
|
-
icon="sap-icon://wrench"
|
|
70
|
-
class="sapUiHideOnPhone"
|
|
71
|
-
tooltip="{i18n>SAMPLE_ADAPT_BTN_TOOLTIP}"
|
|
72
|
-
enabled="false" />
|
|
73
67
|
<Button visible="{/showNewTab}"
|
|
74
68
|
id="newTab"
|
|
75
69
|
tooltip="{i18n>SAMPLE_NEW_TAB_BTN_TOOLTIP}"
|
|
76
70
|
icon="sap-icon://inspect"
|
|
77
71
|
press="onNewTab" />
|
|
78
|
-
<Button id="sampleSettings"
|
|
79
|
-
visible="{= ${/showSettings} && !${/iframe} }"
|
|
80
|
-
icon="sap-icon://action-settings"
|
|
81
|
-
press="handleSettings" />
|
|
82
72
|
</contentRight>
|
|
83
73
|
</Bar>
|
|
84
74
|
</subHeader>
|
|
@@ -952,38 +952,6 @@ html.sapUiMedia-Std-Tablet {
|
|
|
952
952
|
}
|
|
953
953
|
}
|
|
954
954
|
}
|
|
955
|
-
|
|
956
|
-
.sapUiDemokitSubHeader {
|
|
957
|
-
.sapMITBTextOnly .sapMITBHead .sapMITBItem:not(.sapUiDnDDragging):is([id*="toolsTab"]) {
|
|
958
|
-
.sapMITBFilterExpandBtnSeparator {
|
|
959
|
-
display: none;
|
|
960
|
-
}
|
|
961
|
-
|
|
962
|
-
&:focus .sapMITBText::after {
|
|
963
|
-
right: -2.25rem;
|
|
964
|
-
}
|
|
965
|
-
|
|
966
|
-
[id*="toolsTab-expandButton"] {
|
|
967
|
-
.sapMBtnInner {
|
|
968
|
-
width: 1.25rem;
|
|
969
|
-
height: 1.25rem;
|
|
970
|
-
left: 0.5rem;
|
|
971
|
-
|
|
972
|
-
.sapMBtnIcon {
|
|
973
|
-
width: 1.25rem;
|
|
974
|
-
height: 1.25rem;
|
|
975
|
-
line-height: 1.25rem;
|
|
976
|
-
}
|
|
977
|
-
}
|
|
978
|
-
|
|
979
|
-
&:hover {
|
|
980
|
-
.sapMBtnInner {
|
|
981
|
-
box-shadow: none;
|
|
982
|
-
}
|
|
983
|
-
}
|
|
984
|
-
}
|
|
985
|
-
}
|
|
986
|
-
}
|
|
987
955
|
}
|
|
988
956
|
|
|
989
957
|
// Align the icons of the menu buttons in overflow popover
|
|
@@ -1023,11 +991,28 @@ html.sapUiMedia-Std-Tablet {
|
|
|
1023
991
|
margin-left: -0.0625rem;
|
|
1024
992
|
}
|
|
1025
993
|
}
|
|
994
|
+
|
|
995
|
+
.sapMBtn.sapMBarChild.sapUiDemoKitHeaderActionsNewsButton {
|
|
996
|
+
.sapMBadgeTopRight.sapMBadge .sapMBadgeIndicator {
|
|
997
|
+
position: absolute;
|
|
998
|
+
top: -0.3125rem;
|
|
999
|
+
}
|
|
1000
|
+
}
|
|
1026
1001
|
}
|
|
1027
1002
|
|
|
1028
1003
|
.sapUiSizeCompact .sapUiDemokit .sapUiDemokitMainHeader {
|
|
1029
|
-
.sapMBtn.
|
|
1030
|
-
|
|
1004
|
+
.sapMBtn.sapMBarChild.sapUiDemoKitHeaderActionsNewsButton {
|
|
1005
|
+
.sapMBadgeTopRight.sapMBadge .sapMBadgeIndicator {
|
|
1006
|
+
top: -0.1875rem;
|
|
1007
|
+
}
|
|
1008
|
+
}
|
|
1009
|
+
}
|
|
1010
|
+
|
|
1011
|
+
.sapUiSizeCozy .sapUiDemokit .sapUiDemokitMainHeader {
|
|
1012
|
+
.sapMBtn.sapMBarChild.sapUiDemoKitHeaderActionsNewsButton {
|
|
1013
|
+
.sapMBadgeTopRight.sapMBadge .sapMBadgeIndicator {
|
|
1014
|
+
top: -0.125rem;
|
|
1015
|
+
}
|
|
1031
1016
|
}
|
|
1032
1017
|
}
|
|
1033
1018
|
|