@winkintel/bootstrap-svelte 0.0.1 → 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.
Files changed (3) hide show
  1. package/LICENSE.md +1 -1
  2. package/README.md +6 -4
  3. package/package.json +2 -2
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 [yyyy] [name of copyright owner]
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@~5.0.0
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:
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Wink, Inc.",
3
3
  "name": "@winkintel/bootstrap-svelte",
4
- "version": "0.0.1",
4
+ "version": "0.0.3",
5
5
  "description": "Bootstrap components for Svelte 5 with TypeScript support.",
6
6
  "license": "Apache-2.0",
7
7
  "repository": {
@@ -53,7 +53,7 @@
53
53
  }
54
54
  },
55
55
  "peerDependencies": {
56
- "svelte": "~5.0.0"
56
+ "svelte": "^5.0.0"
57
57
  },
58
58
  "dependencies": {
59
59
  "@popperjs/core": "~2.11.8",