@openui5/sap.ui.documentation 1.146.0 → 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.
Files changed (53) hide show
  1. package/REUSE.toml +0 -51
  2. package/THIRDPARTY.txt +0 -44
  3. package/package.json +7 -7
  4. package/src/sap/ui/documentation/.library +1 -1
  5. package/src/sap/ui/documentation/ObjectPageSection.js +108 -0
  6. package/src/sap/ui/documentation/ObjectPageSubSection.js +114 -15
  7. package/src/sap/ui/documentation/library.js +2 -2
  8. package/src/sap/ui/documentation/messagebundle.properties +12 -0
  9. package/src/sap/ui/documentation/messagebundle_en.properties +2 -2
  10. package/src/sap/ui/documentation/messagebundle_en_US_saprigi.properties +3 -0
  11. package/src/sap/ui/documentation/sdk/Component.js +6 -0
  12. package/src/sap/ui/documentation/sdk/controller/SubApiDetail.controller.js +41 -3
  13. package/src/sap/ui/documentation/sdk/controller/util/ResourcesInfo.js +5 -0
  14. package/src/sap/ui/documentation/sdk/cookieSettingsDialog/view/CookieSettingsDialog.fragment.xml +5 -5
  15. package/src/sap/ui/documentation/sdk/css/style.css +23 -0
  16. package/src/sap/ui/documentation/sdk/index.js +6 -0
  17. package/src/sap/ui/documentation/sdk/thirdparty/highlight.js/highlight.js +3 -3
  18. package/src/sap/ui/documentation/sdk/view/AboutDialog.fragment.xml +6 -6
  19. package/src/sap/ui/documentation/sdk/view/ApiDetailInitial.view.xml +2 -2
  20. package/src/sap/ui/documentation/sdk/view/ApiMaster.view.xml +6 -6
  21. package/src/sap/ui/documentation/sdk/view/App.view.xml +11 -11
  22. package/src/sap/ui/documentation/sdk/view/ChangeVersionDialog.fragment.xml +4 -4
  23. package/src/sap/ui/documentation/sdk/view/Code.view.xml +16 -16
  24. package/src/sap/ui/documentation/sdk/view/Controls.view.xml +2 -2
  25. package/src/sap/ui/documentation/sdk/view/ControlsMaster.view.xml +6 -6
  26. package/src/sap/ui/documentation/sdk/view/Entity.view.xml +3 -3
  27. package/src/sap/ui/documentation/sdk/view/FioriDevelopmentRowSAPUI5.fragment.xml +1 -1
  28. package/src/sap/ui/documentation/sdk/view/Footer.fragment.xml +2 -2
  29. package/src/sap/ui/documentation/sdk/view/FooterMaster.fragment.xml +1 -1
  30. package/src/sap/ui/documentation/sdk/view/GlobalSearchPicker.fragment.xml +6 -6
  31. package/src/sap/ui/documentation/sdk/view/Group.view.xml +1 -1
  32. package/src/sap/ui/documentation/sdk/view/LiveEditor.view.xml +4 -4
  33. package/src/sap/ui/documentation/sdk/view/News.view.xml +4 -4
  34. package/src/sap/ui/documentation/sdk/view/NewsPopover.fragment.xml +4 -4
  35. package/src/sap/ui/documentation/sdk/view/NotFound.view.xml +1 -1
  36. package/src/sap/ui/documentation/sdk/view/ReleaseDialog.fragment.xml +1 -1
  37. package/src/sap/ui/documentation/sdk/view/ReleaseNotes.view.xml +1 -1
  38. package/src/sap/ui/documentation/sdk/view/Resources.view.xml +24 -1
  39. package/src/sap/ui/documentation/sdk/view/Sample.view.xml +15 -15
  40. package/src/sap/ui/documentation/sdk/view/SampleNotFound.view.xml +2 -2
  41. package/src/sap/ui/documentation/sdk/view/SearchPage.view.xml +9 -9
  42. package/src/sap/ui/documentation/sdk/view/Sitemap.view.xml +1 -1
  43. package/src/sap/ui/documentation/sdk/view/SubApiDetail.view.xml +73 -60
  44. package/src/sap/ui/documentation/sdk/view/TopicDetail.view.xml +3 -3
  45. package/src/sap/ui/documentation/sdk/view/TopicDetailInitial.view.xml +4 -4
  46. package/src/sap/ui/documentation/sdk/view/TopicMaster.view.xml +5 -5
  47. package/src/sap/ui/documentation/sdk/view/VersionNotFound.view.xml +3 -3
  48. package/src/sap/ui/documentation/sdk/view/Welcome.view.xml +13 -13
  49. package/src/sap/ui/documentation/sdk/view/WelcomeCustomRowOpenUI5.fragment.xml +1 -1
  50. package/src/sap/ui/documentation/sdk/view/appSettingsDialog.fragment.xml +2 -2
  51. package/src/sap/ui/documentation/sdk/view/globalSettingsDialog.fragment.xml +2 -2
  52. package/src/sap/ui/documentation/sdk/view/viewSettingsDialog.fragment.xml +1 -1
  53. package/src/sap/ui/documentation/sdk/view/warningSampleDialog.fragment.xml +1 -1
