Skip to content

Commit d8fe76d

Browse files
committed
run ai wrapper script
1 parent 8514456 commit d8fe76d

File tree

3 files changed

+19
-19
lines changed

3 files changed

+19
-19
lines changed

packages/ai/src/components/Button/index.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ interface ButtonAttributes {
2626
* - **expanded**: Indicates whether the popup controlled by the arrow button is currently expanded.
2727
* Accepts boolean values: `true` or `false`.
2828
*
29-
* **Note:** Available since [v2.6.0](https://github.com/SAP/ui5-webcomponents/releases/tag/v2.6.0) of **@ui5/webcomponents-ai**.
29+
* **Note:** Available since [v2.6.0](https://github.com/UI5/webcomponents/releases/tag/v2.6.0) of **@ui5/webcomponents-ai**.
3030
* @default {}
3131
*/
3232
accessibilityAttributes?: AIButtonAccessibilityAttributes;
@@ -36,7 +36,7 @@ interface ButtonAttributes {
3636
* Set to true when the button is in split mode and a menu with additional options
3737
* is opened by the arrow button. Set back to false when the menu is closed.
3838
*
39-
* **Note:** Available since [v2.6.0](https://github.com/SAP/ui5-webcomponents/releases/tag/v2.6.0) of **@ui5/webcomponents-ai**.
39+
* **Note:** Available since [v2.6.0](https://github.com/UI5/webcomponents/releases/tag/v2.6.0) of **@ui5/webcomponents-ai**.
4040
* @default false
4141
*/
4242
arrowButtonPressed?: boolean;
@@ -116,7 +116,7 @@ interface ButtonPropTypes
116116
*
117117
* __Note__: This is a UI5 Web Component! [Repository](https://github.com/UI5/webcomponents) | [Documentation](https://ui5.github.io/webcomponents/)
118118
*
119-
* @since [2.0.0](https://github.com/SAP/ui5-webcomponents/releases/tag/v2.0.0) of __@ui5/webcomponents-ai__.
119+
* @since [2.0.0](https://github.com/UI5/webcomponents/releases/tag/v2.0.0) of __@ui5/webcomponents-ai__.
120120
* @experimental The Button and ButtonState web components are availabe since 2.0 under an experimental flag and their API and behaviour are subject to change.
121121
*/
122122
const Button = withWebComponent<ButtonPropTypes, ButtonDomRef>(

packages/ai/src/components/ButtonState/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ interface ButtonStateAttributes {
3636
/**
3737
* Defines if the component is in split button mode.
3838
*
39-
* **Note:** Available since [v2.6.0](https://github.com/SAP/ui5-webcomponents/releases/tag/v2.6.0) of **@ui5/webcomponents-ai**.
39+
* **Note:** Available since [v2.6.0](https://github.com/UI5/webcomponents/releases/tag/v2.6.0) of **@ui5/webcomponents-ai**.
4040
* @default false
4141
*/
4242
showArrowButton?: boolean;
@@ -64,7 +64,7 @@ interface ButtonStatePropTypes extends ButtonStateAttributes, Omit<CommonProps,
6464
*
6565
* __Note__: This is a UI5 Web Component! [Repository](https://github.com/UI5/webcomponents) | [Documentation](https://ui5.github.io/webcomponents/)
6666
*
67-
* @since [2.0.0](https://github.com/SAP/ui5-webcomponents/releases/tag/v2.0.0) of __@ui5/webcomponents-ai__.
67+
* @since [2.0.0](https://github.com/UI5/webcomponents/releases/tag/v2.0.0) of __@ui5/webcomponents-ai__.
6868
* @abstract
6969
* @experimental The Button and ButtonState web components are available since 2.0 under an experimental flag and their API and behaviour are subject to change.
7070
*/

packages/ai/src/components/PromptInput/index.tsx

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -12,23 +12,23 @@ interface PromptInputAttributes {
1212
*
1313
* **Note:** A disabled component is completely noninteractive.
1414
*
15-
* **Note:** Available since [v2.0.0](https://github.com/SAP/ui5-webcomponents/releases/tag/v2.0.0) of **@ui5/webcomponents-ai**.
15+
* **Note:** Available since [v2.0.0](https://github.com/UI5/webcomponents/releases/tag/v2.0.0) of **@ui5/webcomponents-ai**.
1616
* @default false
1717
*/
1818
disabled?: boolean;
1919

2020
/**
2121
* Defines the label of the input field.
2222
*
23-
* **Note:** Available since [v2.0.0](https://github.com/SAP/ui5-webcomponents/releases/tag/v2.0.0) of **@ui5/webcomponents-ai**.
23+
* **Note:** Available since [v2.0.0](https://github.com/UI5/webcomponents/releases/tag/v2.0.0) of **@ui5/webcomponents-ai**.
2424
* @default undefined
2525
*/
2626
label?: string | undefined;
2727

2828
/**
2929
* Sets the maximum number of characters available in the input field.
3030
*
31-
* **Note:** Available since [v2.0.0](https://github.com/SAP/ui5-webcomponents/releases/tag/v2.0.0) of **@ui5/webcomponents-ai**.
31+
* **Note:** Available since [v2.0.0](https://github.com/UI5/webcomponents/releases/tag/v2.0.0) of **@ui5/webcomponents-ai**.
3232
* @default undefined
3333
*/
3434
maxlength?: number | undefined;
@@ -37,7 +37,7 @@ interface PromptInputAttributes {
3737
* Defines a short hint intended to aid the user with data entry when the
3838
* component has no value.
3939
*
40-
* **Note:** Available since [v2.0.0](https://github.com/SAP/ui5-webcomponents/releases/tag/v2.0.0) of **@ui5/webcomponents-ai**.
40+
* **Note:** Available since [v2.0.0](https://github.com/UI5/webcomponents/releases/tag/v2.0.0) of **@ui5/webcomponents-ai**.
4141
* @default undefined
4242
*/
4343
placeholder?: string | undefined;
@@ -48,15 +48,15 @@ interface PromptInputAttributes {
4848
* **Note:** A read-only component is not editable,
4949
* but still provides visual feedback upon user interaction.
5050
*
51-
* **Note:** Available since [v2.0.0](https://github.com/SAP/ui5-webcomponents/releases/tag/v2.0.0) of **@ui5/webcomponents-ai**.
51+
* **Note:** Available since [v2.0.0](https://github.com/UI5/webcomponents/releases/tag/v2.0.0) of **@ui5/webcomponents-ai**.
5252
* @default false
5353
*/
5454
readonly?: boolean;
5555

5656
/**
5757
* Defines whether the clear icon of the input will be shown.
5858
*
59-
* **Note:** Available since [v2.0.0](https://github.com/SAP/ui5-webcomponents/releases/tag/v2.0.0) of **@ui5/webcomponents-ai**.
59+
* **Note:** Available since [v2.0.0](https://github.com/UI5/webcomponents/releases/tag/v2.0.0) of **@ui5/webcomponents-ai**.
6060
* @default false
6161
*/
6262
showClearIcon?: boolean;
@@ -70,7 +70,7 @@ interface PromptInputAttributes {
7070
* If set to `true` the characters exceeding the `maxlength` value are selected on
7171
* paste and the counter below the component displays their number.
7272
*
73-
* **Note:** Available since [v2.0.0](https://github.com/SAP/ui5-webcomponents/releases/tag/v2.0.0) of **@ui5/webcomponents-ai**.
73+
* **Note:** Available since [v2.0.0](https://github.com/UI5/webcomponents/releases/tag/v2.0.0) of **@ui5/webcomponents-ai**.
7474
* @default false
7575
*/
7676
showExceededText?: boolean;
@@ -84,14 +84,14 @@ interface PromptInputAttributes {
8484
/**
8585
* Defines the value of the component.
8686
*
87-
* **Note:** Available since [v2.0.0](https://github.com/SAP/ui5-webcomponents/releases/tag/v2.0.0) of **@ui5/webcomponents-ai**.
87+
* **Note:** Available since [v2.0.0](https://github.com/UI5/webcomponents/releases/tag/v2.0.0) of **@ui5/webcomponents-ai**.
8888
*/
8989
value?: string;
9090

9191
/**
9292
* Defines the value state of the component.
9393
*
94-
* **Note:** Available since [v2.0.0](https://github.com/SAP/ui5-webcomponents/releases/tag/v2.0.0) of **@ui5/webcomponents-ai**.
94+
* **Note:** Available since [v2.0.0](https://github.com/UI5/webcomponents/releases/tag/v2.0.0) of **@ui5/webcomponents-ai**.
9595
* @default "None"
9696
*/
9797
valueState?: ValueState | keyof typeof ValueState;
@@ -128,16 +128,16 @@ interface PromptInputPropTypes
128128
* 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.
129129
*
130130
* __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.
131-
* Learn more about it [here](https://sap.github.io/ui5-webcomponents-react/v2/?path=/docs/knowledge-base-handling-slots--docs).
131+
* Learn more about it [here](https://ui5.github.io/webcomponents-react/v2/?path=/docs/knowledge-base-handling-slots--docs).
132132
*
133-
* **Note:** Available since [v2.0.0](https://github.com/SAP/ui5-webcomponents/releases/tag/v2.0.0) of **@ui5/webcomponents-ai**.
133+
* **Note:** Available since [v2.0.0](https://github.com/UI5/webcomponents/releases/tag/v2.0.0) of **@ui5/webcomponents-ai**.
134134
*/
135135
valueStateMessage?: UI5WCSlotsNode;
136136
/**
137137
* Fired when the input operation has finished by pressing Enter
138138
* or on focusout.
139139
*
140-
* **Note:** Available since [v2.0.0](https://github.com/SAP/ui5-webcomponents/releases/tag/v2.0.0) of **@ui5/webcomponents-ai**.
140+
* **Note:** Available since [v2.0.0](https://github.com/UI5/webcomponents/releases/tag/v2.0.0) of **@ui5/webcomponents-ai**.
141141
*
142142
* | cancelable | bubbles |
143143
* | :--------: | :-----: |
@@ -149,7 +149,7 @@ interface PromptInputPropTypes
149149
* Fired when the value of the component changes at each keystroke,
150150
* and when a suggestion item has been selected.
151151
*
152-
* **Note:** Available since [v2.0.0](https://github.com/SAP/ui5-webcomponents/releases/tag/v2.0.0) of **@ui5/webcomponents-ai**.
152+
* **Note:** Available since [v2.0.0](https://github.com/UI5/webcomponents/releases/tag/v2.0.0) of **@ui5/webcomponents-ai**.
153153
*
154154
* | cancelable | bubbles |
155155
* | :--------: | :-----: |
@@ -161,7 +161,7 @@ interface PromptInputPropTypes
161161
* Fired when the input operation has finished by pressing Enter
162162
* or AI button is clicked.
163163
*
164-
* **Note:** Available since [v2.0.0](https://github.com/SAP/ui5-webcomponents/releases/tag/v2.0.0) of **@ui5/webcomponents-ai**.
164+
* **Note:** Available since [v2.0.0](https://github.com/UI5/webcomponents/releases/tag/v2.0.0) of **@ui5/webcomponents-ai**.
165165
*
166166
* | cancelable | bubbles |
167167
* | :--------: | :-----: |

0 commit comments

Comments
 (0)