Skip to content

Commit

Permalink
feat: updated all dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Swiftwork committed Jan 28, 2020
1 parent 6e68845 commit 681653f
Show file tree
Hide file tree
Showing 10 changed files with 4,272 additions and 3,025 deletions.
1 change: 1 addition & 0 deletions .eslintrc.js
Expand Up @@ -19,6 +19,7 @@ module.exports = {
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'prettier/prettier': 'warn',
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-empty-interface': 'off',
},
overrides: [
Expand Down
1,346 changes: 673 additions & 673 deletions LICENSE → LICENSE.md

Large diffs are not rendered by default.

5,854 changes: 3,547 additions & 2,307 deletions package-lock.json

Large diffs are not rendered by default.

66 changes: 33 additions & 33 deletions package.json
Expand Up @@ -37,31 +37,31 @@
"dependencies": {
"react": "^16.12.0",
"react-dom": "^16.12.0",
"normalize.css": "8.0.1"
"normalize.css": "^8.0.1"
},
"devDependencies": {
"@babel/core": "7.7.5",
"@babel/preset-typescript": "7.7.4",
"@sambego/storybook-state": "1.3.6",
"@storybook/addon-a11y": "5.2.8",
"@storybook/addon-actions": "5.2.8",
"@storybook/addon-knobs": "5.2.8",
"@storybook/addon-links": "5.2.8",
"@storybook/addon-notes": "5.2.8",
"@storybook/addons": "5.2.8",
"@storybook/react": "5.2.8",
"@typescript-eslint/eslint-plugin": "2.11.0",
"@typescript-eslint/parser": "2.11.0",
"autoprefixer": "9.7.3",
"@babel/core": "7.8.3",
"@babel/preset-typescript": "7.8.3",
"@sambego/storybook-state": "2.0.1",
"@storybook/addon-a11y": "5.3.9",
"@storybook/addon-actions": "5.3.9",
"@storybook/addon-knobs": "5.3.9",
"@storybook/addon-links": "5.3.9",
"@storybook/addon-notes": "5.3.9",
"@storybook/addons": "5.3.9",
"@storybook/react": "5.3.9",
"@typescript-eslint/eslint-plugin": "2.18.0",
"@typescript-eslint/parser": "2.18.0",
"autoprefixer": "9.7.4",
"babel-loader": "8.0.6",
"css-loader": "3.3.0",
"css-loader": "3.4.2",
"cssnano": "4.1.10",
"del": "5.1.0",
"eslint": "6.7.2",
"eslint-config-prettier": "6.7.0",
"eslint-plugin-prettier": "3.1.1",
"eslint-plugin-react": "7.17.0",
"gh-pages": "2.1.1",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.0",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-react": "7.18.0",
"gh-pages": "2.2.0",
"gulp": "4.0.2",
"gulp-eslint": "6.0.0",
"gulp-if": "3.0.0",
Expand All @@ -70,14 +70,14 @@
"gulp-postcss": "8.0.0",
"gulp-print": "5.0.2",
"gulp-sourcemaps": "2.6.5",
"gulp-stylelint": "10.0.0",
"gulp-stylelint": "13.0.0",
"gulp-svg-sprite": "1.5.0",
"gulp-svgo": "2.1.1",
"gulp-typescript": "5.0.1",
"husky": "3.1.0",
"husky": "4.2.1",
"lazypipe": "1.0.2",
"lerna": "3.19.0",
"mini-css-extract-plugin": "0.8.0",
"lerna": "3.20.2",
"mini-css-extract-plugin": "0.9.0",
"parse-github-url": "1.0.2",
"postcss-import": "12.0.1",
"postcss-inline-svg": "4.1.0",
Expand All @@ -89,21 +89,21 @@
"prettier": "1.19.1",
"raw-loader": "4.0.0",
"storybook-dark-mode": "0.2.0",
"stylelint": "12.0.0",
"stylelint-config-prettier": "8.0.0",
"stylelint": "13.0.0",
"stylelint-config-prettier": "8.0.1",
"stylelint-config-standard": "19.0.0",
"typescript": "3.7.3",
"typescript": "3.7.5",
"url-loader": "3.0.0",
"vinyl-paths": "3.0.1",
"webpack": "4.41.2",
"webpack": "4.41.5",
"webpack-cli": "3.3.10",
"webpack-dev-server": "3.9.0",
"webpack-dev-server": "3.10.1",
"webpack-log": "3.0.1"
},
"optionalDependencies": {
"@types/node": "12.12.16",
"@types/react": "16.9.16",
"@types/react-dom": "16.9.4",
"@types/webpack-env": "1.14.1"
"@types/node": "13.5.0",
"@types/react": "16.9.19",
"@types/react-dom": "16.9.5",
"@types/webpack-env": "1.15.0"
}
}
5 changes: 3 additions & 2 deletions packages/ui-core/src/components/CheckBox/CheckBox.stories.tsx
@@ -1,5 +1,5 @@
import React from 'react';
import { StateDecorator, Store } from '@sambego/storybook-state';
import { Store, withState } from '@sambego/storybook-state';