@@ -21,7 +21,7 @@
21
21
  id="topicDetailBackToSearch"
22
22
  text="{i18n>TOPIC_DETAIL_BACK_BTN}"
23
23
  type="Transparent"
24
- press="backToSearch"
24
+ press=".backToSearch"
25
25
  visible="false"/>
26
26
  <m:Button
27
27
  visible="{= !${versionData>/isURLVersioned}}"
@@ -29,13 +29,13 @@
29
29
  type="Transparent"
30
30
  text="{i18n>TOPIC_DETAIL_EDIT_GITHUB}"
31
31
  tooltip="{i18n>TOPIC_DETAIL_EDIT_GITHUB_TOOLTIP}"
32
- press="onEditGitHubPress"/>
32
+ press=".onEditGitHubPress"/>
33
33
  <m:Button
34
34
  visible="{device>/system/desktop}"
35
35
  icon="sap-icon://full-screen"
36
36
  type="Transparent"
37
37
  tooltip="{i18n>TOPIC_DETAIL_FULLSCREEN_TOOLTIP}"
38
- press="onToggleFullScreen"/>
38
+ press=".onToggleFullScreen"/>
39
39
  </actions>
40
40
  </DynamicPageTitle>
41
41
  </title>
@@ -27,7 +27,7 @@
27
27
  width="100%"
28
28
  densityAware="false"
29
29
  class="landingImage"
30
- load="handleLandingImageLoad"
30
+ load=".handleLandingImageLoad"
31
31
  visible="{device>/system/phone}"/>
32
32
 
33
33
  <Image
@@ -35,7 +35,7 @@
35
35
  width="100%"
36
36
  densityAware="false"
37
37
  class="landingImage"
38
- load="handleLandingImageLoad"
38
+ load=".handleLandingImageLoad"
39
39
  visible="{=!${device>/system/phone}}"/>
40
40
 
41
41
  <l:VerticalLayout
@@ -52,13 +52,13 @@
52
52
  class="actionButton"
53
53
  text="{i18n>TOPIC_DETAIL_INIT_DOWNLOAD_BTN}"
54
54
  type="Emphasized"
55
- press="onDownloadButtonPress"/>
55
+ press=".onDownloadButtonPress"/>
56
56
  <Button
57
57
  class="actionButton sapUiSmallMarginBegin"
58
58
  visible="{= ${versionData>/isOpenUI5}}"
59
59
  text="GitHub"
60
60
  type="Emphasized"
61
- press="onGitHubButtonPress"/>
61
+ press=".onGitHubButtonPress"/>
62
62
  </l:HorizontalLayout>
63
63
  </l:VerticalLayout>
64
64
  </l:BlockLayoutCell>
@@ -11,15 +11,15 @@
11
11
  id="page"
12
12
  enableScrolling="true"
13
13
  showFooter="false"
14
- navButtonPress="onNavBack"
14
+ navButtonPress=".onNavBack"
15
15
  showNavButton="false"
