@aws-amplify/ui-react-native 1.2.25 → 1.2.26
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/dist/assets/icons/icons.d.ts +15 -0
- package/dist/assets/icons/icons.js +14 -0
- package/dist/assets/icons/icons.ts +17 -0
- package/dist/assets/icons/index.d.ts +1 -15
- package/dist/assets/icons/index.js +1 -14
- package/dist/assets/icons/index.ts +1 -17
- package/dist/assets/index.d.ts +1 -1
- package/dist/assets/index.js +1 -1
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/lib/assets/icons/icons.js +16 -0
- package/lib/assets/icons/icons.ts +17 -0
- package/lib/assets/icons/index.js +6 -14
- package/lib/assets/icons/index.ts +1 -17
- package/lib/assets/index.js +1 -4
- package/lib/version.js +1 -1
- package/package.json +4 -4
- package/src/assets/icons/icons.ts +17 -0
- package/src/assets/icons/index.ts +1 -17
- package/src/assets/index.ts +1 -1
- package/src/version.ts +1 -1
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { ImageSourcePropType } from 'react-native';
|
|
2
|
+
declare const icons: {
|
|
3
|
+
amazonLogo: ImageSourcePropType;
|
|
4
|
+
appleLogo: ImageSourcePropType;
|
|
5
|
+
checkboxFilled: ImageSourcePropType;
|
|
6
|
+
checkboxOutline: ImageSourcePropType;
|
|
7
|
+
close: ImageSourcePropType;
|
|
8
|
+
copy: ImageSourcePropType;
|
|
9
|
+
error: ImageSourcePropType;
|
|
10
|
+
facebookLogo: ImageSourcePropType;
|
|
11
|
+
googleLogo: ImageSourcePropType;
|
|
12
|
+
visibilityOn: ImageSourcePropType;
|
|
13
|
+
visibilityOff: ImageSourcePropType;
|
|
14
|
+
};
|
|
15
|
+
export default icons;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
const icons = {
|
|
2
|
+
amazonLogo: require('./amazonLogo.png'),
|
|
3
|
+
appleLogo: require('./appleLogo.png'),
|
|
4
|
+
checkboxFilled: require('./checkboxFilled.png'),
|
|
5
|
+
checkboxOutline: require('./checkboxOutline.png'),
|
|
6
|
+
close: require('./close.png'),
|
|
7
|
+
copy: require('./copy.png'),
|
|
8
|
+
error: require('./error.png'),
|
|
9
|
+
facebookLogo: require('./facebookLogo.png'),
|
|
10
|
+
googleLogo: require('./googleLogo.png'),
|
|
11
|
+
visibilityOn: require('./visibilityOn.png'),
|
|
12
|
+
visibilityOff: require('./visibilityOff.png'),
|
|
13
|
+
};
|
|
14
|
+
export default icons;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { ImageSourcePropType } from 'react-native';
|
|
2
|
+
|
|
3
|
+
const icons = {
|
|
4
|
+
amazonLogo: require('./amazonLogo.png') as ImageSourcePropType,
|
|
5
|
+
appleLogo: require('./appleLogo.png') as ImageSourcePropType,
|
|
6
|
+
checkboxFilled: require('./checkboxFilled.png') as ImageSourcePropType,
|
|
7
|
+
checkboxOutline: require('./checkboxOutline.png') as ImageSourcePropType,
|
|
8
|
+
close: require('./close.png') as ImageSourcePropType,
|
|
9
|
+
copy: require('./copy.png') as ImageSourcePropType,
|
|
10
|
+
error: require('./error.png') as ImageSourcePropType,
|
|
11
|
+
facebookLogo: require('./facebookLogo.png') as ImageSourcePropType,
|
|
12
|
+
googleLogo: require('./googleLogo.png') as ImageSourcePropType,
|
|
13
|
+
visibilityOn: require('./visibilityOn.png') as ImageSourcePropType,
|
|
14
|
+
visibilityOff: require('./visibilityOff.png') as ImageSourcePropType,
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
export default icons;
|
|
@@ -1,15 +1 @@
|
|
|
1
|
-
|
|
2
|
-
declare const icons: {
|
|
3
|
-
amazonLogo: ImageSourcePropType;
|
|
4
|
-
appleLogo: ImageSourcePropType;
|
|
5
|
-
checkboxFilled: ImageSourcePropType;
|
|
6
|
-
checkboxOutline: ImageSourcePropType;
|
|
7
|
-
close: ImageSourcePropType;
|
|
8
|
-
copy: ImageSourcePropType;
|
|
9
|
-
error: ImageSourcePropType;
|
|
10
|
-
facebookLogo: ImageSourcePropType;
|
|
11
|
-
googleLogo: ImageSourcePropType;
|
|
12
|
-
visibilityOn: ImageSourcePropType;
|
|
13
|
-
visibilityOff: ImageSourcePropType;
|
|
14
|
-
};
|
|
15
|
-
export default icons;
|
|
1
|
+
export { default as icons } from './icons';
|
|
@@ -1,14 +1 @@
|
|
|
1
|
-
|
|
2
|
-
amazonLogo: require('./amazonLogo.png'),
|
|
3
|
-
appleLogo: require('./appleLogo.png'),
|
|
4
|
-
checkboxFilled: require('./checkboxFilled.png'),
|
|
5
|
-
checkboxOutline: require('./checkboxOutline.png'),
|
|
6
|
-
close: require('./close.png'),
|
|
7
|
-
copy: require('./copy.png'),
|
|
8
|
-
error: require('./error.png'),
|
|
9
|
-
facebookLogo: require('./facebookLogo.png'),
|
|
10
|
-
googleLogo: require('./googleLogo.png'),
|
|
11
|
-
visibilityOn: require('./visibilityOn.png'),
|
|
12
|
-
visibilityOff: require('./visibilityOff.png'),
|
|
13
|
-
};
|
|
14
|
-
export default icons;
|
|
1
|
+
export { default as icons } from './icons';
|
|
@@ -1,17 +1 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
const icons = {
|
|
4
|
-
amazonLogo: require('./amazonLogo.png') as ImageSourcePropType,
|
|
5
|
-
appleLogo: require('./appleLogo.png') as ImageSourcePropType,
|
|
6
|
-
checkboxFilled: require('./checkboxFilled.png') as ImageSourcePropType,
|
|
7
|
-
checkboxOutline: require('./checkboxOutline.png') as ImageSourcePropType,
|
|
8
|
-
close: require('./close.png') as ImageSourcePropType,
|
|
9
|
-
copy: require('./copy.png') as ImageSourcePropType,
|
|
10
|
-
error: require('./error.png') as ImageSourcePropType,
|
|
11
|
-
facebookLogo: require('./facebookLogo.png') as ImageSourcePropType,
|
|
12
|
-
googleLogo: require('./googleLogo.png') as ImageSourcePropType,
|
|
13
|
-
visibilityOn: require('./visibilityOn.png') as ImageSourcePropType,
|
|
14
|
-
visibilityOff: require('./visibilityOff.png') as ImageSourcePropType,
|
|
15
|
-
};
|
|
16
|
-
|
|
17
|
-
export default icons;
|
|
1
|
+
export { default as icons } from './icons';
|
package/dist/assets/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export { icons } from './icons';
|
package/dist/assets/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export { icons } from './icons';
|
package/dist/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "1.2.
|
|
1
|
+
export declare const VERSION = "1.2.26";
|
package/dist/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '1.2.
|
|
1
|
+
export const VERSION = '1.2.26';
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const icons = {
|
|
4
|
+
amazonLogo: require('./amazonLogo.png'),
|
|
5
|
+
appleLogo: require('./appleLogo.png'),
|
|
6
|
+
checkboxFilled: require('./checkboxFilled.png'),
|
|
7
|
+
checkboxOutline: require('./checkboxOutline.png'),
|
|
8
|
+
close: require('./close.png'),
|
|
9
|
+
copy: require('./copy.png'),
|
|
10
|
+
error: require('./error.png'),
|
|
11
|
+
facebookLogo: require('./facebookLogo.png'),
|
|
12
|
+
googleLogo: require('./googleLogo.png'),
|
|
13
|
+
visibilityOn: require('./visibilityOn.png'),
|
|
14
|
+
visibilityOff: require('./visibilityOff.png'),
|
|
15
|
+
};
|
|
16
|
+
exports.default = icons;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { ImageSourcePropType } from 'react-native';
|
|
2
|
+
|
|
3
|
+
const icons = {
|
|
4
|
+
amazonLogo: require('./amazonLogo.png') as ImageSourcePropType,
|
|
5
|
+
appleLogo: require('./appleLogo.png') as ImageSourcePropType,
|
|
6
|
+
checkboxFilled: require('./checkboxFilled.png') as ImageSourcePropType,
|
|
7
|
+
checkboxOutline: require('./checkboxOutline.png') as ImageSourcePropType,
|
|
8
|
+
close: require('./close.png') as ImageSourcePropType,
|
|
9
|
+
copy: require('./copy.png') as ImageSourcePropType,
|
|
10
|
+
error: require('./error.png') as ImageSourcePropType,
|
|
11
|
+
facebookLogo: require('./facebookLogo.png') as ImageSourcePropType,
|
|
12
|
+
googleLogo: require('./googleLogo.png') as ImageSourcePropType,
|
|
13
|
+
visibilityOn: require('./visibilityOn.png') as ImageSourcePropType,
|
|
14
|
+
visibilityOff: require('./visibilityOff.png') as ImageSourcePropType,
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
export default icons;
|
|
@@ -1,16 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
amazonLogo: require('./amazonLogo.png'),
|
|
5
|
-
appleLogo: require('./appleLogo.png'),
|
|
6
|
-
checkboxFilled: require('./checkboxFilled.png'),
|
|
7
|
-
checkboxOutline: require('./checkboxOutline.png'),
|
|
8
|
-
close: require('./close.png'),
|
|
9
|
-
copy: require('./copy.png'),
|
|
10
|
-
error: require('./error.png'),
|
|
11
|
-
facebookLogo: require('./facebookLogo.png'),
|
|
12
|
-
googleLogo: require('./googleLogo.png'),
|
|
13
|
-
visibilityOn: require('./visibilityOn.png'),
|
|
14
|
-
visibilityOff: require('./visibilityOff.png'),
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
15
4
|
};
|
|
16
|
-
exports
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.icons = void 0;
|
|
7
|
+
var icons_1 = require("./icons");
|
|
8
|
+
Object.defineProperty(exports, "icons", { enumerable: true, get: function () { return __importDefault(icons_1).default; } });
|
|
@@ -1,17 +1 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
const icons = {
|
|
4
|
-
amazonLogo: require('./amazonLogo.png') as ImageSourcePropType,
|
|
5
|
-
appleLogo: require('./appleLogo.png') as ImageSourcePropType,
|
|
6
|
-
checkboxFilled: require('./checkboxFilled.png') as ImageSourcePropType,
|
|
7
|
-
checkboxOutline: require('./checkboxOutline.png') as ImageSourcePropType,
|
|
8
|
-
close: require('./close.png') as ImageSourcePropType,
|
|
9
|
-
copy: require('./copy.png') as ImageSourcePropType,
|
|
10
|
-
error: require('./error.png') as ImageSourcePropType,
|
|
11
|
-
facebookLogo: require('./facebookLogo.png') as ImageSourcePropType,
|
|
12
|
-
googleLogo: require('./googleLogo.png') as ImageSourcePropType,
|
|
13
|
-
visibilityOn: require('./visibilityOn.png') as ImageSourcePropType,
|
|
14
|
-
visibilityOff: require('./visibilityOff.png') as ImageSourcePropType,
|
|
15
|
-
};
|
|
16
|
-
|
|
17
|
-
export default icons;
|
|
1
|
+
export { default as icons } from './icons';
|
package/lib/assets/index.js
CHANGED
|
@@ -1,8 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
-
};
|
|
5
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
3
|
exports.icons = void 0;
|
|
7
4
|
var icons_1 = require("./icons");
|
|
8
|
-
Object.defineProperty(exports, "icons", { enumerable: true, get: function () { return
|
|
5
|
+
Object.defineProperty(exports, "icons", { enumerable: true, get: function () { return icons_1.icons; } });
|
package/lib/version.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-amplify/ui-react-native",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.26",
|
|
4
4
|
"main": "lib/index.js",
|
|
5
5
|
"module": "dist/index.js",
|
|
6
6
|
"react-native": "src/index.ts",
|
|
@@ -40,9 +40,9 @@
|
|
|
40
40
|
"rimraf": "^3.0.2"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@aws-amplify/ui": "5.7.
|
|
44
|
-
"@aws-amplify/ui-react-core": "2.1.
|
|
45
|
-
"@aws-amplify/ui-react-core-notifications": "1.0.
|
|
43
|
+
"@aws-amplify/ui": "5.7.2",
|
|
44
|
+
"@aws-amplify/ui-react-core": "2.1.31",
|
|
45
|
+
"@aws-amplify/ui-react-core-notifications": "1.0.8"
|
|
46
46
|
},
|
|
47
47
|
"peerDependencies": {
|
|
48
48
|
"aws-amplify": "^5.0.1",
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { ImageSourcePropType } from 'react-native';
|
|
2
|
+
|
|
3
|
+
const icons = {
|
|
4
|
+
amazonLogo: require('./amazonLogo.png') as ImageSourcePropType,
|
|
5
|
+
appleLogo: require('./appleLogo.png') as ImageSourcePropType,
|
|
6
|
+
checkboxFilled: require('./checkboxFilled.png') as ImageSourcePropType,
|
|
7
|
+
checkboxOutline: require('./checkboxOutline.png') as ImageSourcePropType,
|
|
8
|
+
close: require('./close.png') as ImageSourcePropType,
|
|
9
|
+
copy: require('./copy.png') as ImageSourcePropType,
|
|
10
|
+
error: require('./error.png') as ImageSourcePropType,
|
|
11
|
+
facebookLogo: require('./facebookLogo.png') as ImageSourcePropType,
|
|
12
|
+
googleLogo: require('./googleLogo.png') as ImageSourcePropType,
|
|
13
|
+
visibilityOn: require('./visibilityOn.png') as ImageSourcePropType,
|
|
14
|
+
visibilityOff: require('./visibilityOff.png') as ImageSourcePropType,
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
export default icons;
|
|
@@ -1,17 +1 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
const icons = {
|
|
4
|
-
amazonLogo: require('./amazonLogo.png') as ImageSourcePropType,
|
|
5
|
-
appleLogo: require('./appleLogo.png') as ImageSourcePropType,
|
|
6
|
-
checkboxFilled: require('./checkboxFilled.png') as ImageSourcePropType,
|
|
7
|
-
checkboxOutline: require('./checkboxOutline.png') as ImageSourcePropType,
|
|
8
|
-
close: require('./close.png') as ImageSourcePropType,
|
|
9
|
-
copy: require('./copy.png') as ImageSourcePropType,
|
|
10
|
-
error: require('./error.png') as ImageSourcePropType,
|
|
11
|
-
facebookLogo: require('./facebookLogo.png') as ImageSourcePropType,
|
|
12
|
-
googleLogo: require('./googleLogo.png') as ImageSourcePropType,
|
|
13
|
-
visibilityOn: require('./visibilityOn.png') as ImageSourcePropType,
|
|
14
|
-
visibilityOff: require('./visibilityOff.png') as ImageSourcePropType,
|
|
15
|
-
};
|
|
16
|
-
|
|
17
|
-
export default icons;
|
|
1
|
+
export { default as icons } from './icons';
|
package/src/assets/index.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export { icons } from './icons';
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '1.2.
|
|
1
|
+
export const VERSION = '1.2.26';
|