Skip to content
This repository was archived by the owner on Apr 19, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
25a541e
Fix for svelte 4 + debugs
splimterXstartappz Oct 8, 2023
1545a57
debugs
splimterXstartappz Oct 8, 2023
da175be
debugs
splimterXstartappz Oct 8, 2023
5c1e067
debugs
splimterXstartappz Oct 8, 2023
1d2cbbd
debugs
splimterXstartappz Oct 8, 2023
25da92e
debugs
splimterXstartappz Oct 8, 2023
b15a510
debugs
splimterXstartappz Oct 8, 2023
1783fea
debugs
splimterXstartappz Oct 8, 2023
ed1dde7
debugs
splimterXstartappz Oct 8, 2023
35a6414
debugs
splimterXstartappz Oct 8, 2023
f3ba65a
fix package version
splimterXstartappz Oct 8, 2023
92009d6
fix package version
splimterXstartappz Oct 8, 2023
50016d1
cleanup
splimterXstartappz Oct 8, 2023
9c699df
cleanup
splimterXstartappz Oct 8, 2023
d44ce28
Fixing modal for svelte4
splimterXstartappz Oct 9, 2023
5150a16
fixing .d.ts files
splimterXstartappz Oct 9, 2023
595d338
updating svelte ver in package.json
splimter Oct 11, 2023
9d53e56
updating svelte ver in package.json
splimter Oct 11, 2023
47c4782
updating svelte ver in package.json
splimter Oct 11, 2023
28d0583
updating svelte ver in package.json
splimter Oct 12, 2023
d0433c4
removing svelte4fix.js
splimter Oct 12, 2023
2b03a4b
Update package.json peer deps Svelte 4.0.5
milansimek Oct 12, 2023
4407b87
Merge pull request #1 from milansimek/package-json-fix
kefahi Oct 13, 2023
e4edfdd
Fix npm test errors and upgrade packages
Oct 14, 2023
9c22f50
Update linter and dependency to svelte 4.2
Oct 14, 2023
c17fa04
Update github runner to use node 18 and 20
kefahi Oct 14, 2023
31fad45
Resolved depcreation warnings
Oct 14, 2023
dedff92
Surviving SB7 upgrade
Oct 15, 2023
cf455a0
Synce with master branch and resolve conflicts
Oct 19, 2023
48c1deb
prettify the code
splimter Nov 5, 2023
73b1d47
fixing duplicated id.
splimter Nov 21, 2023
7e3e40f
fixing FormGroup export
splimter Nov 21, 2023
9897095
Merge remote-tracking branch 'origin/master' into storybook7-fixes
splimter Nov 21, 2023
7e029bd
suppress warning
splimter Nov 21, 2023
85fc5fb
fixing all linting and testing issue
splimter Nov 21, 2023
12cb4ae
fixing all linting and testing issue
splimter Nov 22, 2023
6f09e91
releasing v6
splimter Nov 22, 2023
24f82eb
fixing eslint for svelte
splimter Nov 22, 2023
f7723ea
fixing svelte check
splimter Nov 22, 2023
b3a68f4
update repository.url
splimter Nov 22, 2023
b0d6f3a
set proper name.
splimter Nov 22, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
4 changes: 4 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
node_modules
.storybook
dist
*.d.ts
41 changes: 34 additions & 7 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,47 @@
{
"parser": "@babel/eslint-parser",
"env": {
"browser": true,
"es6": true,
"jest/globals": true,
"node": true
},
"extends": ["eslint:recommended"],
"parserOptions": {
"ecmaVersion": 2019,
"sourceType": "module"
"settings": {
"svelte3/typescript": true
},
"plugins": ["jest", "svelte3"],
"overrides": [
{
"files": ["**/*.svelte"],
"processor": "svelte3/svelte3"
"files": ["*.svelte"],
"parser": "svelte-eslint-parser",
"parserOptions": {
"parser": {
"ts": "@typescript-eslint/parser",
"typescript": "@typescript-eslint/parser"
}
},
"rules": {
"@typescript-eslint/no-explicit-any": "off"
}
},
{
"files": ["*.ts"],
"parser": "@typescript-eslint/parser"
}
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:svelte/recommended",
"plugin:storybook/recommended"
],
"parserOptions": {
"ecmaVersion": 2019,
"sourceType": "module"
},
"plugins": [
"jest",
"svelte",
"@typescript-eslint"
]
}
2 changes: 1 addition & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:

strategy:
matrix:
node-version: [12.x, 14.x, 16.x]
node-version: [18.x, 20.x]

steps:
- uses: actions/checkout@v1
Expand Down
13 changes: 8 additions & 5 deletions .storybook/main.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/** @type { import('@storybook/svelte-vite').StorybookConfig } */
module.exports = {
stories: ["../stories/**/*.mdx", "../stories/**/*.stories.@(js|jsx|ts|tsx|svelte)"],
export default {
stories: ['../stories/index.stories.ts'],
// stories: ["../stories/**/*.mdx", "../stories/**/*.stories.@(js|jsx|ts|tsx|svelte)"],
addons: [
"@storybook/addon-links",
"@storybook/addon-essentials",
Expand All @@ -11,11 +12,13 @@ module.exports = {
// https://github.com/storybookjs/storybook/blob/next/MIGRATION.md#storystorev7-enabled-by-default
storyStoreV7: false,
},

framework: {
name: "@storybook/svelte-webpack5",
options: {},
name: '@storybook/svelte-webpack5',
options: {}
},

docs: {
autodocs: "tag",
autodocs: "tag"
}
};
2 changes: 1 addition & 1 deletion Readme.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
![sveltestrap](./logo.svg)

## Bootstrap 5 components for Svelte v3
## Bootstrap 5 components for Svelte v4

The goal of this library is to provide all Bootstrap 5 components for a [Svelte](https://svelte.dev) app. Sveltestrap makes it easy to use Bootstrap since there is no need to use Bootstrap component classes, to include Bootstrap's JavaScript, nor depend on jQuery. Sveltestrap is free, open-source software published under the permissive [MIT license.](https://github.com/bestguy/sveltestrap/blob/master/LICENSE) This library was inspired by the [reactstrap](https://reactstrap.github.io) library for React.

Expand Down
21 changes: 0 additions & 21 deletions babel.config.js

This file was deleted.

21 changes: 21 additions & 0 deletions babel.config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"presets": [
"@babel/preset-env",
"@babel/preset-typescript"
],
"env": {
"test": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
],
"@babel/preset-typescript"
]
}
}
}
2 changes: 1 addition & 1 deletion dist/sveltestrap.es.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/sveltestrap.es.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/sveltestrap.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/sveltestrap.js.map

