@exsdk/ui5
v0.1.0
Published
Modern UI component SDK for SAP Fiori & UI5 — beautiful, fast, framework-independent
Downloads
22
Maintainers
Readme
@exsdk/ui5
Modern UI Component SDK for SAP Fiori & UI5.
Beautiful, fast, framework-independent components that work inside any Fiori project — no BTP, no migration needed.
Quick Start
CDN (UI5 projeleri için — en kolay yol)
<!-- index.html veya flpSandbox.html içine ekle -->
<script src="https://cdn.exsdk.io/0.1.0/exsdk.ui5.umd.js"></script>
<link href="https://cdn.exsdk.io/0.1.0/exsdk.ui5.css" rel="stylesheet">
<script>
ExSDK.ExCore.init({ licenseKey: "YOUR_KEY" });
</script>npm
npm install @exsdk/ui5import ExCore, { ExButton, ExTable } from "@exsdk/ui5";
import "@exsdk/ui5/css";
await ExCore.init({ licenseKey: "YOUR_KEY" });UI5 Custom Control olarak kullanım
<!-- View XML -->
<mvc:View
xmlns:ex="project1.control">
<ex:ExTable id="myTable" title="Ürünler" columns="{/columns}" rows="{/rows}" />
<ex:ExButton text="Kaydet" type="primary" press=".onSave" />
</mvc:View>Components
| Component | Tier | Açıklama | |----------------|------------|---------------------------------| | ExButton | Free | 8 tip, ripple, loading states | | ExTable | Free | Virtual scroll, sort, resize | | ExForm | Free | 6 field tipi, validation | | ExFileUploader | Free | Drag & drop, preview | | ExKanban | Pro | Sürükle-bırak lanes | | ExChart | Pro | Line, bar, pie, donut | | ExTimeline | Pro | Gantt, bağımlılık | | ExDashboard | Enterprise | Widget grid |
Theming
ExCore.theme.apply({
"--ex-primary": "#FF5A00", // marka rengin
"--ex-radius": "4px" // köşe yuvarlaklığı
});