Skip to content

Commit 8514456

Browse files
committed
run compat wrapper script
1 parent 30d3af5 commit 8514456

File tree

3 files changed

+16
-16
lines changed

3 files changed

+16
-16
lines changed

packages/compat/src/components/Table/index.tsx

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ interface TableAttributes {
2020
/**
2121
* Defines the accessible ARIA name of the component.
2222
*
23-
* **Note:** Available since [v2.0.0](https://github.com/SAP/ui5-webcomponents/releases/tag/v2.0.0) of **@ui5/webcomponents-compat**.
23+
* **Note:** Available since [v2.0.0](https://github.com/UI5/webcomponents/releases/tag/v2.0.0) of **@ui5/webcomponents-compat**.
2424
* @default undefined
2525
*/
2626
accessibleName?: string | undefined;
2727

2828
/**
2929
* Receives id(or many ids) of the elements that label the component.
3030
*
31-
* **Note:** Available since [v2.0.0](https://github.com/SAP/ui5-webcomponents/releases/tag/v2.0.0) of **@ui5/webcomponents-compat**.
31+
* **Note:** Available since [v2.0.0](https://github.com/UI5/webcomponents/releases/tag/v2.0.0) of **@ui5/webcomponents-compat**.
3232
* @default undefined
3333
*/
3434
accessibleNameRef?: string | undefined;
@@ -39,7 +39,7 @@ interface TableAttributes {
3939
* In this state the component's opacity is reduced
4040
* and busy indicator is displayed at the bottom of the table.
4141
*
42-
* **Note:** Available since [v2.0.0](https://github.com/SAP/ui5-webcomponents/releases/tag/v2.0.0) of **@ui5/webcomponents-compat**.
42+
* **Note:** Available since [v2.0.0](https://github.com/UI5/webcomponents/releases/tag/v2.0.0) of **@ui5/webcomponents-compat**.
4343
* @default false
4444
*/
4545
busy?: boolean;
@@ -65,7 +65,7 @@ interface TableAttributes {
6565
* **Restrictions:** `growing="Scroll"` is not supported for Internet Explorer,
6666
* and the component will fallback to `growing="Button"`.
6767
*
68-
* **Note:** Available since [v2.0.0](https://github.com/SAP/ui5-webcomponents/releases/tag/v2.0.0) of **@ui5/webcomponents-compat**.
68+
* **Note:** Available since [v2.0.0](https://github.com/UI5/webcomponents/releases/tag/v2.0.0) of **@ui5/webcomponents-compat**.
6969
* @default "None"
7070
*/
7171
growing?: TableGrowingMode | keyof typeof TableGrowingMode;
@@ -75,7 +75,7 @@ interface TableAttributes {
7575
*
7676
* **Note:** This property takes effect if `growing` is set to `Button`.
7777
*
78-
* **Note:** Available since [v2.0.0](https://github.com/SAP/ui5-webcomponents/releases/tag/v2.0.0) of **@ui5/webcomponents-compat**.
78+
* **Note:** Available since [v2.0.0](https://github.com/UI5/webcomponents/releases/tag/v2.0.0) of **@ui5/webcomponents-compat**.
7979
* @default undefined
8080
*/
8181
growingButtonSubtext?: string | undefined;
@@ -88,23 +88,23 @@ interface TableAttributes {
8888
*
8989
* **Note:** This property takes effect if `growing` is set to `Button`.
9090
*
91-
* **Note:** Available since [v2.0.0](https://github.com/SAP/ui5-webcomponents/releases/tag/v2.0.0) of **@ui5/webcomponents-compat**.
91+
* **Note:** Available since [v2.0.0](https://github.com/UI5/webcomponents/releases/tag/v2.0.0) of **@ui5/webcomponents-compat**.
9292
* @default undefined
9393
*/
9494
growingButtonText?: string | undefined;
9595

9696
/**
9797
* Defines if the value of `noDataText` will be diplayed when there is no rows present in the table.
9898
*
99-
* **Note:** Available since [v2.0.0](https://github.com/SAP/ui5-webcomponents/releases/tag/v2.0.0) of **@ui5/webcomponents-compat**.
99+
* **Note:** Available since [v2.0.0](https://github.com/UI5/webcomponents/releases/tag/v2.0.0) of **@ui5/webcomponents-compat**.
100100
* @default false
101101
*/
102102
hideNoData?: boolean;
103103

104104
/**
105105
* Defines the mode of the component.
106106
*
107-
* **Note:** Available since [v2.0.0](https://github.com/SAP/ui5-webcomponents/releases/tag/v2.0.0) of **@ui5/webcomponents-compat**.
107+
* **Note:** Available since [v2.0.0](https://github.com/UI5/webcomponents/releases/tag/v2.0.0) of **@ui5/webcomponents-compat**.
108108
* @default "None"
109109
*/
110110
mode?: TableMode | keyof typeof TableMode;
@@ -167,15 +167,15 @@ interface TablePropTypes
167167
* Since you can't change the DOM order of slots when declaring them within a prop, it might prove beneficial to manually mount them as part of the component's children, especially when facing problems with the reading order of screen readers.
168168
*
169169
* __Note:__ When passing a custom React component to this prop, you have to make sure your component reads the `slot` prop and appends it to the most outer element of your component.
170-
* Learn more about it [here](https://sap.github.io/ui5-webcomponents-react/v2/?path=/docs/knowledge-base-handling-slots--docs).
170+
* Learn more about it [here](https://ui5.github.io/webcomponents-react/v2/?path=/docs/knowledge-base-handling-slots--docs).
171171
*/
172172
columns?: UI5WCSlotsNode;
173173
/**
174174
* Fired when the user presses the `More` button or scrolls to the table's end.
175175
*
176176
* **Note:** The event will be fired if `growing` is set to `Button` or `Scroll`.
177177
*
178-
* **Note:** Available since [v2.0.0](https://github.com/SAP/ui5-webcomponents/releases/tag/v2.0.0) of **@ui5/webcomponents-compat**.
178+
* **Note:** Available since [v2.0.0](https://github.com/UI5/webcomponents/releases/tag/v2.0.0) of **@ui5/webcomponents-compat**.
179179
*
180180
* | cancelable | bubbles |
181181
* | :--------: | :-----: |
@@ -186,7 +186,7 @@ interface TablePropTypes
186186
/**
187187
* Fired when `TableColumn` is shown as a pop-in instead of hiding it.
188188
*
189-
* **Note:** Available since [v2.0.0](https://github.com/SAP/ui5-webcomponents/releases/tag/v2.0.0) of **@ui5/webcomponents-compat**.
189+
* **Note:** Available since [v2.0.0](https://github.com/UI5/webcomponents/releases/tag/v2.0.0) of **@ui5/webcomponents-compat**.
190190
*
191191
* | cancelable | bubbles |
192192
* | :--------: | :-----: |
@@ -207,7 +207,7 @@ interface TablePropTypes
207207
* Fired when selection is changed by user interaction
208208
* in `SingleSelect` and `MultiSelect` modes.
209209
*
210-
* **Note:** Available since [v2.0.0](https://github.com/SAP/ui5-webcomponents/releases/tag/v2.0.0) of **@ui5/webcomponents-compat**.
210+
* **Note:** Available since [v2.0.0](https://github.com/UI5/webcomponents/releases/tag/v2.0.0) of **@ui5/webcomponents-compat**.
211211
*
212212
* | cancelable | bubbles |
213213
* | :--------: | :-----: |

packages/compat/src/components/TableGroupRow/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ interface TableGroupRowPropTypes extends TableGroupRowAttributes, Omit<CommonPro
2727
*
2828
* __Note__: This is a UI5 Web Component! [Repository](https://github.com/UI5/webcomponents) | [Documentation](https://ui5.github.io/webcomponents/)
2929
*
30-
* @since [2.0.0](https://github.com/SAP/ui5-webcomponents/releases/tag/v2.0.0) of __@ui5/webcomponents-compat__.
30+
* @since [2.0.0](https://github.com/UI5/webcomponents/releases/tag/v2.0.0) of __@ui5/webcomponents-compat__.
3131
* @deprecated Deprecated as of version 2.12.0, use `@ui5/webcomponents/dist/Table.js` instead.
3232
*/
3333
const TableGroupRow = withWebComponent<TableGroupRowPropTypes, TableGroupRowDomRef>(

packages/compat/src/components/TableRow/index.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ interface TableRowAttributes {
1414
/**
1515
* Indicates if the table row is navigated.
1616
*
17-
* **Note:** Available since [v2.0.0](https://github.com/SAP/ui5-webcomponents/releases/tag/v2.0.0) of **@ui5/webcomponents-compat**.
17+
* **Note:** Available since [v2.0.0](https://github.com/UI5/webcomponents/releases/tag/v2.0.0) of **@ui5/webcomponents-compat**.
1818
* @default false
1919
*/
2020
navigated?: boolean;
2121

2222
/**
2323
* Defines the row's selected state.
2424
*
25-
* **Note:** Available since [v2.0.0](https://github.com/SAP/ui5-webcomponents/releases/tag/v2.0.0) of **@ui5/webcomponents-compat**.
25+
* **Note:** Available since [v2.0.0](https://github.com/UI5/webcomponents/releases/tag/v2.0.0) of **@ui5/webcomponents-compat**.
2626
* @default false
2727
*/
2828
selected?: boolean;
@@ -33,7 +33,7 @@ interface TableRowAttributes {
3333
* **Note:** When set to `Active`, the item will provide visual response upon press,
3434
* while with type `Inactive`-will not.
3535
*
36-
* **Note:** Available since [v2.0.0](https://github.com/SAP/ui5-webcomponents/releases/tag/v2.0.0) of **@ui5/webcomponents-compat**.
36+
* **Note:** Available since [v2.0.0](https://github.com/UI5/webcomponents/releases/tag/v2.0.0) of **@ui5/webcomponents-compat**.
3737
* @default "Inactive"
3838
*/
3939
type?: TableRowType | keyof typeof TableRowType;

0 commit comments

Comments
 (0)