@ui5/webcomponents-ai 2.0.0-rc.4
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/.env.production +1 -0
- package/.env.testing +4 -0
- package/.npsrc.json +3 -0
- package/CHANGELOG.md +14 -0
- package/README.md +40 -0
- package/dist/Assets.d.ts +3 -0
- package/dist/Assets.js +6 -0
- package/dist/Assets.js.map +1 -0
- package/dist/Button.d.ts +11 -0
- package/dist/Button.js +41 -0
- package/dist/Button.js.map +1 -0
- package/dist/PromtInput.d.ts +10 -0
- package/dist/PromtInput.js +34 -0
- package/dist/PromtInput.js.map +1 -0
- package/dist/bundle.esm.d.ts +3 -0
- package/dist/bundle.esm.js +7 -0
- package/dist/bundle.esm.js.map +1 -0
- package/dist/bundle.scoped.esm.d.ts +1 -0
- package/dist/bundle.scoped.esm.js +3 -0
- package/dist/bundle.scoped.esm.js.map +1 -0
- package/dist/css/themes/Button.css +0 -0
- package/dist/css/themes/sap_horizon/parameters-bundle.css +0 -0
- package/dist/css/themes/sap_horizon_dark/parameters-bundle.css +0 -0
- package/dist/css/themes/sap_horizon_hcb/parameters-bundle.css +0 -0
- package/dist/css/themes/sap_horizon_hcw/parameters-bundle.css +0 -0
- package/dist/custom-elements-internal.json +64 -0
- package/dist/custom-elements.json +63 -0
- package/dist/generated/assets/themes/sap_horizon/parameters-bundle.css.json +1 -0
- package/dist/generated/assets/themes/sap_horizon_dark/parameters-bundle.css.json +1 -0
- package/dist/generated/assets/themes/sap_horizon_hcb/parameters-bundle.css.json +1 -0
- package/dist/generated/assets/themes/sap_horizon_hcw/parameters-bundle.css.json +1 -0
- package/dist/generated/i18n/i18n-defaults.d.ts +1 -0
- package/dist/generated/i18n/i18n-defaults.js +2 -0
- package/dist/generated/i18n/i18n-defaults.js.map +1 -0
- package/dist/generated/json-imports/Themes.d.ts +1 -0
- package/dist/generated/json-imports/Themes.js +21 -0
- package/dist/generated/json-imports/Themes.js.map +1 -0
- package/dist/generated/json-imports/i18n.d.ts +0 -0
- package/dist/generated/json-imports/i18n.js +2 -0
- package/dist/generated/json-imports/i18n.js.map +1 -0
- package/dist/generated/templates/ButtonTemplate.lit.d.ts +4 -0
- package/dist/generated/templates/ButtonTemplate.lit.js +5 -0
- package/dist/generated/templates/ButtonTemplate.lit.js.map +1 -0
- package/dist/generated/themes/Button.css.d.ts +3 -0
- package/dist/generated/themes/Button.css.js +8 -0
- package/dist/generated/themes/Button.css.js.map +1 -0
- package/dist/generated/themes/sap_horizon/parameters-bundle.css.d.ts +3 -0
- package/dist/generated/themes/sap_horizon/parameters-bundle.css.js +3 -0
- package/dist/generated/themes/sap_horizon/parameters-bundle.css.js.map +1 -0
- package/dist/generated/themes/sap_horizon_dark/parameters-bundle.css.d.ts +3 -0
- package/dist/generated/themes/sap_horizon_dark/parameters-bundle.css.js +3 -0
- package/dist/generated/themes/sap_horizon_dark/parameters-bundle.css.js.map +1 -0
- package/dist/generated/themes/sap_horizon_hcb/parameters-bundle.css.d.ts +3 -0
- package/dist/generated/themes/sap_horizon_hcb/parameters-bundle.css.js +3 -0
- package/dist/generated/themes/sap_horizon_hcb/parameters-bundle.css.js.map +1 -0
- package/dist/generated/themes/sap_horizon_hcw/parameters-bundle.css.d.ts +3 -0
- package/dist/generated/themes/sap_horizon_hcw/parameters-bundle.css.js +3 -0
- package/dist/generated/themes/sap_horizon_hcw/parameters-bundle.css.js.map +1 -0
- package/dist/vscode.html-custom-data.json +11 -0
- package/dist/web-types.json +24 -0
- package/jsconfig.json +11 -0
- package/package-scripts.cjs +15 -0
- package/package.json +57 -0
- package/src/Button.hbs +3 -0
- package/src/i18n/messagebundle.properties +2 -0
- package/src/themes/Button.css +0 -0
- package/src/themes/base/Button-parameters.css +2 -0
- package/src/themes/sap_horizon/parameters-bundle.css +1 -0
- package/src/themes/sap_horizon_dark/parameters-bundle.css +1 -0
- package/src/themes/sap_horizon_hcb/parameters-bundle.css +1 -0
- package/src/themes/sap_horizon_hcw/parameters-bundle.css +1 -0
- package/tsconfig.json +28 -0
package/.env.production
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
VITE_BUNDLE_PATH="../../dist/bundle.esm.js"
|
package/.env.testing
ADDED
package/.npsrc.json
ADDED
package/CHANGELOG.md
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
# Change Log
|
2
|
+
|
3
|
+
All notable changes to this project will be documented in this file.
|
4
|
+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
5
|
+
|
6
|
+
# [2.0.0-rc.4](https://github.com/SAP/ui5-webcomponents/compare/v2.0.0-rc.3...v2.0.0-rc.4) (2024-05-29)
|
7
|
+
|
8
|
+
**Note:** Version bump only for package @ui5/webcomponents-ai
|
9
|
+
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
|
14
|
+
# Change Log
|
package/README.md
ADDED
@@ -0,0 +1,40 @@
|
|
1
|
+

