@ainias42/react-bootstrap-mobile 0.1.8 → 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 +2 -0
- package/.npnignore +2 -0
- package/bin/release.sh +6 -1
- package/bin/updateCopies.js +2 -6
- package/bootstrapReactMobile.ts +1 -0
- package/dist/bootstrapReactMobile.d.ts +1 -0
- package/dist/bootstrapReactMobile.js +866 -734
- package/dist/bootstrapReactMobile.js.map +1 -0
- package/dist/src/Components/FormElements/Button/Button.d.ts +1 -1
- package/dist/src/Components/FormElements/CheckBox/Checkbox.d.ts +5 -3
- package/dist/src/Components/FormElements/ImageInput/MultipleFileInput.d.ts +20 -0
- package/dist/src/Components/Layout/Container.d.ts +1 -4
- package/dist/src/Components/Layout/Grid/GridItem.d.ts +4 -1
- package/dist/src/Components/RbmComponentProps.d.ts +3 -4
- package/package.json +2 -2
- package/src/Components/FormElements/Button/Button.tsx +1 -1
- package/src/Components/FormElements/CheckBox/Checkbox.tsx +39 -10
- package/src/Components/FormElements/ColorInput/ColorInput.tsx +16 -3
- package/src/Components/FormElements/ImageInput/ImageInput.tsx +2 -1
- package/src/Components/FormElements/ImageInput/MultipleFileInput.tsx +240 -0
- package/src/Components/FormElements/ImageInput/imageInput.scss +41 -6
- package/src/Components/Layout/Container.tsx +2 -6
- package/src/Components/Layout/Grid/GridItem.tsx +15 -0
- package/src/Components/Layout/Grid/grid.scss +23 -0
- package/src/Components/List/List.tsx +15 -17
- package/src/Components/RbmComponentProps.ts +3 -3
- package/webpack.config.js +1 -1
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/.npnignore
ADDED
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
|
|
@@ -25,7 +27,7 @@ git clone $REPOSITORY project
|
|
|
25
27
|
cd project
|
|
26
28
|
|
|
27
29
|
npm install
|
|
28
|
-
npm run build
|
|
30
|
+
npm run build:production
|
|
29
31
|
git add -u
|
|
30
32
|
git commit -m "pre-version-commit for version $versionName" || echo "no commit needed"
|
|
31
33
|
npm version "$versionName"
|
|
@@ -33,3 +35,6 @@ npm publish
|
|
|
33
35
|
git push
|
|
34
36
|
|
|
35
37
|
echo "$TMPDIR"
|
|
38
|
+
|
|
39
|
+
cd "$ORIGIN_DIR"
|
|
40
|
+
git pull
|
package/bin/updateCopies.js
CHANGED
|
@@ -6,14 +6,10 @@ const packageName = require('../package.json').name;
|
|
|
6
6
|
|
|
7
7
|
let pathsToProjects = [
|
|
8
8
|
'/home/silas/Projekte/web/dnd',
|
|
9
|
-
'/home/silas/Projekte/web/
|
|
10
|
-
'/home/silas/Projekte/
|
|
11
|
-
'/home/silas/Projekte/web/smd-mail',
|
|
9
|
+
'/home/silas/Projekte/web/bat',
|
|
10
|
+
'/home/silas/Projekte/web/games',
|
|
12
11
|
'/home/silas/Projekte/web/react-windows',
|
|
13
12
|
'/home/silas/Projekte/web/cordova-sites',
|
|
14
|
-
// '/home/silas/Projekte/web/cordova-sites-legacy-adapter',
|
|
15
|
-
// '/home/silas/Projekte/web/cordova-sites-easy-sync',
|
|
16
|
-
// '/home/silas/Projekte/web/cordova-sites-user-management',
|
|
17
13
|
];
|
|
18
14
|
|
|
19
15
|
const deleteFolderRecursive = function (path) {
|
package/bootstrapReactMobile.ts
CHANGED
|
@@ -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';
|