@medyll/idae-slotui-svelte 0.95.0 → 0.97.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/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- 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/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export * from './componentCite.js';
|
|
2
|
+
export * from './csss/csss.js';
|
|
2
3
|
export * as windowMinCss from './slotui-css/window.min.css';
|
|
3
4
|
export * as windowCss from './slotui-css/window.css';
|
|
4
5
|
export * as treeMinCss from './slotui-css/tree.min.css';
|
|
@@ -107,7 +108,6 @@ export * as autoCompleteMinCss from './slotui-css/auto-complete.min.css';
|
|
|
107
108
|
export * as autoCompleteCss from './slotui-css/auto-complete.css';
|
|
108
109
|
export * as alertMinCss from './slotui-css/alert.min.css';
|
|
109
110
|
export * as alertCss from './slotui-css/alert.css';
|
|
110
|
-
export * from './csss/csss.js';
|
|
111
111
|
export * from './utils/uses/toggler.js';
|
|
112
112
|
export * from './utils/uses/positioner.js';
|
|
113
113
|
export * from './utils/uses/navigation.js';
|
|
@@ -280,5 +280,5 @@ export * from './utils/uses/sx4u/sx4uPreprocess.js';
|
|
|
280
280
|
export * from './utils/uses/sx4u/sx4u.js';
|
|
281
281
|
export * from './utils/uses/stickTo/stickTo.js';
|
|
282
282
|
export * from './utils/uses/resizer/resizer.js';
|
|
283
|
-
export * from './utils/uses/clickAway/clickAway.js';
|
|
284
283
|
export * from './utils/uses/autofocus/autofocus.js';
|
|
284
|
+
export * from './utils/uses/clickAway/clickAway.js';
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
// auto exports of entry components
|
|
2
2
|
export * from './componentCite.js';
|
|
3
|
+
export * from './csss/csss.js';
|
|
3
4
|
export * as windowMinCss from './slotui-css/window.min.css';
|
|
4
5
|
export * as windowCss from './slotui-css/window.css';
|
|
5
6
|
export * as treeMinCss from './slotui-css/tree.min.css';
|
|
@@ -108,7 +109,6 @@ export * as autoCompleteMinCss from './slotui-css/auto-complete.min.css';
|
|
|
108
109
|
export * as autoCompleteCss from './slotui-css/auto-complete.css';
|
|
109
110
|
export * as alertMinCss from './slotui-css/alert.min.css';
|
|
110
111
|
export * as alertCss from './slotui-css/alert.css';
|
|
111
|
-
export * from './csss/csss.js';
|
|
112
112
|
export * from './utils/uses/toggler.js';
|
|
113
113
|
export * from './utils/uses/positioner.js';
|
|
114
114
|
export * from './utils/uses/navigation.js';
|
|
@@ -281,5 +281,5 @@ export * from './utils/uses/sx4u/sx4uPreprocess.js';
|
|
|
281
281
|
export * from './utils/uses/sx4u/sx4u.js';
|
|
282
282
|
export * from './utils/uses/stickTo/stickTo.js';
|
|
283
283
|
export * from './utils/uses/resizer/resizer.js';
|
|
284
|
-
export * from './utils/uses/clickAway/clickAway.js';
|
|
285
284
|
export * from './utils/uses/autofocus/autofocus.js';
|
|
285
|
+
export * from './utils/uses/clickAway/clickAway.js';
|
package/package.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@medyll/idae-slotui-svelte",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.97.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.5.0",
|
|
92
|
+
"@medyll/idae-engine": "^1.94.0",
|
|
92
93
|
"d3": "^7.9.0",
|
|
93
94
|
"lerna": "^8.2.1",
|
|
94
95
|
"npm-check-updates": "^17.1.16",
|