@ainias42/react-bootstrap-mobile 0.1.9 → 0.1.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.eslintrc.json CHANGED
@@ -153,8 +153,10 @@
153
153
  "no-param-reassign": "off",
154
154
  "default-case": "off",
155
155
  "jsx-a11y/interactive-supports-focus": "off",
156
+ "jsx-a11y/no-noninteractive-element-interactions": "off",
156
157
  "jsx-a11y/click-events-have-key-events": "off",
157
158
  "jsx-a11y/no-static-element-interactions": "off",
159
+ "jsx-a11y/label-has-associated-control": "off",
158
160
  "react/require-default-props": "off"
159
161
  },
160
162
  "settings": {
package/bin/release.sh CHANGED
@@ -3,6 +3,8 @@
3
3
  # Exit when a command fails
4
4
  set -e
5
5
 
6
+ ORIGIN_DIR=$(pwd)
7
+
6
8
  REPOSITORY=git@github.com:Ainias/react-bootstrap-mobile.git
7
9
 
8
10
  if [[ -z "$1" ]]; then
@@ -33,3 +35,6 @@ npm publish
33
35
  git push
34
36
 
35
37
  echo "$TMPDIR"
38
+
39
+ cd "$ORIGIN_DIR"
40
+ git pull
@@ -7,6 +7,7 @@ const packageName = require('../package.json').name;
7
7
  let pathsToProjects = [
8
8
  '/home/silas/Projekte/web/dnd',
9
9
  '/home/silas/Projekte/web/bat',
10
+ '/home/silas/Projekte/web/games',
10
11
  '/home/silas/Projekte/web/react-windows',
11
12
  '/home/silas/Projekte/web/cordova-sites',
12
13
  ];
@@ -18,6 +18,7 @@ export * from './src/Components/FormElements/CheckBox/Checkbox';
18
18
  export * from './src/Components/FormElements/ColorInput/ColorInput';
19
19
  export * from './src/Components/FormElements/ColorInput/sharedSelectedColor';
20
20
  export * from './src/Components/FormElements/ImageInput/ImageInput';
21
+ export * from './src/Components/FormElements/ImageInput/MultipleFileInput';
21
22
  export * from './src/Components/FormElements/Input/HiddenInput';
22
23
  export * from './src/Components/FormElements/Input/Input';
23
24
  export * from './src/Components/FormElements/Input/PasswordInput/PasswordInput';
@@ -18,6 +18,7 @@ export * from './src/Components/FormElements/CheckBox/Checkbox';
18
18
  export * from './src/Components/FormElements/ColorInput/ColorInput';
19
19
  export * from './src/Components/FormElements/ColorInput/sharedSelectedColor';
20
20
  export * from './src/Components/FormElements/ImageInput/ImageInput';
21
+ export * from './src/Components/FormElements/ImageInput/MultipleFileInput';
21
22
  export * from './src/Components/FormElements/Input/HiddenInput';
22
23
  export * from './src/Components/FormElements/Input/Input';
23
24
  export * from './src/Components/FormElements/Input/PasswordInput/PasswordInput';