Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
erwinheldy committed Jun 24, 2024
1 parent a4b7f6f commit c202f9e
Show file tree
Hide file tree
Showing 82 changed files with 1,893 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
root = true

[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
27 changes: 27 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# build output
dist/
# generated types
.astro/

# dependencies
node_modules/

# logs
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*


# environment variables
.env
.env.production

# macOS-specific files
.DS_Store

# jetbrains setting folder
.idea/

# locks
pnpm-lock.yaml
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
save-exact=true
9 changes: 9 additions & 0 deletions .prettierrc.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
/** @type {import("prettier").Config} */
const config = {
semi: false,
singleQuote: true,
printWidth: 999999999999,
htmlWhitespaceSensitivity: 'ignore',
}

export default config
8 changes: 8 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"html-css-class-completion.includeGlobPattern": "node_modules/bootstrap/dist/css/bootstrap.css",
"html-css-class-completion.excludeGlobPattern": "!node_modules/bootstrap/dist/css/bootstrap.css",
"html-css-class-completion.HTMLLanguages": [
"html",
"astro"
]
}
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
v1.0.0
- Initial release
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# use-bootstrap-dialog

A JavaScript library for generating dialogs using Bootstrap modals

Demo and documentation: [https://use-bootstrap-dialog.js.org](https://use-bootstrap-dialog.js.org)

## License

[MIT](./LICENSE)
17 changes: 17 additions & 0 deletions astro.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import { defineConfig } from 'astro/config'
import solidJs from '@astrojs/solid-js'

// https://astro.build/config
export default defineConfig({
integrations: [solidJs()],
devToolbar: {
enabled: false,
},
build: {
format: 'file',
},
outDir: 'docs',
server: {
port: 3000,
},
})
1 change: 1 addition & 0 deletions docs/CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
use-bootstrap-dialog.js.org
1 change: 1 addition & 0 deletions docs/_astro/client.DagW50mg.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions docs/_astro/demo.BYx4LTDR.css

Large diffs are not rendered by default.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
1 change: 1 addition & 0 deletions docs/_astro/hoisted.CCsEHv3E.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
import{T as o}from"./tab.DTcroKsN.js";window.bootstrap={};window.bootstrap.Tab=o;
Loading

0 comments on commit c202f9e

Please sign in to comment.