@medyll/idae-slotui-svelte 0.95.0 → 0.96.0
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 +34 -5
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -5,14 +5,43 @@ It aims to offer a set of reusable and customizable slots to enhance the develop
|
|
|
5
5
|
|
|
6
6
|
## Features
|
|
7
7
|
|
|
8
|
-
- Reusable
|
|
9
|
-
-
|
|
10
|
-
-
|
|
8
|
+
- **Reusable Components**: Prebuilt slot-based components to speed up development.
|
|
9
|
+
- **Customizable**: Easily adapt components to fit your application's design and functionality.
|
|
10
|
+
- **Svelte Integration**: Designed specifically for Svelte, ensuring seamless integration.
|
|
11
|
+
- **Lightweight**: Minimal dependencies for optimal performance.
|
|
11
12
|
|
|
12
13
|
## Installation
|
|
13
14
|
|
|
14
|
-
To install
|
|
15
|
+
To install the package, use your preferred package manager:
|
|
15
16
|
|
|
16
|
-
```
|
|
17
|
+
```bash
|
|
17
18
|
npm install @medyll/idae-slotui-svelte
|
|
19
|
+
# or
|
|
20
|
+
yarn add @medyll/idae-slotui-svelte
|
|
21
|
+
# or
|
|
22
|
+
pnpm add @medyll/idae-slotui-svelte
|
|
18
23
|
```
|
|
24
|
+
|
|
25
|
+
## Usage
|
|
26
|
+
|
|
27
|
+
Import and use the components in your Svelte application:
|
|
28
|
+
|
|
29
|
+
```svelte
|
|
30
|
+
<script>
|
|
31
|
+
import { SlotComponent } from '@medyll/idae-slotui-svelte';
|
|
32
|
+
</script>
|
|
33
|
+
|
|
34
|
+
<SlotComponent>
|
|
35
|
+
<div slot="header">Header Content</div>
|
|
36
|
+
<div slot="body">Body Content</div>
|
|
37
|
+
<div slot="footer">Footer Content</div>
|
|
38
|
+
</SlotComponent>
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
## Contributing
|
|
42
|
+
|
|
43
|
+
Contributions are welcome! Please refer to the [contribution guidelines](../../CONTRIBUTING.md) for more details.
|
|
44
|
+
|
|
45
|
+
## License
|
|
46
|
+
|
|
47
|
+
This package is licensed under the MIT License. See the [LICENSE](../../LICENSE) file for more information.
|
package/package.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@medyll/idae-slotui-svelte",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.96.0",
|
|
4
4
|
"scope": "@medyll",
|
|
5
|
+
"description": "A Svelte 5 component library for building modular and reactive user interfaces.",
|
|
5
6
|
"scripts": {
|
|
6
7
|
"dev": "vite dev",
|
|
7
8
|
"build": "vite build && npm run package",
|
|
@@ -87,8 +88,8 @@
|
|
|
87
88
|
"dependencies": {
|
|
88
89
|
"@iconify/svelte": "^4.2.0",
|
|
89
90
|
"@medyll/cssfabric": "^0.4.2",
|
|
90
|
-
"@medyll/idae-be": "^1.
|
|
91
|
-
"@medyll/idae-engine": "^1.
|
|
91
|
+
"@medyll/idae-be": "^1.4.0",
|
|
92
|
+
"@medyll/idae-engine": "^1.93.0",
|
|
92
93
|
"d3": "^7.9.0",
|
|
93
94
|
"lerna": "^8.2.1",
|
|
94
95
|
"npm-check-updates": "^17.1.16",
|