@ui5/webcomponents-ai 0.0.0-69dbc5a15 → 0.0.0-896d5863e
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/CHANGELOG.md +372 -0
- package/README.md +1 -1
- package/cypress.config.js +3 -0
- package/dist/.tsbuildinfo +1 -0
- package/dist/Assets-fetch.d.ts +3 -0
- package/dist/Assets-fetch.js +6 -0
- package/dist/Assets-fetch.js.map +1 -0
- package/dist/Assets-node.d.ts +14 -0
- package/dist/Assets-node.js +17 -0
- package/dist/Assets-node.js.map +1 -0
- package/dist/Button.d.ts +37 -3
- package/dist/Button.js +62 -12
- package/dist/Button.js.map +1 -1
- package/dist/ButtonState.d.ts +4 -4
- package/dist/ButtonState.js +5 -5
- package/dist/ButtonState.js.map +1 -1
- package/dist/ButtonTemplate.js +1 -1
- package/dist/ButtonTemplate.js.map +1 -1
- package/dist/PromptInput.d.ts +6 -11
- package/dist/PromptInput.js +3 -5
- package/dist/PromptInput.js.map +1 -1
- package/dist/css/themes/Button.css +1 -1
- package/dist/custom-elements-internal.json +52 -13
- package/dist/custom-elements.json +50 -12
- package/dist/generated/assets/i18n/messagebundle_de.json +1 -1
- package/dist/generated/assets/i18n/messagebundle_en.json +1 -1
- package/dist/generated/assets/i18n/messagebundle_en_US_sappsd.json +1 -1
- package/dist/generated/assets/i18n/messagebundle_en_US_saprigi.json +1 -1
- package/dist/generated/assets/i18n/messagebundle_en_US_saptrc.json +1 -1
- package/dist/generated/assets/i18n/messagebundle_id.json +1 -0
- package/dist/generated/i18n/i18n-defaults.d.ts +2 -1
- package/dist/generated/i18n/i18n-defaults.js +2 -1
- package/dist/generated/i18n/i18n-defaults.js.map +1 -1
- package/dist/generated/json-imports/Themes-fetch.js +1 -1
- package/dist/generated/json-imports/Themes-fetch.js.map +1 -1
- package/dist/generated/json-imports/Themes-node.d.ts +1 -0
- package/dist/generated/json-imports/Themes-node.js +21 -0
- package/dist/generated/json-imports/Themes-node.js.map +1 -0
- package/dist/generated/json-imports/Themes.js +1 -1
- package/dist/generated/json-imports/Themes.js.map +1 -1
- package/dist/generated/json-imports/i18n-fetch.js +3 -1
- package/dist/generated/json-imports/i18n-fetch.js.map +1 -1
- package/dist/generated/json-imports/i18n-node.d.ts +1 -0
- package/dist/generated/json-imports/i18n-node.js +120 -0
- package/dist/generated/json-imports/i18n-node.js.map +1 -0
- package/dist/generated/json-imports/i18n.js +3 -1
- package/dist/generated/json-imports/i18n.js.map +1 -1
- package/dist/generated/themes/Button.css.d.ts +1 -1
- package/dist/generated/themes/Button.css.js +3 -3
- package/dist/generated/themes/Button.css.js.map +1 -1
- package/dist/generated/themes/PromptInput.css.js +2 -2
- package/dist/generated/themes/PromptInput.css.js.map +1 -1
- package/dist/vscode.html-custom-data.json +11 -6
- package/dist/web-types.json +26 -13
- package/package-scripts.cjs +4 -0
- package/package.json +12 -8
- package/src/ButtonTemplate.tsx +1 -0
- package/src/i18n/messagebundle.properties +5 -1
- package/src/i18n/messagebundle_de.properties +3 -0
- package/src/i18n/messagebundle_en.properties +3 -0
- package/src/i18n/messagebundle_en_US_sappsd.properties +3 -0
- package/src/i18n/messagebundle_en_US_saprigi.properties +3 -0
- package/src/i18n/messagebundle_en_US_saptrc.properties +3 -0
- package/tsconfig.json +25 -4
- package/dist/tsconfig.tsbuildinfo +0 -1
package/dist/web-types.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://raw.githubusercontent.com/JetBrains/web-types/master/schema/web-types.json",
|
|
3
3
|
"name": "@ui5/webcomponents-ai",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.14.0-rc.7",
|
|
5
5
|
"description-markup": "markdown",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
8
8
|
"elements": [
|
|
9
9
|
{
|
|
10
10
|
"name": "ui5-ai-button",
|
|
11
|
-
"description": "### Overview\n\nThe `ui5-ai-button` component serves as a button for AI-related scenarios. Users can trigger actions by clicking or tapping the `ui5-ai-button`\nor by pressing keyboard keys like [Enter] or [Space].\n\n### Usage\n\nFor the `ui5-ai-button` user interface, you can define one or more button states by placing `ui5-ai-button-state` components in their default slot.\nEach state has a name for identification and can include text, an icon, and an end icon, as needed for its purpose.\nYou can define a split mode for the `ui5-ai-button`, which will results in displaying an arrow button for additional actions.\n\nYou can choose from a set of predefined designs for `ui5-ai-button` (as in `ui5-button`) to match the desired styling.\n\nThe `ui5-ai-button` can be activated by clicking or tapping it. You can change the button state in the click event handler. When the button is\nin split mode, you can activate the default button action by clicking or tapping it, or by pressing keyboard keys like [Enter] or [Space].\nYou can activate the arrow button by clicking or tapping it, or by pressing keyboard keys like [Arrow Up], [Arrow Down], or [F4].\nTo display additional actions, you can attach a menu to the arrow button.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents-ai/dist/Button.js\";`\n---\n\n\n### **Events:**\n - **click** - Fired when the component is activated either with a\nmouse/tap or by using the Enter or Space key.\n- **arrow-click** - Fired when the component is in split mode and after the arrow button\nis activated either by clicking or tapping it or by using the [Arrow Up] / [Arrow Down],\n[Alt] + [Arrow Up]/ [Arrow Down], or [F4] keyboard keys.\n\n### **Slots:**\n - **default** - Defines the available states of the component.\n**Note:** Although this slot accepts HTML Elements, it is strongly recommended that\nyou only use `ui5-ai-button-state` components in order to preserve the intended design.",
|
|
11
|
+
"description": "### Overview\n\nThe `ui5-ai-button` component serves as a button for AI-related scenarios. Users can trigger actions by clicking or tapping the `ui5-ai-button`\nor by pressing keyboard keys like [Enter] or [Space].\n\n### Usage\n\nFor the `ui5-ai-button` user interface, you can define one or more button states by placing `ui5-ai-button-state` components in their default slot.\nEach state has a name for identification and can include text, an icon, and an end icon, as needed for its purpose.\nYou can define a split mode for the `ui5-ai-button`, which will results in displaying an arrow button for additional actions.\n\nYou can choose from a set of predefined designs for `ui5-ai-button` (as in `ui5-button`) to match the desired styling.\n\nThe `ui5-ai-button` can be activated by clicking or tapping it. You can change the button state in the click event handler. When the button is\nin split mode, you can activate the default button action by clicking or tapping it, or by pressing keyboard keys like [Enter] or [Space].\nYou can activate the arrow button by clicking or tapping it, or by pressing keyboard keys like [Arrow Up], [Arrow Down], or [F4].\nTo display additional actions, you can attach a menu to the arrow button.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents-ai/dist/Button.js\";`\n---\n\n\n### **Events:**\n - **click** - Fired when the component is activated either with a\nmouse/tap or by using the Enter or Space key.\n- **arrow-button-click** - Fired when the component is in split mode and after the arrow button\nis activated either by clicking or tapping it or by using the [Arrow Up] / [Arrow Down],\n[Alt] + [Arrow Up]/ [Arrow Down], or [F4] keyboard keys.\n\n### **Slots:**\n - **default** - Defines the available states of the component.\n**Note:** Although this slot accepts HTML Elements, it is strongly recommended that\nyou only use `ui5-ai-button-state` components in order to preserve the intended design.",
|
|
12
12
|
"doc-url": "",
|
|
13
13
|
"attributes": [
|
|
14
14
|
{
|
|
@@ -30,9 +30,17 @@
|
|
|
30
30
|
"value": { "type": "string | undefined", "default": "undefined" }
|
|
31
31
|
},
|
|
32
32
|
{
|
|
33
|
-
"name": "
|
|
33
|
+
"name": "arrow-button-pressed",
|
|
34
34
|
"description": "Defines the active state of the arrow button in split mode.\nSet to true when the button is in split mode and a menu with additional options\nis opened by the arrow button. Set back to false when the menu is closed.",
|
|
35
35
|
"value": { "type": "boolean", "default": "false" }
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"name": "accessibility-attributes",
|
|
39
|
+
"description": "Defines the additional accessibility attributes that will be applied to the component.\n\nThis property allows for fine-tuned control of ARIA attributes for screen reader support.\nIt accepts an object with the following optional fields:\n\n- **root**: Accessibility attributes that will be applied to the root element.\n - **hasPopup**: Indicates the availability and type of interactive popup element (such as a menu or dialog).\n Accepts string values: `\"dialog\"`, `\"grid\"`, `\"listbox\"`, `\"menu\"`, or `\"tree\"`.\n - **roleDescription**: Defines a human-readable description for the button's role.\n Accepts any string value.\n\n- **arrowButton**: Accessibility attributes that will be applied to the arrow (split) button element.\n - **hasPopup**: Indicates the type of popup triggered by the arrow button.\n Accepts string values: `\"dialog\"`, `\"grid\"`, `\"listbox\"`, `\"menu\"`, or `\"tree\"`.\n - **expanded**: Indicates whether the popup controlled by the arrow button is currently expanded.\n Accepts boolean values: `true` or `false`.",
|
|
40
|
+
"value": {
|
|
41
|
+
"type": "AIButtonAccessibilityAttributes",
|
|
42
|
+
"default": "{}"
|
|
43
|
+
}
|
|
36
44
|
}
|
|
37
45
|
],
|
|
38
46
|
"slots": [
|
|
@@ -47,7 +55,7 @@
|
|
|
47
55
|
"description": "Fired when the component is activated either with a\nmouse/tap or by using the Enter or Space key."
|
|
48
56
|
},
|
|
49
57
|
{
|
|
50
|
-
"name": "arrow-click",
|
|
58
|
+
"name": "arrow-button-click",
|
|
51
59
|
"description": "Fired when the component is in split mode and after the arrow button\nis activated either by clicking or tapping it or by using the [Arrow Up] / [Arrow Down],\n[Alt] + [Arrow Up]/ [Arrow Down], or [F4] keyboard keys."
|
|
52
60
|
}
|
|
53
61
|
],
|
|
@@ -71,9 +79,14 @@
|
|
|
71
79
|
"value": { "type": "string | undefined" }
|
|
72
80
|
},
|
|
73
81
|
{
|
|
74
|
-
"name": "
|
|
82
|
+
"name": "arrow-button-pressed",
|
|
75
83
|
"description": "Defines the active state of the arrow button in split mode.\nSet to true when the button is in split mode and a menu with additional options\nis opened by the arrow button. Set back to false when the menu is closed.",
|
|
76
84
|
"value": { "type": "boolean" }
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"name": "accessibility-attributes",
|
|
88
|
+
"description": "Defines the additional accessibility attributes that will be applied to the component.\n\nThis property allows for fine-tuned control of ARIA attributes for screen reader support.\nIt accepts an object with the following optional fields:\n\n- **root**: Accessibility attributes that will be applied to the root element.\n - **hasPopup**: Indicates the availability and type of interactive popup element (such as a menu or dialog).\n Accepts string values: `\"dialog\"`, `\"grid\"`, `\"listbox\"`, `\"menu\"`, or `\"tree\"`.\n - **roleDescription**: Defines a human-readable description for the button's role.\n Accepts any string value.\n\n- **arrowButton**: Accessibility attributes that will be applied to the arrow (split) button element.\n - **hasPopup**: Indicates the type of popup triggered by the arrow button.\n Accepts string values: `\"dialog\"`, `\"grid\"`, `\"listbox\"`, `\"menu\"`, or `\"tree\"`.\n - **expanded**: Indicates whether the popup controlled by the arrow button is currently expanded.\n Accepts boolean values: `true` or `false`.",
|
|
89
|
+
"value": { "type": "AIButtonAccessibilityAttributes" }
|
|
77
90
|
}
|
|
78
91
|
],
|
|
79
92
|
"events": [
|
|
@@ -82,7 +95,7 @@
|
|
|
82
95
|
"description": "Fired when the component is activated either with a\nmouse/tap or by using the Enter or Space key."
|
|
83
96
|
},
|
|
84
97
|
{
|
|
85
|
-
"name": "arrow-click",
|
|
98
|
+
"name": "arrow-button-click",
|
|
86
99
|
"description": "Fired when the component is in split mode and after the arrow button\nis activated either by clicking or tapping it or by using the [Arrow Up] / [Arrow Down],\n[Alt] + [Arrow Up]/ [Arrow Down], or [F4] keyboard keys."
|
|
87
100
|
}
|
|
88
101
|
]
|
|
@@ -90,7 +103,7 @@
|
|
|
90
103
|
},
|
|
91
104
|
{
|
|
92
105
|
"name": "ui5-ai-button-state",
|
|
93
|
-
"description": "### Overview\n\n`ui5-ai-button-state` is the item to use for defining states of `ui5-ai-button` components.\n\n### Usage\n\n`ui5-
|
|
106
|
+
"description": "### Overview\n\n`ui5-ai-button-state` is the item to use for defining states of `ui5-ai-button` components.\n\n### Usage\n\n`ui5-ai-button-state` is an abstract element, representing a state of `ui5-ai-button`. It is meant to be used in the `default` slot\nof `ui5-ai-button` and should not be used as standalone component.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/AiButtonState.js\";`\n---\n",
|
|
94
107
|
"doc-url": "",
|
|
95
108
|
"attributes": [
|
|
96
109
|
{
|
|
@@ -114,7 +127,7 @@
|
|
|
114
127
|
"value": { "type": "string | undefined", "default": "undefined" }
|
|
115
128
|
},
|
|
116
129
|
{
|
|
117
|
-
"name": "
|
|
130
|
+
"name": "show-arrow-button",
|
|
118
131
|
"description": "Defines if the component is in split button mode.",
|
|
119
132
|
"value": { "type": "boolean", "default": "false" }
|
|
120
133
|
}
|
|
@@ -143,7 +156,7 @@
|
|
|
143
156
|
"value": { "type": "string | undefined" }
|
|
144
157
|
},
|
|
145
158
|
{
|
|
146
|
-
"name": "
|
|
159
|
+
"name": "show-arrow-button",
|
|
147
160
|
"description": "Defines if the component is in split button mode.",
|
|
148
161
|
"value": { "type": "boolean" }
|
|
149
162
|
}
|
|
@@ -153,7 +166,7 @@
|
|
|
153
166
|
},
|
|
154
167
|
{
|
|
155
168
|
"name": "ui5-ai-prompt-input",
|
|
156
|
-
"description": "### Overview\n\nThe `ui5-ai-prompt-input` component allows the user to write custom instructions in natural language, so that AI is guided to generate content tailored to user needs.\n\n**Note:** The web component is in an experimental state\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents-ai/dist/PromptInput.js\n---\n\n\n### **Events:**\n - **submit** - Fired when the input operation has finished by pressing Enter\nor AI button is clicked.\n- **input** - Fired when the value of the component changes at each keystroke,\nand when a suggestion item has been selected.\n- **change** - Fired when the input operation has finished by pressing Enter\nor on focusout.\n\n### **Slots:**\n - **default** - Defines the suggestion items.\n\n**Note:** The suggestions would be displayed only if the `showSuggestions`\nproperty is set to `true`.\n\n**Note:** The `<ui5-suggestion-item>`, `<ui5-suggestion-item-group>` and `ui5-suggestion-item-custom` are recommended to be used as suggestion items.\n
|
|
169
|
+
"description": "### Overview\n\nThe `ui5-ai-prompt-input` component allows the user to write custom instructions in natural language, so that AI is guided to generate content tailored to user needs.\n\n**Note:** The web component is in an experimental state\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents-ai/dist/PromptInput.js\"`\n---\n\n\n### **Events:**\n - **submit** - Fired when the input operation has finished by pressing Enter\nor AI button is clicked.\n- **input** - Fired when the value of the component changes at each keystroke,\nand when a suggestion item has been selected.\n- **change** - Fired when the input operation has finished by pressing Enter\nor on focusout.\n\n### **Slots:**\n - **default** - Defines the suggestion items.\n\n**Note:** The suggestions would be displayed only if the `showSuggestions`\nproperty is set to `true`.\n\n**Note:** The `<ui5-suggestion-item>`, `<ui5-suggestion-item-group>` and `ui5-suggestion-item-custom` are recommended to be used as suggestion items.\n- **valueStateMessage** - Defines the value state message that will be displayed as pop up under the component.\nThe value state message slot should contain only one root element.\n\n**Note:** If not specified, a default text (in the respective language) will be displayed.\n\n**Note:** The `valueStateMessage` would be displayed,\nwhen the component is in `Information`, `Critical` or `Negative` value state.",
|
|
157
170
|
"doc-url": "",
|
|
158
171
|
"attributes": [
|
|
159
172
|
{
|
|
@@ -206,14 +219,14 @@
|
|
|
206
219
|
},
|
|
207
220
|
{
|
|
208
221
|
"name": "show-suggestions",
|
|
209
|
-
"description": "Defines whether the component should show suggestions, if such are present
|
|
222
|
+
"description": "Defines whether the component should show suggestions, if such are present.",
|
|
210
223
|
"value": { "type": "boolean", "default": "false" }
|
|
211
224
|
}
|
|
212
225
|
],
|
|
213
226
|
"slots": [
|
|
214
227
|
{
|
|
215
228
|
"name": "default",
|
|
216
|
-
"description": "Defines the suggestion items.\n\n**Note:** The suggestions would be displayed only if the `showSuggestions`\nproperty is set to `true`.\n\n**Note:** The `<ui5-suggestion-item>`, `<ui5-suggestion-item-group>` and `ui5-suggestion-item-custom` are recommended to be used as suggestion items
|
|
229
|
+
"description": "Defines the suggestion items.\n\n**Note:** The suggestions would be displayed only if the `showSuggestions`\nproperty is set to `true`.\n\n**Note:** The `<ui5-suggestion-item>`, `<ui5-suggestion-item-group>` and `ui5-suggestion-item-custom` are recommended to be used as suggestion items."
|
|
217
230
|
},
|
|
218
231
|
{
|
|
219
232
|
"name": "valueStateMessage",
|
|
@@ -285,7 +298,7 @@
|
|
|
285
298
|
},
|
|
286
299
|
{
|
|
287
300
|
"name": "show-suggestions",
|
|
288
|
-
"description": "Defines whether the component should show suggestions, if such are present
|
|
301
|
+
"description": "Defines whether the component should show suggestions, if such are present.",
|
|
289
302
|
"value": { "type": "boolean" }
|
|
290
303
|
}
|
|
291
304
|
],
|
package/package-scripts.cjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ui5/webcomponents-ai",
|
|
3
|
-
"version": "0.0.0-
|
|
3
|
+
"version": "0.0.0-896d5863e",
|
|
4
4
|
"description": "UI5 Web Components: webcomponents.ai",
|
|
5
5
|
"ui5": {
|
|
6
6
|
"webComponentsPackage": true
|
|
@@ -25,7 +25,10 @@
|
|
|
25
25
|
"generate": "nps generate",
|
|
26
26
|
"generateAPI": "nps generateAPI",
|
|
27
27
|
"bundle": "nps build.bundle",
|
|
28
|
-
"test": "
|
|
28
|
+
"test": "nps test-cy-ci",
|
|
29
|
+
"test:cypress": "nps test-cy-ci",
|
|
30
|
+
"test:cypress:single": "npx cypress run --component --browser chrome --spec",
|
|
31
|
+
"test:cypress:open": "nps test-cy-open",
|
|
29
32
|
"test:ssr": "node -e \"import('./test/ssr/component-imports.js')\"",
|
|
30
33
|
"create-ui5-element": "wc-create-ui5-element",
|
|
31
34
|
"prepublishOnly": "tsc -b"
|
|
@@ -45,13 +48,14 @@
|
|
|
45
48
|
"directory": "packages/ai"
|
|
46
49
|
},
|
|
47
50
|
"dependencies": {
|
|
48
|
-
"@ui5/webcomponents": "0.0.0-
|
|
49
|
-
"@ui5/webcomponents-base": "0.0.0-
|
|
50
|
-
"@ui5/webcomponents-icons": "0.0.0-
|
|
51
|
-
"@ui5/webcomponents-theming": "0.0.0-
|
|
51
|
+
"@ui5/webcomponents": "0.0.0-896d5863e",
|
|
52
|
+
"@ui5/webcomponents-base": "0.0.0-896d5863e",
|
|
53
|
+
"@ui5/webcomponents-icons": "0.0.0-896d5863e",
|
|
54
|
+
"@ui5/webcomponents-theming": "0.0.0-896d5863e"
|
|
52
55
|
},
|
|
53
56
|
"devDependencies": {
|
|
54
|
-
"@ui5/
|
|
55
|
-
"
|
|
57
|
+
"@ui5/cypress-internal": "0.0.0",
|
|
58
|
+
"@ui5/webcomponents-tools": "0.0.0-896d5863e",
|
|
59
|
+
"chromedriver": "^138.0.5"
|
|
56
60
|
}
|
|
57
61
|
}
|
package/src/ButtonTemplate.tsx
CHANGED
|
@@ -12,6 +12,7 @@ export default function ButtonTemplate(this: Button) {
|
|
|
12
12
|
_hideArrowButton={this._hideArrowButton}
|
|
13
13
|
onClick={this._onClick}
|
|
14
14
|
onArrowClick={this._onArrowClick}
|
|
15
|
+
accessibilityAttributes={this._computedAccessibilityAttributes}
|
|
15
16
|
>
|
|
16
17
|
{this._hasText && (
|
|
17
18
|
<div class="ui5-ai-button-text">{this._stateText}</div>
|
|
@@ -5,4 +5,8 @@
|
|
|
5
5
|
PROMPT_INPUT_CHARACTERS_LEFT={0} characters remaining
|
|
6
6
|
|
|
7
7
|
#XTXT: Text for characters over
|
|
8
|
-
PROMPT_INPUT_CHARACTERS_EXCEEDED={0} characters over limit
|
|
8
|
+
PROMPT_INPUT_CHARACTERS_EXCEEDED={0} characters over limit
|
|
9
|
+
|
|
10
|
+
#XTXT: Text for
|
|
11
|
+
BUTTON_TOOLTIP_TEXT={0} with Artificial Intelligence
|
|
12
|
+
|
|
@@ -2,3 +2,6 @@
|
|
|
2
2
|
PROMPT_INPUT_CHARACTERS_LEFT={0} characters remaining
|
|
3
3
|
|
|
4
4
|
PROMPT_INPUT_CHARACTERS_EXCEEDED={0} characters over limit
|
|
5
|
+
|
|
6
|
+
BUTTON_TOOLTIP_TEXT={0} with Artificial Intelligence
|
|
7
|
+
|
package/tsconfig.json
CHANGED
|
@@ -7,19 +7,31 @@
|
|
|
7
7
|
"compilerOptions": {
|
|
8
8
|
"outDir": "dist",
|
|
9
9
|
"experimentalDecorators": true,
|
|
10
|
-
"
|
|
10
|
+
"composite": true,
|
|
11
|
+
"rootDir": "src",
|
|
12
|
+
"tsBuildInfoFile": "dist/.tsbuildinfo",
|
|
11
13
|
"module": "NodeNext",
|
|
12
14
|
"moduleResolution": "NodeNext",
|
|
15
|
+
"verbatimModuleSyntax": true,
|
|
13
16
|
"paths": {
|
|
14
17
|
"@ui5/webcomponents-base/dist/*": [
|
|
15
18
|
"../base/src/*"
|
|
16
19
|
],
|
|
17
|
-
"@ui5/webcomponents/dist/*": [
|
|
18
|
-
"../
|
|
20
|
+
"@ui5/webcomponents-localization/dist/*": [
|
|
21
|
+
"../localization/src/*"
|
|
19
22
|
],
|
|
20
23
|
"@ui5/webcomponents-theming/dist/*": [
|
|
21
24
|
"../theming/src/*"
|
|
22
25
|
],
|
|
26
|
+
"@ui5/webcomponents-icons/dist/*": [
|
|
27
|
+
"../icons/src/*"
|
|
28
|
+
],
|
|
29
|
+
"@ui5/webcomponents-icons-business-suite/dist/*": [
|
|
30
|
+
"../icons-business-suite/src/*"
|
|
31
|
+
],
|
|
32
|
+
"@ui5/webcomponents-icons-tnt/dist/*": [
|
|
33
|
+
"../icons-tnt/src/*"
|
|
34
|
+
]
|
|
23
35
|
},
|
|
24
36
|
},
|
|
25
37
|
"references": [
|
|
@@ -27,10 +39,19 @@
|
|
|
27
39
|
"path": "../base"
|
|
28
40
|
},
|
|
29
41
|
{
|
|
30
|
-
"path": "../
|
|
42
|
+
"path": "../localization"
|
|
31
43
|
},
|
|
32
44
|
{
|
|
33
45
|
"path": "../theming"
|
|
34
46
|
},
|
|
47
|
+
{
|
|
48
|
+
"path": "../icons"
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"path": "../icons-business-suite"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"path": "../icons-tnt"
|
|
55
|
+
},
|
|
35
56
|
]
|
|
36
57
|
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"root":["../src/Assets.ts","../src/Button.ts","../src/ButtonState.ts","../src/ButtonTemplate.tsx","../src/PromptInput.ts","../src/PromptInputTemplate.tsx","../src/bundle.esm.ts","../src/bundle.scoped.config.ts","../src/bundle.scoped.esm.ts","../src/generated/i18n/i18n-defaults.ts","../src/generated/json-imports/Themes-fetch.ts","../src/generated/json-imports/Themes.ts","../src/generated/json-imports/i18n-fetch.ts","../src/generated/json-imports/i18n.ts","../src/generated/themes/Button.css.ts","../src/generated/themes/PromptInput.css.ts","../src/generated/themes/sap_horizon/parameters-bundle.css.ts","../src/generated/themes/sap_horizon_dark/parameters-bundle.css.ts","../src/generated/themes/sap_horizon_hcb/parameters-bundle.css.ts","../src/generated/themes/sap_horizon_hcw/parameters-bundle.css.ts"],"version":"5.6.2"}
|