16
16
  class="sapUiDocumentationMasterPage">
17
17
 
18
18
  <customHeader>
19
19
  <Toolbar width="100%">
20
- <SearchField id="searchField" placeholder="{i18n>TOPIC_MASTER_FILTER_PLACEHOLDER}" liveChange="onTreeFilter" class="sapUiDocumentationFilterField"/>
21
- <Button icon="sap-icon://expand-all" press="onTreeExpandAll" tooltip="{i18n>TOPIC_MASTER_EXPAND_TOOLTIP}"/>
22
- <Button icon="sap-icon://collapse-all" press="onTreeCollapseAll" tooltip="{i18n>TOPIC_MASTER_COLAPSE_TOOLTIP}"/>
20
+ <SearchField id="searchField" placeholder="{i18n>TOPIC_MASTER_FILTER_PLACEHOLDER}" liveChange=".onTreeFilter" class="sapUiDocumentationFilterField"/>
21
+ <Button icon="sap-icon://expand-all" press=".onTreeExpandAll" tooltip="{i18n>TOPIC_MASTER_EXPAND_TOOLTIP}"/>
22
+ <Button icon="sap-icon://collapse-all" press=".onTreeCollapseAll" tooltip="{i18n>TOPIC_MASTER_COLAPSE_TOOLTIP}"/>
23
23
  </Toolbar>
24
24
  </customHeader>
25
25
 
@@ -29,7 +29,7 @@
29
29
  <Tree
30
30
  id="tree"
31
31
  mode="SingleSelectMaster"
32
- selectionChange="onNodeSelect"
32
+ selectionChange=".onNodeSelect"
33
33
  noDataText="{i18n>TOPIC_MASTER_NO_DATA_TEXT}"
34
34
  items="{ path: '/' }">
35
35
  <custom:DemokitTreeItem
@@ -10,7 +10,7 @@
10
10
  <f:ShellBar
11
11
  title="HTTP Status 404 - Not Found"
12
12
  homeIcon="/resources/sap/ui/documentation/sdk/images/logo_ui5.png"
13
- homeIconPressed="onHomePress"
13
+ homeIconPressed=".onHomePress"
14
14
  >
15
15
  </f:ShellBar>
16
16
  </customHeader>
@@ -25,13 +25,13 @@
25
25
  id="readMoreButton"
26
26
  visible="false"
27
27
  text="Read More"
28
- press="onReadMore"
28
+ press=".onReadMore"
29
29
  type="Emphasized" />
30
30
  <Button
31
31
  id="homePageButton"
32
32
  visible="true"
33
33
  text="Home Page"
34
- press="onHomePress" />
34
+ press=".onHomePress" />
35
35
  </additionalContent>
36
36
  </IllustratedMessage>
37
37
  </Page>
@@ -22,14 +22,14 @@
22
22
  width="100%"
23
23
  class="welcomeImage"
24
24
  densityAware="false"
25
- load="handleLandingImageLoad"
25
+ load=".handleLandingImageLoad"
26
26
  visible="{device>/system/phone}"/>
27
27
  <Image
28
28
  src="./resources/sap/ui/documentation/sdk/images/Home_M_and_L_cropped_1.jpg"
29
29
  width="100%"
30
30
  densityAware="false"
31
31
  class="welcomeImage"
32
- load="handleLandingImageLoad"
32
+ load=".handleLandingImageLoad"
33
33
  visible="{=!${device>/system/phone}}"/>
34
34
 
35
35
  <l:VerticalLayout
@@ -45,14 +45,14 @@
45
45
  <Button
46
46
  text="{i18n>WELCOME_BLOCK_1_START_BTN}"
47
47
  type="Emphasized"
48
- press="onGetStarted"
48
+ press=".onGetStarted"
49
49
  class="actionButton"/>
50
50
  <Button
51
51
  class="actionButton sapContrast sapContrastPlus sapUiSmallMarginBegin"
52
52
  visible="{=${welcomeView>/isOpenUI5} !== undefined}"
53
53
  id="readMoreButton"
