Skip to content

Commit

Permalink
chore(release): 0.0.22
Browse files Browse the repository at this point in the history
  • Loading branch information
a-luna committed Jul 5, 2022
1 parent 779af97 commit 1e48798
Show file tree
Hide file tree
Showing 27 changed files with 2,887 additions and 1,725 deletions.
9 changes: 5 additions & 4 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module.exports = {
ecmaVersion: '2020',
sourceType: 'module',
tsconfigRootDir: __dirname,
project: ['./tsconfig.json'],
project: ['./tsconfig.eslint.json'],
extraFileExtensions: ['.svelte'],
},
env: {
Expand All @@ -21,13 +21,14 @@ module.exports = {
NodeJS: true,
},
plugins: ['svelte3', '@typescript-eslint'],
ignorePatterns: ['*.cjs'],
ignorePatterns: ['*.cjs', '**/TableCell.svelte/*_template.ts'],
settings: {
'svelte3/typescript': true,
'svelte3/typescript': () => require('typescript'),
'svelte3/named-blocks': true,
},
overrides: [
{
files: ['*.svelte'],
files: ['**/*.svelte/*.ts'],
processor: 'svelte3/svelte3',
},
],
Expand Down
1 change: 0 additions & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
"semi": true,
"svelteSortOrder": "options-scripts-markup-styles",
"svelteStrictMode": false,
"svelteBracketNewLine": true,
"svelteIndentScriptAndStyle": true,
"trailingComma": "all"
}
17 changes: 12 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,25 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [0.0.21](https://github.com/a-luna/svelte-simple-tables/compare/v0.0.20...v0.0.21) (2022-03-11)
### [0.0.22](https://github.com/a-luna/svelte-simple-tables/compare/v0.0.21...v0.0.22) (2022-07-05)


### Features
### Bug Fixes

* :bug: allow user to choose how table is displayed when table is smaller than container ([b48f9fd](https://github.com/a-luna/svelte-simple-tables/commit/b48f9fd3e8e6b5a43a7680a1e843702e8c649692))
* :bug: overflow-x autoscroll behavior is broken when placed within a flex container ([fbba8e6](https://github.com/a-luna/svelte-simple-tables/commit/fbba8e621d43d207e320b99412cef0c0b35fd47a))
* :bug: remove role="navigation" from PageNavigationCompact component ([56f9aa5](https://github.com/a-luna/svelte-simple-tables/commit/56f9aa5bc2d64bf9711c079f4dc17bbbf0434d7b))

* :sparkles: removed fullWidth table config setting ([f63999d](https://github.com/a-luna/svelte-simple-tables/commit/f63999d6a08ffb6ef430c50c64c9346e0d2f899d))
### [0.0.21](https://github.com/a-luna/svelte-simple-tables/compare/v0.0.20...v0.0.21) (2022-03-11)

### Features

- :sparkles: removed fullWidth table config setting ([f63999d](https://github.com/a-luna/svelte-simple-tables/commit/f63999d6a08ffb6ef430c50c64c9346e0d2f899d))

### Bug Fixes

* :bug: improved componentWidth logic for annnoying corner-cases re: wrapper width, padding, etc ([3f3f583](https://github.com/a-luna/svelte-simple-tables/commit/3f3f5833efd565a91e0d9c20efe8440436bba83d))
* :bug: table should display with margin-left and margin-right = auto by default ([e201bf1](https://github.com/a-luna/svelte-simple-tables/commit/e201bf10d500f805c370b7d02749ce48d57710c0))
- :bug: improved componentWidth logic for annnoying corner-cases re: wrapper width, padding, etc ([3f3f583](https://github.com/a-luna/svelte-simple-tables/commit/3f3f5833efd565a91e0d9c20efe8440436bba83d))
- :bug: table should display with margin-left and margin-right = auto by default ([e201bf1](https://github.com/a-luna/svelte-simple-tables/commit/e201bf10d500f805c370b7d02749ce48d57710c0))

### [0.0.20](https://github.com/a-luna/svelte-simple-tables/compare/v0.0.19...v0.0.20) (2022-03-09)

Expand Down
File renamed without changes.
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@a-luna/svelte-simple-tables",
"version": "0.0.21",
"version": "0.0.22",
"license": "MIT",
"description": "Accessible, sortable, paginated table component",
"author": "Aaron Luna (https://github.com/a-luna)",
Expand Down Expand Up @@ -80,7 +80,6 @@
"postcss": "^8.4.14",
"prettier": "^2.7.1",
"prettier-plugin-svelte": "^2.7.0",
"resize-observer-polyfill": "^1.5.1",
"standard-version": "^9.5.0",
"svelte": "^3.48.0",
"svelte-check": "^2.8.0",
Expand Down
Loading

0 comments on commit 1e48798

Please sign in to comment.