Large diffs are not rendered by default.

3 changes: 0 additions & 3 deletions docs/0.3e308a67.iframe.bundle.js

This file was deleted.

17 changes: 0 additions & 17 deletions docs/0.3e308a67.iframe.bundle.js.LICENSE.txt

This file was deleted.

1 change: 0 additions & 1 deletion docs/0.3e308a67.iframe.bundle.js.map

This file was deleted.

2 changes: 0 additions & 2 deletions docs/0.91fcdcc9f2d44a5ceab5.manager.bundle.js

This file was deleted.

8 changes: 0 additions & 8 deletions docs/0.91fcdcc9f2d44a5ceab5.manager.bundle.js.LICENSE.txt

This file was deleted.

1 change: 0 additions & 1 deletion docs/1.472745140a218206d9bd.manager.bundle.js

This file was deleted.

1 change: 1 addition & 0 deletions docs/341.46574d57.iframe.bundle.js

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

44 changes: 44 additions & 0 deletions docs/426.a17b9c2b.iframe.bundle.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions docs/426.a17b9c2b.iframe.bundle.js.map

Large diffs are not rendered by default.

2 changes: 0 additions & 2 deletions docs/5.1dc416327b67d91748cd.manager.bundle.js

This file was deleted.

31 changes: 0 additions & 31 deletions docs/5.1dc416327b67d91748cd.manager.bundle.js.LICENSE.txt

This file was deleted.

1 change: 0 additions & 1 deletion docs/6.29eeeff0c80774ec4145.manager.bundle.js

This file was deleted.

1 change: 0 additions & 1 deletion docs/7.090b8b3e24a70db8f381.manager.bundle.js

This file was deleted.

2 changes: 0 additions & 2 deletions docs/8.c00196ab6caa2475b719.manager.bundle.js

This file was deleted.

12 changes: 0 additions & 12 deletions docs/8.c00196ab6caa2475b719.manager.bundle.js.LICENSE.txt

This file was deleted.

1 change: 0 additions & 1 deletion docs/9.22c0f4c8361adacca992.manager.bundle.js

This file was deleted.

1 change: 0 additions & 1 deletion docs/CNAME

This file was deleted.

Binary file removed docs/favicon.ico
Binary file not shown.
Loading