@ui5/webcomponents 1.10.0 → 1.10.2
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/.dev-server-port +1 -0
- package/CHANGELOG.md +101 -0
- package/dist/Avatar.d.ts +2 -2
- package/dist/Badge.d.ts +3 -3
- package/dist/Breadcrumbs.d.ts +5 -5
- package/dist/Breadcrumbs.js +1 -1
- package/dist/BusyIndicator.d.ts +136 -0
- package/dist/BusyIndicator.js +126 -208
- package/dist/BusyIndicator.js.map +1 -0
- package/dist/Button.d.ts +3 -3
- package/dist/Calendar.d.ts +3 -3
- package/dist/Calendar.js +1 -1
- package/dist/CalendarHeader.d.ts +2 -2
- package/dist/Card.d.ts +3 -3
- package/dist/Card.js +1 -1
- package/dist/CardHeader.d.ts +2 -2
- package/dist/Carousel.d.ts +318 -0
- package/dist/Carousel.js +446 -642
- package/dist/Carousel.js.map +1 -0
- package/dist/CheckBox.d.ts +3 -3
- package/dist/ColorPalette.d.ts +5 -5
- package/dist/ColorPalette.js +1 -1
- package/dist/ColorPaletteItem.d.ts +2 -2
- package/dist/ColorPalettePopover.d.ts +2 -2
- package/dist/ColorPicker.d.ts +2 -2
- package/dist/ComboBox.js +2 -2
- package/dist/CustomListItem.d.ts +1 -1
- package/dist/DatePicker.d.ts +2 -2
- package/dist/DateTimePicker.d.ts +1 -1
- package/dist/DayPicker.d.ts +2 -2
- package/dist/Dialog.d.ts +4 -5
- package/dist/FileUploader.d.ts +4 -4
- package/dist/GroupHeaderListItem.d.ts +1 -1
- package/dist/Icon.d.ts +2 -2
- package/dist/Input.d.ts +5 -5
- package/dist/Input.js +1 -1
- package/dist/Label.d.ts +2 -2
- package/dist/Link.d.ts +2 -2
- package/dist/List.d.ts +4 -3
- package/dist/List.js +1 -1
- package/dist/ListItem.d.ts +1 -1
- package/dist/Menu.d.ts +3 -3
- package/dist/Menu.js +1 -1
- package/dist/MessageStrip.d.ts +2 -2
- package/dist/MonthPicker.d.ts +2 -2
- package/dist/MultiComboBox.js +6 -2
- package/dist/MultiInput.js +1 -1
- package/dist/Panel.d.ts +2 -2
- package/dist/Popover.d.ts +1 -1
- package/dist/Popup.d.ts +3 -3
- package/dist/ProgressIndicator.d.ts +2 -2
- package/dist/RangeSlider.d.ts +1 -1
- package/dist/ResponsivePopover.d.ts +1 -1
- package/dist/SegmentedButton.js +1 -1
- package/dist/Select.js +1 -1
- package/dist/Slider.d.ts +1 -1
- package/dist/SplitButton.d.ts +2 -2
- package/dist/StandardListItem.d.ts +2 -2
- package/dist/StepInput.d.ts +2 -2
- package/dist/SuggestionListItem.d.ts +1 -1
- package/dist/Switch.d.ts +2 -2
- package/dist/TabContainer.js +1 -2
- package/dist/Table.d.ts +6 -4
- package/dist/Table.js +1 -1
- package/dist/TableCell.d.ts +2 -2
- package/dist/TableColumn.d.ts +2 -2
- package/dist/TableGroupRow.d.ts +2 -2
- package/dist/TableRow.d.ts +2 -2
- package/dist/TimePickerBase.d.ts +4 -4
- package/dist/TimeSelection.d.ts +2 -2
- package/dist/Title.d.ts +2 -2
- package/dist/Tree.js +1 -1
- package/dist/WheelSlider.d.ts +2 -2
- package/dist/YearPicker.d.ts +2 -2
- package/dist/api.json +1 -1
- package/dist/generated/templates/CarouselTemplate.lit.js +2 -2
- package/global.d.ts +2 -2
- package/package.json +7 -7
- package/src/Badge.ts +1 -1
- package/src/Breadcrumbs.ts +1 -1
- package/src/{BusyIndicator.js → BusyIndicator.ts} +95 -100
- package/src/Calendar.ts +1 -1
- package/src/Card.ts +1 -1
- package/src/Carousel.hbs +3 -3
- package/src/{Carousel.js → Carousel.ts} +242 -234
- package/src/CheckBox.ts +1 -1
- package/src/ColorPalette.ts +1 -1
- package/src/ComboBox.js +2 -2
- package/src/Dialog.ts +2 -2
- package/src/Input.ts +1 -1
- package/src/List.ts +1 -1
- package/src/ListItem.ts +1 -1
- package/src/Menu.ts +1 -1
- package/src/MultiComboBox.js +6 -2
- package/src/MultiInput.js +1 -1
- package/src/SegmentedButton.js +1 -1
- package/src/Select.js +1 -1
- package/src/TabContainer.js +1 -2
- package/src/Table.ts +1 -1
- package/src/Tree.hbs +1 -1
- package/src/Tree.js +1 -1
|
@@ -38,7 +38,7 @@ declare class SuggestionListItem extends StandardListItem {
|
|
|
38
38
|
* @name sap.ui.webc.main.SuggestionListItem.prototype.default
|
|
39
39
|
*/
|
|
40
40
|
titleText: Array<Node>;
|
|
41
|
-
static get template(): import("@ui5/webcomponents-base/
|
|
41
|
+
static get template(): import("@ui5/webcomponents-base/dist/renderer/executeTemplate.js").TemplateFunction;
|
|
42
42
|
onBeforeRendering(): void;
|
|
43
43
|
get effectiveTitle(): string;
|
|
44
44
|
get hasDescription(): string | number;
|
package/dist/Switch.d.ts
CHANGED
|
@@ -142,9 +142,9 @@ declare class Switch extends UI5Element {
|
|
|
142
142
|
*/
|
|
143
143
|
tooltip: string;
|
|
144
144
|
static i18nBundle: I18nBundle;
|
|
145
|
-
static get styles(): import("@ui5/webcomponents-base/
|
|
145
|
+
static get styles(): import("@ui5/webcomponents-base/dist/types.js").StyleData;
|
|
146
146
|
static get render(): (templateResult: object, container: HTMLElement | DocumentFragment, styleStrOrHrefsArr: string | string[] | undefined, forStaticArea: boolean, options: import("lit-html").RenderOptions) => void;
|
|
147
|
-
static get template(): import("@ui5/webcomponents-base/
|
|
147
|
+
static get template(): import("@ui5/webcomponents-base/dist/renderer/executeTemplate.js").TemplateFunction;
|
|
148
148
|
get sapNextIcon(): "less" | "accept";
|
|
149
149
|
_onclick(): void;
|
|
150
150
|
_onkeydown(e: KeyboardEvent): void;
|
package/dist/TabContainer.js
CHANGED
|
@@ -355,7 +355,7 @@ const metadata = {
|
|
|
355
355
|
* @author SAP SE
|
|
356
356
|
* @alias sap.ui.webc.main.TabContainer
|
|
357
357
|
* @extends sap.ui.webc.base.UI5Element
|
|
358
|
-
* @appenddocs Tab TabSeparator
|
|
358
|
+
* @appenddocs sap.ui.webc.main.Tab sap.ui.webc.main.TabSeparator
|
|
359
359
|
* @tagname ui5-tabcontainer
|
|
360
360
|
* @public
|
|
361
361
|
*/
|
|
@@ -655,7 +655,6 @@ class TabContainer extends UI5Element {
|
|
|
655
655
|
* <code>[ ui5-tab#First, ui5-tab#Nested, ui5-tab#Second, ui5-tab-separator#sep, ui5-tab#Third ]</code>
|
|
656
656
|
* @public
|
|
657
657
|
* @readonly
|
|
658
|
-
*
|
|
659
658
|
* @returns {sap.ui.webc.main.ITab[]}
|
|
660
659
|
*/
|
|
661
660
|
get allItems() {
|
package/dist/Table.d.ts
CHANGED
|
@@ -3,11 +3,13 @@ import ItemNavigation from "@ui5/webcomponents-base/dist/delegate/ItemNavigation
|
|
|
3
3
|
import type { ITabbable } from "@ui5/webcomponents-base/dist/delegate/ItemNavigation.js";
|
|
4
4
|
import type I18nBundle from "@ui5/webcomponents-base/dist/i18nBundle.js";
|
|
5
5
|
import TableGrowingMode from "./types/TableGrowingMode.js";
|
|
6
|
+
import BusyIndicator from "./BusyIndicator.js";
|
|
6
7
|
import type { TableRowSelectionRequestedEventDetail, TableRowF7PressEventDetail, TableRowForwardBeforeEventDetail, TableRowForwardAfterEventDetail } from "./TableRow.js";
|
|
7
8
|
import type TableCell from "./TableCell.js";
|
|
8
9
|
import type TableColumn from "./TableColumn.js";
|
|
9
10
|
import type TableColumnPopinDisplay from "./types/TableColumnPopinDisplay.js";
|
|
10
11
|
import TableMode from "./types/TableMode.js";
|
|
12
|
+
import CheckBox from "./CheckBox.js";
|
|
11
13
|
interface ITableRow extends UI5Element {
|
|
12
14
|
mode: TableMode;
|
|
13
15
|
selected: boolean;
|
|
@@ -104,7 +106,7 @@ declare enum TableFocusTargetElement {
|
|
|
104
106
|
* @alias sap.ui.webc.main.Table
|
|
105
107
|
* @extends sap.ui.webc.base.UI5Element
|
|
106
108
|
* @tagname ui5-table
|
|
107
|
-
* @appenddocs TableColumn TableRow TableGroupRow TableCell
|
|
109
|
+
* @appenddocs sap.ui.webc.main.TableColumn sap.ui.webc.main.TableRow sap.ui.webc.main.TableGroupRow sap.ui.webc.main.TableCell
|
|
108
110
|
* @public
|
|
109
111
|
*/
|
|
110
112
|
declare class Table extends UI5Element {
|
|
@@ -312,10 +314,10 @@ declare class Table extends UI5Element {
|
|
|
312
314
|
* @public
|
|
313
315
|
*/
|
|
314
316
|
columns: Array<TableColumn>;
|
|
315
|
-
static get styles(): import("@ui5/webcomponents-base/
|
|
317
|
+
static get styles(): import("@ui5/webcomponents-base/dist/types.js").StyleData;
|
|
316
318
|
static get render(): (templateResult: object, container: HTMLElement | DocumentFragment, styleStrOrHrefsArr: string | string[] | undefined, forStaticArea: boolean, options: import("lit-html").RenderOptions) => void;
|
|
317
|
-
static get template(): import("@ui5/webcomponents-base/
|
|
318
|
-
static get dependencies():
|
|
319
|
+
static get template(): import("@ui5/webcomponents-base/dist/renderer/executeTemplate.js").TemplateFunction;
|
|
320
|
+
static get dependencies(): (typeof CheckBox | typeof BusyIndicator)[];
|
|
319
321
|
static onDefine(): Promise<void>;
|
|
320
322
|
static i18nBundle: I18nBundle;
|
|
321
323
|
fnHandleF7: (e: CustomEvent) => void;
|
package/dist/Table.js
CHANGED
|
@@ -114,7 +114,7 @@ var TableFocusTargetElement;
|
|
|
114
114
|
* @alias sap.ui.webc.main.Table
|
|
115
115
|
* @extends sap.ui.webc.base.UI5Element
|
|
116
116
|
* @tagname ui5-table
|
|
117
|
-
* @appenddocs TableColumn TableRow TableGroupRow TableCell
|
|
117
|
+
* @appenddocs sap.ui.webc.main.TableColumn sap.ui.webc.main.TableRow sap.ui.webc.main.TableGroupRow sap.ui.webc.main.TableCell
|
|
118
118
|
* @public
|
|
119
119
|
*/
|
|
120
120
|
let Table = Table_1 = class Table extends UI5Element {
|
package/dist/TableCell.d.ts
CHANGED
|
@@ -44,8 +44,8 @@ declare class TableCell extends UI5Element {
|
|
|
44
44
|
* @name sap.ui.webc.main.TableCell.prototype.default
|
|
45
45
|
* @public
|
|
46
46
|
*/
|
|
47
|
-
static get styles(): import("@ui5/webcomponents-base/
|
|
47
|
+
static get styles(): import("@ui5/webcomponents-base/dist/types.js").StyleData;
|
|
48
48
|
static get render(): (templateResult: object, container: HTMLElement | DocumentFragment, styleStrOrHrefsArr: string | string[] | undefined, forStaticArea: boolean, options: import("lit-html").RenderOptions) => void;
|
|
49
|
-
static get template(): import("@ui5/webcomponents-base/
|
|
49
|
+
static get template(): import("@ui5/webcomponents-base/dist/renderer/executeTemplate.js").TemplateFunction;
|
|
50
50
|
}
|
|
51
51
|
export default TableCell;
|
package/dist/TableColumn.d.ts
CHANGED
|
@@ -94,8 +94,8 @@ declare class TableColumn extends UI5Element {
|
|
|
94
94
|
* @name sap.ui.webc.main.TableColumn.prototype.default
|
|
95
95
|
* @public
|
|
96
96
|
*/
|
|
97
|
-
static get styles(): import("@ui5/webcomponents-base/
|
|
97
|
+
static get styles(): import("@ui5/webcomponents-base/dist/types.js").StyleData;
|
|
98
98
|
static get render(): (templateResult: object, container: HTMLElement | DocumentFragment, styleStrOrHrefsArr: string | string[] | undefined, forStaticArea: boolean, options: import("lit-html").RenderOptions) => void;
|
|
99
|
-
static get template(): import("@ui5/webcomponents-base/
|
|
99
|
+
static get template(): import("@ui5/webcomponents-base/dist/renderer/executeTemplate.js").TemplateFunction;
|
|
100
100
|
}
|
|
101
101
|
export default TableColumn;
|
package/dist/TableGroupRow.d.ts
CHANGED
|
@@ -63,9 +63,9 @@ declare class TableGroupRow extends UI5Element implements ITableRow, ITabbable {
|
|
|
63
63
|
* @slot
|
|
64
64
|
* @public
|
|
65
65
|
*/
|
|
66
|
-
static get styles(): import("@ui5/webcomponents-base/
|
|
66
|
+
static get styles(): import("@ui5/webcomponents-base/dist/types.js").StyleData;
|
|
67
67
|
static get render(): (templateResult: object, container: HTMLElement | DocumentFragment, styleStrOrHrefsArr: string | string[] | undefined, forStaticArea: boolean, options: import("lit-html").RenderOptions) => void;
|
|
68
|
-
static get template(): import("@ui5/webcomponents-base/
|
|
68
|
+
static get template(): import("@ui5/webcomponents-base/dist/renderer/executeTemplate.js").TemplateFunction;
|
|
69
69
|
static get dependencies(): (typeof CheckBox)[];
|
|
70
70
|
static i18nBundle: I18nBundle;
|
|
71
71
|
_colSpan?: number;
|
package/dist/TableRow.d.ts
CHANGED
|
@@ -119,9 +119,9 @@ declare class TableRow extends UI5Element implements ITableRow, ITabbable {
|
|
|
119
119
|
* @public
|
|
120
120
|
*/
|
|
121
121
|
cells: Array<TableCell>;
|
|
122
|
-
static get styles(): import("@ui5/webcomponents-base/
|
|
122
|
+
static get styles(): import("@ui5/webcomponents-base/dist/types.js").StyleData;
|
|
123
123
|
static get render(): (templateResult: object, container: HTMLElement | DocumentFragment, styleStrOrHrefsArr: string | string[] | undefined, forStaticArea: boolean, options: import("lit-html").RenderOptions) => void;
|
|
124
|
-
static get template(): import("@ui5/webcomponents-base/
|
|
124
|
+
static get template(): import("@ui5/webcomponents-base/dist/renderer/executeTemplate.js").TemplateFunction;
|
|
125
125
|
static get dependencies(): (typeof CheckBox)[];
|
|
126
126
|
static i18nBundle: I18nBundle;
|
|
127
127
|
visibleCells: Array<TableCell>;
|
package/dist/TimePickerBase.d.ts
CHANGED
|
@@ -87,12 +87,12 @@ declare class TimePickerBase extends UI5Element {
|
|
|
87
87
|
tempValue?: string;
|
|
88
88
|
static i18nBundle: I18nBundle;
|
|
89
89
|
static get render(): (templateResult: object, container: HTMLElement | DocumentFragment, styleStrOrHrefsArr: string | string[] | undefined, forStaticArea: boolean, options: import("lit-html").RenderOptions) => void;
|
|
90
|
-
static get styles(): import("@ui5/webcomponents-base/
|
|
91
|
-
static get staticAreaTemplate(): import("@ui5/webcomponents-base/
|
|
92
|
-
static get template(): import("@ui5/webcomponents-base/
|
|
90
|
+
static get styles(): import("@ui5/webcomponents-base/dist/types.js").StyleData;
|
|
91
|
+
static get staticAreaTemplate(): import("@ui5/webcomponents-base/dist/renderer/executeTemplate.js").TemplateFunction;
|
|
92
|
+
static get template(): import("@ui5/webcomponents-base/dist/renderer/executeTemplate.js").TemplateFunction;
|
|
93
93
|
static get dependencies(): (typeof Icon | typeof Button | typeof ResponsivePopover | typeof Input | typeof TimeSelection)[];
|
|
94
94
|
static onDefine(): Promise<void>;
|
|
95
|
-
static get staticAreaStyles(): import("@ui5/webcomponents-base/
|
|
95
|
+
static get staticAreaStyles(): import("@ui5/webcomponents-base/dist/types.js").StyleData[];
|
|
96
96
|
constructor();
|
|
97
97
|
/**
|
|
98
98
|
* @abstract
|
package/dist/TimeSelection.d.ts
CHANGED
|
@@ -99,8 +99,8 @@ declare class TimeSelection extends UI5Element {
|
|
|
99
99
|
_calendarType: CalendarType;
|
|
100
100
|
static i18nBundle: I18nBundle;
|
|
101
101
|
static get render(): (templateResult: object, container: HTMLElement | DocumentFragment, styleStrOrHrefsArr: string | string[] | undefined, forStaticArea: boolean, options: import("lit-html").RenderOptions) => void;
|
|
102
|
-
static get styles(): import("@ui5/webcomponents-base/
|
|
103
|
-
static get template(): import("@ui5/webcomponents-base/
|
|
102
|
+
static get styles(): import("@ui5/webcomponents-base/dist/types.js").StyleData;
|
|
103
|
+
static get template(): import("@ui5/webcomponents-base/dist/renderer/executeTemplate.js").TemplateFunction;
|
|
104
104
|
static get dependencies(): (typeof WheelSlider)[];
|
|
105
105
|
static onDefine(): Promise<void>;
|
|
106
106
|
constructor();
|
package/dist/Title.d.ts
CHANGED
|
@@ -56,8 +56,8 @@ declare class Title extends UI5Element {
|
|
|
56
56
|
* @public
|
|
57
57
|
*/
|
|
58
58
|
static get render(): (templateResult: object, container: HTMLElement | DocumentFragment, styleStrOrHrefsArr: string | string[] | undefined, forStaticArea: boolean, options: import("lit-html").RenderOptions) => void;
|
|
59
|
-
static get template(): import("@ui5/webcomponents-base/
|
|
60
|
-
static get styles(): import("@ui5/webcomponents-base/
|
|
59
|
+
static get template(): import("@ui5/webcomponents-base/dist/renderer/executeTemplate.js").TemplateFunction;
|
|
60
|
+
static get styles(): import("@ui5/webcomponents-base/dist/types.js").StyleData;
|
|
61
61
|
get normalizedLevel(): string;
|
|
62
62
|
get h1(): boolean;
|
|
63
63
|
get h2(): boolean;
|
package/dist/Tree.js
CHANGED
package/dist/WheelSlider.d.ts
CHANGED
|
@@ -79,8 +79,8 @@ declare class WheelSlider extends UI5Element {
|
|
|
79
79
|
_scroller: ScrollEnablement;
|
|
80
80
|
_prevWheelTimestamp?: number;
|
|
81
81
|
static get render(): (templateResult: object, container: HTMLElement | DocumentFragment, styleStrOrHrefsArr: string | string[] | undefined, forStaticArea: boolean, options: import("lit-html").RenderOptions) => void;
|
|
82
|
-
static get styles(): import("@ui5/webcomponents-base/
|
|
83
|
-
static get template(): import("@ui5/webcomponents-base/
|
|
82
|
+
static get styles(): import("@ui5/webcomponents-base/dist/types.js").StyleData;
|
|
83
|
+
static get template(): import("@ui5/webcomponents-base/dist/renderer/executeTemplate.js").TemplateFunction;
|
|
84
84
|
constructor();
|
|
85
85
|
onBeforeRendering(): void;
|
|
86
86
|
static get dependencies(): (typeof Button)[];
|
package/dist/YearPicker.d.ts
CHANGED
|
@@ -45,8 +45,8 @@ declare class YearPicker extends CalendarPart implements ICalendarPicker {
|
|
|
45
45
|
_firstYear?: number;
|
|
46
46
|
_lastYear?: number;
|
|
47
47
|
static i18nBundle: I18nBundle;
|
|
48
|
-
static get styles(): import("@ui5/webcomponents-base/
|
|
49
|
-
static get template(): import("@ui5/webcomponents-base/
|
|
48
|
+
static get styles(): import("@ui5/webcomponents-base/dist/types.js").StyleData;
|
|
49
|
+
static get template(): import("@ui5/webcomponents-base/dist/renderer/executeTemplate.js").TemplateFunction;
|
|
50
50
|
static onDefine(): Promise<void>;
|
|
51
51
|
get roleDescription(): string;
|
|
52
52
|
onBeforeRendering(): void;
|