54
54
  text="{i18n>WELCOME_BLOCK_1_DOWNLOAD_BTN}"
55
- press="onDownloadButtonPress">
55
+ press=".onDownloadButtonPress">
56
56
  </Button>
57
57
  </l:HorizontalLayout>
58
58
  </l:VerticalLayout>
@@ -298,7 +298,7 @@
298
298
  src="./resources/sap/ui/documentation/sdk/images/link-sap.png"
299
299
  tooltip="{i18n>LEGAL_DISCLAIMER_INTERNAL_TOOLTIP}"
300
300
  width="1.25rem"
301
- press="onDisclaimerLinkPress"/>
301
+ press=".onDisclaimerLinkPress"/>
302
302
  </custom:DivContainer>
303
303
  <Text
304
304
  text="{i18n>WELCOME_BLOCK_8_TEXT_1}"
@@ -337,7 +337,7 @@
337
337
  src="./resources/sap/ui/documentation/sdk/images/link-sap.png"
338
338
  tooltip="{i18n>LEGAL_DISCLAIMER_INTERNAL_TOOLTIP}"
339
339
  width="1.25rem"
340
- press="onDisclaimerLinkPress"/>
340
+ press=".onDisclaimerLinkPress"/>
341
341
  </custom:DivContainer>
342
342
  <Text
343
343
  text="{i18n>WELCOME_BLOCK_9_TEXT_1}"
@@ -378,7 +378,7 @@
378
378
  src="./resources/sap/ui/documentation/sdk/images/link-sap.png"
379
379
  tooltip="{i18n>LEGAL_DISCLAIMER_INTERNAL_TOOLTIP}"
380
380
  width="1.25rem"
381
- press="onDisclaimerLinkPress"/>
381
+ press=".onDisclaimerLinkPress"/>
382
382
  </custom:DivContainer>
383
383
  <Text
384
384
  text="{i18n>WELCOME_BLOCK_10_TEXT_1}"
@@ -478,7 +478,7 @@
478
478
  tooltip="{i18n>LEGAL_DISCLAIMER_INTERNAL_TOOLTIP}"
479
479
  width="1.25rem"
480
480
  class="sapUiDisclaimerCommunityLink"
481
- press="onDisclaimerLinkPress"/>
481
+ press=".onDisclaimerLinkPress"/>
482
482
  </HBox>
483
483
  </l:BlockLayoutCell>
484
484
 
@@ -503,7 +503,7 @@
503
503
  tooltip="{i18n>LEGAL_DISCLAIMER_EXTERNAL_TOOLTIP}"
504
504
  width="1.25rem"
505
505
  class="sapUiDisclaimerCommunityLink"
506
- press="onDisclaimerLinkPress"/>
506
+ press=".onDisclaimerLinkPress"/>
507
507
  </HBox>
508
508
  </l:BlockLayoutCell>
509
509
 
@@ -528,7 +528,7 @@
528
528
  tooltip="{i18n>LEGAL_DISCLAIMER_EXTERNAL_TOOLTIP}"
529
529
  width="1.25rem"
530
530
  class="sapUiDisclaimerCommunityLink"
531
- press="onDisclaimerLinkPress"/>
531
+ press=".onDisclaimerLinkPress"/>
532
532
  </HBox>
533
533
  </l:BlockLayoutCell>
534
534
  </l:BlockLayoutRow>
@@ -555,7 +555,7 @@
555
555
  tooltip="{i18n>LEGAL_DISCLAIMER_EXTERNAL_TOOLTIP}"
556
556
  width="1.25rem"
557
557
  class="sapUiDisclaimerCommunityLink"
558
- press="onDisclaimerLinkPress"/>
558
+ press=".onDisclaimerLinkPress"/>
559
559
  </HBox>
560
560
  </l:BlockLayoutCell>
561
561
 
@@ -580,7 +580,7 @@
580
580
  tooltip="{i18n>LEGAL_DISCLAIMER_EXTERNAL_TOOLTIP}"
581
581
  width="1.25rem"
582
582
  class="sapUiDisclaimerCommunityLink"