|
2
|
+
|
3
|
+
|
4
|
+
# UI5 Web Components - AI
|
5
|
+
|
6
|
+
[](https://www.npmjs.com/package/@ui5/webcomponents)
|
7
|
+
|
8
|
+
Provides web components implementing AI-related visual and interaction.
|
9
|
+
|
10
|
+
|
11
|
+
**Note:** The package is available since 2.0 and experimental
|
12
|
+
|
13
|
+
|
14
|
+
## Provided components
|
15
|
+
|
16
|
+
| Web Component | Tag name | Module import |
|
17
|
+
|--------------------------|-----------------------------|------------------------------------------------------------|
|
18
|
+
|
19
|
+
|
20
|
+
## Provided assets
|
21
|
+
|
22
|
+
|
23
|
+
| Assets | Module | Notes
|
24
|
+
|------------|-----------|-----------
|
25
|
+
| `i18n`, `themes` | `@ui5/webcomponents-compat/dist/Assets.js` | Theming parameters and translations for the components
|
26
|
+
|
27
|
+
|
28
|
+
## Resources
|
29
|
+
- [UI5 Web Components - README.md](https://github.com/SAP/ui5-webcomponents/blob/main/README.md)
|
30
|
+
- [UI5 Web Components - Playground and API Reference](https://sap.github.io/ui5-webcomponents/)
|
31
|
+
|
32
|
+
## Support
|
33
|
+
We welcome all comments, suggestions, questions, and bug reports. Please follow our [Support Guidelines](https://github.com/SAP/ui5-webcomponents/blob/main/SUPPORT.md#-content) on how to report an issue, or chat with us in the `#webcomponents` channel of the [OpenUI5 Community Slack](https://ui5-slack-invite.cfapps.eu10.hana.ondemand.com/).
|
34
|
+
|
35
|
+
## Contribute
|
36
|
+
Please check our [Contribution Guidelines](https://github.com/SAP/ui5-webcomponents/blob/main/docs/6-contributing/02-conventions-and-guidelines.md).
|
37
|
+
|
38
|
+
## License
|
39
|
+
Copyright (c) 2019 SAP SE or an SAP affiliate company. All rights reserved.
|
40
|
+
This file is licensed under the Apache Software License, Version 2.0 except as noted otherwise in the [LICENSE](https://github.com/SAP/ui5-webcomponents/blob/main/LICENSE.txt) file.
|
package/dist/Assets.d.ts
ADDED
package/dist/Assets.js
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"Assets.js","sourceRoot":"","sources":["../src/Assets.ts"],"names":[],"mappings":"AAAA,6DAA6D;AAC7D,OAAO,mCAAmC,CAAC;AAE3C,wBAAwB;AACxB,OAAO,oCAAoC,CAAC;AAC5C,OAAO,kCAAkC,CAAC","sourcesContent":["// main package assets (transitively base, theming and icons)\nimport \"@ui5/webcomponents/dist/Assets.js\";\n\n// own ai package assets\nimport \"./generated/json-imports/Themes.js\";\nimport \"./generated/json-imports/i18n.js\";\n"]}
|
package/dist/Button.d.ts
ADDED
package/dist/Button.js
ADDED
@@ -0,0 +1,41 @@
|
|
1
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
2
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
3
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
4
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
5
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
6
|
+
};
|
7
|
+
import UI5Element from "@ui5/webcomponents-base/dist/UI5Element.js";
|
8
|
+
import customElement from "@ui5/webcomponents-base/dist/decorators/customElement.js";
|
9
|
+
import property from "@ui5/webcomponents-base/dist/decorators/property.js";
|
10
|
+
import litRender from "@ui5/webcomponents-base/dist/renderer/LitRenderer.js";
|
11
|
+
// Deps
|
12
|
+
import MainButton from "@ui5/webcomponents/dist/Button.js";
|
13
|
+
// Template
|
14
|
+
import template from "./generated/templates/ButtonTemplate.lit.js";
|
15
|
+
// Styles
|
16
|
+
import styles from "./generated/themes/Button.css.js";
|
17
|
+
/**
|
18
|
+
* @class
|
19
|
+
* @constructor
|
20
|
+
* @extends UI5Element
|
21
|
+
*/
|
22
|
+
let Button = class Button extends UI5Element {
|
23
|
+
};
|
24
|
+
__decorate([
|
25
|
+
property()
|
26
|
+
], Button.prototype, "icon", void 0);
|
27
|
+
__decorate([
|
28
|
+
property()
|
29
|
+
], Button.prototype, "endIcon", void 0);
|
30
|
+
Button = __decorate([
|
31
|
+
customElement({
|
32
|
+
tag: "ui5-ai-button",
|
33
|
+
renderer: litRender,
|
34
|
+
template,
|
35
|
+
styles,
|
36
|
+
dependencies: [MainButton],
|
37
|
+
})
|
38
|
+
], Button);
|
39
|
+
Button.define();
|
40
|
+
export default Button;
|
41
|
+
//# sourceMappingURL=Button.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"Button.js","sourceRoot":"","sources":["../src/Button.ts"],"names":[],"mappings":";;;;;;AAAA,OAAO,UAAU,MAAM,4CAA4C,CAAC;AACpE,OAAO,aAAa,MAAM,0DAA0D,CAAC;AACrF,OAAO,QAAQ,MAAM,qDAAqD,CAAC;AAC3E,OAAO,SAAS,MAAM,sDAAsD,CAAC;AAE7E,OAAO;AACP,OAAO,UAAU,MAAM,mCAAmC,CAAC;AAE3D,WAAW;AACX,OAAO,QAAQ,MAAM,6CAA6C,CAAC;AAEnE,SAAS;AACT,OAAO,MAAM,MAAM,kCAAkC,CAAC;AAEtD;;;;GAIG;AAQH,IAAM,MAAM,GAAZ,MAAM,MAAO,SAAQ,UAAU;CAM9B,CAAA;AAJA;IADC,QAAQ,EAAE;oCACG;AAGd;IADC,QAAQ,EAAE;uCACM;AALZ,MAAM;IAPX,aAAa,CAAC;QACd,GAAG,EAAE,eAAe;QACpB,QAAQ,EAAE,SAAS;QACnB,QAAQ;QACR,MAAM;QACN,YAAY,EAAE,CAAC,UAAU,CAAC;KAC1B,CAAC;GACI,MAAM,CAMX;AAED,MAAM,CAAC,MAAM,EAAE,CAAC;AAEhB,eAAe,MAAM,CAAC","sourcesContent":["import UI5Element from \"@ui5/webcomponents-base/dist/UI5Element.js\";\nimport customElement from \"@ui5/webcomponents-base/dist/decorators/customElement.js\";\nimport property from \"@ui5/webcomponents-base/dist/decorators/property.js\";\nimport litRender from \"@ui5/webcomponents-base/dist/renderer/LitRenderer.js\";\n\n// Deps\nimport MainButton from \"@ui5/webcomponents/dist/Button.js\";\n\n// Template\nimport template from \"./generated/templates/ButtonTemplate.lit.js\";\n\n// Styles\nimport styles from \"./generated/themes/Button.css.js\";\n\n/**\n * @class\n * @constructor\n * @extends UI5Element\n */\n@customElement({\n\ttag: \"ui5-ai-button\",\n\trenderer: litRender,\n\ttemplate,\n\tstyles,\n\tdependencies: [MainButton],\n})\nclass Button extends UI5Element {\n\t@property()\n\ticon!: string;\n\n\t@property()\n\tendIcon!: string;\n}\n\nButton.define();\n\nexport default Button;\n"]}
|
@@ -0,0 +1,34 @@
|
|
1
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
2
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
3
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
4
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
5
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
6
|
+
};
|
7
|
+
import UI5Element from "@ui5/webcomponents-base/dist/UI5Element.js";
|
8
|
+
import customElement from "@ui5/webcomponents-base/dist/decorators/customElement.js";
|
9
|
+
import litRender from "@ui5/webcomponents-base/dist/renderer/LitRenderer.js";
|
10
|
+
import Label from "@ui5/webcomponents/dist/Label.js";
|
11
|
+
import Input from "@ui5/webcomponents/dist/Input.js";
|
12
|
+
import Button from "@ui5/webcomponents/dist/Button.js";
|
13
|
+
/**
|
14
|
+
* @class
|
15
|
+
* @constructor
|
16
|
+
* @public
|
17
|
+
* @extends UI5Element
|
18
|
+
*/
|
19
|
+
let PromptInput = class PromptInput extends UI5Element {
|
20
|
+
};
|
21
|
+
PromptInput = __decorate([
|
22
|
+
customElement({
|
23
|
+
tag: "ui5-ai-prompt-input",
|
24
|
+
renderer: litRender,
|
25
|
+
dependencies: [
|
26
|
+
Input,
|
27
|
+
Label,
|
28
|
+
Button,
|
29
|
+
],
|
30
|
+
})
|
31
|
+
], PromptInput);
|
32
|
+
PromptInput.define();
|
33
|
+
export default PromptInput;
|
34
|
+
//# sourceMappingURL=PromtInput.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"PromtInput.js","sourceRoot":"","sources":["../src/PromtInput.ts"],"names":[],"mappings":";;;;;;AAAA,OAAO,UAAU,MAAM,4CAA4C,CAAC;AACpE,OAAO,aAAa,MAAM,0DAA0D,CAAC;AACrF,OAAO,SAAS,MAAM,sDAAsD,CAAC;AAE7E,OAAO,KAAK,MAAM,kCAAkC,CAAC;AACrD,OAAO,KAAK,MAAM,kCAAkC,CAAC;AACrD,OAAO,MAAM,MAAM,mCAAmC,CAAC;AAEvD;;;;;GAKG;AAUH,IAAM,WAAW,GAAjB,MAAM,WAAY,SAAQ,UAAU;CACnC,CAAA;AADK,WAAW;IAThB,aAAa,CAAC;QACd,GAAG,EAAE,qBAAqB;QAC1B,QAAQ,EAAE,SAAS;QACnB,YAAY,EAAE;YACb,KAAK;YACL,KAAK;YACL,MAAM;SACN;KACD,CAAC;GACI,WAAW,CAChB;AAED,WAAW,CAAC,MAAM,EAAE,CAAC;AAErB,eAAe,WAAW,CAAC","sourcesContent":["import UI5Element from \"@ui5/webcomponents-base/dist/UI5Element.js\";\nimport customElement from \"@ui5/webcomponents-base/dist/decorators/customElement.js\";\nimport litRender from \"@ui5/webcomponents-base/dist/renderer/LitRenderer.js\";\n\nimport Label from \"@ui5/webcomponents/dist/Label.js\";\nimport Input from \"@ui5/webcomponents/dist/Input.js\";\nimport Button from \"@ui5/webcomponents/dist/Button.js\";\n\n/**\n * @class\n * @constructor\n * @public\n * @extends UI5Element\n */\n@customElement({\n\ttag: \"ui5-ai-prompt-input\",\n\trenderer: litRender,\n\tdependencies: [\n\t\tInput,\n\t\tLabel,\n\t\tButton,\n\t],\n})\nclass PromptInput extends UI5Element {\n}\n\nPromptInput.define();\n\nexport default PromptInput;"]}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"bundle.esm.js","sourceRoot":"","sources":["../src/bundle.esm.ts"],"names":[],"mappings":"AAAA,sDAAsD;AACtD,OAAO,UAAU,MAAM,uCAAuC,CAAC;AAE/D,YAAY;AACZ,OAAO,aAAa,CAAC;AAErB,OAAmB,aAAa,CAAC;AAEjC,eAAe,UAAU,CAAC","sourcesContent":["/* eslint-disable @typescript-eslint/no-unused-vars */\nimport testAssets from \"@ui5/webcomponents/dist/bundle.esm.js\";\n\n// AI assets\nimport \"./Assets.js\";\n\nimport Button from \"./Button.js\";\n\nexport default testAssets;\n"]}
|
@@ -0,0 +1 @@
|
|
1
|
+
export {};
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"bundle.scoped.esm.js","sourceRoot":"","sources":["../src/bundle.scoped.esm.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,8BAA8B,EAAE,MAAM,qDAAqD,CAAC;AAErG,8BAA8B,CAAC,MAAM,CAAC,CAAC","sourcesContent":["import { setCustomElementsScopingSuffix } from \"@ui5/webcomponents-base/dist/CustomElementsScope.js\";\n\nsetCustomElementsScopingSuffix(\"demo\");\n"]}
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -0,0 +1,64 @@
|
|
1
|
+
{
|
2
|
+
"schemaVersion": "1.0.0",
|
3
|
+
"readme": "",
|
4
|
+
"modules": [
|
5
|
+
{
|
6
|
+
"kind": "javascript-module",
|
7
|
+
"path": "dist/Assets.js",
|
8
|
+
"declarations": [],
|
9
|
+
"exports": []
|
10
|
+
},
|
11
|
+
{
|
12
|
+
"kind": "javascript-module",
|
13
|
+
"path": "dist/Button.js",
|
14
|
+
"declarations": [],
|
15
|
+
"exports": [
|
16
|
+
{
|
17
|
+
"kind": "js",
|
18
|
+
"name": "default",
|
19
|
+
"declaration": {
|
20
|
+
"name": "Button",
|
21
|
+
"module": "dist/Button.js"
|
22
|
+
}
|
23
|
+
}
|
24
|
+
]
|
25
|
+
},
|
26
|
+
{
|
27
|
+
"kind": "javascript-module",
|
28
|
+
"path": "dist/PromtInput.js",
|
29
|
+
"declarations": [
|
30
|
+
{
|
31
|
+
"kind": "class",
|
32
|
+
"description": "",
|
33
|
+
"name": "PromptInput",
|
34
|
+
"superclass": {
|
35
|
+
"name": "UI5Element",
|
36
|
+
"package": "@ui5/webcomponents-base",
|
37
|
+
"module": "dist/UI5Element.js"
|
38
|
+
},
|
39
|
+
"tagName": "ui5-ai-prompt-input",
|
40
|
+
"customElement": true,
|
41
|
+
"_ui5privacy": "public"
|
42
|
+
}
|
43
|
+
],
|
44
|
+
"exports": [
|
45
|
+
{
|
46
|
+
"kind": "js",
|
47
|
+
"name": "default",
|
48
|
+
"declaration": {
|
49
|
+
"name": "PromptInput",
|
50
|
+
"module": "dist/PromtInput.js"
|
51
|
+
}
|
52
|
+
},
|
53
|
+
{
|
54
|
+
"kind": "custom-element-definition",
|
55
|
+
"name": "ui5-ai-prompt-input",
|
56
|
+
"declaration": {
|
57
|
+
"name": "PromptInput",
|
58
|
+
"module": "dist/PromtInput.js"
|
59
|
+
}
|
60
|
+
}
|
61
|
+
]
|
62
|
+
}
|
63
|
+
]
|
64
|
+
}
|
@@ -0,0 +1,63 @@
|
|
1
|
+
{
|
2
|
+
"schemaVersion": "1.0.0",
|
3
|
+
"readme": "",
|
4
|
+
"modules": [
|
5
|
+
{
|
6
|
+
"kind": "javascript-module",
|
7
|
+
"path": "dist/Assets.js",
|
8
|
+
"declarations": [],
|
9
|
+
"exports": []
|
10
|
+
},
|
11
|
+
{
|
12
|
+
"kind": "javascript-module",
|
13
|
+
"path": "dist/Button.js",
|
14
|
+
"declarations": [],
|
15
|
+
"exports": [
|
16
|
+
{
|
17
|
+
"kind": "js",
|
18
|
+
"name": "default",
|
19
|
+
"declaration": {
|
20
|
+
"name": "Button",
|
21
|
+
"module": "dist/Button.js"
|
22
|
+
}
|
23
|
+
}
|
24
|
+
]
|
25
|
+
},
|
26
|
+
{
|
27
|
+
"kind": "javascript-module",
|
28
|
+
"path": "dist/PromtInput.js",
|
29
|
+
"declarations": [
|
30
|
+
{
|
31
|
+
"kind": "class",
|
32
|
+
"description": "",
|
33
|
+
"name": "PromptInput",
|
34
|
+
"superclass": {
|
35
|
+
"name": "UI5Element",
|
36
|
+
"package": "@ui5/webcomponents-base",
|
37
|
+
"module": "dist/UI5Element.js"
|
38
|
+
},
|
39
|
+
"tagName": "ui5-ai-prompt-input",
|
40
|
+
"customElement": true
|
41
|
+
}
|
42
|
+
],
|
43
|
+
"exports": [
|
44
|
+
{
|
45
|
+
"kind": "js",
|
46
|
+
"name": "default",
|
47
|
+
"declaration": {
|
48
|
+
"name": "PromptInput",
|
49
|
+
"module": "dist/PromtInput.js"
|
50
|
+
}
|
51
|
+
},
|
52
|
+
{
|
53
|
+
"kind": "custom-element-definition",
|
54
|
+
"name": "ui5-ai-prompt-input",
|
55
|
+
"declaration": {
|
56
|
+
"name": "PromptInput",
|
57
|
+
"module": "dist/PromtInput.js"
|
58
|
+
}
|
59
|
+
}
|
60
|
+
]
|
61
|
+
}
|
62
|
+
]
|
63
|
+
}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"_":{"packageName":"@ui5/webcomponents-ai","fileName":"themes/sap_horizon/parameters-bundle.css.json","content":""}}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"_":{"packageName":"@ui5/webcomponents-ai","fileName":"themes/sap_horizon_dark/parameters-bundle.css.json","content":""}}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"_":{"packageName":"@ui5/webcomponents-ai","fileName":"themes/sap_horizon_hcb/parameters-bundle.css.json","content":""}}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"_":{"packageName":"@ui5/webcomponents-ai","fileName":"themes/sap_horizon_hcw/parameters-bundle.css.json","content":""}}
|
@@ -0,0 +1 @@
|
|
1
|
+
export {};
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"i18n-defaults.js","sourceRoot":"","sources":["../../../src/generated/i18n/i18n-defaults.ts"],"names":[],"mappings":"AAAA,OAAyB,4CAA4C,CAAC","sourcesContent":["import { I18nText } from \"@ui5/webcomponents-base/dist/i18nBundle.js\";\n\nexport {};"]}
|
@@ -0,0 +1 @@
|
|
1
|
+
export {};
|
@@ -0,0 +1,21 @@
|
|
1
|
+
// @ts-nocheck
|
2
|
+
import { registerThemePropertiesLoader } from "@ui5/webcomponents-base/dist/asset-registries/Themes.js";
|
3
|
+
const loadThemeProperties = async (themeName) => {
|
4
|
+
switch (themeName) {
|
5
|
+
case "sap_horizon": return (await import(/* webpackChunkName: "ui5-webcomponents-ai-sap-horizon-parameters-bundle" */ "../assets/themes/sap_horizon/parameters-bundle.css.json")).default;
|
6
|
+
case "sap_horizon_dark": return (await import(/* webpackChunkName: "ui5-webcomponents-ai-sap-horizon_dark-parameters-bundle" */ "../assets/themes/sap_horizon_dark/parameters-bundle.css.json")).default;
|
7
|
+
case "sap_horizon_hcb": return (await import(/* webpackChunkName: "ui5-webcomponents-ai-sap-horizon_hcb-parameters-bundle" */ "../assets/themes/sap_horizon_hcb/parameters-bundle.css.json")).default;
|
8
|
+
case "sap_horizon_hcw": return (await import(/* webpackChunkName: "ui5-webcomponents-ai-sap-horizon_hcw-parameters-bundle" */ "../assets/themes/sap_horizon_hcw/parameters-bundle.css.json")).default;
|
9
|
+
default: throw "unknown theme";
|
10
|
+
}
|
11
|
+
};
|
12
|
+
const loadAndCheck = async (themeName) => {
|
13
|
+
const data = await loadThemeProperties(themeName);
|
14
|
+
if (typeof data === "string" && data.endsWith(".json")) {
|
15
|
+
throw new Error(`[themes] Invalid bundling detected - dynamic JSON imports bundled as URLs. Switch to inlining JSON files from the build. Check the "Assets" documentation for more information.`);
|
16
|
+
}
|
17
|
+
return data;
|
18
|
+
};
|
19
|
+
["sap_horizon", "sap_horizon_dark", "sap_horizon_hcb", "sap_horizon_hcw"]
|
20
|
+
.forEach(themeName => registerThemePropertiesLoader("@ui5/webcomponents-ai", themeName, loadAndCheck));
|
21
|
+
//# sourceMappingURL=Themes.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"Themes.js","sourceRoot":"","sources":["../../../src/generated/json-imports/Themes.ts"],"names":[],"mappings":"AAAA,cAAc;AACd,OAAO,EAAE,6BAA6B,EAAE,MAAM,yDAAyD,CAAC;AAExG,MAAM,mBAAmB,GAAG,KAAK,EAAE,SAAS,EAAE,EAAE;IAC/C,QAAQ,SAAS,EAAE;QAClB,KAAK,aAAa,CAAC,CAAC,OAAO,CAAC,MAAM,MAAM,CAAC,4EAA4E,CAAA,yDAAyD,CAAC,CAAC,CAAC,OAAO,CAAC;QACzL,KAAK,kBAAkB,CAAC,CAAC,OAAO,CAAC,MAAM,MAAM,CAAC,iFAAiF,CAAA,8DAA8D,CAAC,CAAC,CAAC,OAAO,CAAC;QACxM,KAAK,iBAAiB,CAAC,CAAC,OAAO,CAAC,MAAM,MAAM,CAAC,gFAAgF,CAAA,6DAA6D,CAAC,CAAC,CAAC,OAAO,CAAC;QACrM,KAAK,iBAAiB,CAAC,CAAC,OAAO,CAAC,MAAM,MAAM,CAAC,gFAAgF,CAAA,6DAA6D,CAAC,CAAC,CAAC,OAAO,CAAC;QACrM,OAAO,CAAC,CAAC,MAAM,eAAe,CAAA;KAC9B;AACF,CAAC,CAAC;AAEF,MAAM,YAAY,GAAG,KAAK,EAAE,SAAS,EAAE,EAAE;IACxC,MAAM,IAAI,GAAG,MAAM,mBAAmB,CAAC,SAAS,CAAC,CAAC;IAClD,IAAI,OAAO,IAAI,KAAK,QAAQ,IAAI,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,EAAE;QACvD,MAAM,IAAI,KAAK,CAAC,iLAAiL,CAAC,CAAC;KACnM;IACD,OAAO,IAAI,CAAC;AACb,CAAC,CAAC;AAEF,CAAC,aAAa,EAAE,kBAAkB,EAAE,iBAAiB,EAAE,iBAAiB,CAAC;KACtE,OAAO,CAAC,SAAS,CAAC,EAAE,CAAC,6BAA6B,CAAC,uBAAuB,EAAE,SAAS,EAAE,YAAY,CAAC,CAAC,CAAC","sourcesContent":["// @ts-nocheck\nimport { registerThemePropertiesLoader } from \"@ui5/webcomponents-base/dist/asset-registries/Themes.js\";\n\nconst loadThemeProperties = async (themeName) => {\n\tswitch (themeName) {\n\t\tcase \"sap_horizon\": return (await import(/* webpackChunkName: \"ui5-webcomponents-ai-sap-horizon-parameters-bundle\" */\"../assets/themes/sap_horizon/parameters-bundle.css.json\")).default;\n\t\tcase \"sap_horizon_dark\": return (await import(/* webpackChunkName: \"ui5-webcomponents-ai-sap-horizon_dark-parameters-bundle\" */\"../assets/themes/sap_horizon_dark/parameters-bundle.css.json\")).default;\n\t\tcase \"sap_horizon_hcb\": return (await import(/* webpackChunkName: \"ui5-webcomponents-ai-sap-horizon_hcb-parameters-bundle\" */\"../assets/themes/sap_horizon_hcb/parameters-bundle.css.json\")).default;\n\t\tcase \"sap_horizon_hcw\": return (await import(/* webpackChunkName: \"ui5-webcomponents-ai-sap-horizon_hcw-parameters-bundle\" */\"../assets/themes/sap_horizon_hcw/parameters-bundle.css.json\")).default;\n\t\tdefault: throw \"unknown theme\"\n\t}\n};\n\nconst loadAndCheck = async (themeName) => {\n\tconst data = await loadThemeProperties(themeName);\n\tif (typeof data === \"string\" && data.endsWith(\".json\")) {\n\t\tthrow new Error(`[themes] Invalid bundling detected - dynamic JSON imports bundled as URLs. Switch to inlining JSON files from the build. Check the \"Assets\" documentation for more information.`);\n\t}\n\treturn data;\n};\n\n[\"sap_horizon\", \"sap_horizon_dark\", \"sap_horizon_hcb\", \"sap_horizon_hcw\"]\n .forEach(themeName => registerThemePropertiesLoader(\"@ui5/webcomponents-ai\", themeName, loadAndCheck));\n"]}
|
File without changes
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"i18n.js","sourceRoot":"","sources":["../../../src/generated/json-imports/i18n.ts"],"names":[],"mappings":"","sourcesContent":[""]}
|
@@ -0,0 +1,4 @@
|
|
1
|
+
import type UI5Element from "@ui5/webcomponents-base/dist/UI5Element.js";
|
2
|
+
import type Button from "../../Button.js";
|
3
|
+
declare function block0(this: Button, context: UI5Element, tags: string[], suffix: string | undefined): import("lit-html").TemplateResult;
|
4
|
+
export default block0;
|
@@ -0,0 +1,5 @@
|
|
1
|
+
/* eslint no-unused-vars: 0 */
|
2
|
+
import { html, ifDefined, scopeTag } from "@ui5/webcomponents-base/dist/renderer/LitRenderer.js";
|
3
|
+
function block0(context, tags, suffix) { return suffix ? html `<${scopeTag("ui5-button", tags, suffix)} icon="${ifDefined(this.icon)}" end-icon="${ifDefined(this.endIcon)}"><slot></slot></${scopeTag("ui5-button", tags, suffix)}>` : html `<ui5-button icon="${ifDefined(this.icon)}" end-icon="${ifDefined(this.endIcon)}"><slot></slot></ui5-button>`; }
|
4
|
+
export default block0;
|
5
|
+
//# sourceMappingURL=ButtonTemplate.lit.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"ButtonTemplate.lit.js","sourceRoot":"","sources":["../../../src/generated/templates/ButtonTemplate.lit.ts"],"names":[],"mappings":"AAAA,8BAA8B;AAC9B,OAAO,EAAE,IAAI,EAAmC,SAAS,EAAc,QAAQ,EAAE,MAAM,sDAAsD,CAAC;AAK9I,SAAS,MAAM,CAAgB,OAAmB,EAAE,IAAc,EAAE,MAA0B,IAAI,OAAO,MAAM,CAAC,CAAC,CAAC,IAAI,CAAA,IAAI,QAAQ,CAAC,YAAY,EAAE,IAAI,EAAE,MAAM,CAAC,UAAU,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,eAAe,SAAS,CAAC,IAAI,CAAC,OAAO,CAAC,oBAAoB,QAAQ,CAAC,YAAY,EAAE,IAAI,EAAE,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,CAAA,qBAAqB,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,eAAe,SAAS,CAAC,IAAI,CAAC,OAAO,CAAC,8BAA8B,CAAC,CAAA,CAAC;AAGnZ,eAAe,MAAM,CAAC","sourcesContent":["/* eslint no-unused-vars: 0 */\nimport { html, svg, repeat, classMap, styleMap, ifDefined, unsafeHTML, scopeTag } from \"@ui5/webcomponents-base/dist/renderer/LitRenderer.js\";\nimport type UI5Element from \"@ui5/webcomponents-base/dist/UI5Element.js\";\n\timport type Button from \"../../Button.js\";\n\timport type { ClassMapValue } from \"@ui5/webcomponents-base/dist/types.js\";\n\t\nfunction block0 (this: Button, context: UI5Element, tags: string[], suffix: string | undefined) { return suffix ? html`<${scopeTag(\"ui5-button\", tags, suffix)} icon=\"${ifDefined(this.icon)}\" end-icon=\"${ifDefined(this.endIcon)}\"><slot></slot></${scopeTag(\"ui5-button\", tags, suffix)}>` : html`<ui5-button icon=\"${ifDefined(this.icon)}\" end-icon=\"${ifDefined(this.endIcon)}\"><slot></slot></ui5-button>`;}\n\n\nexport default block0;"]}
|
@@ -0,0 +1,8 @@
|
|
1
|
+
import { registerThemePropertiesLoader } from "@ui5/webcomponents-base/dist/asset-registries/Themes.js";
|
2
|
+
import defaultThemeBase from "@ui5/webcomponents-theming/dist/generated/themes/sap_horizon/parameters-bundle.css.js";
|
3
|
+
import defaultTheme from "./sap_horizon/parameters-bundle.css.js";
|
4
|
+
registerThemePropertiesLoader("@ui5/webcomponents-theming", "sap_horizon", async () => defaultThemeBase);
|
5
|
+
registerThemePropertiesLoader("@ui5/webcomponents-ai", "sap_horizon", async () => defaultTheme);
|
6
|
+
const styleData = { packageName: "@ui5/webcomponents-ai", fileName: "themes/Button.css.ts", content: `` };
|
7
|
+
export default styleData;
|
8
|
+
//# sourceMappingURL=Button.css.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"Button.css.js","sourceRoot":"","sources":["../../../src/generated/themes/Button.css.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,6BAA6B,EAAE,MAAM,yDAAyD,CAAC;AAExG,OAAO,gBAAgB,MAAM,uFAAuF,CAAC;AACrH,OAAO,YAAY,MAAM,wCAAwC,CAAC;AAElE,6BAA6B,CAAC,4BAA4B,EAAE,aAAa,EAAE,KAAK,IAAI,EAAE,CAAC,gBAAgB,CAAC,CAAC;AACzG,6BAA6B,CAAC,uBAAuB,EAAE,aAAa,EAAE,KAAK,IAAI,EAAE,CAAC,YAAY,CAAC,CAAC;AAEhG,MAAM,SAAS,GAAc,EAAC,WAAW,EAAC,uBAAuB,EAAC,QAAQ,EAAC,sBAAsB,EAAC,OAAO,EAAC,EAAE,EAAC,CAAC;AAC9G,eAAe,SAAS,CAAC","sourcesContent":["import type { StyleData } from \"@ui5/webcomponents-base/dist/types.js\";\nimport { registerThemePropertiesLoader } from \"@ui5/webcomponents-base/dist/asset-registries/Themes.js\";\n\nimport defaultThemeBase from \"@ui5/webcomponents-theming/dist/generated/themes/sap_horizon/parameters-bundle.css.js\";\nimport defaultTheme from \"./sap_horizon/parameters-bundle.css.js\";\n\nregisterThemePropertiesLoader(\"@ui5/webcomponents-theming\", \"sap_horizon\", async () => defaultThemeBase);\nregisterThemePropertiesLoader(\"@ui5/webcomponents-ai\", \"sap_horizon\", async () => defaultTheme);\n\nconst styleData: StyleData = {packageName:\"@ui5/webcomponents-ai\",fileName:\"themes/Button.css.ts\",content:``};\nexport default styleData;\n\t"]}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"parameters-bundle.css.js","sourceRoot":"","sources":["../../../../src/generated/themes/sap_horizon/parameters-bundle.css.ts"],"names":[],"mappings":"AAEA,MAAM,SAAS,GAAc,EAAC,WAAW,EAAC,uBAAuB,EAAC,QAAQ,EAAC,6CAA6C,EAAC,OAAO,EAAC,EAAE,EAAC,CAAC;AACrI,eAAe,SAAS,CAAC","sourcesContent":["import type { StyleData } from \"@ui5/webcomponents-base/dist/types.js\";\n\nconst styleData: StyleData = {packageName:\"@ui5/webcomponents-ai\",fileName:\"themes/sap_horizon/parameters-bundle.css.ts\",content:``};\nexport default styleData;\n\t"]}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"parameters-bundle.css.js","sourceRoot":"","sources":["../../../../src/generated/themes/sap_horizon_dark/parameters-bundle.css.ts"],"names":[],"mappings":"AAEA,MAAM,SAAS,GAAc,EAAC,WAAW,EAAC,uBAAuB,EAAC,QAAQ,EAAC,kDAAkD,EAAC,OAAO,EAAC,EAAE,EAAC,CAAC;AAC1I,eAAe,SAAS,CAAC","sourcesContent":["import type { StyleData } from \"@ui5/webcomponents-base/dist/types.js\";\n\nconst styleData: StyleData = {packageName:\"@ui5/webcomponents-ai\",fileName:\"themes/sap_horizon_dark/parameters-bundle.css.ts\",content:``};\nexport default styleData;\n\t"]}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"parameters-bundle.css.js","sourceRoot":"","sources":["../../../../src/generated/themes/sap_horizon_hcb/parameters-bundle.css.ts"],"names":[],"mappings":"AAEA,MAAM,SAAS,GAAc,EAAC,WAAW,EAAC,uBAAuB,EAAC,QAAQ,EAAC,iDAAiD,EAAC,OAAO,EAAC,EAAE,EAAC,CAAC;AACzI,eAAe,SAAS,CAAC","sourcesContent":["import type { StyleData } from \"@ui5/webcomponents-base/dist/types.js\";\n\nconst styleData: StyleData = {packageName:\"@ui5/webcomponents-ai\",fileName:\"themes/sap_horizon_hcb/parameters-bundle.css.ts\",content:``};\nexport default styleData;\n\t"]}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"parameters-bundle.css.js","sourceRoot":"","sources":["../../../../src/generated/themes/sap_horizon_hcw/parameters-bundle.css.ts"],"names":[],"mappings":"AAEA,MAAM,SAAS,GAAc,EAAC,WAAW,EAAC,uBAAuB,EAAC,QAAQ,EAAC,iDAAiD,EAAC,OAAO,EAAC,EAAE,EAAC,CAAC;AACzI,eAAe,SAAS,CAAC","sourcesContent":["import type { StyleData } from \"@ui5/webcomponents-base/dist/types.js\";\n\nconst styleData: StyleData = {packageName:\"@ui5/webcomponents-ai\",fileName:\"themes/sap_horizon_hcw/parameters-bundle.css.ts\",content:``};\nexport default styleData;\n\t"]}
|
@@ -0,0 +1,24 @@
|
|
1
|
+
{
|
2
|
+
"$schema": "https://raw.githubusercontent.com/JetBrains/web-types/master/schema/web-types.json",
|
3
|
+
"name": "@ui5/webcomponents-ai",
|
4
|
+
"version": "2.0.0-rc.4",
|
5
|
+
"description-markup": "markdown",
|
6
|
+
"contributions": {
|
7
|
+
"html": {
|
8
|
+
"elements": [
|
9
|
+
{
|
10
|
+
"name": "ui5-ai-prompt-input",
|
11
|
+
"description": "\n---\n",
|
12
|
+
"doc-url": "",
|
13
|
+
"attributes": [],
|
14
|
+
"events": [],
|
15
|
+
"js": { "properties": [], "events": [] }
|
16
|
+
}
|
17
|
+
]
|
18
|
+
},
|
19
|
+
"css": {
|
20
|
+
"properties": [],
|
21
|
+
"pseudo-elements": []
|
22
|
+
}
|
23
|
+
}
|
24
|
+
}
|
package/jsconfig.json
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
const getScripts = require("@ui5/webcomponents-tools/components-package/nps.js");
|
2
|
+
|
3
|
+
const options = {
|
4
|
+
port: 8082,
|
5
|
+
portStep: 2,
|
6
|
+
aiPackage: true,
|
7
|
+
noWatchTS: true,
|
8
|
+
dev: true,
|
9
|
+
};
|
10
|
+
|
11
|
+
const scripts = getScripts(options);
|
12
|
+
|
13
|
+
module.exports = {
|
14
|
+
scripts,
|
15
|
+
};
|
package/package.json
ADDED
@@ -0,0 +1,57 @@
|
|
1
|
+
{
|
2
|
+
"name": "@ui5/webcomponents-ai",
|
3
|
+
"version": "2.0.0-rc.4",
|
4
|
+
"description": "UI5 Web Components: webcomponents.ai",
|
5
|
+
"ui5": {
|
6
|
+
"webComponentsPackage": true
|
7
|
+
},
|
8
|
+
"type": "module",
|
9
|
+
"author": "SAP SE (https://www.sap.com)",
|
10
|
+
"license": "Apache-2.0",
|
11
|
+
"private": false,
|
12
|
+
"customElements": "./dist/custom-elements.json",
|
13
|
+
"keywords": [
|
14
|
+
"openui5",
|
15
|
+
"sapui5",
|
16
|
+
"ui5"
|
17
|
+
],
|
18
|
+
"scripts": {
|
19
|
+
"clean": "wc-dev clean",
|
20
|
+
"lint": "wc-dev lint",
|
21
|
+
"lint:scope": "nps scope.lint",
|
22
|
+
"start": "wc-dev start",
|
23
|
+
"build": "wc-dev build",
|
24
|
+
"watch": "wc-dev watch",
|
25
|
+
"generate": "nps generate",
|
26
|
+
"generateAPI": "nps generateAPI",
|
27
|
+
"bundle": "nps build.bundle",
|
28
|
+
"test": "wc-dev test",
|
29
|
+
"test:ssr": "node -e \"import('./test/ssr/component-imports.js')\"",
|
30
|
+
"create-ui5-element": "wc-create-ui5-element",
|
31
|
+
"prepublishOnly": "tsc -b"
|
32
|
+
},
|
33
|
+
"exports": {
|
34
|
+
"./.port": "./.port",
|
35
|
+
"./src/*": "./src/*",
|
36
|
+
"./dist/*": "./dist/*",
|
37
|
+
"./package.json": "./package.json",
|
38
|
+
"./bundle.esm.js": "./bundle.esm.js",
|
39
|
+
"./bundle.scoped.esm.js": "./bundle.scoped.esm.js",
|
40
|
+
"./*": "./dist/*"
|
41
|
+
},
|
42
|
+
"repository": {
|
43
|
+
"type": "git",
|
44
|
+
"url": "https://github.com/SAP/ui5-webcomponents.git",
|
45
|
+
"directory": "packages/ai"
|
46
|
+
},
|
47
|
+
"dependencies": {
|
48
|
+
"@ui5/webcomponents": "2.0.0-rc.4",
|
49
|
+
"@ui5/webcomponents-base": "2.0.0-rc.4",
|
50
|
+
"@ui5/webcomponents-icons": "2.0.0-rc.4",
|
51
|
+
"@ui5/webcomponents-theming": "2.0.0-rc.4"
|
52
|
+
},
|
53
|
+
"devDependencies": {
|
54
|
+
"@ui5/webcomponents-tools": "2.0.0-rc.4",
|
55
|
+
"chromedriver": "^125.0.0"
|
56
|
+
}
|
57
|
+
}
|
package/src/Button.hbs
ADDED
File without changes
|
@@ -0,0 +1 @@
|
|
1
|
+
@import "../base/Button-parameters.css";
|
@@ -0,0 +1 @@
|
|
1
|
+
@import "../base/Button-parameters.css";
|
@@ -0,0 +1 @@
|
|
1
|
+
@import "../base/Button-parameters.css";
|
@@ -0,0 +1 @@
|
|
1
|
+
@import "../base/Button-parameters.css";
|
package/tsconfig.json
ADDED
@@ -0,0 +1,28 @@
|
|
1
|
+
{
|
2
|
+
"include": ["src/**/*", "global.d.ts"],
|
3
|
+
"compilerOptions": {
|
4
|
+
"target": "ES2021",
|
5
|
+
"lib": ["DOM", "DOM.Iterable", "ES2023"],
|
6
|
+
// Generate d.ts files
|
7
|
+
"declaration": true,
|
8
|
+
"outDir": "dist",
|
9
|
+
"skipLibCheck": true,
|
10
|
+
"sourceMap": true,
|
11
|
+
"inlineSources": true,
|
12
|
+
"strict": true,
|
13
|
+
"moduleResolution": "node",
|
14
|
+
"experimentalDecorators": true,
|
15
|
+
"importsNotUsedAsValues": "preserve",
|
16
|
+
"ignoreDeprecations": "5.0",
|
17
|
+
"paths": {
|
18
|
+
"@ui5/webcomponents-base/dist/*": ["../base/src/*"],
|
19
|
+
"@ui5/webcomponents/dist/*": ["../main/src/*"],
|
20
|
+
"@ui5/webcomponents-theming/dist/*": ["../theming/src/*"],
|
21
|
+
},
|
22
|
+
},
|
23
|
+
"references": [
|
24
|
+
{ "path": "../base" },
|
25
|
+
{ "path": "../main" },
|
26
|
+
{ "path": "../theming" },
|
27
|
+
]
|
28
|
+
}
|