Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
lint-staged.config.js
6 changes: 3 additions & 3 deletions .github/ISSUE_TEMPLATE/Bug.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ If possible, describe how this bug could be fixed.
Consider adding any relevant environment information here.
-->

- `@doist/reactist` version:
- `react` version:
- Browser:
- `@doist/reactist` version:
- `react` version:
- Browser:
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

Reactist follows [semantic versioning](https://semver.org/) and doesn't introduce breaking changes (API-wise) in minor or patch releases. However, the appearance of a component might change in a minor or patch release so keep an eye on redesigns and make sure your app still looks and feels like you expect it.

## v7.1.6

- [Tweak] Upgrade some dependencies.

## v7.1.5

- [Tweak] Adds a backdrop/overlay to dropdown menus.
Expand Down
6 changes: 1 addition & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,7 @@ import Loading from '@doist/reactist/dist/Loading'
You also need to load the CSS file of reactist somewhere in your app. For instance:

```html
<link
rel="stylesheet"
type="text/css"
href="./node_modules/@doist/reactist/styles/Loading.css"
/>
<link rel="stylesheet" type="text/css" href="./node_modules/@doist/reactist/styles/Loading.css" />
```

If you prefer to include static files grab the [minified build from the dist folder](https://github.com/Doist/reactist/tree/develop/dist).
Expand Down
2 changes: 1 addition & 1 deletion docs/iframe.html
Original file line number Diff line number Diff line change
Expand Up @@ -71,4 +71,4 @@
}</script><style>#root[hidden],
#docs-root[hidden] {
display: none !important;
}</style></head><body><div class="sb-nopreview sb-wrapper"><div class="sb-nopreview_main"><h1 class="sb-nopreview_heading sb-heading">No Preview</h1><p>Sorry, but you either have no stories or none are selected somehow.</p><ul><li>Please check the Storybook config.</li><li>Try reloading the page.</li></ul><p>If the problem persists, check the browser console, or the terminal you've run Storybook from.</p></div></div><div class="sb-errordisplay sb-wrapper"><pre id="error-message" class="sb-heading"></pre><pre class="sb-errordisplay_code"><code id="error-stack"></code></pre></div><div id="root"></div><div id="docs-root"></div><script src="runtime~main.ba946ee3e7fabd7e27e1.bundle.js"></script><script src="vendors~main.ba946ee3e7fabd7e27e1.bundle.js"></script><script src="main.ba946ee3e7fabd7e27e1.bundle.js"></script></body></html>
}</style></head><body><div class="sb-nopreview sb-wrapper"><div class="sb-nopreview_main"><h1 class="sb-nopreview_heading sb-heading">No Preview</h1><p>Sorry, but you either have no stories or none are selected somehow.</p><ul><li>Please check the Storybook config.</li><li>Try reloading the page.</li></ul><p>If the problem persists, check the browser console, or the terminal you've run Storybook from.</p></div></div><div class="sb-errordisplay sb-wrapper"><pre id="error-message" class="sb-heading"></pre><pre class="sb-errordisplay_code"><code id="error-stack"></code></pre></div><div id="root"></div><div id="docs-root"></div><script src="runtime~main.4a0329658ebe5e455975.bundle.js"></script><script src="vendors~main.4a0329658ebe5e455975.bundle.js"></script><script src="main.4a0329658ebe5e455975.bundle.js"></script></body></html>

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions docs/main.4a0329658ebe5e455975.bundle.js.map

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

1 change: 0 additions & 1 deletion docs/main.ba946ee3e7fabd7e27e1.bundle.js.map

This file was deleted.

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

1 change: 1 addition & 0 deletions docs/runtime~main.4a0329658ebe5e455975.bundle.js.map

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

1 change: 0 additions & 1 deletion docs/runtime~main.ba946ee3e7fabd7e27e1.bundle.js.map

This file was deleted.

3 changes: 3 additions & 0 deletions docs/vendors~main.4a0329658ebe5e455975.bundle.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions docs/vendors~main.4a0329658ebe5e455975.bundle.js.map

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

3 changes: 0 additions & 3 deletions docs/vendors~main.ba946ee3e7fabd7e27e1.bundle.js

This file was deleted.

1 change: 0 additions & 1 deletion docs/vendors~main.ba946ee3e7fabd7e27e1.bundle.js.map

This file was deleted.

4 changes: 2 additions & 2 deletions lint-staged.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module.exports = {
'./**/*.{js,jsx,ts,tsx,json,css,scss,less}': ['prettier --write', 'git add'],
'*.{js,jsx,ts,tsx}': ['tsdx lint', 'git add'],
'./**/*.{js,jsx,ts,tsx,json,css,scss,less}': ['prettier --write'],
'*.{js,jsx,ts,tsx}': ['tsdx lint'],
}
Loading