583
- press="onDisclaimerLinkPress"/>
583
+ press=".onDisclaimerLinkPress"/>
584
584
  </HBox>
585
585
  </l:BlockLayoutCell>
586
586
 
@@ -605,7 +605,7 @@
605
605
  tooltip="{i18n>LEGAL_DISCLAIMER_INTERNAL_TOOLTIP}"
606
606
  width="1.25rem"
607
607
  class="sapUiDisclaimerCommunityLink"
608
- press="onDisclaimerLinkPress"/>
608
+ press=".onDisclaimerLinkPress"/>
609
609
  </HBox>
610
610
  </l:BlockLayoutCell>
611
611
  </l:BlockLayoutRow>
@@ -18,7 +18,7 @@
18
18
  src="./resources/sap/ui/documentation/sdk/images/link-sap.png"
19
19
  tooltip="{i18n>LEGAL_DISCLAIMER_EXTERNAL_TOOLTIP}"
20
20
  width="1.25rem"
21
- press="onDisclaimerLinkPress"/>
21
+ press=".onDisclaimerLinkPress"/>
22
22
  </custom:DivContainer>
23
23
  <Text
24
24
  text="{i18n>WELCOME_BLOCK_5_TEXT}"
@@ -37,10 +37,10 @@
37
37
  </VBox>
38
38
  </content>
39
39
  <beginButton>
40
- <Button text="{i18n>APP_SETTINGS_DIALOG_OK_BTN}" press="handleSaveAppSettings" type="Emphasized"/>
40
+ <Button text="{i18n>APP_SETTINGS_DIALOG_OK_BTN}" press=".handleSaveAppSettings" type="Emphasized"/>
41
41
  </beginButton>
42
42
  <endButton>
43
- <Button text="{i18n>APP_SETTINGS_DIALOG_CANCEL_BTN}" press="handleCloseAppSettings"/>
43
+ <Button text="{i18n>APP_SETTINGS_DIALOG_CANCEL_BTN}" press=".handleCloseAppSettings"/>
44
44
  </endButton>
45
45
  </Dialog>
46
46
  </core:FragmentDefinition>
@@ -25,10 +25,10 @@
25
25
  </VBox>
26
26
  </content>
27
27
  <beginButton>
28
- <Button text="{i18n>APP_SETTINGS_DIALOG_OK_BTN}" press="handleSaveAppSettings" type="Emphasized"/>
28
+ <Button text="{i18n>APP_SETTINGS_DIALOG_OK_BTN}" press=".handleSaveAppSettings" type="Emphasized"/>
29
29
  </beginButton>
30
30
  <endButton>
31
- <Button text="{i18n>APP_SETTINGS_DIALOG_CANCEL_BTN}" press="handleCloseAppSettings"/>
31
+ <Button text="{i18n>APP_SETTINGS_DIALOG_CANCEL_BTN}" press=".handleCloseAppSettings"/>
32
32
  </endButton>
33
33
  </Dialog>
34
34
  </core:FragmentDefinition>
@@ -3,7 +3,7 @@
3
3
  xmlns:core="sap.ui.core">
4
4
  <ViewSettingsDialog
5
5
  id="viewSettingsDialog"
6
- confirm="onConfirmViewSettings">
6
+ confirm=".onConfirmViewSettings">
7
7
  <groupItems>
8
8
  <ViewSettingsItem text="{i18n>VIEW_SETTINGS_DIALOG_ITEM_1}" key="name" selected="true" />
9
9
  <ViewSettingsItem text="{i18n>VIEW_SETTINGS_DIALOG_ITEM_2}" key="category" />
@@ -21,7 +21,7 @@
21
21
  </VBox>
22
22
  </content>
23
23
  <beginButton>
24
- <Button text="{i18n>CACHE_CLEANUP_DIALOG_OK_BTN}" press="handleDialogClose" type="Emphasized" />
24
+ <Button text="{i18n>CACHE_CLEANUP_DIALOG_OK_BTN}" press=".handleDialogClose" type="Emphasized" />
25
25
  </beginButton>
26
26
  </Dialog>
27
27
  </core:FragmentDefinition>