Skip to content

Commit c202f9e

Browse files
committed
Initial commit
1 parent a4b7f6f commit c202f9e

File tree

82 files changed

+1893
-0
lines changed

Some content is hidden

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

82 files changed

+1893
-0
lines changed

.editorconfig

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 2
6+
end_of_line = lf
7+
charset = utf-8
8+
trim_trailing_whitespace = true
9+
insert_final_newline = true

.gitignore

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
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

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
save-exact=true

.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: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
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+
]
8+
}

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
v1.0.0
2+
- Initial release

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# use-bootstrap-dialog
2+
3+
A JavaScript library for generating dialogs using Bootstrap modals
4+
5+
Demo and documentation: [https://use-bootstrap-dialog.js.org](https://use-bootstrap-dialog.js.org)
6+
7+
## License
8+
9+
[MIT](./LICENSE)

astro.config.mjs

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
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+
},
13+
outDir: 'docs',
14+
server: {
15+
port: 3000,
16+
},
17+
})

docs/CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
use-bootstrap-dialog.js.org

docs/_astro/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)