@winkintel/bootstrap-svelte 0.0.2 → 0.0.3
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/LICENSE.md +1 -1
- package/README.md +6 -4
- package/package.json +1 -1
package/LICENSE.md
CHANGED
|
@@ -187,7 +187,7 @@
|
|
|
187
187
|
same "printed page" as the copyright notice for easier
|
|
188
188
|
identification within third-party archives.
|
|
189
189
|
|
|
190
|
-
Copyright
|
|
190
|
+
Copyright 2026 Wink, Inc.
|
|
191
191
|
|
|
192
192
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
193
193
|
you may not use this file except in compliance with the License.
|
package/README.md
CHANGED
|
@@ -16,12 +16,12 @@ Bootstrap Svelte provides ready-to-use, type-safe Bootstrap components built spe
|
|
|
16
16
|
## Installation
|
|
17
17
|
|
|
18
18
|
```bash
|
|
19
|
-
pnpm add @winkintel/bootstrap-svelte
|
|
19
|
+
pnpm add @winkintel/bootstrap-svelte bootstrap
|
|
20
20
|
|
|
21
21
|
# or
|
|
22
|
-
npm install @winkintel/bootstrap-svelte
|
|
22
|
+
npm install @winkintel/bootstrap-svelte bootstrap
|
|
23
23
|
|
|
24
|
-
yarn add @winkintel/bootstrap-svelte
|
|
24
|
+
yarn add @winkintel/bootstrap-svelte bootstrap
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
### Peer dependency
|
|
@@ -29,9 +29,11 @@ yarn add @winkintel/bootstrap-svelte
|
|
|
29
29
|
This package requires Svelte 5:
|
|
30
30
|
|
|
31
31
|
```bash
|
|
32
|
-
pnpm add svelte
|
|
32
|
+
pnpm add svelte@^5.0.0
|
|
33
33
|
```
|
|
34
34
|
|
|
35
|
+
Bootstrap CSS is expected to be provided by the consuming application.
|
|
36
|
+
|
|
35
37
|
## Bootstrap CSS
|
|
36
38
|
|
|
37
39
|
Import Bootstrap CSS in your application:
|