From 2f7a83e9da81f6cd3e13718e72e296d6c123d6bf Mon Sep 17 00:00:00 2001 From: Nick Date: Wed, 14 May 2025 15:13:25 +0200 Subject: [PATCH] new version 3.18.19 --- README.md | 148 +- build.gradle | 12 +- gradle.properties | 4 +- libs/react-native-cookies_cookies-release.aar | Bin 22660 -> 22986 bytes libs/tecnavia_react-native-bridge-release.aar | Bin 71448 -> 71612 bytes ...via_react-native-web-analytics-release.aar | Bin 23442 -> 26724 bytes src/main/assets/index.android.bundle | 5543 +++++++++-------- 7 files changed, 3142 insertions(+), 2565 deletions(-) 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 ad255581ab2fbbfe66d70a33d26761fc62d9457e..6f7886889390cb583a956f407fd6a6bbd2109fa4 100644 GIT binary patch delta 22608 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 delta 22360 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 E0J#6g_W%F@ delta 55959 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 diff --git a/libs/tecnavia_react-native-web-analytics-release.aar b/libs/tecnavia_react-native-web-analytics-release.aar index adcee7cf1731ae4dc6a7a619d56277fa5dc3f71b..c27cdd4b23d6a7104a99efe913cb2375e9030f6c 100644 GIT binary patch delta 12552 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 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