Skip to content

Commit 7e8e805

Browse files
feat: update @ui5/webcomponents to ~2.3.0 (#6440)
fixes #6340
1 parent ceabe12 commit 7e8e805

File tree

30 files changed

+708
-708
lines changed

30 files changed

+708
-708
lines changed

.storybook/components/ProjectTemplate.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ export function ProjectTemplate(props: ProjectTemplatePropTypes) {
6969
setPopoverOpen(true);
7070
}}
7171
>
72-
Show more.
72+
Show More.
7373
</Link>
7474
</MessageStrip>
7575
<Popover

.storybook/custom-element-manifests/fiori.json

+83-1
Original file line numberDiff line numberDiff line change
@@ -2318,6 +2318,22 @@
23182318
},
23192319
"_ui5privacy": "public"
23202320
},
2321+
{
2322+
"name": "snappedTitleOnMobile",
2323+
"description": "Defines the content of the snapped title on mobile devices.\n\nThis slot is displayed only when the `DynamicPageTitle` is in the snapped state on mobile devices.\nIt should be used to provide a simplified, single-line title that takes up less space on smaller screens.\n\n**Note:**\n- The content set in this slot **overrides** all other content set in the `DynamicPageTitle` slots when displayed.\n- The slot is intended for a single `ui5-title` component.",
2324+
"_ui5since": "2.3.0",
2325+
"_ui5type": {
2326+
"text": "Array<Title>",
2327+
"references": [
2328+
{
2329+
"name": "Title",
2330+
"package": "@ui5/webcomponents",
2331+
"module": "dist/Title.js"
2332+
}
2333+
]
2334+
},
2335+
"_ui5privacy": "public"
2336+
},
23212337
{
23222338
"name": "actionsBar",
23232339
"description": "Defines the bar with actions in the Dynamic page title.",
@@ -3911,6 +3927,24 @@
39113927
"description": "Defines if the group is collapsed or expanded.",
39123928
"privacy": "public"
39133929
},
3930+
{
3931+
"kind": "field",
3932+
"name": "growing",
3933+
"type": {
3934+
"text": "NotificationListGrowingMode",
3935+
"references": [
3936+
{
3937+
"name": "NotificationListGrowingMode",
3938+
"package": "@ui5/webcomponents",
3939+
"module": "dist/types/NotificationListGrowingMode.js"
3940+
}
3941+
]
3942+
},
3943+
"default": "\"None\"",
3944+
"description": "Defines whether the component will have growing capability by pressing a `More` button.\nWhen button is pressed `load-more` event will be fired.",
3945+
"privacy": "public",
3946+
"_ui5since": "2.2.0"
3947+
},
39143948
{
39153949
"kind": "field",
39163950
"name": "titleText",
@@ -3977,6 +4011,15 @@
39774011
"text": "CustomEvent"
39784012
},
39794013
"description": "Fired when the `ui5-li-notification-group` is expanded/collapsed by user interaction."
4014+
},
4015+
{
4016+
"name": "load-more",
4017+
"_ui5privacy": "public",
4018+
"type": {
4019+
"text": "CustomEvent"
4020+
},
4021+
"description": "Fired when additional items are requested.",
4022+
"_ui5since": "2.2.0"
39804023
}
39814024
],
39824025
"attributes": [
@@ -3988,6 +4031,15 @@
39884031
"type": {
39894032
"text": "boolean"
39904033
}
4034+
},
4035+
{
4036+
"description": "Defines whether the component will have growing capability by pressing a `More` button.\nWhen button is pressed `load-more` event will be fired.",
4037+
"name": "growing",
4038+
"default": "\"None\"",
4039+
"fieldName": "growing",
4040+
"type": {
4041+
"text": "\"Button\" | \"None\""
4042+
}
39914043
}
39924044
],
39934045
"superclass": {
@@ -4392,7 +4444,7 @@
43924444
"declarations": [
43934445
{
43944446
"kind": "class",
4395-
"description": "### Overview\n\nThe `ui5-page` is a container component that holds one whole screen of an application.\nThe page has three distinct areas that can hold content - a header, content area and a footer.\n### Structure\n#### Header\nThe top most area of the page is occupied by the header. The standard header includes a navigation button and a title.\n#### Content\nThe content occupies the main part of the page. Only the content area is scrollable by default.\nThis can be prevented by setting `enableScrolling` to `false`.\n#### Footer\nThe footer is optional and occupies the part above the bottom part of the content. Alternatively, the footer can be fixed at the bottom of the page by enabling the `fixedFooter` property.\n\n**Note:** `ui5-page` occipues the whole available space of its parent. In order to achieve the intended design you have to make sure\nthat there is enough space for the `ui5-page` to be rendered.\n**Note:** In order for the `ui5-page` to be displayed, the parent element should have fixed height.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents-fiori/dist/Page.js\";`",
4447+
"description": "### Overview\n\nThe `ui5-page` is a container component that holds one whole screen of an application.\nThe page has three distinct areas that can hold content - a header, content area and a footer.\n### Structure\n#### Header\nThe top most area of the page is occupied by the header. The standard header includes a navigation button and a title.\n#### Content\nThe content occupies the main part of the page. Only the content area is scrollable by default.\nThis can be prevented by setting `noScrolling` to `true`.\n#### Footer\nThe footer is optional and occupies the part above the bottom part of the content. Alternatively, the footer can be fixed at the bottom of the page by enabling the `fixedFooter` property.\n\n**Note:** `ui5-page` occipues the whole available space of its parent. In order to achieve the intended design you have to make sure\nthat there is enough space for the `ui5-page` to be rendered.\n**Note:** In order for the `ui5-page` to be displayed, the parent element should have fixed height.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents-fiori/dist/Page.js\";`",
43964448
"name": "Page",
43974449
"cssParts": [
43984450
{
@@ -8273,6 +8325,36 @@
82738325
}
82748326
}
82758327
]
8328+
},
8329+
{
8330+
"kind": "javascript-module",
8331+
"path": "dist/ssr-zxing-shim.js",
8332+
"declarations": [],
8333+
"exports": [
8334+
{
8335+
"kind": "js",
8336+
"name": "default",
8337+
"declaration": {
8338+
"name": "ZXing",
8339+
"module": "dist/ssr-zxing-shim.js"
8340+
}
8341+
}
8342+
]
8343+
},
8344+
{
8345+
"kind": "javascript-module",
8346+
"path": "dist/ssr-zxing.js",
8347+
"declarations": [],
8348+
"exports": [
8349+
{
8350+
"kind": "js",
8351+
"name": "default",
8352+
"declaration": {
8353+
"name": "ZXing",
8354+
"module": "dist/ssr-zxing.js"
8355+
}
8356+
}
8357+
]
82768358
}
82778359
]
82788360
}

0 commit comments

Comments
 (0)