Skip to content

Commit 8e73a34

Browse files
committed
v2.2.1
1 parent 714466c commit 8e73a34

File tree

107 files changed

+6994
-5206
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

107 files changed

+6994
-5206
lines changed

.gitignore

Lines changed: 27 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,27 @@
1-
node_modules
2-
dist
1+
# build output
2+
dist/
3+
# generated types
4+
.astro/
5+
6+
# dependencies
7+
node_modules/
8+
9+
# logs
10+
npm-debug.log*
11+
yarn-debug.log*
12+
yarn-error.log*
13+
pnpm-debug.log*
14+
15+
16+
# environment variables
17+
.env
18+
.env.production
19+
20+
# macOS-specific files
21+
.DS_Store
22+
23+
# jetbrains setting folder
24+
.idea/
25+
26+
# locks
27+
pnpm-lock.yaml

.prettierrc.mjs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
/** @type {import("prettier").Config} */
2+
const config = {
3+
semi: false,
4+
singleQuote: true,
5+
printWidth: 999999999999,
6+
htmlWhitespaceSensitivity: 'ignore',
7+
}
8+
9+
export default config

.vscode/settings.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"files.associations": {
3-
"*.html.txt": "html",
4-
"*.css.txt": "css",
5-
"*.scss.txt": "scss",
6-
"*.js.txt": "javascript",
7-
},
2+
"html-css-class-completion.includeGlobPattern": "node_modules/bootstrap/dist/css/bootstrap.css",
3+
"html-css-class-completion.excludeGlobPattern": "!node_modules/bootstrap/dist/css/bootstrap.css",
4+
"html-css-class-completion.HTMLLanguages": [
5+
"html",
6+
"astro"
7+
]
88
}

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
v2.2.1
2+
- Fixed types
3+
- Update docs
4+
15
v2.2.0
26
- Added no-input-onblur option.
37

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2024 Use Bootstrap
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

astro.config.mjs

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
import { defineConfig } from 'astro/config'
2+
import solidJs from '@astrojs/solid-js'
3+
4+
// https://astro.build/config
5+
export default defineConfig({
6+
integrations: [solidJs()],
7+
devToolbar: {
8+
enabled: false,
9+
},
10+
build: {
11+
format: 'file',
12+
assets: 'assets',
13+
},
14+
outDir: 'docs',
15+
server: {
16+
port: 3000,
17+
},
18+
})

docs/CNAME

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
use-bootstrap-tag.js.org
1+
use-bootstrap-tag.js.org

docs/api/index.html

Lines changed: 0 additions & 18 deletions
This file was deleted.

docs/assets/client.DagW50mg.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)