@fundamental-ngx/ui5-webcomponents-ai 0.58.0-rc.7 → 0.58.0-rc.71
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/README.md +70 -1
- package/fesm2022/fundamental-ngx-ui5-webcomponents-ai.mjs +119 -0
- package/fesm2022/fundamental-ngx-ui5-webcomponents-ai.mjs.map +1 -1
- package/index.d.ts +111 -0
- package/package.json +3 -27
- package/button/index.d.ts +0 -68
- package/button-state/index.d.ts +0 -44
- package/fesm2022/fundamental-ngx-ui5-webcomponents-ai-button-state.mjs +0 -90
- package/fesm2022/fundamental-ngx-ui5-webcomponents-ai-button-state.mjs.map +0 -1
- package/fesm2022/fundamental-ngx-ui5-webcomponents-ai-button.mjs +0 -129
- package/fesm2022/fundamental-ngx-ui5-webcomponents-ai-button.mjs.map +0 -1
- package/fesm2022/fundamental-ngx-ui5-webcomponents-ai-input.mjs +0 -108
- package/fesm2022/fundamental-ngx-ui5-webcomponents-ai-input.mjs.map +0 -1
- package/fesm2022/fundamental-ngx-ui5-webcomponents-ai-prompt-input.mjs +0 -149
- package/fesm2022/fundamental-ngx-ui5-webcomponents-ai-prompt-input.mjs.map +0 -1
- package/fesm2022/fundamental-ngx-ui5-webcomponents-ai-text-area.mjs +0 -102
- package/fesm2022/fundamental-ngx-ui5-webcomponents-ai-text-area.mjs.map +0 -1
- package/fesm2022/fundamental-ngx-ui5-webcomponents-ai-theming.mjs +0 -23
- package/fesm2022/fundamental-ngx-ui5-webcomponents-ai-theming.mjs.map +0 -1
- package/input/index.d.ts +0 -47
- package/prompt-input/index.d.ts +0 -82
- package/text-area/index.d.ts +0 -42
- package/theming/index.d.ts +0 -11
package/prompt-input/index.d.ts
DELETED
|
@@ -1,82 +0,0 @@
|
|
|
1
|
-
import * as _angular_core from '@angular/core';
|
|
2
|
-
import { AfterViewInit, ElementRef, Injector } from '@angular/core';
|
|
3
|
-
import _PromptInput from '@ui5/webcomponents-ai/dist/PromptInput.js';
|
|
4
|
-
import { UI5CustomEvent } from '@ui5/webcomponents-base';
|
|
5
|
-
|
|
6
|
-
declare class PromptInput implements AfterViewInit {
|
|
7
|
-
/**
|
|
8
|
-
* Defines the value of the component.
|
|
9
|
-
*/
|
|
10
|
-
value: _angular_core.InputSignal<string | undefined>;
|
|
11
|
-
/**
|
|
12
|
-
* Defines a short hint intended to aid the user with data entry when the
|
|
13
|
-
component has no value.
|
|
14
|
-
*/
|
|
15
|
-
placeholder: _angular_core.InputSignal<string | undefined>;
|
|
16
|
-
/**
|
|
17
|
-
* Defines the label of the input field.
|
|
18
|
-
*/
|
|
19
|
-
label: _angular_core.InputSignal<string | undefined>;
|
|
20
|
-
/**
|
|
21
|
-
* Defines whether the clear icon of the input will be shown.
|
|
22
|
-
*/
|
|
23
|
-
showClearIcon: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
24
|
-
/**
|
|
25
|
-
* Determines whether the characters exceeding the maximum allowed character count are visible
|
|
26
|
-
in the component.
|
|
27
|
-
|
|
28
|
-
If set to `false`, the user is not allowed to enter more characters than what is set in the
|
|
29
|
-
`maxlength` property.
|
|
30
|
-
If set to `true` the characters exceeding the `maxlength` value are selected on
|
|
31
|
-
paste and the counter below the component displays their number.
|
|
32
|
-
*/
|
|
33
|
-
showExceededText: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
34
|
-
/**
|
|
35
|
-
* Defines whether the component is in disabled state.
|
|
36
|
-
|
|
37
|
-
**Note:** A disabled component is completely noninteractive.
|
|
38
|
-
*/
|
|
39
|
-
disabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
40
|
-
/**
|
|
41
|
-
* Defines whether the component is read-only.
|
|
42
|
-
|
|
43
|
-
**Note:** A read-only component is not editable,
|
|
44
|
-
but still provides visual feedback upon user interaction.
|
|
45
|
-
*/
|
|
46
|
-
readonly: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
47
|
-
/**
|
|
48
|
-
* Sets the maximum number of characters available in the input field.
|
|
49
|
-
*/
|
|
50
|
-
maxlength: _angular_core.InputSignal<number | undefined>;
|
|
51
|
-
/**
|
|
52
|
-
* Defines the value state of the component.
|
|
53
|
-
*/
|
|
54
|
-
valueState: _angular_core.InputSignal<"None" | "Positive" | "Critical" | "Negative" | "Information" | undefined>;
|
|
55
|
-
/**
|
|
56
|
-
* Defines whether the component should show suggestions, if such are present.
|
|
57
|
-
*/
|
|
58
|
-
showSuggestions: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
59
|
-
/**
|
|
60
|
-
* Fired when the input operation has finished by pressing Enter
|
|
61
|
-
or AI button is clicked.
|
|
62
|
-
*/
|
|
63
|
-
ui5Submit: _angular_core.OutputEmitterRef<UI5CustomEvent<_PromptInput, "submit">>;
|
|
64
|
-
/**
|
|
65
|
-
* Fired when the value of the component changes at each keystroke,
|
|
66
|
-
and when a suggestion item has been selected.
|
|
67
|
-
*/
|
|
68
|
-
ui5Input: _angular_core.OutputEmitterRef<UI5CustomEvent<_PromptInput, "input">>;
|
|
69
|
-
/**
|
|
70
|
-
* Fired when the input operation has finished by pressing Enter
|
|
71
|
-
or on focusout.
|
|
72
|
-
*/
|
|
73
|
-
ui5Change: _angular_core.OutputEmitterRef<UI5CustomEvent<_PromptInput, "change">>;
|
|
74
|
-
elementRef: ElementRef<_PromptInput>;
|
|
75
|
-
injector: Injector;
|
|
76
|
-
get element(): _PromptInput;
|
|
77
|
-
ngAfterViewInit(): void;
|
|
78
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PromptInput, never>;
|
|
79
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PromptInput, "ui5-ai-prompt-input, [ui5-ai-prompt-input]", ["ui5PromptInput"], { "value": { "alias": "value"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "showClearIcon": { "alias": "showClearIcon"; "required": false; "isSignal": true; }; "showExceededText": { "alias": "showExceededText"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "maxlength": { "alias": "maxlength"; "required": false; "isSignal": true; }; "valueState": { "alias": "valueState"; "required": false; "isSignal": true; }; "showSuggestions": { "alias": "showSuggestions"; "required": false; "isSignal": true; }; }, { "ui5Submit": "ui5Submit"; "ui5Input": "ui5Input"; "ui5Change": "ui5Change"; }, never, ["*"], true, never>;
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
export { PromptInput };
|
package/text-area/index.d.ts
DELETED
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
import * as _angular_core from '@angular/core';
|
|
2
|
-
import { AfterViewInit, ElementRef, Injector } from '@angular/core';
|
|
3
|
-
import _TextArea from '@ui5/webcomponents-ai/dist/TextArea.js';
|
|
4
|
-
import { UI5CustomEvent } from '@ui5/webcomponents-base';
|
|
5
|
-
|
|
6
|
-
declare class TextArea implements AfterViewInit {
|
|
7
|
-
/**
|
|
8
|
-
* Defines whether the `ui5-ai-textarea` is currently in a loading(processing) state.
|
|
9
|
-
*/
|
|
10
|
-
loading: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
11
|
-
/**
|
|
12
|
-
* Defines the prompt description of the current action.
|
|
13
|
-
*/
|
|
14
|
-
promptDescription: _angular_core.InputSignal<string | undefined>;
|
|
15
|
-
/**
|
|
16
|
-
* Indicates the index of the currently displayed version.
|
|
17
|
-
*/
|
|
18
|
-
currentVersion: _angular_core.InputSignal<number | undefined>;
|
|
19
|
-
/**
|
|
20
|
-
* Indicates the total number of result versions available.
|
|
21
|
-
|
|
22
|
-
Notes:
|
|
23
|
-
Versioning is hidden if the value is `0`
|
|
24
|
-
*/
|
|
25
|
-
totalVersions: _angular_core.InputSignal<number | undefined>;
|
|
26
|
-
/**
|
|
27
|
-
* Fired when the user clicks on version navigation buttons.
|
|
28
|
-
*/
|
|
29
|
-
ui5VersionChange: _angular_core.OutputEmitterRef<UI5CustomEvent<_TextArea, "version-change">>;
|
|
30
|
-
/**
|
|
31
|
-
* Fired when the user requests to stop AI text generation.
|
|
32
|
-
*/
|
|
33
|
-
ui5StopGeneration: _angular_core.OutputEmitterRef<UI5CustomEvent<_TextArea, "stop-generation">>;
|
|
34
|
-
elementRef: ElementRef<_TextArea>;
|
|
35
|
-
injector: Injector;
|
|
36
|
-
get element(): _TextArea;
|
|
37
|
-
ngAfterViewInit(): void;
|
|
38
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TextArea, never>;
|
|
39
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TextArea, "ui5-ai-textarea, [ui5-ai-textarea]", ["ui5TextArea"], { "loading": { "alias": "loading"; "required": false; "isSignal": true; }; "promptDescription": { "alias": "promptDescription"; "required": false; "isSignal": true; }; "currentVersion": { "alias": "currentVersion"; "required": false; "isSignal": true; }; "totalVersions": { "alias": "totalVersions"; "required": false; "isSignal": true; }; }, { "ui5VersionChange": "ui5VersionChange"; "ui5StopGeneration": "ui5StopGeneration"; }, never, ["*"], true, never>;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
export { TextArea };
|
package/theming/index.d.ts
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { WebcomponentsThemingProvider } from '@fundamental-ngx/ui5-webcomponents-base/theming';
|
|
2
|
-
import * as i0 from '@angular/core';
|
|
3
|
-
|
|
4
|
-
declare class Ui5WebcomponentsAiThemingService extends WebcomponentsThemingProvider {
|
|
5
|
-
name: string;
|
|
6
|
-
constructor();
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<Ui5WebcomponentsAiThemingService, never>;
|
|
8
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<Ui5WebcomponentsAiThemingService>;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
export { Ui5WebcomponentsAiThemingService };
|