@aws-amplify/ui-react-native 1.2.25 → 1.2.27

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.
@@ -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
- 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;
1
+ export { default as icons } from './icons';
@@ -1,14 +1 @@
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;
1
+ export { default as icons } from './icons';
@@ -1,17 +1 @@
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
+ export { default as icons } from './icons';
@@ -1 +1 @@
1
- export { default as icons } from './icons';
1
+ export { icons } from './icons';
@@ -1 +1 @@
1
- export { default as icons } from './icons';
1
+ export { icons } from './icons';
package/dist/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const VERSION = "1.2.25";
1
+ export declare const VERSION = "1.2.27";
package/dist/version.js CHANGED
@@ -1 +1 @@
1
- export const VERSION = '1.2.25';
1
+ export const VERSION = '1.2.27';
@@ -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
- 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'),
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
15
4
  };
16
- exports.default = icons;
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
- 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
+ export { default as icons } from './icons';
@@ -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 __importDefault(icons_1).default; } });
5
+ Object.defineProperty(exports, "icons", { enumerable: true, get: function () { return icons_1.icons; } });
package/lib/version.js CHANGED
@@ -1,4 +1,4 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.VERSION = void 0;
4
- exports.VERSION = '1.2.25';
4
+ exports.VERSION = '1.2.27';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-amplify/ui-react-native",
3
- "version": "1.2.25",
3
+ "version": "1.2.27",
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.1",
44
- "@aws-amplify/ui-react-core": "2.1.30",
45
- "@aws-amplify/ui-react-core-notifications": "1.0.7"
43
+ "@aws-amplify/ui": "5.8.0",
44
+ "@aws-amplify/ui-react-core": "2.1.32",
45
+ "@aws-amplify/ui-react-core-notifications": "1.0.9"
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
- 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
+ export { default as icons } from './icons';
@@ -1 +1 @@
1
- export { default as icons } from './icons';
1
+ export { icons } from './icons';
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const VERSION = '1.2.25';
1
+ export const VERSION = '1.2.27';