@openui5/sap.ui.documentation 1.145.1 → 1.147.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.toml +0 -51
- package/THIRDPARTY.txt +6 -50
- package/package.json +7 -7
- package/src/sap/ui/documentation/.library +1 -1
- package/src/sap/ui/documentation/LightTable.js +20 -46
- package/src/sap/ui/documentation/ObjectPageSection.js +108 -0
- package/src/sap/ui/documentation/ObjectPageSubSection.js +114 -15
- package/src/sap/ui/documentation/Row.js +146 -7
- package/src/sap/ui/documentation/library.js +2 -2
- package/src/sap/ui/documentation/messagebundle.properties +12 -0
- package/src/sap/ui/documentation/messagebundle_de.properties +1 -1
- package/src/sap/ui/documentation/messagebundle_en.properties +2 -2
- package/src/sap/ui/documentation/messagebundle_en_US_saprigi.properties +3 -0
- package/src/sap/ui/documentation/sdk/Component.js +6 -0
- package/src/sap/ui/documentation/sdk/controller/App.controller.js +1 -1
- package/src/sap/ui/documentation/sdk/controller/Code.controller.js +1 -0
- package/src/sap/ui/documentation/sdk/controller/ErrorHandler.js +1 -0
- package/src/sap/ui/documentation/sdk/controller/Sample.controller.js +10 -5
- package/src/sap/ui/documentation/sdk/controller/SubApiDetail.controller.js +525 -17
- package/src/sap/ui/documentation/sdk/controller/util/ConfigUtil.js +1 -0
- package/src/sap/ui/documentation/sdk/controller/util/CookiesConsentManager.js +1 -0
- package/src/sap/ui/documentation/sdk/controller/util/ResourcesInfo.js +5 -0
- package/src/sap/ui/documentation/sdk/controller/util/UsageTracker.js +1 -0
- package/src/sap/ui/documentation/sdk/cookieSettingsDialog/controller/CookieSettingsDialog.controller.js +1 -0
- package/src/sap/ui/documentation/sdk/cookieSettingsDialog/view/CookieSettingsDialog.fragment.xml +5 -5
- package/src/sap/ui/documentation/sdk/css/style.css +23 -0
- package/src/sap/ui/documentation/sdk/index.js +6 -0
- package/src/sap/ui/documentation/sdk/thirdparty/highlight.js/highlight.js +3 -3
- package/src/sap/ui/documentation/sdk/view/AboutDialog.fragment.xml +6 -6
- package/src/sap/ui/documentation/sdk/view/ApiDetailInitial.view.xml +2 -2
- package/src/sap/ui/documentation/sdk/view/ApiMaster.view.xml +6 -6
- package/src/sap/ui/documentation/sdk/view/App.view.xml +11 -11
- package/src/sap/ui/documentation/sdk/view/ChangeVersionDialog.fragment.xml +4 -4
- package/src/sap/ui/documentation/sdk/view/Code.view.xml +16 -16
- package/src/sap/ui/documentation/sdk/view/Controls.view.xml +2 -2
- package/src/sap/ui/documentation/sdk/view/ControlsMaster.view.xml +6 -6
- package/src/sap/ui/documentation/sdk/view/Entity.view.xml +3 -3
- package/src/sap/ui/documentation/sdk/view/FioriDevelopmentRowSAPUI5.fragment.xml +1 -1
- package/src/sap/ui/documentation/sdk/view/Footer.fragment.xml +2 -2
- package/src/sap/ui/documentation/sdk/view/FooterMaster.fragment.xml +1 -1
- package/src/sap/ui/documentation/sdk/view/GlobalSearchPicker.fragment.xml +6 -6
- package/src/sap/ui/documentation/sdk/view/Group.view.xml +1 -1
- package/src/sap/ui/documentation/sdk/view/LiveEditor.view.xml +4 -4
- package/src/sap/ui/documentation/sdk/view/News.view.xml +4 -4
- package/src/sap/ui/documentation/sdk/view/NewsPopover.fragment.xml +4 -4
- package/src/sap/ui/documentation/sdk/view/NotFound.view.xml +1 -1
- package/src/sap/ui/documentation/sdk/view/ReleaseDialog.fragment.xml +1 -1
- package/src/sap/ui/documentation/sdk/view/ReleaseNotes.view.xml +1 -1
- package/src/sap/ui/documentation/sdk/view/Resources.view.xml +24 -1
- package/src/sap/ui/documentation/sdk/view/Sample.view.xml +15 -15
- package/src/sap/ui/documentation/sdk/view/SampleNotFound.view.xml +2 -2
- package/src/sap/ui/documentation/sdk/view/SearchPage.view.xml +9 -9
- package/src/sap/ui/documentation/sdk/view/Sitemap.view.xml +1 -1
- package/src/sap/ui/documentation/sdk/view/SubApiDetail.view.xml +76 -77
- package/src/sap/ui/documentation/sdk/view/TopicDetail.view.xml +3 -3
- package/src/sap/ui/documentation/sdk/view/TopicDetailInitial.view.xml +4 -4
- package/src/sap/ui/documentation/sdk/view/TopicMaster.view.xml +5 -5
- package/src/sap/ui/documentation/sdk/view/VersionNotFound.view.xml +3 -3
- package/src/sap/ui/documentation/sdk/view/Welcome.view.xml +13 -13
- package/src/sap/ui/documentation/sdk/view/WelcomeCustomRowOpenUI5.fragment.xml +1 -1
- package/src/sap/ui/documentation/sdk/view/appSettingsDialog.fragment.xml +2 -2
- package/src/sap/ui/documentation/sdk/view/globalSettingsDialog.fragment.xml +2 -2
- package/src/sap/ui/documentation/sdk/view/viewSettingsDialog.fragment.xml +1 -1
- package/src/sap/ui/documentation/sdk/view/warningSampleDialog.fragment.xml +1 -1
- package/src/sap/ui/documentation/themes/base/Documentation.less +4 -4
- package/src/sap/ui/documentation/themes/base/LightTable.less +29 -0
- package/src/sap/ui/documentation/themes/sap_belize_base/Documentation.less +4 -4
- package/src/sap/ui/documentation/themes/sap_horizon_dark/Documentation.less +1 -1
|
@@ -42,7 +42,7 @@ html.sap-tablet:not(.sap-desktop) {
|
|
|
42
42
|
}
|
|
43
43
|
}
|
|
44
44
|
|
|
45
|
-
.
|
|
45
|
+
.sectionContent {
|
|
46
46
|
details {
|
|
47
47
|
margin: 0.8em;
|
|
48
48
|
}
|
|
@@ -67,10 +67,10 @@ html.sap-tablet:not(.sap-desktop) {
|
|
|
67
67
|
}
|
|
68
68
|
|
|
69
69
|
#d4h5-main-container,
|
|
70
|
-
.
|
|
70
|
+
.sectionContent {
|
|
71
71
|
font-size: 0.875em;
|
|
72
72
|
|
|
73
|
-
&.
|
|
73
|
+
&.sectionContent pre > code {
|
|
74
74
|
font-family: monospace;
|
|
75
75
|
}
|
|
76
76
|
|
|
@@ -157,7 +157,7 @@ html.sap-tablet:not(.sap-desktop) {
|
|
|
157
157
|
}
|
|
158
158
|
}
|
|
159
159
|
|
|
160
|
-
&.
|
|
160
|
+
&.sectionContent h2,
|
|
161
161
|
.section.topic > .innerTitle > h2 {
|
|
162
162
|
font-size: 2em;
|
|
163
163
|
font-weight: 400;
|
|
@@ -144,6 +144,30 @@
|
|
|
144
144
|
border-bottom: solid 1px #e5e5e5;
|
|
145
145
|
border-left: solid 1px #e5e5e5;
|
|
146
146
|
border-right: solid 1px #e5e5e5;
|
|
147
|
+
|
|
148
|
+
&.subrow,
|
|
149
|
+
&.expanded {
|
|
150
|
+
background-color: #f5f5f5;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
/* Expandable rows - display icon and ParamText inline */
|
|
154
|
+
&.collapsed,
|
|
155
|
+
&.expanded {
|
|
156
|
+
> .cell:first-child {
|
|
157
|
+
display: flex;
|
|
158
|
+
align-items: flex-start;
|
|
159
|
+
|
|
160
|
+
.sapUiDocTypedefExpandIcon {
|
|
161
|
+
margin-top: 0.25rem;
|
|
162
|
+
flex-shrink: 0;
|
|
163
|
+
color: var(--sapButton_Lite_TextColor);
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
.sapUiParamText {
|
|
167
|
+
flex: 1;
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
}
|
|
147
171
|
}
|
|
148
172
|
|
|
149
173
|
.sapUiTheme-sap_belize_hcb .sapUiDocLightTable .head,
|
|
@@ -182,6 +206,11 @@
|
|
|
182
206
|
.sapUiDocLightTable .row {
|
|
183
207
|
background-color: @sapBaseColor;
|
|
184
208
|
border-bottom: solid 1px @sapPageHeader_BorderColor;
|
|
209
|
+
|
|
210
|
+
&.subrow,
|
|
211
|
+
&.expanded {
|
|
212
|
+
background-color: #282c34;
|
|
213
|
+
}
|
|
185
214
|
}
|
|
186
215
|
|
|
187
216
|
.sapUiDocLightTable .head,
|
|
@@ -42,7 +42,7 @@ html.sap-tablet:not(.sap-desktop) {
|
|
|
42
42
|
}
|
|
43
43
|
}
|
|
44
44
|
|
|
45
|
-
.
|
|
45
|
+
.sectionContent {
|
|
46
46
|
details {
|
|
47
47
|
margin: 0.8em;
|
|
48
48
|
}
|
|
@@ -67,10 +67,10 @@ html.sap-tablet:not(.sap-desktop) {
|
|
|
67
67
|
}
|
|
68
68
|
|
|
69
69
|
#d4h5-main-container,
|
|
70
|
-
.
|
|
70
|
+
.sectionContent {
|
|
71
71
|
font-size: 0.875em;
|
|
72
72
|
|
|
73
|
-
&.
|
|
73
|
+
&.sectionContent pre > code {
|
|
74
74
|
font-family: monospace;
|
|
75
75
|
}
|
|
76
76
|
|
|
@@ -156,7 +156,7 @@ html.sap-tablet:not(.sap-desktop) {
|
|
|
156
156
|
}
|
|
157
157
|
}
|
|
158
158
|
|
|
159
|
-
&.
|
|
159
|
+
&.sectionContent h2,
|
|
160
160
|
.section.topic > .innerTitle > h2 {
|
|
161
161
|
font-size: 2em;
|
|
162
162
|
font-weight: 400;
|