Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
![UI5-logo](docs/imgs/ui5-svelte-logo.png)

[![CI](https://github.com/SAP-samples/ui5-webcomponents-sample-svelte/actions/workflows/ci.yaml/badge.svg)](https://github.com/SAP-samples/ui5-webcomponents-sample-svelte/actions/workflows/ci.yaml)
[![REUSE status](https://api.reuse.software/badge/github.com/SAP-samples/ui5-webcomponents-sample-svelte)](https://api.reuse.software/info/github.com/SAP-samples/ui5-webcomponents-sample-svelte)
[![CI](https://github.com/UI5/sample-webcomponents-svelte/actions/workflows/ci.yaml/badge.svg)](https://github.com/UI5/sample-webcomponents-svelte/actions/workflows/ci.yaml)
[![REUSE status](https://api.reuse.software/badge/github.com/UI5/sample-webcomponents-svelte)](https://api.reuse.software/info/github.com/UI5/sample-webcomponents-svelte)

# **UI5 Web Components Sample ToDo App**
### ***Sample ToDo application that demonstrates the usage of [UI5 Web Components](https://sap.github.io/ui5-webcomponents/) using [Svelte](https://svelte.dev/)***

***Sample ToDo application that demonstrates the usage of [UI5 Web Components](https://ui5.github.io/webcomponents/) using [Svelte](https://svelte.dev/)***

The application showcases how to: bind properties, subscribe to and forward events, and consume UI5 Web Components within Svelte.

Expand All @@ -16,8 +17,8 @@ Project was initialized uising **[ViteJs](https://vitejs.dev/guide/#scaffolding-
## **Download and Installation**
1. **[Clone this repository](https://docs.github.com/en/repositories/creating-and-managing-repositories/cloning-a-repository)** and navigate to the downloaded directory
```sh
git clone https://github.com/SAP-samples/ui5-webcomponents-sample-svelte.git
cd ui5-webcomponents-sample-svelte
git clone https://github.com/UI5/sample-webcomponents-svelte.git
cd sample-webcomponents-svelte
```
2. Install all dependencies
```sh
Expand Down
6 changes: 3 additions & 3 deletions REUSE.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
version = 1
SPDX-PackageName = "UI5 Webcomponents Sample with Svelte"
SPDX-PackageSupplier = "SAP OpenUI5 <openui5@sap.com>"
SPDX-PackageDownloadLocation = "https://github.com/sap-samples/ui5-webcomponents-sample-svelte"
SPDX-PackageDownloadLocation = "https://github.com/UI5/sample-webcomponents-svelte"
SPDX-PackageComment = "The code in this project may include calls to APIs (“API Calls”) of\n SAP or third-party products or services developed outside of this project\n (“External Products”).\n “APIs” means application programming interfaces, as well as their respective\n specifications and implementing code that allows software to communicate with\n other software.\n API Calls to External Products are not licensed under the open source license\n that governs this project. The use of such API Calls and related External\n Products are subject to applicable additional agreements with the relevant\n provider of the External Products. In no event shall the open source license\n that governs this project grant any rights in or to any External Products,or\n alter, expand or supersede any terms of the applicable additional agreements.\n If you have a valid license agreement with SAP for the use of a particular SAP\n External Product, then you may make use of any API Calls included in this\n project’s code for that SAP External Product, subject to the terms of such\n license agreement. If you do not have a valid license agreement for the use of\n a particular SAP External Product, then you may only make use of any API Calls\n in this project for that SAP External Product for your internal, non-productive\n and non-commercial test and evaluation of such API Calls. Nothing herein grants\n you any rights to use or access any SAP External Product, or provide any third\n parties the right to use of access any SAP External Product, through API Calls."

[[annotations]]
path = "**"
precedence = "aggregate"
SPDX-FileCopyrightText = "2021 SAP SE or an SAP affiliate company and ui5-webcomponents-sample-svelte contributors"
SPDX-FileCopyrightText = "2021 SAP SE or an SAP affiliate company and sample-webcomponents-svelte contributors"
SPDX-License-Identifier = "Apache-2.0"

[[annotations]]
path = "docs/imgs/ui5-svelte-logo.png"
precedence = "aggregate"
SPDX-FileCopyrightText = ["", "2016-21 Svelte contributors (https://github.com/sveltejs/svelte/graphs/contributors)", "2021 SAP SE or an SAP affiliate company and ui5-webcomponents-sample-svelte contributors"]
SPDX-FileCopyrightText = ["", "2016-21 Svelte contributors (https://github.com/sveltejs/svelte/graphs/contributors)", "2021 SAP SE or an SAP affiliate company and sample-webcomponents-svelte contributors"]
SPDX-License-Identifier = "Apache-2.0 and MIT"
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"type": "module",
"scripts": {
"start": "vite",
"build": "vite build --base=/ui5-webcomponents-sample-svelte/",
"build": "vite build --base=/sample-webcomponents-svelte/",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"lint": "eslint src",
Expand Down
2 changes: 1 addition & 1 deletion src/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@
<b>Admin version</b>: Svelte Admin <br />
</p>
<hr />
<span class="help-dialog-text">For more information, please visit our <a href="https://github.com/SAP-samples/ui5-webcomponents-sample-svelte" target="_blank">documentation</a>.</span>
<span class="help-dialog-text">For more information, please visit our <a href="https://github.com/UI5/sample-webcomponents-svelte" target="_blank">documentation</a>.</span>
<p />
<div class="dialog-button">
<ui5-button design="Emphasized" on:click={handleHelpDialogCloseButtonClick}>Close</ui5-button>
Expand Down
Loading