diff --git a/README.md b/README.md
index 45e0657..b981c8e 100644
--- a/README.md
+++ b/README.md
@@ -7,6 +7,7 @@ Android SDK
- [Settings](#settings)
- [App](#app)
- [Add fragment](#fragment)
+ - [Keyboard support](#keyboard)
- [Troubleshooting](#troubleshooting)
- [Authors](#authors)
@@ -18,12 +19,12 @@ You must use git to download the sdk from [repository](https://pubgit.newsmemory
1. Inside root folder run the following command:
```sh
-git clone --depth 1 --branch 3.18.16 https://pubgit.newsmemory.com/tecnavia/newsmemory-android-sdk.git
+git clone --depth 1 --branch 3.18.19 https://pubgit.newsmemory.com/tecnavia/newsmemory-android-sdk.git
```
2. if you already has the module you could update to another release by the following commands
```sh
cd newsmemory-android-sdk
-git checkout tags/3.18.16
+git checkout tags/3.18.19
```
## Installation
@@ -284,6 +285,145 @@ public class YourActivity extends TaActivity {
...
}
```
+---
+
+
+
+## Keyboard support
+
+On devices which support a physical or a virtual keyboard the SDK supports some shortcuts to navigate and interact with the ePaper.
+
+### Code integration
+
+In your activity you have to override the following callbacks and call the corresponding method on the TaFragment.
+
+```java
+public class MainActivity extends AppCompatActivity implements DefaultHardwareBackBtnHandler {
+ private TaFragment taFragment;
+
+ ...
+
+ @Override
+ public boolean onKeyDown(int keyCode, KeyEvent event) {
+ taFragment.keyDown(keyCode, event);
+ return super.onKeyDown(keyCode, event);
+ }
+
+ @Override
+ public boolean onKeyUp(int keyCode, KeyEvent event) {
+ taFragment.keyUp(keyCode, event);
+ return super.onKeyUp(keyCode, event);
+ }
+
+ ...
+}
+
+```
+
+
+Here a list of the supported keys:
+
+### Key groups
+
+Some actions can be performed with more than one key, here the so-called `key groups`:
+
+| Name | Keys |
+| ---------- | --------------------------------------------------- |
+| `LEFT` | `J`, `4`, `4` (NUMPAD), `LEFT ARROW` |
+| `RIGHT` | `L`, `6`, `6` (NUMPAD), `RIGHT ARROW` |
+| `UP` | `I`, `8`, `8` (NUMPAD), `UP ARROW` |
+| `DOWN` | `K`, `2`, `2` (NUMPAD), `DOWN ARROW` |
+| `PAGE_UP` | `N`, `9`, `9` (NUMPAD), `PAGE UP` |
+| `PAGE_DOWN`| `M`, `3`, `3` (NUMPAD), `PAGE DOWN` |
+| `OPEN` | `O`, `5`, `5` (NUMPAD), `.` (NUMPAD) |
+| `SELECT` | `O`, `5`, `ENTER`, `5` (NUMPAD), `ENTER` (NUMPAD) |
+| `SUBMIT` | `ENTER`, `ENTER` (NUMPAD) |
+| `HOME` | `7`, `7` (NUMPAD), `HOME` |
+| `END` | `1`, `1` (NUMPAD), `END` |
+| `LESS` | `-`, `-` (NUMPAD) |
+| `MORE` | `+`, `+` (NUMPAD) |
+
+### Menu items
+
+| Key(s) or Key Group | Behavior |
+| --------------------------- | ---------------------------------------- |
+| `ENTER` | Press menu item |
+| `ESC` | Blur menu item |
+| `I` | Open index mode |
+| `LEFT`/`RIGHT` group, `TAB` | Navigate thru items |
+| `P`, `.` (NUMPAD) | Open thumbnails mode |
+| `Search` | Open search mode |
+| `Space` | Toggle fit mode |
+| `T` | Open accessibility mode |
+
+### Graphic mode
+
+| Key(s) or Key Group | Behavior |
+| ------------------------------------------- | ---------------------------------------- |
+| `B` | Open browse mode |
+| `OPEN` group | Open first article |
+| `LEFT`/`RIGHT`/`PAGE_UP`/`PAGE_DOWN` groups | Navigate thru page |
+| `UP`/`DOWN` groups | Move vertically in the page |
+| `MORE`/`LESS` groups | Zoom in/out in the page |
+| `HOME` group | Move to previous section |
+| `END` group | Move to next section |
+
+### Index mode
+
+| Key(s) or Key Group | Behavior |
+| ------------------------------------------- | ---------------------------------------- |
+| `CLOSE` group | Close index mode |
+| `SPACE` group | Toggle index mode fullscreen mode |
+
+### Index mode (2nd level)
+
+| Key(s) or Key Group | Behavior |
+| ------------------------------------------- | ---------------------------------------- |
+| `CLOSE` group | Close index mode |
+| `SPACE` group | Toggle index mode fullscreen mode |
+| `LEFT`/`RIGHT` group | Navigate thru sections |
+| `OPEN` group | Open 1st level index |
+
+### Article mode
+
+| Key(s) or Key Group | Behavior |
+| ------------------------------------------- | ---------------------------------------------------- |
+| `CLOSE` group | Close article mode (if search active, closes search) |
+| `UP`/`DOWN` group | Scroll up/down the article |
+| `LEFT`/`RIGHT` group | Navigate thru articles |
+| `PAGE_UP`/`PAGE_DOWN` group | Go to the first article of previous/next page |
+| `OPEN` group | Open 2nd level index |
+| `MORE`/`LESS` groups | Zoom in/out in the article |
+| `HOME` group | Move to previous article slug |
+| `END` group | Move to next article slug |
+| `SPACE` group | Toggle article mode fullscreen mode |
+| `P` | Print |
+| `S` | Share |
+| `V` | Toggle text-to-speech |
+| `SELECT` group | Select item (accessibility mode) |
+
+### Thumbnail mode
+
+| Key(s) or Key Group | Behavior |
+| ------------------------------------------- | ---------------------------------------- |
+| `LEFT`/`RIGHT` groups | Navigate thru thumbnails |
+| `SELECT` group | Open highlighted page |
+
+### Search mode
+
+| Key(s) or Key Group | Behavior |
+| ------------------------------------------- | ---------------------------------------- |
+| `CLOSE` group | Close search mode |
+
+### Editions page
+
+| Key(s) or Key Group | Behavior |
+| ------------------------------------------- | ---------------------------------------- |
+| `CLOSE` group | Close editions page |
+
+---
+
+
## Troubleshooting Guide
@@ -382,6 +522,10 @@ We suggest to add to you activity in the `onCreate` method.
```
+---
+
+
+
## Authors
Nicolò Aquilini, iOS Software developer, Tecnavia
diff --git a/build.gradle b/build.gradle
index beaca5a..45aee66 100644
--- a/build.gradle
+++ b/build.gradle
@@ -90,7 +90,7 @@ publishing {
tareactnativecookiescookies(MavenPublication) {
groupId 'tecnavia'
artifactId 'react-native-cookies_cookies'
- version '6.2.0'
+ version '6.2.1'
artifact("$libsDirName/react-native-cookies_cookies-release.aar")
}
@@ -286,7 +286,7 @@ publishing {
tatecnaviareactnativebridge(MavenPublication) {
groupId 'tecnavia'
artifactId 'tecnavia_react-native-bridge'
- version '1.3.12'
+ version '1.3.14'
artifact("$libsDirName/tecnavia_react-native-bridge-release.aar")
}
@@ -335,7 +335,7 @@ publishing {
tatecnaviareactnativewebanalytics(MavenPublication) {
groupId 'tecnavia'
artifactId 'tecnavia_react-native-web-analytics'
- version '1.1.1'
+ version '1.2.0'
artifact("$libsDirName/tecnavia_react-native-web-analytics-release.aar")
}
@@ -451,7 +451,7 @@ dependencies {
implementation "tecnavia:react-native-community_netinfo:11.4.1"
implementation "tecnavia:react-native-community_slider:2.0.9"
implementation "tecnavia:react-native-config:1.4.11"
- implementation "tecnavia:react-native-cookies_cookies:6.2.0"
+ implementation "tecnavia:react-native-cookies_cookies:6.2.1"
implementation "tecnavia:react-native-device-info:8.7.1"
implementation "tecnavia:react-native-dynamic-fonts:0.3.2"
implementation "tecnavia:react-native-fast-image:8.5.11"
@@ -479,14 +479,14 @@ dependencies {
implementation "tecnavia:react-native-volume-control:1.0.1"
implementation "tecnavia:react-native-webview:12.4.0"
implementation "tecnavia:rn-fetch-blob:0.11.2"
- api "tecnavia:tecnavia_react-native-bridge:1.3.12"
+ api "tecnavia:tecnavia_react-native-bridge:1.3.14"
implementation "tecnavia:tecnavia_react-native-default-preference:1.5.0"
implementation "tecnavia:tecnavia_react-native-dfp:1.5.0"
implementation "tecnavia:tecnavia_react-native-geolocation:3.0.1"
implementation "tecnavia:tecnavia_react-native-navigation-bar-color:2.0.2"
implementation "tecnavia:tecnavia_react-native-pdf:5.1.8"
implementation "tecnavia:tecnavia_react-native-print:0.6.1"
- implementation "tecnavia:tecnavia_react-native-web-analytics:1.1.1"
+ implementation "tecnavia:tecnavia_react-native-web-analytics:1.2.0"
implementation "tecnavia:tecnavia_react-native-zip-archive:5.2.0"
api "tecnavia:react-native:0.70.15"
implementation "tecnavia:android-jsc:1.0.0"
diff --git a/gradle.properties b/gradle.properties
index a7488d8..6f9f53f 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -1,7 +1,7 @@
android.useAndroidX=true
APP_NAME=Android SDK
-APP_VERSION_NAME=3.18.16
-APP_VERSION_CODE=1746431572918
+APP_VERSION_NAME=3.18.19
+APP_VERSION_CODE=1747226748505
ANDROID_APP_ID=com.tecnaviaapplication
IS_ADDON=true
diff --git a/libs/react-native-cookies_cookies-release.aar b/libs/react-native-cookies_cookies-release.aar
index ad25558..6f78868 100644
Binary files a/libs/react-native-cookies_cookies-release.aar and b/libs/react-native-cookies_cookies-release.aar differ
diff --git a/libs/tecnavia_react-native-bridge-release.aar b/libs/tecnavia_react-native-bridge-release.aar
index 5baa9b2..aec3210 100644
Binary files a/libs/tecnavia_react-native-bridge-release.aar and b/libs/tecnavia_react-native-bridge-release.aar differ
diff --git a/libs/tecnavia_react-native-web-analytics-release.aar b/libs/tecnavia_react-native-web-analytics-release.aar
index adcee7c..c27cdd4 100644
Binary files a/libs/tecnavia_react-native-web-analytics-release.aar and b/libs/tecnavia_react-native-web-analytics-release.aar differ
diff --git a/src/main/assets/index.android.bundle b/src/main/assets/index.android.bundle
index 24aba60..b62ce2a 100644
--- a/src/main/assets/index.android.bundle
+++ b/src/main/assets/index.android.bundle
@@ -803,7 +803,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
_$$_REQUIRE(_dependencyMap[1]);
_$$_REQUIRE(_dependencyMap[2]);
-},0,[1,404,2232]);
+},0,[1,404,2234]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -47193,24 +47193,29 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
global.isIssueInNewsmemoryStartupParams = function () {
- if (global.newsmemoryStartupParams) {
- var _global$newsmemorySta = global.newsmemoryStartupParams,
- date = _global$newsmemorySta.date,
- selDate = _global$newsmemorySta.selDate,
- issue = _global$newsmemorySta.issue;
- return selDate !== undefined || date !== undefined || issue !== undefined;
- }
+ var _ref = global.newsmemoryStartupParams || {},
+ date = _ref.date,
+ selDate = _ref.selDate,
+ issue = _ref.issue;
- return false;
+ return selDate !== undefined || date !== undefined || issue !== undefined;
+ };
+
+ global.isEditionInNewsmemoryStartupParams = function () {
+ var _ref2 = global.newsmemoryStartupParams || {},
+ editionStart = _ref2.editionStart,
+ edition = _ref2.edition;
+
+ return !!editionStart || !!edition;
};
global.shouldForceNewsmemoryWithStartupParams = function () {
- if (global.newsmemoryStartupParams) {
- var schemaPath = global.newsmemoryStartupParams.schemaPath;
- return schemaPath === "load" || global.isIssueInNewsmemoryStartupParams();
+ if (!global.newsmemoryStartupParams) {
+ return false;
}
- return false;
+ var schemaPath = global.newsmemoryStartupParams.schemaPath;
+ return schemaPath === "load" || global.isIssueInNewsmemoryStartupParams();
};
global.resetNewsmemoryStartupParams = function () {
@@ -47535,54 +47540,54 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
global.initPSetup = function () {
- var _ref = (0, _asyncToGenerator2.default)(function* (pSetup, machine, extraParams) {
+ var _ref3 = (0, _asyncToGenerator2.default)(function* (pSetup, machine, extraParams) {
return global.getPaperSetupManager().init(pSetup, machine, extraParams);
});
return function (_x, _x2, _x3) {
- return _ref.apply(this, arguments);
- };
- }();
-
- global.initConfigOnly = function () {
- var _ref2 = (0, _asyncToGenerator2.default)(function* (pSetup, machine) {
- return global.getPaperSetupManager().initConfigOnly(pSetup, machine);
- });
-
- return function (_x4, _x5) {
- return _ref2.apply(this, arguments);
- };
- }();
-
- global.setPSetupConfig = function () {
- var _ref3 = (0, _asyncToGenerator2.default)(function* (pSetup, pSetupConfig) {
- return global.getPaperSetupManager().setPSetupConfig(pSetup, pSetupConfig);
- });
-
- return function (_x6, _x7) {
return _ref3.apply(this, arguments);
};
}();
+ global.initConfigOnly = function () {
+ var _ref4 = (0, _asyncToGenerator2.default)(function* (pSetup, machine) {
+ return global.getPaperSetupManager().initConfigOnly(pSetup, machine);
+ });
+
+ return function (_x4, _x5) {
+ return _ref4.apply(this, arguments);
+ };
+ }();
+
+ global.setPSetupConfig = function () {
+ var _ref5 = (0, _asyncToGenerator2.default)(function* (pSetup, pSetupConfig) {
+ return global.getPaperSetupManager().setPSetupConfig(pSetup, pSetupConfig);
+ });
+
+ return function (_x6, _x7) {
+ return _ref5.apply(this, arguments);
+ };
+ }();
+
global.loadPSetup = function () {
- var _ref4 = (0, _asyncToGenerator2.default)(function* (pSetup, machine, extraParams, external) {
+ var _ref6 = (0, _asyncToGenerator2.default)(function* (pSetup, machine, extraParams, external) {
return global.getPaperSetupManager().load(pSetup, machine, Object.assign({
fromCache: true
}, extraParams), external);
});
return function (_x8, _x9, _x10, _x11) {
- return _ref4.apply(this, arguments);
+ return _ref6.apply(this, arguments);
};
}();
global.reloadActivePSetup = function () {
- var _ref5 = (0, _asyncToGenerator2.default)(function* (extraParams) {
+ var _ref7 = (0, _asyncToGenerator2.default)(function* (extraParams) {
return global.getPaperSetupManager().reload(extraParams);
});
return function (_x12) {
- return _ref5.apply(this, arguments);
+ return _ref7.apply(this, arguments);
};
}();
@@ -47642,7 +47647,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
_$$_REQUIRE(_dependencyMap[11]).Logger.initializedLogSession = false;
_$$_REQUIRE(_dependencyMap[11]).Logger.logSessionFileName = "";
global.getLocaleConfig().initLocale();
-},404,[3,270,405,1917,2001,2082,2083,1777,629,1778,443,438,2084,2095,2113,2166,2173,1908,2181,1904]);
+},404,[3,270,405,1917,2001,2082,2083,1777,629,1778,443,438,2084,2095,2113,2167,2174,1908,2182,1904]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -86000,32 +86005,14 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
return (0, _createClass2.default)(RNEventEmitter, null, [{
- key: "isIOS",
- value: function isIOS() {
- return _reactNative.Platform.OS === "ios";
- }
- }, {
key: "addListener",
value: function addListener(event, callback) {
- var listener;
-
- if (RNEventEmitter.isIOS()) {
- var BridgeEmitter = _reactNative.NativeModules.BridgeEmitter;
- var eventEmitter = new _reactNative.NativeEventEmitter(BridgeEmitter);
- listener = eventEmitter.addListener(event, function (params) {
- if (callback) {
- callback(params);
- }
- });
- } else {
- listener = _reactNative.DeviceEventEmitter.addListener(event, function (params) {
- if (callback) {
- callback(params);
- }
- });
+ if (typeof callback !== "function") {
+ throw new Error("Callback must be a function");
}
- return listener;
+ var eventEmitter = _reactNative.Platform.OS === "ios" ? new _reactNative.NativeEventEmitter(_reactNative.NativeModules.BridgeEmitter) : _reactNative.DeviceEventEmitter;
+ return eventEmitter.addListener(event, callback);
}
}]);
}();
@@ -95416,13 +95403,8 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
key: "getPages",
value: function getPages() {
var forceShowAll = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false;
-
- if (forceShowAll) {
- return this.pages;
- }
-
return this.pages.filter(function (page) {
- return page.isVisible();
+ return forceShowAll || page.isVisible();
});
}
}, {
@@ -95433,17 +95415,25 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}, {
key: "getFirstPage",
value: function getFirstPage() {
- if (this.pages) {
- return this.pages[0];
- }
+ var _this$pages;
- return null;
+ return (_this$pages = this.pages) == null ? undefined : _this$pages[0];
+ }
+ }, {
+ key: "getLastPage",
+ value: function getLastPage() {
+ var _this$pages2;
+
+ var forceShowAll = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false;
+ return (_this$pages2 = this.pages) == null ? undefined : _this$pages2.getPages(forceShowAll).pop();
}
}, {
key: "getPageById",
value: function getPageById(pageId) {
- if (this.pages && pageId !== undefined) {
- return this.pages.find(function (page) {
+ if (pageId !== undefined) {
+ var _this$pages3;
+
+ return (_this$pages3 = this.pages) == null ? undefined : _this$pages3.find(function (page) {
return page.getPageId() === pageId;
});
}
@@ -95453,8 +95443,10 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}, {
key: "getPageByArticle",
value: function getPageByArticle(article) {
- if (this.pages && article !== undefined) {
- return this.pages.find(function (page) {
+ if (article !== undefined) {
+ var _this$pages4;
+
+ return (_this$pages4 = this.pages) == null ? undefined : _this$pages4.find(function (page) {
return page.getPageId() === article.getPageId();
});
}
@@ -95503,7 +95495,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}, {
key: "isEmpty",
value: function isEmpty() {
- return !this.pages || this.pages.length === 0;
+ return _$$_REQUIRE(_dependencyMap[6]).JSUtils.isEmpty(this.pages);
}
}, {
key: "setIsLite",
@@ -95639,34 +95631,36 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
value: function getChainOfArticle(article) {
var _this = this;
+ if (!article) {
+ return [];
+ }
+
var chains = [];
- if (article) {
- var _this$getFirstArticle2 = this.getFirstArticleInChain(article),
- nextArticle = _this$getFirstArticle2.firstArticle;
+ var _this$getFirstArticle2 = this.getFirstArticleInChain(article),
+ nextArticle = _this$getFirstArticle2.firstArticle;
- var _loop = function _loop() {
- chains.push(nextArticle);
- var to = nextArticle.getPageJumps().find(function (pageJump) {
- return pageJump.hasTo();
- });
- nextArticle = undefined;
+ var _loop = function _loop() {
+ chains.push(nextArticle);
+ var to = nextArticle.getPageJumps().find(function (pageJump) {
+ return pageJump.hasTo();
+ });
+ nextArticle = undefined;
- if (to) {
- var newArticle = _this.getArticleFromPageJump(to.getTo(), to.getArticleId());
+ if (to) {
+ var newArticle = _this.getArticleFromPageJump(to.getTo(), to.getArticleId());
- if (chains.find(function (chainArticle) {
- return chainArticle.getPageId() === (newArticle == null ? undefined : newArticle.getPageId()) && chainArticle.getXmlId() === (newArticle == null ? undefined : newArticle.getXmlId());
- }) === undefined) {
- nextArticle = newArticle;
- }
+ if (chains.find(function (chainArticle) {
+ return chainArticle.getPageId() === (newArticle == null ? undefined : newArticle.getPageId()) && chainArticle.getXmlId() === (newArticle == null ? undefined : newArticle.getXmlId());
+ }) === undefined) {
+ nextArticle = newArticle;
}
- };
+ }
+ };
- do {
- _loop();
- } while (nextArticle);
- }
+ do {
+ _loop();
+ } while (nextArticle);
return chains;
}
@@ -95731,7 +95725,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
}]);
}();
-},666,[3,6,7,667,670,668]);
+},666,[3,6,7,667,670,668,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -97192,7 +97186,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
_f._closure = {};
_f.asString = "function _f(){}";
_f.__workletHash = 16394749715515;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/react-native-reanimated/src/reanimated2/core.ts (40:48)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/react-native-reanimated/src/reanimated2/core.ts (40:48)";
return _f;
}();
@@ -97244,7 +97238,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
_f.asString = "function requestFrame(frame){const{NativeReanimatedModule,pushFrame}=jsThis._closure;{if(NativeReanimatedModule.native){requestAnimationFrame(frame);}else{pushFrame(frame);}}}";
_f.__workletHash = 12115854397223;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/react-native-reanimated/src/reanimated2/core.ts (76:7)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/react-native-reanimated/src/reanimated2/core.ts (76:7)";
return _f;
}();
@@ -97296,7 +97290,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
_f._closure = {};
_f.asString = "function _f(){if(_frameTimestamp){return _frameTimestamp;}if(_eventTimestamp){return _eventTimestamp;}return _getCurrentTime();}";
_f.__workletHash = 7105333655134;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/react-native-reanimated/src/reanimated2/core.ts (123:18)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/react-native-reanimated/src/reanimated2/core.ts (123:18)";
return _f;
}();
}
@@ -97321,7 +97315,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
_f.asString = "function getTimestamp(){const{Platform,NativeReanimatedModule,_getTimestamp}=jsThis._closure;{if(Platform.OS==='web'){return NativeReanimatedModule.getTimestamp();}return _getTimestamp();}}";
_f.__workletHash = 16781279444967;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/react-native-reanimated/src/reanimated2/core.ts (135:7)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/react-native-reanimated/src/reanimated2/core.ts (135:7)";
return _f;
}();
@@ -97389,7 +97383,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
_f.asString = "function workletValueSetter(value){const{getTimestamp}=jsThis._closure;{var _this=this;const previousAnimation=this._animation;if(previousAnimation){previousAnimation.cancelled=true;this._animation=null;}if(typeof value==='function'||value!==null&&typeof value==='object'&&value.onFrame!==undefined){const animation=typeof value==='function'?value():value;if(this._value===animation.current&&!animation.isHigherOrder){animation.callback&&animation.callback(true);return;}const initializeAnimation=function(timestamp){animation.onStart(animation,_this.value,timestamp,previousAnimation);};initializeAnimation(getTimestamp());const step=function(timestamp){if(animation.cancelled){animation.callback&&animation.callback(false);return;}const finished=animation.onFrame(animation,timestamp);animation.finished=true;animation.timestamp=timestamp;_this._value=animation.current;if(finished){animation.callback&&animation.callback(true);}else{requestAnimationFrame(step);}};this._animation=animation;if(_frameTimestamp){step(_frameTimestamp);}else{requestAnimationFrame(step);}}else{if(this._value===value){return;}this._value=value;}}}";
_f.__workletHash = 16934339415702;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/react-native-reanimated/src/reanimated2/core.ts (143:0)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/react-native-reanimated/src/reanimated2/core.ts (143:0)";
return _f;
}();
@@ -97479,7 +97473,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
_f._closure = {};
_f.asString = "function runOnJS(fun){if(!_WORKLET){return fun;}if(!fun.__callAsync){throw new Error(\"Attempting to call runOnJS with an object that is not a host function. Using runOnJS is only possible with methods that are defined on the main React-Native Javascript thread and that aren't marked as worklets\");}else{return fun.__callAsync;}}";
_f.__workletHash = 6674264901856;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/react-native-reanimated/src/reanimated2/core.ts (302:7)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/react-native-reanimated/src/reanimated2/core.ts (302:7)";
return _f;
}();
@@ -97512,7 +97506,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
_f.asString = "function _f(){const{runOnJS,capturableConsole}=jsThis._closure;{const console={debug:runOnJS(capturableConsole.debug),log:runOnJS(capturableConsole.log),warn:runOnJS(capturableConsole.warn),error:runOnJS(capturableConsole.error),info:runOnJS(capturableConsole.info)};_setGlobalConsole(console);}}";
_f.__workletHash = 12797137083328;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/react-native-reanimated/src/reanimated2/core.ts (326:10)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/react-native-reanimated/src/reanimated2/core.ts (326:10)";
return _f;
}())();
}
@@ -98268,7 +98262,7 @@ __d(function(global, require, _importDefaultUnused, _importAllUnused, module, ex
"_args": [
[
"react-native-reanimated@2.17.0",
- "/Users/ipaddev/sdk/3.18.16.rc"
+ "/Users/ipaddev/sdk/3.18.19.rc"
]
],
"_from": "react-native-reanimated@2.17.0",
@@ -98292,7 +98286,7 @@ __d(function(global, require, _importDefaultUnused, _importAllUnused, module, ex
],
"_resolved": "https://registry.npmjs.org/react-native-reanimated/-/react-native-reanimated-2.17.0.tgz",
"_spec": "2.17.0",
- "_where": "/Users/ipaddev/sdk/3.18.16.rc",
+ "_where": "/Users/ipaddev/sdk/3.18.19.rc",
"author": {
"name": "Krzysztof Magiera",
"email": "krzys.magiera@gmail.com"
@@ -98639,7 +98633,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
_f.asString = "function _f(){const{tag,config}=jsThis._closure;{global.LayoutAnimationRepository.registerConfig(tag,config);}}";
_f.__workletHash = 5455589887771;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/react-native-reanimated/src/createAnimatedComponent.tsx (575:18)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/react-native-reanimated/src/createAnimatedComponent.tsx (575:18)";
return _f;
}())();
}
@@ -101311,7 +101305,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
_f.asString = "function _f(){const{ColorProperties,processColor,withStyleAnimation}=jsThis._closure;{const configs=Object.create(null);const enteringAnimationForTag={};global.LayoutAnimationRepository={configs:configs,registerConfig:function(tag,config){configs[tag]=config;enteringAnimationForTag[tag]=null;},removeConfig:function(tag){delete configs[tag];delete enteringAnimationForTag[tag];},startAnimationForTag:function(tag,type,yogaValues){if(configs[tag]==null){return;}const style=configs[tag][type](yogaValues);let currentAnimation=style.animations;if(type==='entering'){enteringAnimationForTag[tag]=style;}else if(type==='layout'&&enteringAnimationForTag[tag]!==null){const entryAniamtion=enteringAnimationForTag[tag].animations;const layoutAnimation=style.animations;currentAnimation={};for(const key in entryAniamtion){currentAnimation[key]=entryAniamtion[key];}for(const key in layoutAnimation){currentAnimation[key]=layoutAnimation[key];}}const sv=configs[tag].sv;_stopObservingProgress(tag,false);_startObservingProgress(tag,sv);const backupColor={};for(const key in style.initialValues){if(ColorProperties.includes(key)){const value=style.initialValues[key];backupColor[key]=value;style.initialValues[key]=processColor(value);}}sv.value=Object.assign({},sv._value,style.initialValues);_stopObservingProgress(tag,false);const animation=withStyleAnimation(currentAnimation);animation.callback=function(finished){if(finished){_stopObservingProgress(tag,finished);}style.callback&&style.callback(finished);};if(backupColor){configs[tag].sv._value={...configs[tag].sv.value,...backupColor};}configs[tag].sv.value=animation;_startObservingProgress(tag,sv);}};}}";
_f.__workletHash = 10033167792218;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/react-native-reanimated/src/reanimated2/layoutReanimation/LayoutAnimationRepository.ts (7:8)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/react-native-reanimated/src/reanimated2/layoutReanimation/LayoutAnimationRepository.ts (7:8)";
return _f;
}())();
},712,[676,713,714,715]);
@@ -101339,7 +101333,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
_f.asString = "function _f(_,updates,maybeViewRef){const{_updatePropsJS}=jsThis._closure;{if(maybeViewRef){maybeViewRef.items.forEach(function(item,_){_updatePropsJS(updates,item);});}}}";
_f.__workletHash = 2597780801718;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/react-native-reanimated/src/reanimated2/UpdateProps.ts (33:26)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/react-native-reanimated/src/reanimated2/UpdateProps.ts (33:26)";
return _f;
}();
} else {
@@ -101362,7 +101356,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
_f.asString = "function _f(viewDescriptors,updates,_){const{ColorProperties,processColor}=jsThis._closure;{for(const key in updates){if(ColorProperties.indexOf(key)!==-1){updates[key]=processColor(updates[key]);}}viewDescriptors.value.forEach(function(viewDescriptor){_updateProps(viewDescriptor.tag,viewDescriptor.name||'RCTView',updates);});}}";
_f.__workletHash = 5208286904059;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/react-native-reanimated/src/reanimated2/UpdateProps.ts (46:26)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/react-native-reanimated/src/reanimated2/UpdateProps.ts (46:26)";
return _f;
}();
}
@@ -101402,7 +101396,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
_f._closure = {};
_f.asString = "function call(...args){return'\\\\(\\\\s*('+args.join(')\\\\s*,\\\\s*(')+')\\\\s*\\\\)';}";
_f.__workletHash = 17112204286815;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/react-native-reanimated/src/reanimated2/Colors.ts (29:0)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/react-native-reanimated/src/reanimated2/Colors.ts (29:0)";
return _f;
}();
@@ -101436,7 +101430,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
_f.asString = "function getMatchers(){const{uiCachedMatchers,jsCachedMatchers,call,NUMBER,PERCENTAGE}=jsThis._closure;{const cachedMatchers=_WORKLET?uiCachedMatchers:jsCachedMatchers;if(cachedMatchers.rgb===undefined){cachedMatchers.rgb=new RegExp('rgb'+call(NUMBER,NUMBER,NUMBER));cachedMatchers.rgba=new RegExp('rgba'+call(NUMBER,NUMBER,NUMBER,NUMBER));cachedMatchers.hsl=new RegExp('hsl'+call(NUMBER,PERCENTAGE,PERCENTAGE));cachedMatchers.hsla=new RegExp('hsla'+call(NUMBER,PERCENTAGE,PERCENTAGE,NUMBER));cachedMatchers.hex3=/^#([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/;cachedMatchers.hex4=/^#([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/;cachedMatchers.hex6=/^#([0-9a-fA-F]{6})$/;cachedMatchers.hex8=/^#([0-9a-fA-F]{8})$/;}return cachedMatchers;}}";
_f.__workletHash = 11728480460328;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/react-native-reanimated/src/reanimated2/Colors.ts (50:0)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/react-native-reanimated/src/reanimated2/Colors.ts (50:0)";
return _f;
}();
@@ -101470,7 +101464,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
_f._closure = {};
_f.asString = "function hue2rgb(p,q,t){if(t<0){t+=1;}if(t>1){t-=1;}if(t<1/6){return p+(q-p)*6*t;}if(t<1/2){return q;}if(t<2/3){return p+(q-p)*(2/3-t)*6;}return p;}";
_f.__workletHash = 3618366985414;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/react-native-reanimated/src/reanimated2/Colors.ts (79:0)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/react-native-reanimated/src/reanimated2/Colors.ts (79:0)";
return _f;
}();
@@ -101489,7 +101483,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
_f.asString = "function hslToRgb(h,s,l){const{hue2rgb}=jsThis._closure;{const q=l<0.5?l*(1+s):l+s-l*s;const p=2*l-q;const r=hue2rgb(p,q,h+1/3);const g=hue2rgb(p,q,h);const b=hue2rgb(p,q,h-1/3);return Math.round(r*255)<<24|Math.round(g*255)<<16|Math.round(b*255)<<8;}}";
_f.__workletHash = 4500055963175;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/react-native-reanimated/src/reanimated2/Colors.ts (99:0)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/react-native-reanimated/src/reanimated2/Colors.ts (99:0)";
return _f;
}();
@@ -101511,7 +101505,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
_f._closure = {};
_f.asString = "function parse255(str){const int=Number.parseInt(str,10);if(int<0){return 0;}if(int>255){return 255;}return int;}";
_f.__workletHash = 7024550667346;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/react-native-reanimated/src/reanimated2/Colors.ts (114:0)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/react-native-reanimated/src/reanimated2/Colors.ts (114:0)";
return _f;
}();
@@ -101524,7 +101518,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
_f._closure = {};
_f.asString = "function parse360(str){const int=Number.parseFloat(str);return(int%360+360)%360/360;}";
_f.__workletHash = 6683812623228;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/react-native-reanimated/src/reanimated2/Colors.ts (126:0)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/react-native-reanimated/src/reanimated2/Colors.ts (126:0)";
return _f;
}();
@@ -101546,7 +101540,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
_f._closure = {};
_f.asString = "function parse1(str){const num=Number.parseFloat(str);if(num<0){return 0;}if(num>1){return 255;}return Math.round(num*255);}";
_f.__workletHash = 7197247664793;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/react-native-reanimated/src/reanimated2/Colors.ts (132:0)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/react-native-reanimated/src/reanimated2/Colors.ts (132:0)";
return _f;
}();
@@ -101568,7 +101562,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
_f._closure = {};
_f.asString = "function parsePercentage(str){const int=Number.parseFloat(str);if(int<0){return 0;}if(int>100){return 1;}return int/100;}";
_f.__workletHash = 8813932430184;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/react-native-reanimated/src/reanimated2/Colors.ts (144:0)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/react-native-reanimated/src/reanimated2/Colors.ts (144:0)";
return _f;
}();
@@ -101794,7 +101788,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
_f.asString = "function normalizeColor(color){const{getMatchers,names,parse255,parse1,hslToRgb,parse360,parsePercentage}=jsThis._closure;{var _matchers$hex,_matchers$rgb,_matchers$rgba,_matchers$hex2,_matchers$hex3,_matchers$hex4,_matchers$hsl,_matchers$hsla;if(typeof color==='number'){if(color>>>0===color&&color>=0&&color<=0xffffffff){return color;}return null;}if(typeof color!=='string'){return null;}const matchers=getMatchers();let match;if(match=matchers===null||matchers===void 0?void 0:(_matchers$hex=matchers.hex6)===null||_matchers$hex===void 0?void 0:_matchers$hex.exec(color)){return Number.parseInt(match[1]+'ff',16)>>>0;}if(names[color]!==undefined){return names[color];}if(match=matchers===null||matchers===void 0?void 0:(_matchers$rgb=matchers.rgb)===null||_matchers$rgb===void 0?void 0:_matchers$rgb.exec(color)){return(parse255(match[1])<<24|parse255(match[2])<<16|parse255(match[3])<<8|0x000000ff)>>>0;}if(match=matchers===null||matchers===void 0?void 0:(_matchers$rgba=matchers.rgba)===null||_matchers$rgba===void 0?void 0:_matchers$rgba.exec(color)){return(parse255(match[1])<<24|parse255(match[2])<<16|parse255(match[3])<<8|parse1(match[4]))>>>0;}if(match=matchers===null||matchers===void 0?void 0:(_matchers$hex2=matchers.hex3)===null||_matchers$hex2===void 0?void 0:_matchers$hex2.exec(color)){return Number.parseInt(match[1]+match[1]+match[2]+match[2]+match[3]+match[3]+'ff',16)>>>0;}if(match=matchers===null||matchers===void 0?void 0:(_matchers$hex3=matchers.hex8)===null||_matchers$hex3===void 0?void 0:_matchers$hex3.exec(color)){return Number.parseInt(match[1],16)>>>0;}if(match=matchers===null||matchers===void 0?void 0:(_matchers$hex4=matchers.hex4)===null||_matchers$hex4===void 0?void 0:_matchers$hex4.exec(color)){return Number.parseInt(match[1]+match[1]+match[2]+match[2]+match[3]+match[3]+match[4]+match[4],16)>>>0;}if(match=matchers===null||matchers===void 0?void 0:(_matchers$hsl=matchers.hsl)===null||_matchers$hsl===void 0?void 0:_matchers$hsl.exec(color)){return(hslToRgb(parse360(match[1]),parsePercentage(match[2]),parsePercentage(match[3]))|0x000000ff)>>>0;}if(match=matchers===null||matchers===void 0?void 0:(_matchers$hsla=matchers.hsla)===null||_matchers$hsla===void 0?void 0:_matchers$hsla.exec(color)){return(hslToRgb(parse360(match[1]),parsePercentage(match[2]),parsePercentage(match[3]))|parse1(match[4]))>>>0;}return null;}}";
_f.__workletHash = 10755688444334;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/react-native-reanimated/src/reanimated2/Colors.ts (314:0)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/react-native-reanimated/src/reanimated2/Colors.ts (314:0)";
return _f;
}();
@@ -101806,7 +101800,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
_f._closure = {};
_f.asString = "function _f(c){return(c>>24&255)/255;}";
_f.__workletHash = 14708696455524;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/react-native-reanimated/src/reanimated2/Colors.ts (426:23)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/react-native-reanimated/src/reanimated2/Colors.ts (426:23)";
return _f;
}();
@@ -101818,7 +101812,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
_f._closure = {};
_f.asString = "function _f(c){return c>>16&255;}";
_f.__workletHash = 12808130152281;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/react-native-reanimated/src/reanimated2/Colors.ts (431:19)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/react-native-reanimated/src/reanimated2/Colors.ts (431:19)";
return _f;
}();
@@ -101830,7 +101824,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
_f._closure = {};
_f.asString = "function _f(c){return c>>8&255;}";
_f.__workletHash = 3499836539046;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/react-native-reanimated/src/reanimated2/Colors.ts (436:21)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/react-native-reanimated/src/reanimated2/Colors.ts (436:21)";
return _f;
}();
@@ -101842,7 +101836,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
_f._closure = {};
_f.asString = "function _f(c){return c&255;}";
_f.__workletHash = 14770248723134;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/react-native-reanimated/src/reanimated2/Colors.ts (441:20)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/react-native-reanimated/src/reanimated2/Colors.ts (441:20)";
return _f;
}();
@@ -101870,7 +101864,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
_f.asString = "function _f(r,g,b,alpha=1){const{Platform}=jsThis._closure;{if(Platform.OS==='web'||!_WORKLET){return\"rgba(\"+r+\", \"+g+\", \"+b+\", \"+alpha+\")\";}const c=Math.round(alpha*255)*(1<<24)+Math.round(r)*(1<<16)+Math.round(g)*(1<<8)+Math.round(b);if(Platform.OS==='android'){return c<1<<31>>>0?c:c-4294967296;}return c;}}";
_f.__workletHash = 3685267134575;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/react-native-reanimated/src/reanimated2/Colors.ts (446:25)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/react-native-reanimated/src/reanimated2/Colors.ts (446:25)";
return _f;
}();
@@ -101921,7 +101915,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
_f._closure = {};
_f.asString = "function RGBtoHSV(r,g,b){if(arguments.length===1){g=r.g;b=r.b;r=r.r;}const max=Math.max(r,g,b);const min=Math.min(r,g,b);const d=max-min;const s=max===0?0:d/max;const v=max/255;let h;switch(max){default:case min:h=0;break;case r:h=g-b+d*(g0){const currentAnimation=animationsToCheck.pop();if(Array.isArray(currentAnimation)){for(const element of currentAnimation){animationsToCheck.push(element);}}else if(typeof currentAnimation==='object'&¤tAnimation.onStart===undefined){for(const value of Object.values(currentAnimation)){animationsToCheck.push(value);}}else{const currentStyleAnimation=currentAnimation;if(!currentStyleAnimation.finished&¤tStyleAnimation.callback){currentStyleAnimation.callback(false);}}}}};return{isHigherOrder:true,onFrame:onFrame,onStart:onStart,current:{},styleAnimations:styleAnimations,callback:callback};}}";
_f.__workletHash = 16217306184372;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/react-native-reanimated/src/reanimated2/animation/styleAnimation.ts (73:51)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/react-native-reanimated/src/reanimated2/animation/styleAnimation.ts (73:51)";
return _f;
}());
};
@@ -102377,7 +102371,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
_f.asString = "function withStyleAnimation(styleAnimations){const{defineAnimation,ColorProperties,processColor,setPath,resolvePath,withTiming}=jsThis._closure;{return defineAnimation({},function(){'worklet';const onFrame=function(animation,now){let stillGoing=false;const entriesToCheck=[{value:animation.styleAnimations,path:[]}];while(entriesToCheck.length>0){const currentEntry=entriesToCheck.pop();if(Array.isArray(currentEntry.value)){for(let index=0;index0){const currentEntry=entriesToCheck.pop();if(Array.isArray(currentEntry.value)){for(let index=0;index0){const currentAnimation=animationsToCheck.pop();if(Array.isArray(currentAnimation)){for(const element of currentAnimation){animationsToCheck.push(element);}}else if(typeof currentAnimation==='object'&¤tAnimation.onStart===undefined){for(const value of Object.values(currentAnimation)){animationsToCheck.push(value);}}else{const currentStyleAnimation=currentAnimation;if(!currentStyleAnimation.finished&¤tStyleAnimation.callback){currentStyleAnimation.callback(false);}}}}};return{isHigherOrder:true,onFrame:onFrame,onStart:onStart,current:{},styleAnimations:styleAnimations,callback:callback};});}}";
_f.__workletHash = 5859144058646;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/react-native-reanimated/src/reanimated2/animation/styleAnimation.ts (69:7)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/react-native-reanimated/src/reanimated2/animation/styleAnimation.ts (69:7)";
return _f;
}();
},715,[716,713,714,717]);
@@ -102429,7 +102423,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
_f._closure = {};
_f.asString = "function recognizePrefixSuffix(value){if(typeof value==='string'){var _match$;const match=value.match(/([A-Za-z]*)(-?\\d*\\.?\\d*)([eE][-+]?[0-9]+)?([A-Za-z%]*)/);if(!match){throw Error(\"Couldn't parse animation value. Check if there isn't any typo.\");}const prefix=match[1];const suffix=match[4];const number=match[2]+((_match$=match[3])!==null&&_match$!==void 0?_match$:'');return{prefix:prefix,suffix:suffix,strippedValue:parseFloat(number)};}else{return{strippedValue:value};}}";
_f.__workletHash = 10298453511432;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/react-native-reanimated/src/reanimated2/animation/util.ts (45:0)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/react-native-reanimated/src/reanimated2/animation/util.ts (45:0)";
return _f;
}();
@@ -102582,7 +102576,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
_f.asString = "function decorateAnimation(animation){const{recognizePrefixSuffix,isColor,toLinearSpace,convertToRGBA,rgbaArrayToRGBAColor,toGammaSpace}=jsThis._closure;{if(animation.isHigherOrder){return;}const baseOnStart=animation.onStart;const baseOnFrame=animation.onFrame;const animationCopy=Object.assign({},animation);delete animationCopy.callback;const prefNumberSuffOnStart=function(animation,value,timestamp,previousAnimation){var _animation$__prefix,_animation$__suffix;const{prefix:prefix,suffix:suffix,strippedValue:strippedValue}=recognizePrefixSuffix(value);animation.__prefix=prefix;animation.__suffix=suffix;animation.strippedCurrent=strippedValue;const{strippedValue:strippedToValue}=recognizePrefixSuffix(animation.toValue);animation.current=strippedValue;animation.startValue=strippedValue;animation.toValue=strippedToValue;if(previousAnimation&&previousAnimation!==animation){const{prefix:paPrefix,suffix:paSuffix,strippedValue:paStrippedValue}=recognizePrefixSuffix(previousAnimation.current);previousAnimation.current=paStrippedValue;previousAnimation.__prefix=paPrefix;previousAnimation.__suffix=paSuffix;}baseOnStart(animation,strippedValue,timestamp,previousAnimation);animation.current=((_animation$__prefix=animation.__prefix)!==null&&_animation$__prefix!==void 0?_animation$__prefix:'')+animation.current+((_animation$__suffix=animation.__suffix)!==null&&_animation$__suffix!==void 0?_animation$__suffix:'');if(previousAnimation&&previousAnimation!==animation){var _previousAnimation$__,_previousAnimation$__2;previousAnimation.current=((_previousAnimation$__=previousAnimation.__prefix)!==null&&_previousAnimation$__!==void 0?_previousAnimation$__:'')+previousAnimation.current+((_previousAnimation$__2=previousAnimation.__suffix)!==null&&_previousAnimation$__2!==void 0?_previousAnimation$__2:'');}};const prefNumberSuffOnFrame=function(animation,timestamp){var _animation$__prefix2,_animation$__suffix2;animation.current=animation.strippedCurrent;const res=baseOnFrame(animation,timestamp);animation.strippedCurrent=animation.current;animation.current=((_animation$__prefix2=animation.__prefix)!==null&&_animation$__prefix2!==void 0?_animation$__prefix2:'')+animation.current+((_animation$__suffix2=animation.__suffix)!==null&&_animation$__suffix2!==void 0?_animation$__suffix2:'');return res;};const tab=['R','G','B','A'];const colorOnStart=function(animation,value,timestamp,previousAnimation){let RGBAValue;let RGBACurrent;let RGBAToValue;const res=[];if(isColor(value)){RGBACurrent=toLinearSpace(convertToRGBA(animation.current));RGBAValue=toLinearSpace(convertToRGBA(value));if(animation.toValue){RGBAToValue=toLinearSpace(convertToRGBA(animation.toValue));}}tab.forEach(function(i,index){animation[i]=Object.assign({},animationCopy);animation[i].current=RGBACurrent[index];animation[i].toValue=RGBAToValue?RGBAToValue[index]:undefined;animation[i].onStart(animation[i],RGBAValue[index],timestamp,previousAnimation?previousAnimation[i]:undefined);res.push(animation[i].current);});animation.current=rgbaArrayToRGBAColor(toGammaSpace(res));};const colorOnFrame=function(animation,timestamp){const RGBACurrent=toLinearSpace(convertToRGBA(animation.current));const res=[];let finished=true;tab.forEach(function(i,index){animation[i].current=RGBACurrent[index];finished&=animation[i].onFrame(animation[i],timestamp);res.push(animation[i].current);});animation.current=rgbaArrayToRGBAColor(toGammaSpace(res));return finished;};const arrayOnStart=function(animation,value,timestamp,previousAnimation){value.forEach(function(v,i){animation[i]=Object.assign({},animationCopy);animation[i].current=v;animation[i].toValue=animation.toValue[i];animation[i].onStart(animation[i],v,timestamp,previousAnimation?previousAnimation[i]:undefined);});animation.current=value;};const arrayOnFrame=function(animation,timestamp){let finished=true;animation.current.forEach(function(v,i){finished&=animation[i].onFrame(animation[i],timestamp);animation.current[i]=animation[i].current;});return finished;};animation.onStart=function(animation,value,timestamp,previousAnimation){if(isColor(value)){colorOnStart(animation,value,timestamp,previousAnimation);animation.onFrame=colorOnFrame;return;}else if(Array.isArray(value)){arrayOnStart(animation,value,timestamp,previousAnimation);animation.onFrame=arrayOnFrame;return;}else if(typeof value==='string'){prefNumberSuffOnStart(animation,value,timestamp,previousAnimation);animation.onFrame=prefNumberSuffOnFrame;return;}baseOnStart(animation,value,timestamp,previousAnimation);};}}";
_f.__workletHash = 7767808760058;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/react-native-reanimated/src/reanimated2/animation/util.ts (66:0)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/react-native-reanimated/src/reanimated2/animation/util.ts (66:0)";
return _f;
}();
@@ -102605,7 +102599,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
_f.asString = "function _f(){const{factory,decorateAnimation}=jsThis._closure;{const animation=factory();decorateAnimation(animation);return animation;}}";
_f.__workletHash = 2441595458132;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/react-native-reanimated/src/reanimated2/animation/util.ts (267:17)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/react-native-reanimated/src/reanimated2/animation/util.ts (267:17)";
return _f;
}();
@@ -102625,7 +102619,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
_f.asString = "function defineAnimation(starting,factory){const{IN_STYLE_UPDATER,decorateAnimation,NativeReanimatedModule}=jsThis._closure;{if(IN_STYLE_UPDATER){return starting;}const create=function(){'worklet';const animation=factory();decorateAnimation(animation);return animation;};if(_WORKLET||!NativeReanimatedModule.native){return create();}return create;}}";
_f.__workletHash = 4939784890886;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/react-native-reanimated/src/reanimated2/animation/util.ts (260:7)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/react-native-reanimated/src/reanimated2/animation/util.ts (260:7)";
return _f;
}();
@@ -102637,7 +102631,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
_f._closure = {};
_f.asString = "function cancelAnimation(sharedValue){sharedValue.value=sharedValue.value;}";
_f.__workletHash = 15056882569526;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/react-native-reanimated/src/reanimated2/animation/util.ts (281:7)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/react-native-reanimated/src/reanimated2/animation/util.ts (281:7)";
return _f;
}();
@@ -102659,7 +102653,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
_f.asString = "function _f(){const{animation,startValue}=jsThis._closure;{if(!_WORKLET&&typeof animation==='function'){animation=animation();}animation.current=startValue;return animation;}}";
_f.__workletHash = 5374403234008;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/react-native-reanimated/src/reanimated2/animation/util.ts (293:37)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/react-native-reanimated/src/reanimated2/animation/util.ts (293:37)";
return _f;
}());
};
@@ -102669,7 +102663,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
_f.asString = "function withStartValue(startValue,animation){const{defineAnimation}=jsThis._closure;{return defineAnimation(startValue,function(){'worklet';if(!_WORKLET&&typeof animation==='function'){animation=animation();}animation.current=startValue;return animation;});}}";
_f.__workletHash = 5100017907325;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/react-native-reanimated/src/reanimated2/animation/util.ts (288:7)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/react-native-reanimated/src/reanimated2/animation/util.ts (288:7)";
return _f;
}();
},716,[3,677,714]);
@@ -102756,7 +102750,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
_f.asString = "function _f(){const{Easing,userConfig,toValue,callback}=jsThis._closure;{const config={duration:300,easing:Easing.inOut(Easing.quad)};if(userConfig){Object.keys(userConfig).forEach(function(key){return config[key]=userConfig[key];});}function timing(animation,now){const{toValue:toValue,startTime:startTime,startValue:startValue}=animation;const runtime=now-startTime;if(runtime>=config.duration){animation.startTime=0;animation.current=toValue;return true;}const progress=animation.easing(runtime/config.duration);animation.current=startValue+(toValue-startValue)*progress;return false;}function onStart(animation,value,now,previousAnimation){if(previousAnimation&&previousAnimation.type==='timing'&&previousAnimation.toValue===toValue&&previousAnimation.startTime){animation.startTime=previousAnimation.startTime;animation.startValue=previousAnimation.startValue;}else{animation.startTime=now;animation.startValue=value;}animation.current=value;if(typeof config.easing==='object'){animation.easing=config.easing.factory();}else{animation.easing=config.easing;}}return{type:'timing',onFrame:timing,onStart:onStart,progress:0,toValue:toValue,startValue:0,startTime:0,easing:function(){return 0;},current:toValue,callback:callback};}}";
_f.__workletHash = 7771814081277;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/react-native-reanimated/src/reanimated2/animation/timing.ts (38:51)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/react-native-reanimated/src/reanimated2/animation/timing.ts (38:51)";
return _f;
}());
};
@@ -102770,7 +102764,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
_f.asString = "function withTiming(toValue,userConfig,callback){const{defineAnimation,Easing}=jsThis._closure;{return defineAnimation(toValue,function(){'worklet';const config={duration:300,easing:Easing.inOut(Easing.quad)};if(userConfig){Object.keys(userConfig).forEach(function(key){return config[key]=userConfig[key];});}function timing(animation,now){const{toValue:toValue,startTime:startTime,startValue:startValue}=animation;const runtime=now-startTime;if(runtime>=config.duration){animation.startTime=0;animation.current=toValue;return true;}const progress=animation.easing(runtime/config.duration);animation.current=startValue+(toValue-startValue)*progress;return false;}function onStart(animation,value,now,previousAnimation){if(previousAnimation&&previousAnimation.type==='timing'&&previousAnimation.toValue===toValue&&previousAnimation.startTime){animation.startTime=previousAnimation.startTime;animation.startValue=previousAnimation.startValue;}else{animation.startTime=now;animation.startValue=value;}animation.current=value;if(typeof config.easing==='object'){animation.easing=config.easing.factory();}else{animation.easing=config.easing;}}return{type:'timing',onFrame:timing,onStart:onStart,progress:0,toValue:toValue,startValue:0,startTime:0,easing:function(){return 0;},current:toValue,callback:callback};});}}";
_f.__workletHash = 2875714024024;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/react-native-reanimated/src/reanimated2/animation/timing.ts (31:7)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/react-native-reanimated/src/reanimated2/animation/timing.ts (31:7)";
return _f;
}();
},717,[716,718]);
@@ -102790,7 +102784,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
_f._closure = {};
_f.asString = "function linear(t){return t;}";
_f.__workletHash = 7988822508142;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/react-native-reanimated/src/reanimated2/Easing.ts (66:0)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/react-native-reanimated/src/reanimated2/Easing.ts (66:0)";
return _f;
}();
@@ -102804,7 +102798,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
_f.asString = "function ease(t){const{Bezier}=jsThis._closure;{return Bezier(0.42,0,1,1)(t);}}";
_f.__workletHash = 13039945852153;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/react-native-reanimated/src/reanimated2/Easing.ts (77:0)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/react-native-reanimated/src/reanimated2/Easing.ts (77:0)";
return _f;
}();
@@ -102816,7 +102810,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
_f._closure = {};
_f.asString = "function quad(t){return t*t;}";
_f.__workletHash = 8628631460172;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/react-native-reanimated/src/reanimated2/Easing.ts (88:0)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/react-native-reanimated/src/reanimated2/Easing.ts (88:0)";
return _f;
}();
@@ -102828,7 +102822,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
_f._closure = {};
_f.asString = "function cubic(t){return t*t*t;}";
_f.__workletHash = 9374441307661;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/react-native-reanimated/src/reanimated2/Easing.ts (99:0)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/react-native-reanimated/src/reanimated2/Easing.ts (99:0)";
return _f;
}();
@@ -102844,7 +102838,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
_f.asString = "function _f(t){const{n}=jsThis._closure;{return Math.pow(t,n);}}";
_f.__workletHash = 1121339919789;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/react-native-reanimated/src/reanimated2/Easing.ts (112:9)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/react-native-reanimated/src/reanimated2/Easing.ts (112:9)";
return _f;
}();
};
@@ -102852,7 +102846,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
_f._closure = {};
_f.asString = "function poly(n){return function(t){'worklet';return Math.pow(t,n);};}";
_f.__workletHash = 16553371555377;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/react-native-reanimated/src/reanimated2/Easing.ts (110:0)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/react-native-reanimated/src/reanimated2/Easing.ts (110:0)";
return _f;
}();
@@ -102864,7 +102858,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
_f._closure = {};
_f.asString = "function sin(t){return 1-Math.cos(t*Math.PI/2);}";
_f.__workletHash = 8621899987563;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/react-native-reanimated/src/reanimated2/Easing.ts (123:0)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/react-native-reanimated/src/reanimated2/Easing.ts (123:0)";
return _f;
}();
@@ -102876,7 +102870,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
_f._closure = {};
_f.asString = "function circle(t){return 1-Math.sqrt(1-t*t);}";
_f.__workletHash = 15893365817828;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/react-native-reanimated/src/reanimated2/Easing.ts (133:0)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/react-native-reanimated/src/reanimated2/Easing.ts (133:0)";
return _f;
}();
@@ -102888,7 +102882,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
_f._closure = {};
_f.asString = "function exp(t){return Math.pow(2,10*(t-1));}";
_f.__workletHash = 15907471981377;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/react-native-reanimated/src/reanimated2/Easing.ts (143:0)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/react-native-reanimated/src/reanimated2/Easing.ts (143:0)";
return _f;
}();
@@ -102906,7 +102900,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
_f.asString = "function _f(t){const{p}=jsThis._closure;{return 1-Math.pow(Math.cos(t*Math.PI/2),3)*Math.cos(t*p);}}";
_f.__workletHash = 8897284077766;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/react-native-reanimated/src/reanimated2/Easing.ts (161:9)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/react-native-reanimated/src/reanimated2/Easing.ts (161:9)";
return _f;
}();
};
@@ -102914,7 +102908,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
_f._closure = {};
_f.asString = "function elastic(bounciness=1){const p=bounciness*Math.PI;return function(t){'worklet';return 1-Math.pow(Math.cos(t*Math.PI/2),3)*Math.cos(t*p);};}";
_f.__workletHash = 15898989302935;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/react-native-reanimated/src/reanimated2/Easing.ts (158:0)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/react-native-reanimated/src/reanimated2/Easing.ts (158:0)";
return _f;
}();
@@ -102931,7 +102925,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
_f.asString = "function _f(t){const{s}=jsThis._closure;{return t*t*((s+1)*t-s);}}";
_f.__workletHash = 9334724225624;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/react-native-reanimated/src/reanimated2/Easing.ts (177:9)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/react-native-reanimated/src/reanimated2/Easing.ts (177:9)";
return _f;
}();
};
@@ -102939,7 +102933,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
_f._closure = {};
_f.asString = "function back(s=1.70158){return function(t){'worklet';return t*t*((s+1)*t-s);};}";
_f.__workletHash = 2360128598492;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/react-native-reanimated/src/reanimated2/Easing.ts (175:0)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/react-native-reanimated/src/reanimated2/Easing.ts (175:0)";
return _f;
}();
@@ -102968,7 +102962,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
_f._closure = {};
_f.asString = "function bounce(t){if(t<1/2.75){return 7.5625*t*t;}if(t<2/2.75){const t2=t-1.5/2.75;return 7.5625*t2*t2+0.75;}if(t<2.5/2.75){const t2=t-2.25/2.75;return 7.5625*t2*t2+0.9375;}const t2=t-2.625/2.75;return 7.5625*t2*t2+0.984375;}";
_f.__workletHash = 5721637210615;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/react-native-reanimated/src/reanimated2/Easing.ts (188:0)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/react-native-reanimated/src/reanimated2/Easing.ts (188:0)";
return _f;
}();
@@ -102989,7 +102983,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
_f.asString = "function _f(){const{Bezier,x1,y1,x2,y2}=jsThis._closure;{return Bezier(x1,y1,x2,y2);}}";
_f.__workletHash = 4879686787739;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/react-native-reanimated/src/reanimated2/Easing.ts (223:13)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/react-native-reanimated/src/reanimated2/Easing.ts (223:13)";
return _f;
}()
};
@@ -103000,7 +102994,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
_f.asString = "function bezier(x1,y1,x2,y2){const{Bezier}=jsThis._closure;{return{factory:function(){'worklet';return Bezier(x1,y1,x2,y2);}};}}";
_f.__workletHash = 853527302262;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/react-native-reanimated/src/reanimated2/Easing.ts (215:0)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/react-native-reanimated/src/reanimated2/Easing.ts (215:0)";
return _f;
}();
@@ -103014,7 +103008,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
_f.asString = "function bezierFn(x1,y1,x2,y2){const{Bezier}=jsThis._closure;{return Bezier(x1,y1,x2,y2);}}";
_f.__workletHash = 15185855900453;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/react-native-reanimated/src/reanimated2/Easing.ts (230:0)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/react-native-reanimated/src/reanimated2/Easing.ts (230:0)";
return _f;
}();
@@ -103026,7 +103020,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
_f._closure = {};
_f.asString = "function in_(easing){return easing;}";
_f.__workletHash = 1837493474379;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/react-native-reanimated/src/reanimated2/Easing.ts (243:0)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/react-native-reanimated/src/reanimated2/Easing.ts (243:0)";
return _f;
}();
@@ -103042,7 +103036,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
_f.asString = "function _f(t){const{easing}=jsThis._closure;{return 1-easing(1-t);}}";
_f.__workletHash = 5726884014519;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/react-native-reanimated/src/reanimated2/Easing.ts (253:9)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/react-native-reanimated/src/reanimated2/Easing.ts (253:9)";
return _f;
}();
};
@@ -103050,7 +103044,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
_f._closure = {};
_f.asString = "function out(easing){return function(t){'worklet';return 1-easing(1-t);};}";
_f.__workletHash = 7718549646703;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/react-native-reanimated/src/reanimated2/Easing.ts (251:0)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/react-native-reanimated/src/reanimated2/Easing.ts (251:0)";
return _f;
}();
@@ -103070,7 +103064,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
_f.asString = "function _f(t){const{easing}=jsThis._closure;{if(t<0.5){return easing(t*2)/2;}return 1-easing((1-t)*2)/2;}}";
_f.__workletHash = 2325007799982;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/react-native-reanimated/src/reanimated2/Easing.ts (266:9)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/react-native-reanimated/src/reanimated2/Easing.ts (266:9)";
return _f;
}();
};
@@ -103078,7 +103072,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
_f._closure = {};
_f.asString = "function inOut(easing){return function(t){'worklet';if(t<0.5){return easing(t*2)/2;}return 1-easing((1-t)*2)/2;};}";
_f.__workletHash = 7048715165105;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/react-native-reanimated/src/reanimated2/Easing.ts (264:0)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/react-native-reanimated/src/reanimated2/Easing.ts (264:0)";
return _f;
}();
@@ -103138,7 +103132,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
_f.asString = "function checkIfReaOne(){const{prevArgs,EasingNode,workletName,worklet,createChecker}=jsThis._closure;{if(arguments&&!_WORKLET){for(let i=0;i2){if(x>input[length-1]){narrowedInput.leftEdgeInput=input[length-2];narrowedInput.rightEdgeInput=input[length-1];narrowedInput.leftEdgeOutput=output[length-2];narrowedInput.rightEdgeOutput=output[length-1];}else{for(let i=1;i 0 && arguments[0] !== undefined ? arguments[0] : false;
- Native.debugMode(enable);
- }
+ value: function () {
+ var _debugMode = (0, _asyncToGenerator2.default)(function* () {
+ var enable = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false;
+ return Native.debugMode(enable);
+ });
+
+ function debugMode() {
+ return _debugMode.apply(this, arguments);
+ }
+
+ return debugMode;
+ }()
+ }, {
+ key: "persistCookies",
+ value: function () {
+ var _persistCookies = (0, _asyncToGenerator2.default)(function* () {
+ var persist = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false;
+ return Native.persistCookies(persist);
+ });
+
+ function persistCookies() {
+ return _persistCookies.apply(this, arguments);
+ }
+
+ return persistCookies;
+ }()
}, {
key: "initializeWebMode",
value: function () {
@@ -132947,7 +132967,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
value: true
});
exports.RAW_HTML = undefined;
- var RAW_HTML = exports.RAW_HTML = "\n \n \n \n \n \n \n \n";
+ var RAW_HTML = exports.RAW_HTML = "\n \n \n \n \n \n \n \n \n";
},907,[]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
@@ -142434,7 +142454,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
try {
RNCMaskedView = function () {
- throw new Error("Cannot find module '@react-native-masked-view/masked-view'\nRequire stack:\n- /Users/ipaddev/sdk/3.18.16.rc/node_modules/@react-navigation/elements/src/noop.js");
+ throw new Error("Cannot find module '@react-native-masked-view/masked-view'\nRequire stack:\n- /Users/ipaddev/sdk/3.18.19.rc/node_modules/@react-navigation/elements/src/noop.js");
}().default;
} catch (e) {}
@@ -153261,7 +153281,7 @@ __d(function(global, require, _importDefaultUnused, _importAllUnused, module, ex
"_args": [
[
"react-native-url-polyfill@1.3.0",
- "/Users/ipaddev/sdk/3.18.16.rc"
+ "/Users/ipaddev/sdk/3.18.19.rc"
]
],
"_from": "react-native-url-polyfill@1.3.0",
@@ -153285,7 +153305,7 @@ __d(function(global, require, _importDefaultUnused, _importAllUnused, module, ex
],
"_resolved": "https://registry.npmjs.org/react-native-url-polyfill/-/react-native-url-polyfill-1.3.0.tgz",
"_spec": "1.3.0",
- "_where": "/Users/ipaddev/sdk/3.18.16.rc",
+ "_where": "/Users/ipaddev/sdk/3.18.19.rc",
"author": {
"name": "Nicolas Charpentier",
"email": "nicolas.charpentier079@gmail.com"
@@ -174232,7 +174252,9 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
var editionIssues = pics[publication.getName()];
if (editionIssues) {
- Object.keys(editionIssues).forEach(function (issue) {
+ Object.keys(editionIssues).filter(function (issue) {
+ return editionIssues[issue].pSetup === publication.getPSetup();
+ }).forEach(function (issue) {
mIssues.push((0, _classPrivateFieldLooseBase2.default)(EditionsHelper, _getIssue)[_getIssue](publication, issue, editionIssues[issue]));
});
}
@@ -178064,7 +178086,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
try {
RNCMaskedView = function () {
- throw new Error("Cannot find module '@react-native-masked-view/masked-view'\nRequire stack:\n- /Users/ipaddev/sdk/3.18.16.rc/node_modules/@react-navigation/drawer/node_modules/@react-navigation/elements/src/noop.js");
+ throw new Error("Cannot find module '@react-native-masked-view/masked-view'\nRequire stack:\n- /Users/ipaddev/sdk/3.18.19.rc/node_modules/@react-navigation/drawer/node_modules/@react-navigation/elements/src/noop.js");
}().default;
} catch (e) {}
@@ -179252,7 +179274,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
_f._closure = {};
_f.asString = "function _f(value,start,end){return Math.min(Math.max(value,start),end);}";
_f.__workletHash = 12387352865556;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/@react-navigation/drawer/src/views/modern/Drawer.tsx (39:15)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/@react-navigation/drawer/src/views/modern/Drawer.tsx (39:15)";
return _f;
}();
@@ -179311,7 +179333,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
_f.asString = "function _f(open){const{drawerPosition,drawerWidth}=jsThis._closure;{if(drawerPosition==='left'){return open?0:-drawerWidth;}return open?0:drawerWidth;}}";
_f.__workletHash = 4752955090285;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/@react-navigation/drawer/src/views/modern/Drawer.tsx (88:4)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/@react-navigation/drawer/src/views/modern/Drawer.tsx (88:4)";
return _f;
}(), [drawerPosition, drawerWidth]);
var hideStatusBar = React.useCallback(function (hide) {
@@ -179408,7 +179430,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
_f.asString = "function _f({open:open,isUserInitiated:isUserInitiated,velocity:velocity}){const{getDrawerTranslationX,touchStartX,touchX,translationX,withSpring,runOnJS,onOpen,onClose}=jsThis._closure;{const translateX=getDrawerTranslationX(open);touchStartX.value=0;touchX.value=0;translationX.value=withSpring(translateX,{velocity:velocity,stiffness:1000,damping:500,mass:3,overshootClamping:true,restDisplacementThreshold:0.01,restSpeedThreshold:0.01,reduceMotion:'never'});if(!isUserInitiated){return;}if(open){runOnJS(onOpen)();}else{runOnJS(onClose)();}}}";
_f.__workletHash = 3124016504787;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/@react-navigation/drawer/src/views/modern/Drawer.tsx (158:4)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/@react-navigation/drawer/src/views/modern/Drawer.tsx (158:4)";
return _f;
}(), [getDrawerTranslationX, onClose, onOpen, touchStartX, touchX, translationX]);
React.useEffect(function () {
@@ -179433,7 +179455,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
_f.asString = "function _f(event,ctx){const{translationX,gestureState,touchStartX}=jsThis._closure;{ctx.hasCalledOnStart=false;ctx.startX=translationX.value;gestureState.value=event.state;touchStartX.value=event.x;}}";
_f.__workletHash = 7995461185439;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/@react-navigation/drawer/src/views/modern/Drawer.tsx (199:13)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/@react-navigation/drawer/src/views/modern/Drawer.tsx (199:13)";
return _f;
}(),
onActive: function () {
@@ -179457,7 +179479,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
_f.asString = "function _f(event,ctx){const{touchX,translationX,gestureState,runOnJS,onGestureStart}=jsThis._closure;{touchX.value=event.x;translationX.value=ctx.startX+event.translationX;gestureState.value=event.state;if(!ctx.hasCalledOnStart){ctx.hasCalledOnStart=true;runOnJS(onGestureStart)();}}}";
_f.__workletHash = 2717092431621;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/@react-navigation/drawer/src/views/modern/Drawer.tsx (205:14)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/@react-navigation/drawer/src/views/modern/Drawer.tsx (205:14)";
return _f;
}(),
onEnd: function () {
@@ -179482,7 +179504,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
_f.asString = "function _f(event){const{gestureState,SWIPE_DISTANCE_MINIMUM,swipeVelocityThreshold,swipeDistanceThreshold,drawerPosition,open,toggleDrawer}=jsThis._closure;{gestureState.value=event.state;const nextOpen=Math.abs(event.translationX)>SWIPE_DISTANCE_MINIMUM&&Math.abs(event.translationX)>swipeVelocityThreshold||Math.abs(event.translationX)>swipeDistanceThreshold?drawerPosition==='left'?(event.velocityX===0?event.translationX:event.velocityX)>0:(event.velocityX===0?event.translationX:event.velocityX)<0:open;toggleDrawer({open:nextOpen,isUserInitiated:true,velocity:event.velocityX});}}";
_f.__workletHash = 5030620258728;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/@react-navigation/drawer/src/views/modern/Drawer.tsx (218:11)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/@react-navigation/drawer/src/views/modern/Drawer.tsx (218:11)";
return _f;
}(),
onFinish: function () {
@@ -179496,7 +179518,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
_f.asString = "function _f(){const{runOnJS,onGestureFinish}=jsThis._closure;{runOnJS(onGestureFinish)();}}";
_f.__workletHash = 10753070071248;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/@react-navigation/drawer/src/views/modern/Drawer.tsx (238:14)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/@react-navigation/drawer/src/views/modern/Drawer.tsx (238:14)";
return _f;
}()
});
@@ -179524,7 +179546,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
_f.asString = "function _f(){const{drawerType,gestureState,GestureState,minmax,drawerPosition,touchStartX,drawerWidth,dimensions,translationX}=jsThis._closure;{const touchDistance=drawerType==='front'&&gestureState.value===GestureState.ACTIVE?minmax(drawerPosition==='left'?touchStartX.value-drawerWidth:dimensions.width-drawerWidth-touchStartX.value,0,dimensions.width):0;const translateX=drawerPosition==='left'?minmax(translationX.value+touchDistance,-drawerWidth,0):minmax(translationX.value-touchDistance,0,drawerWidth);return translateX;}}";
_f.__workletHash = 16881564590342;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/@react-navigation/drawer/src/views/modern/Drawer.tsx (243:37)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/@react-navigation/drawer/src/views/modern/Drawer.tsx (243:37)";
return _f;
}());
@@ -179552,7 +179574,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
_f.asString = "function _f(){const{dimensions,drawerWidth,drawerType,translateX,drawerPosition,isRTL}=jsThis._closure;{const distanceFromEdge=dimensions.width-drawerWidth;return{transform:drawerType==='permanent'?[]:[{translateX:(drawerType==='back'?0:translateX.value)+(drawerPosition==='left'?isRTL?-distanceFromEdge:0:isRTL?0:distanceFromEdge)}]};}}";
_f.__workletHash = 17545005580326;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/@react-navigation/drawer/src/views/modern/Drawer.tsx (289:47)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/@react-navigation/drawer/src/views/modern/Drawer.tsx (289:47)";
_f.__optimalization = 3;
return _f;
}());
@@ -179573,7 +179595,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
_f.asString = "function _f(){const{drawerType,translateX,drawerWidth,drawerPosition}=jsThis._closure;{return{transform:drawerType==='permanent'?[]:[{translateX:drawerType==='front'?0:translateX.value+drawerWidth*(drawerPosition==='left'?1:-1)}]};}}";
_f.__workletHash = 10940802030343;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/@react-navigation/drawer/src/views/modern/Drawer.tsx (315:48)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/@react-navigation/drawer/src/views/modern/Drawer.tsx (315:48)";
_f.__optimalization = 3;
return _f;
}());
@@ -179590,7 +179612,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
_f.asString = "function _f(){const{drawerType,interpolate,translateX,getDrawerTranslationX}=jsThis._closure;{return drawerType==='permanent'?1:interpolate(translateX.value,[getDrawerTranslationX(false),getDrawerTranslationX(true)],[0,1]);}}";
_f.__workletHash = 10677902672597;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/@react-navigation/drawer/src/views/modern/Drawer.tsx (335:35)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/@react-navigation/drawer/src/views/modern/Drawer.tsx (335:35)";
return _f;
}());
return (0, _$$_REQUIRE(_dependencyMap[7]).jsx)(_DrawerProgressContext.default.Provider, {
@@ -179699,7 +179721,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
_f.asString = "function _f(){const{progress,PROGRESS_EPSILON}=jsThis._closure;{return{opacity:progress.value,zIndex:progress.value>PROGRESS_EPSILON?0:-1};}}";
_f.__workletHash = 1802421920871;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/@react-navigation/drawer/src/views/modern/Overlay.tsx (26:41)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/@react-navigation/drawer/src/views/modern/Overlay.tsx (26:41)";
_f.__optimalization = 3;
return _f;
}());
@@ -179719,7 +179741,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
_f.asString = "function _f(){const{progress,PROGRESS_EPSILON}=jsThis._closure;{const active=progress.value>PROGRESS_EPSILON;return{pointerEvents:active?'auto':'none',accessibilityElementsHidden:!active,importantForAccessibility:active?'auto':'no-hide-descendants'};}}";
_f.__workletHash = 1603427272892;
- _f.__location = "/Users/ipaddev/sdk/3.18.16.rc/node_modules/@react-navigation/drawer/src/views/modern/Overlay.tsx (35:41)";
+ _f.__location = "/Users/ipaddev/sdk/3.18.19.rc/node_modules/@react-navigation/drawer/src/views/modern/Overlay.tsx (35:41)";
return _f;
}());
return (0, _$$_REQUIRE(_dependencyMap[5]).jsx)(_reactNativeReanimated.default.View, Object.assign({}, props, {
@@ -205632,7 +205654,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
value: true
});
exports.VERSION = undefined;
- var VERSION = "1.5.4";
+ var VERSION = "1.5.5";
exports.VERSION = VERSION;
},1760,[]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
@@ -233273,7 +233295,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
FirebaseCrashlytics().setJSCallback(this.tracker.logEvent);
}
- if (firebaseAnalyticsSendExternalId) {
+ if (firebaseAnalyticsSendExternalId && this._isUserIdTrackingAllowed()) {
var extid = this._getExtId();
yield this.tracker.setUserId(extid);
@@ -233871,7 +233893,9 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
var _PaywallLoginStatus = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[6]));
- var _deviceUtils = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[7]));
+ var _cmpUtils = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[7]));
+
+ var _deviceUtils = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[8]));
function _callSuper(t, o, e) { return o = (0, _getPrototypeOf2.default)(o), (0, _possibleConstructorReturn2.default)(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], (0, _getPrototypeOf2.default)(t).constructor) : o.apply(t, e)); }
@@ -233889,8 +233913,8 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
value: function _getCustomParams() {
return {
ta_app_version: _deviceUtils.default.getAppVersion(),
- ta_app_name: _$$_REQUIRE(_dependencyMap[8]).PlatformUtils.appName(),
- ta_operating_system: _$$_REQUIRE(_dependencyMap[8]).PlatformUtils.getSystemName() + " " + _$$_REQUIRE(_dependencyMap[8]).PlatformUtils.getSystemVersion()
+ ta_app_name: _$$_REQUIRE(_dependencyMap[9]).PlatformUtils.appName(),
+ ta_operating_system: _$$_REQUIRE(_dependencyMap[9]).PlatformUtils.getSystemName() + " " + _$$_REQUIRE(_dependencyMap[9]).PlatformUtils.getSystemVersion()
};
}
}, {
@@ -233901,9 +233925,14 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
return (loginStatus == null ? undefined : loginStatus.extid) || _PaywallLoginStatus.default.getExtid();
}
+ }, {
+ key: "_isUserIdTrackingAllowed",
+ value: function _isUserIdTrackingAllowed() {
+ return this._isCmpAllowed() && _cmpUtils.default.getTrackingConsent() !== false;
+ }
}]);
- }(_$$_REQUIRE(_dependencyMap[9]).OptionalTracker);
-},1927,[3,6,7,11,13,14,1928,434,438,1930]);
+ }(_$$_REQUIRE(_dependencyMap[10]).OptionalTracker);
+},1927,[3,6,7,11,13,14,1928,1930,434,438,1931]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -234134,142 +234163,6 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
var UNLIMITED_ACCESS = exports.UNLIMITED_ACCESS = "unlimited";
},1929,[]);
-__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports.OptionalTracker = undefined;
-
- var _classCallCheck2 = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[1]));
-
- var _createClass2 = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[2]));
-
- var _possibleConstructorReturn2 = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[3]));
-
- var _get2 = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[4]));
-
- var _getPrototypeOf2 = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[5]));
-
- var _inherits2 = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[6]));
-
- function _callSuper(t, o, e) { return o = (0, _getPrototypeOf2.default)(o), (0, _possibleConstructorReturn2.default)(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], (0, _getPrototypeOf2.default)(t).constructor) : o.apply(t, e)); }
-
- function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
-
- var OptionalTracker = exports.OptionalTracker = function (_Tracker) {
- function OptionalTracker(service) {
- var _this;
-
- (0, _classCallCheck2.default)(this, OptionalTracker);
- _this = _callSuper(this, OptionalTracker, [service]);
- _this.tracker = null;
- _this.isTrackerAvailable = _this._isTrackerAvailable.bind(_this);
- return _this;
- }
-
- (0, _inherits2.default)(OptionalTracker, _Tracker);
- return (0, _createClass2.default)(OptionalTracker, [{
- key: "_isTrackerAvailable",
- value: function _isTrackerAvailable() {
- return !_$$_REQUIRE(_dependencyMap[7]).JSUtils.isNull(this.tracker);
- }
- }, {
- key: "_isValid",
- value: function _isValid() {
- if (!(0, _get2.default)((0, _getPrototypeOf2.default)(OptionalTracker.prototype), "_isValid", this).call(this)) {
- return false;
- }
-
- if (!this._isTrackerAvailable()) {
- return false;
- }
-
- return true;
- }
- }]);
- }(_$$_REQUIRE(_dependencyMap[8]).Tracker);
-},1930,[3,6,7,11,85,13,14,438,1931]);
-__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports.Tracker = undefined;
-
- var _classCallCheck2 = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[1]));
-
- var _createClass2 = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[2]));
-
- var _cmpUtils = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[3]));
-
- var Tracker = exports.Tracker = function () {
- function Tracker(service) {
- (0, _classCallCheck2.default)(this, Tracker);
- this.service = undefined;
- this.enabled = false;
- this.service = service;
- this.init = this._init.bind(this);
- this.trackScreen = this._trackScreen.bind(this);
- this.trackEvent = this._trackEvent.bind(this);
- this.isValid = this._isValid.bind(this);
- this.isParamsValid = this._isParamsValid.bind(this);
- this.isCmpAllowed = this._isCmpAllowed.bind(this);
- }
-
- return (0, _createClass2.default)(Tracker, [{
- key: "_init",
- value: function _init() {
- return this;
- }
- }, {
- key: "_trackScreen",
- value: function _trackScreen() {}
- }, {
- key: "_trackEvent",
- value: function _trackEvent(params) {}
- }, {
- key: "_isValid",
- value: function _isValid() {
- if (!this.enabled) {
- return false;
- }
-
- if (!this._isProduction()) {
- return false;
- }
-
- return true;
- }
- }, {
- key: "_isParamsValid",
- value: function _isParamsValid(params) {
- if (!this._isValid()) {
- return false;
- }
-
- if (!params) {
- return false;
- }
-
- return true;
- }
- }, {
- key: "_isCmpAllowed",
- value: function _isCmpAllowed() {
- return _cmpUtils.default.isAnalyticsTrackingAllowed(this.service);
- }
- }, {
- key: "_isCmpAdAllowed",
- value: function _isCmpAdAllowed() {
- return _cmpUtils.default.isAdTrackingAllowed();
- }
- }, {
- key: "_isProduction",
- value: function _isProduction() {
- return !global.__DEV__;
- }
- }]);
- }();
-},1931,[3,6,7,1932]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -234492,7 +234385,12 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
var MATOMO = _$$_REQUIRE(_dependencyMap[10]).ANALYTICS_SERVICES.MATOMO,
FIREBASE_GA = _$$_REQUIRE(_dependencyMap[10]).ANALYTICS_SERVICES.FIREBASE_GA;
- return service === MATOMO || service === FIREBASE_GA;
+ return service === MATOMO || service === FIREBASE_GA || service === FIREBASE_GA_WEB;
+ }
+ }, {
+ key: "getTrackingConsent",
+ value: function getTrackingConsent() {
+ return CmpUtils.trackingConsent;
}
}, {
key: "isAnalyticsTrackingAllowed",
@@ -235159,7 +235057,143 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
CmpUtils.googlePersonalizedAdsConsent = undefined;
CmpUtils.googleNonPersonalizedAdsConsent = undefined;
CmpUtils.consentNotNeeded = false;
-},1932,[3,270,6,7,18,406,881,868,438,817,1925]);
+},1930,[3,270,6,7,18,406,881,868,438,817,1925]);
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ Object.defineProperty(exports, "__esModule", {
+ value: true
+ });
+ exports.OptionalTracker = undefined;
+
+ var _classCallCheck2 = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[1]));
+
+ var _createClass2 = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[2]));
+
+ var _possibleConstructorReturn2 = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[3]));
+
+ var _get2 = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[4]));
+
+ var _getPrototypeOf2 = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[5]));
+
+ var _inherits2 = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[6]));
+
+ function _callSuper(t, o, e) { return o = (0, _getPrototypeOf2.default)(o), (0, _possibleConstructorReturn2.default)(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], (0, _getPrototypeOf2.default)(t).constructor) : o.apply(t, e)); }
+
+ function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
+
+ var OptionalTracker = exports.OptionalTracker = function (_Tracker) {
+ function OptionalTracker(service) {
+ var _this;
+
+ (0, _classCallCheck2.default)(this, OptionalTracker);
+ _this = _callSuper(this, OptionalTracker, [service]);
+ _this.tracker = null;
+ _this.isTrackerAvailable = _this._isTrackerAvailable.bind(_this);
+ return _this;
+ }
+
+ (0, _inherits2.default)(OptionalTracker, _Tracker);
+ return (0, _createClass2.default)(OptionalTracker, [{
+ key: "_isTrackerAvailable",
+ value: function _isTrackerAvailable() {
+ return !_$$_REQUIRE(_dependencyMap[7]).JSUtils.isNull(this.tracker);
+ }
+ }, {
+ key: "_isValid",
+ value: function _isValid() {
+ if (!(0, _get2.default)((0, _getPrototypeOf2.default)(OptionalTracker.prototype), "_isValid", this).call(this)) {
+ return false;
+ }
+
+ if (!this._isTrackerAvailable()) {
+ return false;
+ }
+
+ return true;
+ }
+ }]);
+ }(_$$_REQUIRE(_dependencyMap[8]).Tracker);
+},1931,[3,6,7,11,85,13,14,438,1932]);
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ Object.defineProperty(exports, "__esModule", {
+ value: true
+ });
+ exports.Tracker = undefined;
+
+ var _classCallCheck2 = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[1]));
+
+ var _createClass2 = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[2]));
+
+ var _cmpUtils = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[3]));
+
+ var Tracker = exports.Tracker = function () {
+ function Tracker(service) {
+ (0, _classCallCheck2.default)(this, Tracker);
+ this.service = undefined;
+ this.enabled = false;
+ this.service = service;
+ this.init = this._init.bind(this);
+ this.trackScreen = this._trackScreen.bind(this);
+ this.trackEvent = this._trackEvent.bind(this);
+ this.isValid = this._isValid.bind(this);
+ this.isParamsValid = this._isParamsValid.bind(this);
+ this.isCmpAllowed = this._isCmpAllowed.bind(this);
+ }
+
+ return (0, _createClass2.default)(Tracker, [{
+ key: "_init",
+ value: function _init() {
+ return this;
+ }
+ }, {
+ key: "_trackScreen",
+ value: function _trackScreen() {}
+ }, {
+ key: "_trackEvent",
+ value: function _trackEvent(params) {}
+ }, {
+ key: "_isValid",
+ value: function _isValid() {
+ if (!this.enabled) {
+ return false;
+ }
+
+ if (!this._isProduction()) {
+ return false;
+ }
+
+ return true;
+ }
+ }, {
+ key: "_isParamsValid",
+ value: function _isParamsValid(params) {
+ if (!this._isValid()) {
+ return false;
+ }
+
+ if (!params) {
+ return false;
+ }
+
+ return true;
+ }
+ }, {
+ key: "_isCmpAllowed",
+ value: function _isCmpAllowed() {
+ return _cmpUtils.default.isAnalyticsTrackingAllowed(this.service);
+ }
+ }, {
+ key: "_isCmpAdAllowed",
+ value: function _isCmpAdAllowed() {
+ return _cmpUtils.default.isAdTrackingAllowed();
+ }
+ }, {
+ key: "_isProduction",
+ value: function _isProduction() {
+ return !global.__DEV__;
+ }
+ }]);
+ }();
+},1932,[3,6,7,1930]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -235235,7 +235269,8 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
var _global$getMainPSetup = global.getMainPSetup(),
pSetup = _global$getMainPSetup.pSetup,
otherFirebaseProjects = _global$getMainPSetup.otherFirebaseProjects,
- firebaseAnalyticsSendExternalId = _global$getMainPSetup.firebaseAnalyticsSendExternalId;
+ firebaseAnalyticsSendExternalId = _global$getMainPSetup.firebaseAnalyticsSendExternalId,
+ persistGA4Cookies = _global$getMainPSetup.persistGA4Cookies;
var _global$getActivePSet = global.getActivePSetup(),
activePSetup = _global$getActivePSet.pSetup,
@@ -235260,8 +235295,9 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
this.enabled = false;
} else {
this.tracker = WebAnalytics();
+ yield this.tracker.persistCookies(persistGA4Cookies);
- if (firebaseAnalyticsSendExternalId) {
+ if (firebaseAnalyticsSendExternalId && this._isUserIdTrackingAllowed()) {
var extid = this._getExtId();
yield this.tracker.setUserId(extid);
@@ -235436,7 +235472,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}()
}]);
}(_$$_REQUIRE(_dependencyMap[9]).Tracker);
-},1934,[3,270,6,7,11,13,14,407,1925,1931]);
+},1934,[3,270,6,7,11,13,14,407,1925,1932]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -235566,7 +235602,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
}]);
}(_$$_REQUIRE(_dependencyMap[9]).OptionalTracker);
-},1935,[3,6,7,11,13,14,881,1925,1926,1930]);
+},1935,[3,6,7,11,13,14,881,1925,1926,1931]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -235698,7 +235734,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
}]);
}(_$$_REQUIRE(_dependencyMap[10]).OptionalTracker);
-},1936,[3,270,6,7,11,13,14,1920,881,1925,1930]);
+},1936,[3,270,6,7,11,13,14,1920,881,1925,1931]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -235861,7 +235897,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
}]);
}(_$$_REQUIRE(_dependencyMap[10]).OptionalTracker);
-},1937,[3,6,7,11,13,14,1920,881,1925,438,1930]);
+},1937,[3,6,7,11,13,14,1920,881,1925,438,1931]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -236356,7 +236392,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}()
}]);
}(_$$_REQUIRE(_dependencyMap[13]).OptionalTracker);
-},1938,[3,270,6,7,11,85,13,14,436,881,1925,438,1926,1930]);
+},1938,[3,270,6,7,11,85,13,14,436,881,1925,438,1926,1931]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -236496,7 +236532,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
}]);
}(_$$_REQUIRE(_dependencyMap[11]).OptionalTracker);
-},1939,[3,4,6,7,11,85,13,14,881,1925,438,1930]);
+},1939,[3,4,6,7,11,85,13,14,881,1925,438,1931]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -236592,7 +236628,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
}]);
}(_$$_REQUIRE(_dependencyMap[9]).OptionalTracker);
-},1940,[3,270,6,7,11,13,14,881,1925,1930]);
+},1940,[3,270,6,7,11,13,14,881,1925,1931]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -236803,7 +236839,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
}]);
}(_$$_REQUIRE(_dependencyMap[13]).OptionalTracker);
-},1941,[3,4,6,7,11,13,14,1920,436,881,1925,564,438,1930]);
+},1941,[3,4,6,7,11,13,14,1920,436,881,1925,564,438,1931]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -236996,7 +237032,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
}]);
}(_$$_REQUIRE(_dependencyMap[11]).OptionalTracker);
-},1942,[3,4,6,7,11,13,14,881,1925,1926,438,1930]);
+},1942,[3,4,6,7,11,13,14,881,1925,1926,438,1931]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -238407,9 +238443,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
yield PushHelper.init();
yield PushHelper.instance.onBackgroundMessage(message);
- } catch (e) {
- console.error("background push notification error: " + e.message);
- }
+ } catch (e) {}
return Promise.resolve();
});
@@ -238514,11 +238548,11 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
key: "createAndroidChannels",
value: function () {
var _createAndroidChannels = (0, _asyncToGenerator2.default)(function* () {
- if (PushHelper.instance) {
- return PushHelper.instance.createAndroidChannels();
+ if (!PushHelper.instance) {
+ return Promise.resolve();
}
- return false;
+ return PushHelper.instance.createAndroidChannels();
});
function createAndroidChannels() {
@@ -238530,55 +238564,47 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}, {
key: "isTherePush",
value: function isTherePush() {
- if (PushHelper.instance) {
- return PushHelper.instance.isTherePush();
- }
+ var _PushHelper$instance$, _PushHelper$instance4;
- return false;
+ return (_PushHelper$instance$ = (_PushHelper$instance4 = PushHelper.instance) == null ? undefined : _PushHelper$instance4.isTherePush()) != null ? _PushHelper$instance$ : false;
}
}, {
key: "pushNeedFeedUpdate",
value: function pushNeedFeedUpdate() {
- if (PushHelper.instance) {
- return PushHelper.instance.pushNeedFeedUpdate();
- }
+ var _PushHelper$instance$2, _PushHelper$instance5;
- return false;
+ return (_PushHelper$instance$2 = (_PushHelper$instance5 = PushHelper.instance) == null ? undefined : _PushHelper$instance5.pushNeedFeedUpdate()) != null ? _PushHelper$instance$2 : false;
}
}, {
key: "getPush",
value: function getPush() {
- if (PushHelper.instance) {
- return PushHelper.instance.getPush();
- }
+ var _PushHelper$instance$3, _PushHelper$instance6;
- return {};
+ return (_PushHelper$instance$3 = (_PushHelper$instance6 = PushHelper.instance) == null ? undefined : _PushHelper$instance6.getPush()) != null ? _PushHelper$instance$3 : {};
}
}, {
key: "clearPush",
value: function clearPush() {
- var _PushHelper$instance4;
+ var _PushHelper$instance7;
- (_PushHelper$instance4 = PushHelper.instance) == null ? undefined : _PushHelper$instance4.clearPush();
+ (_PushHelper$instance7 = PushHelper.instance) == null ? undefined : _PushHelper$instance7.clearPush();
}
}, {
key: "getRegistrationInfo",
value: function getRegistrationInfo() {
- if (PushHelper.instance) {
- return PushHelper.instance.getRegistrationInfo();
- }
+ var _PushHelper$instance$4, _PushHelper$instance8;
- return {};
+ return (_PushHelper$instance$4 = (_PushHelper$instance8 = PushHelper.instance) == null ? undefined : _PushHelper$instance8.getRegistrationInfo()) != null ? _PushHelper$instance$4 : {};
}
}, {
key: "checkIfSendRegistration",
value: function () {
var _checkIfSendRegistration = (0, _asyncToGenerator2.default)(function* () {
- if (PushHelper.instance) {
- return PushHelper.instance.checkIfSendRegistration();
+ if (!PushHelper.instance) {
+ return Promise.resolve();
}
- return Promise.resolve();
+ return PushHelper.instance.checkIfSendRegistration();
});
function checkIfSendRegistration() {
@@ -238590,28 +238616,28 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}, {
key: "clearOldStoredNotifications",
value: function clearOldStoredNotifications() {
- if (PushHelper.instance) {
- return PushHelper.instance.clearOldStoredNotifications();
+ if (!PushHelper.instance) {
+ return Promise.resolve();
}
- return Promise.resolve();
+ return PushHelper.instance.clearOldStoredNotifications();
}
}, {
key: "updateTags",
value: function updateTags() {
- var _PushHelper$instance5;
+ var _PushHelper$instance9;
- (_PushHelper$instance5 = PushHelper.instance) == null ? undefined : _PushHelper$instance5.updateTags();
+ (_PushHelper$instance9 = PushHelper.instance) == null ? undefined : _PushHelper$instance9.updateTags();
}
}, {
key: "registerDevice",
value: function () {
var _registerDevice = (0, _asyncToGenerator2.default)(function* () {
- if (PushHelper.instance) {
- return PushHelper.instance.init();
+ if (!PushHelper.instance) {
+ return Promise.resolve();
}
- return Promise.resolve();
+ return PushHelper.instance.init();
});
function registerDevice() {
@@ -238624,12 +238650,12 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
key: "deleteRegistration",
value: function () {
var _deleteRegistration = (0, _asyncToGenerator2.default)(function* () {
- if (PushHelper.instance) {
- PushHelper.instance.deleteRegistration();
- return PushHelper.instance.deleteToken();
+ if (!PushHelper.instance) {
+ return Promise.resolve(true);
}
- return Promise.resolve(true);
+ PushHelper.instance.deleteRegistration();
+ return PushHelper.instance.deleteToken();
});
function deleteRegistration() {
@@ -238807,11 +238833,8 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
mainNavigator = rssIsEnabled ? "RssNavigator" : "NewsmemoryNavigator";
break;
- case "openEpaperCoordinates":
- mainNavigator = "NewsmemoryNavigator";
- break;
-
case "openEpaper":
+ case "openEpaperCoordinates":
mainNavigator = "NewsmemoryNavigator";
break;
}
@@ -238861,13 +238884,13 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
} else if ((url == null ? undefined : url.length) > 0) {
action = "openUrl";
value = url;
- } else if (edition || issue || page || article) {
+ } else if (edition || issue) {
action = "openEpaperCoordinates";
value = {
edition: edition,
issue: issue,
- page: page,
- article: article
+ page: issue ? page : undefined,
+ article: issue ? article : undefined
};
}
@@ -242664,7 +242687,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
var title = notification.title,
body = notification.body,
android = notification.android;
- var sound = android ? android.sound : undefined;
+ var sound = android == null ? undefined : android.sound;
return {
title: title,
body: body,
@@ -266718,7 +266741,8 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
must_login_to_view_article: "mustLoginToViewArticle",
attach_paywall_to_article: "attachPaywallToArticle",
article_preview_length: "articlePreviewLength",
- use_phone_article_style_on_tablet: "usePhoneArticleStyleOnTablet"
+ use_phone_article_style_on_tablet: "usePhoneArticeStyleOnTablet",
+ hide_bylines: "hideBylinesList"
},
values: {
drawer: {
@@ -274983,7 +275007,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
}]);
}();
-},2113,[3,270,6,7,16,18,2114,2118,2122,2037,2129,2159,2049,2125,2123,2128,2126,2127,816,1920,438,819,179]);
+},2113,[3,270,6,7,16,18,2114,2118,2122,2037,2129,2160,2049,2125,2123,2128,2126,2127,816,1920,438,819,179]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -275385,6 +275409,10 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
key: "clearClassicLoginStatus",
value: function () {
var _clearClassicLoginStatus = (0, _asyncToGenerator2.default)(function* () {
+ if (!(yield LoginManager.databaseExists())) {
+ return false;
+ }
+
var _global$getActivePSet2 = global.getActivePSetup(),
udb = _global$getActivePSet2.udb;
@@ -275408,35 +275436,36 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
key: "checkClassicLoginStatus",
value: function () {
var _checkClassicLoginStatus = (0, _asyncToGenerator2.default)(function* (prefix) {
- var result = {};
-
- if (yield LoginManager.databaseExists()) {
- var query = "SELECT * FROM localstorage WHERE key LIKE '" + prefix + "_%'";
-
- try {
- var response = yield LoginManager.openTransaction(query, []);
-
- if (response && response.length > 0) {
- result = response.reduce(function (partial, entry) {
- var key = entry.key,
- value = entry.value;
-
- if (key && value !== undefined) {
- var name = key.replace(prefix + "_", "");
-
- if (name) {
- result[name] = value;
- }
- }
-
- return result;
- }, result);
- }
-
- yield LoginManager.closeDatabase();
- } catch (e) {}
+ if (!(yield LoginManager.databaseExists())) {
+ return {};
}
+ var result = {};
+ var query = "SELECT * FROM localstorage WHERE key LIKE '" + prefix + "_%'";
+
+ try {
+ var response = yield LoginManager.openTransaction(query, []);
+
+ if (!_$$_REQUIRE(_dependencyMap[20]).JSUtils.isEmpty(response)) {
+ result = response.reduce(function (partial, entry) {
+ var key = entry.key,
+ value = entry.value;
+
+ if (key && value !== undefined) {
+ var name = key.replace(prefix + "_", "");
+
+ if (name) {
+ result[name] = value;
+ }
+ }
+
+ return result;
+ }, result);
+ }
+
+ yield LoginManager.closeDatabase();
+ } catch (e) {}
+
return result;
});
@@ -278314,7 +278343,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
card: false
}
};
-},2129,[3,6,7,11,13,14,582,16,18,1947,588,436,881,2130,2157,2158,564,817,438,179,1919]);
+},2129,[3,6,7,11,13,14,582,16,18,1947,588,436,881,2130,2158,2159,564,817,438,179,1919]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -278517,7 +278546,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
var _default = exports.default = NativeAdTemplate;
-},2130,[3,16,18,2131,2147,2153,434,881,2137,179,819,2156,2143]);
+},2130,[3,16,18,2131,2148,2154,434,881,2137,179,819,2157,2144]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -278690,7 +278719,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
ImageComponent: undefined,
imageContainerStyle: undefined
};
-},2131,[3,6,7,11,13,14,16,18,582,2132,2136,2138,588,2143,438,179,819,2144,2142]);
+},2131,[3,6,7,11,13,14,16,18,582,2132,2136,2138,588,2144,438,179,819,2145,2143]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -278920,9 +278949,13 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
flexDirection: "column",
justifyContent: "space-between",
paddingVertical: _$$_REQUIRE(_dependencyMap[1]).CONTAINER_VERTICAL_PADDING
+ },
+ summary: {
+ color: _$$_REQUIRE(_dependencyMap[2]).colors.summary,
+ marginVertical: 5
}
});
-},2136,[18,2137]);
+},2136,[18,2137,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -278964,11 +278997,14 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
var _react = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[3]));
- var _doubleTextAutoMeasured = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[4]));
+ var _multiTextAutoMeasured = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[4]));
var _tilePreview = _interopRequireWildcard(_$$_REQUIRE(_dependencyMap[5]));
- var _excluded = ["title", "summary"];
+ var _excluded = ["title", "byline", "summary"],
+ _excluded2 = ["classes", "props"],
+ _excluded3 = ["classes"],
+ _excluded4 = ["classes"];
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
@@ -278976,29 +279012,328 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
function TilePreview(props) {
var title = props.title,
+ byline = props.byline,
summary = props.summary,
rest = (0, _objectWithoutProperties2.default)(props, _excluded);
- return (0, _$$_REQUIRE(_dependencyMap[6]).jsx)(_doubleTextAutoMeasured.default, Object.assign({}, rest, {
- top: title ? Object.assign({
- type: _$$_REQUIRE(_dependencyMap[7]).Type.medium
- }, title, {
- classes: ["tile-title"].concat((0, _toConsumableArray2.default)(title.classes || []))
- }) : undefined,
- bottom: summary ? Object.assign({}, summary, {
- classes: ["tile-summary"].concat((0, _toConsumableArray2.default)(summary.classes || []))
- }) : undefined,
+ var top;
+
+ if (!_$$_REQUIRE(_dependencyMap[6]).JSUtils.isEmpty(title)) {
+ var classes = title.classes,
+ titleProps = title.props,
+ restTitle = (0, _objectWithoutProperties2.default)(title, _excluded2);
+ top = Object.assign({}, restTitle, {
+ classes: ["tile-title"].concat((0, _toConsumableArray2.default)(classes || [])),
+ props: Object.assign({
+ type: _$$_REQUIRE(_dependencyMap[7]).Type.medium
+ }, titleProps)
+ });
+ }
+
+ var middle;
+
+ if (!_$$_REQUIRE(_dependencyMap[6]).JSUtils.isEmpty(byline)) {
+ var _classes = byline.classes,
+ restByline = (0, _objectWithoutProperties2.default)(byline, _excluded3);
+ middle = Object.assign({}, restByline, {
+ classes: ["tile-byline"].concat((0, _toConsumableArray2.default)(_classes || []))
+ });
+ }
+
+ var bottom;
+
+ if (!_$$_REQUIRE(_dependencyMap[6]).JSUtils.isEmpty(summary)) {
+ var _classes2 = summary.classes,
+ restSummary = (0, _objectWithoutProperties2.default)(summary, _excluded4);
+ bottom = Object.assign({}, restSummary, {
+ classes: ["tile-summary"].concat((0, _toConsumableArray2.default)(_classes2 || []))
+ });
+ }
+
+ return (0, _$$_REQUIRE(_dependencyMap[8]).jsx)(_multiTextAutoMeasured.default, Object.assign({}, rest, {
+ top: top,
+ middle: middle,
+ bottom: bottom,
containerStyle: _tilePreview.default.container,
topPadding: _tilePreview.TITLE_TOP_PADDING
}));
}
- TilePreview.propTypes = Object.assign({}, _doubleTextAutoMeasured.default.propTypes, {
- title: _doubleTextAutoMeasured.default.propTypes.top,
- summary: _doubleTextAutoMeasured.default.propTypes.bottom
+ TilePreview.propTypes = Object.assign({}, _multiTextAutoMeasured.default.propTypes, {
+ title: _multiTextAutoMeasured.default.propTypes.top,
+ summary: _multiTextAutoMeasured.default.propTypes.bottom
});
var _default = exports.default = TilePreview;
-},2138,[3,22,4,16,2139,2142,179,816]);
+},2138,[3,22,4,16,2139,2143,438,816,179]);
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ Object.defineProperty(exports, "__esModule", {
+ value: true
+ });
+ exports.default = undefined;
+
+ var _toConsumableArray2 = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[1]));
+
+ var _classCallCheck2 = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[2]));
+
+ var _createClass2 = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[3]));
+
+ var _possibleConstructorReturn2 = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[4]));
+
+ var _getPrototypeOf2 = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[5]));
+
+ var _inherits2 = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[6]));
+
+ var _propTypes = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[7]));
+
+ var _react = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[8]));
+
+ var _reactNative = _$$_REQUIRE(_dependencyMap[9]);
+
+ var _doubleTextAutoMeasured = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[10]));
+
+ var _doubleTextAutoMeasured2 = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[11]));
+
+ function _callSuper(t, o, e) { return o = (0, _getPrototypeOf2.default)(o), (0, _possibleConstructorReturn2.default)(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], (0, _getPrototypeOf2.default)(t).constructor) : o.apply(t, e)); }
+
+ function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
+
+ var MultiTextAutoMeasured = exports.default = function (_DoubleTextAutoMeasur) {
+ function MultiTextAutoMeasured(props) {
+ (0, _classCallCheck2.default)(this, MultiTextAutoMeasured);
+ return _callSuper(this, MultiTextAutoMeasured, [props, {
+ middleStyle: {},
+ middleProps: {}
+ }]);
+ }
+
+ (0, _inherits2.default)(MultiTextAutoMeasured, _DoubleTextAutoMeasur);
+ return (0, _createClass2.default)(MultiTextAutoMeasured, [{
+ key: "checkOverflow",
+ value: function checkOverflow() {
+ var _this$props = this.props,
+ verticalPaddingSize = _this$props.verticalPaddingSize,
+ topPadding = _this$props.topPadding,
+ top = _this$props.top,
+ bottom = _this$props.bottom,
+ middle = _this$props.middle;
+ var measured = this.state.measured;
+
+ if (!measured && this.parentHeight && this.topMeasure && (this.middleMeasure || !middle) && (this.bottomMeasure || !bottom)) {
+ var _this$topMeasure = this.topMeasure,
+ topMeasuredHeight = _this$topMeasure.measuredHeight,
+ topLineCount = _this$topMeasure.lineCount;
+ var totalVerticalPadding = verticalPaddingSize;
+ var availableHeight = this.parentHeight - totalVerticalPadding;
+ var maxTopLine = topMeasuredHeight > availableHeight ? Math.floor(availableHeight * topLineCount / topMeasuredHeight) : topLineCount;
+ var topHeight = Math.min(topMeasuredHeight, availableHeight);
+ var newState = {};
+ var spaceLeft = availableHeight - topHeight;
+ var middleHeight = 0;
+
+ if (middle) {
+ var _middle$props = middle.props,
+ props = _middle$props === undefined ? {} : _middle$props;
+ var _props$numberOfLines = props.numberOfLines,
+ middleNumberOfLines = _props$numberOfLines === undefined ? 0 : _props$numberOfLines;
+ var _this$middleMeasure = this.middleMeasure,
+ middleMeasuredHeight = _this$middleMeasure.measuredHeight,
+ middleLineCount = _this$middleMeasure.lineCount;
+ var maxMiddleLine = Math.floor(spaceLeft * middleLineCount / middleMeasuredHeight);
+
+ if (middleNumberOfLines > 0) {
+ maxMiddleLine = Math.min(middleNumberOfLines, maxMiddleLine);
+ }
+
+ if (middleNumberOfLines > 0 && maxMiddleLine < middleNumberOfLines) {
+ middleHeight = middleMeasuredHeight / middleLineCount * middleNumberOfLines;
+ topHeight = availableHeight - middleHeight;
+ maxMiddleLine = Math.min(middleNumberOfLines, middleLineCount);
+ } else if (maxMiddleLine > 0) {
+ middleHeight = middleMeasuredHeight / middleLineCount * maxMiddleLine;
+ }
+
+ if (maxMiddleLine > 0) {
+ spaceLeft -= middleHeight;
+ newState.middleStyle = {
+ maxHeight: middleHeight,
+ lineHeight: middleHeight / maxMiddleLine
+ };
+ newState.middleProps = {
+ numberOfLines: maxMiddleLine
+ };
+ } else {
+ newState.middleStyle = {
+ height: 0
+ };
+ }
+ }
+
+ if (bottom) {
+ var _bottom$props = bottom.props,
+ _props = _bottom$props === undefined ? {} : _bottom$props;
+
+ var _props$numberOfLines2 = _props.numberOfLines,
+ bottomNumberOfLines = _props$numberOfLines2 === undefined ? 0 : _props$numberOfLines2;
+ var _this$bottomMeasure = this.bottomMeasure,
+ bottomMeasuredHeight = _this$bottomMeasure.measuredHeight,
+ bottomLineCount = _this$bottomMeasure.lineCount;
+ var maxBottomLine = Math.floor(spaceLeft * bottomLineCount / bottomMeasuredHeight);
+
+ if (bottomNumberOfLines > 0) {
+ maxBottomLine = Math.min(bottomNumberOfLines, maxBottomLine);
+ }
+
+ var bottomHeight = 0;
+
+ if (bottomNumberOfLines > 0 && maxBottomLine < bottomNumberOfLines) {
+ bottomHeight = bottomMeasuredHeight / bottomLineCount * bottomNumberOfLines;
+ topHeight = availableHeight - bottomHeight - middleHeight;
+ maxBottomLine = Math.min(bottomNumberOfLines, bottomLineCount);
+ } else if (maxBottomLine > 0) {
+ bottomHeight = bottomMeasuredHeight / bottomLineCount * maxBottomLine;
+ }
+
+ if (maxBottomLine > 0) {
+ newState.bottomStyle = {
+ maxHeight: bottomHeight,
+ lineHeight: bottomHeight / maxBottomLine
+ };
+ newState.bottomProps = {
+ numberOfLines: maxBottomLine
+ };
+ } else {
+ newState.bottomStyle = {
+ height: 0
+ };
+ }
+ }
+
+ newState.topStyle = {
+ height: topHeight + (top.disablePadding ? 0 : topPadding)
+ };
+ newState.topProps = {
+ numberOfLines: maxTopLine
+ };
+ newState.measured = true;
+
+ if (this._isMounted && !this._handleWrap(newState)) {
+ this.setState(newState);
+ }
+ }
+ }
+ }, {
+ key: "render",
+ value: function render() {
+ var _this = this;
+
+ var _this$props2 = this.props,
+ top = _this$props2.top,
+ middle = _this$props2.middle,
+ bottom = _this$props2.bottom,
+ containerStyle = _this$props2.containerStyle,
+ topPadding = _this$props2.topPadding;
+ var _this$state = this.state,
+ middleProps = _this$state.middleProps,
+ middleStyle = _this$state.middleStyle,
+ bottomProps = _this$state.bottomProps,
+ bottomStyle = _this$state.bottomStyle;
+ var paddingStyles = top.disablePadding ? {} : topPadding;
+
+ var textEvaluated = this._getTopProps();
+
+ var topClasses = [];
+
+ if (top != null && top.classes) {
+ topClasses.push.apply(topClasses, (0, _toConsumableArray2.default)(top.classes));
+ }
+
+ var middleClasses = [];
+
+ if (middle != null && middle.classes) {
+ middleClasses.push.apply(middleClasses, (0, _toConsumableArray2.default)(middle.classes));
+ }
+
+ var bottomClasses = [];
+
+ if (bottom != null && bottom.classes) {
+ bottomClasses.push.apply(bottomClasses, (0, _toConsumableArray2.default)(bottom.classes));
+ }
+
+ if (middle != null && middle.nativeID) {
+ middleProps.nativeID = middle.nativeID;
+ }
+
+ if (bottom != null && bottom.nativeID) {
+ bottomProps.nativeID = bottom.nativeID;
+ }
+
+ return (0, _$$_REQUIRE(_dependencyMap[12]).jsxs)(_reactNative.View, {
+ style: [_doubleTextAutoMeasured2.default.container, containerStyle],
+ onLayout: function onLayout(_ref) {
+ var nativeEvent = _ref.nativeEvent;
+ _this.parentHeight = nativeEvent.layout.height;
+
+ _this.checkOverflow();
+ },
+ children: [(0, _$$_REQUIRE(_dependencyMap[12]).jsx)(_reactNative.View, {
+ style: top.parentStyle || {},
+ children: (0, _$$_REQUIRE(_dependencyMap[12]).jsx)(_$$_REQUIRE(_dependencyMap[13]).Css, {
+ classes: topClasses,
+ children: (0, _$$_REQUIRE(_dependencyMap[12]).jsx)(_$$_REQUIRE(_dependencyMap[14]).TextAutoMeasure, Object.assign({
+ style: [paddingStyles, top.style, textEvaluated.style],
+ onMeasured: function onMeasured(info) {
+ _this.topMeasure = info;
+
+ _this.checkOverflow();
+ },
+ text: top.text
+ }, textEvaluated.props))
+ })
+ }), middle ? (0, _$$_REQUIRE(_dependencyMap[12]).jsx)(_reactNative.View, {
+ style: middle.parentStyle || {},
+ children: (0, _$$_REQUIRE(_dependencyMap[12]).jsx)(_$$_REQUIRE(_dependencyMap[13]).Css, {
+ classes: middleClasses,
+ children: (0, _$$_REQUIRE(_dependencyMap[12]).jsx)(_$$_REQUIRE(_dependencyMap[14]).TextAutoMeasure, Object.assign({
+ style: [middle.style, middleStyle],
+ onMeasured: function onMeasured(info) {
+ _this.middleMeasure = info;
+
+ _this.checkOverflow();
+ },
+ text: middle.text
+ }, middleProps))
+ })
+ }) : null, bottom ? (0, _$$_REQUIRE(_dependencyMap[12]).jsx)(_reactNative.View, {
+ style: bottom.parentStyle || {},
+ children: (0, _$$_REQUIRE(_dependencyMap[12]).jsx)(_$$_REQUIRE(_dependencyMap[13]).Css, {
+ classes: bottomClasses,
+ children: (0, _$$_REQUIRE(_dependencyMap[12]).jsx)(_$$_REQUIRE(_dependencyMap[14]).TextAutoMeasure, Object.assign({
+ style: [bottom.style, bottomStyle],
+ onMeasured: function onMeasured(info) {
+ _this.bottomMeasure = info;
+
+ _this.checkOverflow();
+ },
+ text: bottom.text
+ }, bottomProps))
+ })
+ }) : null]
+ });
+ }
+ }]);
+ }(_doubleTextAutoMeasured.default);
+
+ MultiTextAutoMeasured.propTypes = Object.assign({}, _doubleTextAutoMeasured.default.propTypes, {
+ middle: _propTypes.default.shape({
+ text: _propTypes.default.string,
+ classes: _propTypes.default.array,
+ style: _propTypes.default.oneOfType([_propTypes.default.array, _propTypes.default.object, _propTypes.default.number]),
+ parentStyle: _propTypes.default.oneOfType([_propTypes.default.array, _propTypes.default.object, _propTypes.default.number]),
+ props: _propTypes.default.object,
+ nativeID: _propTypes.default.string
+ })
+ });
+},2139,[3,22,6,7,11,13,14,582,16,18,2140,2141,179,819,2142]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -279027,7 +279362,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
var _doubleTextAutoMeasured = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[11]));
- var _excluded = ["numberOfLines", "classes", "style", "text"],
+ var _excluded = ["numberOfLines"],
_excluded2 = ["numberOfLines"];
function _callSuper(t, o, e) { return o = (0, _getPrototypeOf2.default)(o), (0, _possibleConstructorReturn2.default)(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], (0, _getPrototypeOf2.default)(t).constructor) : o.apply(t, e)); }
@@ -279038,16 +279373,17 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
function DoubleTextAutoMeasured(props) {
var _this;
+ var state = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
(0, _classCallCheck2.default)(this, DoubleTextAutoMeasured);
_this = _callSuper(this, DoubleTextAutoMeasured, [props]);
_this._isMounted = true;
- _this.state = {
+ _this.state = Object.assign({
topStyle: {},
topProps: {},
bottomStyle: {},
bottomProps: {},
measured: false
- };
+ }, state);
return _this;
}
@@ -279109,16 +279445,21 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
var maxTopLine = this.topMeasure.measuredHeight > availableHeight ? Math.floor(availableHeight * this.topMeasure.lineCount / this.topMeasure.measuredHeight) : this.topMeasure.lineCount;
var topHeight = Math.min(this.topMeasure.measuredHeight, availableHeight);
var newState = {};
- newState.topStyle = {
- height: topHeight + (top.disablePadding ? 0 : topPadding)
- };
- newState.topProps = {
- numberOfLines: maxTopLine
- };
if (bottom) {
+ var _bottom$props = bottom.props,
+ props = _bottom$props === undefined ? {} : _bottom$props;
+ var _props$numberOfLines = props.numberOfLines,
+ bottomNumberOfLines = _props$numberOfLines === undefined ? 0 : _props$numberOfLines;
var bottomAvailableSpace = availableHeight - topHeight;
var maxBottomLine = Math.floor(bottomAvailableSpace * this.bottomMeasure.lineCount / this.bottomMeasure.measuredHeight);
+
+ if (bottomNumberOfLines > 0 && maxBottomLine < bottomNumberOfLines) {
+ bottomAvailableSpace = this.bottomMeasure.measuredHeight;
+ topHeight = availableHeight - bottomAvailableSpace;
+ maxBottomLine = Math.min(bottomNumberOfLines, this.bottomMeasure.lineCount);
+ }
+
newState.bottomStyle = {
maxHeight: bottomAvailableSpace,
lineHeight: bottomAvailableSpace / maxBottomLine
@@ -279128,6 +279469,12 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
}
+ newState.topStyle = {
+ height: topHeight + (top.disablePadding ? 0 : topPadding)
+ };
+ newState.topProps = {
+ numberOfLines: maxTopLine
+ };
newState.measured = true;
if (this._isMounted && !this._handleWrap(newState)) {
@@ -279138,17 +279485,15 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}, {
key: "_getTopProps",
value: function _getTopProps() {
- var _this$props$top = this.props.top,
- topDefaultProps = _this$props$top === undefined ? {} : _this$props$top;
+ var top = this.props.top;
+ var _top$props = top.props,
+ topDefaultProps = _top$props === undefined ? {} : _top$props;
var _this$state = this.state,
_this$state$topProps = _this$state.topProps,
topProps = _this$state$topProps === undefined ? {} : _this$state$topProps,
_this$state$topStyle = _this$state.topStyle,
topStyle = _this$state$topStyle === undefined ? {} : _this$state$topStyle;
var defaultNumberOfLines = topDefaultProps.numberOfLines,
- classes = topDefaultProps.classes,
- style = topDefaultProps.style,
- text = topDefaultProps.text,
restDefaultProps = (0, _objectWithoutProperties2.default)(topDefaultProps, _excluded);
var evaluatedNumberOfLines = topProps.numberOfLines,
restTopProps = (0, _objectWithoutProperties2.default)(topProps, _excluded2);
@@ -279276,7 +279621,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
topPadding: 0,
verticalPaddingSize: 0
};
-},2139,[3,22,4,6,7,11,13,14,582,16,18,2140,438,179,819,2141]);
+},2140,[3,22,4,6,7,11,13,14,582,16,18,2141,438,179,819,2142]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -279291,7 +279636,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
flexDirection: "column"
}
});
-},2140,[18]);
+},2141,[18]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -279445,7 +279790,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
TextAutoMeasure.defaultProps = {
numberOfLines: 1
};
-},2141,[3,4,270,6,7,11,13,14,582,16,816,438,179]);
+},2142,[3,4,270,6,7,11,13,14,582,16,816,438,179]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -279458,7 +279803,8 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
var _default = exports.default = _reactNative.StyleSheet.create({
container: {
- marginHorizontal: _$$_REQUIRE(_dependencyMap[1]).HORIZONTAL_MARGIN
+ marginHorizontal: _$$_REQUIRE(_dependencyMap[1]).HORIZONTAL_MARGIN,
+ justifyContent: "space-evenly"
},
title: {
textAlign: "left",
@@ -279476,7 +279822,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
justifyContent: "center"
}
});
-},2142,[18,2137,438]);
+},2143,[18,2137,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -279580,7 +279926,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
return _deviceUtils.default.isPortrait() ? itemsPerRowPortrait : itemsPerRowLandscape;
}
-},2143,[18,3,434,438,2137]);
+},2144,[18,3,434,438,2137]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -279595,7 +279941,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
});
});
-},2144,[2145]);
+},2145,[2146]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -279726,7 +280072,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
bgUrl: "",
hideBottomLine: false
};
-},2145,[3,6,7,11,13,14,16,18,582,2146,2143,819,179,438]);
+},2146,[3,6,7,11,13,14,16,18,582,2147,2144,819,179,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -279740,7 +280086,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
flex: 1
}
});
-},2146,[18]);
+},2147,[18]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -279875,7 +280221,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
BottomComponent: undefined,
ImageComponent: undefined
};
-},2147,[3,6,7,11,13,14,16,18,582,816,2148,2152,438,2143,2137,179,819,2144]);
+},2148,[3,6,7,11,13,14,16,18,582,816,2149,2153,438,2144,2137,179,819,2145]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -280094,6 +280440,10 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
this.homeCategory = yield this.getHomeCategory();
this.archiveSearchURL = yield this.getValue(keys.archive_search_url);
this.favoritesIconFromBBE = yield this.getValue(keys.favorites_icon);
+ var hideBylinesRaw = (yield this.getValue(keys.hide_bylines)) || "";
+ this.hideBylines = hideBylinesRaw.split(",").map(function (item) {
+ return item.trim();
+ });
} catch (e) {
return false;
}
@@ -280228,7 +280578,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
}]);
}();
-},2148,[3,270,6,7,2085,2149,438,1904,2151]);
+},2149,[3,270,6,7,2085,2150,438,1904,2152]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -280629,7 +280979,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
}]);
}();
-},2149,[3,270,22,6,7,2085,438,2150]);
+},2150,[3,270,22,6,7,2085,438,2151]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -280639,7 +280989,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
RSS: 1,
EPAPER: 2
};
-},2150,[]);
+},2151,[]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -280912,7 +281262,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
cssKey: "publications"
};
}
-},2151,[3,16,2085,2149,1785]);
+},2152,[3,16,2085,2150,1785]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -280967,7 +281317,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
bottom: 0
}
});
-},2152,[18,2137,438]);
+},2153,[18,2137,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -281130,7 +281480,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
BottomComponent: undefined,
ImageComponent: undefined
};
-},2153,[3,6,7,11,13,14,16,18,582,816,2154,2155,2143,179,819]);
+},2154,[3,6,7,11,13,14,16,18,582,816,2155,2156,2144,179,819]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -281178,6 +281528,11 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
},
textShadowRadius: 5
},
+ byline: {
+ start: 0,
+ margin: _$$_REQUIRE(_dependencyMap[2]).HORIZONTAL_MARGIN,
+ color: _$$_REQUIRE(_dependencyMap[1]).colors.summary
+ },
summary: {
start: 0,
fontSize: 20,
@@ -281191,7 +281546,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
marginEnd: 5
}
});
-},2154,[18,438,2137]);
+},2155,[18,438,2137]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -281418,18 +281773,18 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
height: 300,
blurRadius: 10
};
-},2155,[3,6,7,11,13,14,582,16,18,588,438,179]);
+},2156,[3,6,7,11,13,14,582,16,18,588,438,179]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.parsePriority = exports.getCategoryLabel = exports.formatResourcesToDTO = exports.formatResourceToDTO = exports.formatDate = exports.formatArticlesToDTO = exports.formatArticleToDTO = exports.formatAction = exports.decodeField = undefined;
- var _RssActionManager = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[1]));
+ var _navigationUtils = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[1]));
var _Resource = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[2]));
- var _navigationUtils = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[3]));
+ var _RssActionManager = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[3]));
var formatAction = exports.formatAction = function formatAction(action) {
var actionManager = new _RssActionManager.default();
@@ -281522,13 +281877,19 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
var formatArticleToDTO = exports.formatArticleToDTO = function formatArticleToDTO(article) {
+ var _global$getRssIndex2 = global.getRssIndex(),
+ hideBylines = _global$getRssIndex2.hideBylines;
+
var mArticle = new (_$$_REQUIRE(_dependencyMap[5]).Article)();
mArticle.position = article.pl_id ? article.pl_id : undefined;
mArticle.feedId = article.ar_feedId ? article.ar_feedId : undefined;
mArticle.categoryId = article.ca_id ? article.ca_id : undefined;
mArticle.action = formatAction(article.ar_action);
mArticle.priority = article.pl_priority ? parsePriority(article.pl_priority) : undefined;
- mArticle.byline = decodeField(article.ar_byline);
+ var byline = decodeField(article.ar_byline);
+ mArticle.byline = byline && hideBylines.some(function (hiddenByline) {
+ return hiddenByline.toLowerCase() === byline.toLowerCase();
+ }) ? "" : byline;
mArticle.category = getCategoryLabel(article.ca_label);
mArticle.summary = decodeField(article.ar_summary);
mArticle.title = decodeField(article.ar_title);
@@ -281582,7 +281943,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
return formatResourceToDTO(resource);
});
};
-},2156,[3,2086,2094,2149,438,2093,2016]);
+},2157,[3,2150,2094,2086,438,2093,2016]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -281791,7 +282152,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
var _default = exports.default = NativeVideoAdTemplate;
-},2157,[3,16,18,2153,2147,2131,434,881,2137,179,819,2156]);
+},2158,[3,16,18,2154,2148,2131,434,881,2137,179,819,2157]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -281915,7 +282276,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
var _default = exports.default = StandardDisplayAdTemplate;
-},2158,[3,16,18,2131,881,2137,2153,179,819,2143]);
+},2159,[3,16,18,2131,881,2137,2154,179,819,2144]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -282240,7 +282601,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
navigation: navigation
}));
};
-},2159,[3,6,7,11,13,14,582,16,18,1947,436,1932,434,1985,868,564,1989,2156,438,2151,2160,179,1980,1984,928]);
+},2160,[3,6,7,11,13,14,582,16,18,1947,436,1930,434,1985,868,564,1989,2157,438,2152,2161,179,1980,1984,928]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -282537,7 +282898,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
} catch (e) {}
}
-},2160,[3,270,2161,2085,1943,2149,881,1985,1947,2165,438,1986,2164,2151,928,880]);
+},2161,[3,270,2162,2085,1943,2150,881,1985,1947,2166,438,1986,2165,2152,928,880]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -283151,7 +283512,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
RssContentHelper.ERROR = -1;
RssContentHelper.NO_NEW_ITEMS_AVAILABLE = 0;
RssContentHelper.NEW_ITEMS_AVAILABLE = 1;
-},2161,[3,270,6,7,436,586,566,2094,2162,2067,2163,2068,564,438,2164]);
+},2162,[3,270,6,7,436,586,566,2094,2163,2067,2164,2068,564,438,2165]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -283181,7 +283542,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
});
return _getJsonDbUpdate.apply(this, arguments);
}
-},2162,[3,270,408]);
+},2163,[3,270,408]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -283622,7 +283983,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
version: 29400,
queries: ["CREATE TABLE IF NOT EXISTS resource ( re_id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, re_typeId INTEGER NOT NULL, re_value TEXT NOT NULL );", "CREATE TABLE IF NOT EXISTS resource_rel ( rr_id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, rr_feedId INTEGER NOT NULL, rr_resourceId INTEGER NOT NULL );", "CREATE TABLE IF NOT EXISTS resource_type ( rt_id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, rt_name VARCHAR(255) );"]
}];
-},2163,[3,270,6,7,861,566,438,2156]);
+},2164,[3,270,6,7,861,566,438,2157]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -283827,7 +284188,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
}
};
-},2164,[3,4,1925,2151,1926,438,1919]);
+},2165,[3,4,1925,2152,1926,438,1919]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -283889,7 +284250,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}()
}]);
}();
-},2165,[3,6,7,270,814,438]);
+},2166,[3,6,7,270,814,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -283949,7 +284310,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
}]);
}();
-},2166,[3,270,6,7,2167,2170,2171,2172]);
+},2167,[3,270,6,7,2168,2171,2172,2173]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -283981,7 +284342,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
(0, _inherits2.default)(JobConfig, _VerticalConfig);
return (0, _createClass2.default)(JobConfig);
}(_$$_REQUIRE(_dependencyMap[7]).VerticalConfig);
-},2167,[3,7,6,11,13,14,436,2168]);
+},2168,[3,7,6,11,13,14,436,2169]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -284180,7 +284541,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
}]);
}();
-},2168,[3,270,6,7,2169,438,564]);
+},2169,[3,270,6,7,2170,438,564]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
!function (e) {
if ("object" == typeof exports) module.exports = e();else if ("function" == typeof define && define.amd) define(e);else {
@@ -285510,7 +285871,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}]
}, {}, [1])(1);
});
-},2169,[]);
+},2170,[]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -285542,7 +285903,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
(0, _inherits2.default)(RealEstateConfig, _VerticalConfig);
return (0, _createClass2.default)(RealEstateConfig);
}(_$$_REQUIRE(_dependencyMap[7]).VerticalConfig);
-},2170,[3,7,6,11,13,14,436,2168]);
+},2171,[3,7,6,11,13,14,436,2169]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -285574,7 +285935,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
(0, _inherits2.default)(AutoConfig, _VerticalConfig);
return (0, _createClass2.default)(AutoConfig);
}(_$$_REQUIRE(_dependencyMap[7]).VerticalConfig);
-},2171,[3,7,6,11,13,14,436,2168]);
+},2172,[3,7,6,11,13,14,436,2169]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -285606,7 +285967,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
(0, _inherits2.default)(EventsConfig, _VerticalConfig);
return (0, _createClass2.default)(EventsConfig);
}(_$$_REQUIRE(_dependencyMap[7]).VerticalConfig);
-},2172,[3,7,6,11,13,14,436,2168]);
+},2173,[3,7,6,11,13,14,436,2169]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -285728,7 +286089,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}()
}]);
}();
-},2173,[3,270,6,7,2174,2085,2148,438]);
+},2174,[3,270,6,7,2175,2085,2149,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -285775,7 +286136,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}()
}]);
}();
-},2174,[3,270,6,7,2175,2176]);
+},2175,[3,270,6,7,2176,2177]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -285841,7 +286202,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
});
return _getDataFromApiResponse.apply(this, arguments);
}
-},2175,[3,270,407]);
+},2176,[3,270,407]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -285918,7 +286279,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
return {};
}
-},2176,[2177]);
+},2177,[2178]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
function DOMParser(options) {
this.options = options || {
@@ -286142,7 +286503,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
exports.XMLSerializer = _$$_REQUIRE(_dependencyMap[2]).XMLSerializer;
exports.DOMParser = DOMParser;
exports.__DOMHandler = DOMHandler;
-},2177,[2178,2179,2180]);
+},2178,[2179,2180,2181]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
var nameStartChar = /[A-Z_a-z\xC0-\xD6\xD8-\xF6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]/;
var nameChar = new RegExp("[\\-\\.0-9" + nameStartChar.source.slice(1, -1) + "\\u00B7\\u0300-\\u036F\\u203F-\\u2040]");
@@ -286817,7 +287178,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
exports.XMLReader = XMLReader;
exports.ParseError = ParseError;
-},2178,[]);
+},2179,[]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
exports.entityMap = {
lt: '<',
@@ -287062,7 +287423,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
hearts: "♥",
diams: "♦"
};
-},2179,[]);
+},2180,[]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
function copy(src, dest) {
for (var p in src) {
@@ -288375,7 +288736,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
exports.DOMException = DOMException;
exports.DOMImplementation = DOMImplementation;
exports.XMLSerializer = XMLSerializer;
-},2180,[]);
+},2181,[]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -288897,7 +289258,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
var _global$getRssIndex = global.getRssIndex(),
availableLayouts = _global$getRssIndex.availableLayouts;
- if (availableLayouts && availableLayouts.length > 0) {
+ if (!_$$_REQUIRE(_dependencyMap[10]).JSUtils.isEmpty(availableLayouts)) {
var splitted = availableLayouts.split(",");
this.layoutsAvailable = this.layoutsAvailable.filter(function (_ref) {
var id = _ref.id;
@@ -289208,7 +289569,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}()
}]);
}();
-},2181,[3,270,6,7,2182,436,1966,2183,2203,2231,438,817,564,814]);
+},2182,[3,270,6,7,2183,436,1966,2184,2205,2233,438,817,564,814]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -289379,7 +289740,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
}
};
-},2182,[3,270,6,7,438]);
+},2183,[3,270,6,7,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -289400,21 +289761,21 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
var _reactNative = _$$_REQUIRE(_dependencyMap[7]);
- var _card = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[8]));
+ var _deviceUtils = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[8]));
- var _cardHalfbox = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[9]));
+ var _cardDailymotion = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[9]));
- var _cardNativeAd = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[10]));
+ var _cardEpaper = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[10]));
- var _cardWebAd = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[11]));
+ var _cardHalfbox = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[11]));
- var _cardEpaper = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[12]));
+ var _cardNativeAd = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[12]));
- var _deviceUtils = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[13]));
+ var _cardSchedule = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[13]));
- var _cardDailymotion = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[14]));
+ var _cardWebAd = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[14]));
- var _cardSchedule = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[15]));
+ var _card = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[15]));
function _callSuper(t, o, e) { return o = (0, _getPrototypeOf2.default)(o), (0, _possibleConstructorReturn2.default)(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], (0, _getPrototypeOf2.default)(t).constructor) : o.apply(t, e)); }
@@ -289568,6 +289929,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}));
}
} else {
+ var otherProps = {};
var CardComponent;
if (item.isHalfBox) {
@@ -289580,14 +289942,15 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
CardComponent = _cardDailymotion.default;
} else {
CardComponent = _card.default;
+ otherProps.hideByline = settings.showBylineInCardAndListMode === undefined || settings.showBylineInCardAndListMode === "0";
}
- result = (0, _$$_REQUIRE(_dependencyMap[18]).jsx)(CardComponent, {
+ result = (0, _$$_REQUIRE(_dependencyMap[18]).jsx)(CardComponent, Object.assign({
item: item,
onPress: function onPress() {
_this2._onItemClick(items, item);
}
- });
+ }, otherProps));
}
}
@@ -289613,44 +289976,46 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
navigation: navigation
}));
};
-},2183,[3,6,7,11,13,14,16,18,2184,2192,2194,2196,2197,434,2199,2201,438,2143,179,2189,2017,2203,928]);
+},2184,[3,6,7,11,13,14,16,18,434,2185,2195,2197,2199,2201,2203,2204,438,2144,179,2192,2017,2205,928]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = undefined;
- var _classCallCheck2 = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[1]));
+ var _objectWithoutProperties2 = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[1]));
- var _createClass2 = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[2]));
+ var _classCallCheck2 = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[2]));
- var _possibleConstructorReturn2 = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[3]));
+ var _createClass2 = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[3]));
- var _getPrototypeOf2 = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[4]));
+ var _possibleConstructorReturn2 = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[4]));
- var _inherits2 = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[5]));
+ var _getPrototypeOf2 = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[5]));
- var _propTypes = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[6]));
+ var _inherits2 = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[6]));
- var _react = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[7]));
+ var _propTypes = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[7]));
- var _reactNative = _$$_REQUIRE(_dependencyMap[8]);
+ var _react = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[8]));
- var _reactNativeLinearGradient = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[9]));
+ var _reactNative = _$$_REQUIRE(_dependencyMap[9]);
var _RssActionManager = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[10]));
- var _blurImageComponent = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[11]));
+ var _events = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[11]));
var _fontText = _interopRequireWildcard(_$$_REQUIRE(_dependencyMap[12]));
var _baseTileImage = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[13]));
- var _iconGallery = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[14]));
+ var _card = _interopRequireWildcard(_$$_REQUIRE(_dependencyMap[14]));
- var _tileHeader = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[15]));
+ var _dailymotionVideoPlayerComponent = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[15]));
- var _card = _interopRequireWildcard(_$$_REQUIRE(_dependencyMap[16]));
+ var _tileHeader = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[16]));
+
+ var _excluded = ["item", "style"];
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
@@ -289660,26 +290025,41 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
- var Card = function (_React$PureComponent) {
- function Card(props) {
+ var CardDailymotion = function (_React$Component) {
+ function CardDailymotion(props) {
var _this;
- (0, _classCallCheck2.default)(this, Card);
- _this = _callSuper(this, Card, [props]);
+ (0, _classCallCheck2.default)(this, CardDailymotion);
+ _this = _callSuper(this, CardDailymotion, [props]);
_this.fontSize = _$$_REQUIRE(_dependencyMap[17]).FONT_SIZE.TEXT();
_this.fontSizeTitle = _$$_REQUIRE(_dependencyMap[17]).FONT_SIZE.TITLE();
+ _this.mounted = false;
return _this;
}
- (0, _inherits2.default)(Card, _React$PureComponent);
- return (0, _createClass2.default)(Card, [{
+ (0, _inherits2.default)(CardDailymotion, _React$Component);
+ return (0, _createClass2.default)(CardDailymotion, [{
+ key: "componentDidMount",
+ value: function componentDidMount() {
+ this.mounted = true;
+ }
+ }, {
+ key: "componentWillUnmount",
+ value: function componentWillUnmount() {
+ this.mounted = false;
+ }
+ }, {
key: "_getCategoryAndDate",
value: function _getCategoryAndDate() {
var item = this.props.item;
- var parentContainer = _$$_REQUIRE(_dependencyMap[18]).Css.getStyleObjByCssClasses(["tile-header", "tile-card-header"]);
+ var parentContainer = _$$_REQUIRE(_dependencyMap[18]).Css.getStyleObjByCssClasses(["tile-card-header"], {
+ cssKey: "dailymotion"
+ });
- var textContainer = _$$_REQUIRE(_dependencyMap[18]).Css.getStyleObjByCssClasses(["tile-header-text", "tile-card-header-text"]);
+ var textContainer = _$$_REQUIRE(_dependencyMap[18]).Css.getStyleObjByCssClasses(["tile-card-header-text"], {
+ cssKey: "dailymotion"
+ });
return (0, _$$_REQUIRE(_dependencyMap[19]).jsx)(_tileHeader.default, {
parentStyle: [{
@@ -289702,68 +290082,47 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}, {
key: "render",
value: function render() {
+ var _this2 = this;
+
var _this$props = this.props,
item = _this$props.item,
- onPress = _this$props.onPress;
+ style = _this$props.style,
+ rest = (0, _objectWithoutProperties2.default)(_this$props, _excluded);
var itemAction = item.action;
+ var commonProps = Object.assign({
+ onRef: function onRef(ref) {
+ _$$_REQUIRE(_dependencyMap[21]).EventRegister.on(_events.default.ON_RSS_BASE_SCREEN_BLUR, function () {
+ if (ref && _this2.mounted) {
+ ref.pause();
+ }
+ });
+ },
+ video: item.gallery[0]
+ }, rest);
- var _global$getRssIndex = global.getRssIndex(),
- gridTitleMaxLines = _global$getRssIndex.gridTitleMaxLines;
-
- var others = {};
-
- if (gridTitleMaxLines >= 0) {
- others.numberOfLines = gridTitleMaxLines;
+ if (item.isHighlightedBox) {
+ return (0, _$$_REQUIRE(_dependencyMap[19]).jsx)(_dailymotionVideoPlayerComponent.default, Object.assign({}, commonProps, {
+ style: style
+ }));
}
return (0, _$$_REQUIRE(_dependencyMap[19]).jsx)(_$$_REQUIRE(_dependencyMap[18]).Css, {
classes: ["tile", "tile-card"],
- children: (0, _$$_REQUIRE(_dependencyMap[19]).jsx)(_$$_REQUIRE(_dependencyMap[21]).CardParent, {
- onPress: onPress,
+ cssKey: "dailymotion",
+ children: (0, _$$_REQUIRE(_dependencyMap[19]).jsx)(_$$_REQUIRE(_dependencyMap[22]).CardParent, {
children: (0, _$$_REQUIRE(_dependencyMap[19]).jsxs)(_reactNative.View, {
style: {
flexDirection: "column"
},
- children: [item.image && !itemAction.hasPropertyHideImageInCardMode() ? (0, _$$_REQUIRE(_dependencyMap[19]).jsxs)(_reactNative.View, {
- children: [(0, _$$_REQUIRE(_dependencyMap[19]).jsx)(_$$_REQUIRE(_dependencyMap[18]).Css, {
- classes: ["rss-image-blur", "tile-card-image-blur"],
- children: (0, _$$_REQUIRE(_dependencyMap[19]).jsx)(_blurImageComponent.default, {
- image: item.image,
- style: _card.default.image,
- height: _card.IMAGE_HEIGHT
- })
- }), itemAction.hasPropertyTitleOnImageInCardMode() ? (0, _$$_REQUIRE(_dependencyMap[19]).jsx)(_reactNativeLinearGradient.default, {
- style: _card.default.gradient,
- colors: [_$$_REQUIRE(_dependencyMap[20]).colors.transparent, _$$_REQUIRE(_dependencyMap[20]).colors.transparent, _$$_REQUIRE(_dependencyMap[20]).colors.transparent200]
- }) : null, itemAction.hasPropertyTitleOnImageInCardMode() ? (0, _$$_REQUIRE(_dependencyMap[19]).jsx)(_reactNative.View, {
- children: (0, _$$_REQUIRE(_dependencyMap[19]).jsx)(_$$_REQUIRE(_dependencyMap[18]).Css, {
- classes: ["tile-title", "card-title", "tile-card-title"],
- children: (0, _$$_REQUIRE(_dependencyMap[19]).jsx)(_fontText.default, Object.assign({
- style: [_card.default.titleOverImage, {
- fontSize: this.fontSizeTitle
- }],
- type: _fontText.Type.medium
- }, others, {
- children: item.title
- }))
- })
- }) : null, (0, _$$_REQUIRE(_dependencyMap[19]).jsx)(_$$_REQUIRE(_dependencyMap[18]).Css, {
- classes: ["tile-card-icons-parent"],
- children: (0, _$$_REQUIRE(_dependencyMap[19]).jsx)(_reactNative.View, {
- style: {
- position: "absolute",
- top: 5,
- end: 0
- },
- children: (0, _$$_REQUIRE(_dependencyMap[19]).jsx)(_iconGallery.default, {
- item: item,
- inline: true
- })
- })
- })]
- }) : null, !itemAction.hasPropertyTitleOnImageInCardMode() && item.title ? (0, _$$_REQUIRE(_dependencyMap[19]).jsx)(_reactNative.View, {
+ children: [(0, _$$_REQUIRE(_dependencyMap[19]).jsx)(_dailymotionVideoPlayerComponent.default, Object.assign({}, commonProps, {
+ style: [{
+ width: "100%",
+ height: _card.IMAGE_HEIGHT
+ }, style]
+ })), (0, _$$_REQUIRE(_dependencyMap[19]).jsx)(_reactNative.View, {
children: (0, _$$_REQUIRE(_dependencyMap[19]).jsx)(_$$_REQUIRE(_dependencyMap[18]).Css, {
classes: ["tile-title", "card-title", "tile-card-title"],
+ cssKey: "dailymotion",
children: (0, _$$_REQUIRE(_dependencyMap[19]).jsx)(_fontText.default, {
style: [_card.default.title, {
fontSize: this.fontSizeTitle
@@ -289772,9 +290131,10 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
children: item.title
})
})
- }) : null, !itemAction.hasPropertyHideSummaryInCardMode() && item.summary ? (0, _$$_REQUIRE(_dependencyMap[19]).jsx)(_reactNative.View, {
+ }), !itemAction.hasPropertyHideSummaryInCardMode() ? (0, _$$_REQUIRE(_dependencyMap[19]).jsx)(_reactNative.View, {
children: (0, _$$_REQUIRE(_dependencyMap[19]).jsx)(_$$_REQUIRE(_dependencyMap[18]).Css, {
classes: ["tile-summary", "card-summary", "tile-card-summary"],
+ cssKey: "dailymotion",
children: (0, _$$_REQUIRE(_dependencyMap[19]).jsx)(_fontText.default, {
style: [_card.default.summary, {
fontSize: this.fontSize
@@ -289788,26 +290148,107 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
});
}
}]);
- }(_react.default.PureComponent);
+ }(_react.default.Component);
- Card.propTypes = {
+ CardDailymotion.propTypes = {
onPress: _propTypes.default.func,
item: _propTypes.default.shape({
title: _propTypes.default.string,
image: _propTypes.default.string,
thumbnail: _propTypes.default.string,
action: _propTypes.default.instanceOf(_RssActionManager.default),
- summary: _propTypes.default.string
- })
+ summary: _propTypes.default.string,
+ gallery: _propTypes.default.array,
+ isHighlightedBox: _propTypes.default.bool
+ }),
+ style: _propTypes.default.oneOfType([_propTypes.default.object, _propTypes.default.number, _propTypes.default.array])
};
var _default = exports.default = function _default(props) {
- var navigation = (0, _$$_REQUIRE(_dependencyMap[22]).useNavigation)();
- return (0, _$$_REQUIRE(_dependencyMap[19]).jsx)(Card, Object.assign({}, props, {
+ var navigation = (0, _$$_REQUIRE(_dependencyMap[23]).useNavigation)();
+ return (0, _$$_REQUIRE(_dependencyMap[19]).jsx)(CardDailymotion, Object.assign({}, props, {
navigation: navigation
}));
};
-},2184,[3,6,7,11,13,14,582,16,18,1379,2086,2155,816,2137,2132,2185,2154,2143,819,179,438,2189,928]);
+},2185,[3,4,6,7,11,13,14,582,16,18,2086,436,816,2137,2155,2186,2187,2144,819,179,438,564,2192,928]);
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ Object.defineProperty(exports, "__esModule", {
+ value: true
+ });
+ exports.default = undefined;
+
+ var _objectWithoutProperties2 = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[1]));
+
+ var _propTypes = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[2]));
+
+ var _react = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[3]));
+
+ var _cmpUtils = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[4]));
+
+ var _optionalPackageUtils = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[5]));
+
+ var _excluded = ["video", "onRef", "progressColor"];
+
+ function DailymotionVideoPlayerComponent(props) {
+ var video = props.video,
+ onRef = props.onRef,
+ progressColor = props.progressColor,
+ rest = (0, _objectWithoutProperties2.default)(props, _excluded);
+ var action = video.action,
+ url = video.url,
+ playerId = video.playerId;
+
+ var _OptionalPackages$get = _optionalPackageUtils.default.getDailymotionVideoPlayer(),
+ DailymotionVideoPlayer = _OptionalPackages$get.Player;
+
+ if (!DailymotionVideoPlayer) {
+ return null;
+ }
+
+ if (!playerId) {
+ return null;
+ }
+
+ var playerData = {
+ playerId: playerId,
+ allowIDFA: _cmpUtils.default.isAdTrackingAllowed()
+ };
+
+ if (action && action === "dailymotionPlaylist") {
+ playerData.playlist = url;
+ } else {
+ playerData.video = url;
+ }
+
+ var style = _$$_REQUIRE(_dependencyMap[6]).Css.getStyleObjByCssClasses(["progress-circle"], {
+ cssKey: "dailymotion"
+ });
+
+ var color = _$$_REQUIRE(_dependencyMap[7]).CssUtils.getAttributeFromStyle("color", style, progressColor);
+
+ return (0, _$$_REQUIRE(_dependencyMap[8]).jsx)(DailymotionVideoPlayer, Object.assign({
+ ref: function ref(_ref) {
+ if (typeof onRef === "function") {
+ onRef(_ref);
+ }
+ },
+ playerData: playerData,
+ progressColor: color
+ }, rest));
+ }
+
+ DailymotionVideoPlayerComponent.propTypes = {
+ video: _propTypes.default.object.isRequired,
+ style: _propTypes.default.object,
+ progressColor: _propTypes.default.string,
+ onRef: _propTypes.default.func
+ };
+ DailymotionVideoPlayerComponent.defaultProps = {
+ progressColor: _$$_REQUIRE(_dependencyMap[6]).Css.getDefaultForegroundColor()
+ };
+
+ var _default = exports.default = DailymotionVideoPlayerComponent;
+},2186,[3,4,582,16,1930,881,819,438,179]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -290119,7 +290560,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
navigation: navigation
}));
};
-},2185,[3,6,7,11,13,14,582,16,18,2086,2186,816,588,2132,438,819,179,2134,2187,2090,928]);
+},2187,[3,6,7,11,13,14,582,16,18,2086,2188,816,588,2132,438,819,179,2134,2189,2090,928]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -290303,7 +290744,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
navigation: navigation
}));
};
-},2186,[3,6,7,11,13,14,582,16,18,1861,2134,819,438,179,928]);
+},2188,[3,6,7,11,13,14,582,16,18,1861,2134,819,438,179,928]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -290383,7 +290824,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
TilePremiumIcon.defaultProps = {
show: false
};
-},2187,[3,6,7,11,13,14,16,582,588,179,2188]);
+},2189,[3,6,7,11,13,14,16,582,588,179,2190]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -290396,11 +290837,11 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
icon: {
width: 18,
height: 18,
- marginStart: 4,
+ marginStart: _$$_REQUIRE(_dependencyMap[1]).HORIZONTAL_MARGIN,
alignSelf: "center"
}
});
-},2188,[18]);
+},2190,[18,2191]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -290415,7 +290856,22 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
});
});
-},2189,[2190]);
+},2191,[2137]);
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ Object.defineProperty(exports, "__esModule", {
+ value: true
+ });
+ Object.keys(_$$_REQUIRE(_dependencyMap[0])).forEach(function (key) {
+ if (key === "default" || key === "__esModule") return;
+ if (key in exports && exports[key] === _$$_REQUIRE(_dependencyMap[0])[key]) return;
+ Object.defineProperty(exports, key, {
+ enumerable: true,
+ get: function get() {
+ return _$$_REQUIRE(_dependencyMap[0])[key];
+ }
+ });
+ });
+},2192,[2193]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -290475,7 +290931,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
style: _propTypes.default.any,
borderStyle: _propTypes.default.any
};
-},2190,[3,16,18,582,2191,2143,179,438,819]);
+},2193,[3,16,18,582,2194,2144,179,438,819]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -290494,7 +290950,210 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
borderRadius: _$$_REQUIRE(_dependencyMap[1]).CARD_RADIUS
}
});
-},2191,[18,2143]);
+},2194,[18,2144]);
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ Object.defineProperty(exports, "__esModule", {
+ value: true
+ });
+ exports.default = undefined;
+
+ var _classCallCheck2 = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[1]));
+
+ var _createClass2 = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[2]));
+
+ var _possibleConstructorReturn2 = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[3]));
+
+ var _getPrototypeOf2 = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[4]));
+
+ var _inherits2 = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[5]));
+
+ var _propTypes = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[6]));
+
+ var _react = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[7]));
+
+ var _reactNative = _$$_REQUIRE(_dependencyMap[8]);
+
+ var _reactNativeLinearGradient = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[9]));
+
+ var _RssActionManager = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[10]));
+
+ var _blurImageComponent = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[11]));
+
+ var _fontText = _interopRequireWildcard(_$$_REQUIRE(_dependencyMap[12]));
+
+ var _cardEpaper = _interopRequireWildcard(_$$_REQUIRE(_dependencyMap[13]));
+
+ function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
+
+ function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
+
+ function _callSuper(t, o, e) { return o = (0, _getPrototypeOf2.default)(o), (0, _possibleConstructorReturn2.default)(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], (0, _getPrototypeOf2.default)(t).constructor) : o.apply(t, e)); }
+
+ function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
+
+ var CardEpaper = function (_React$PureComponent) {
+ function CardEpaper(props) {
+ var _this;
+
+ (0, _classCallCheck2.default)(this, CardEpaper);
+ _this = _callSuper(this, CardEpaper, [props]);
+ _this.fontSize = _$$_REQUIRE(_dependencyMap[14]).FONT_SIZE.TEXT();
+ _this.fontSizeTitle = _$$_REQUIRE(_dependencyMap[14]).FONT_SIZE.TITLE();
+ return _this;
+ }
+
+ (0, _inherits2.default)(CardEpaper, _React$PureComponent);
+ return (0, _createClass2.default)(CardEpaper, [{
+ key: "_getImage",
+ value: function _getImage(_ref) {
+ var image = _ref.image;
+ return (0, _$$_REQUIRE(_dependencyMap[15]).jsx)(_$$_REQUIRE(_dependencyMap[16]).Css, {
+ classes: ["rss-image-blur", "title-image", "tile-card-image", "tile-card-image-epaper"],
+ children: (0, _$$_REQUIRE(_dependencyMap[15]).jsx)(_blurImageComponent.default, {
+ image: image,
+ style: _cardEpaper.default.image,
+ height: _cardEpaper.IMAGE_HEIGHT
+ })
+ });
+ }
+ }, {
+ key: "render",
+ value: function render() {
+ var _this$props = this.props,
+ item = _this$props.item,
+ onPress = _this$props.onPress;
+ var itemAction = item.action;
+
+ var _global$getRssIndex = global.getRssIndex(),
+ gridTitleMaxLines = _global$getRssIndex.gridTitleMaxLines;
+
+ var others = {};
+
+ if (gridTitleMaxLines >= 0) {
+ others.numberOfLines = gridTitleMaxLines;
+ }
+
+ return (0, _$$_REQUIRE(_dependencyMap[15]).jsx)(_$$_REQUIRE(_dependencyMap[16]).Css, {
+ classes: ["tile-epaper", "tile-card-epaper"],
+ children: (0, _$$_REQUIRE(_dependencyMap[15]).jsx)(_$$_REQUIRE(_dependencyMap[17]).CardParent, {
+ onPress: onPress,
+ children: (0, _$$_REQUIRE(_dependencyMap[15]).jsxs)(_reactNative.View, {
+ style: {
+ flexDirection: "column"
+ },
+ children: [item.image && !itemAction.hasPropertyHideImageInCardMode() ? (0, _$$_REQUIRE(_dependencyMap[15]).jsxs)(_reactNative.View, {
+ children: [this._getImage(item), itemAction.hasPropertyTitleOnImageInCardMode() ? (0, _$$_REQUIRE(_dependencyMap[15]).jsx)(_reactNativeLinearGradient.default, {
+ style: _cardEpaper.default.gradient,
+ colors: [_$$_REQUIRE(_dependencyMap[18]).colors.transparent, _$$_REQUIRE(_dependencyMap[18]).colors.transparent, _$$_REQUIRE(_dependencyMap[18]).colors.transparent200]
+ }) : null, itemAction.hasPropertyTitleOnImageInCardMode() ? (0, _$$_REQUIRE(_dependencyMap[15]).jsx)(_reactNative.View, {
+ children: (0, _$$_REQUIRE(_dependencyMap[15]).jsx)(_$$_REQUIRE(_dependencyMap[16]).Css, {
+ classes: ["card-title", "tile-card-title", "tile-card-title-epaper"],
+ children: (0, _$$_REQUIRE(_dependencyMap[15]).jsx)(_fontText.default, Object.assign({
+ style: [_cardEpaper.default.titleOverImage, {
+ fontSize: this.fontSizeTitle
+ }],
+ type: _fontText.Type.medium
+ }, others, {
+ children: item.title
+ }))
+ })
+ }) : null]
+ }) : null, !itemAction.hasPropertyTitleOnImageInCardMode() ? (0, _$$_REQUIRE(_dependencyMap[15]).jsx)(_$$_REQUIRE(_dependencyMap[16]).Css, {
+ classes: ["card-title", "tile-card-title", "tile-card-title-epaper"],
+ children: (0, _$$_REQUIRE(_dependencyMap[15]).jsx)(_fontText.default, {
+ style: [_cardEpaper.default.title, {
+ fontSize: this.fontSizeTitle
+ }],
+ type: _fontText.Type.medium,
+ children: item.title
+ })
+ }) : null]
+ })
+ })
+ });
+ }
+ }]);
+ }(_react.default.PureComponent);
+
+ CardEpaper.propTypes = {
+ onPress: _propTypes.default.func,
+ item: _propTypes.default.shape({
+ title: _propTypes.default.string,
+ image: _propTypes.default.string,
+ thumbnail: _propTypes.default.string,
+ action: _propTypes.default.instanceOf(_RssActionManager.default),
+ summary: _propTypes.default.string
+ })
+ };
+
+ var _default = exports.default = function _default(props) {
+ var navigation = (0, _$$_REQUIRE(_dependencyMap[19]).useNavigation)();
+ return (0, _$$_REQUIRE(_dependencyMap[15]).jsx)(CardEpaper, Object.assign({}, props, {
+ navigation: navigation
+ }));
+ };
+},2195,[3,6,7,11,13,14,582,16,18,1379,2086,2156,816,2196,2144,179,819,2192,438,928]);
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ Object.defineProperty(exports, "__esModule", {
+ value: true
+ });
+ exports.default = exports.IMAGE_HEIGHT = undefined;
+
+ var _reactNative = _$$_REQUIRE(_dependencyMap[0]);
+
+ var IMAGE_HEIGHT = exports.IMAGE_HEIGHT = 300;
+
+ var _default = exports.default = _reactNative.StyleSheet.create({
+ outline: {
+ flexDirection: "column"
+ },
+ image: {
+ height: IMAGE_HEIGHT,
+ width: null,
+ flex: 1
+ },
+ gradient: {
+ height: IMAGE_HEIGHT,
+ backgroundColor: _$$_REQUIRE(_dependencyMap[1]).colors.transparent,
+ position: "absolute",
+ top: 0,
+ start: 0,
+ end: 0,
+ bottom: 0
+ },
+ title: {
+ start: 0,
+ margin: _$$_REQUIRE(_dependencyMap[2]).HORIZONTAL_MARGIN,
+ color: _$$_REQUIRE(_dependencyMap[1]).colors.title
+ },
+ titleOverImage: {
+ margin: _$$_REQUIRE(_dependencyMap[2]).HORIZONTAL_MARGIN,
+ color: _$$_REQUIRE(_dependencyMap[1]).colors.white,
+ position: "absolute",
+ bottom: 0,
+ start: 0,
+ end: 0,
+ textShadowColor: _$$_REQUIRE(_dependencyMap[1]).colors.black,
+ textShadowOffset: {
+ width: 1,
+ height: 1
+ },
+ textShadowRadius: 5
+ },
+ summary: {
+ start: 0,
+ fontSize: 20,
+ margin: _$$_REQUIRE(_dependencyMap[2]).SUMMARY_VERTICAL_MARGIN,
+ color: _$$_REQUIRE(_dependencyMap[1]).colors.summary
+ },
+ icon: {
+ height: 30,
+ width: 30,
+ marginStart: 5,
+ marginEnd: 5
+ }
+ });
+},2196,[18,438,2137]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -290605,7 +291264,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
navigation: navigation
}));
};
-},2192,[3,6,7,11,13,14,16,582,18,816,588,438,819,179,2189,2193,2156,928]);
+},2197,[3,6,7,11,13,14,16,582,18,816,588,438,819,179,2192,2198,2157,928]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -290634,7 +291293,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
marginVertical: 0
}
});
-},2193,[18,438]);
+},2198,[18,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -290776,7 +291435,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
navigation: navigation
}));
};
-},2194,[3,6,7,11,13,14,16,582,18,2034,2195,438,179,2189,819,928]);
+},2199,[3,6,7,11,13,14,16,582,18,2034,2200,438,179,2192,819,928]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -290798,7 +291457,165 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
height: _$$_REQUIRE(_dependencyMap[1]).NATIVO_CARD_HEIGHT
}
});
-},2195,[18,2153]);
+},2200,[18,2154]);
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ Object.defineProperty(exports, "__esModule", {
+ value: true
+ });
+ exports.default = undefined;
+
+ var _classCallCheck2 = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[1]));
+
+ var _createClass2 = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[2]));
+
+ var _possibleConstructorReturn2 = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[3]));
+
+ var _getPrototypeOf2 = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[4]));
+
+ var _inherits2 = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[5]));
+
+ var _propTypes = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[6]));
+
+ var _react = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[7]));
+
+ var _reactNative = _$$_REQUIRE(_dependencyMap[8]);
+
+ var _imageComponent = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[9]));
+
+ var _doubleTextAutoMeasured = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[10]));
+
+ function _callSuper(t, o, e) { return o = (0, _getPrototypeOf2.default)(o), (0, _possibleConstructorReturn2.default)(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], (0, _getPrototypeOf2.default)(t).constructor) : o.apply(t, e)); }
+
+ function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
+
+ var CardSchedule = function (_React$PureComponent) {
+ function CardSchedule() {
+ (0, _classCallCheck2.default)(this, CardSchedule);
+ return _callSuper(this, CardSchedule, arguments);
+ }
+
+ (0, _inherits2.default)(CardSchedule, _React$PureComponent);
+ return (0, _createClass2.default)(CardSchedule, [{
+ key: "render",
+ value: function render() {
+ var _this$props = this.props,
+ item = _this$props.item,
+ onPress = _this$props.onPress;
+
+ var cssKey = _$$_REQUIRE(_dependencyMap[11]).StringUtils.getKeyFromText(item.title);
+
+ var color = _$$_REQUIRE(_dependencyMap[12]).Css.isDarkTheme() ? _$$_REQUIRE(_dependencyMap[12]).Css.getDefaultForegroundColor() : _$$_REQUIRE(_dependencyMap[11]).colors.title;
+ return (0, _$$_REQUIRE(_dependencyMap[13]).jsx)(_$$_REQUIRE(_dependencyMap[12]).Css, {
+ classes: ["tile", "tile-schedule", "tile-card-schedule"],
+ cssKey: cssKey,
+ children: (0, _$$_REQUIRE(_dependencyMap[13]).jsx)(_$$_REQUIRE(_dependencyMap[14]).CardParent, {
+ onPress: onPress,
+ children: (0, _$$_REQUIRE(_dependencyMap[13]).jsxs)(_reactNative.View, {
+ style: _$$_REQUIRE(_dependencyMap[15]).styles.outline,
+ children: [(0, _$$_REQUIRE(_dependencyMap[13]).jsx)(_doubleTextAutoMeasured.default, {
+ top: {
+ props: {
+ type: _$$_REQUIRE(_dependencyMap[16]).Type.medium
+ },
+ text: (0, _$$_REQUIRE(_dependencyMap[17]).getCategoryLabel)(item.title),
+ style: [_$$_REQUIRE(_dependencyMap[15]).styles.title, {
+ color: color
+ }],
+ parentStyle: _$$_REQUIRE(_dependencyMap[15]).styles.titleContainer,
+ classes: ["tile-text", "tile-title", "tile-schedule-text", "tile-card-schedule-text"]
+ },
+ bottom: {
+ text: item.summary,
+ style: [_$$_REQUIRE(_dependencyMap[15]).styles.summary, {
+ color: color
+ }],
+ parentStyle: _$$_REQUIRE(_dependencyMap[15]).styles.summaryContainer,
+ classes: ["tile-text", "tile-summary", "tile-schedule-summary", "tile-card-schedule-summary"]
+ },
+ containerStyle: _$$_REQUIRE(_dependencyMap[15]).styles.text
+ }), item.image ? (0, _$$_REQUIRE(_dependencyMap[13]).jsx)(_reactNative.View, {
+ style: _$$_REQUIRE(_dependencyMap[15]).styles.imageContainer,
+ children: (0, _$$_REQUIRE(_dependencyMap[13]).jsx)(_$$_REQUIRE(_dependencyMap[12]).Css, {
+ classes: ["tile-image", "tile-schedule-image", "tile-card-schedule-image"],
+ cssKey: cssKey,
+ children: (0, _$$_REQUIRE(_dependencyMap[13]).jsx)(_imageComponent.default, {
+ style: _$$_REQUIRE(_dependencyMap[15]).styles.image,
+ resizeMode: "center",
+ source: {
+ uri: item.image
+ }
+ })
+ })
+ }) : null]
+ })
+ })
+ });
+ }
+ }]);
+ }(_react.default.PureComponent);
+
+ CardSchedule.propTypes = {
+ onPress: _propTypes.default.func,
+ item: _propTypes.default.shape({
+ title: _propTypes.default.string,
+ image: _propTypes.default.string,
+ thumbnail: _propTypes.default.string,
+ summary: _propTypes.default.string
+ })
+ };
+
+ var _default = exports.default = function _default(props) {
+ var navigation = (0, _$$_REQUIRE(_dependencyMap[18]).useNavigation)();
+ return (0, _$$_REQUIRE(_dependencyMap[13]).jsx)(CardSchedule, Object.assign({}, props, {
+ navigation: navigation
+ }));
+ };
+},2201,[3,6,7,11,13,14,582,16,18,588,2140,438,819,179,2192,2202,816,2157,928]);
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ Object.defineProperty(exports, "__esModule", {
+ value: true
+ });
+ exports.styles = undefined;
+
+ var _reactNative = _$$_REQUIRE(_dependencyMap[0]);
+
+ var styles = exports.styles = _reactNative.StyleSheet.create({
+ outline: {
+ marginStart: 10,
+ paddingVertical: 10,
+ height: 110,
+ flexDirection: "row",
+ justifyContent: "space-between",
+ alignItems: "center"
+ },
+ text: {
+ flex: 4,
+ height: "100%",
+ flexDirection: "column",
+ justifyContent: "space-between"
+ },
+ titleContainer: {
+ justifyContent: "center"
+ },
+ summaryContainer: {},
+ title: {
+ fontSize: 20
+ },
+ summary: {
+ fontSize: 12
+ },
+ imageContainer: {
+ width: 150,
+ alignSelf: "flex-end",
+ marginHorizontal: 10,
+ overflow: "hidden",
+ borderRadius: _$$_REQUIRE(_dependencyMap[1]).CARD_RADIUS
+ },
+ image: {
+ height: "100%"
+ }
+ });
+},2202,[18,2144]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -290978,7 +291795,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
navigation: navigation
}));
};
-},2196,[3,6,7,11,13,14,582,16,18,1932,1985,868,819,179,1984,438,1989,2189,928]);
+},2203,[3,6,7,11,13,14,582,16,18,1930,1985,868,819,179,1984,438,1989,2192,928]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -291009,218 +291826,13 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
var _fontText = _interopRequireWildcard(_$$_REQUIRE(_dependencyMap[12]));
- var _cardEpaper = _interopRequireWildcard(_$$_REQUIRE(_dependencyMap[13]));
-
- function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
-
- function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
-
- function _callSuper(t, o, e) { return o = (0, _getPrototypeOf2.default)(o), (0, _possibleConstructorReturn2.default)(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], (0, _getPrototypeOf2.default)(t).constructor) : o.apply(t, e)); }
-
- function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
-
- var CardEpaper = function (_React$PureComponent) {
- function CardEpaper(props) {
- var _this;
-
- (0, _classCallCheck2.default)(this, CardEpaper);
- _this = _callSuper(this, CardEpaper, [props]);
- _this.fontSize = _$$_REQUIRE(_dependencyMap[14]).FONT_SIZE.TEXT();
- _this.fontSizeTitle = _$$_REQUIRE(_dependencyMap[14]).FONT_SIZE.TITLE();
- return _this;
- }
-
- (0, _inherits2.default)(CardEpaper, _React$PureComponent);
- return (0, _createClass2.default)(CardEpaper, [{
- key: "_getImage",
- value: function _getImage(_ref) {
- var image = _ref.image;
- return (0, _$$_REQUIRE(_dependencyMap[15]).jsx)(_$$_REQUIRE(_dependencyMap[16]).Css, {
- classes: ["rss-image-blur", "title-image", "tile-card-image", "tile-card-image-epaper"],
- children: (0, _$$_REQUIRE(_dependencyMap[15]).jsx)(_blurImageComponent.default, {
- image: image,
- style: _cardEpaper.default.image,
- height: _cardEpaper.IMAGE_HEIGHT
- })
- });
- }
- }, {
- key: "render",
- value: function render() {
- var _this$props = this.props,
- item = _this$props.item,
- onPress = _this$props.onPress;
- var itemAction = item.action;
-
- var _global$getRssIndex = global.getRssIndex(),
- gridTitleMaxLines = _global$getRssIndex.gridTitleMaxLines;
-
- var others = {};
-
- if (gridTitleMaxLines >= 0) {
- others.numberOfLines = gridTitleMaxLines;
- }
-
- return (0, _$$_REQUIRE(_dependencyMap[15]).jsx)(_$$_REQUIRE(_dependencyMap[16]).Css, {
- classes: ["tile-epaper", "tile-card-epaper"],
- children: (0, _$$_REQUIRE(_dependencyMap[15]).jsx)(_$$_REQUIRE(_dependencyMap[17]).CardParent, {
- onPress: onPress,
- children: (0, _$$_REQUIRE(_dependencyMap[15]).jsxs)(_reactNative.View, {
- style: {
- flexDirection: "column"
- },
- children: [item.image && !itemAction.hasPropertyHideImageInCardMode() ? (0, _$$_REQUIRE(_dependencyMap[15]).jsxs)(_reactNative.View, {
- children: [this._getImage(item), itemAction.hasPropertyTitleOnImageInCardMode() ? (0, _$$_REQUIRE(_dependencyMap[15]).jsx)(_reactNativeLinearGradient.default, {
- style: _cardEpaper.default.gradient,
- colors: [_$$_REQUIRE(_dependencyMap[18]).colors.transparent, _$$_REQUIRE(_dependencyMap[18]).colors.transparent, _$$_REQUIRE(_dependencyMap[18]).colors.transparent200]
- }) : null, itemAction.hasPropertyTitleOnImageInCardMode() ? (0, _$$_REQUIRE(_dependencyMap[15]).jsx)(_reactNative.View, {
- children: (0, _$$_REQUIRE(_dependencyMap[15]).jsx)(_$$_REQUIRE(_dependencyMap[16]).Css, {
- classes: ["card-title", "tile-card-title", "tile-card-title-epaper"],
- children: (0, _$$_REQUIRE(_dependencyMap[15]).jsx)(_fontText.default, Object.assign({
- style: [_cardEpaper.default.titleOverImage, {
- fontSize: this.fontSizeTitle
- }],
- type: _fontText.Type.medium
- }, others, {
- children: item.title
- }))
- })
- }) : null]
- }) : null, !itemAction.hasPropertyTitleOnImageInCardMode() ? (0, _$$_REQUIRE(_dependencyMap[15]).jsx)(_$$_REQUIRE(_dependencyMap[16]).Css, {
- classes: ["card-title", "tile-card-title", "tile-card-title-epaper"],
- children: (0, _$$_REQUIRE(_dependencyMap[15]).jsx)(_fontText.default, {
- style: [_cardEpaper.default.title, {
- fontSize: this.fontSizeTitle
- }],
- type: _fontText.Type.medium,
- children: item.title
- })
- }) : null]
- })
- })
- });
- }
- }]);
- }(_react.default.PureComponent);
-
- CardEpaper.propTypes = {
- onPress: _propTypes.default.func,
- item: _propTypes.default.shape({
- title: _propTypes.default.string,
- image: _propTypes.default.string,
- thumbnail: _propTypes.default.string,
- action: _propTypes.default.instanceOf(_RssActionManager.default),
- summary: _propTypes.default.string
- })
- };
-
- var _default = exports.default = function _default(props) {
- var navigation = (0, _$$_REQUIRE(_dependencyMap[19]).useNavigation)();
- return (0, _$$_REQUIRE(_dependencyMap[15]).jsx)(CardEpaper, Object.assign({}, props, {
- navigation: navigation
- }));
- };
-},2197,[3,6,7,11,13,14,582,16,18,1379,2086,2155,816,2198,2143,179,819,2189,438,928]);
-__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports.default = exports.IMAGE_HEIGHT = undefined;
-
- var _reactNative = _$$_REQUIRE(_dependencyMap[0]);
-
- var IMAGE_HEIGHT = exports.IMAGE_HEIGHT = 300;
-
- var _default = exports.default = _reactNative.StyleSheet.create({
- outline: {
- flexDirection: "column"
- },
- image: {
- height: IMAGE_HEIGHT,
- width: null,
- flex: 1
- },
- gradient: {
- height: IMAGE_HEIGHT,
- backgroundColor: _$$_REQUIRE(_dependencyMap[1]).colors.transparent,
- position: "absolute",
- top: 0,
- start: 0,
- end: 0,
- bottom: 0
- },
- title: {
- start: 0,
- margin: _$$_REQUIRE(_dependencyMap[2]).HORIZONTAL_MARGIN,
- color: _$$_REQUIRE(_dependencyMap[1]).colors.title
- },
- titleOverImage: {
- margin: _$$_REQUIRE(_dependencyMap[2]).HORIZONTAL_MARGIN,
- color: _$$_REQUIRE(_dependencyMap[1]).colors.white,
- position: "absolute",
- bottom: 0,
- start: 0,
- end: 0,
- textShadowColor: _$$_REQUIRE(_dependencyMap[1]).colors.black,
- textShadowOffset: {
- width: 1,
- height: 1
- },
- textShadowRadius: 5
- },
- summary: {
- start: 0,
- fontSize: 20,
- margin: _$$_REQUIRE(_dependencyMap[2]).SUMMARY_VERTICAL_MARGIN,
- color: _$$_REQUIRE(_dependencyMap[1]).colors.summary
- },
- icon: {
- height: 30,
- width: 30,
- marginStart: 5,
- marginEnd: 5
- }
- });
-},2198,[18,438,2137]);
-__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports.default = undefined;
-
- var _objectWithoutProperties2 = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[1]));
-
- var _classCallCheck2 = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[2]));
-
- var _createClass2 = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[3]));
-
- var _possibleConstructorReturn2 = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[4]));
-
- var _getPrototypeOf2 = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[5]));
-
- var _inherits2 = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[6]));
-
- var _propTypes = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[7]));
-
- var _react = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[8]));
-
- var _reactNative = _$$_REQUIRE(_dependencyMap[9]);
-
- var _RssActionManager = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[10]));
-
- var _events = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[11]));
-
- var _fontText = _interopRequireWildcard(_$$_REQUIRE(_dependencyMap[12]));
-
var _baseTileImage = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[13]));
- var _card = _interopRequireWildcard(_$$_REQUIRE(_dependencyMap[14]));
+ var _iconGallery = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[14]));
- var _dailymotionVideoPlayerComponent = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[15]));
+ var _tileHeader = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[15]));
- var _tileHeader = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[16]));
-
- var _excluded = ["item", "style"];
+ var _card = _interopRequireWildcard(_$$_REQUIRE(_dependencyMap[16]));
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
@@ -291230,41 +291842,26 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
- var CardDailymotion = function (_React$Component) {
- function CardDailymotion(props) {
+ var Card = function (_React$PureComponent) {
+ function Card(props) {
var _this;
- (0, _classCallCheck2.default)(this, CardDailymotion);
- _this = _callSuper(this, CardDailymotion, [props]);
+ (0, _classCallCheck2.default)(this, Card);
+ _this = _callSuper(this, Card, [props]);
_this.fontSize = _$$_REQUIRE(_dependencyMap[17]).FONT_SIZE.TEXT();
_this.fontSizeTitle = _$$_REQUIRE(_dependencyMap[17]).FONT_SIZE.TITLE();
- _this.mounted = false;
return _this;
}
- (0, _inherits2.default)(CardDailymotion, _React$Component);
- return (0, _createClass2.default)(CardDailymotion, [{
- key: "componentDidMount",
- value: function componentDidMount() {
- this.mounted = true;
- }
- }, {
- key: "componentWillUnmount",
- value: function componentWillUnmount() {
- this.mounted = false;
- }
- }, {
+ (0, _inherits2.default)(Card, _React$PureComponent);
+ return (0, _createClass2.default)(Card, [{
key: "_getCategoryAndDate",
value: function _getCategoryAndDate() {
var item = this.props.item;
- var parentContainer = _$$_REQUIRE(_dependencyMap[18]).Css.getStyleObjByCssClasses(["tile-card-header"], {
- cssKey: "dailymotion"
- });
+ var parentContainer = _$$_REQUIRE(_dependencyMap[18]).Css.getStyleObjByCssClasses(["tile-header", "tile-card-header"]);
- var textContainer = _$$_REQUIRE(_dependencyMap[18]).Css.getStyleObjByCssClasses(["tile-card-header-text"], {
- cssKey: "dailymotion"
- });
+ var textContainer = _$$_REQUIRE(_dependencyMap[18]).Css.getStyleObjByCssClasses(["tile-header-text", "tile-card-header-text"]);
return (0, _$$_REQUIRE(_dependencyMap[19]).jsx)(_tileHeader.default, {
parentStyle: [{
@@ -291287,64 +291884,97 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}, {
key: "render",
value: function render() {
- var _this2 = this;
-
var _this$props = this.props,
item = _this$props.item,
- style = _this$props.style,
- rest = (0, _objectWithoutProperties2.default)(_this$props, _excluded);
- var itemAction = item.action;
- var commonProps = Object.assign({
- onRef: function onRef(ref) {
- _$$_REQUIRE(_dependencyMap[21]).EventRegister.on(_events.default.ON_RSS_BASE_SCREEN_BLUR, function () {
- if (ref && _this2.mounted) {
- ref.pause();
- }
- });
- },
- video: item.gallery[0]
- }, rest);
+ onPress = _this$props.onPress,
+ hideByline = _this$props.hideByline;
+ var action = item.action,
+ title = item.title,
+ summary = item.summary,
+ byline = item.byline,
+ image = item.image;
- if (item.isHighlightedBox) {
- return (0, _$$_REQUIRE(_dependencyMap[19]).jsx)(_dailymotionVideoPlayerComponent.default, Object.assign({}, commonProps, {
- style: style
- }));
+ var _global$getRssIndex = global.getRssIndex(),
+ gridTitleMaxLines = _global$getRssIndex.gridTitleMaxLines;
+
+ var others = {};
+
+ if (gridTitleMaxLines >= 0) {
+ others.numberOfLines = gridTitleMaxLines;
}
return (0, _$$_REQUIRE(_dependencyMap[19]).jsx)(_$$_REQUIRE(_dependencyMap[18]).Css, {
classes: ["tile", "tile-card"],
- cssKey: "dailymotion",
- children: (0, _$$_REQUIRE(_dependencyMap[19]).jsx)(_$$_REQUIRE(_dependencyMap[22]).CardParent, {
+ children: (0, _$$_REQUIRE(_dependencyMap[19]).jsx)(_$$_REQUIRE(_dependencyMap[21]).CardParent, {
+ onPress: onPress,
children: (0, _$$_REQUIRE(_dependencyMap[19]).jsxs)(_reactNative.View, {
style: {
flexDirection: "column"
},
- children: [(0, _$$_REQUIRE(_dependencyMap[19]).jsx)(_dailymotionVideoPlayerComponent.default, Object.assign({}, commonProps, {
- style: [{
- width: "100%",
- height: _card.IMAGE_HEIGHT
- }, style]
- })), (0, _$$_REQUIRE(_dependencyMap[19]).jsx)(_reactNative.View, {
+ children: [image && !action.hasPropertyHideImageInCardMode() ? (0, _$$_REQUIRE(_dependencyMap[19]).jsxs)(_reactNative.View, {
+ children: [(0, _$$_REQUIRE(_dependencyMap[19]).jsx)(_$$_REQUIRE(_dependencyMap[18]).Css, {
+ classes: ["rss-image-blur", "tile-card-image-blur"],
+ children: (0, _$$_REQUIRE(_dependencyMap[19]).jsx)(_blurImageComponent.default, {
+ image: image,
+ style: _card.default.image,
+ height: _card.IMAGE_HEIGHT
+ })
+ }), action.hasPropertyTitleOnImageInCardMode() ? (0, _$$_REQUIRE(_dependencyMap[19]).jsx)(_reactNativeLinearGradient.default, {
+ style: _card.default.gradient,
+ colors: [_$$_REQUIRE(_dependencyMap[20]).colors.transparent, _$$_REQUIRE(_dependencyMap[20]).colors.transparent, _$$_REQUIRE(_dependencyMap[20]).colors.transparent200]
+ }) : null, action.hasPropertyTitleOnImageInCardMode() ? (0, _$$_REQUIRE(_dependencyMap[19]).jsx)(_reactNative.View, {
+ children: (0, _$$_REQUIRE(_dependencyMap[19]).jsx)(_$$_REQUIRE(_dependencyMap[18]).Css, {
+ classes: ["tile-title", "card-title", "tile-card-title"],
+ children: (0, _$$_REQUIRE(_dependencyMap[19]).jsx)(_fontText.default, Object.assign({
+ style: [_card.default.titleOverImage, {
+ fontSize: this.fontSizeTitle
+ }],
+ type: _fontText.Type.medium
+ }, others, {
+ children: title
+ }))
+ })
+ }) : null, (0, _$$_REQUIRE(_dependencyMap[19]).jsx)(_$$_REQUIRE(_dependencyMap[18]).Css, {
+ classes: ["tile-card-icons-parent"],
+ children: (0, _$$_REQUIRE(_dependencyMap[19]).jsx)(_reactNative.View, {
+ style: {
+ position: "absolute",
+ top: 5,
+ end: 0
+ },
+ children: (0, _$$_REQUIRE(_dependencyMap[19]).jsx)(_iconGallery.default, {
+ item: item,
+ inline: true
+ })
+ })
+ })]
+ }) : null, !action.hasPropertyTitleOnImageInCardMode() && title ? (0, _$$_REQUIRE(_dependencyMap[19]).jsx)(_reactNative.View, {
children: (0, _$$_REQUIRE(_dependencyMap[19]).jsx)(_$$_REQUIRE(_dependencyMap[18]).Css, {
classes: ["tile-title", "card-title", "tile-card-title"],
- cssKey: "dailymotion",
children: (0, _$$_REQUIRE(_dependencyMap[19]).jsx)(_fontText.default, {
style: [_card.default.title, {
fontSize: this.fontSizeTitle
}],
type: _fontText.Type.medium,
- children: item.title
+ children: title
})
})
- }), !itemAction.hasPropertyHideSummaryInCardMode() ? (0, _$$_REQUIRE(_dependencyMap[19]).jsx)(_reactNative.View, {
+ }) : null, !hideByline && byline ? (0, _$$_REQUIRE(_dependencyMap[19]).jsx)(_$$_REQUIRE(_dependencyMap[18]).Css, {
+ classes: ["article-byline", "tile-byline", "card-byline", "tile-card-byline"],
+ children: (0, _$$_REQUIRE(_dependencyMap[19]).jsx)(_fontText.default, {
+ style: [_card.default.byline, {
+ fontSize: this.fontSize
+ }],
+ children: byline
+ })
+ }) : null, !action.hasPropertyHideSummaryInCardMode() && summary ? (0, _$$_REQUIRE(_dependencyMap[19]).jsx)(_reactNative.View, {
children: (0, _$$_REQUIRE(_dependencyMap[19]).jsx)(_$$_REQUIRE(_dependencyMap[18]).Css, {
classes: ["tile-summary", "card-summary", "tile-card-summary"],
- cssKey: "dailymotion",
children: (0, _$$_REQUIRE(_dependencyMap[19]).jsx)(_fontText.default, {
style: [_card.default.summary, {
fontSize: this.fontSize
}],
- children: item.summary
+ children: summary
})
})
}) : null, this._getCategoryAndDate()]
@@ -291353,9 +291983,9 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
});
}
}]);
- }(_react.default.Component);
+ }(_react.default.PureComponent);
- CardDailymotion.propTypes = {
+ Card.propTypes = {
onPress: _propTypes.default.func,
item: _propTypes.default.shape({
title: _propTypes.default.string,
@@ -291363,253 +291993,21 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
thumbnail: _propTypes.default.string,
action: _propTypes.default.instanceOf(_RssActionManager.default),
summary: _propTypes.default.string,
- gallery: _propTypes.default.array,
- isHighlightedBox: _propTypes.default.bool
+ byline: _propTypes.default.string
}),
- style: _propTypes.default.oneOfType([_propTypes.default.object, _propTypes.default.number, _propTypes.default.array])
+ hideByline: _propTypes.default.bool
+ };
+ Card.defaultProps = {
+ hideByline: true
};
var _default = exports.default = function _default(props) {
- var navigation = (0, _$$_REQUIRE(_dependencyMap[23]).useNavigation)();
- return (0, _$$_REQUIRE(_dependencyMap[19]).jsx)(CardDailymotion, Object.assign({}, props, {
+ var navigation = (0, _$$_REQUIRE(_dependencyMap[22]).useNavigation)();
+ return (0, _$$_REQUIRE(_dependencyMap[19]).jsx)(Card, Object.assign({}, props, {
navigation: navigation
}));
};
-},2199,[3,4,6,7,11,13,14,582,16,18,2086,436,816,2137,2154,2200,2185,2143,819,179,438,564,2189,928]);
-__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports.default = undefined;
-
- var _objectWithoutProperties2 = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[1]));
-
- var _propTypes = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[2]));
-
- var _react = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[3]));
-
- var _cmpUtils = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[4]));
-
- var _optionalPackageUtils = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[5]));
-
- var _excluded = ["video", "onRef", "progressColor"];
-
- function DailymotionVideoPlayerComponent(props) {
- var video = props.video,
- onRef = props.onRef,
- progressColor = props.progressColor,
- rest = (0, _objectWithoutProperties2.default)(props, _excluded);
- var action = video.action,
- url = video.url,
- playerId = video.playerId;
-
- var _OptionalPackages$get = _optionalPackageUtils.default.getDailymotionVideoPlayer(),
- DailymotionVideoPlayer = _OptionalPackages$get.Player;
-
- if (!DailymotionVideoPlayer) {
- return null;
- }
-
- if (!playerId) {
- return null;
- }
-
- var playerData = {
- playerId: playerId,
- allowIDFA: _cmpUtils.default.isAdTrackingAllowed()
- };
-
- if (action && action === "dailymotionPlaylist") {
- playerData.playlist = url;
- } else {
- playerData.video = url;
- }
-
- var style = _$$_REQUIRE(_dependencyMap[6]).Css.getStyleObjByCssClasses(["progress-circle"], {
- cssKey: "dailymotion"
- });
-
- var color = _$$_REQUIRE(_dependencyMap[7]).CssUtils.getAttributeFromStyle("color", style, progressColor);
-
- return (0, _$$_REQUIRE(_dependencyMap[8]).jsx)(DailymotionVideoPlayer, Object.assign({
- ref: function ref(_ref) {
- if (typeof onRef === "function") {
- onRef(_ref);
- }
- },
- playerData: playerData,
- progressColor: color
- }, rest));
- }
-
- DailymotionVideoPlayerComponent.propTypes = {
- video: _propTypes.default.object.isRequired,
- style: _propTypes.default.object,
- progressColor: _propTypes.default.string,
- onRef: _propTypes.default.func
- };
- DailymotionVideoPlayerComponent.defaultProps = {
- progressColor: _$$_REQUIRE(_dependencyMap[6]).Css.getDefaultForegroundColor()
- };
-
- var _default = exports.default = DailymotionVideoPlayerComponent;
-},2200,[3,4,582,16,1932,881,819,438,179]);
-__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports.default = undefined;
-
- var _classCallCheck2 = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[1]));
-
- var _createClass2 = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[2]));
-
- var _possibleConstructorReturn2 = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[3]));
-
- var _getPrototypeOf2 = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[4]));
-
- var _inherits2 = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[5]));
-
- var _react = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[6]));
-
- var _propTypes = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[7]));
-
- var _reactNative = _$$_REQUIRE(_dependencyMap[8]);
-
- var _imageComponent = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[9]));
-
- var _doubleTextAutoMeasured = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[10]));
-
- function _callSuper(t, o, e) { return o = (0, _getPrototypeOf2.default)(o), (0, _possibleConstructorReturn2.default)(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], (0, _getPrototypeOf2.default)(t).constructor) : o.apply(t, e)); }
-
- function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
-
- var CardSchedule = function (_React$PureComponent) {
- function CardSchedule() {
- (0, _classCallCheck2.default)(this, CardSchedule);
- return _callSuper(this, CardSchedule, arguments);
- }
-
- (0, _inherits2.default)(CardSchedule, _React$PureComponent);
- return (0, _createClass2.default)(CardSchedule, [{
- key: "render",
- value: function render() {
- var _this$props = this.props,
- item = _this$props.item,
- onPress = _this$props.onPress;
-
- var cssKey = _$$_REQUIRE(_dependencyMap[11]).StringUtils.getKeyFromText(item.title);
-
- var color = _$$_REQUIRE(_dependencyMap[12]).Css.isDarkTheme() ? _$$_REQUIRE(_dependencyMap[12]).Css.getDefaultForegroundColor() : _$$_REQUIRE(_dependencyMap[11]).colors.title;
- return (0, _$$_REQUIRE(_dependencyMap[13]).jsx)(_$$_REQUIRE(_dependencyMap[12]).Css, {
- classes: ["tile", "tile-schedule", "tile-card-schedule"],
- cssKey: cssKey,
- children: (0, _$$_REQUIRE(_dependencyMap[13]).jsx)(_$$_REQUIRE(_dependencyMap[14]).CardParent, {
- onPress: onPress,
- children: (0, _$$_REQUIRE(_dependencyMap[13]).jsxs)(_reactNative.View, {
- style: _$$_REQUIRE(_dependencyMap[15]).styles.outline,
- children: [(0, _$$_REQUIRE(_dependencyMap[13]).jsx)(_doubleTextAutoMeasured.default, {
- top: {
- type: _$$_REQUIRE(_dependencyMap[16]).Type.medium,
- text: (0, _$$_REQUIRE(_dependencyMap[17]).getCategoryLabel)(item.title),
- style: [_$$_REQUIRE(_dependencyMap[15]).styles.title, {
- color: color
- }],
- parentStyle: _$$_REQUIRE(_dependencyMap[15]).styles.titleContainer,
- classes: ["tile-text", "tile-title", "tile-schedule-text", "tile-card-schedule-text"]
- },
- bottom: {
- text: item.summary,
- style: [_$$_REQUIRE(_dependencyMap[15]).styles.summary, {
- color: color
- }],
- parentStyle: _$$_REQUIRE(_dependencyMap[15]).styles.summaryContainer,
- classes: ["tile-text", "tile-summary", "tile-schedule-summary", "tile-card-schedule-summary"]
- },
- containerStyle: _$$_REQUIRE(_dependencyMap[15]).styles.text
- }), item.image ? (0, _$$_REQUIRE(_dependencyMap[13]).jsx)(_reactNative.View, {
- style: _$$_REQUIRE(_dependencyMap[15]).styles.imageContainer,
- children: (0, _$$_REQUIRE(_dependencyMap[13]).jsx)(_$$_REQUIRE(_dependencyMap[12]).Css, {
- classes: ["tile-image", "tile-schedule-image", "tile-card-schedule-image"],
- cssKey: cssKey,
- children: (0, _$$_REQUIRE(_dependencyMap[13]).jsx)(_imageComponent.default, {
- style: _$$_REQUIRE(_dependencyMap[15]).styles.image,
- resizeMode: "center",
- source: {
- uri: item.image
- }
- })
- })
- }) : null]
- })
- })
- });
- }
- }]);
- }(_react.default.PureComponent);
-
- CardSchedule.propTypes = {
- onPress: _propTypes.default.func,
- item: _propTypes.default.shape({
- title: _propTypes.default.string,
- image: _propTypes.default.string,
- thumbnail: _propTypes.default.string,
- summary: _propTypes.default.string
- })
- };
-
- var _default = exports.default = function _default(props) {
- var navigation = (0, _$$_REQUIRE(_dependencyMap[18]).useNavigation)();
- return (0, _$$_REQUIRE(_dependencyMap[13]).jsx)(CardSchedule, Object.assign({}, props, {
- navigation: navigation
- }));
- };
-},2201,[3,6,7,11,13,14,16,582,18,588,2139,438,819,179,2189,2202,816,2156,928]);
-__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports.styles = undefined;
-
- var _reactNative = _$$_REQUIRE(_dependencyMap[0]);
-
- var styles = exports.styles = _reactNative.StyleSheet.create({
- outline: {
- marginStart: 10,
- paddingVertical: 10,
- height: 110,
- flexDirection: "row",
- justifyContent: "space-between",
- alignItems: "center"
- },
- text: {
- flex: 4,
- height: "100%",
- flexDirection: "column",
- justifyContent: "space-between"
- },
- titleContainer: {
- justifyContent: "center"
- },
- summaryContainer: {},
- title: {
- fontSize: 20
- },
- summary: {
- fontSize: 12
- },
- imageContainer: {
- width: 150,
- alignSelf: "flex-end",
- marginHorizontal: 10,
- overflow: "hidden",
- borderRadius: _$$_REQUIRE(_dependencyMap[1]).CARD_RADIUS
- },
- image: {
- height: "100%"
- }
- });
-},2202,[18,2143]);
+},2204,[3,6,7,11,13,14,582,16,18,1379,2086,2156,816,2137,2132,2187,2155,2144,819,179,438,2192,928]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -291776,6 +292174,12 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}, {
key: "_box",
value: function _box(item, size, grid, itemID, changeContainerStyleCallback) {
+ var _this$props$settings = this.props.settings,
+ settings = _this$props$settings === undefined ? {} : _this$props$settings;
+ var showBylineInCardAndListMode = settings.showBylineInCardAndListMode;
+ var otherProps = {
+ hideByline: showBylineInCardAndListMode === undefined || showBylineInCardAndListMode === "0"
+ };
var tile;
if (item.isAdvertisement) {
@@ -291817,23 +292221,21 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
grid: grid
});
} else if (grid || item.isHighlightedBox) {
+ var _commonProps = {
+ item: item,
+ grid: grid,
+ full: item.isHighlightedBox
+ };
+
if (item.image) {
- tile = (0, _$$_REQUIRE(_dependencyMap[17]).jsx)(_tileGridImage.default, {
- item: item,
- grid: grid,
- full: item.isHighlightedBox
- });
+ tile = (0, _$$_REQUIRE(_dependencyMap[17]).jsx)(_tileGridImage.default, Object.assign({}, _commonProps, otherProps));
} else {
- tile = (0, _$$_REQUIRE(_dependencyMap[17]).jsx)(_tileGridNoImage.default, {
- item: item,
- grid: grid,
- full: item.isHighlightedBox
- });
+ tile = (0, _$$_REQUIRE(_dependencyMap[17]).jsx)(_tileGridNoImage.default, Object.assign({}, _commonProps, otherProps));
}
} else {
- tile = (0, _$$_REQUIRE(_dependencyMap[17]).jsx)(_tileList.default, {
+ tile = (0, _$$_REQUIRE(_dependencyMap[17]).jsx)(_tileList.default, Object.assign({
item: item
- });
+ }, otherProps));
}
return tile;
@@ -292262,7 +292664,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
navigation: navigation
}));
};
-},2203,[3,6,7,11,13,14,582,16,18,1973,2204,2212,2213,2215,438,2143,2151,179,2216,2219,2222,2224,2227,2230,819,2093,928]);
+},2205,[3,6,7,11,13,14,582,16,18,1973,2206,2214,2215,2217,438,2144,2152,179,2218,2221,2224,2226,2229,2232,819,2093,928]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -292566,7 +292968,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
var _default = exports.default = RssBaseView;
-},2204,[3,4,6,7,11,13,14,16,582,18,2205,2206,179,2208,2056,438]);
+},2206,[3,4,6,7,11,13,14,16,582,18,2207,2208,179,2210,2056,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -292584,7 +292986,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
},
item: {}
});
-},2205,[18]);
+},2207,[18]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -292906,7 +293308,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
windowSize: 2,
initialNumToRender: 6
};
-},2206,[3,4,6,7,11,13,14,16,582,18,2207,179,1978]);
+},2208,[3,4,6,7,11,13,14,16,582,18,2209,179,1978]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -293032,7 +293434,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
visibility: AsymmetricVisibility.VISIBLE,
PlaceholderComponent: null
};
-},2207,[3,4,6,7,11,13,14,16,18,582,179]);
+},2209,[3,4,6,7,11,13,14,16,18,582,179]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -293394,7 +293796,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
var _default = exports.default = FooterBar;
-},2208,[3,33,582,16,18,436,2034,434,2209,1861,438,179,819,564,2211]);
+},2210,[3,33,582,16,18,436,2034,434,2211,1861,438,179,819,564,2213]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -293554,7 +293956,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
var _default = exports.default = FooterElement;
-},2209,[3,33,16,18,582,436,2085,816,1976,564,438,819,179,2210]);
+},2211,[3,33,16,18,582,436,2085,816,1976,564,438,819,179,2212]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -293579,7 +293981,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
justifyContent: "center"
}
});
-},2210,[18]);
+},2212,[18]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -293598,7 +294000,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
function TecnaviaFooterTab(props) {
return (0, _$$_REQUIRE(_dependencyMap[3]).jsx)(_reactNative.View, Object.assign({}, props));
}
-},2211,[3,16,18,179]);
+},2213,[3,16,18,179]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -293784,7 +294186,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
navigation: navigation
}));
};
-},2212,[3,6,7,11,13,14,582,16,18,1379,2148,588,2137,2185,2138,2152,438,2143,819,179,2144,928]);
+},2214,[3,6,7,11,13,14,582,16,18,1379,2149,588,2137,2187,2138,2153,438,2144,819,179,2145,928]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -293914,7 +294316,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
navigation: navigation
}));
};
-},2213,[3,6,7,11,13,14,582,16,2137,2185,2138,2214,2143,438,819,179,2145,2142,928]);
+},2215,[3,6,7,11,13,14,582,16,2137,2187,2138,2216,2144,438,819,179,2146,2143,928]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -293938,7 +294340,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
paddingBottom: _$$_REQUIRE(_dependencyMap[1]).CONTAINER_VERTICAL_PADDING
}
});
-},2214,[18,2137]);
+},2216,[18,2137]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -293994,51 +294396,70 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
value: function _getImage() {
var item = this.props.item;
- if (item.image) {
- var style = {
- margin: 4,
- flex: _$$_REQUIRE(_dependencyMap[16]).PlatformUtils.isTablet() ? 1 : 2
- };
- return (0, _$$_REQUIRE(_dependencyMap[17]).jsx)(_$$_REQUIRE(_dependencyMap[18]).Css, {
- classes: ["tile-list-image-container"],
- children: (0, _$$_REQUIRE(_dependencyMap[17]).jsxs)(_reactNative.View, {
- style: style,
- children: [(0, _$$_REQUIRE(_dependencyMap[17]).jsx)(_$$_REQUIRE(_dependencyMap[18]).Css, {
- classes: ["tile-list-image"],
- children: (0, _$$_REQUIRE(_dependencyMap[17]).jsx)(_imageComponent.default, {
- style: style,
- source: {
- uri: item.image
- }
- })
- }), (0, _$$_REQUIRE(_dependencyMap[17]).jsx)(_iconGallery.default, {
- item: item,
- inline: false
- })]
- })
- });
+ if (!item.image) {
+ return null;
}
- return null;
+ var style = {
+ margin: 4,
+ flex: _$$_REQUIRE(_dependencyMap[16]).PlatformUtils.isTablet() ? 1 : 2
+ };
+ return (0, _$$_REQUIRE(_dependencyMap[17]).jsx)(_$$_REQUIRE(_dependencyMap[18]).Css, {
+ classes: ["tile-list-image-container"],
+ children: (0, _$$_REQUIRE(_dependencyMap[17]).jsxs)(_reactNative.View, {
+ style: style,
+ children: [(0, _$$_REQUIRE(_dependencyMap[17]).jsx)(_$$_REQUIRE(_dependencyMap[18]).Css, {
+ classes: ["tile-list-image"],
+ children: (0, _$$_REQUIRE(_dependencyMap[17]).jsx)(_imageComponent.default, {
+ style: style,
+ source: {
+ uri: item.image
+ }
+ })
+ }), (0, _$$_REQUIRE(_dependencyMap[17]).jsx)(_iconGallery.default, {
+ item: item,
+ inline: false
+ })]
+ })
+ });
}
}, {
key: "render",
value: function render() {
- var item = this.props.item;
+ var _this$props = this.props,
+ item = _this$props.item,
+ hideByline = _this$props.hideByline;
var isTablet = _$$_REQUIRE(_dependencyMap[16]).PlatformUtils.isTablet();
var _global$getRssIndex = global.getRssIndex(),
putImageOnListRightSide = _global$getRssIndex.putImageOnListRightSide;
- var summary = isTablet ? {
- text: item.summary,
- classes: ["tile-summary", "list-tile-summary", "tile-list-summary"],
- style: {
- color: _$$_REQUIRE(_dependencyMap[16]).colors.summary,
- fontSize: this.fontSize
- }
- } : {};
+ var summaryStyle = Object.assign({}, _tileList.default.summary, {
+ fontSize: this.fontSize
+ });
+ var byline = {};
+
+ if (!hideByline) {
+ byline = {
+ text: item.byline,
+ classes: ["article-byline", "tile-byline", "list-tile-byline", "tile-list-byline"],
+ style: summaryStyle,
+ props: {
+ numberOfLines: 1
+ }
+ };
+ }
+
+ var summary = {};
+
+ if (isTablet) {
+ summary = {
+ text: item.summary,
+ classes: ["tile-summary", "list-tile-summary", "tile-list-summary"],
+ style: summaryStyle
+ };
+ }
var parentContainer = _$$_REQUIRE(_dependencyMap[18]).Css.getStyleObjByCssClasses(["tile-header", "tile-list-header"]);
@@ -294068,6 +294489,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
fontSize: this.fontSizeTitle
}
},
+ byline: byline,
summary: summary,
verticalPaddingSize: _$$_REQUIRE(_dependencyMap[20]).TITLE_TOP_PADDING,
containerStyle: !isTablet ? {
@@ -294104,8 +294526,13 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
position: _propTypes.default.number,
hideCategory: _propTypes.default.bool,
isPremiumArticle: _propTypes.default.bool,
- gridIndex: _propTypes.default.number
- })
+ gridIndex: _propTypes.default.number,
+ byline: _propTypes.default.string
+ }),
+ hideByline: _propTypes.default.bool
+ };
+ TileList.defaultProps = {
+ hideByline: true
};
var _default = exports.default = function _default(props) {
@@ -294114,7 +294541,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
navigation: navigation
}));
};
-},2215,[3,6,7,11,13,14,582,16,18,588,2137,2132,2185,2138,2136,2143,438,179,819,2144,2142,928]);
+},2217,[3,6,7,11,13,14,582,16,18,588,2137,2132,2187,2138,2136,2144,438,179,819,2145,2143,928]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -294129,7 +294556,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
});
});
-},2216,[2217]);
+},2218,[2219]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -294278,7 +294705,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
itemID: _propTypes.default.number,
changeContainerStyleCallback: _propTypes.default.func
};
-},2217,[3,6,7,11,13,14,16,582,2218,2034,819,179,2145]);
+},2219,[3,6,7,11,13,14,16,582,2220,2034,819,179,2146]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -294294,7 +294721,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
justifyContent: "center"
}
});
-},2218,[18]);
+},2220,[18]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -294309,7 +294736,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
});
});
-},2219,[2220]);
+},2221,[2222]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -294464,7 +294891,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
TileWebView.defaultProps = {
baseUrl: _webUtils.WEBVIEW_BASE_URL
};
-},2220,[3,6,7,11,13,14,582,16,1932,1985,868,2221,819,179,1984,1989,2144]);
+},2222,[3,6,7,11,13,14,582,16,1930,1985,868,2223,819,179,1984,1989,2145]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -294482,7 +294909,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
overflow: "hidden"
}
});
-},2221,[18]);
+},2223,[18]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -294574,7 +295001,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
thumbnail: _propTypes.default.string
})
};
-},2222,[3,6,7,11,13,14,16,582,816,2223,588,438,179,819,2144,2156]);
+},2224,[3,6,7,11,13,14,16,582,816,2225,588,438,179,819,2145,2157]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -294605,7 +295032,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
marginVertical: TITLE_VERTICAL_MARGIN
}
});
-},2223,[18,438]);
+},2225,[18,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -294620,7 +295047,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
});
});
-},2224,[2225]);
+},2226,[2227]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -294743,7 +295170,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
isLinkToCategory: _propTypes.default.bool
})
};
-},2225,[3,6,7,11,13,14,16,18,582,816,2226,588,438,179,819,2144,2156]);
+},2227,[3,6,7,11,13,14,16,18,582,816,2228,588,438,179,819,2145,2157]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -294770,7 +295197,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
margin: HORIZONTAL_MARGIN / 2
}
});
-},2226,[18,438]);
+},2228,[18,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -294931,7 +295358,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
gridIndex: _propTypes.default.number
})
};
-},2227,[3,6,7,11,13,14,16,18,1379,582,2228,816,434,438,179,819,2229,2144]);
+},2229,[3,6,7,11,13,14,16,18,1379,582,2230,816,434,438,179,819,2231,2145]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -295001,7 +295428,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
bottom: 0
}
});
-},2228,[18,438]);
+},2230,[18,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -295157,7 +295584,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
TopCropImage.defaultProps = {
top: 0
};
-},2229,[3,270,6,7,11,13,14,16,582,18,588,179]);
+},2231,[3,270,6,7,11,13,14,16,582,18,588,179]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -295172,7 +295599,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
},
item: {}
});
-},2230,[18]);
+},2232,[18]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -295316,7 +295743,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
navigation: navigation
}));
};
-},2231,[3,6,7,11,13,14,16,438,2143,2203,928,179]);
+},2233,[3,6,7,11,13,14,16,438,2144,2205,928,179]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
var _reactNative = _$$_REQUIRE(_dependencyMap[0]);
@@ -295335,7 +295762,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
_reactNative.AppRegistry.registerHeadlessTask("TaHeadlessTask", function () {
return _PushHelper.default.onBackgroundMessage;
});
-},2232,[18,3,1945,1063,2233]);
+},2234,[18,3,1945,1063,2235]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -296576,7 +297003,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
shortcutEnabled: global.__DEV__,
enableDebugger: false
});
-},2233,[3,270,6,7,11,85,13,14,582,16,18,407,1917,1920,436,2234,2242,1945,434,629,868,1921,2258,1947,1997,2713,438,817,579,564,2057,819,1919,2068,2117,2291,928,179,2262]);
+},2235,[3,270,6,7,11,85,13,14,582,16,18,407,1917,1920,436,2236,2244,1945,434,629,868,1921,2260,1947,1997,2715,438,817,579,564,2057,819,1919,2068,2117,2293,928,179,2264]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -296909,7 +297336,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
InterstitialsHelper.prebidInitialized = false;
InterstitialsHelper.showingNativeInterstitial = false;
-},2234,[3,270,6,7,2123,2124,2126,2127,670,881,2235,2236,438]);
+},2236,[3,270,6,7,2123,2124,2126,2127,670,881,2237,2238,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -297050,7 +297477,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
}]);
}();
-},2235,[3,22,6,7,1920,819,438]);
+},2237,[3,22,6,7,1920,819,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -297233,7 +297660,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}(_react.default.Component);
InterstitialContainer.popup = {};
-},2236,[3,270,6,7,11,13,14,16,18,2237,434,2238,2124,179]);
+},2238,[3,270,6,7,11,13,14,16,18,2239,434,2240,2124,179]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -297252,7 +297679,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
backgroundColor: _$$_REQUIRE(_dependencyMap[1]).colors.transparent
}
});
-},2237,[18,438]);
+},2239,[18,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -297490,7 +297917,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
Interstitial.defaultProps = {
innerRef: function innerRef() {}
};
-},2238,[3,270,6,7,11,13,14,582,16,18,2123,2124,1932,434,2239,2237,179,1919,1984,1989]);
+},2240,[3,270,6,7,11,13,14,582,16,18,2123,2124,1930,434,2241,2239,179,1919,1984,1989]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -297595,7 +298022,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
showAfter: _propTypes.default.number,
onClose: _propTypes.default.func
};
-},2239,[3,6,7,11,13,14,16,582,434,2240,438,819,179]);
+},2241,[3,6,7,11,13,14,16,582,434,2242,438,819,179]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -297679,7 +298106,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
CloseComponent.defaultProps = {
cssClasses: []
};
-},2240,[3,6,7,11,13,14,16,18,582,1861,2241,179,1,819]);
+},2242,[3,6,7,11,13,14,16,18,582,1861,2243,179,1,819]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -297717,7 +298144,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
color: _$$_REQUIRE(_dependencyMap[1]).colors.white
}
});
-},2241,[18,438]);
+},2243,[18,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -298741,7 +299168,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
purchaseToken: "purchaseToken"
}
};
-},2242,[3,22,270,6,7,18,869,434,881,2243,2244,438,2245,817,2246,2256,2257,814]);
+},2244,[3,22,270,6,7,18,869,434,881,2245,2246,438,2247,817,2248,2258,2259,814]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -298916,7 +299343,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}()
}]);
}();
-},2243,[3,270,6,7,407,434,438]);
+},2245,[3,270,6,7,407,434,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -299130,7 +299557,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
value: function onPurchaseUpdateOperationCompleted(callback) {}
}]);
}();
-},2244,[3,270,6,7]);
+},2246,[3,270,6,7]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -299244,7 +299671,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
}]);
}();
-},2245,[3,6,7]);
+},2247,[3,6,7]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -299538,7 +299965,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}()
}]);
}(_IAPrnBase2.default);
-},2246,[3,270,6,7,11,13,14,2247,407,869,881,406,2255]);
+},2248,[3,270,6,7,11,13,14,2249,407,869,881,406,2257]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -299899,7 +300326,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
}]);
}(_IAPBase2.default);
-},2247,[3,270,6,7,11,13,14,2248,869,881,2244,438,2254]);
+},2249,[3,270,6,7,11,13,14,2250,869,881,2246,438,2256]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
"use strict";
@@ -300289,7 +300716,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}(_$$_REQUIRE(_dependencyMap[8]));
exports.default = PQueue;
-},2248,[13,11,2249,6,2251,14,7,270,2253]);
+},2250,[13,11,2251,6,2253,14,7,270,2255]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
'use strict';
@@ -300354,7 +300781,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
module.exports = pTimeout;
module.exports.default = pTimeout;
module.exports.TimeoutError = TimeoutError;
-},2249,[13,11,6,14,7,61,2250]);
+},2251,[13,11,6,14,7,61,2252]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
'use strict';
@@ -300375,7 +300802,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
});
});
};
-},2250,[]);
+},2252,[]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
"use strict";
@@ -300438,7 +300865,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}();
exports.default = PriorityQueue;
-},2251,[6,7,2252]);
+},2253,[6,7,2254]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
"use strict";
@@ -300466,7 +300893,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
exports.default = lowerBound;
-},2252,[]);
+},2254,[]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
'use strict';
@@ -300674,7 +301101,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
if ('undefined' !== typeof module) {
module.exports = EventEmitter;
}
-},2253,[]);
+},2255,[]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -300727,7 +301154,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
}]);
}();
-},2254,[3,6,7]);
+},2256,[3,6,7]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -300795,7 +301222,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
}]);
}();
-},2255,[3,6,7]);
+},2257,[3,6,7]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -301163,7 +301590,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
}]);
}(_IAPrnBase2.default);
-},2256,[3,270,6,7,11,85,13,14,630,406,881,2247,2254,438,2255]);
+},2258,[3,270,6,7,11,85,13,14,630,406,881,2249,2256,438,2257]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -301413,7 +301840,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}()
}]);
}(_IAPrnBase2.default);
-},2257,[3,270,6,7,11,13,14,881,2247,406,2254,438,2255]);
+},2259,[3,270,6,7,11,13,14,881,2249,406,2256,438,2257]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -301561,7 +301988,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
})]
}));
}
-},2258,[3,16,2259,2514,2701,1947,2702,2704,2705,2706,2707,2708,2283,2285,179,2710]);
+},2260,[3,16,2261,2516,2703,1947,2704,2706,2707,2708,2709,2710,2285,2287,179,2712]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -301699,7 +302126,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
}]);
}(_$$_REQUIRE(_dependencyMap[18]).NavigatorBaseScreen);
-},2259,[3,6,7,11,85,13,14,16,1917,436,2235,2260,2284,564,438,2279,179,2262,2513]);
+},2261,[3,6,7,11,85,13,14,16,1917,436,2237,2262,2286,564,438,2281,179,2264,2515]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -301890,7 +302317,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}))
});
}
-},2260,[3,16,2182,2149,1947,2261,2282,2283,2285,866,819,179,2291,2057,2292,2420,2443,2445]);
+},2262,[3,16,2183,2150,1947,2263,2284,2285,2287,866,819,179,2293,2057,2294,2422,2445,2447]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -302045,7 +302472,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
}]);
}(_$$_REQUIRE(_dependencyMap[20]).NavigationBaseScreen);
-},2261,[3,270,6,7,11,13,14,16,18,868,407,406,2001,438,1976,179,2262,819,2263,880,2279]);
+},2263,[3,270,6,7,11,13,14,16,18,868,407,406,2001,438,1976,179,2264,819,2265,880,2281]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -302110,7 +302537,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
children: children
}));
}
-},2262,[3,4,16,18,434,899,179]);
+},2264,[3,4,16,18,434,899,179]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -302930,7 +303357,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
shortcutEnabled: true,
forceFullscreen: false
});
-},2263,[3,4,270,6,7,11,85,13,14,582,16,18,2001,2114,436,2242,629,880,1947,2264,2267,856,564,438,1921,1986,814,2019,2116,2277,2278,179,1782,819,1984,1989,2057]);
+},2265,[3,4,270,6,7,11,85,13,14,582,16,18,2001,2114,436,2244,629,880,1947,2266,2269,856,564,438,1921,1986,814,2019,2116,2279,2280,179,1782,819,1984,1989,2057]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -302980,7 +303407,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
source: _$$_REQUIRE(_dependencyMap[10]),
library: undefined
};
-},2264,[3,6,7,11,13,14,16,582,2265,179,1812]);
+},2266,[3,6,7,11,13,14,16,582,2267,179,1812]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -303150,7 +303577,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
library: undefined,
cssProps: {}
};
-},2265,[3,6,7,11,13,14,16,582,18,2266,1976,564,179,819,1]);
+},2267,[3,6,7,11,13,14,16,582,18,2268,1976,564,179,819,1]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -303185,7 +303612,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
alignSelf: "center"
}
});
-},2266,[18,827]);
+},2268,[18,827]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -303756,7 +304183,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
SettingDebug.defaultProps = {
hidden: false
};
-},2267,[3,270,6,7,11,13,14,582,16,18,2015,1917,1920,2114,881,566,1947,830,816,2268,2269,438,2025,2271,814,2020,819,179,2270,1978,2273,2274]);
+},2269,[3,270,6,7,11,13,14,582,16,18,2015,1917,1920,2114,881,566,1947,830,816,2270,2271,438,2025,2273,814,2020,819,179,2272,1978,2275,2276]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -303878,7 +304305,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
var _default = exports.default = FontTextInput;
-},2268,[3,22,4,582,16,18,817,179,438]);
+},2270,[3,22,4,582,16,18,817,179,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -303989,7 +304416,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
var _default = exports.default = SettingHeader;
-},2269,[3,16,582,18,816,1861,819,179,2270]);
+},2271,[3,16,582,18,816,1861,819,179,2272]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -304107,7 +304534,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
justifyContent: "center"
}
});
-},2270,[18,438]);
+},2272,[18,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -304712,7 +305139,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}()
}]);
}();
-},2271,[3,270,6,7,2015,407,1917,2272,1985,438,814,1919,1925]);
+},2273,[3,270,6,7,2015,407,1917,2274,1985,438,814,1919,1925]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -304790,7 +305217,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
active_days_total: "activeDaysTotal"
}
};
-},2272,[3,270,6,7,438]);
+},2274,[3,270,6,7,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -304882,7 +305309,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
onSending: _propTypes.default.func,
style: _propTypes.default.oneOfType([_propTypes.default.number, _propTypes.default.object, _propTypes.default.array])
};
-},2273,[3,270,6,7,11,13,14,582,16,18,407,816,179,2025,438,1986]);
+},2275,[3,270,6,7,11,13,14,582,16,18,407,816,179,2025,438,1986]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -305054,7 +305481,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
var _default = exports.default = Setting;
-},2274,[3,4,582,16,18,816,1976,819,438,179,2275,2276]);
+},2276,[3,4,582,16,18,816,1976,819,438,179,2277,2278]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -305137,7 +305564,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
justifyContent: "center"
}
});
-},2275,[18,438]);
+},2277,[18,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -305221,7 +305648,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
Button: Button,
Text: Text
};
-},2276,[3,4,16,18,816,438,179,819]);
+},2278,[3,4,16,18,816,438,179,819]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -305406,7 +305833,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
value = data.value;
global.getNewsmemoryConfig().setValue(key, value);
}
-},2277,[3,270,2114,436,1947,2019,564,438,814]);
+},2279,[3,270,2114,436,1947,2019,564,438,814]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -305453,7 +305880,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
justifyContent: "center"
}
});
-},2278,[18,438]);
+},2280,[18,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -305468,7 +305895,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
});
});
-},2279,[2280]);
+},2281,[2282]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -305787,7 +306214,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
NavigationBaseScreen.defaultProps = {
enablePostponeAction: false
};
-},2280,[3,22,270,6,7,11,85,13,14,582,16,18,436,2281,881,1919,564,1986,438,814]);
+},2282,[3,22,270,6,7,11,85,13,14,582,16,18,436,2283,881,1919,564,1986,438,814]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -306006,7 +306433,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
UPGRADED: 2,
UPDATED: 3
};
-},2281,[3,270,6,7,864,2002,2182,881,566,2271,438,817]);
+},2283,[3,270,6,7,864,2002,2183,881,566,2273,438,817]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -306086,7 +306513,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
}]);
}(_$$_REQUIRE(_dependencyMap[10]).NavigationBaseScreen);
-},2282,[3,6,7,11,13,14,16,2182,179,1984,2279]);
+},2284,[3,6,7,11,13,14,16,2183,179,1984,2281]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -306395,7 +306822,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
WebScreen.defaultProps = {
considerSafeArea: true
};
-},2283,[3,270,6,7,11,85,13,14,582,16,2284,1920,436,1943,1923,2235,1985,868,856,564,2279,438,1986,179,1984,1989,2262]);
+},2285,[3,270,6,7,11,85,13,14,582,16,2286,1920,436,1943,1923,2237,1985,868,856,564,2281,438,1986,179,1984,1989,2264]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -306506,7 +306933,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
return null;
}
-},2284,[3,33,16,18,436,438,564,2262,179]);
+},2286,[3,33,16,18,436,438,564,2264,179]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -307045,7 +307472,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
children: [actionBar, barComponent]
});
}
-},2285,[3,4,16,18,1379,2284,1920,1943,434,2235,566,1985,816,1976,2279,819,2262,438,2286,179,2287,1861,2160,926]);
+},2287,[3,4,16,18,1379,2286,1920,1943,434,2237,566,1985,816,1976,2281,819,2264,438,2288,179,2289,1861,2161,926]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -307152,7 +307579,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
fontWeight: "bold"
}
});
-},2286,[18]);
+},2288,[18]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -307400,7 +307827,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
buttonStyle: buttonLayoutStyle
}, props));
}
-},2287,[3,33,16,18,1920,864,2149,1947,2276,1861,588,179,819,2286,2288,438,2289]);
+},2289,[3,33,16,18,1920,864,2150,1947,2278,1861,588,179,819,2288,2290,438,2291]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
module.exports = _$$_REQUIRE(_dependencyMap[0]).registerAsset({
"__packager_asset": true,
@@ -307412,7 +307839,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
"name": "text_banner",
"type": "png"
});
-},2288,[1031]);
+},2290,[1031]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -307427,7 +307854,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
});
});
-},2289,[2290]);
+},2291,[2292]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -307545,7 +307972,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
buttonStyle: _propTypes.default.oneOfType([_propTypes.default.number, _propTypes.default.array, _propTypes.default.object]),
backgroundColor: _propTypes.default.string
};
-},2290,[3,6,7,11,13,14,16,582,436,1861,2276,564,179,819]);
+},2292,[3,6,7,11,13,14,16,582,436,1861,2278,564,179,819]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -307593,7 +308020,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
children: children
}));
}
-},2291,[3,4,16,179,928]);
+},2293,[3,4,16,179,928]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -307608,7 +308035,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
});
});
-},2292,[2293]);
+},2294,[2295]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -307867,16 +308294,13 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
this.onFullDownloadFinished = _$$_REQUIRE(_dependencyMap[36]).EventRegister.on(_events.default.NEWSMEMORY_FULL_DOWNLOAD_FINISHED, _$$_REQUIRE(_dependencyMap[39]).decrementPendingOperations);
this.onEditionChanged = _$$_REQUIRE(_dependencyMap[36]).EventRegister.on(_events.default.NEWSMEMORY_NEWSPAPER_CHANGED, function (_ref7) {
var newspaper = _ref7.newspaper;
+ var editionModel = newspaper == null ? undefined : newspaper.getEditionModel();
- if (newspaper) {
- var editionModel = newspaper.getEditionModel();
+ if (editionModel) {
+ var firstPage = editionModel.getFirstPage();
- if (editionModel) {
- var firstPage = editionModel.getFirstPage();
-
- if (firstPage) {
- (0, _$$_REQUIRE(_dependencyMap[38]).sendNewsmemoryEditionLoad)(editionModel, firstPage);
- }
+ if (firstPage) {
+ (0, _$$_REQUIRE(_dependencyMap[38]).sendNewsmemoryEditionLoad)(editionModel, firstPage);
}
}
});
@@ -308223,8 +308647,14 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
case "openEpaperCoordinates":
var edition = value.edition,
issue = value.issue,
- article = value.article,
- page = value.page;
+ page = value.page,
+ article = value.article;
+ global.updateNewsmemoryStartupParams({
+ issue: issue,
+ edition: edition,
+ goTo: page,
+ artid: article
+ });
break;
}
}
@@ -308437,14 +308867,12 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}, {
key: "_onOptionPageOpened",
value: function _onOptionPageOpened() {
+ var _this$newsmemoryRef;
+
this.isOptionPageOpened = true;
-
- if (this.newsmemoryRef) {
- this.newsmemoryRef.setNativeProps({
- pointerEvents: "none"
- });
- }
-
+ (_this$newsmemoryRef = this.newsmemoryRef) == null ? undefined : _this$newsmemoryRef.setNativeProps({
+ pointerEvents: "none"
+ });
this.updateStatusBarColor();
}
}, {
@@ -308460,25 +308888,21 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}, {
key: "_onOptionPageClosed",
value: function _onOptionPageClosed() {
+ var _this$newsmemoryRef2;
+
this.isOptionPageOpened = false;
this.optFromBackButton = false;
-
- if (this.newsmemoryRef) {
- this.newsmemoryRef.setNativeProps({
- pointerEvents: "auto"
- });
- }
-
+ (_this$newsmemoryRef2 = this.newsmemoryRef) == null ? undefined : _this$newsmemoryRef2.setNativeProps({
+ pointerEvents: "auto"
+ });
this.updateStatusBarColor();
}
}, {
key: "_canOptionPageBeClosed",
value: function _canOptionPageBeClosed() {
- if (this.newsmemoryManager && this.newsmemoryManager.currentNewspaperManager) {
- return !!this.newsmemoryManager.currentNewspaperManager.getCurrentNewspaper();
- }
+ var _this$newsmemoryManag3, _this$newsmemoryManag4;
- return false;
+ return !!((_this$newsmemoryManag3 = this.newsmemoryManager) != null && (_this$newsmemoryManag4 = _this$newsmemoryManag3.currentNewspaperManager) != null && _this$newsmemoryManag4.getCurrentNewspaper());
}
}, {
key: "_displayOfflineIssues",
@@ -308491,11 +308915,13 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
} catch (e) {}
if (issues.length > 0) {
+ var _this$newsmemoryManag5, _this$newsmemoryManag6;
+
var loaded = this.state.loaded;
- var currentNewspaper = this.newsmemoryManager && this.newsmemoryManager.currentNewspaperManager && this.newsmemoryManager.currentNewspaperManager.getCurrentNewspaper();
- var editionModel = currentNewspaper && currentNewspaper.getEditionModel();
- var currentIssue = editionModel && editionModel.getIssue();
- var currentEdition = editionModel && editionModel.getEdition();
+ var currentNewspaper = (_this$newsmemoryManag5 = this.newsmemoryManager) == null ? undefined : (_this$newsmemoryManag6 = _this$newsmemoryManag5.currentNewspaperManager) == null ? undefined : _this$newsmemoryManag6.getCurrentNewspaper();
+ var editionModel = currentNewspaper == null ? undefined : currentNewspaper.getEditionModel();
+ var currentIssue = editionModel == null ? undefined : editionModel.getIssue();
+ var currentEdition = editionModel == null ? undefined : editionModel.getEdition();
var _global$getEpaperLayo = global.getEpaperLayoutConfig(),
mainFooter = _global$getEpaperLayo.mainFooter;
@@ -308729,7 +309155,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
navigation: _propTypes.default.object,
tab: _propTypes.default.string
};
-},2293,[3,33,270,6,7,11,85,13,14,582,16,18,407,1917,1920,2001,860,2294,2295,2032,436,2234,1919,1945,629,881,2235,859,1947,2308,2309,2311,2314,2315,2318,2319,564,438,2019,2117,817,2271,880,814,928,1986,2051,179,819,2009,2320,2416,2279]);
+},2295,[3,33,270,6,7,11,85,13,14,582,16,18,407,1917,1920,2001,860,2296,2297,2032,436,2236,1919,1945,629,881,2237,859,1947,2310,2311,2313,2316,2317,2320,2321,564,438,2019,2117,817,2273,880,814,928,1986,2051,179,819,2009,2322,2418,2281]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -308839,6 +309265,8 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
key: "load",
value: function () {
var _load = (0, _asyncToGenerator2.default)(function* (tab) {
+ var _status2;
+
var status;
var lastIssue;
var lastEdition;
@@ -308851,6 +309279,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
var isForcedIssue = global.isIssueInNewsmemoryStartupParams();
+ var isForcedEdition = global.isEditionInNewsmemoryStartupParams();
if (isForcedIssue) {
var _NewsmemoryUtils$getS = _newsmemoryUtils.default.getStatusFromStartupParams(global.getNewsmemoryStartupParams());
@@ -308868,7 +309297,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
var code = e.code,
message = e.message;
- if (code === _LoginManager.PROT_ERROR.NOT_LOGGEDIN && !lastIssue && !tab) {
+ if (code === _LoginManager.PROT_ERROR.NOT_LOGGEDIN && !lastIssue && !lastEdition && !tab) {
var issueToLoad = yield this.handleNotLoggedUser(lastIssue, lastEdition);
if (issueToLoad) {
@@ -308912,12 +309341,10 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
optionspageConfig = _global$getActivePSet.optionspageConfig,
loginStatus = _global$getActivePSet.loginStatus;
- if (status) {
- status.setLastMostRecentIssueOnServer(mostRecentIssueOnServer);
- }
+ (_status2 = status) == null ? undefined : _status2.setLastMostRecentIssueOnServer(mostRecentIssueOnServer);
if (_$$_REQUIRE(_dependencyMap[14]).NetworkUtils.isOnline() && (!lastOperationTimestamp || Math.abs(new Date().getTime() - lastOperationTimestamp) > timeLimitCheckEdition)) {
- if (isForcedIssue) {
+ if (isForcedIssue || isForcedEdition) {
this.downloadPublication(lastIssue, lastEdition);
} else {
if (optionspageConfig.alwaysOpenAtStartup()) {
@@ -309159,11 +309586,11 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
if (_$$_REQUIRE(_dependencyMap[14]).NetworkUtils.isOnline()) {
result = yield this.getEdition(issue);
} else if (this.currentNewspaperManager) {
- var _status2 = this.currentNewspaperManager.status;
+ var _status3 = this.currentNewspaperManager.status;
- if (_status2) {
- var _lastIssue = _status2.lastIssue,
- _lastEdition = _status2.lastEdition;
+ if (_status3) {
+ var _lastIssue = _status3.lastIssue,
+ _lastEdition = _status3.lastEdition;
result = {
issue: issue || _lastIssue,
edition: _lastEdition
@@ -309453,7 +309880,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}();
var _default = exports.default = NewsmemoryManager;
-},2294,[3,270,6,7,2001,436,1919,629,880,859,860,2114,2295,2305,438,564,2020,2307,814,586,866]);
+},2296,[3,270,6,7,2001,436,1919,629,880,859,860,2114,2297,2307,438,564,2020,2309,814,586,866]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -310622,6 +311049,10 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
var lastPage = _pageUtils.default.getPageByPageNumber(editionModel.getPages(), lastPageNumber);
+ if (!lastPage && _newsmemoryUtils.default.isTrialModeEnabled(newspaper)) {
+ lastPage = editionModel.getLastPage();
+ }
+
if (!lastPage) {
this.setCurrentPage();
return;
@@ -311658,7 +312089,8 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
var currentNewspaper = this.getCurrentNewspaper();
var _global$getActivePSet3 = global.getActivePSetup(),
- seeNewspaperPreview = _global$getActivePSet3.seeNewspaperPreview;
+ seeNewspaperPreview = _global$getActivePSet3.seeNewspaperPreview,
+ ignoreLiteIpaddb = _global$getActivePSet3.ignoreLiteIpaddb;
if (!seeNewspaperPreview) {
_$$_REQUIRE(_dependencyMap[32]).EventRegister.emit(_events.default.NEWSMEMORY_UPDATE_REQUESTED);
@@ -311684,7 +312116,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
var wasLite = editionModel.isLite;
var issueId = editionModel.getIssueId();
- var isLite = newsmemoryLiteIssue === 1;
+ var isLite = !ignoreLiteIpaddb && newsmemoryLiteIssue === 1;
editionModel.setIsLite(isLite);
if (wasLite && !isLite) {
@@ -312218,7 +312650,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}()
}]);
}();
-},2295,[3,4,22,270,6,7,407,2001,436,2242,629,880,858,566,667,587,666,859,670,860,2296,2298,406,2297,2300,2301,2302,2303,2304,2114,2305,2032,564,2306,438,588,2048,586,2020,2019,2307,814,1904]);
+},2297,[3,4,22,270,6,7,407,2001,436,2244,629,880,858,566,667,587,666,859,670,860,2298,2300,406,2299,2302,2303,2304,2305,2306,2114,2307,2032,564,2308,438,588,2048,586,2020,2019,2309,814,1904]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -312589,15 +313021,22 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
newspaper.setEdition(edition);
newspaper.setPages(pages);
- var isLite = yield this.isLite(issue);
- if (isLite === undefined) {
- var _global$getActivePSet = global.getActivePSetup();
+ var _global$getActivePSet = global.getActivePSetup(),
+ isLite = _global$getActivePSet.isLite,
+ ignoreLiteIpaddb = _global$getActivePSet.ignoreLiteIpaddb;
- isLite = _global$getActivePSet.isLite;
+ var isLiteValue;
+
+ if (ignoreLiteIpaddb) {
+ isLiteValue = isLite;
+ } else {
+ var _yield$this$isLite;
+
+ isLiteValue = (_yield$this$isLite = yield this.isLite(issue)) != null ? _yield$this$isLite : isLite;
}
- newspaper.setIsLite(isLite);
+ newspaper.setIsLite(isLiteValue);
newspaper.setCustomIndexModifyTime(parseInt(customIndexMTime, 10));
newspaper.setCustomIndexHtml(customIndexHtml);
return newspaper;
@@ -312743,7 +313182,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
try {
var result = yield this.database.executeSqlNoTx("SELECT pages.filename FROM pages, issues WHERE " + ("issues.issueId = pages.issueId AND issues.issue = '" + issue + "' ") + "AND pages.type = 'LT' LIMIT 1");
- if (result && result.item(0)) {
+ if (result != null && result.item(0)) {
var _result$item2 = result.item(0),
filename = _result$item2.filename;
@@ -312828,7 +313267,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}()
}]);
}();
-},2296,[3,270,6,7,566,666,667,587,670,2297,861,2299,2298,438]);
+},2298,[3,270,6,7,566,666,667,587,670,2299,861,2301,2300,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -314289,7 +314728,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}()
}]);
}();
-},2297,[3,22,270,6,7,2248,2001,436,434,586,629,2003,566,667,587,859,670,860,2298,406,564,438,2011,588]);
+},2299,[3,22,270,6,7,2250,2001,436,434,586,629,2003,566,667,587,859,670,860,2300,406,564,438,2011,588]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -314528,7 +314967,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
}]);
}();
-},2298,[3,33,6,7,629,664,665,666,667,587,671,670,668,669,438]);
+},2300,[3,33,6,7,629,664,665,666,667,587,671,670,668,669,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -314617,7 +315056,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
}]);
}();
-},2299,[3,6,7,664,665,666,667,587,671,670,668,669,438]);
+},2301,[3,6,7,664,665,666,667,587,671,670,668,669,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -314674,7 +315113,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
}]);
}();
-},2300,[3,6,7]);
+},2302,[3,6,7]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -314730,7 +315169,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
}]);
}(_DownloadOperation2.default);
-},2301,[3,6,7,11,13,14,2300,670]);
+},2303,[3,6,7,11,13,14,2302,670]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -314768,7 +315207,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
(0, _inherits2.default)(SingleHRZipDownloadOperation, _DownloadOperation);
return (0, _createClass2.default)(SingleHRZipDownloadOperation);
}(_DownloadOperation2.default);
-},2302,[3,7,6,11,13,14,2300,670]);
+},2304,[3,7,6,11,13,14,2302,670]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -314820,7 +315259,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
}]);
}(_DownloadOperation2.default);
-},2303,[3,6,7,11,13,14,2300,670,587]);
+},2305,[3,6,7,11,13,14,2302,670,587]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -314858,7 +315297,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
(0, _inherits2.default)(SingleZipDownloadOperation, _DownloadOperation);
return (0, _createClass2.default)(SingleZipDownloadOperation);
}(_DownloadOperation2.default);
-},2304,[3,7,6,11,13,14,2300,670]);
+},2306,[3,7,6,11,13,14,2302,670]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -315425,7 +315864,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
value: function purgeLog(message) {}
}]);
}();
-},2305,[3,270,6,7,566,859,670,861,860,2296,438]);
+},2307,[3,270,6,7,566,859,670,861,860,2298,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -315755,7 +316194,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}()
}]);
}();
-},2306,[3,270,6,7,629,2002]);
+},2308,[3,270,6,7,629,2002]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -315905,7 +316344,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
return _ref5.apply(this, arguments);
};
}();
-},2307,[3,270,860,2114,2032,436,564,814]);
+},2309,[3,270,860,2114,2032,436,564,814]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -316500,7 +316939,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
navigation: navigation
}));
};
-},2308,[3,270,6,7,11,85,13,14,582,16,1917,2001,860,2114,2294,2295,436,1919,2242,2149,881,880,868,859,1947,438,1904,564,1986,2307,2245,2263,928,179]);
+},2310,[3,270,6,7,11,85,13,14,582,16,1917,2001,860,2114,2296,2297,436,1919,2244,2150,881,880,868,859,1947,438,1904,564,1986,2309,2247,2265,928,179]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -316651,7 +317090,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
cssClasses: [],
cssTextClasses: []
};
-},2309,[3,4,6,7,11,13,14,16,18,582,2310,564,179,2009]);
+},2311,[3,4,6,7,11,13,14,16,18,582,2312,564,179,2009]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -316682,7 +317121,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
margin: 10
}
});
-},2310,[18]);
+},2312,[18]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -317335,7 +317774,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
navigation: navigation
}));
};
-},2311,[3,4,270,6,7,11,85,13,14,582,16,18,1917,2001,2114,2294,436,1919,434,2149,881,1985,1947,856,2312,1904,880,2277,2313,2116,870,564,1986,1921,438,1780,179,1978,1979,1989,819,2287,2057,928]);
+},2313,[3,4,270,6,7,11,85,13,14,582,16,18,1917,2001,2114,2296,436,1919,434,2150,881,1985,1947,856,2314,1904,880,2279,2315,2116,870,564,1986,1921,438,1780,179,1978,1979,1989,819,2289,2057,928]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -317448,7 +317887,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}();
var _default = exports.default = NativeOptionsPageUtils;
-},2312,[3,270,6,7,860,2294,2295,880,859,1904,438]);
+},2314,[3,270,6,7,860,2296,2297,880,859,1904,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -317619,7 +318058,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
});
return _completeTransaction.apply(this, arguments);
}
-},2313,[3,270,2242,881,880,2245,438]);
+},2315,[3,270,2244,881,880,2247,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -318189,7 +318628,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
navigation: navigation
}));
};
-},2314,[3,4,270,6,7,11,85,13,14,582,16,18,1917,2294,436,1919,2149,881,1985,1947,2312,1904,880,2277,2114,1780,2313,2116,564,1986,1921,438,179,1984,2057,928]);
+},2316,[3,4,270,6,7,11,85,13,14,582,16,18,1917,2296,436,1919,2150,881,1985,1947,2314,1904,880,2279,2114,1780,2315,2116,564,1986,1921,438,179,1984,2057,928]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -318545,7 +318984,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
OptionPageAccessibility.defaultProps = {
shortcutPriority: 0
};
-},2315,[3,270,6,7,11,13,14,582,16,18,1917,406,436,1919,1781,2055,816,2316,564,438,1780,2317,179,819,2058,2077]);
+},2317,[3,270,6,7,11,13,14,582,16,18,1917,406,436,1919,1781,2055,816,2318,564,438,1780,2319,179,819,2058,2077]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -318585,7 +319024,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
issue: {},
issueText: {}
});
-},2316,[18,438]);
+},2318,[18,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -318619,7 +319058,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
this.pathEdi = obj.pathEdi;
this.editionIndex = obj.editionIndex;
});
-},2317,[3,7,6]);
+},2319,[3,7,6]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -318868,7 +319307,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
onOpen: function onOpen() {},
onClose: function onClose() {}
};
-},2318,[3,270,6,7,11,13,14,582,16,18,891,2001,2295,436,629,868,2264,564,880,438,819,1989,179,1979,2278,1984]);
+},2320,[3,270,6,7,11,13,14,582,16,18,891,2001,2297,436,629,868,2266,564,880,438,819,1989,179,1979,2280,1984]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -318895,7 +319334,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
flex: 1
}
});
-},2319,[18]);
+},2321,[18]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -319357,12 +319796,10 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
try {
- if (currentNewspaperManager) {
- var currentNewspaper = currentNewspaperManager.getCurrentNewspaper();
+ var currentNewspaper = currentNewspaperManager == null ? undefined : currentNewspaperManager.getCurrentNewspaper();
- if (currentNewspaper) {
- (0, _$$_REQUIRE(_dependencyMap[39]).sendNewsmemoryRotateEvent)(orientation, currentNewspaper.getEditionModel());
- }
+ if (currentNewspaper) {
+ (0, _$$_REQUIRE(_dependencyMap[39]).sendNewsmemoryRotateEvent)(orientation, currentNewspaper.getEditionModel());
}
} catch (e) {}
@@ -321331,7 +321768,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
NewsmemoryLayoutManager.defaultProps = Object.assign({}, _$$_REQUIRE(_dependencyMap[50]).Shortcut.defaultProps, {
shortcutEnabled: true
});
-},2320,[3,270,240,6,7,11,85,13,14,582,16,18,405,2001,2295,436,434,629,858,667,587,666,859,670,2321,2323,2357,2324,2364,2398,2318,2404,2411,2412,438,2413,564,1921,1780,2019,2048,880,1904,866,1925,179,819,827,2414,2009,2057]);
+},2322,[3,270,240,6,7,11,85,13,14,582,16,18,405,2001,2297,436,434,629,858,667,587,666,859,670,2323,2325,2359,2326,2366,2400,2320,2406,2413,2414,438,2415,564,1921,1780,2019,2048,880,1904,866,1925,179,819,827,2416,2009,2057]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -321401,7 +321838,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
}]);
}();
-},2321,[3,6,7,16,816,2322,814,438,179,2058]);
+},2323,[3,6,7,16,816,2324,814,438,179,2058]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -321421,7 +321858,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
},
buttonText: {}
});
-},2322,[18]);
+},2324,[18]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -321774,7 +322211,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
ArticleModeManager.defaultProps = Object.assign({}, _$$_REQUIRE(_dependencyMap[24]).Shortcut.defaultProps, {
indexMode: false
});
-},2323,[3,4,6,7,11,13,14,16,582,666,859,2077,2324,436,670,858,629,1947,438,564,880,819,179,2351,2057]);
+},2325,[3,4,6,7,11,13,14,16,582,666,859,2077,2326,436,670,858,629,1947,438,564,880,819,179,2353,2057]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -322684,7 +323121,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
NewsmemoryIndexLayoutManager.defaultProps = Object.assign({}, _$$_REQUIRE(_dependencyMap[39]).PureShortcut.defaultProps, {
indexLevel: 1
});
-},2324,[3,4,270,6,7,11,13,14,582,16,436,434,629,858,1923,1781,666,667,2049,859,670,1947,2264,2325,2327,2329,2334,2335,2345,2265,2349,2350,1921,438,2019,1780,564,179,819,2057,1911]);
+},2326,[3,4,270,6,7,11,13,14,582,16,436,434,629,858,1923,1781,666,667,2049,859,670,1947,2266,2327,2329,2331,2336,2337,2347,2267,2351,2352,1921,438,2019,1780,564,179,819,2057,1911]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -322861,7 +323298,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
var _default = exports.default = HeaderInfo;
-},2325,[3,33,582,16,18,816,2326,564,438,179,819,2058]);
+},2327,[3,33,582,16,18,816,2328,564,438,179,819,2058]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -322897,7 +323334,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
fontStyle: "italic"
}
});
-},2326,[18,827]);
+},2328,[18,827]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -322970,7 +323407,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
SubHeaderComponent.defaultProps = {
cssClasses: []
};
-},2327,[3,6,7,11,13,14,16,582,18,2328,179,819]);
+},2329,[3,6,7,11,13,14,16,582,18,2330,179,819]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -322990,7 +323427,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
justifyContent: "flex-end"
}
});
-},2328,[18,827]);
+},2330,[18,827]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -323073,7 +323510,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
}]);
}(_indexBaseComponent.default);
-},2329,[3,6,7,11,13,14,16,407,868,1972,2076,2330,819,2047,2050,2333,179,1978,1979]);
+},2331,[3,6,7,11,13,14,16,407,868,1972,2076,2332,819,2047,2050,2335,179,1978,1979]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -323490,7 +323927,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
enableSeparator: true,
fullscreen: false
});
-},2330,[3,22,6,7,11,13,14,16,18,582,1973,670,2076,2055,179,827,2077,438,2331,819,1978,629,2057]);
+},2332,[3,22,6,7,11,13,14,16,18,582,1973,670,2076,2055,179,827,2077,438,2333,819,1978,629,2057]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -323772,7 +324209,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}))
});
};
-},2331,[3,582,16,18,434,629,858,1781,667,670,816,2332,2076,438,179,819,2058]);
+},2333,[3,582,16,18,434,629,858,1781,667,670,816,2334,2076,438,179,819,2058]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -323989,7 +324426,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
style: _propTypes.default.any,
page: _propTypes.default.instanceOf(_Page.default)
};
-},2332,[3,4,270,6,7,11,13,14,582,16,18,566,587,670,588,438,179,2009]);
+},2334,[3,4,270,6,7,11,13,14,582,16,18,566,587,670,588,438,179,2009]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -324003,7 +324440,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
var getCustomIndexIframeDefinition = exports.getCustomIndexIframeDefinition = function getCustomIndexIframeDefinition() {
return "\n ";
};
-},2333,[]);
+},2335,[]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -324197,7 +324634,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
NewsmemoryIndex.propTypes = {
title: _propTypes.default.string
};
-},2334,[3,22,6,7,11,13,14,582,16,434,858,2330,1780,2331,629,179]);
+},2336,[3,22,6,7,11,13,14,582,16,434,858,2332,1780,2333,629,179]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -324514,7 +324951,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
NewsmemorySecondIndex.defaultProps = Object.assign({}, _indexBaseComponent.default.defaultProps, {
secondLevelIndex: 0
});
-},2335,[3,22,6,7,11,85,13,14,16,582,2336,2330,670,629,2331,1780,179]);
+},2337,[3,22,6,7,11,85,13,14,16,582,2338,2332,670,629,2333,1780,179]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -324752,7 +325189,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
showIndicators: false,
skipChildMemo: false
};
-},2336,[3,6,7,11,13,14,582,16,18,1753,434,2337,2342,2343,1,438,179]);
+},2338,[3,6,7,11,13,14,582,16,18,1753,434,2339,2344,2345,1,438,179]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -324907,7 +325344,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
var _default = exports.default = EInkNavigationButtons;
-},2337,[3,33,4,16,582,18,2338,179,819,2340,2341]);
+},2339,[3,33,4,16,582,18,2340,179,819,2342,2343]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -324957,7 +325394,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
var _default = exports.default = EInkButton;
-},2338,[3,16,582,18,2339,179,819]);
+},2340,[3,16,582,18,2341,179,819]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -324996,7 +325433,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
var _default = exports.default = ButtonIcon;
-},2339,[3,16,582,1976,179,819]);
+},2341,[3,16,582,1976,179,819]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
module.exports = _$$_REQUIRE(_dependencyMap[0]).registerAsset({
"__packager_asset": true,
@@ -325008,7 +325445,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
"name": "ic-left-button",
"type": "png"
});
-},2340,[1031]);
+},2342,[1031]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
module.exports = _$$_REQUIRE(_dependencyMap[0]).registerAsset({
"__packager_asset": true,
@@ -325020,7 +325457,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
"name": "ic-right-button",
"type": "png"
});
-},2341,[1031]);
+},2343,[1031]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -325079,7 +325516,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
});
var _default = exports.default = ViewPagerChild;
-},2342,[3,16,582,18,629,179,2009]);
+},2344,[3,16,582,18,629,179,2009]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -325133,7 +325570,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
var _default = exports.default = Indicators;
-},2343,[3,16,582,18,2344,179,438]);
+},2345,[3,16,582,18,2346,179,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -325164,7 +325601,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
marginBottom: 3
}
});
-},2344,[18,438]);
+},2346,[18,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -325325,7 +325762,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
supportColor: global.getRssIndex()
});
}
-},2345,[3,4,16,2086,434,667,859,2183,2346,438,2044,2093,2156,2048,2143,179,2331,2151,819]);
+},2347,[3,4,16,2086,434,667,859,2184,2348,438,2044,2093,2157,2048,2144,179,2333,2152,819]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -325426,7 +325863,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
var _default = exports.default = TabNavigator;
-},2346,[3,4,582,16,18,2347,1739,179,438]);
+},2348,[3,4,582,16,18,2349,1739,179,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -325662,7 +326099,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
var _default = exports.default = TabBar;
-},2347,[3,22,33,16,18,582,2348,438,179]);
+},2349,[3,22,33,16,18,582,2350,438,179]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -325748,7 +326185,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
var _default = exports.default = TabItem;
-},2348,[3,16,18,582,1976,816,438,179]);
+},2350,[3,16,18,582,1976,816,438,179]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -325963,7 +326400,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
rightButtons: [],
cssButtonClasses: []
};
-},2349,[3,22,6,7,11,13,14,16,582,18,1780,819,438,827,179,1860]);
+},2351,[3,22,6,7,11,13,14,16,582,18,1780,819,438,827,179,1860]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -326127,7 +326564,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
active: false,
cssProps: {}
};
-},2350,[3,4,6,7,11,13,14,16,582,2265,564,179]);
+},2352,[3,4,6,7,11,13,14,16,582,2267,564,179]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -328474,7 +328911,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
NewsmemoryArticleLayoutManager.defaultProps = Object.assign({}, _$$_REQUIRE(_dependencyMap[54]).Shortcut.defaultProps, {
header: false
});
-},2351,[3,270,6,7,11,85,13,14,582,16,18,2001,406,2002,2059,436,2352,434,629,858,2003,566,1781,666,667,859,670,2061,2336,1972,2353,2264,2354,2325,2327,2355,2265,2349,2350,2356,1780,564,438,1921,1926,2025,1986,2045,179,2019,2052,819,866,2044,2057,1911]);
+},2353,[3,270,6,7,11,85,13,14,582,16,18,2001,406,2002,2059,436,2354,434,629,858,2003,566,1781,666,667,859,670,2061,2338,1972,2355,2266,2356,2327,2329,2357,2267,2351,2352,2358,1780,564,438,1921,1926,2025,1986,2045,179,2019,2052,819,866,2044,2057,1911]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -328948,7 +329385,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}()
}]);
}();
-},2352,[3,270,6,7,18,2015,567,406,666,667,859,670,566,1985,1986,1926,1925,2019,438,866,586]);
+},2354,[3,270,6,7,18,2015,567,406,666,667,859,670,566,1985,1986,1926,1925,2019,438,866,586]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -329130,7 +329567,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
level: DEFAULT_LEVEL,
visible: false
};
-},2353,[3,6,7,11,13,14,16,18,582,816,436,564,179,819,827]);
+},2355,[3,6,7,11,13,14,16,18,582,816,436,564,179,819,827]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -329202,7 +329639,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
var _default = exports.default = FlagIconComponent;
-},2354,[3,22,4,16,582,18,1976,2032,816,438,1780,179,819]);
+},2356,[3,22,4,16,582,18,1976,2032,816,438,1780,179,819]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -329375,7 +329812,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
badgeIcon: undefined,
cssBadgeClasses: []
};
-},2355,[3,6,7,11,85,13,14,16,582,18,2265,2266,1976,564,438,179,819]);
+},2357,[3,6,7,11,85,13,14,16,582,18,2267,2268,1976,564,438,179,819]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -329429,7 +329866,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
flex: 1
}
});
-},2356,[18,827]);
+},2358,[18,827]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -330126,7 +330563,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
isItemPresent: _propTypes.default.func,
style: _propTypes.default.any
}, _$$_REQUIRE(_dependencyMap[33]).Shortcut.propTypes);
-},2357,[3,270,22,6,7,11,85,13,14,582,16,18,2001,2295,436,434,2149,1923,1947,1976,2358,564,1921,819,438,1780,179,2052,880,814,2211,2359,2363,2057,1901]);
+},2359,[3,270,22,6,7,11,85,13,14,582,16,18,2001,2297,436,434,2150,1923,1947,1976,2360,564,1921,819,438,1780,179,2052,880,814,2213,2361,2365,2057,1901]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -330492,7 +330929,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
duration: _$$_REQUIRE(_dependencyMap[12]).HIDE_ANIMATION_DURATION,
hideAfter: _$$_REQUIRE(_dependencyMap[12]).HIDE_ANIMATION_TIMER
};
-},2358,[3,4,6,7,11,13,14,16,582,18,564,179,827]);
+},2360,[3,4,6,7,11,13,14,16,582,18,564,179,827]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -330713,7 +331150,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
}]);
}(_$$_REQUIRE(_dependencyMap[18]).NewsMemoryFooterIcon);
-},2359,[3,6,7,11,85,13,14,16,436,2360,564,859,814,438,1780,179,2009,2362,2363]);
+},2361,[3,6,7,11,85,13,14,16,436,2362,564,859,814,438,1780,179,2009,2364,2365]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -330861,7 +331298,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
cssTextClasses: [],
cssTextParentClasses: []
};
-},2360,[3,6,7,11,13,14,16,18,154,582,2361,1976,179,2362,819]);
+},2362,[3,6,7,11,13,14,16,18,154,582,2363,1976,179,2364,819]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -330984,7 +331421,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
cssClasses: [],
cssParentClasses: []
};
-},2361,[3,270,6,7,11,13,14,16,582,18,816,438,179,819,2362]);
+},2363,[3,270,6,7,11,13,14,16,582,18,816,438,179,819,2364]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -331018,7 +331455,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
fontSize: 12
}
});
-},2362,[18]);
+},2364,[18]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -331253,7 +331690,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
active: false,
visible: true
});
-},2363,[3,270,6,7,11,13,14,16,582,18,816,2360,179,438,819,2362,2057,1860]);
+},2365,[3,270,6,7,11,13,14,16,582,18,816,2362,179,438,819,2364,2057,1860]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -331940,7 +332377,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
pageNumberTop: true,
isSpecialSection: false
});
-},2364,[3,270,6,7,11,85,13,14,582,16,18,2001,436,2234,629,858,859,670,2365,2384,564,438,1921,2019,179,2057,1916]);
+},2366,[3,270,6,7,11,85,13,14,582,16,18,2001,436,2236,629,858,859,670,2367,2386,564,438,1921,2019,179,2057,1916]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -333331,7 +333768,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
numberOfShowedPages: 1,
initialEvent: undefined
});
-},2365,[3,270,22,6,7,11,85,13,14,582,16,2001,436,629,858,664,667,859,670,2366,1997,2367,2374,438,564,1921,671,1986,2019,179,2057]);
+},2367,[3,270,22,6,7,11,85,13,14,582,16,2001,436,629,858,664,667,859,670,2368,1997,2369,2376,438,564,1921,671,1986,2019,179,2057]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -333459,7 +333896,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
}]);
}();
-},2366,[3,6,7]);
+},2368,[3,6,7]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -333630,7 +334067,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
clickPosition.width = contentSize.width;
clickPosition.height = contentSize.height;
- if (size && size.height && clickPosition.scale >= 1 && clickPosition.height * clickPosition.scale > size.height && clickPosition.y * clickPosition.scale > size.height) {
+ if (size != null && size.height && clickPosition.scale >= 1 && clickPosition.height * clickPosition.scale > size.height && clickPosition.y * clickPosition.scale > size.height) {
panY -= Math.min(Math.max(0, clickPosition.y), contentSize.height - size.height);
}
}
@@ -334153,7 +334590,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
twoFingerTapEnabled: false,
cssContainerClasses: []
};
-},2367,[3,22,6,7,11,13,14,582,16,18,673,2005,2368,2006,2369,2373,438,672,179,1,819]);
+},2369,[3,22,6,7,11,13,14,582,16,18,673,2005,2370,2006,2371,2375,438,672,179,1,819]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -334398,7 +334835,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
}]);
}();
-},2368,[3,6,7,2366,438]);
+},2370,[3,6,7,2368,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -335031,7 +335468,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
}]);
}();
-},2369,[3,33,6,7,673,1997,1,2370,2371,2372,672]);
+},2371,[3,33,6,7,673,1997,1,2372,2373,2374,672]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -335133,7 +335570,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
startStopClock: false
})), (0, _$$_REQUIRE(_dependencyMap[4]).runTiming)(clock, value, rest)], cond(pinchEnd, [set(displacementX, focalXRest), set(displacementY, focalYRest), set(finishPinch, 1), debug("PINCH SCALE TO END: ", rest), rest], [debug("PINCH SCALE START: ", value), set(isStartScaleEqualToMinScale, cond(eq(value, minScale), 1, 0)), cond(or(pinchStart, eq(starting, 1)), [set(starting, 0), call([starting], onStart)]), value])))))), set(leftLimit, leftConstraint(scaleToRet, minScale, displacementX)), set(topLimit, topConstraint(scaleToRet, minScale, displacementY)), set(rightLimit, rightConstraint(leftLimit, scaleToRet, width, nPages, pagesVisible)), set(bottomLimit, bottomConstraint(topLimit, scaleToRet, minScale, height, viewHeight)), set(fit, fitValue(scaleToRet, width, viewWidth)), set(horizontalMargin, hMargin(scaleToRet, minScale, width, viewWidth, pagesVisible)), cond(eq(finishPinch, 1), [call([leftLimit, topLimit, rightLimit, bottomLimit], onUpdateLimit), cond(isFitted, call([], onFit), call([], onUnFit)), call([scaleToRet, displacementX, displacementY, zoomToActive], onEnd), set(finishPinch, 0), set(pinchOldState, _$$_REQUIRE(_dependencyMap[3]).State.UNDETERMINED), set(prevPinchScale, 1), set(pinchScale, 1)]), scaleToRet];
}
-},2370,[3,673,1997,1,672]);
+},2372,[3,673,1997,1,672]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -335187,7 +335624,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
var maxVelocityXCondition = greaterThan(abs(velocityX), abs(maxVelocityX));
return block([cond(notSet, [set(maxVelocityX, 0), set(tempDragX, 0)]), cond(enableDirectionSet, [cond(enableX, set(direction, Direction.EnableX)), cond(enable, set(direction, Direction.Enable)), cond(enableY, set(direction, Direction.EnableY))]), cond(eq(direction, Direction.EnableX), [set(velocityY, 0), set(dragY, 0)]), cond(eq(direction, Direction.EnableY), [cond(and(panActive, maxVelocityXCondition), set(maxVelocityX, velocityX)), cond(swipeCondition, [set(tempDragX, dragX)]), cond(panEnd, set(dragX, tempDragX), set(dragX, 0))]), cond(panEnd, [set(direction, Direction.NotSet)])]);
};
-},2371,[673,3,1997]);
+},2373,[673,3,1997]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -335360,7 +335797,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
duration: _zoomConstants.default.constants.ZOOM_TO_DURATION
})), set(value, panRest(top, bottom, add(tempPan, tempDragY))), cond(not(clockRunning(zoomClock)), [set(tempDragY, 0), set(zoomToDragY, 0), call([value], onEnd)]), value], cond([diffY, velocityY, panActive], [stopClock(clockMagnetic), cond(not(isScaling), cond(greaterThan(abs(velocityY), 0), set(maxVelocityY, velocityY)), set(maxVelocityY, 0)), cond(and(eq(bottomReachedCalled, 0), (0, _reactNativeReanimated.lessOrEq)(value, bottom), lessThan(drag, -_zoomConstants.default.constants.VERTICAL_THRESHOLD)), [set(bottomReachedCalled, 1), call([], onBottomReached)]), set(velocityY, 0), debug("VELOCITY Y: ", maxVelocityY), panRest(top, bottom, add(value, diffY))], cond(and(panEnd, not(panCancelled)), cond(isMagneting, [set(nextMagneticValue, (0, _$$_REQUIRE(_dependencyMap[5]).runTiming)(clockMagnetic, rest, magneticDestination)), cond(not(clockRunning(clockMagnetic)), [debug("MAGNETIC END Y: ", nextMagneticValue), set(bottomReachedCalled, 0), set(maxVelocityY, 0), call([nextMagneticValue], onEnd)]), nextMagneticValue], [debug("PAN END Y: ", rest), stopClock(zoomClock), call([rest], onEnd), set(bottomReachedCalled, 0), set(maxVelocityY, 0), rest]), [cond(panStart, [debug("PAN START Y: ", value), call([], onStart)]), cond(panCancelled, [debug("PAN CANCELLED Y: ", value), stopClock(clockMagnetic), call([rest], onEnd), set(bottomReachedCalled, 0), set(maxVelocityY, 0)]), rest]))))];
}
-},2372,[673,3,1997,438,1,672]);
+},2374,[673,3,1997,438,1,672]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -335403,7 +335840,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
backgroundColor: _$$_REQUIRE(_dependencyMap[1]).colors.white
}
});
-},2373,[18,438]);
+},2375,[18,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -336133,7 +336570,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
showBorder: false,
loginOverlayPosition: _$$_REQUIRE(_dependencyMap[30]).PageViewPosition.CENTER
};
-},2374,[3,6,7,11,13,14,582,16,18,2001,436,629,859,670,2375,2041,2376,2377,2013,2378,2379,2380,2383,866,564,438,586,587,179,667,858]);
+},2376,[3,6,7,11,13,14,582,16,18,2001,436,629,859,670,2377,2041,2378,2379,2013,2380,2381,2382,2385,866,564,438,586,587,179,667,858]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -336394,7 +336831,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
page: _propTypes.default.instanceOf(_Page.default),
style: _propTypes.default.any
};
-},2375,[3,4,270,6,7,11,13,14,16,18,891,582,670,2234,438,1,579,179]);
+},2377,[3,4,270,6,7,11,13,14,16,18,891,582,670,2236,438,1,579,179]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -336599,7 +337036,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
minZoom: 1,
hidden: false
};
-},2376,[3,33,6,7,11,13,14,582,16,18,666,670,816,438,179,819]);
+},2378,[3,33,6,7,11,13,14,582,16,18,666,670,816,438,179,819]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -336692,7 +337129,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
}]);
}(_react.default.PureComponent);
-},2377,[3,6,7,11,13,14,16,18,179,819,438]);
+},2379,[3,6,7,11,13,14,16,18,179,819,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -336970,7 +337407,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}).isRequired,
fitWidth: _propTypes.default.bool
};
-},2378,[3,6,7,11,13,14,16,582,18,1137,436,629,664,2001,2014,671,670,564,438,179]);
+},2380,[3,6,7,11,13,14,16,582,18,1137,436,629,664,2001,2014,671,670,564,438,179]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -337061,7 +337498,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
PageImage.defaultProps = {
show: true
};
-},2379,[3,4,6,7,11,13,14,16,582,587,566,588,438,179,2009]);
+},2381,[3,4,6,7,11,13,14,16,582,587,566,588,438,179,2009]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -337203,7 +337640,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
left: _propTypes.default.number
})
};
-},2380,[3,6,7,11,13,14,2381,582,16,18,566,587,859,670,2382,2379,179,438]);
+},2382,[3,6,7,11,13,14,2383,582,16,18,566,587,859,670,2384,2381,179,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -337373,7 +337810,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
blackAndWhite: false,
enableThumbnail: false
};
-},2381,[3,4,6,7,11,13,14,16,582,18,438,179,597]);
+},2383,[3,4,6,7,11,13,14,16,582,18,438,179,597]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -337622,7 +338059,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
PageHr.defaultProps = {
showAll: true
};
-},2382,[3,6,7,11,13,14,16,582,18,670,629,436,859,587,2010,438,564,179]);
+},2384,[3,6,7,11,13,14,16,582,18,670,629,436,859,587,2010,438,564,179]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -337650,7 +338087,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
color: _$$_REQUIRE(_dependencyMap[1]).colors.black
}
});
-},2383,[18,438]);
+},2385,[18,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -338061,7 +338498,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
animateButtons: false
}
};
-},2384,[3,4,6,7,11,13,14,582,16,18,436,629,666,1976,2360,2385,2386,2388,2397,438,564,179,1,814,1780,1861,1916]);
+},2386,[3,4,6,7,11,13,14,582,16,18,436,629,666,1976,2362,2387,2388,2390,2399,438,564,179,1,814,1780,1861,1916]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -338129,7 +338566,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
PagesBackToPaperButton.propTypes = {
onPress: _propTypes.default.func.isRequired
};
-},2385,[3,6,7,11,13,14,16,582,18,2386,588,179,2387]);
+},2387,[3,6,7,11,13,14,16,582,18,2388,588,179,2389]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -338234,7 +338671,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
height: 23
}
});
-},2386,[18,438,827]);
+},2388,[18,438,827]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
module.exports = _$$_REQUIRE(_dependencyMap[0]).registerAsset({
"__packager_asset": true,
@@ -338246,7 +338683,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
"name": "ic-back-to-paper",
"type": "png"
});
-},2387,[1031]);
+},2389,[1031]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -338549,7 +338986,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
PagesNavigationButtons.defaultProps = {
version: 2
};
-},2388,[3,6,7,11,13,14,16,582,18,2386,2006,436,2358,1976,2389,2390,2391,2392,2393,2394,2395,2396,179,819,438,1916]);
+},2390,[3,6,7,11,13,14,16,582,18,2388,2006,436,2360,1976,2391,2392,2393,2394,2395,2396,2397,2398,179,819,438,1916]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
module.exports = _$$_REQUIRE(_dependencyMap[0]).registerAsset({
"__packager_asset": true,
@@ -338561,7 +338998,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
"name": "ic-back-button",
"type": "png"
});
-},2389,[1031]);
+},2391,[1031]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
module.exports = _$$_REQUIRE(_dependencyMap[0]).registerAsset({
"__packager_asset": true,
@@ -338573,7 +339010,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
"name": "ic-back-section-button",
"type": "png"
});
-},2390,[1031]);
+},2392,[1031]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
module.exports = _$$_REQUIRE(_dependencyMap[0]).registerAsset({
"__packager_asset": true,
@@ -338585,7 +339022,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
"name": "ic-forward-button",
"type": "png"
});
-},2391,[1031]);
+},2393,[1031]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
module.exports = _$$_REQUIRE(_dependencyMap[0]).registerAsset({
"__packager_asset": true,
@@ -338597,7 +339034,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
"name": "ic-forward-section-button",
"type": "png"
});
-},2392,[1031]);
+},2394,[1031]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
module.exports = _$$_REQUIRE(_dependencyMap[0]).registerAsset({
"__packager_asset": true,
@@ -338609,7 +339046,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
"name": "ic-back-button",
"type": "png"
});
-},2393,[1031]);
+},2395,[1031]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
module.exports = _$$_REQUIRE(_dependencyMap[0]).registerAsset({
"__packager_asset": true,
@@ -338621,7 +339058,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
"name": "ic-back-section-button",
"type": "png"
});
-},2394,[1031]);
+},2396,[1031]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
module.exports = _$$_REQUIRE(_dependencyMap[0]).registerAsset({
"__packager_asset": true,
@@ -338633,7 +339070,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
"name": "ic-forward-button",
"type": "png"
});
-},2395,[1031]);
+},2397,[1031]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
module.exports = _$$_REQUIRE(_dependencyMap[0]).registerAsset({
"__packager_asset": true,
@@ -338645,7 +339082,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
"name": "ic-forward-section-button",
"type": "png"
});
-},2396,[1031]);
+},2398,[1031]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -338808,7 +339245,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
pagesAreaSize: _propTypes.default.object,
onPress: _propTypes.default.func
};
-},2397,[3,6,7,11,13,14,16,582,18,816,2358,436,179,819,1,2388]);
+},2399,[3,6,7,11,13,14,16,582,18,816,2360,436,179,819,1,2390]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -339198,7 +339635,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}).isRequired,
model: _propTypes.default.instanceOf(_$$_REQUIRE(_dependencyMap[29]).Header).isRequired
}, _$$_REQUIRE(_dependencyMap[28]).Shortcut.propTypes);
-},2398,[3,6,7,11,13,14,582,16,18,1920,629,858,666,667,670,2399,2055,816,2264,2401,1921,179,827,1780,819,2402,438,2077,2057,1911]);
+},2400,[3,6,7,11,13,14,582,16,18,1920,629,858,666,667,670,2401,2055,816,2266,2403,1921,179,827,1780,819,2404,438,2077,2057,1911]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -339319,7 +339756,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
cssClassesIcon: [],
cssClassesText: []
};
-},2399,[3,6,7,11,13,14,16,582,18,816,2400,1861,179,819,438]);
+},2401,[3,6,7,11,13,14,16,582,18,816,2402,1861,179,819,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -339341,7 +339778,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
textAlign: "center"
}
});
-},2400,[18]);
+},2402,[18]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -339406,7 +339843,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
color: _$$_REQUIRE(_dependencyMap[1]).SEARCH_COLOR
}
});
-},2401,[18,827,438]);
+},2403,[18,827,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -339651,7 +340088,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
borderRadius: 0,
autoFocus: false
};
-},2402,[3,270,6,7,11,13,14,582,16,18,2268,1861,819,438,179,2403]);
+},2404,[3,270,6,7,11,13,14,582,16,18,2270,1861,819,438,179,2405]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -339687,7 +340124,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
fontSize: 30
}
});
-},2403,[18]);
+},2405,[18]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -340323,7 +340760,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
if (index === 0) {
var firstPage = newspaper.getEditionModel().getFirstPage();
- if (firstPage && firstPage.isDoubleTruck()) {
+ if (firstPage != null && firstPage.isDoubleTruck()) {
addPlaceholder = _$$_REQUIRE(_dependencyMap[27]).PLACEHOLDER_POSITION.NONE;
} else {
addPlaceholder = _$$_REQUIRE(_dependencyMap[27]).PLACEHOLDER_POSITION.LEFT;
@@ -340382,7 +340819,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}).isRequired
}, _$$_REQUIRE(_dependencyMap[29]).Shortcut.propTypes);
NewsmemoryThumbnail.defaultProps = Object.assign({}, _$$_REQUIRE(_dependencyMap[29]).Shortcut.defaultProps);
-},2404,[3,270,6,7,11,85,13,14,582,16,18,2405,436,629,858,566,666,587,859,670,2406,564,1921,2407,438,179,2056,2408,819,2057]);
+},2406,[3,270,6,7,11,85,13,14,582,16,18,2407,436,629,858,566,666,587,859,670,2408,564,1921,2409,438,179,2056,2410,819,2057]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
"use strict";
@@ -340492,7 +340929,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
};
};
-},2405,[]);
+},2407,[]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -340657,7 +341094,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
padding: 5
}
});
-},2406,[18,3,670,629,666,438,827]);
+},2408,[18,3,670,629,666,438,827]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -340737,7 +341174,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
}]);
}();
-},2407,[3,6,7,670]);
+},2409,[3,6,7,670]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -341034,7 +341471,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
})
});
};
-},2408,[3,270,16,18,436,2352,629,858,666,859,670,2409,816,2406,179,819,2077,2025,2019,2410,827,1861,438,2056]);
+},2410,[3,270,16,18,436,2354,629,858,666,859,670,2411,816,2408,179,819,2077,2025,2019,2412,827,1861,438,2056]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -341148,7 +341585,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
style: _propTypes.default.any,
source: _propTypes.default.object
};
-},2409,[3,4,270,6,7,11,13,14,16,582,588,179,2009]);
+},2411,[3,4,270,6,7,11,13,14,16,582,588,179,2009]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -341329,7 +341766,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
DownloadButton.defaultProps = {
disabled: false
};
-},2410,[3,4,6,7,11,13,14,16,582,18,1861,564,179,819,2009]);
+},2412,[3,4,6,7,11,13,14,16,582,18,1861,564,179,819,2009]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -341602,7 +342039,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
BackgroundPages.defaultProps = {
hidden: false
};
-},2411,[3,6,7,11,13,14,582,16,18,436,629,666,859,670,2374,2412,564,827,179,438,819,2009]);
+},2413,[3,6,7,11,13,14,582,16,18,436,629,666,859,670,2376,2414,564,827,179,438,819,2009]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -341633,7 +342070,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
overflow: "hidden"
}
});
-},2412,[18,438]);
+},2414,[18,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -342299,7 +342736,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}();
LayoutFlexManager.LAST_ACCESSIBILITY_STATE = false;
-},2413,[3,6,7,434,2001,819,438]);
+},2415,[3,6,7,434,2001,819,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -342314,7 +342751,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
});
});
-},2414,[2415]);
+},2416,[2417]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -342445,7 +342882,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
cssClasses: [],
cssTextClasses: []
};
-},2415,[3,6,7,11,13,14,16,582,436,564,179,2009,438]);
+},2417,[3,6,7,11,13,14,16,582,436,564,179,2009,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -342460,7 +342897,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
});
});
-},2416,[2417]);
+},2418,[2419]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -342699,7 +343136,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
showLoading: true,
ignoreSafeArea: false
};
-},2417,[3,6,7,11,13,14,582,16,18,436,434,588,2418,564,179,2419,2009,438]);
+},2419,[3,6,7,11,13,14,582,16,18,436,434,588,2420,564,179,2421,2009,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -342725,7 +343162,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
resizeMode: "contain"
};
};
-},2418,[3,434]);
+},2420,[3,434]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -342741,7 +343178,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
height: "100%"
}
});
-},2419,[18]);
+},2421,[18]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -343052,7 +343489,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
navigate: _propTypes.default.func.isRequired
}).isRequired
};
-},2420,[3,6,7,11,85,13,14,582,16,18,2001,436,2143,2269,2421,2432,2433,2437,2438,438,564,179,819,2270,2279,2150,2056]);
+},2422,[3,6,7,11,85,13,14,582,16,18,2001,436,2144,2271,2423,2434,2435,2439,2440,438,564,179,819,2272,2281,2151,2056]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -343335,7 +343772,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
}]);
}(_settingsBaseManager.default);
-},2421,[3,270,6,7,11,13,14,16,18,1917,1945,1966,1932,881,1985,1947,2422,2423,2425,2429,2430,2431,817,2074,438,819,179,1986]);
+},2423,[3,270,6,7,11,13,14,16,18,1917,1945,1966,1930,881,1985,1947,2424,2425,2427,2431,2432,2433,817,2074,438,819,179,1986]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -343462,7 +343899,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}),
onChange: _propTypes.default.func.isRequired
};
-},2422,[3,270,6,7,11,13,14,582,16,2274,814,179]);
+},2424,[3,270,6,7,11,13,14,582,16,2276,814,179]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -343603,7 +344040,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
value: _propTypes.default.bool,
onChange: _propTypes.default.func.isRequired
};
-},2423,[3,270,6,7,11,13,14,16,582,18,2424,819,179,2275,2274]);
+},2425,[3,270,6,7,11,13,14,16,582,18,2426,819,179,2277,2276]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -343690,7 +344127,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
var _default = exports.default = TecnaviaCheckBox;
-},2424,[3,16,582,18,1861,438,179,819]);
+},2426,[3,16,582,18,1861,438,179,819]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -343844,7 +344281,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
var _default = exports.default = SettingPicker;
-},2425,[3,270,33,4,16,582,18,2274,2426,179]);
+},2427,[3,270,33,4,16,582,18,2276,2428,179]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -344055,7 +344492,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
var _default = exports.default = DropDownList;
-},2426,[3,22,33,16,582,18,830,2427,819,179,2056]);
+},2428,[3,22,33,16,582,18,830,2429,819,179,2056]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -344158,7 +344595,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
DropDownOption.defaultProps = {};
var _default = exports.default = DropDownOption;
-},2427,[3,582,16,18,2428,179,819]);
+},2429,[3,582,16,18,2430,179,819]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -344290,7 +344727,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
var _default = exports.default = Option;
-},2428,[3,4,582,16,18,816,1861,1976,438,179]);
+},2430,[3,4,582,16,18,816,1861,1976,438,179]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -344347,7 +344784,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
var _default = exports.default = SettingPickerMulti;
-},2429,[3,4,16,582,2425,179]);
+},2431,[3,4,16,582,2427,179]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -344392,7 +344829,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
var _default = exports.default = SettingText;
-},2430,[3,16,582,18,819,179,2275,2274]);
+},2432,[3,16,582,18,819,179,2277,2276]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -344464,7 +344901,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
}]);
}();
-},2431,[3,6,7,1986]);
+},2433,[3,6,7,1986]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -344650,7 +345087,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
}]);
}(_settingsBaseManager.default);
-},2432,[3,270,6,7,11,13,14,16,2001,2002,436,2422,2423,2425,2431,179,438,866,2307,564,880]);
+},2434,[3,270,6,7,11,13,14,16,2001,2002,436,2424,2425,2427,2433,179,438,866,2309,564,880]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -344939,7 +345376,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
}]);
}(_settingsBaseManager.default);
-},2433,[3,270,22,6,7,11,13,14,16,407,1917,2001,2032,2002,436,1919,2423,2425,2431,179,2434,629,2435,2436,438,564]);
+},2435,[3,270,22,6,7,11,13,14,16,407,1917,2001,2032,2002,436,1919,2425,2427,2433,179,2436,629,2437,2438,438,564]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
module.exports = _$$_REQUIRE(_dependencyMap[0]).registerAsset({
"__packager_asset": true,
@@ -344951,7 +345388,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
"name": "download_full",
"type": "png"
});
-},2434,[1031]);
+},2436,[1031]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
module.exports = _$$_REQUIRE(_dependencyMap[0]).registerAsset({
"__packager_asset": true,
@@ -344963,7 +345400,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
"name": "download_medium",
"type": "png"
});
-},2435,[1031]);
+},2437,[1031]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
module.exports = _$$_REQUIRE(_dependencyMap[0]).registerAsset({
"__packager_asset": true,
@@ -344975,7 +345412,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
"name": "download_low",
"type": "png"
});
-},2436,[1031]);
+},2438,[1031]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -345055,7 +345492,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
}]);
}(_settingsBaseManager.default);
-},2437,[3,6,7,11,13,14,16,434,2422,2267,2431,2271,179]);
+},2439,[3,6,7,11,13,14,16,434,2424,2269,2433,2273,179]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -345245,7 +345682,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
}]);
}(_settingsBaseManager.default);
-},2438,[3,270,6,7,11,13,14,16,1920,2161,566,2422,2439,2431,438,2151,179]);
+},2440,[3,270,6,7,11,13,14,16,1920,2162,566,2424,2441,2433,438,2152,179]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -345308,7 +345745,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
var _default = exports.default = SettingMyHome;
-},2439,[3,16,582,2274,830,179,2440]);
+},2441,[3,16,582,2276,830,179,2442]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -345323,7 +345760,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
});
});
-},2440,[2441]);
+},2442,[2443]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -346141,7 +346578,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
RssMyHomeConfig.defaultProps = {
showAlwaysOnClose: false
};
-},2441,[3,22,240,6,7,11,13,14,270,582,16,18,2148,2161,2085,434,2155,2276,2424,816,1861,588,2442,2151,438,2156,179,819,619,2056]);
+},2443,[3,22,240,6,7,11,13,14,270,582,16,18,2149,2162,2085,434,2156,2278,2426,816,1861,588,2444,2152,438,2157,179,819,619,2056]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -346301,7 +346738,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
fontSize: 40
}
});
-},2442,[18,2143,438]);
+},2444,[18,2144,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -346316,7 +346753,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
});
});
-},2443,[2444]);
+},2445,[2446]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -346476,7 +346913,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
NewsmemoryHTML5Screen.propTypes = {
navigation: _propTypes.default.object
};
-},2444,[3,6,7,11,85,13,14,16,18,567,582,1920,1947,438,179,1984,1986,2279]);
+},2446,[3,6,7,11,85,13,14,16,18,567,582,1920,1947,438,179,1984,1986,2281]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -346491,7 +346928,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
});
});
-},2445,[2446]);
+},2447,[2448]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -346901,7 +347338,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
GalleryScreen.defaultProps = {
considerSafeAreaTop: false
};
-},2446,[3,270,4,6,7,11,85,13,14,582,16,18,2352,434,566,2447,2450,2507,1861,438,2164,2019,2279,819,179,2449,2511]);
+},2448,[3,270,4,6,7,11,85,13,14,582,16,18,2354,434,566,2449,2452,2509,1861,438,2165,2019,2281,819,179,2451,2513]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -346970,7 +347407,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
startIndex: _propTypes.default.number.isRequired,
total: _propTypes.default.number.isRequired
};
-},2447,[3,6,7,11,13,14,16,582,816,2448,179]);
+},2449,[3,6,7,11,13,14,16,582,816,2450,179]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -346989,7 +347426,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
textAlignVertical: "center"
}
});
-},2448,[18,2449]);
+},2450,[18,2451]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -347103,7 +347540,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
borderColor: "white"
}
});
-},2449,[18,438]);
+},2451,[18,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -347248,7 +347685,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
GalleryPager.defaultProps = {
startIndex: 0
};
-},2450,[3,6,7,11,13,14,582,16,2336,179,2451,2454,2498,2501,2504,2506]);
+},2452,[3,6,7,11,13,14,582,16,2338,179,2453,2456,2500,2503,2506,2508]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -347263,7 +347700,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
});
});
-},2451,[2452]);
+},2453,[2454]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -347326,7 +347763,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
playerId: _propTypes.default.string.isRequired
})
};
-},2452,[3,6,7,11,13,14,582,16,18,2200,179,2453,438]);
+},2454,[3,6,7,11,13,14,582,16,18,2186,179,2455,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -347344,7 +347781,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
paddingTop: _$$_REQUIRE(_dependencyMap[1]).GALLERY_ITEM_HEIGHT
}
});
-},2453,[18,2449]);
+},2455,[18,2451]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -347359,7 +347796,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
});
});
-},2454,[2455]);
+},2456,[2457]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -347439,7 +347876,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
url: _propTypes.default.string.isRequired
})
};
-},2455,[3,6,7,11,13,14,582,16,18,2456,179,2497]);
+},2457,[3,6,7,11,13,14,582,16,18,2458,179,2499]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -348204,7 +348641,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
customStyles: {},
showDuration: false
};
-},2456,[3,4,6,7,11,13,14,16,582,18,1893,2457,2480,179]);
+},2458,[3,4,6,7,11,13,14,16,582,18,1893,2459,2482,179]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -348755,7 +349192,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
fullscreen: true
}
});
-},2457,[3,270,6,7,11,13,14,16,582,18,154,2458,2459,2460,2461,179,2463]);
+},2459,[3,270,6,7,11,13,14,16,582,18,154,2460,2461,2462,2463,179,2465]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -348767,7 +349204,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
TTML: 'application/ttml+xml',
VTT: 'text/vtt'
};
-},2458,[]);
+},2460,[]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -348792,7 +349229,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
TRANSFER: 'CIPhotoEffectTransfer',
SEPIA: 'CISepiaTone'
};
-},2459,[]);
+},2461,[]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -348805,7 +349242,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
CLEARKEY: 'clearkey',
FAIRPLAY: 'fairplay'
};
-},2460,[]);
+},2462,[]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -348819,7 +349256,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
cover: null,
stretch: null
});
-},2461,[3,2462]);
+},2463,[3,2464]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
"use strict";
@@ -348843,7 +349280,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
module.exports = keyMirror;
-},2462,[]);
+},2464,[]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
'use strict';
@@ -348877,7 +349314,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
};
-},2463,[2464,2465,2466,2476,2477,2478,2467]);
+},2465,[2466,2467,2468,2478,2479,2480,2469]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
'use strict';
@@ -348904,7 +349341,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
var ColorPropType = colorPropType.bind(null, false);
ColorPropType.isRequired = colorPropType.bind(null, true);
module.exports = ColorPropType;
-},2464,[145]);
+},2466,[145]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
'use strict';
@@ -348916,7 +349353,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
});
module.exports = DeprecatedEdgeInsetsPropType;
-},2465,[582]);
+},2467,[582]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
'use strict';
@@ -348948,7 +349385,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
resizeMode: _$$_REQUIRE(_dependencyMap[3]).oneOf(['cover', 'contain', 'stretch', 'repeat', 'center'])
});
module.exports = DeprecatedImagePropType;
-},2466,[2467,2468,2475,582]);
+},2468,[2469,2470,2477,582]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
'use strict';
@@ -348992,7 +349429,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
collapsable: _$$_REQUIRE(_dependencyMap[2]).bool,
needsOffscreenAlphaCompositing: _$$_REQUIRE(_dependencyMap[2]).bool
};
-},2467,[2468,2470,582,2474,2465]);
+},2469,[2470,2472,582,2476,2467]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
'use strict';
@@ -349040,7 +349477,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
module.exports = DeprecatedStyleSheetPropType;
-},2468,[2469]);
+},2470,[2471]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
'use strict';
@@ -349096,7 +349533,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
module.exports = deprecatedCreateStrictShapeTypeChecker;
-},2469,[31]);
+},2471,[31]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
'use strict';
@@ -349129,7 +349566,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
elevation: _$$_REQUIRE(_dependencyMap[3]).number
});
module.exports = DeprecatedViewStylePropTypes;
-},2470,[2471,2472,2473,582,2464]);
+},2472,[2473,2474,2475,582,2466]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
'use strict';
@@ -349189,595 +349626,10 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
direction: _$$_REQUIRE(_dependencyMap[0]).oneOf(['inherit', 'ltr', 'rtl'])
};
module.exports = LayoutPropTypes;
-},2471,[582]);
-__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
- 'use strict';
-
- var DeprecatedShadowPropTypesIOS = {
- shadowColor: _$$_REQUIRE(_dependencyMap[0]),
- shadowOffset: _$$_REQUIRE(_dependencyMap[1]).shape({
- width: _$$_REQUIRE(_dependencyMap[1]).number,
- height: _$$_REQUIRE(_dependencyMap[1]).number
- }),
- shadowOpacity: _$$_REQUIRE(_dependencyMap[1]).number,
- shadowRadius: _$$_REQUIRE(_dependencyMap[1]).number
- };
- module.exports = DeprecatedShadowPropTypesIOS;
-},2472,[2464,582]);
-__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
- 'use strict';
-
- var TransformMatrixPropType = function TransformMatrixPropType(props, propName, componentName) {
- if (props[propName]) {
- return new Error("The transformMatrix style property is deprecated. Use `transform: [{ matrix: ... }]` instead.");
- }
- };
-
- var DecomposedMatrixPropType = function DecomposedMatrixPropType(props, propName, componentName) {
- if (props[propName]) {
- return new Error("The decomposedMatrix style property is deprecated. Use `transform: [...]` instead.");
- }
- };
-
- var DeprecatedTransformPropTypes = {
- transform: _$$_REQUIRE(_dependencyMap[0]).arrayOf(_$$_REQUIRE(_dependencyMap[0]).oneOfType([_$$_REQUIRE(_dependencyMap[0]).shape({
- perspective: _$$_REQUIRE(_dependencyMap[0]).number
- }), _$$_REQUIRE(_dependencyMap[0]).shape({
- rotate: _$$_REQUIRE(_dependencyMap[0]).string
- }), _$$_REQUIRE(_dependencyMap[0]).shape({
- rotateX: _$$_REQUIRE(_dependencyMap[0]).string
- }), _$$_REQUIRE(_dependencyMap[0]).shape({
- rotateY: _$$_REQUIRE(_dependencyMap[0]).string
- }), _$$_REQUIRE(_dependencyMap[0]).shape({
- rotateZ: _$$_REQUIRE(_dependencyMap[0]).string
- }), _$$_REQUIRE(_dependencyMap[0]).shape({
- scale: _$$_REQUIRE(_dependencyMap[0]).number
- }), _$$_REQUIRE(_dependencyMap[0]).shape({
- scaleX: _$$_REQUIRE(_dependencyMap[0]).number
- }), _$$_REQUIRE(_dependencyMap[0]).shape({
- scaleY: _$$_REQUIRE(_dependencyMap[0]).number
- }), _$$_REQUIRE(_dependencyMap[0]).shape({
- translateX: _$$_REQUIRE(_dependencyMap[0]).number
- }), _$$_REQUIRE(_dependencyMap[0]).shape({
- translateY: _$$_REQUIRE(_dependencyMap[0]).number
- }), _$$_REQUIRE(_dependencyMap[0]).shape({
- skewX: _$$_REQUIRE(_dependencyMap[0]).string
- }), _$$_REQUIRE(_dependencyMap[0]).shape({
- skewY: _$$_REQUIRE(_dependencyMap[0]).string
- })])),
- transformMatrix: TransformMatrixPropType,
- decomposedMatrix: DecomposedMatrixPropType,
- scaleX: deprecatedPropType(_$$_REQUIRE(_dependencyMap[0]).number, 'Use the transform prop instead.'),
- scaleY: deprecatedPropType(_$$_REQUIRE(_dependencyMap[0]).number, 'Use the transform prop instead.'),
- rotation: deprecatedPropType(_$$_REQUIRE(_dependencyMap[0]).number, 'Use the transform prop instead.'),
- translateX: deprecatedPropType(_$$_REQUIRE(_dependencyMap[0]).number, 'Use the transform prop instead.'),
- translateY: deprecatedPropType(_$$_REQUIRE(_dependencyMap[0]).number, 'Use the transform prop instead.')
- };
-
- function deprecatedPropType(propType, explanation) {
- return function validate(props, propName, componentName) {
- if (props[propName] !== undefined) {
- console.warn("`" + propName + "` supplied to `" + componentName + "` has been deprecated. " + explanation);
- }
-
- for (var _len = arguments.length, rest = new Array(_len > 3 ? _len - 3 : 0), _key = 3; _key < _len; _key++) {
- rest[_key - 3] = arguments[_key];
- }
-
- return propType.apply(undefined, [props, propName, componentName].concat(rest));
- };
- }
-
- module.exports = DeprecatedTransformPropTypes;
},2473,[582]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
'use strict';
- module.exports = {
- DeprecatedAccessibilityRoles: ['none', 'button', 'togglebutton', 'link', 'search', 'image', 'keyboardkey', 'text', 'adjustable', 'imagebutton', 'header', 'summary', 'alert', 'checkbox', 'combobox', 'menu', 'menubar', 'menuitem', 'progressbar', 'radio', 'radiogroup', 'scrollbar', 'spinbutton', 'switch', 'tab', 'tablist', 'timer', 'toolbar']
- };
-},2474,[]);
-__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
- 'use strict';
-
- var ImageStylePropTypes = Object.assign({}, _$$_REQUIRE(_dependencyMap[0]), _$$_REQUIRE(_dependencyMap[1]), _$$_REQUIRE(_dependencyMap[2]), {
- resizeMode: _$$_REQUIRE(_dependencyMap[3]).oneOf(['center', 'contain', 'cover', 'repeat', 'stretch']),
- backfaceVisibility: _$$_REQUIRE(_dependencyMap[3]).oneOf(['visible', 'hidden']),
- backgroundColor: _$$_REQUIRE(_dependencyMap[4]),
- borderColor: _$$_REQUIRE(_dependencyMap[4]),
- borderWidth: _$$_REQUIRE(_dependencyMap[3]).number,
- borderRadius: _$$_REQUIRE(_dependencyMap[3]).number,
- overflow: _$$_REQUIRE(_dependencyMap[3]).oneOf(['visible', 'hidden']),
- tintColor: _$$_REQUIRE(_dependencyMap[4]),
- opacity: _$$_REQUIRE(_dependencyMap[3]).number,
- overlayColor: _$$_REQUIRE(_dependencyMap[3]).string,
- borderTopLeftRadius: _$$_REQUIRE(_dependencyMap[3]).number,
- borderTopRightRadius: _$$_REQUIRE(_dependencyMap[3]).number,
- borderBottomLeftRadius: _$$_REQUIRE(_dependencyMap[3]).number,
- borderBottomRightRadius: _$$_REQUIRE(_dependencyMap[3]).number
- });
- module.exports = ImageStylePropTypes;
-},2475,[2471,2472,2473,582,2464]);
-__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
- 'use strict';
-
- var PointPropType = _$$_REQUIRE(_dependencyMap[0]).shape({
- x: _$$_REQUIRE(_dependencyMap[0]).number,
- y: _$$_REQUIRE(_dependencyMap[0]).number
- });
-
- module.exports = PointPropType;
-},2476,[582]);
-__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
- 'use strict';
-
- var DataDetectorTypes = ['phoneNumber', 'link', 'address', 'calendarEvent', 'none', 'all'];
- module.exports = Object.assign({}, _$$_REQUIRE(_dependencyMap[0]), {
- autoCapitalize: _$$_REQUIRE(_dependencyMap[1]).oneOf(['none', 'sentences', 'words', 'characters']),
- autoCompleteType: _$$_REQUIRE(_dependencyMap[1]).oneOf(['cc-csc', 'cc-exp', 'cc-exp-month', 'cc-exp-year', 'cc-number', 'email', 'name', 'password', 'postal-code', 'street-address', 'tel', 'username', 'off']),
- autoCorrect: _$$_REQUIRE(_dependencyMap[1]).bool,
- spellCheck: _$$_REQUIRE(_dependencyMap[1]).bool,
- autoFocus: _$$_REQUIRE(_dependencyMap[1]).bool,
- allowFontScaling: _$$_REQUIRE(_dependencyMap[1]).bool,
- maxFontSizeMultiplier: _$$_REQUIRE(_dependencyMap[1]).number,
- editable: _$$_REQUIRE(_dependencyMap[1]).bool,
- keyboardType: _$$_REQUIRE(_dependencyMap[1]).oneOf(['default', 'email-address', 'numeric', 'phone-pad', 'number-pad', 'ascii-capable', 'numbers-and-punctuation', 'url', 'name-phone-pad', 'decimal-pad', 'twitter', 'web-search', 'ascii-capable-number-pad', 'visible-password']),
- keyboardAppearance: _$$_REQUIRE(_dependencyMap[1]).oneOf(['default', 'light', 'dark']),
- returnKeyType: _$$_REQUIRE(_dependencyMap[1]).oneOf(['done', 'go', 'next', 'search', 'send', 'none', 'previous', 'default', 'emergency-call', 'google', 'join', 'route', 'yahoo']),
- returnKeyLabel: _$$_REQUIRE(_dependencyMap[1]).string,
- maxLength: _$$_REQUIRE(_dependencyMap[1]).number,
- numberOfLines: _$$_REQUIRE(_dependencyMap[1]).number,
- disableFullscreenUI: _$$_REQUIRE(_dependencyMap[1]).bool,
- enablesReturnKeyAutomatically: _$$_REQUIRE(_dependencyMap[1]).bool,
- multiline: _$$_REQUIRE(_dependencyMap[1]).bool,
- textBreakStrategy: _$$_REQUIRE(_dependencyMap[1]).oneOf(['simple', 'highQuality', 'balanced']),
- onBlur: _$$_REQUIRE(_dependencyMap[1]).func,
- onFocus: _$$_REQUIRE(_dependencyMap[1]).func,
- onChange: _$$_REQUIRE(_dependencyMap[1]).func,
- onChangeText: _$$_REQUIRE(_dependencyMap[1]).func,
- onContentSizeChange: _$$_REQUIRE(_dependencyMap[1]).func,
- onTextInput: _$$_REQUIRE(_dependencyMap[1]).func,
- onEndEditing: _$$_REQUIRE(_dependencyMap[1]).func,
- onSelectionChange: _$$_REQUIRE(_dependencyMap[1]).func,
- onSubmitEditing: _$$_REQUIRE(_dependencyMap[1]).func,
- onKeyPress: _$$_REQUIRE(_dependencyMap[1]).func,
- onLayout: _$$_REQUIRE(_dependencyMap[1]).func,
- onScroll: _$$_REQUIRE(_dependencyMap[1]).func,
- placeholder: _$$_REQUIRE(_dependencyMap[1]).string,
- placeholderTextColor: _$$_REQUIRE(_dependencyMap[2]),
- scrollEnabled: _$$_REQUIRE(_dependencyMap[1]).bool,
- secureTextEntry: _$$_REQUIRE(_dependencyMap[1]).bool,
- selectionColor: _$$_REQUIRE(_dependencyMap[2]),
- selection: _$$_REQUIRE(_dependencyMap[1]).shape({
- start: _$$_REQUIRE(_dependencyMap[1]).number.isRequired,
- end: _$$_REQUIRE(_dependencyMap[1]).number
- }),
- value: _$$_REQUIRE(_dependencyMap[1]).string,
- defaultValue: _$$_REQUIRE(_dependencyMap[1]).string,
- clearButtonMode: _$$_REQUIRE(_dependencyMap[1]).oneOf(['never', 'while-editing', 'unless-editing', 'always']),
- clearTextOnFocus: _$$_REQUIRE(_dependencyMap[1]).bool,
- selectTextOnFocus: _$$_REQUIRE(_dependencyMap[1]).bool,
- blurOnSubmit: _$$_REQUIRE(_dependencyMap[1]).bool,
- style: _$$_REQUIRE(_dependencyMap[3]).style,
- underlineColorAndroid: _$$_REQUIRE(_dependencyMap[2]),
- inlineImageLeft: _$$_REQUIRE(_dependencyMap[1]).string,
- inlineImagePadding: _$$_REQUIRE(_dependencyMap[1]).number,
- rejectResponderTermination: _$$_REQUIRE(_dependencyMap[1]).bool,
- dataDetectorTypes: _$$_REQUIRE(_dependencyMap[1]).oneOfType([_$$_REQUIRE(_dependencyMap[1]).oneOf(DataDetectorTypes), _$$_REQUIRE(_dependencyMap[1]).arrayOf(_$$_REQUIRE(_dependencyMap[1]).oneOf(DataDetectorTypes))]),
- caretHidden: _$$_REQUIRE(_dependencyMap[1]).bool,
- contextMenuHidden: _$$_REQUIRE(_dependencyMap[1]).bool,
- inputAccessoryViewID: _$$_REQUIRE(_dependencyMap[1]).string,
- textContentType: _$$_REQUIRE(_dependencyMap[1]).oneOf(['none', 'URL', 'addressCity', 'addressCityAndState', 'addressState', 'countryName', 'creditCardNumber', 'emailAddress', 'familyName', 'fullStreetAddress', 'givenName', 'jobTitle', 'location', 'middleName', 'name', 'namePrefix', 'nameSuffix', 'nickname', 'organizationName', 'postalCode', 'streetAddressLine1', 'streetAddressLine2', 'sublocality', 'telephoneNumber', 'username', 'password', 'newPassword', 'oneTimeCode']),
- showSoftInputOnFocus: _$$_REQUIRE(_dependencyMap[1]).bool
- });
-},2477,[2467,582,2464,2478]);
-__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
- 'use strict';
-
- var stylePropType = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[1]));
-
- var DataDetectorTypes = ['phoneNumber', 'link', 'email', 'none', 'all'];
- module.exports = {
- ellipsizeMode: _$$_REQUIRE(_dependencyMap[2]).oneOf(['head', 'middle', 'tail', 'clip']),
- numberOfLines: _$$_REQUIRE(_dependencyMap[2]).number,
- textBreakStrategy: _$$_REQUIRE(_dependencyMap[2]).oneOf(['simple', 'highQuality', 'balanced']),
- onLayout: _$$_REQUIRE(_dependencyMap[2]).func,
- onPress: _$$_REQUIRE(_dependencyMap[2]).func,
- onLongPress: _$$_REQUIRE(_dependencyMap[2]).func,
- pressRetentionOffset: _$$_REQUIRE(_dependencyMap[3]),
- selectable: _$$_REQUIRE(_dependencyMap[2]).bool,
- selectionColor: _$$_REQUIRE(_dependencyMap[4]),
- suppressHighlighting: _$$_REQUIRE(_dependencyMap[2]).bool,
- style: stylePropType,
- testID: _$$_REQUIRE(_dependencyMap[2]).string,
- nativeID: _$$_REQUIRE(_dependencyMap[2]).string,
- allowFontScaling: _$$_REQUIRE(_dependencyMap[2]).bool,
- maxFontSizeMultiplier: _$$_REQUIRE(_dependencyMap[2]).number,
- accessible: _$$_REQUIRE(_dependencyMap[2]).bool,
- adjustsFontSizeToFit: _$$_REQUIRE(_dependencyMap[2]).bool,
- minimumFontScale: _$$_REQUIRE(_dependencyMap[2]).number,
- disabled: _$$_REQUIRE(_dependencyMap[2]).bool,
- dataDetectorType: _$$_REQUIRE(_dependencyMap[2]).oneOf(DataDetectorTypes)
- };
-},2478,[2468,2479,582,2465,2464]);
-__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
- 'use strict';
-
- var DeprecatedTextStylePropTypes = Object.assign({}, _$$_REQUIRE(_dependencyMap[0]), {
- color: _$$_REQUIRE(_dependencyMap[1]),
- fontFamily: _$$_REQUIRE(_dependencyMap[2]).string,
- fontSize: _$$_REQUIRE(_dependencyMap[2]).number,
- fontStyle: _$$_REQUIRE(_dependencyMap[2]).oneOf(['normal', 'italic']),
- fontWeight: _$$_REQUIRE(_dependencyMap[2]).oneOf(['normal', 'bold', '100', '200', '300', '400', '500', '600', '700', '800', '900']),
- fontVariant: _$$_REQUIRE(_dependencyMap[2]).arrayOf(_$$_REQUIRE(_dependencyMap[2]).oneOf(['small-caps', 'oldstyle-nums', 'lining-nums', 'tabular-nums', 'proportional-nums'])),
- textShadowOffset: _$$_REQUIRE(_dependencyMap[2]).shape({
- width: _$$_REQUIRE(_dependencyMap[2]).number,
- height: _$$_REQUIRE(_dependencyMap[2]).number
- }),
- textShadowRadius: _$$_REQUIRE(_dependencyMap[2]).number,
- textShadowColor: _$$_REQUIRE(_dependencyMap[1]),
- letterSpacing: _$$_REQUIRE(_dependencyMap[2]).number,
- lineHeight: _$$_REQUIRE(_dependencyMap[2]).number,
- textAlign: _$$_REQUIRE(_dependencyMap[2]).oneOf(['auto', 'left', 'right', 'center', 'justify']),
- textAlignVertical: _$$_REQUIRE(_dependencyMap[2]).oneOf(['auto', 'top', 'bottom', 'center']),
- includeFontPadding: _$$_REQUIRE(_dependencyMap[2]).bool,
- textDecorationLine: _$$_REQUIRE(_dependencyMap[2]).oneOf(['none', 'underline', 'line-through', 'underline line-through']),
- textDecorationStyle: _$$_REQUIRE(_dependencyMap[2]).oneOf(['solid', 'double', 'dotted', 'dashed']),
- textDecorationColor: _$$_REQUIRE(_dependencyMap[1]),
- textTransform: _$$_REQUIRE(_dependencyMap[2]).oneOf(['none', 'capitalize', 'uppercase', 'lowercase']),
- writingDirection: _$$_REQUIRE(_dependencyMap[2]).oneOf(['auto', 'ltr', 'rtl'])
- });
- module.exports = DeprecatedTextStylePropTypes;
-},2479,[2470,2464,582]);
-__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
- 'use strict';
-
- module.exports = {
- get ColorPropType() {
- return _$$_REQUIRE(_dependencyMap[0]);
- },
-
- get EdgeInsetsPropType() {
- return _$$_REQUIRE(_dependencyMap[1]);
- },
-
- get ImagePropTypes() {
- return _$$_REQUIRE(_dependencyMap[2]);
- },
-
- get PointPropType() {
- return _$$_REQUIRE(_dependencyMap[3]);
- },
-
- get TextInputPropTypes() {
- return _$$_REQUIRE(_dependencyMap[4]);
- },
-
- get TextPropTypes() {
- return _$$_REQUIRE(_dependencyMap[5]);
- },
-
- get ViewPropTypes() {
- return _$$_REQUIRE(_dependencyMap[6]);
- }
-
- };
-},2480,[2481,2482,2483,2493,2494,2495,2484]);
-__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
- 'use strict';
-
- var colorPropType = function colorPropType(isRequired, props, propName, componentName, location, propFullName) {
- var color = props[propName];
-
- if (color == null) {
- if (isRequired) {
- return new Error('Required ' + location + ' `' + (propFullName || propName) + '` was not specified in `' + componentName + '`.');
- }
-
- return;
- }
-
- if (typeof color === 'number') {
- return;
- }
-
- if (typeof color === 'string' && _$$_REQUIRE(_dependencyMap[0])(color) === null) {
- return new Error('Invalid ' + location + ' `' + (propFullName || propName) + '` supplied to `' + componentName + '`: ' + color + '\n' + "Valid color formats are\n - '#f0f' (#rgb)\n - '#f0fc' (#rgba)\n - '#ff00ff' (#rrggbb)\n - '#ff00ff00' (#rrggbbaa)\n - 'rgb(255, 255, 255)'\n - 'rgba(255, 255, 255, 1.0)'\n - 'hsl(360, 100%, 100%)'\n - 'hsla(360, 100%, 100%, 1.0)'\n - 'transparent'\n - 'red'\n - 0xff00ff00 (0xrrggbbaa)\n");
- }
- };
-
- var ColorPropType = colorPropType.bind(null, false);
- ColorPropType.isRequired = colorPropType.bind(null, true);
- module.exports = ColorPropType;
-},2481,[145]);
-__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
- 'use strict';
-
- var DeprecatedEdgeInsetsPropType = _$$_REQUIRE(_dependencyMap[0]).shape({
- top: _$$_REQUIRE(_dependencyMap[0]).number,
- left: _$$_REQUIRE(_dependencyMap[0]).number,
- bottom: _$$_REQUIRE(_dependencyMap[0]).number,
- right: _$$_REQUIRE(_dependencyMap[0]).number
- });
-
- module.exports = DeprecatedEdgeInsetsPropType;
-},2482,[582]);
-__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
- 'use strict';
-
- var DeprecatedImagePropType = Object.assign({}, _$$_REQUIRE(_dependencyMap[0]), {
- style: _$$_REQUIRE(_dependencyMap[1])(_$$_REQUIRE(_dependencyMap[2])),
- source: _$$_REQUIRE(_dependencyMap[3]).oneOfType([_$$_REQUIRE(_dependencyMap[3]).shape({
- uri: _$$_REQUIRE(_dependencyMap[3]).string,
- headers: _$$_REQUIRE(_dependencyMap[3]).objectOf(_$$_REQUIRE(_dependencyMap[3]).string)
- }), _$$_REQUIRE(_dependencyMap[3]).number, _$$_REQUIRE(_dependencyMap[3]).arrayOf(_$$_REQUIRE(_dependencyMap[3]).shape({
- uri: _$$_REQUIRE(_dependencyMap[3]).string,
- width: _$$_REQUIRE(_dependencyMap[3]).number,
- height: _$$_REQUIRE(_dependencyMap[3]).number,
- headers: _$$_REQUIRE(_dependencyMap[3]).objectOf(_$$_REQUIRE(_dependencyMap[3]).string)
- }))]),
- blurRadius: _$$_REQUIRE(_dependencyMap[3]).number,
- defaultSource: _$$_REQUIRE(_dependencyMap[3]).number,
- loadingIndicatorSource: _$$_REQUIRE(_dependencyMap[3]).oneOfType([_$$_REQUIRE(_dependencyMap[3]).shape({
- uri: _$$_REQUIRE(_dependencyMap[3]).string
- }), _$$_REQUIRE(_dependencyMap[3]).number]),
- progressiveRenderingEnabled: _$$_REQUIRE(_dependencyMap[3]).bool,
- fadeDuration: _$$_REQUIRE(_dependencyMap[3]).number,
- internal_analyticTag: _$$_REQUIRE(_dependencyMap[3]).string,
- onLoadStart: _$$_REQUIRE(_dependencyMap[3]).func,
- onError: _$$_REQUIRE(_dependencyMap[3]).func,
- onLoad: _$$_REQUIRE(_dependencyMap[3]).func,
- onLoadEnd: _$$_REQUIRE(_dependencyMap[3]).func,
- testID: _$$_REQUIRE(_dependencyMap[3]).string,
- resizeMethod: _$$_REQUIRE(_dependencyMap[3]).oneOf(['auto', 'resize', 'scale']),
- resizeMode: _$$_REQUIRE(_dependencyMap[3]).oneOf(['cover', 'contain', 'stretch', 'repeat', 'center'])
- });
- module.exports = DeprecatedImagePropType;
-},2483,[2484,2485,2492,582]);
-__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
- 'use strict';
-
- var stylePropType = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[1]));
-
- module.exports = {
- accessible: _$$_REQUIRE(_dependencyMap[2]).bool,
- accessibilityLabel: _$$_REQUIRE(_dependencyMap[2]).node,
- accessibilityHint: _$$_REQUIRE(_dependencyMap[2]).string,
- accessibilityActions: _$$_REQUIRE(_dependencyMap[2]).arrayOf(_$$_REQUIRE(_dependencyMap[2]).string),
- accessibilityIgnoresInvertColors: _$$_REQUIRE(_dependencyMap[2]).bool,
- accessibilityRole: _$$_REQUIRE(_dependencyMap[2]).oneOf(_$$_REQUIRE(_dependencyMap[3]).DeprecatedAccessibilityRoles),
- accessibilityState: _$$_REQUIRE(_dependencyMap[2]).object,
- accessibilityValue: _$$_REQUIRE(_dependencyMap[2]).object,
- accessibilityLiveRegion: _$$_REQUIRE(_dependencyMap[2]).oneOf(['none', 'polite', 'assertive']),
- importantForAccessibility: _$$_REQUIRE(_dependencyMap[2]).oneOf(['auto', 'yes', 'no', 'no-hide-descendants']),
- accessibilityViewIsModal: _$$_REQUIRE(_dependencyMap[2]).bool,
- accessibilityElementsHidden: _$$_REQUIRE(_dependencyMap[2]).bool,
- onAccessibilityAction: _$$_REQUIRE(_dependencyMap[2]).func,
- onAccessibilityTap: _$$_REQUIRE(_dependencyMap[2]).func,
- onMagicTap: _$$_REQUIRE(_dependencyMap[2]).func,
- testID: _$$_REQUIRE(_dependencyMap[2]).string,
- nativeID: _$$_REQUIRE(_dependencyMap[2]).string,
- onResponderGrant: _$$_REQUIRE(_dependencyMap[2]).func,
- onResponderMove: _$$_REQUIRE(_dependencyMap[2]).func,
- onResponderReject: _$$_REQUIRE(_dependencyMap[2]).func,
- onResponderRelease: _$$_REQUIRE(_dependencyMap[2]).func,
- onResponderTerminate: _$$_REQUIRE(_dependencyMap[2]).func,
- onResponderTerminationRequest: _$$_REQUIRE(_dependencyMap[2]).func,
- onStartShouldSetResponder: _$$_REQUIRE(_dependencyMap[2]).func,
- onStartShouldSetResponderCapture: _$$_REQUIRE(_dependencyMap[2]).func,
- onMoveShouldSetResponder: _$$_REQUIRE(_dependencyMap[2]).func,
- onMoveShouldSetResponderCapture: _$$_REQUIRE(_dependencyMap[2]).func,
- hitSlop: _$$_REQUIRE(_dependencyMap[4]),
- onLayout: _$$_REQUIRE(_dependencyMap[2]).func,
- pointerEvents: _$$_REQUIRE(_dependencyMap[2]).oneOf(['box-none', 'none', 'box-only', 'auto']),
- style: stylePropType,
- removeClippedSubviews: _$$_REQUIRE(_dependencyMap[2]).bool,
- renderToHardwareTextureAndroid: _$$_REQUIRE(_dependencyMap[2]).bool,
- shouldRasterizeIOS: _$$_REQUIRE(_dependencyMap[2]).bool,
- collapsable: _$$_REQUIRE(_dependencyMap[2]).bool,
- needsOffscreenAlphaCompositing: _$$_REQUIRE(_dependencyMap[2]).bool
- };
-},2484,[2485,2487,582,2491,2482]);
-__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
- 'use strict';
-
- function DeprecatedStyleSheetPropType(shape) {
- var shapePropType = _$$_REQUIRE(_dependencyMap[0])(shape);
-
- return function (props, propName, componentName, location) {
- var newProps = props;
-
- if (props[propName]) {
- newProps = {};
- newProps[propName] = flattenStyle(props[propName]);
- }
-
- for (var _len = arguments.length, rest = new Array(_len > 4 ? _len - 4 : 0), _key = 4; _key < _len; _key++) {
- rest[_key - 4] = arguments[_key];
- }
-
- return shapePropType.apply(undefined, [newProps, propName, componentName, location].concat(rest));
- };
- }
-
- function flattenStyle(style) {
- if (style === null || typeof style !== 'object') {
- return undefined;
- }
-
- if (!Array.isArray(style)) {
- return style;
- }
-
- var result = {};
-
- for (var i = 0, styleLength = style.length; i < styleLength; ++i) {
- var computedStyle = flattenStyle(style[i]);
-
- if (computedStyle) {
- for (var key in computedStyle) {
- result[key] = computedStyle[key];
- }
- }
- }
-
- return result;
- }
-
- module.exports = DeprecatedStyleSheetPropType;
-},2485,[2486]);
-__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
- 'use strict';
-
- function deprecatedCreateStrictShapeTypeChecker(shapeTypes) {
- function checkType(isRequired, props, propName, componentName, location) {
- if (!props[propName]) {
- if (isRequired) {
- _$$_REQUIRE(_dependencyMap[0])(false, "Required object `" + propName + "` was not specified in " + ("`" + componentName + "`."));
- }
-
- return;
- }
-
- var propValue = props[propName];
- var propType = typeof propValue;
- var locationName = location || '(unknown)';
-
- if (propType !== 'object') {
- _$$_REQUIRE(_dependencyMap[0])(false, "Invalid " + locationName + " `" + propName + "` of type `" + propType + "` " + ("supplied to `" + componentName + "`, expected `object`."));
- }
-
- var allKeys = Object.assign({}, props[propName], shapeTypes);
-
- for (var _len = arguments.length, rest = new Array(_len > 5 ? _len - 5 : 0), _key = 5; _key < _len; _key++) {
- rest[_key - 5] = arguments[_key];
- }
-
- for (var key in allKeys) {
- var checker = shapeTypes[key];
-
- if (!checker) {
- _$$_REQUIRE(_dependencyMap[0])(false, "Invalid props." + propName + " key `" + key + "` supplied to `" + componentName + "`." + '\nBad object: ' + JSON.stringify(props[propName], null, ' ') + '\nValid keys: ' + JSON.stringify(Object.keys(shapeTypes), null, ' '));
- }
-
- var error = checker.apply(undefined, [propValue, key, componentName, location].concat(rest));
-
- if (error) {
- _$$_REQUIRE(_dependencyMap[0])(false, error.message + '\nBad object: ' + JSON.stringify(props[propName], null, ' '));
- }
- }
- }
-
- function chainedCheckType(props, propName, componentName, location) {
- for (var _len2 = arguments.length, rest = new Array(_len2 > 4 ? _len2 - 4 : 0), _key2 = 4; _key2 < _len2; _key2++) {
- rest[_key2 - 4] = arguments[_key2];
- }
-
- return checkType.apply(undefined, [false, props, propName, componentName, location].concat(rest));
- }
-
- chainedCheckType.isRequired = checkType.bind(null, true);
- return chainedCheckType;
- }
-
- module.exports = deprecatedCreateStrictShapeTypeChecker;
-},2486,[31]);
-__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
- 'use strict';
-
- var DeprecatedViewStylePropTypes = Object.assign({}, _$$_REQUIRE(_dependencyMap[0]), _$$_REQUIRE(_dependencyMap[1]), _$$_REQUIRE(_dependencyMap[2]), {
- backfaceVisibility: _$$_REQUIRE(_dependencyMap[3]).oneOf(['visible', 'hidden']),
- backgroundColor: _$$_REQUIRE(_dependencyMap[4]),
- borderColor: _$$_REQUIRE(_dependencyMap[4]),
- borderTopColor: _$$_REQUIRE(_dependencyMap[4]),
- borderRightColor: _$$_REQUIRE(_dependencyMap[4]),
- borderBottomColor: _$$_REQUIRE(_dependencyMap[4]),
- borderLeftColor: _$$_REQUIRE(_dependencyMap[4]),
- borderStartColor: _$$_REQUIRE(_dependencyMap[4]),
- borderEndColor: _$$_REQUIRE(_dependencyMap[4]),
- borderRadius: _$$_REQUIRE(_dependencyMap[3]).number,
- borderTopLeftRadius: _$$_REQUIRE(_dependencyMap[3]).number,
- borderTopRightRadius: _$$_REQUIRE(_dependencyMap[3]).number,
- borderTopStartRadius: _$$_REQUIRE(_dependencyMap[3]).number,
- borderTopEndRadius: _$$_REQUIRE(_dependencyMap[3]).number,
- borderBottomLeftRadius: _$$_REQUIRE(_dependencyMap[3]).number,
- borderBottomRightRadius: _$$_REQUIRE(_dependencyMap[3]).number,
- borderBottomStartRadius: _$$_REQUIRE(_dependencyMap[3]).number,
- borderBottomEndRadius: _$$_REQUIRE(_dependencyMap[3]).number,
- borderStyle: _$$_REQUIRE(_dependencyMap[3]).oneOf(['solid', 'dotted', 'dashed']),
- borderWidth: _$$_REQUIRE(_dependencyMap[3]).number,
- borderTopWidth: _$$_REQUIRE(_dependencyMap[3]).number,
- borderRightWidth: _$$_REQUIRE(_dependencyMap[3]).number,
- borderBottomWidth: _$$_REQUIRE(_dependencyMap[3]).number,
- borderLeftWidth: _$$_REQUIRE(_dependencyMap[3]).number,
- opacity: _$$_REQUIRE(_dependencyMap[3]).number,
- elevation: _$$_REQUIRE(_dependencyMap[3]).number
- });
- module.exports = DeprecatedViewStylePropTypes;
-},2487,[2488,2489,2490,582,2481]);
-__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
- 'use strict';
-
- var LayoutPropTypes = {
- display: _$$_REQUIRE(_dependencyMap[0]).oneOf(['none', 'flex']),
- width: _$$_REQUIRE(_dependencyMap[0]).oneOfType([_$$_REQUIRE(_dependencyMap[0]).number, _$$_REQUIRE(_dependencyMap[0]).string]),
- height: _$$_REQUIRE(_dependencyMap[0]).oneOfType([_$$_REQUIRE(_dependencyMap[0]).number, _$$_REQUIRE(_dependencyMap[0]).string]),
- start: _$$_REQUIRE(_dependencyMap[0]).oneOfType([_$$_REQUIRE(_dependencyMap[0]).number, _$$_REQUIRE(_dependencyMap[0]).string]),
- end: _$$_REQUIRE(_dependencyMap[0]).oneOfType([_$$_REQUIRE(_dependencyMap[0]).number, _$$_REQUIRE(_dependencyMap[0]).string]),
- top: _$$_REQUIRE(_dependencyMap[0]).oneOfType([_$$_REQUIRE(_dependencyMap[0]).number, _$$_REQUIRE(_dependencyMap[0]).string]),
- left: _$$_REQUIRE(_dependencyMap[0]).oneOfType([_$$_REQUIRE(_dependencyMap[0]).number, _$$_REQUIRE(_dependencyMap[0]).string]),
- right: _$$_REQUIRE(_dependencyMap[0]).oneOfType([_$$_REQUIRE(_dependencyMap[0]).number, _$$_REQUIRE(_dependencyMap[0]).string]),
- bottom: _$$_REQUIRE(_dependencyMap[0]).oneOfType([_$$_REQUIRE(_dependencyMap[0]).number, _$$_REQUIRE(_dependencyMap[0]).string]),
- minWidth: _$$_REQUIRE(_dependencyMap[0]).oneOfType([_$$_REQUIRE(_dependencyMap[0]).number, _$$_REQUIRE(_dependencyMap[0]).string]),
- maxWidth: _$$_REQUIRE(_dependencyMap[0]).oneOfType([_$$_REQUIRE(_dependencyMap[0]).number, _$$_REQUIRE(_dependencyMap[0]).string]),
- minHeight: _$$_REQUIRE(_dependencyMap[0]).oneOfType([_$$_REQUIRE(_dependencyMap[0]).number, _$$_REQUIRE(_dependencyMap[0]).string]),
- maxHeight: _$$_REQUIRE(_dependencyMap[0]).oneOfType([_$$_REQUIRE(_dependencyMap[0]).number, _$$_REQUIRE(_dependencyMap[0]).string]),
- margin: _$$_REQUIRE(_dependencyMap[0]).oneOfType([_$$_REQUIRE(_dependencyMap[0]).number, _$$_REQUIRE(_dependencyMap[0]).string]),
- marginVertical: _$$_REQUIRE(_dependencyMap[0]).oneOfType([_$$_REQUIRE(_dependencyMap[0]).number, _$$_REQUIRE(_dependencyMap[0]).string]),
- marginHorizontal: _$$_REQUIRE(_dependencyMap[0]).oneOfType([_$$_REQUIRE(_dependencyMap[0]).number, _$$_REQUIRE(_dependencyMap[0]).string]),
- marginTop: _$$_REQUIRE(_dependencyMap[0]).oneOfType([_$$_REQUIRE(_dependencyMap[0]).number, _$$_REQUIRE(_dependencyMap[0]).string]),
- marginBottom: _$$_REQUIRE(_dependencyMap[0]).oneOfType([_$$_REQUIRE(_dependencyMap[0]).number, _$$_REQUIRE(_dependencyMap[0]).string]),
- marginLeft: _$$_REQUIRE(_dependencyMap[0]).oneOfType([_$$_REQUIRE(_dependencyMap[0]).number, _$$_REQUIRE(_dependencyMap[0]).string]),
- marginRight: _$$_REQUIRE(_dependencyMap[0]).oneOfType([_$$_REQUIRE(_dependencyMap[0]).number, _$$_REQUIRE(_dependencyMap[0]).string]),
- marginStart: _$$_REQUIRE(_dependencyMap[0]).oneOfType([_$$_REQUIRE(_dependencyMap[0]).number, _$$_REQUIRE(_dependencyMap[0]).string]),
- marginEnd: _$$_REQUIRE(_dependencyMap[0]).oneOfType([_$$_REQUIRE(_dependencyMap[0]).number, _$$_REQUIRE(_dependencyMap[0]).string]),
- padding: _$$_REQUIRE(_dependencyMap[0]).oneOfType([_$$_REQUIRE(_dependencyMap[0]).number, _$$_REQUIRE(_dependencyMap[0]).string]),
- paddingVertical: _$$_REQUIRE(_dependencyMap[0]).oneOfType([_$$_REQUIRE(_dependencyMap[0]).number, _$$_REQUIRE(_dependencyMap[0]).string]),
- paddingHorizontal: _$$_REQUIRE(_dependencyMap[0]).oneOfType([_$$_REQUIRE(_dependencyMap[0]).number, _$$_REQUIRE(_dependencyMap[0]).string]),
- paddingTop: _$$_REQUIRE(_dependencyMap[0]).oneOfType([_$$_REQUIRE(_dependencyMap[0]).number, _$$_REQUIRE(_dependencyMap[0]).string]),
- paddingBottom: _$$_REQUIRE(_dependencyMap[0]).oneOfType([_$$_REQUIRE(_dependencyMap[0]).number, _$$_REQUIRE(_dependencyMap[0]).string]),
- paddingLeft: _$$_REQUIRE(_dependencyMap[0]).oneOfType([_$$_REQUIRE(_dependencyMap[0]).number, _$$_REQUIRE(_dependencyMap[0]).string]),
- paddingRight: _$$_REQUIRE(_dependencyMap[0]).oneOfType([_$$_REQUIRE(_dependencyMap[0]).number, _$$_REQUIRE(_dependencyMap[0]).string]),
- paddingStart: _$$_REQUIRE(_dependencyMap[0]).oneOfType([_$$_REQUIRE(_dependencyMap[0]).number, _$$_REQUIRE(_dependencyMap[0]).string]),
- paddingEnd: _$$_REQUIRE(_dependencyMap[0]).oneOfType([_$$_REQUIRE(_dependencyMap[0]).number, _$$_REQUIRE(_dependencyMap[0]).string]),
- borderWidth: _$$_REQUIRE(_dependencyMap[0]).number,
- borderTopWidth: _$$_REQUIRE(_dependencyMap[0]).number,
- borderStartWidth: _$$_REQUIRE(_dependencyMap[0]).number,
- borderEndWidth: _$$_REQUIRE(_dependencyMap[0]).number,
- borderRightWidth: _$$_REQUIRE(_dependencyMap[0]).number,
- borderBottomWidth: _$$_REQUIRE(_dependencyMap[0]).number,
- borderLeftWidth: _$$_REQUIRE(_dependencyMap[0]).number,
- position: _$$_REQUIRE(_dependencyMap[0]).oneOf(['absolute', 'relative']),
- flexDirection: _$$_REQUIRE(_dependencyMap[0]).oneOf(['row', 'row-reverse', 'column', 'column-reverse']),
- flexWrap: _$$_REQUIRE(_dependencyMap[0]).oneOf(['wrap', 'nowrap', 'wrap-reverse']),
- justifyContent: _$$_REQUIRE(_dependencyMap[0]).oneOf(['flex-start', 'flex-end', 'center', 'space-between', 'space-around', 'space-evenly']),
- alignItems: _$$_REQUIRE(_dependencyMap[0]).oneOf(['flex-start', 'flex-end', 'center', 'stretch', 'baseline']),
- alignSelf: _$$_REQUIRE(_dependencyMap[0]).oneOf(['auto', 'flex-start', 'flex-end', 'center', 'stretch', 'baseline']),
- alignContent: _$$_REQUIRE(_dependencyMap[0]).oneOf(['flex-start', 'flex-end', 'center', 'stretch', 'space-between', 'space-around']),
- overflow: _$$_REQUIRE(_dependencyMap[0]).oneOf(['visible', 'hidden', 'scroll']),
- flex: _$$_REQUIRE(_dependencyMap[0]).number,
- flexGrow: _$$_REQUIRE(_dependencyMap[0]).number,
- flexShrink: _$$_REQUIRE(_dependencyMap[0]).number,
- flexBasis: _$$_REQUIRE(_dependencyMap[0]).oneOfType([_$$_REQUIRE(_dependencyMap[0]).number, _$$_REQUIRE(_dependencyMap[0]).string]),
- aspectRatio: _$$_REQUIRE(_dependencyMap[0]).number,
- zIndex: _$$_REQUIRE(_dependencyMap[0]).number,
- direction: _$$_REQUIRE(_dependencyMap[0]).oneOf(['inherit', 'ltr', 'rtl'])
- };
- module.exports = LayoutPropTypes;
-},2488,[582]);
-__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
- 'use strict';
-
var DeprecatedShadowPropTypesIOS = {
shadowColor: _$$_REQUIRE(_dependencyMap[0]),
shadowOffset: _$$_REQUIRE(_dependencyMap[1]).shape({
@@ -349788,7 +349640,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
shadowRadius: _$$_REQUIRE(_dependencyMap[1]).number
};
module.exports = DeprecatedShadowPropTypesIOS;
-},2489,[2481,582]);
+},2474,[2466,582]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
'use strict';
@@ -349854,14 +349706,14 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
module.exports = DeprecatedTransformPropTypes;
-},2490,[582]);
+},2475,[582]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
'use strict';
module.exports = {
DeprecatedAccessibilityRoles: ['none', 'button', 'togglebutton', 'link', 'search', 'image', 'keyboardkey', 'text', 'adjustable', 'imagebutton', 'header', 'summary', 'alert', 'checkbox', 'combobox', 'menu', 'menubar', 'menuitem', 'progressbar', 'radio', 'radiogroup', 'scrollbar', 'spinbutton', 'switch', 'tab', 'tablist', 'timer', 'toolbar']
};
-},2491,[]);
+},2476,[]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
'use strict';
@@ -349882,7 +349734,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
borderBottomRightRadius: _$$_REQUIRE(_dependencyMap[3]).number
});
module.exports = ImageStylePropTypes;
-},2492,[2488,2489,2490,582,2481]);
+},2477,[2473,2474,2475,582,2466]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
'use strict';
@@ -349892,7 +349744,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
});
module.exports = PointPropType;
-},2493,[582]);
+},2478,[582]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
'use strict';
@@ -349955,7 +349807,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
textContentType: _$$_REQUIRE(_dependencyMap[1]).oneOf(['none', 'URL', 'addressCity', 'addressCityAndState', 'addressState', 'countryName', 'creditCardNumber', 'emailAddress', 'familyName', 'fullStreetAddress', 'givenName', 'jobTitle', 'location', 'middleName', 'name', 'namePrefix', 'nameSuffix', 'nickname', 'organizationName', 'postalCode', 'streetAddressLine1', 'streetAddressLine2', 'sublocality', 'telephoneNumber', 'username', 'password', 'newPassword', 'oneTimeCode']),
showSoftInputOnFocus: _$$_REQUIRE(_dependencyMap[1]).bool
});
-},2494,[2484,582,2481,2495]);
+},2479,[2469,582,2466,2480]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
'use strict';
@@ -349984,7 +349836,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
disabled: _$$_REQUIRE(_dependencyMap[2]).bool,
dataDetectorType: _$$_REQUIRE(_dependencyMap[2]).oneOf(DataDetectorTypes)
};
-},2495,[2485,2496,582,2482,2481]);
+},2480,[2470,2481,582,2467,2466]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
'use strict';
@@ -350013,7 +349865,592 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
writingDirection: _$$_REQUIRE(_dependencyMap[2]).oneOf(['auto', 'ltr', 'rtl'])
});
module.exports = DeprecatedTextStylePropTypes;
-},2496,[2487,2481,582]);
+},2481,[2472,2466,582]);
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ 'use strict';
+
+ module.exports = {
+ get ColorPropType() {
+ return _$$_REQUIRE(_dependencyMap[0]);
+ },
+
+ get EdgeInsetsPropType() {
+ return _$$_REQUIRE(_dependencyMap[1]);
+ },
+
+ get ImagePropTypes() {
+ return _$$_REQUIRE(_dependencyMap[2]);
+ },
+
+ get PointPropType() {
+ return _$$_REQUIRE(_dependencyMap[3]);
+ },
+
+ get TextInputPropTypes() {
+ return _$$_REQUIRE(_dependencyMap[4]);
+ },
+
+ get TextPropTypes() {
+ return _$$_REQUIRE(_dependencyMap[5]);
+ },
+
+ get ViewPropTypes() {
+ return _$$_REQUIRE(_dependencyMap[6]);
+ }
+
+ };
+},2482,[2483,2484,2485,2495,2496,2497,2486]);
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ 'use strict';
+
+ var colorPropType = function colorPropType(isRequired, props, propName, componentName, location, propFullName) {
+ var color = props[propName];
+
+ if (color == null) {
+ if (isRequired) {
+ return new Error('Required ' + location + ' `' + (propFullName || propName) + '` was not specified in `' + componentName + '`.');
+ }
+
+ return;
+ }
+
+ if (typeof color === 'number') {
+ return;
+ }
+
+ if (typeof color === 'string' && _$$_REQUIRE(_dependencyMap[0])(color) === null) {
+ return new Error('Invalid ' + location + ' `' + (propFullName || propName) + '` supplied to `' + componentName + '`: ' + color + '\n' + "Valid color formats are\n - '#f0f' (#rgb)\n - '#f0fc' (#rgba)\n - '#ff00ff' (#rrggbb)\n - '#ff00ff00' (#rrggbbaa)\n - 'rgb(255, 255, 255)'\n - 'rgba(255, 255, 255, 1.0)'\n - 'hsl(360, 100%, 100%)'\n - 'hsla(360, 100%, 100%, 1.0)'\n - 'transparent'\n - 'red'\n - 0xff00ff00 (0xrrggbbaa)\n");
+ }
+ };
+
+ var ColorPropType = colorPropType.bind(null, false);
+ ColorPropType.isRequired = colorPropType.bind(null, true);
+ module.exports = ColorPropType;
+},2483,[145]);
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ 'use strict';
+
+ var DeprecatedEdgeInsetsPropType = _$$_REQUIRE(_dependencyMap[0]).shape({
+ top: _$$_REQUIRE(_dependencyMap[0]).number,
+ left: _$$_REQUIRE(_dependencyMap[0]).number,
+ bottom: _$$_REQUIRE(_dependencyMap[0]).number,
+ right: _$$_REQUIRE(_dependencyMap[0]).number
+ });
+
+ module.exports = DeprecatedEdgeInsetsPropType;
+},2484,[582]);
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ 'use strict';
+
+ var DeprecatedImagePropType = Object.assign({}, _$$_REQUIRE(_dependencyMap[0]), {
+ style: _$$_REQUIRE(_dependencyMap[1])(_$$_REQUIRE(_dependencyMap[2])),
+ source: _$$_REQUIRE(_dependencyMap[3]).oneOfType([_$$_REQUIRE(_dependencyMap[3]).shape({
+ uri: _$$_REQUIRE(_dependencyMap[3]).string,
+ headers: _$$_REQUIRE(_dependencyMap[3]).objectOf(_$$_REQUIRE(_dependencyMap[3]).string)
+ }), _$$_REQUIRE(_dependencyMap[3]).number, _$$_REQUIRE(_dependencyMap[3]).arrayOf(_$$_REQUIRE(_dependencyMap[3]).shape({
+ uri: _$$_REQUIRE(_dependencyMap[3]).string,
+ width: _$$_REQUIRE(_dependencyMap[3]).number,
+ height: _$$_REQUIRE(_dependencyMap[3]).number,
+ headers: _$$_REQUIRE(_dependencyMap[3]).objectOf(_$$_REQUIRE(_dependencyMap[3]).string)
+ }))]),
+ blurRadius: _$$_REQUIRE(_dependencyMap[3]).number,
+ defaultSource: _$$_REQUIRE(_dependencyMap[3]).number,
+ loadingIndicatorSource: _$$_REQUIRE(_dependencyMap[3]).oneOfType([_$$_REQUIRE(_dependencyMap[3]).shape({
+ uri: _$$_REQUIRE(_dependencyMap[3]).string
+ }), _$$_REQUIRE(_dependencyMap[3]).number]),
+ progressiveRenderingEnabled: _$$_REQUIRE(_dependencyMap[3]).bool,
+ fadeDuration: _$$_REQUIRE(_dependencyMap[3]).number,
+ internal_analyticTag: _$$_REQUIRE(_dependencyMap[3]).string,
+ onLoadStart: _$$_REQUIRE(_dependencyMap[3]).func,
+ onError: _$$_REQUIRE(_dependencyMap[3]).func,
+ onLoad: _$$_REQUIRE(_dependencyMap[3]).func,
+ onLoadEnd: _$$_REQUIRE(_dependencyMap[3]).func,
+ testID: _$$_REQUIRE(_dependencyMap[3]).string,
+ resizeMethod: _$$_REQUIRE(_dependencyMap[3]).oneOf(['auto', 'resize', 'scale']),
+ resizeMode: _$$_REQUIRE(_dependencyMap[3]).oneOf(['cover', 'contain', 'stretch', 'repeat', 'center'])
+ });
+ module.exports = DeprecatedImagePropType;
+},2485,[2486,2487,2494,582]);
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ 'use strict';
+
+ var stylePropType = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[1]));
+
+ module.exports = {
+ accessible: _$$_REQUIRE(_dependencyMap[2]).bool,
+ accessibilityLabel: _$$_REQUIRE(_dependencyMap[2]).node,
+ accessibilityHint: _$$_REQUIRE(_dependencyMap[2]).string,
+ accessibilityActions: _$$_REQUIRE(_dependencyMap[2]).arrayOf(_$$_REQUIRE(_dependencyMap[2]).string),
+ accessibilityIgnoresInvertColors: _$$_REQUIRE(_dependencyMap[2]).bool,
+ accessibilityRole: _$$_REQUIRE(_dependencyMap[2]).oneOf(_$$_REQUIRE(_dependencyMap[3]).DeprecatedAccessibilityRoles),
+ accessibilityState: _$$_REQUIRE(_dependencyMap[2]).object,
+ accessibilityValue: _$$_REQUIRE(_dependencyMap[2]).object,
+ accessibilityLiveRegion: _$$_REQUIRE(_dependencyMap[2]).oneOf(['none', 'polite', 'assertive']),
+ importantForAccessibility: _$$_REQUIRE(_dependencyMap[2]).oneOf(['auto', 'yes', 'no', 'no-hide-descendants']),
+ accessibilityViewIsModal: _$$_REQUIRE(_dependencyMap[2]).bool,
+ accessibilityElementsHidden: _$$_REQUIRE(_dependencyMap[2]).bool,
+ onAccessibilityAction: _$$_REQUIRE(_dependencyMap[2]).func,
+ onAccessibilityTap: _$$_REQUIRE(_dependencyMap[2]).func,
+ onMagicTap: _$$_REQUIRE(_dependencyMap[2]).func,
+ testID: _$$_REQUIRE(_dependencyMap[2]).string,
+ nativeID: _$$_REQUIRE(_dependencyMap[2]).string,
+ onResponderGrant: _$$_REQUIRE(_dependencyMap[2]).func,
+ onResponderMove: _$$_REQUIRE(_dependencyMap[2]).func,
+ onResponderReject: _$$_REQUIRE(_dependencyMap[2]).func,
+ onResponderRelease: _$$_REQUIRE(_dependencyMap[2]).func,
+ onResponderTerminate: _$$_REQUIRE(_dependencyMap[2]).func,
+ onResponderTerminationRequest: _$$_REQUIRE(_dependencyMap[2]).func,
+ onStartShouldSetResponder: _$$_REQUIRE(_dependencyMap[2]).func,
+ onStartShouldSetResponderCapture: _$$_REQUIRE(_dependencyMap[2]).func,
+ onMoveShouldSetResponder: _$$_REQUIRE(_dependencyMap[2]).func,
+ onMoveShouldSetResponderCapture: _$$_REQUIRE(_dependencyMap[2]).func,
+ hitSlop: _$$_REQUIRE(_dependencyMap[4]),
+ onLayout: _$$_REQUIRE(_dependencyMap[2]).func,
+ pointerEvents: _$$_REQUIRE(_dependencyMap[2]).oneOf(['box-none', 'none', 'box-only', 'auto']),
+ style: stylePropType,
+ removeClippedSubviews: _$$_REQUIRE(_dependencyMap[2]).bool,
+ renderToHardwareTextureAndroid: _$$_REQUIRE(_dependencyMap[2]).bool,
+ shouldRasterizeIOS: _$$_REQUIRE(_dependencyMap[2]).bool,
+ collapsable: _$$_REQUIRE(_dependencyMap[2]).bool,
+ needsOffscreenAlphaCompositing: _$$_REQUIRE(_dependencyMap[2]).bool
+ };
+},2486,[2487,2489,582,2493,2484]);
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ 'use strict';
+
+ function DeprecatedStyleSheetPropType(shape) {
+ var shapePropType = _$$_REQUIRE(_dependencyMap[0])(shape);
+
+ return function (props, propName, componentName, location) {
+ var newProps = props;
+
+ if (props[propName]) {
+ newProps = {};
+ newProps[propName] = flattenStyle(props[propName]);
+ }
+
+ for (var _len = arguments.length, rest = new Array(_len > 4 ? _len - 4 : 0), _key = 4; _key < _len; _key++) {
+ rest[_key - 4] = arguments[_key];
+ }
+
+ return shapePropType.apply(undefined, [newProps, propName, componentName, location].concat(rest));
+ };
+ }
+
+ function flattenStyle(style) {
+ if (style === null || typeof style !== 'object') {
+ return undefined;
+ }
+
+ if (!Array.isArray(style)) {
+ return style;
+ }
+
+ var result = {};
+
+ for (var i = 0, styleLength = style.length; i < styleLength; ++i) {
+ var computedStyle = flattenStyle(style[i]);
+
+ if (computedStyle) {
+ for (var key in computedStyle) {
+ result[key] = computedStyle[key];
+ }
+ }
+ }
+
+ return result;
+ }
+
+ module.exports = DeprecatedStyleSheetPropType;
+},2487,[2488]);
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ 'use strict';
+
+ function deprecatedCreateStrictShapeTypeChecker(shapeTypes) {
+ function checkType(isRequired, props, propName, componentName, location) {
+ if (!props[propName]) {
+ if (isRequired) {
+ _$$_REQUIRE(_dependencyMap[0])(false, "Required object `" + propName + "` was not specified in " + ("`" + componentName + "`."));
+ }
+
+ return;
+ }
+
+ var propValue = props[propName];
+ var propType = typeof propValue;
+ var locationName = location || '(unknown)';
+
+ if (propType !== 'object') {
+ _$$_REQUIRE(_dependencyMap[0])(false, "Invalid " + locationName + " `" + propName + "` of type `" + propType + "` " + ("supplied to `" + componentName + "`, expected `object`."));
+ }
+
+ var allKeys = Object.assign({}, props[propName], shapeTypes);
+
+ for (var _len = arguments.length, rest = new Array(_len > 5 ? _len - 5 : 0), _key = 5; _key < _len; _key++) {
+ rest[_key - 5] = arguments[_key];
+ }
+
+ for (var key in allKeys) {
+ var checker = shapeTypes[key];
+
+ if (!checker) {
+ _$$_REQUIRE(_dependencyMap[0])(false, "Invalid props." + propName + " key `" + key + "` supplied to `" + componentName + "`." + '\nBad object: ' + JSON.stringify(props[propName], null, ' ') + '\nValid keys: ' + JSON.stringify(Object.keys(shapeTypes), null, ' '));
+ }
+
+ var error = checker.apply(undefined, [propValue, key, componentName, location].concat(rest));
+
+ if (error) {
+ _$$_REQUIRE(_dependencyMap[0])(false, error.message + '\nBad object: ' + JSON.stringify(props[propName], null, ' '));
+ }
+ }
+ }
+
+ function chainedCheckType(props, propName, componentName, location) {
+ for (var _len2 = arguments.length, rest = new Array(_len2 > 4 ? _len2 - 4 : 0), _key2 = 4; _key2 < _len2; _key2++) {
+ rest[_key2 - 4] = arguments[_key2];
+ }
+
+ return checkType.apply(undefined, [false, props, propName, componentName, location].concat(rest));
+ }
+
+ chainedCheckType.isRequired = checkType.bind(null, true);
+ return chainedCheckType;
+ }
+
+ module.exports = deprecatedCreateStrictShapeTypeChecker;
+},2488,[31]);
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ 'use strict';
+
+ var DeprecatedViewStylePropTypes = Object.assign({}, _$$_REQUIRE(_dependencyMap[0]), _$$_REQUIRE(_dependencyMap[1]), _$$_REQUIRE(_dependencyMap[2]), {
+ backfaceVisibility: _$$_REQUIRE(_dependencyMap[3]).oneOf(['visible', 'hidden']),
+ backgroundColor: _$$_REQUIRE(_dependencyMap[4]),
+ borderColor: _$$_REQUIRE(_dependencyMap[4]),
+ borderTopColor: _$$_REQUIRE(_dependencyMap[4]),
+ borderRightColor: _$$_REQUIRE(_dependencyMap[4]),
+ borderBottomColor: _$$_REQUIRE(_dependencyMap[4]),
+ borderLeftColor: _$$_REQUIRE(_dependencyMap[4]),
+ borderStartColor: _$$_REQUIRE(_dependencyMap[4]),
+ borderEndColor: _$$_REQUIRE(_dependencyMap[4]),
+ borderRadius: _$$_REQUIRE(_dependencyMap[3]).number,
+ borderTopLeftRadius: _$$_REQUIRE(_dependencyMap[3]).number,
+ borderTopRightRadius: _$$_REQUIRE(_dependencyMap[3]).number,
+ borderTopStartRadius: _$$_REQUIRE(_dependencyMap[3]).number,
+ borderTopEndRadius: _$$_REQUIRE(_dependencyMap[3]).number,
+ borderBottomLeftRadius: _$$_REQUIRE(_dependencyMap[3]).number,
+ borderBottomRightRadius: _$$_REQUIRE(_dependencyMap[3]).number,
+ borderBottomStartRadius: _$$_REQUIRE(_dependencyMap[3]).number,
+ borderBottomEndRadius: _$$_REQUIRE(_dependencyMap[3]).number,
+ borderStyle: _$$_REQUIRE(_dependencyMap[3]).oneOf(['solid', 'dotted', 'dashed']),
+ borderWidth: _$$_REQUIRE(_dependencyMap[3]).number,
+ borderTopWidth: _$$_REQUIRE(_dependencyMap[3]).number,
+ borderRightWidth: _$$_REQUIRE(_dependencyMap[3]).number,
+ borderBottomWidth: _$$_REQUIRE(_dependencyMap[3]).number,
+ borderLeftWidth: _$$_REQUIRE(_dependencyMap[3]).number,
+ opacity: _$$_REQUIRE(_dependencyMap[3]).number,
+ elevation: _$$_REQUIRE(_dependencyMap[3]).number
+ });
+ module.exports = DeprecatedViewStylePropTypes;
+},2489,[2490,2491,2492,582,2483]);
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ 'use strict';
+
+ var LayoutPropTypes = {
+ display: _$$_REQUIRE(_dependencyMap[0]).oneOf(['none', 'flex']),
+ width: _$$_REQUIRE(_dependencyMap[0]).oneOfType([_$$_REQUIRE(_dependencyMap[0]).number, _$$_REQUIRE(_dependencyMap[0]).string]),
+ height: _$$_REQUIRE(_dependencyMap[0]).oneOfType([_$$_REQUIRE(_dependencyMap[0]).number, _$$_REQUIRE(_dependencyMap[0]).string]),
+ start: _$$_REQUIRE(_dependencyMap[0]).oneOfType([_$$_REQUIRE(_dependencyMap[0]).number, _$$_REQUIRE(_dependencyMap[0]).string]),
+ end: _$$_REQUIRE(_dependencyMap[0]).oneOfType([_$$_REQUIRE(_dependencyMap[0]).number, _$$_REQUIRE(_dependencyMap[0]).string]),
+ top: _$$_REQUIRE(_dependencyMap[0]).oneOfType([_$$_REQUIRE(_dependencyMap[0]).number, _$$_REQUIRE(_dependencyMap[0]).string]),
+ left: _$$_REQUIRE(_dependencyMap[0]).oneOfType([_$$_REQUIRE(_dependencyMap[0]).number, _$$_REQUIRE(_dependencyMap[0]).string]),
+ right: _$$_REQUIRE(_dependencyMap[0]).oneOfType([_$$_REQUIRE(_dependencyMap[0]).number, _$$_REQUIRE(_dependencyMap[0]).string]),
+ bottom: _$$_REQUIRE(_dependencyMap[0]).oneOfType([_$$_REQUIRE(_dependencyMap[0]).number, _$$_REQUIRE(_dependencyMap[0]).string]),
+ minWidth: _$$_REQUIRE(_dependencyMap[0]).oneOfType([_$$_REQUIRE(_dependencyMap[0]).number, _$$_REQUIRE(_dependencyMap[0]).string]),
+ maxWidth: _$$_REQUIRE(_dependencyMap[0]).oneOfType([_$$_REQUIRE(_dependencyMap[0]).number, _$$_REQUIRE(_dependencyMap[0]).string]),
+ minHeight: _$$_REQUIRE(_dependencyMap[0]).oneOfType([_$$_REQUIRE(_dependencyMap[0]).number, _$$_REQUIRE(_dependencyMap[0]).string]),
+ maxHeight: _$$_REQUIRE(_dependencyMap[0]).oneOfType([_$$_REQUIRE(_dependencyMap[0]).number, _$$_REQUIRE(_dependencyMap[0]).string]),
+ margin: _$$_REQUIRE(_dependencyMap[0]).oneOfType([_$$_REQUIRE(_dependencyMap[0]).number, _$$_REQUIRE(_dependencyMap[0]).string]),
+ marginVertical: _$$_REQUIRE(_dependencyMap[0]).oneOfType([_$$_REQUIRE(_dependencyMap[0]).number, _$$_REQUIRE(_dependencyMap[0]).string]),
+ marginHorizontal: _$$_REQUIRE(_dependencyMap[0]).oneOfType([_$$_REQUIRE(_dependencyMap[0]).number, _$$_REQUIRE(_dependencyMap[0]).string]),
+ marginTop: _$$_REQUIRE(_dependencyMap[0]).oneOfType([_$$_REQUIRE(_dependencyMap[0]).number, _$$_REQUIRE(_dependencyMap[0]).string]),
+ marginBottom: _$$_REQUIRE(_dependencyMap[0]).oneOfType([_$$_REQUIRE(_dependencyMap[0]).number, _$$_REQUIRE(_dependencyMap[0]).string]),
+ marginLeft: _$$_REQUIRE(_dependencyMap[0]).oneOfType([_$$_REQUIRE(_dependencyMap[0]).number, _$$_REQUIRE(_dependencyMap[0]).string]),
+ marginRight: _$$_REQUIRE(_dependencyMap[0]).oneOfType([_$$_REQUIRE(_dependencyMap[0]).number, _$$_REQUIRE(_dependencyMap[0]).string]),
+ marginStart: _$$_REQUIRE(_dependencyMap[0]).oneOfType([_$$_REQUIRE(_dependencyMap[0]).number, _$$_REQUIRE(_dependencyMap[0]).string]),
+ marginEnd: _$$_REQUIRE(_dependencyMap[0]).oneOfType([_$$_REQUIRE(_dependencyMap[0]).number, _$$_REQUIRE(_dependencyMap[0]).string]),
+ padding: _$$_REQUIRE(_dependencyMap[0]).oneOfType([_$$_REQUIRE(_dependencyMap[0]).number, _$$_REQUIRE(_dependencyMap[0]).string]),
+ paddingVertical: _$$_REQUIRE(_dependencyMap[0]).oneOfType([_$$_REQUIRE(_dependencyMap[0]).number, _$$_REQUIRE(_dependencyMap[0]).string]),
+ paddingHorizontal: _$$_REQUIRE(_dependencyMap[0]).oneOfType([_$$_REQUIRE(_dependencyMap[0]).number, _$$_REQUIRE(_dependencyMap[0]).string]),
+ paddingTop: _$$_REQUIRE(_dependencyMap[0]).oneOfType([_$$_REQUIRE(_dependencyMap[0]).number, _$$_REQUIRE(_dependencyMap[0]).string]),
+ paddingBottom: _$$_REQUIRE(_dependencyMap[0]).oneOfType([_$$_REQUIRE(_dependencyMap[0]).number, _$$_REQUIRE(_dependencyMap[0]).string]),
+ paddingLeft: _$$_REQUIRE(_dependencyMap[0]).oneOfType([_$$_REQUIRE(_dependencyMap[0]).number, _$$_REQUIRE(_dependencyMap[0]).string]),
+ paddingRight: _$$_REQUIRE(_dependencyMap[0]).oneOfType([_$$_REQUIRE(_dependencyMap[0]).number, _$$_REQUIRE(_dependencyMap[0]).string]),
+ paddingStart: _$$_REQUIRE(_dependencyMap[0]).oneOfType([_$$_REQUIRE(_dependencyMap[0]).number, _$$_REQUIRE(_dependencyMap[0]).string]),
+ paddingEnd: _$$_REQUIRE(_dependencyMap[0]).oneOfType([_$$_REQUIRE(_dependencyMap[0]).number, _$$_REQUIRE(_dependencyMap[0]).string]),
+ borderWidth: _$$_REQUIRE(_dependencyMap[0]).number,
+ borderTopWidth: _$$_REQUIRE(_dependencyMap[0]).number,
+ borderStartWidth: _$$_REQUIRE(_dependencyMap[0]).number,
+ borderEndWidth: _$$_REQUIRE(_dependencyMap[0]).number,
+ borderRightWidth: _$$_REQUIRE(_dependencyMap[0]).number,
+ borderBottomWidth: _$$_REQUIRE(_dependencyMap[0]).number,
+ borderLeftWidth: _$$_REQUIRE(_dependencyMap[0]).number,
+ position: _$$_REQUIRE(_dependencyMap[0]).oneOf(['absolute', 'relative']),
+ flexDirection: _$$_REQUIRE(_dependencyMap[0]).oneOf(['row', 'row-reverse', 'column', 'column-reverse']),
+ flexWrap: _$$_REQUIRE(_dependencyMap[0]).oneOf(['wrap', 'nowrap', 'wrap-reverse']),
+ justifyContent: _$$_REQUIRE(_dependencyMap[0]).oneOf(['flex-start', 'flex-end', 'center', 'space-between', 'space-around', 'space-evenly']),
+ alignItems: _$$_REQUIRE(_dependencyMap[0]).oneOf(['flex-start', 'flex-end', 'center', 'stretch', 'baseline']),
+ alignSelf: _$$_REQUIRE(_dependencyMap[0]).oneOf(['auto', 'flex-start', 'flex-end', 'center', 'stretch', 'baseline']),
+ alignContent: _$$_REQUIRE(_dependencyMap[0]).oneOf(['flex-start', 'flex-end', 'center', 'stretch', 'space-between', 'space-around']),
+ overflow: _$$_REQUIRE(_dependencyMap[0]).oneOf(['visible', 'hidden', 'scroll']),
+ flex: _$$_REQUIRE(_dependencyMap[0]).number,
+ flexGrow: _$$_REQUIRE(_dependencyMap[0]).number,
+ flexShrink: _$$_REQUIRE(_dependencyMap[0]).number,
+ flexBasis: _$$_REQUIRE(_dependencyMap[0]).oneOfType([_$$_REQUIRE(_dependencyMap[0]).number, _$$_REQUIRE(_dependencyMap[0]).string]),
+ aspectRatio: _$$_REQUIRE(_dependencyMap[0]).number,
+ zIndex: _$$_REQUIRE(_dependencyMap[0]).number,
+ direction: _$$_REQUIRE(_dependencyMap[0]).oneOf(['inherit', 'ltr', 'rtl'])
+ };
+ module.exports = LayoutPropTypes;
+},2490,[582]);
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ 'use strict';
+
+ var DeprecatedShadowPropTypesIOS = {
+ shadowColor: _$$_REQUIRE(_dependencyMap[0]),
+ shadowOffset: _$$_REQUIRE(_dependencyMap[1]).shape({
+ width: _$$_REQUIRE(_dependencyMap[1]).number,
+ height: _$$_REQUIRE(_dependencyMap[1]).number
+ }),
+ shadowOpacity: _$$_REQUIRE(_dependencyMap[1]).number,
+ shadowRadius: _$$_REQUIRE(_dependencyMap[1]).number
+ };
+ module.exports = DeprecatedShadowPropTypesIOS;
+},2491,[2483,582]);
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ 'use strict';
+
+ var TransformMatrixPropType = function TransformMatrixPropType(props, propName, componentName) {
+ if (props[propName]) {
+ return new Error("The transformMatrix style property is deprecated. Use `transform: [{ matrix: ... }]` instead.");
+ }
+ };
+
+ var DecomposedMatrixPropType = function DecomposedMatrixPropType(props, propName, componentName) {
+ if (props[propName]) {
+ return new Error("The decomposedMatrix style property is deprecated. Use `transform: [...]` instead.");
+ }
+ };
+
+ var DeprecatedTransformPropTypes = {
+ transform: _$$_REQUIRE(_dependencyMap[0]).arrayOf(_$$_REQUIRE(_dependencyMap[0]).oneOfType([_$$_REQUIRE(_dependencyMap[0]).shape({
+ perspective: _$$_REQUIRE(_dependencyMap[0]).number
+ }), _$$_REQUIRE(_dependencyMap[0]).shape({
+ rotate: _$$_REQUIRE(_dependencyMap[0]).string
+ }), _$$_REQUIRE(_dependencyMap[0]).shape({
+ rotateX: _$$_REQUIRE(_dependencyMap[0]).string
+ }), _$$_REQUIRE(_dependencyMap[0]).shape({
+ rotateY: _$$_REQUIRE(_dependencyMap[0]).string
+ }), _$$_REQUIRE(_dependencyMap[0]).shape({
+ rotateZ: _$$_REQUIRE(_dependencyMap[0]).string
+ }), _$$_REQUIRE(_dependencyMap[0]).shape({
+ scale: _$$_REQUIRE(_dependencyMap[0]).number
+ }), _$$_REQUIRE(_dependencyMap[0]).shape({
+ scaleX: _$$_REQUIRE(_dependencyMap[0]).number
+ }), _$$_REQUIRE(_dependencyMap[0]).shape({
+ scaleY: _$$_REQUIRE(_dependencyMap[0]).number
+ }), _$$_REQUIRE(_dependencyMap[0]).shape({
+ translateX: _$$_REQUIRE(_dependencyMap[0]).number
+ }), _$$_REQUIRE(_dependencyMap[0]).shape({
+ translateY: _$$_REQUIRE(_dependencyMap[0]).number
+ }), _$$_REQUIRE(_dependencyMap[0]).shape({
+ skewX: _$$_REQUIRE(_dependencyMap[0]).string
+ }), _$$_REQUIRE(_dependencyMap[0]).shape({
+ skewY: _$$_REQUIRE(_dependencyMap[0]).string
+ })])),
+ transformMatrix: TransformMatrixPropType,
+ decomposedMatrix: DecomposedMatrixPropType,
+ scaleX: deprecatedPropType(_$$_REQUIRE(_dependencyMap[0]).number, 'Use the transform prop instead.'),
+ scaleY: deprecatedPropType(_$$_REQUIRE(_dependencyMap[0]).number, 'Use the transform prop instead.'),
+ rotation: deprecatedPropType(_$$_REQUIRE(_dependencyMap[0]).number, 'Use the transform prop instead.'),
+ translateX: deprecatedPropType(_$$_REQUIRE(_dependencyMap[0]).number, 'Use the transform prop instead.'),
+ translateY: deprecatedPropType(_$$_REQUIRE(_dependencyMap[0]).number, 'Use the transform prop instead.')
+ };
+
+ function deprecatedPropType(propType, explanation) {
+ return function validate(props, propName, componentName) {
+ if (props[propName] !== undefined) {
+ console.warn("`" + propName + "` supplied to `" + componentName + "` has been deprecated. " + explanation);
+ }
+
+ for (var _len = arguments.length, rest = new Array(_len > 3 ? _len - 3 : 0), _key = 3; _key < _len; _key++) {
+ rest[_key - 3] = arguments[_key];
+ }
+
+ return propType.apply(undefined, [props, propName, componentName].concat(rest));
+ };
+ }
+
+ module.exports = DeprecatedTransformPropTypes;
+},2492,[582]);
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ 'use strict';
+
+ module.exports = {
+ DeprecatedAccessibilityRoles: ['none', 'button', 'togglebutton', 'link', 'search', 'image', 'keyboardkey', 'text', 'adjustable', 'imagebutton', 'header', 'summary', 'alert', 'checkbox', 'combobox', 'menu', 'menubar', 'menuitem', 'progressbar', 'radio', 'radiogroup', 'scrollbar', 'spinbutton', 'switch', 'tab', 'tablist', 'timer', 'toolbar']
+ };
+},2493,[]);
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ 'use strict';
+
+ var ImageStylePropTypes = Object.assign({}, _$$_REQUIRE(_dependencyMap[0]), _$$_REQUIRE(_dependencyMap[1]), _$$_REQUIRE(_dependencyMap[2]), {
+ resizeMode: _$$_REQUIRE(_dependencyMap[3]).oneOf(['center', 'contain', 'cover', 'repeat', 'stretch']),
+ backfaceVisibility: _$$_REQUIRE(_dependencyMap[3]).oneOf(['visible', 'hidden']),
+ backgroundColor: _$$_REQUIRE(_dependencyMap[4]),
+ borderColor: _$$_REQUIRE(_dependencyMap[4]),
+ borderWidth: _$$_REQUIRE(_dependencyMap[3]).number,
+ borderRadius: _$$_REQUIRE(_dependencyMap[3]).number,
+ overflow: _$$_REQUIRE(_dependencyMap[3]).oneOf(['visible', 'hidden']),
+ tintColor: _$$_REQUIRE(_dependencyMap[4]),
+ opacity: _$$_REQUIRE(_dependencyMap[3]).number,
+ overlayColor: _$$_REQUIRE(_dependencyMap[3]).string,
+ borderTopLeftRadius: _$$_REQUIRE(_dependencyMap[3]).number,
+ borderTopRightRadius: _$$_REQUIRE(_dependencyMap[3]).number,
+ borderBottomLeftRadius: _$$_REQUIRE(_dependencyMap[3]).number,
+ borderBottomRightRadius: _$$_REQUIRE(_dependencyMap[3]).number
+ });
+ module.exports = ImageStylePropTypes;
+},2494,[2490,2491,2492,582,2483]);
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ 'use strict';
+
+ var PointPropType = _$$_REQUIRE(_dependencyMap[0]).shape({
+ x: _$$_REQUIRE(_dependencyMap[0]).number,
+ y: _$$_REQUIRE(_dependencyMap[0]).number
+ });
+
+ module.exports = PointPropType;
+},2495,[582]);
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ 'use strict';
+
+ var DataDetectorTypes = ['phoneNumber', 'link', 'address', 'calendarEvent', 'none', 'all'];
+ module.exports = Object.assign({}, _$$_REQUIRE(_dependencyMap[0]), {
+ autoCapitalize: _$$_REQUIRE(_dependencyMap[1]).oneOf(['none', 'sentences', 'words', 'characters']),
+ autoCompleteType: _$$_REQUIRE(_dependencyMap[1]).oneOf(['cc-csc', 'cc-exp', 'cc-exp-month', 'cc-exp-year', 'cc-number', 'email', 'name', 'password', 'postal-code', 'street-address', 'tel', 'username', 'off']),
+ autoCorrect: _$$_REQUIRE(_dependencyMap[1]).bool,
+ spellCheck: _$$_REQUIRE(_dependencyMap[1]).bool,
+ autoFocus: _$$_REQUIRE(_dependencyMap[1]).bool,
+ allowFontScaling: _$$_REQUIRE(_dependencyMap[1]).bool,
+ maxFontSizeMultiplier: _$$_REQUIRE(_dependencyMap[1]).number,
+ editable: _$$_REQUIRE(_dependencyMap[1]).bool,
+ keyboardType: _$$_REQUIRE(_dependencyMap[1]).oneOf(['default', 'email-address', 'numeric', 'phone-pad', 'number-pad', 'ascii-capable', 'numbers-and-punctuation', 'url', 'name-phone-pad', 'decimal-pad', 'twitter', 'web-search', 'ascii-capable-number-pad', 'visible-password']),
+ keyboardAppearance: _$$_REQUIRE(_dependencyMap[1]).oneOf(['default', 'light', 'dark']),
+ returnKeyType: _$$_REQUIRE(_dependencyMap[1]).oneOf(['done', 'go', 'next', 'search', 'send', 'none', 'previous', 'default', 'emergency-call', 'google', 'join', 'route', 'yahoo']),
+ returnKeyLabel: _$$_REQUIRE(_dependencyMap[1]).string,
+ maxLength: _$$_REQUIRE(_dependencyMap[1]).number,
+ numberOfLines: _$$_REQUIRE(_dependencyMap[1]).number,
+ disableFullscreenUI: _$$_REQUIRE(_dependencyMap[1]).bool,
+ enablesReturnKeyAutomatically: _$$_REQUIRE(_dependencyMap[1]).bool,
+ multiline: _$$_REQUIRE(_dependencyMap[1]).bool,
+ textBreakStrategy: _$$_REQUIRE(_dependencyMap[1]).oneOf(['simple', 'highQuality', 'balanced']),
+ onBlur: _$$_REQUIRE(_dependencyMap[1]).func,
+ onFocus: _$$_REQUIRE(_dependencyMap[1]).func,
+ onChange: _$$_REQUIRE(_dependencyMap[1]).func,
+ onChangeText: _$$_REQUIRE(_dependencyMap[1]).func,
+ onContentSizeChange: _$$_REQUIRE(_dependencyMap[1]).func,
+ onTextInput: _$$_REQUIRE(_dependencyMap[1]).func,
+ onEndEditing: _$$_REQUIRE(_dependencyMap[1]).func,
+ onSelectionChange: _$$_REQUIRE(_dependencyMap[1]).func,
+ onSubmitEditing: _$$_REQUIRE(_dependencyMap[1]).func,
+ onKeyPress: _$$_REQUIRE(_dependencyMap[1]).func,
+ onLayout: _$$_REQUIRE(_dependencyMap[1]).func,
+ onScroll: _$$_REQUIRE(_dependencyMap[1]).func,
+ placeholder: _$$_REQUIRE(_dependencyMap[1]).string,
+ placeholderTextColor: _$$_REQUIRE(_dependencyMap[2]),
+ scrollEnabled: _$$_REQUIRE(_dependencyMap[1]).bool,
+ secureTextEntry: _$$_REQUIRE(_dependencyMap[1]).bool,
+ selectionColor: _$$_REQUIRE(_dependencyMap[2]),
+ selection: _$$_REQUIRE(_dependencyMap[1]).shape({
+ start: _$$_REQUIRE(_dependencyMap[1]).number.isRequired,
+ end: _$$_REQUIRE(_dependencyMap[1]).number
+ }),
+ value: _$$_REQUIRE(_dependencyMap[1]).string,
+ defaultValue: _$$_REQUIRE(_dependencyMap[1]).string,
+ clearButtonMode: _$$_REQUIRE(_dependencyMap[1]).oneOf(['never', 'while-editing', 'unless-editing', 'always']),
+ clearTextOnFocus: _$$_REQUIRE(_dependencyMap[1]).bool,
+ selectTextOnFocus: _$$_REQUIRE(_dependencyMap[1]).bool,
+ blurOnSubmit: _$$_REQUIRE(_dependencyMap[1]).bool,
+ style: _$$_REQUIRE(_dependencyMap[3]).style,
+ underlineColorAndroid: _$$_REQUIRE(_dependencyMap[2]),
+ inlineImageLeft: _$$_REQUIRE(_dependencyMap[1]).string,
+ inlineImagePadding: _$$_REQUIRE(_dependencyMap[1]).number,
+ rejectResponderTermination: _$$_REQUIRE(_dependencyMap[1]).bool,
+ dataDetectorTypes: _$$_REQUIRE(_dependencyMap[1]).oneOfType([_$$_REQUIRE(_dependencyMap[1]).oneOf(DataDetectorTypes), _$$_REQUIRE(_dependencyMap[1]).arrayOf(_$$_REQUIRE(_dependencyMap[1]).oneOf(DataDetectorTypes))]),
+ caretHidden: _$$_REQUIRE(_dependencyMap[1]).bool,
+ contextMenuHidden: _$$_REQUIRE(_dependencyMap[1]).bool,
+ inputAccessoryViewID: _$$_REQUIRE(_dependencyMap[1]).string,
+ textContentType: _$$_REQUIRE(_dependencyMap[1]).oneOf(['none', 'URL', 'addressCity', 'addressCityAndState', 'addressState', 'countryName', 'creditCardNumber', 'emailAddress', 'familyName', 'fullStreetAddress', 'givenName', 'jobTitle', 'location', 'middleName', 'name', 'namePrefix', 'nameSuffix', 'nickname', 'organizationName', 'postalCode', 'streetAddressLine1', 'streetAddressLine2', 'sublocality', 'telephoneNumber', 'username', 'password', 'newPassword', 'oneTimeCode']),
+ showSoftInputOnFocus: _$$_REQUIRE(_dependencyMap[1]).bool
+ });
+},2496,[2486,582,2483,2497]);
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ 'use strict';
+
+ var stylePropType = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[1]));
+
+ var DataDetectorTypes = ['phoneNumber', 'link', 'email', 'none', 'all'];
+ module.exports = {
+ ellipsizeMode: _$$_REQUIRE(_dependencyMap[2]).oneOf(['head', 'middle', 'tail', 'clip']),
+ numberOfLines: _$$_REQUIRE(_dependencyMap[2]).number,
+ textBreakStrategy: _$$_REQUIRE(_dependencyMap[2]).oneOf(['simple', 'highQuality', 'balanced']),
+ onLayout: _$$_REQUIRE(_dependencyMap[2]).func,
+ onPress: _$$_REQUIRE(_dependencyMap[2]).func,
+ onLongPress: _$$_REQUIRE(_dependencyMap[2]).func,
+ pressRetentionOffset: _$$_REQUIRE(_dependencyMap[3]),
+ selectable: _$$_REQUIRE(_dependencyMap[2]).bool,
+ selectionColor: _$$_REQUIRE(_dependencyMap[4]),
+ suppressHighlighting: _$$_REQUIRE(_dependencyMap[2]).bool,
+ style: stylePropType,
+ testID: _$$_REQUIRE(_dependencyMap[2]).string,
+ nativeID: _$$_REQUIRE(_dependencyMap[2]).string,
+ allowFontScaling: _$$_REQUIRE(_dependencyMap[2]).bool,
+ maxFontSizeMultiplier: _$$_REQUIRE(_dependencyMap[2]).number,
+ accessible: _$$_REQUIRE(_dependencyMap[2]).bool,
+ adjustsFontSizeToFit: _$$_REQUIRE(_dependencyMap[2]).bool,
+ minimumFontScale: _$$_REQUIRE(_dependencyMap[2]).number,
+ disabled: _$$_REQUIRE(_dependencyMap[2]).bool,
+ dataDetectorType: _$$_REQUIRE(_dependencyMap[2]).oneOf(DataDetectorTypes)
+ };
+},2497,[2487,2498,582,2484,2483]);
+__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
+ 'use strict';
+
+ var DeprecatedTextStylePropTypes = Object.assign({}, _$$_REQUIRE(_dependencyMap[0]), {
+ color: _$$_REQUIRE(_dependencyMap[1]),
+ fontFamily: _$$_REQUIRE(_dependencyMap[2]).string,
+ fontSize: _$$_REQUIRE(_dependencyMap[2]).number,
+ fontStyle: _$$_REQUIRE(_dependencyMap[2]).oneOf(['normal', 'italic']),
+ fontWeight: _$$_REQUIRE(_dependencyMap[2]).oneOf(['normal', 'bold', '100', '200', '300', '400', '500', '600', '700', '800', '900']),
+ fontVariant: _$$_REQUIRE(_dependencyMap[2]).arrayOf(_$$_REQUIRE(_dependencyMap[2]).oneOf(['small-caps', 'oldstyle-nums', 'lining-nums', 'tabular-nums', 'proportional-nums'])),
+ textShadowOffset: _$$_REQUIRE(_dependencyMap[2]).shape({
+ width: _$$_REQUIRE(_dependencyMap[2]).number,
+ height: _$$_REQUIRE(_dependencyMap[2]).number
+ }),
+ textShadowRadius: _$$_REQUIRE(_dependencyMap[2]).number,
+ textShadowColor: _$$_REQUIRE(_dependencyMap[1]),
+ letterSpacing: _$$_REQUIRE(_dependencyMap[2]).number,
+ lineHeight: _$$_REQUIRE(_dependencyMap[2]).number,
+ textAlign: _$$_REQUIRE(_dependencyMap[2]).oneOf(['auto', 'left', 'right', 'center', 'justify']),
+ textAlignVertical: _$$_REQUIRE(_dependencyMap[2]).oneOf(['auto', 'top', 'bottom', 'center']),
+ includeFontPadding: _$$_REQUIRE(_dependencyMap[2]).bool,
+ textDecorationLine: _$$_REQUIRE(_dependencyMap[2]).oneOf(['none', 'underline', 'line-through', 'underline line-through']),
+ textDecorationStyle: _$$_REQUIRE(_dependencyMap[2]).oneOf(['solid', 'double', 'dotted', 'dashed']),
+ textDecorationColor: _$$_REQUIRE(_dependencyMap[1]),
+ textTransform: _$$_REQUIRE(_dependencyMap[2]).oneOf(['none', 'capitalize', 'uppercase', 'lowercase']),
+ writingDirection: _$$_REQUIRE(_dependencyMap[2]).oneOf(['auto', 'ltr', 'rtl'])
+ });
+ module.exports = DeprecatedTextStylePropTypes;
+},2498,[2489,2483,582]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -350029,7 +350466,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
justifyContent: "center"
}
});
-},2497,[18]);
+},2499,[18]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -350044,7 +350481,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
});
});
-},2498,[2499]);
+},2500,[2501]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -350135,7 +350572,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
thumbnail: _propTypes.default.string
})
};
-},2499,[3,6,7,11,13,14,16,18,582,588,1985,1976,179,819,2500,1861]);
+},2501,[3,6,7,11,13,14,16,18,582,588,1985,1976,179,819,2502,1861]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -350163,7 +350600,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
fontSize: 80
}
});
-},2500,[18,438]);
+},2502,[18,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -350178,7 +350615,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
});
});
-},2501,[2502]);
+},2503,[2504]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -350257,7 +350694,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
url: _propTypes.default.string.isRequired
})
};
-},2502,[3,6,7,11,13,14,16,582,18,179,2503,1984,868]);
+},2504,[3,6,7,11,13,14,16,582,18,179,2505,1984,868]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -350274,7 +350711,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
flex: 1
}
});
-},2503,[18,438]);
+},2505,[18,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -350289,7 +350726,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
});
});
-},2504,[2505]);
+},2506,[2507]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -350444,7 +350881,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
height: _propTypes.default.number
})
};
-},2505,[3,270,6,7,11,13,14,16,18,582,566,434,588,438,179]);
+},2507,[3,270,6,7,11,13,14,16,18,582,566,434,588,438,179]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -350468,7 +350905,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
borderColor: "white"
}
});
-},2506,[18,438]);
+},2508,[18,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -350610,7 +351047,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
visible: true,
startIndex: 0
};
-},2507,[3,6,7,11,13,14,16,582,436,2508,564,438,179,2056,2509]);
+},2509,[3,6,7,11,13,14,16,582,436,2510,564,438,179,2056,2511]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -350727,7 +351164,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
GalleryThumbnail.defaultProps = {
selected: false
};
-},2508,[3,6,7,11,13,14,16,582,18,436,2509,588,564,2510,438,179]);
+},2510,[3,6,7,11,13,14,16,582,18,436,2511,588,564,2512,438,179]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -350753,7 +351190,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
borderColor: "white"
}
});
-},2509,[18,438]);
+},2511,[18,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
module.exports = _$$_REQUIRE(_dependencyMap[0]).registerAsset({
"__packager_asset": true,
@@ -350765,7 +351202,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
"name": "ic_not_available",
"type": "png"
});
-},2510,[1031]);
+},2512,[1031]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -350780,7 +351217,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
});
});
-},2511,[2512]);
+},2513,[2514]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -350918,7 +351355,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
maxLines: 1,
color: _$$_REQUIRE(_dependencyMap[12]).colors.white
};
-},2512,[3,6,7,11,13,14,16,582,18,816,1861,179,438]);
+},2514,[3,6,7,11,13,14,16,582,18,816,1861,179,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -351046,7 +351483,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
NavigatorBaseScreen.propTypes = {
navigation: _propTypes.default.object
};
-},2513,[3,6,7,11,13,14,16,582,2068]);
+},2515,[3,6,7,11,13,14,16,582,2068]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -351306,7 +351743,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
RssComponent.INTERVAL_ID = -1;
RssComponent.INTERSTITIAL_TIMER = undefined;
-},2514,[3,270,6,7,11,85,13,14,16,2515,2234,436,2161,1945,1947,2677,2284,2235,1920,2114,1919,2699,564,438,2271,179,2262,2513]);
+},2516,[3,270,6,7,11,85,13,14,16,2517,2236,436,2162,1945,1947,2679,2286,2237,1920,2114,1919,2701,564,438,2273,179,2264,2515]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -351524,7 +351961,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}))
});
}
-},2515,[3,16,2149,2235,1947,2283,2516,2616,2285,2637,1983,438,179,2291,2057,2668,2445,2671,2420,2673]);
+},2517,[3,16,2150,2237,1947,2285,2518,2618,2287,2639,1983,438,179,2293,2057,2670,2447,2673,2422,2675]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -351770,7 +352207,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
})]
}));
}
-},2516,[3,16,18,434,2235,1947,1861,2517,179,819,2279,438,2519,2520,2554,2600,2285,2606,2608,2614]);
+},2518,[3,16,18,434,2237,1947,1861,2519,179,819,2281,438,2521,2522,2556,2602,2287,2608,2610,2616]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -351908,7 +352345,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
})]
});
}
-},2517,[3,16,18,2276,816,1861,588,179,819,2518,438]);
+},2519,[3,16,18,2278,816,1861,588,179,819,2520,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -351987,7 +352424,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
height: 14
}
});
-},2518,[18]);
+},2520,[18]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -352102,7 +352539,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
return type.value === value;
}).text;
};
-},2519,[3,407,438]);
+},2521,[3,407,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -352117,7 +352554,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
});
});
-},2520,[2521]);
+},2522,[2523]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -352240,7 +352677,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
getParam: _propTypes.default.func.isRequired
})
};
-},2521,[3,270,6,7,11,85,13,14,582,16,18,2522,179,819,2279]);
+},2523,[3,270,6,7,11,85,13,14,582,16,18,2524,179,819,2281]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -352799,7 +353236,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
EventBaseScreen.SORT_POPULARITY = 0;
EventBaseScreen.SORT_DATE = 1;
EventBaseScreen.SORT_NAME = 2;
-},2522,[3,270,6,7,11,85,13,14,16,18,407,2034,1985,816,1861,588,2279,438,2519,2523,819,179,2537,2539,2541,2544]);
+},2524,[3,270,6,7,11,85,13,14,16,18,407,2034,1985,816,1861,588,2281,438,2521,2525,819,179,2539,2541,2543,2546]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -352814,7 +353251,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
});
});
-},2523,[2524]);
+},2525,[2526]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -352885,7 +353322,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
return out;
}
-},2524,[2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536]);
+},2526,[2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
module.exports = _$$_REQUIRE(_dependencyMap[0]).registerAsset({
"__packager_asset": true,
@@ -352897,7 +353334,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
"name": "2",
"type": "png"
});
-},2525,[1031]);
+},2527,[1031]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
module.exports = _$$_REQUIRE(_dependencyMap[0]).registerAsset({
"__packager_asset": true,
@@ -352909,7 +353346,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
"name": "3",
"type": "png"
});
-},2526,[1031]);
+},2528,[1031]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
module.exports = _$$_REQUIRE(_dependencyMap[0]).registerAsset({
"__packager_asset": true,
@@ -352921,7 +353358,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
"name": "4",
"type": "png"
});
-},2527,[1031]);
+},2529,[1031]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
module.exports = _$$_REQUIRE(_dependencyMap[0]).registerAsset({
"__packager_asset": true,
@@ -352933,7 +353370,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
"name": "5",
"type": "png"
});
-},2528,[1031]);
+},2530,[1031]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
module.exports = _$$_REQUIRE(_dependencyMap[0]).registerAsset({
"__packager_asset": true,
@@ -352945,7 +353382,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
"name": "6",
"type": "png"
});
-},2529,[1031]);
+},2531,[1031]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
module.exports = _$$_REQUIRE(_dependencyMap[0]).registerAsset({
"__packager_asset": true,
@@ -352957,7 +353394,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
"name": "7",
"type": "png"
});
-},2530,[1031]);
+},2532,[1031]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
module.exports = _$$_REQUIRE(_dependencyMap[0]).registerAsset({
"__packager_asset": true,
@@ -352969,7 +353406,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
"name": "8",
"type": "png"
});
-},2531,[1031]);
+},2533,[1031]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
module.exports = _$$_REQUIRE(_dependencyMap[0]).registerAsset({
"__packager_asset": true,
@@ -352981,7 +353418,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
"name": "10",
"type": "png"
});
-},2532,[1031]);
+},2534,[1031]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
module.exports = _$$_REQUIRE(_dependencyMap[0]).registerAsset({
"__packager_asset": true,
@@ -352993,7 +353430,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
"name": "14",
"type": "png"
});
-},2533,[1031]);
+},2535,[1031]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
module.exports = _$$_REQUIRE(_dependencyMap[0]).registerAsset({
"__packager_asset": true,
@@ -353005,7 +353442,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
"name": "15",
"type": "png"
});
-},2534,[1031]);
+},2536,[1031]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
module.exports = _$$_REQUIRE(_dependencyMap[0]).registerAsset({
"__packager_asset": true,
@@ -353017,7 +353454,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
"name": "76",
"type": "png"
});
-},2535,[1031]);
+},2537,[1031]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
module.exports = _$$_REQUIRE(_dependencyMap[0]).registerAsset({
"__packager_asset": true,
@@ -353029,7 +353466,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
"name": "390",
"type": "png"
});
-},2536,[1031]);
+},2538,[1031]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -353312,7 +353749,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
enhanced: _propTypes.default.bool,
portal: _propTypes.default.string.isRequired
};
-},2537,[3,270,6,7,11,13,14,16,18,582,1379,2186,2155,816,436,1861,438,179,2538,2091]);
+},2539,[3,270,6,7,11,13,14,16,18,582,1379,2188,2156,816,436,1861,438,179,2540,2091]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -353435,7 +353872,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
borderRadius: 3
}
});
-},2538,[18,2519,438]);
+},2540,[18,2521,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -353450,7 +353887,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
});
});
-},2539,[2540]);
+},2541,[2542]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -353516,7 +353953,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
image: _propTypes.default.string,
date: _propTypes.default.string
};
-},2540,[3,582,16,18,816,179]);
+},2542,[3,582,16,18,816,179]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -353763,7 +354200,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
getItemById: _propTypes.default.func.isRequired,
featuredEvents: _propTypes.default.arrayOf(_propTypes.default.number)
};
-},2541,[3,270,6,7,11,13,14,16,582,18,434,407,2542,179,438,2519]);
+},2543,[3,270,6,7,11,13,14,16,582,18,434,407,2544,179,438,2521]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -353878,7 +354315,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}),
onEventPress: _propTypes.default.func.isRequired
};
-},2542,[3,6,7,11,13,14,16,18,1379,582,816,2543,588,179,2144,438]);
+},2544,[3,6,7,11,13,14,16,18,1379,582,816,2545,588,179,2145,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -353940,7 +354377,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
alignItems: "flex-end"
}
});
-},2543,[18,438,2519]);
+},2545,[18,438,2521]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -353955,7 +354392,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
});
});
-},2544,[2545]);
+},2546,[2547]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -354576,7 +355013,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
return null;
}
};
-},2545,[3,270,6,7,11,13,14,582,16,18,407,2399,816,1861,588,2546,438,179,819,2547,2548,2009,2553,2056,2029]);
+},2547,[3,270,6,7,11,13,14,582,16,18,407,2401,816,1861,588,2548,438,179,819,2549,2550,2009,2555,2056,2029]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -354658,7 +355095,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
LoadingMore.defaultProps = {
visible: false
};
-},2546,[3,6,7,11,13,14,16,582,179,2009]);
+},2548,[3,6,7,11,13,14,16,582,179,2009]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -354685,7 +355122,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
height: 22
}
});
-},2547,[18,438]);
+},2549,[18,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -354700,7 +355137,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
});
});
-},2548,[2549]);
+},2550,[2551]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -354835,7 +355272,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
offsetY: OFFSET_Y,
availableHeight: 0
};
-},2549,[3,4,6,7,11,13,14,582,16,2550,819,179]);
+},2551,[3,4,6,7,11,13,14,582,16,2552,819,179]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -355259,7 +355696,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
backgroundColor: "transparent"
}
});
-},2550,[3,6,7,11,13,14,582,16,18,2551,2552,179,597]);
+},2552,[3,6,7,11,13,14,582,16,18,2553,2554,179,597]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -355445,7 +355882,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
color: "#444"
}
});
-},2551,[3,6,7,11,13,14,582,16,18,2552,179]);
+},2553,[3,6,7,11,13,14,582,16,18,2554,179]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -355494,7 +355931,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
return undefined;
}
-},2552,[18]);
+},2554,[18]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -355692,7 +356129,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
latitudeKey: "latitude",
longitudeKey: "longitude"
};
-},2553,[3,6,7,11,13,14,582,16,881,179,438]);
+},2555,[3,6,7,11,13,14,582,16,881,179,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -355707,7 +356144,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
});
});
-},2554,[2555]);
+},2556,[2557]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -356222,7 +356659,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
pass: "",
portal: ""
};
-},2555,[3,270,6,7,11,85,13,14,582,16,18,407,438,2519,179,2556,2568,2570,2571,2574,2579,2584,819,2009,2279]);
+},2557,[3,270,6,7,11,85,13,14,582,16,18,407,438,2521,179,2558,2570,2572,2573,2576,2581,2586,819,2009,2281]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -356237,7 +356674,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
});
});
-},2556,[2557]);
+},2558,[2559]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -356364,7 +356801,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
advanceFilters: [],
buttons: []
};
-},2557,[3,6,7,11,13,14,16,582,18,179,2558,1978,2559,438,2566,2029]);
+},2559,[3,6,7,11,13,14,16,582,18,179,2560,1978,2561,438,2568,2029]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -356400,7 +356837,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
borderColor: (0, _$$_REQUIRE(_dependencyMap[1]).getEventColor)()
}
});
-},2558,[18,2519]);
+},2560,[18,2521]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -356415,7 +356852,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
});
});
-},2559,[2560]);
+},2561,[2562]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -356540,7 +356977,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
headerColor: _$$_REQUIRE(_dependencyMap[13]).colors.black,
borderColor: _$$_REQUIRE(_dependencyMap[13]).colors.black
};
-},2560,[3,6,7,11,13,14,16,18,582,1861,2561,179,2564,438]);
+},2562,[3,6,7,11,13,14,16,18,582,1861,2563,179,2566,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -356571,7 +357008,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
}));
}
-},2561,[3,22,33,16,2562,179,438]);
+},2563,[3,22,33,16,2564,179,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -356772,7 +357209,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
sectionContainerStyle: {},
renderAsFlatList: false
};
-},2562,[3,4,22,6,7,11,13,14,16,18,2563,179]);
+},2564,[3,4,22,6,7,11,13,14,16,18,2565,179]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -357056,7 +357493,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
},
renderChildrenCollapsed: true
};
-},2563,[3,6,7,11,13,14,16,18,179]);
+},2565,[3,6,7,11,13,14,16,18,179]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -357086,7 +357523,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
flexDirection: "column"
}
});
-},2564,[18,2565]);
+},2566,[18,2567]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -357100,7 +357537,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
BORDER_RADIUS: 5,
SEARCH_WIDTH: 200
};
-},2565,[]);
+},2567,[]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -357183,7 +357620,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
backgroundColor: _$$_REQUIRE(_dependencyMap[11]).colors.black,
textColor: _$$_REQUIRE(_dependencyMap[11]).colors.white
};
-},2566,[3,6,7,11,13,14,16,18,582,179,2567,438]);
+},2568,[3,6,7,11,13,14,16,18,582,179,2569,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -357208,7 +357645,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
padding: _$$_REQUIRE(_dependencyMap[1]).filterStyles.TEXT_PADDING
}
});
-},2567,[18,2565,438]);
+},2569,[18,2567,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -357309,7 +357746,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
hint: _propTypes.default.string,
defaultSearch: _propTypes.default.string
};
-},2568,[3,6,7,11,13,14,16,582,18,2268,179,2569,438]);
+},2570,[3,6,7,11,13,14,16,582,18,2270,179,2571,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -357327,7 +357764,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
borderRadius: _$$_REQUIRE(_dependencyMap[2]).filterStyles.BORDER_RADIUS
}
});
-},2569,[18,438,2565]);
+},2571,[18,438,2567]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -357371,7 +357808,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
height: 50
}
});
-},2570,[18,438,2565]);
+},2572,[18,438,2567]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -357386,7 +357823,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
});
});
-},2571,[2572]);
+},2573,[2574]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -357921,7 +358358,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
useLocation: _propTypes.default.bool,
onDisableSwitch: _propTypes.default.func
};
-},2572,[3,6,7,11,13,14,270,4,582,16,18,407,2148,434,2165,830,2268,438,1986,179,2573,2565,2056]);
+},2574,[3,6,7,11,13,14,270,4,582,16,18,407,2149,434,2166,830,2270,438,1986,179,2575,2567,2056]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -358002,7 +358439,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
alignItems: "center"
}
});
-},2573,[18,2565,438]);
+},2575,[18,2567,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -358017,7 +358454,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
});
});
-},2574,[2575]);
+},2576,[2577]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -358122,7 +358559,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
maxValue: _propTypes.default.number.isRequired,
defaultValue: _propTypes.default.number.isRequired
};
-},2575,[3,6,7,11,13,14,2576,582,16,18,179,2578,438]);
+},2577,[3,6,7,11,13,14,2578,582,16,18,179,2580,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
'use strict';
@@ -358209,7 +358646,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
var Slider = SliderWithRef;
var _default = exports.default = Slider;
-},2576,[3,4,16,18,2577,179]);
+},2578,[3,4,16,18,2579,179]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
'use strict';
@@ -358223,7 +358660,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
var RNCSliderNativeComponent = (0, _reactNative.requireNativeComponent)('RNCSlider');
var _default = exports.default = RNCSliderNativeComponent;
-},2577,[18]);
+},2579,[18]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -358252,7 +358689,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
width: "50%"
}
});
-},2578,[18,2565,438]);
+},2580,[18,2567,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -358267,7 +358704,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
});
});
-},2579,[2580]);
+},2581,[2582]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -358491,7 +358928,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
selectedCategories: [],
selectedLabels: []
};
-},2580,[3,22,33,16,18,582,816,830,179,2581,2583,2582]);
+},2582,[3,22,33,16,18,582,816,830,179,2583,2585,2584]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -358573,7 +359010,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
labels: _propTypes.default.array.isRequired,
onChange: _propTypes.default.func.isRequired
};
-},2581,[3,33,16,582,18,816,179,2582,438]);
+},2583,[3,33,16,582,18,816,179,2584,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -358634,7 +359071,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
width: 15
}
});
-},2582,[18,2565,438]);
+},2584,[18,2567,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -358829,7 +359266,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
multiSelect: _propTypes.default.bool,
onChange: _propTypes.default.func
};
-},2583,[3,33,22,16,18,582,2561,1861,816,179,2582,2056]);
+},2585,[3,33,22,16,18,582,2563,1861,816,179,2584,2056]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -358844,7 +359281,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
});
});
-},2584,[2585]);
+},2586,[2587]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -359080,7 +359517,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
value: String
}))
};
-},2585,[3,6,7,11,13,14,16,18,582,2586,1861,830,816,438,179,2056,2599]);
+},2587,[3,6,7,11,13,14,16,18,582,2588,1861,830,816,438,179,2056,2601]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -359234,7 +359671,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
var _default = exports.default = RangePickerComponent;
-},2586,[3,33,16,582,18,2587,1861,438,179]);
+},2588,[3,33,16,582,18,2589,1861,438,179]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -359444,7 +359881,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
var _default = exports.default = DatePicker;
-},2587,[3,33,16,582,18,816,2588,1861,438,179]);
+},2589,[3,33,16,582,18,816,2590,1861,438,179]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -359503,7 +359940,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
var _default = exports.default = Picker;
-},2588,[3,2589,582,16,179,819]);
+},2590,[3,2591,582,16,179,819]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -359534,7 +359971,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
});
var _default = exports.default = _datetimepicker.default;
-},2589,[2590,3,2598,2597]);
+},2591,[2592,3,2600,2599]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -359686,7 +360123,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
open: open,
dismiss: dismiss
};
-},2590,[3,33,270,31,2591,18,2594,2596,2597]);
+},2592,[3,33,270,31,2593,18,2596,2598,2599]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -359702,7 +360139,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
var pickers = (0, _defineProperty2.default)((0, _defineProperty2.default)({}, _$$_REQUIRE(_dependencyMap[4]).ANDROID_MODE.date, _datepicker.default), _$$_REQUIRE(_dependencyMap[4]).ANDROID_MODE.time, _timepicker.default);
var _default = exports.default = pickers;
-},2591,[3,240,2592,2595,2594]);
+},2593,[3,240,2594,2597,2596]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -359755,7 +360192,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
DatePickerAndroid.dateSetAction = _$$_REQUIRE(_dependencyMap[6]).DATE_SET_ACTION;
DatePickerAndroid.dismissedAction = _$$_REQUIRE(_dependencyMap[6]).DISMISS_ACTION;
-},2592,[3,270,6,7,18,2593,2594]);
+},2594,[3,270,6,7,18,2595,2596]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -359793,7 +360230,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
(0, _invariant.default)(value, 'A date or time must be specified as `value` prop');
(0, _invariant.default)(value instanceof Date, '`value` prop must be an instance of Date object');
}
-},2593,[3,31]);
+},2595,[3,31]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -359842,7 +360279,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
var TIME_SET_ACTION = exports.TIME_SET_ACTION = 'timeSetAction';
var DISMISS_ACTION = exports.DISMISS_ACTION = 'dismissedAction';
var NEUTRAL_BUTTON_ACTION = exports.NEUTRAL_BUTTON_ACTION = 'neutralButtonAction';
-},2594,[]);
+},2596,[]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -359895,7 +360332,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
TimePickerAndroid.timeSetAction = _$$_REQUIRE(_dependencyMap[6]).TIME_SET_ACTION;
TimePickerAndroid.dismissedAction = _$$_REQUIRE(_dependencyMap[6]).DISMISS_ACTION;
-},2595,[3,270,6,7,18,2593,2594]);
+},2597,[3,270,6,7,18,2595,2596]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -359972,7 +360409,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
console.warn("positiveButtonLabel, negativeButtonLabel and neutralButtonLabel are deprecated.Use positive / negative / neutralButton prop instead.");
}
}
-},2596,[3,2591,31,18,2594,2593]);
+},2598,[3,2593,31,18,2596,2595]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -360005,7 +360442,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
}, date];
};
-},2597,[2594]);
+},2599,[2596]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -360064,7 +360501,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}, [onChange, valueTimestamp, mode]);
return null;
}
-},2598,[16,2596,2594,2590]);
+},2600,[16,2598,2596,2592]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -360110,7 +360547,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
color: _$$_REQUIRE(_dependencyMap[2]).colors.white
}
});
-},2599,[18,2565,438]);
+},2601,[18,2567,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -360125,7 +360562,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
});
});
-},2600,[2601]);
+},2602,[2603]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -360215,7 +360652,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
}]);
}(_$$_REQUIRE(_dependencyMap[13]).NavigationBaseScreen);
-},2601,[3,6,7,11,85,13,14,16,436,179,2602,2519,2605,2279]);
+},2603,[3,6,7,11,85,13,14,16,436,179,2604,2521,2607,2281]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -360230,7 +360667,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
});
});
-},2602,[2603]);
+},2604,[2605]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -360444,7 +360881,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}).isRequired,
itemKey: _propTypes.default.string
};
-},2603,[3,270,6,7,11,13,14,582,16,18,816,1861,564,179,2604,819,2009,438,2056]);
+},2605,[3,270,6,7,11,13,14,582,16,18,816,1861,564,179,2606,819,2009,438,2056]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -360483,7 +360920,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
color: _$$_REQUIRE(_dependencyMap[1]).colors.white
}
});
-},2604,[18,438]);
+},2606,[18,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -360498,7 +360935,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
});
});
-},2605,[2537]);
+},2607,[2539]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -360969,7 +361406,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
}]);
}(_$$_REQUIRE(_dependencyMap[18]).NavigationBaseScreen);
-},2606,[3,270,6,7,11,85,13,14,16,18,407,436,1985,2186,816,2268,1861,588,2279,438,2519,179,819,2009,2607,1978,2091]);
+},2608,[3,270,6,7,11,85,13,14,16,18,407,436,1985,2188,816,2270,1861,588,2281,438,2521,179,819,2009,2609,1978,2091]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -361029,7 +361466,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
top: 25
}
});
-},2607,[18,2519,438]);
+},2609,[18,2521,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -361044,7 +361481,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
});
});
-},2608,[2609]);
+},2610,[2611]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -361361,7 +361798,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
}]);
}(_$$_REQUIRE(_dependencyMap[21]).NavigationBaseScreen);
-},2609,[3,270,6,7,11,85,13,14,16,18,407,436,816,1861,588,2519,179,2610,438,819,2613,2279]);
+},2611,[3,270,6,7,11,85,13,14,16,18,407,436,816,1861,588,2521,179,2612,438,819,2615,2281]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -361376,7 +361813,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
});
});
-},2610,[2611]);
+},2612,[2613]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -361639,7 +362076,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
onEmptyPress: _propTypes.default.func,
onItemPress: _propTypes.default.func
};
-},2611,[3,270,6,7,11,13,14,582,16,18,816,1861,564,179,2612,2009,819,438,2056]);
+},2613,[3,270,6,7,11,13,14,582,16,18,816,1861,564,179,2614,2009,819,438,2056]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -361678,7 +362115,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
color: _$$_REQUIRE(_dependencyMap[1]).colors.white
}
});
-},2612,[18,438]);
+},2614,[18,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -361708,7 +362145,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
flex: 1
}
});
-},2613,[18,2519]);
+},2615,[18,2521]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -361723,7 +362160,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
});
});
-},2614,[2615]);
+},2616,[2617]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -361791,7 +362228,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
}]);
}(_$$_REQUIRE(_dependencyMap[9]).NavigationBaseScreen);
-},2615,[3,6,7,11,85,13,14,16,18,2279,179,819,1984,2519]);
+},2617,[3,6,7,11,85,13,14,16,18,2281,179,819,1984,2521]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -361907,7 +362344,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
})]
}));
}
-},2616,[3,16,1947,1861,2517,179,438,2519,2617,2626,2629,2633,819,2285,2279,2635,2636]);
+},2618,[3,16,1947,1861,2519,179,438,2521,2619,2628,2631,2635,819,2287,2281,2637,2638]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -361922,7 +362359,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
});
});
-},2617,[2618]);
+},2619,[2620]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -362090,7 +362527,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
}]);
}(_$$_REQUIRE(_dependencyMap[18]).NavigationBaseScreen);
-},2618,[3,6,7,11,85,13,14,16,2587,179,2556,2519,438,2619,2622,2625,2568,2571,2279]);
+},2620,[3,6,7,11,85,13,14,16,2589,179,2558,2521,438,2621,2624,2627,2570,2573,2281]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -362105,7 +362542,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
});
});
-},2619,[2620]);
+},2621,[2622]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -362229,7 +362666,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
textColor: _propTypes.default.string,
active: _propTypes.default.string.isRequired
};
-},2620,[3,6,7,11,13,14,16,18,582,179,2621,2565]);
+},2622,[3,6,7,11,13,14,16,18,582,179,2623,2567]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -362250,7 +362687,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
borderWidth: _$$_REQUIRE(_dependencyMap[1]).filterStyles.BORDER_WIDTH
}
});
-},2621,[18,2565]);
+},2623,[18,2567]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -362265,7 +362702,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
});
});
-},2622,[2623]);
+},2624,[2625]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -362391,7 +362828,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
hintMin: _propTypes.default.string,
hintMax: _propTypes.default.string
};
-},2623,[3,6,7,11,13,14,16,582,18,2268,179,2624]);
+},2625,[3,6,7,11,13,14,16,582,18,2270,179,2626]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -362422,7 +362859,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
borderRadius: _$$_REQUIRE(_dependencyMap[1]).filterStyles.BORDER_RADIUS
}
});
-},2624,[18,2565,438]);
+},2626,[18,2567,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -362470,7 +362907,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
borderRadius: _$$_REQUIRE(_dependencyMap[2]).filterStyles.BORDER_RADIUS
}
});
-},2625,[18,438,2565]);
+},2627,[18,438,2567]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -362485,7 +362922,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
});
});
-},2626,[2627]);
+},2628,[2629]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -362630,7 +363067,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
}]);
}(_$$_REQUIRE(_dependencyMap[15]).NavigationBaseScreen);
-},2627,[3,6,7,11,85,13,14,16,18,436,816,2519,179,2610,2628,2279]);
+},2629,[3,6,7,11,85,13,14,16,18,436,816,2521,179,2612,2630,2281]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -362656,7 +363093,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
flex: 1
}
});
-},2628,[18,438]);
+},2630,[18,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -362671,7 +363108,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
});
});
-},2629,[2630]);
+},2631,[2632]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -362745,7 +363182,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
}]);
}(_$$_REQUIRE(_dependencyMap[13]).NavigationBaseScreen);
-},2630,[3,6,7,11,85,13,14,16,436,179,2602,2519,2631,2279]);
+},2632,[3,6,7,11,85,13,14,16,436,179,2604,2521,2633,2281]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -362910,7 +363347,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
onItemPress: _propTypes.default.func,
color: _propTypes.default.string.isRequired
};
-},2631,[3,6,7,11,13,14,16,582,18,567,816,2186,436,1861,179,2632,2519,2091,438]);
+},2633,[3,6,7,11,13,14,16,582,18,567,816,2188,436,1861,179,2634,2521,2091,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -362962,7 +363399,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
marginEnd: 5
}
});
-},2632,[18,438]);
+},2634,[18,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -362977,7 +363414,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
});
});
-},2633,[2634]);
+},2635,[2636]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -363081,7 +363518,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
}]);
}(_$$_REQUIRE(_dependencyMap[9]).NavigationBaseScreen);
-},2634,[3,6,7,11,85,13,14,16,407,2279,179,2544,2519,2631]);
+},2636,[3,6,7,11,85,13,14,16,407,2281,179,2546,2521,2633]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
module.exports = _$$_REQUIRE(_dependencyMap[0]).registerAsset({
"__packager_asset": true,
@@ -363093,7 +363530,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
"name": "monster_logo",
"type": "png"
});
-},2635,[1031]);
+},2637,[1031]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -363153,7 +363590,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
}]);
}(_$$_REQUIRE(_dependencyMap[8]).NavigationBaseScreen);
-},2636,[3,6,7,11,85,13,14,16,2279,179,1984,2519]);
+},2638,[3,6,7,11,85,13,14,16,2281,179,1984,2521]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -363496,7 +363933,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
})
});
}
-},2637,[3,4,16,18,2284,1920,2085,436,434,2235,1947,2208,2346,2151,179,2638,2160,2648,2650,2652,2659,438,819,564,2287,2143,1313,2661]);
+},2639,[3,4,16,18,2286,1920,2085,436,434,2237,1947,2210,2348,2152,179,2640,2161,2650,2652,2654,2661,438,819,564,2289,2144,1313,2663]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -363511,7 +363948,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
});
});
-},2638,[2639]);
+},2640,[2641]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -363992,7 +364429,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
isHome: false,
isLive: false
};
-},2639,[3,270,6,7,11,85,13,14,582,16,18,1920,2640,2161,436,1945,434,2149,2199,564,928,438,2017,179,819,2641]);
+},2641,[3,270,6,7,11,85,13,14,582,16,18,1920,2642,2162,436,1945,434,2150,2185,564,928,438,2017,179,819,2643]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -364040,7 +364477,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}()
}]);
}();
-},2640,[3,270,6,7,2161]);
+},2642,[3,270,6,7,2162]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -364055,7 +364492,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
});
});
-},2641,[2642]);
+},2643,[2644]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -364688,7 +365125,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
var params = navigation.state.params;
return params;
};
-},2642,[3,270,6,7,11,85,13,14,582,16,18,1920,436,2034,2037,1943,434,2149,881,1947,2399,816,2643,2164,564,2161,814,179,2646,819,438,2647,2151,2009,1986,2279]);
+},2644,[3,270,6,7,11,85,13,14,582,16,18,1920,436,2034,2037,1943,434,2150,881,1947,2401,816,2645,2165,564,2162,814,179,2648,819,438,2649,2152,2009,1986,2281]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -364943,7 +365380,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
navigation: navigation
}));
};
-},2643,[3,6,7,11,13,14,16,18,1973,2644,2204,2143,2017,179,438,819,2183,928]);
+},2645,[3,6,7,11,13,14,16,18,1973,2646,2206,2144,2017,179,438,819,2184,928]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -365048,7 +365485,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
navigation: navigation
}));
});
-},2644,[3,6,7,11,13,14,16,438,2645,928,179]);
+},2646,[3,6,7,11,13,14,16,438,2647,928,179]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -365440,7 +365877,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
navigation: navigation
}));
});
-},2645,[3,6,7,11,13,14,582,16,18,2086,436,816,2137,2154,2185,2143,564,819,438,2090,179,2134,2189,1984,868,928]);
+},2647,[3,6,7,11,13,14,582,16,18,2086,436,816,2137,2155,2187,2144,564,819,438,2090,179,2134,2192,1984,868,928]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -365534,7 +365971,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
children: adsComponent
});
};
-},2646,[3,33,4,16,18,2034,179]);
+},2648,[3,33,4,16,18,2034,179]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -365552,7 +365989,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
paddingVertical: 10
}
});
-},2647,[18,2143]);
+},2649,[18,2144]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -365962,7 +366399,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
RssMyHomeScreen.propTypes = Object.assign({
item: _propTypes.default.object
}, _$$_REQUIRE(_dependencyMap[27]).RssBaseScreen.propTypes);
-},2648,[3,270,6,7,11,85,13,14,582,16,18,1920,2640,2161,2149,2069,2067,2276,816,1861,179,2649,564,438,2208,2440,2151,2641]);
+},2650,[3,270,6,7,11,85,13,14,582,16,18,1920,2642,2162,2150,2069,2067,2278,816,1861,179,2651,564,438,2210,2442,2152,2643]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -366009,7 +366446,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
padding: 3
}
});
-},2649,[18,2143,438]);
+},2651,[18,2144,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -366024,7 +366461,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
});
});
-},2650,[2651]);
+},2652,[2653]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -366142,7 +366579,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
}]);
}(_$$_REQUIRE(_dependencyMap[13]).RssBaseScreen);
-},2651,[3,270,6,7,11,85,13,14,16,18,436,564,179,2641]);
+},2653,[3,270,6,7,11,85,13,14,16,18,436,564,179,2643]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -366157,7 +366594,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
});
});
-},2652,[2653]);
+},2654,[2655]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -366336,7 +366773,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
}]);
}(_$$_REQUIRE(_dependencyMap[17]).RssBaseScreen);
-},2653,[3,270,6,7,11,13,14,16,18,2161,434,2654,438,819,179,2658,2151,2641]);
+},2655,[3,270,6,7,11,13,14,16,18,2162,434,2656,438,819,179,2660,2152,2643]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -366635,7 +367072,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
var _default = exports.default = RssSearchAdvanceModal;
-},2654,[3,4,270,33,16,582,816,2586,2655,2657,2161,830,438,179,819]);
+},2656,[3,4,270,33,16,582,816,2588,2657,2659,2162,830,438,179,819]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -366696,7 +367133,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
DropDown.defaultProps = {};
var _default = exports.default = DropDown;
-},2655,[3,4,16,582,2426,2656,179]);
+},2657,[3,4,16,582,2428,2658,179]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -366781,7 +367218,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
var _default = exports.default = DropDownButton;
-},2656,[3,16,582,18,1861,438,179,819,2276]);
+},2658,[3,16,582,18,1861,438,179,819,2278]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -366818,7 +367255,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
height: 50
}
});
-},2657,[18,438]);
+},2659,[18,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -366833,7 +367270,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
});
});
-},2658,[2402]);
+},2660,[2404]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -366848,7 +367285,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
});
});
-},2659,[2660]);
+},2661,[2662]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -366885,7 +367322,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
}]);
}(_react.default.Component);
-},2660,[3,6,7,11,13,14,16]);
+},2662,[3,6,7,11,13,14,16]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -366900,7 +367337,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
});
});
-},2661,[2662]);
+},2663,[2664]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -367080,7 +367517,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
onItemPress: _propTypes.default.func.isRequired,
drawerHeader: _propTypes.default.node
};
-},2662,[3,33,16,582,18,2663,436,2149,564,179,2262,819,438,1313]);
+},2664,[3,33,16,582,18,2665,436,2150,564,179,2264,819,438,1313]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -367295,7 +367732,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
var _default = exports.default = DrawerLabelComponent;
-},2663,[3,4,16,18,582,2148,2664,2665,2666,2667,438,2143,819,179]);
+},2665,[3,4,16,18,582,2149,2666,2667,2668,2669,438,2144,819,179]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -367357,7 +367794,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
var _default = exports.default = DrawerLabelChevronComponent;
-},2664,[3,16,582,1861,2276,179,819,438]);
+},2666,[3,16,582,1861,2278,179,819,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -367433,7 +367870,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
var _default = exports.default = DrawerLabelIconComponent;
-},2665,[3,582,16,18,1976,2143,819,179,438]);
+},2667,[3,582,16,18,1976,2144,819,179,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -367528,7 +367965,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
var _default = exports.default = DrawerLabelTextComponent;
-},2666,[3,33,16,582,436,816,2085,564,179,819]);
+},2668,[3,33,16,582,436,816,2085,564,179,819]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -367545,7 +367982,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
alignItems: "center"
}
});
-},2667,[18]);
+},2669,[18]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -367560,7 +367997,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
});
});
-},2668,[2669]);
+},2670,[2671]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -367716,7 +368153,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
TutorialScreen.propTypes = {
navigation: _propTypes.default.object
};
-},2669,[3,6,7,11,85,13,14,16,18,582,816,2148,2336,588,434,1947,2279,179,2670,2009]);
+},2671,[3,6,7,11,85,13,14,16,18,582,816,2149,2338,588,434,1947,2281,179,2672,2009]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -367758,7 +368195,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
backgroundColor: _$$_REQUIRE(_dependencyMap[1]).colors.black
}
});
-},2670,[18,438]);
+},2672,[18,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -367773,7 +368210,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
});
});
-},2671,[2672]);
+},2673,[2674]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -368154,7 +368591,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
navigate: _propTypes.default.func.isRequired
}).isRequired
};
-},2672,[3,270,6,7,11,85,13,14,16,18,582,434,1920,566,2161,2422,2430,2267,2143,1985,438,2279,2074,179,2275,1986,819,2056]);
+},2674,[3,270,6,7,11,85,13,14,16,18,582,434,1920,566,2162,2424,2432,2269,2144,1985,438,2281,2074,179,2277,1986,819,2056]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -368169,7 +368606,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
});
});
-},2673,[2674]);
+},2675,[2676]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -368694,7 +369131,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
})
})
};
-},2674,[3,270,6,7,11,85,13,14,582,16,18,436,2034,2234,2037,1943,434,881,1947,2061,856,2336,2675,2681,2690,2698,2279,564,438,2164,1925,2151,179,2646,2208,819]);
+},2676,[3,270,6,7,11,85,13,14,582,16,18,436,2034,2236,2037,1943,434,881,1947,2061,856,2338,2677,2683,2692,2700,2281,564,438,2165,1925,2152,179,2648,2210,819]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -369598,7 +370035,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
hasColumnizer: false,
insideAdModels: []
};
-},2675,[3,270,6,7,11,13,14,582,16,2015,2016,436,2037,1943,1928,881,2235,868,2094,2033,2676,2132,564,1982,819,438,2050,1981,179,880,2679,1929,2156,1986,2009,1979]);
+},2677,[3,270,6,7,11,13,14,582,16,2015,2016,436,2037,1943,1928,881,2237,868,2094,2033,2678,2132,564,1982,819,438,2050,1981,179,880,2681,1929,2157,1986,2009,1979]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -369735,7 +370172,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
navigation: navigation
}));
};
-},2676,[3,270,6,7,11,85,13,14,582,16,436,2242,629,880,564,179,1979,438,1989,2677,928]);
+},2678,[3,270,6,7,11,85,13,14,582,16,436,2244,629,880,564,179,1979,438,1989,2679,928]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -369875,7 +370312,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
navigation: navigation
}));
};
-},2677,[3,270,6,7,11,85,13,14,582,16,2114,436,434,2149,880,564,2678,928,179]);
+},2679,[3,270,6,7,11,85,13,14,582,16,2114,436,434,2150,880,564,2680,928,179]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -369947,7 +370384,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
}]);
}(_$$_REQUIRE(_dependencyMap[9]).BaseOptionspage);
-},2678,[3,6,7,11,85,13,14,880,438,2263]);
+},2680,[3,6,7,11,85,13,14,880,438,2265]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -370487,7 +370924,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
isAutoHeight: false,
autoHeightWebViewProps: {}
};
-},2679,[3,4,270,6,7,11,13,14,582,16,18,1947,856,436,1919,868,1943,1944,1928,2680,564,1929,880,814,2116,438,1989,179,1979,2262,1984]);
+},2681,[3,4,270,6,7,11,13,14,582,16,18,1947,856,436,1919,868,1943,1944,1928,2682,564,1929,880,814,2116,438,1989,179,1979,2264,1984]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -370514,7 +370951,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
backgroundColor: _$$_REQUIRE(_dependencyMap[1]).colors.transparent
}
});
-},2680,[18,438]);
+},2682,[18,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -370667,7 +371104,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
item: _propTypes.default.object,
onBylinePress: _propTypes.default.func
};
-},2681,[3,6,7,11,13,14,582,16,18,2235,2675,2682,179,1978,819,438,2683,2143,2685]);
+},2683,[3,6,7,11,13,14,582,16,18,2237,2677,2684,179,1978,819,438,2685,2144,2687]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -370689,7 +371126,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
minHeight: 0
}
});
-},2682,[18]);
+},2684,[18]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -370706,17 +371143,17 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
var _inherits2 = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[5]));
- var _react = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[6]));
+ var _propTypes = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[6]));
- var _reactNative = _$$_REQUIRE(_dependencyMap[7]);
+ var _react = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[7]));
- var _propTypes = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[8]));
+ var _reactNative = _$$_REQUIRE(_dependencyMap[8]);
- var _fontText = _interopRequireWildcard(_$$_REQUIRE(_dependencyMap[9]));
+ var _navigationUtils = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[9]));
- var _imageComponent = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[10]));
+ var _fontText = _interopRequireWildcard(_$$_REQUIRE(_dependencyMap[10]));
- var _navigationUtils = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[11]));
+ var _imageComponent = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[11]));
var _doubleTextAutoMeasured = _$$_REQUIRE(_dependencyMap[0])(_$$_REQUIRE(_dependencyMap[12]));
@@ -370854,6 +371291,16 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
var color = this._getForegroundColor();
+ var titleObj = {
+ text: title,
+ classes: ["article-title"],
+ style: [_$$_REQUIRE(_dependencyMap[16]).styles.title, {
+ color: color
+ }],
+ props: {
+ type: _fontText.Type.bold
+ }
+ };
return (0, _$$_REQUIRE(_dependencyMap[15]).jsx)(_$$_REQUIRE(_dependencyMap[13]).Css, {
classes: ["article-top-content"],
children: (0, _$$_REQUIRE(_dependencyMap[15]).jsxs)(_reactNative.View, {
@@ -370879,24 +371326,10 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
props: {
type: _fontText.Type.regular
}
- } : {
- disablePadding: true,
- text: title,
- classes: ["article-title"],
- style: [_$$_REQUIRE(_dependencyMap[16]).styles.title, {
- color: color
- }]
- },
- bottom: kicker ? {
- text: title,
- classes: ["article-title"],
- style: [_$$_REQUIRE(_dependencyMap[16]).styles.title, {
- color: color
- }],
- props: {
- type: _fontText.Type.bold
- }
- } : undefined,
+ } : Object.assign({
+ disablePadding: true
+ }, titleObj),
+ bottom: kicker ? titleObj : undefined,
containerStyle: _$$_REQUIRE(_dependencyMap[16]).styles.titleContainer,
handleTextWrap: this.handleTextWrap
})
@@ -370938,7 +371371,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
hasSquaredImage: _propTypes.default.bool,
rootStyle: _propTypes.default.any
};
-},2683,[3,6,7,11,13,14,16,18,582,816,588,2149,2139,819,438,179,2684]);
+},2685,[3,6,7,11,13,14,582,16,18,2150,816,588,2140,819,438,179,2686]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -370989,7 +371422,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
flex: 1
}
});
-},2684,[18]);
+},2686,[18]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -371004,7 +371437,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
});
});
-},2685,[2686]);
+},2687,[2688]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -371367,7 +371800,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
style: _propTypes.default.any,
loadUrlInArticle: _propTypes.default.bool
};
-},2686,[3,270,6,7,11,13,14,582,16,567,436,1943,1976,2687,2092,564,819,179,2689,1861,438]);
+},2688,[3,270,6,7,11,13,14,582,16,567,436,1943,1976,2689,2092,564,819,179,2691,1861,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -371772,7 +372205,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
btnOutRange: _$$_REQUIRE(_dependencyMap[10]).colors.black,
btnOutRangeTxt: _$$_REQUIRE(_dependencyMap[10]).colors.white
};
-},2687,[3,6,7,11,13,14,582,16,18,2688,438,179]);
+},2689,[3,6,7,11,13,14,582,16,18,2690,438,179]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -371895,7 +372328,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
startDegree: 0,
endDegree: 720
};
-},2688,[3,6,7,11,13,14,16,18,582,179]);
+},2690,[3,6,7,11,13,14,16,18,582,179]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -371910,7 +372343,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
});
});
-},2689,[2091]);
+},2691,[2091]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -372092,7 +372525,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}, _articleContentBase.default.propTypes);
var _default = exports.default = ArticleContent;
-},2690,[3,6,7,11,85,13,14,582,16,18,434,2675,819,179,2691,438,2693,2695,2685]);
+},2692,[3,6,7,11,85,13,14,582,16,18,434,2677,819,179,2693,438,2695,2697,2687]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -372267,7 +372700,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
onImageError: _propTypes.default.func,
onHeightChange: _propTypes.default.func
};
-},2691,[3,33,582,16,18,2235,2155,816,2200,2132,438,179,819,2692,2017]);
+},2693,[3,33,582,16,18,2237,2156,816,2186,2132,438,179,819,2694,2017]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -372293,7 +372726,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
padding: 10
}
});
-},2692,[18,438]);
+},2694,[18,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -372308,7 +372741,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
});
});
-},2693,[2694]);
+},2695,[2696]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -372409,7 +372842,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
renderParallaxBackground: null,
parallaxBackgroundScrollSpeed: 2
};
-},2694,[3,4,16,18,582,179,1978,438]);
+},2696,[3,4,16,18,582,179,1978,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -372424,7 +372857,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
});
});
-},2695,[2696]);
+},2697,[2698]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -372532,7 +372965,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
ArticleContentHeadline.defaultProps = {
date: ""
};
-},2696,[3,582,16,18,2235,816,819,179,2697]);
+},2698,[3,582,16,18,2237,816,819,179,2699]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -372568,7 +373001,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
paddingHorizontal: 4
}
});
-},2697,[18]);
+},2699,[18]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -372591,7 +373024,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
flex: 1
}
});
-},2698,[18]);
+},2700,[18]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -372711,7 +373144,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
var _default = exports.default = CustomEmbedWebView;
-},2699,[3,33,4,582,16,18,436,434,2240,2050,868,564,179,819,2700,1989,438]);
+},2701,[3,33,4,582,16,18,436,434,2242,2050,868,564,179,819,2702,1989,438]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -373023,7 +373456,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
htmlContentId: "",
disableStartAutoHeightEvaluation: false
};
-},2700,[3,4,6,7,11,13,14,582,16,1981,179,1984]);
+},2702,[3,4,6,7,11,13,14,582,16,1981,179,1984]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -373172,7 +373605,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
NativoLandingPageScreen.propTypes = {
navigation: _propTypes.default.object.isRequired
};
-},2701,[3,6,7,11,13,14,582,16,18,881,2279,179,1978]);
+},2703,[3,6,7,11,13,14,582,16,18,881,2281,179,1978]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -373255,7 +373688,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
}]);
}(_$$_REQUIRE(_dependencyMap[9]).NavigationBaseScreen);
-},2702,[3,6,7,11,13,14,16,407,2703,2279,438,179]);
+},2704,[3,6,7,11,13,14,16,407,2705,2281,438,179]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -373342,7 +373775,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}) : null]
});
}
-},2703,[3,33,16,18,2284,436,434,868,438,564,819,179,1984,1989]);
+},2705,[3,33,16,18,2286,436,434,868,438,564,819,179,1984,1989]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -373428,7 +373861,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
}]);
}(_$$_REQUIRE(_dependencyMap[10]).NavigationBaseScreen);
-},2704,[3,6,7,11,13,14,16,406,407,2703,2279,438,179]);
+},2706,[3,6,7,11,13,14,16,406,407,2705,2281,438,179]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -373666,7 +374099,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
}]);
}(_$$_REQUIRE(_dependencyMap[25]).NavigationBaseScreen);
-},2705,[3,270,6,7,11,85,13,14,16,1917,1920,2161,1777,436,1919,880,1778,1947,2703,438,564,1986,179,2009,1992,2279]);
+},2707,[3,270,6,7,11,85,13,14,16,1917,1920,2162,1777,436,1919,880,1778,1947,2705,438,564,1986,179,2009,1992,2281]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -373807,7 +374240,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
SelectionScreen.propTypes = {
navigation: _propTypes.default.object
};
-},2706,[3,270,6,7,11,85,13,14,16,582,2703,2279,438,179]);
+},2708,[3,270,6,7,11,85,13,14,16,582,2705,2281,438,179]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -373883,7 +374316,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
}]);
}(_$$_REQUIRE(_dependencyMap[12]).NavigationBaseScreen);
-},2707,[3,6,7,11,13,14,16,18,816,1861,819,179,2279]);
+},2709,[3,6,7,11,13,14,16,18,816,1861,819,179,2281]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -374205,7 +374638,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
UpdaterScreen.defaultProps = {
manualRestartContext: global.__DEV__
};
-},2708,[3,270,6,7,11,85,13,14,582,16,18,407,434,629,1923,566,2276,816,2709,438,579,2068,2279,819,179,2009,2291]);
+},2710,[3,270,6,7,11,85,13,14,582,16,18,407,434,629,1923,566,2278,816,2711,438,579,2068,2281,819,179,2009,2293]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -374242,7 +374675,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
alignItems: "center"
}
});
-},2709,[18]);
+},2711,[18]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -374257,7 +374690,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
});
});
-},2710,[2711]);
+},2712,[2713]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -374676,57 +375109,55 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
key: "_checkPublications",
value: function () {
var _checkPublications2 = (0, _asyncToGenerator2.default)(function* () {
- var success = false;
yield global.loadPublications();
var currentPublication = yield global.getCurrentPublication();
- if (currentPublication) {
- var _global$getMainPSetup3 = global.getMainPSetup(),
- externalXPapers = _global$getMainPSetup3.externalXPapers,
- mainPSetup = _global$getMainPSetup3.pSetup;
+ if (!currentPublication) {
+ return false;
+ }
- var _global$getActivePSet2 = global.getActivePSetup(),
- pSetup = _global$getActivePSet2.pSetup,
- paper = _global$getActivePSet2.paper;
+ var _global$getMainPSetup3 = global.getMainPSetup(),
+ externalXPapers = _global$getMainPSetup3.externalXPapers,
+ mainPSetup = _global$getMainPSetup3.pSetup;
- var currentPSetup = currentPublication.getPSetup();
- var currentIsExternal = currentPublication.isExternal();
+ var _global$getActivePSet2 = global.getActivePSetup(),
+ pSetup = _global$getActivePSet2.pSetup,
+ paper = _global$getActivePSet2.paper;
- if (pSetup !== currentPSetup) {
- var currentMachine = currentPublication.getMachine();
- var currentPaper = currentPublication.getPaper();
- var currentXPaper = currentPublication.getXPaper();
- var considerCurrentPublication = false;
+ var currentPSetup = currentPublication.getPSetup();
+ var currentIsExternal = currentPublication.isExternal();
+ var success = false;
- if (_$$_REQUIRE(_dependencyMap[27]).PaperSetupManager.isGenericAppConfigured()) {
- considerCurrentPublication = true;
+ if (pSetup !== currentPSetup) {
+ var currentMachine = currentPublication.getMachine();
+ var currentPaper = currentPublication.getPaper();
+ var currentXPaper = currentPublication.getXPaper();
+ var considerCurrentPublication = false;
+
+ if (_$$_REQUIRE(_dependencyMap[27]).PaperSetupManager.isGenericAppConfigured()) {
+ considerCurrentPublication = true;
+ } else {
+ if (currentIsExternal && externalXPapers) {
+ considerCurrentPublication = externalXPapers.split(",").includes(currentPSetup);
} else {
- if (currentIsExternal && externalXPapers) {
- considerCurrentPublication = externalXPapers.split(",").includes(currentPSetup);
- } else {
- considerCurrentPublication = currentPaper && currentXPaper && paper === currentPaper && currentPaper !== currentXPaper;
- }
-
- yield global.getPublicationsManager().deletePublication({
- pSetup: currentPSetup
- });
+ considerCurrentPublication = currentPaper && currentXPaper && paper === currentPaper && currentPaper !== currentXPaper;
}
- if (considerCurrentPublication) {
- success = yield this._loadPSetup(currentPSetup, currentMachine, {}, currentIsExternal);
- }
- } else if (currentIsExternal && externalXPapers && !externalXPapers.split(",").includes(currentPSetup)) {
yield global.getPublicationsManager().deletePublication({
pSetup: currentPSetup
});
- var paperSetupManager = global.getPaperSetupManager();
-
- if (paperSetupManager) {
- paperSetupManager.resetActivePSetup();
- }
-
- success = yield this._loadPSetup(mainPSetup);
}
+
+ if (considerCurrentPublication) {
+ success = yield this._loadPSetup(currentPSetup, currentMachine, {}, currentIsExternal);
+ }
+ } else if (currentIsExternal && externalXPapers && !externalXPapers.split(",").includes(currentPSetup)) {
+ yield global.getPublicationsManager().deletePublication({
+ pSetup: currentPSetup
+ });
+ var paperSetupManager = global.getPaperSetupManager();
+ paperSetupManager == null ? undefined : paperSetupManager.resetActivePSetup();
+ success = yield this._loadPSetup(mainPSetup);
}
return success;
@@ -374774,7 +375205,9 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
this.errorShown = true;
}
} catch (e) {
- if (e.response && e.response.status === _$$_REQUIRE(_dependencyMap[30]).HTTP_CODES.UNAUTHORIZED) {
+ var _e$response;
+
+ if (((_e$response = e.response) == null ? undefined : _e$response.status) === _$$_REQUIRE(_dependencyMap[30]).HTTP_CODES.UNAUTHORIZED) {
global.unauthorized = true;
_NavigationService.default.main.navigate("UnauthorizedScreen");
@@ -374901,7 +375334,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
}]);
}(_$$_REQUIRE(_dependencyMap[35]).NavigationBaseScreen);
-},2711,[3,270,6,7,11,85,13,14,16,2712,1917,1920,2305,436,1919,2242,1945,2281,1932,1923,566,1778,1947,817,814,438,579,1904,2271,564,407,866,2416,179,2291,2279]);
+},2713,[3,270,6,7,11,85,13,14,16,2714,1917,1920,2307,436,1919,2244,1945,2283,1930,1923,566,1778,1947,817,814,438,579,1904,2273,564,407,866,2418,179,2293,2281]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
'use strict';
@@ -374913,7 +375346,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
var _reactNative = _$$_REQUIRE(_dependencyMap[0]);
var _default = exports.default = _reactNative.NativeModules.SplashScreen;
-},2712,[18]);
+},2714,[18]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -375104,7 +375537,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
RootBase.propTypes = {
children: _propTypes.default.any
};
-},2713,[3,4,582,16,18,434,881,1947,2714,2051,2715,817,2262,438,2236,1986,814,2025,2068,2072,179,819,2716,2717]);
+},2715,[3,4,582,16,18,434,881,1947,2716,2051,2717,817,2264,438,2238,1986,814,2025,2068,2072,179,819,2718,2719]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -375288,7 +375721,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
};
var _default = exports.default = DebugOverlay;
-},2714,[3,22,33,582,16,18,438,179,2262,817,1978,2208]);
+},2716,[3,22,33,582,16,18,438,179,2264,817,1978,2210]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -375437,7 +375870,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
onOpen: _propTypes.default.func,
onClose: _propTypes.default.func
};
-},2715,[3,6,7,11,13,14,582,16,1943,179,2679]);
+},2717,[3,6,7,11,13,14,582,16,1943,179,2681]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -375522,7 +375955,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
})]
});
};
-},2716,[3,33,4,16,18,179]);
+},2718,[3,33,4,16,18,179]);
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
Object.defineProperty(exports, "__esModule", {
value: true
@@ -375537,6 +375970,6 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
}
});
});
-},2717,[2273]);
+},2719,[2275]);
__r(55);
__r(0);
\ No newline at end of file