diff --git a/docs/pages/resources/changelog.md b/docs/pages/resources/changelog.md
index 554cd2e84..b1da29bd7 100644
--- a/docs/pages/resources/changelog.md
+++ b/docs/pages/resources/changelog.md
@@ -12,8 +12,9 @@ Components with the Experimental bad
New versions of Web Awesome are released as-needed and generally occur when a critical mass of changes have accumulated. At any time, you can see what's coming in the next release by visiting [next.shoelace.style](https://next.shoelace.style).
-## Theme API
+## 3.0 Changes (BREAKING)
+- Changed the `sl` prefix to `wa` for Web Awesome, including tags, events, etc.
- Changed `primary` variants to `brand` in all components
- Removed `default` from `` and made `neutral` the new default
- Removed the `circle` modifier from `` because button's no longer have a set height
@@ -22,6 +23,7 @@ New versions of Web Awesome are released as-needed and generally occur when a cr
- Fixed a bug in `` that resulted in improper spacing between the label and the required asterisk [#1540]
- Updated `@ctrl/tinycolor` to 4.0.1 [#1542]
+- Updated Bootstrap Icons to 1.11.0
## 2.8.0
diff --git a/package-lock.json b/package-lock.json
index 9379318a3..57ebd09ec 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -30,7 +30,7 @@
"@web/test-runner": "^0.15.0",
"@web/test-runner-commands": "^0.6.5",
"@web/test-runner-playwright": "^0.9.0",
- "bootstrap-icons": "^1.10.5",
+ "bootstrap-icons": "^1.11.0",
"browser-sync": "^2.29.3",
"chalk": "^5.2.0",
"change-case": "^4.1.2",
@@ -83,10 +83,6 @@
},
"engines": {
"node": ">=14.17.0"
- },
- "funding": {
- "type": "individual",
- "url": "https://github.com/sponsors/claviska"
}
},
"node_modules/@11ty/dependency-tree": {
@@ -3988,9 +3984,9 @@
}
},
"node_modules/bootstrap-icons": {
- "version": "1.10.5",
- "resolved": "https://registry.npmjs.org/bootstrap-icons/-/bootstrap-icons-1.10.5.tgz",
- "integrity": "sha512-oSX26F37V7QV7NCE53PPEL45d7EGXmBgHG3pDpZvcRaKVzWMqIRL9wcqJUyEha1esFtM3NJzvmxFXDxjJYD0jQ==",
+ "version": "1.11.0",
+ "resolved": "https://registry.npmjs.org/bootstrap-icons/-/bootstrap-icons-1.11.0.tgz",
+ "integrity": "sha512-bLTbtACfUqwZf6f/xUYUb7bTRZC68QaQwwy9h1b96NPKfnwqzSatHqDypW6R2CBW7zUE7lP+O93GdZuPY3RIHA==",
"dev": true,
"funding": [
{
@@ -20213,9 +20209,9 @@
}
},
"bootstrap-icons": {
- "version": "1.10.5",
- "resolved": "https://registry.npmjs.org/bootstrap-icons/-/bootstrap-icons-1.10.5.tgz",
- "integrity": "sha512-oSX26F37V7QV7NCE53PPEL45d7EGXmBgHG3pDpZvcRaKVzWMqIRL9wcqJUyEha1esFtM3NJzvmxFXDxjJYD0jQ==",
+ "version": "1.11.0",
+ "resolved": "https://registry.npmjs.org/bootstrap-icons/-/bootstrap-icons-1.11.0.tgz",
+ "integrity": "sha512-bLTbtACfUqwZf6f/xUYUb7bTRZC68QaQwwy9h1b96NPKfnwqzSatHqDypW6R2CBW7zUE7lP+O93GdZuPY3RIHA==",
"dev": true
},
"boxen": {
diff --git a/package.json b/package.json
index f3d7ef11b..c7bf9ef1b 100644
--- a/package.json
+++ b/package.json
@@ -25,8 +25,15 @@
"./dist/react/*": "./dist/react/*",
"./dist/translations/*": "./dist/translations/*"
},
- "files": ["dist", "cdn"],
- "keywords": ["web components", "custom elements", "components"],
+ "files": [
+ "dist",
+ "cdn"
+ ],
+ "keywords": [
+ "web components",
+ "custom elements",
+ "components"
+ ],
"repository": {
"type": "git",
"url": "git+https://github.com/shoelace-style/shoelace.git"
@@ -77,7 +84,7 @@
"@web/test-runner": "^0.15.0",
"@web/test-runner-commands": "^0.6.5",
"@web/test-runner-playwright": "^0.9.0",
- "bootstrap-icons": "^1.10.5",
+ "bootstrap-icons": "^1.11.0",
"browser-sync": "^2.29.3",
"chalk": "^5.2.0",
"change-case": "^4.1.2",
@@ -129,6 +136,9 @@
"user-agent-data-types": "^0.3.0"
},
"lint-staged": {
- "*.{ts,js}": ["eslint --max-warnings 0 --cache --fix", "prettier --write"]
+ "*.{ts,js}": [
+ "eslint --max-warnings 0 --cache --fix",
+ "prettier --write"
+ ]
}
}