import './CheckBox.css';
import CheckBox from './CheckBox';
Expand All @@ -10,7 +10,8 @@ const store = new Store({

export default {
title: 'CheckBox',
decorators: [StateDecorator(store)],
decorators: [withState()],
parameters: { state: { store } },
};

export const basic = () => (
Expand Down
5 changes: 3 additions & 2 deletions packages/ui-core/src/components/Select/Select.stories.tsx
@@ -1,5 +1,5 @@
import React from 'react';
import { StateDecorator, Store } from '@sambego/storybook-state';
import { Store, withState } from '@sambego/storybook-state';

import './Select.css';
import Select from './Select';
Expand Down Expand Up @@ -45,7 +45,8 @@ const options = [

export default {
title: 'Select',
decorators: [StateDecorator(store)],
decorators: [withState()],
parameters: { state: { store } },
};

export const basic = () => (
Expand Down
5 changes: 3 additions & 2 deletions packages/ui-core/src/components/TextArea/TextArea.stories.tsx
@@ -1,5 +1,5 @@
import React from 'react';
import { StateDecorator, Store } from '@sambego/storybook-state';
import { Store, withState } from '@sambego/storybook-state';

import './TextArea.css';
import TextArea from './TextArea';
Expand All @@ -11,7 +11,8 @@ const store = new Store({

export default {
title: 'TextArea',
decorators: [StateDecorator(store)],
decorators: [withState(store)],
parameters: { state: { store } },
};

export const basic = () => (
Expand Down
@@ -1,5 +1,5 @@
import React from 'react';
import { StateDecorator, Store } from '@sambego/storybook-state';
import { Store, withState } from '@sambego/storybook-state';

import './TextField.css';
import TextField from './TextField';
Expand All @@ -11,7 +11,8 @@ const store = new Store({

export default {
title: 'TextField',
decorators: [StateDecorator(store)],
decorators: [withState()],
parameters: { state: { store } },
};

export const basic = () => (
Expand Down
5 changes: 3 additions & 2 deletions packages/ui-datepicker/src/Datepicker.stories.tsx
@@ -1,5 +1,5 @@
import React from 'react';
import { StateDecorator, Store } from '@sambego/storybook-state';
import { Store, withState } from '@sambego/storybook-state';

import './Datepicker.css';
import Datepicker, { DateValue } from './Datepicker';
Expand All @@ -14,7 +14,8 @@ const store = new Store({

export default {
title: 'Datepicker',
decorators: [StateDecorator(store)],
decorators: [withState()],
parameters: { state: { store } },
};

export const basic = () => (
Expand Down
5 changes: 3 additions & 2 deletions packages/ui-typeahead/src/Typeahead.stories.tsx
@@ -1,5 +1,5 @@
import React from 'react';
import { StateDecorator, Store } from '@sambego/storybook-state';
import { Store, withState } from '@sambego/storybook-state';

import './Typeahead.css';
import mock from './mock.json';
Expand All @@ -21,7 +21,8 @@ const typeaheadMock: TypeaheadService = {

export default {
title: 'Typeahead',
decorators: [StateDecorator(store)],
decorators: [withState()],
parameters: { state: { store } },
};

export const basic = () => (
Expand Down

0 comments on commit 681653f

Please sign in to comment.