@babylonjs/inspector 4.2.0 → 4.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -97,9 +97,9 @@ return /******/ (function(modules) { // webpackBootstrap
97
97
  /******/ ({
98
98
 
99
99
  /***/ "../../../../node_modules/@fortawesome/fontawesome-svg-core/index.es.js":
100
- /*!**************************************************************************************!*\
101
- !*** C:/Repos/Babylon.js/node_modules/@fortawesome/fontawesome-svg-core/index.es.js ***!
102
- \**************************************************************************************/
100
+ /*!****************************************************************************************!*\
101
+ !*** E:/Babylon/Babylon.js/node_modules/@fortawesome/fontawesome-svg-core/index.es.js ***!
102
+ \****************************************************************************************/
103
103
  /*! exports provided: icon, noAuto, config, toHtml, layer, text, counter, library, dom, parse, findIconDefinition */
104
104
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
105
105
 
@@ -117,7 +117,7 @@ __webpack_require__.r(__webpack_exports__);
117
117
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "parse", function() { return parse; });
118
118
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "findIconDefinition", function() { return findIconDefinition; });
119
119
  /*!
120
- * Font Awesome Free 5.15.0 by @fontawesome - https://fontawesome.com
120
+ * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com
121
121
  * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
122
122
  */
123
123
  function _typeof(obj) {
@@ -1214,7 +1214,7 @@ var p = config.measurePerformance && PERFORMANCE && PERFORMANCE.mark && PERFORMA
1214
1214
  mark: noop$1,
1215
1215
  measure: noop$1
1216
1216
  };
1217
- var preamble = "FA \"5.15.0\"";
1217
+ var preamble = "FA \"5.15.3\"";
1218
1218
 
1219
1219
  var begin = function begin(name) {
1220
1220
  p.mark("".concat(preamble, " ").concat(name, " begins"));
@@ -1291,35 +1291,6 @@ function toHex(unicode) {
1291
1291
 
1292
1292
  return result;
1293
1293
  }
1294
- function codePointAt(string, index) {
1295
- /*! https://mths.be/codepointat v0.2.0 by @mathias */
1296
- var size = string.length;
1297
- var first = string.charCodeAt(index);
1298
- var second;
1299
-
1300
- if (first >= 0xD800 && first <= 0xDBFF && size > index + 1) {
1301
- second = string.charCodeAt(index + 1);
1302
-
1303
- if (second >= 0xDC00 && second <= 0xDFFF) {
1304
- return (first - 0xD800) * 0x400 + second - 0xDC00 + 0x10000;
1305
- }
1306
- }
1307
-
1308
- return first;
1309
- }
1310
- /**
1311
- * Used to check that the character is between the E000..F8FF private unicode
1312
- * range
1313
- */
1314
-
1315
- function isPrivateUnicode(iconName) {
1316
- if (iconName.length !== 1) {
1317
- return false;
1318
- } else {
1319
- var cp = codePointAt(iconName, 0);
1320
- return cp >= 57344 && cp <= 63743;
1321
- }
1322
- }
1323
1294
 
1324
1295
  function defineIcons(prefix, icons) {
1325
1296
  var params = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};
@@ -1898,27 +1869,6 @@ var missing = {
1898
1869
  };
1899
1870
 
1900
1871
  var styles$2 = namespace.styles;
1901
- function resolveCustomIconVersion() {
1902
- var kitConfig = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
1903
- var iconName = arguments.length > 1 ? arguments[1] : undefined;
1904
-
1905
- if (iconName && isPrivateUnicode(iconName)) {
1906
- if (kitConfig && kitConfig.iconUploads) {
1907
- var iconUploads = kitConfig.iconUploads;
1908
- var descriptiveIconName = Object.keys(iconUploads).find(function (key) {
1909
- return iconUploads[key] && iconUploads[key].u && iconUploads[key].u === toHex(iconName);
1910
- });
1911
-
1912
- if (descriptiveIconName) {
1913
- return iconUploads[descriptiveIconName].v;
1914
- }
1915
- }
1916
- } else {
1917
- if (kitConfig && kitConfig.iconUploads && kitConfig.iconUploads[iconName] && kitConfig.iconUploads[iconName].v) {
1918
- return kitConfig.iconUploads[iconName].v;
1919
- }
1920
- }
1921
- }
1922
1872
  function asFoundIcon(icon) {
1923
1873
  var width = icon[0];
1924
1874
  var height = icon[1];
@@ -1981,12 +1931,6 @@ function findIcon(iconName, prefix) {
1981
1931
  var icon = styles$2[prefix][iconName];
1982
1932
  return resolve(asFoundIcon(icon));
1983
1933
  }
1984
- var kitToken = null;
1985
- var iconVersion = resolveCustomIconVersion(WINDOW.FontAwesomeKitConfig, iconName);
1986
-
1987
- if (WINDOW.FontAwesomeKitConfig && WINDOW.FontAwesomeKitConfig.token) {
1988
- kitToken = WINDOW.FontAwesomeKitConfig.token;
1989
- }
1990
1934
 
1991
1935
  if (iconName && prefix && !config.showMissingIcons) {
1992
1936
  reject(new MissingIcon("Icon is missing for prefix ".concat(prefix, " with icon name ").concat(iconName)));
@@ -2613,9 +2557,9 @@ var autoReplace = function autoReplace() {
2613
2557
  /***/ }),
2614
2558
 
2615
2559
  /***/ "../../../../node_modules/@fortawesome/free-regular-svg-icons/index.es.js":
2616
- /*!****************************************************************************************!*\
2617
- !*** C:/Repos/Babylon.js/node_modules/@fortawesome/free-regular-svg-icons/index.es.js ***!
2618
- \****************************************************************************************/
2560
+ /*!******************************************************************************************!*\
2561
+ !*** E:/Babylon/Babylon.js/node_modules/@fortawesome/free-regular-svg-icons/index.es.js ***!
2562
+ \******************************************************************************************/
2619
2563
  /*! exports provided: far, prefix, faAddressBook, faAddressCard, faAngry, faArrowAltCircleDown, faArrowAltCircleLeft, faArrowAltCircleRight, faArrowAltCircleUp, faBell, faBellSlash, faBookmark, faBuilding, faCalendar, faCalendarAlt, faCalendarCheck, faCalendarMinus, faCalendarPlus, faCalendarTimes, faCaretSquareDown, faCaretSquareLeft, faCaretSquareRight, faCaretSquareUp, faChartBar, faCheckCircle, faCheckSquare, faCircle, faClipboard, faClock, faClone, faClosedCaptioning, faComment, faCommentAlt, faCommentDots, faComments, faCompass, faCopy, faCopyright, faCreditCard, faDizzy, faDotCircle, faEdit, faEnvelope, faEnvelopeOpen, faEye, faEyeSlash, faFile, faFileAlt, faFileArchive, faFileAudio, faFileCode, faFileExcel, faFileImage, faFilePdf, faFilePowerpoint, faFileVideo, faFileWord, faFlag, faFlushed, faFolder, faFolderOpen, faFontAwesomeLogoFull, faFrown, faFrownOpen, faFutbol, faGem, faGrimace, faGrin, faGrinAlt, faGrinBeam, faGrinBeamSweat, faGrinHearts, faGrinSquint, faGrinSquintTears, faGrinStars, faGrinTears, faGrinTongue, faGrinTongueSquint, faGrinTongueWink, faGrinWink, faHandLizard, faHandPaper, faHandPeace, faHandPointDown, faHandPointLeft, faHandPointRight, faHandPointUp, faHandPointer, faHandRock, faHandScissors, faHandSpock, faHandshake, faHdd, faHeart, faHospital, faHourglass, faIdBadge, faIdCard, faImage, faImages, faKeyboard, faKiss, faKissBeam, faKissWinkHeart, faLaugh, faLaughBeam, faLaughSquint, faLaughWink, faLemon, faLifeRing, faLightbulb, faListAlt, faMap, faMeh, faMehBlank, faMehRollingEyes, faMinusSquare, faMoneyBillAlt, faMoon, faNewspaper, faObjectGroup, faObjectUngroup, faPaperPlane, faPauseCircle, faPlayCircle, faPlusSquare, faQuestionCircle, faRegistered, faSadCry, faSadTear, faSave, faShareSquare, faSmile, faSmileBeam, faSmileWink, faSnowflake, faSquare, faStar, faStarHalf, faStickyNote, faStopCircle, faSun, faSurprise, faThumbsDown, faThumbsUp, faTimesCircle, faTired, faTrashAlt, faUser, faUserCircle, faWindowClose, faWindowMaximize, faWindowMinimize, faWindowRestore */
2620
2564
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
2621
2565
 
@@ -3697,9 +3641,9 @@ var _iconsCache = {
3697
3641
  /***/ }),
3698
3642
 
3699
3643
  /***/ "../../../../node_modules/@fortawesome/free-solid-svg-icons/index.es.js":
3700
- /*!**************************************************************************************!*\
3701
- !*** C:/Repos/Babylon.js/node_modules/@fortawesome/free-solid-svg-icons/index.es.js ***!
3702
- \**************************************************************************************/
3644
+ /*!****************************************************************************************!*\
3645
+ !*** E:/Babylon/Babylon.js/node_modules/@fortawesome/free-solid-svg-icons/index.es.js ***!
3646
+ \****************************************************************************************/
3703
3647
  /*! exports provided: fas, prefix, faAd, faAddressBook, faAddressCard, faAdjust, faAirFreshener, faAlignCenter, faAlignJustify, faAlignLeft, faAlignRight, faAllergies, faAmbulance, faAmericanSignLanguageInterpreting, faAnchor, faAngleDoubleDown, faAngleDoubleLeft, faAngleDoubleRight, faAngleDoubleUp, faAngleDown, faAngleLeft, faAngleRight, faAngleUp, faAngry, faAnkh, faAppleAlt, faArchive, faArchway, faArrowAltCircleDown, faArrowAltCircleLeft, faArrowAltCircleRight, faArrowAltCircleUp, faArrowCircleDown, faArrowCircleLeft, faArrowCircleRight, faArrowCircleUp, faArrowDown, faArrowLeft, faArrowRight, faArrowUp, faArrowsAlt, faArrowsAltH, faArrowsAltV, faAssistiveListeningSystems, faAsterisk, faAt, faAtlas, faAtom, faAudioDescription, faAward, faBaby, faBabyCarriage, faBackspace, faBackward, faBacon, faBacteria, faBacterium, faBahai, faBalanceScale, faBalanceScaleLeft, faBalanceScaleRight, faBan, faBandAid, faBarcode, faBars, faBaseballBall, faBasketballBall, faBath, faBatteryEmpty, faBatteryFull, faBatteryHalf, faBatteryQuarter, faBatteryThreeQuarters, faBed, faBeer, faBell, faBellSlash, faBezierCurve, faBible, faBicycle, faBiking, faBinoculars, faBiohazard, faBirthdayCake, faBlender, faBlenderPhone, faBlind, faBlog, faBold, faBolt, faBomb, faBone, faBong, faBook, faBookDead, faBookMedical, faBookOpen, faBookReader, faBookmark, faBorderAll, faBorderNone, faBorderStyle, faBowlingBall, faBox, faBoxOpen, faBoxTissue, faBoxes, faBraille, faBrain, faBreadSlice, faBriefcase, faBriefcaseMedical, faBroadcastTower, faBroom, faBrush, faBug, faBuilding, faBullhorn, faBullseye, faBurn, faBus, faBusAlt, faBusinessTime, faCalculator, faCalendar, faCalendarAlt, faCalendarCheck, faCalendarDay, faCalendarMinus, faCalendarPlus, faCalendarTimes, faCalendarWeek, faCamera, faCameraRetro, faCampground, faCandyCane, faCannabis, faCapsules, faCar, faCarAlt, faCarBattery, faCarCrash, faCarSide, faCaravan, faCaretDown, faCaretLeft, faCaretRight, faCaretSquareDown, faCaretSquareLeft, faCaretSquareRight, faCaretSquareUp, faCaretUp, faCarrot, faCartArrowDown, faCartPlus, faCashRegister, faCat, faCertificate, faChair, faChalkboard, faChalkboardTeacher, faChargingStation, faChartArea, faChartBar, faChartLine, faChartPie, faCheck, faCheckCircle, faCheckDouble, faCheckSquare, faCheese, faChess, faChessBishop, faChessBoard, faChessKing, faChessKnight, faChessPawn, faChessQueen, faChessRook, faChevronCircleDown, faChevronCircleLeft, faChevronCircleRight, faChevronCircleUp, faChevronDown, faChevronLeft, faChevronRight, faChevronUp, faChild, faChurch, faCircle, faCircleNotch, faCity, faClinicMedical, faClipboard, faClipboardCheck, faClipboardList, faClock, faClone, faClosedCaptioning, faCloud, faCloudDownloadAlt, faCloudMeatball, faCloudMoon, faCloudMoonRain, faCloudRain, faCloudShowersHeavy, faCloudSun, faCloudSunRain, faCloudUploadAlt, faCocktail, faCode, faCodeBranch, faCoffee, faCog, faCogs, faCoins, faColumns, faComment, faCommentAlt, faCommentDollar, faCommentDots, faCommentMedical, faCommentSlash, faComments, faCommentsDollar, faCompactDisc, faCompass, faCompress, faCompressAlt, faCompressArrowsAlt, faConciergeBell, faCookie, faCookieBite, faCopy, faCopyright, faCouch, faCreditCard, faCrop, faCropAlt, faCross, faCrosshairs, faCrow, faCrown, faCrutch, faCube, faCubes, faCut, faDatabase, faDeaf, faDemocrat, faDesktop, faDharmachakra, faDiagnoses, faDice, faDiceD20, faDiceD6, faDiceFive, faDiceFour, faDiceOne, faDiceSix, faDiceThree, faDiceTwo, faDigitalTachograph, faDirections, faDisease, faDivide, faDizzy, faDna, faDog, faDollarSign, faDolly, faDollyFlatbed, faDonate, faDoorClosed, faDoorOpen, faDotCircle, faDove, faDownload, faDraftingCompass, faDragon, faDrawPolygon, faDrum, faDrumSteelpan, faDrumstickBite, faDumbbell, faDumpster, faDumpsterFire, faDungeon, faEdit, faEgg, faEject, faEllipsisH, faEllipsisV, faEnvelope, faEnvelopeOpen, faEnvelopeOpenText, faEnvelopeSquare, faEquals, faEraser, faEthernet, faEuroSign, faExchangeAlt, faExclamation, faExclamationCircle, faExclamationTriangle, faExpand, faExpandAlt, faExpandArrowsAlt, faExternalLinkAlt, faExternalLinkSquareAlt, faEye, faEyeDropper, faEyeSlash, faFan, faFastBackward, faFastForward, faFaucet, faFax, faFeather, faFeatherAlt, faFemale, faFighterJet, faFile, faFileAlt, faFileArchive, faFileAudio, faFileCode, faFileContract, faFileCsv, faFileDownload, faFileExcel, faFileExport, faFileImage, faFileImport, faFileInvoice, faFileInvoiceDollar, faFileMedical, faFileMedicalAlt, faFilePdf, faFilePowerpoint, faFilePrescription, faFileSignature, faFileUpload, faFileVideo, faFileWord, faFill, faFillDrip, faFilm, faFilter, faFingerprint, faFire, faFireAlt, faFireExtinguisher, faFirstAid, faFish, faFistRaised, faFlag, faFlagCheckered, faFlagUsa, faFlask, faFlushed, faFolder, faFolderMinus, faFolderOpen, faFolderPlus, faFont, faFontAwesomeLogoFull, faFootballBall, faForward, faFrog, faFrown, faFrownOpen, faFunnelDollar, faFutbol, faGamepad, faGasPump, faGavel, faGem, faGenderless, faGhost, faGift, faGifts, faGlassCheers, faGlassMartini, faGlassMartiniAlt, faGlassWhiskey, faGlasses, faGlobe, faGlobeAfrica, faGlobeAmericas, faGlobeAsia, faGlobeEurope, faGolfBall, faGopuram, faGraduationCap, faGreaterThan, faGreaterThanEqual, faGrimace, faGrin, faGrinAlt, faGrinBeam, faGrinBeamSweat, faGrinHearts, faGrinSquint, faGrinSquintTears, faGrinStars, faGrinTears, faGrinTongue, faGrinTongueSquint, faGrinTongueWink, faGrinWink, faGripHorizontal, faGripLines, faGripLinesVertical, faGripVertical, faGuitar, faHSquare, faHamburger, faHammer, faHamsa, faHandHolding, faHandHoldingHeart, faHandHoldingMedical, faHandHoldingUsd, faHandHoldingWater, faHandLizard, faHandMiddleFinger, faHandPaper, faHandPeace, faHandPointDown, faHandPointLeft, faHandPointRight, faHandPointUp, faHandPointer, faHandRock, faHandScissors, faHandSparkles, faHandSpock, faHands, faHandsHelping, faHandsWash, faHandshake, faHandshakeAltSlash, faHandshakeSlash, faHanukiah, faHardHat, faHashtag, faHatCowboy, faHatCowboySide, faHatWizard, faHdd, faHeadSideCough, faHeadSideCoughSlash, faHeadSideMask, faHeadSideVirus, faHeading, faHeadphones, faHeadphonesAlt, faHeadset, faHeart, faHeartBroken, faHeartbeat, faHelicopter, faHighlighter, faHiking, faHippo, faHistory, faHockeyPuck, faHollyBerry, faHome, faHorse, faHorseHead, faHospital, faHospitalAlt, faHospitalSymbol, faHospitalUser, faHotTub, faHotdog, faHotel, faHourglass, faHourglassEnd, faHourglassHalf, faHourglassStart, faHouseDamage, faHouseUser, faHryvnia, faICursor, faIceCream, faIcicles, faIcons, faIdBadge, faIdCard, faIdCardAlt, faIgloo, faImage, faImages, faInbox, faIndent, faIndustry, faInfinity, faInfo, faInfoCircle, faItalic, faJedi, faJoint, faJournalWhills, faKaaba, faKey, faKeyboard, faKhanda, faKiss, faKissBeam, faKissWinkHeart, faKiwiBird, faLandmark, faLanguage, faLaptop, faLaptopCode, faLaptopHouse, faLaptopMedical, faLaugh, faLaughBeam, faLaughSquint, faLaughWink, faLayerGroup, faLeaf, faLemon, faLessThan, faLessThanEqual, faLevelDownAlt, faLevelUpAlt, faLifeRing, faLightbulb, faLink, faLiraSign, faList, faListAlt, faListOl, faListUl, faLocationArrow, faLock, faLockOpen, faLongArrowAltDown, faLongArrowAltLeft, faLongArrowAltRight, faLongArrowAltUp, faLowVision, faLuggageCart, faLungs, faLungsVirus, faMagic, faMagnet, faMailBulk, faMale, faMap, faMapMarked, faMapMarkedAlt, faMapMarker, faMapMarkerAlt, faMapPin, faMapSigns, faMarker, faMars, faMarsDouble, faMarsStroke, faMarsStrokeH, faMarsStrokeV, faMask, faMedal, faMedkit, faMeh, faMehBlank, faMehRollingEyes, faMemory, faMenorah, faMercury, faMeteor, faMicrochip, faMicrophone, faMicrophoneAlt, faMicrophoneAltSlash, faMicrophoneSlash, faMicroscope, faMinus, faMinusCircle, faMinusSquare, faMitten, faMobile, faMobileAlt, faMoneyBill, faMoneyBillAlt, faMoneyBillWave, faMoneyBillWaveAlt, faMoneyCheck, faMoneyCheckAlt, faMonument, faMoon, faMortarPestle, faMosque, faMotorcycle, faMountain, faMouse, faMousePointer, faMugHot, faMusic, faNetworkWired, faNeuter, faNewspaper, faNotEqual, faNotesMedical, faObjectGroup, faObjectUngroup, faOilCan, faOm, faOtter, faOutdent, faPager, faPaintBrush, faPaintRoller, faPalette, faPallet, faPaperPlane, faPaperclip, faParachuteBox, faParagraph, faParking, faPassport, faPastafarianism, faPaste, faPause, faPauseCircle, faPaw, faPeace, faPen, faPenAlt, faPenFancy, faPenNib, faPenSquare, faPencilAlt, faPencilRuler, faPeopleArrows, faPeopleCarry, faPepperHot, faPercent, faPercentage, faPersonBooth, faPhone, faPhoneAlt, faPhoneSlash, faPhoneSquare, faPhoneSquareAlt, faPhoneVolume, faPhotoVideo, faPiggyBank, faPills, faPizzaSlice, faPlaceOfWorship, faPlane, faPlaneArrival, faPlaneDeparture, faPlaneSlash, faPlay, faPlayCircle, faPlug, faPlus, faPlusCircle, faPlusSquare, faPodcast, faPoll, faPollH, faPoo, faPooStorm, faPoop, faPortrait, faPoundSign, faPowerOff, faPray, faPrayingHands, faPrescription, faPrescriptionBottle, faPrescriptionBottleAlt, faPrint, faProcedures, faProjectDiagram, faPumpMedical, faPumpSoap, faPuzzlePiece, faQrcode, faQuestion, faQuestionCircle, faQuidditch, faQuoteLeft, faQuoteRight, faQuran, faRadiation, faRadiationAlt, faRainbow, faRandom, faReceipt, faRecordVinyl, faRecycle, faRedo, faRedoAlt, faRegistered, faRemoveFormat, faReply, faReplyAll, faRepublican, faRestroom, faRetweet, faRibbon, faRing, faRoad, faRobot, faRocket, faRoute, faRss, faRssSquare, faRubleSign, faRuler, faRulerCombined, faRulerHorizontal, faRulerVertical, faRunning, faRupeeSign, faSadCry, faSadTear, faSatellite, faSatelliteDish, faSave, faSchool, faScrewdriver, faScroll, faSdCard, faSearch, faSearchDollar, faSearchLocation, faSearchMinus, faSearchPlus, faSeedling, faServer, faShapes, faShare, faShareAlt, faShareAltSquare, faShareSquare, faShekelSign, faShieldAlt, faShieldVirus, faShip, faShippingFast, faShoePrints, faShoppingBag, faShoppingBasket, faShoppingCart, faShower, faShuttleVan, faSign, faSignInAlt, faSignLanguage, faSignOutAlt, faSignal, faSignature, faSimCard, faSink, faSitemap, faSkating, faSkiing, faSkiingNordic, faSkull, faSkullCrossbones, faSlash, faSleigh, faSlidersH, faSmile, faSmileBeam, faSmileWink, faSmog, faSmoking, faSmokingBan, faSms, faSnowboarding, faSnowflake, faSnowman, faSnowplow, faSoap, faSocks, faSolarPanel, faSort, faSortAlphaDown, faSortAlphaDownAlt, faSortAlphaUp, faSortAlphaUpAlt, faSortAmountDown, faSortAmountDownAlt, faSortAmountUp, faSortAmountUpAlt, faSortDown, faSortNumericDown, faSortNumericDownAlt, faSortNumericUp, faSortNumericUpAlt, faSortUp, faSpa, faSpaceShuttle, faSpellCheck, faSpider, faSpinner, faSplotch, faSprayCan, faSquare, faSquareFull, faSquareRootAlt, faStamp, faStar, faStarAndCrescent, faStarHalf, faStarHalfAlt, faStarOfDavid, faStarOfLife, faStepBackward, faStepForward, faStethoscope, faStickyNote, faStop, faStopCircle, faStopwatch, faStopwatch20, faStore, faStoreAlt, faStoreAltSlash, faStoreSlash, faStream, faStreetView, faStrikethrough, faStroopwafel, faSubscript, faSubway, faSuitcase, faSuitcaseRolling, faSun, faSuperscript, faSurprise, faSwatchbook, faSwimmer, faSwimmingPool, faSynagogue, faSync, faSyncAlt, faSyringe, faTable, faTableTennis, faTablet, faTabletAlt, faTablets, faTachometerAlt, faTag, faTags, faTape, faTasks, faTaxi, faTeeth, faTeethOpen, faTemperatureHigh, faTemperatureLow, faTenge, faTerminal, faTextHeight, faTextWidth, faTh, faThLarge, faThList, faTheaterMasks, faThermometer, faThermometerEmpty, faThermometerFull, faThermometerHalf, faThermometerQuarter, faThermometerThreeQuarters, faThumbsDown, faThumbsUp, faThumbtack, faTicketAlt, faTimes, faTimesCircle, faTint, faTintSlash, faTired, faToggleOff, faToggleOn, faToilet, faToiletPaper, faToiletPaperSlash, faToolbox, faTools, faTooth, faTorah, faToriiGate, faTractor, faTrademark, faTrafficLight, faTrailer, faTrain, faTram, faTransgender, faTransgenderAlt, faTrash, faTrashAlt, faTrashRestore, faTrashRestoreAlt, faTree, faTrophy, faTruck, faTruckLoading, faTruckMonster, faTruckMoving, faTruckPickup, faTshirt, faTty, faTv, faUmbrella, faUmbrellaBeach, faUnderline, faUndo, faUndoAlt, faUniversalAccess, faUniversity, faUnlink, faUnlock, faUnlockAlt, faUpload, faUser, faUserAlt, faUserAltSlash, faUserAstronaut, faUserCheck, faUserCircle, faUserClock, faUserCog, faUserEdit, faUserFriends, faUserGraduate, faUserInjured, faUserLock, faUserMd, faUserMinus, faUserNinja, faUserNurse, faUserPlus, faUserSecret, faUserShield, faUserSlash, faUserTag, faUserTie, faUserTimes, faUsers, faUsersCog, faUsersSlash, faUtensilSpoon, faUtensils, faVectorSquare, faVenus, faVenusDouble, faVenusMars, faVial, faVials, faVideo, faVideoSlash, faVihara, faVirus, faVirusSlash, faViruses, faVoicemail, faVolleyballBall, faVolumeDown, faVolumeMute, faVolumeOff, faVolumeUp, faVoteYea, faVrCardboard, faWalking, faWallet, faWarehouse, faWater, faWaveSquare, faWeight, faWeightHanging, faWheelchair, faWifi, faWind, faWindowClose, faWindowMaximize, faWindowMinimize, faWindowRestore, faWineBottle, faWineGlass, faWineGlassAlt, faWonSign, faWrench, faXRay, faYenSign, faYinYang */
3704
3648
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
3705
3649
 
@@ -10717,9 +10661,9 @@ var _iconsCache = {
10717
10661
  /***/ }),
10718
10662
 
10719
10663
  /***/ "../../../../node_modules/@fortawesome/react-fontawesome/index.es.js":
10720
- /*!***********************************************************************************!*\
10721
- !*** C:/Repos/Babylon.js/node_modules/@fortawesome/react-fontawesome/index.es.js ***!
10722
- \***********************************************************************************/
10664
+ /*!*************************************************************************************!*\
10665
+ !*** E:/Babylon/Babylon.js/node_modules/@fortawesome/react-fontawesome/index.es.js ***!
10666
+ \*************************************************************************************/
10723
10667
  /*! exports provided: FontAwesomeIcon */
10724
10668
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
10725
10669
 
@@ -10992,9 +10936,12 @@ function log () {
10992
10936
  }
10993
10937
  }
10994
10938
 
10995
- // Normalize icon arguments
10996
10939
  function normalizeIconArgs(icon) {
10997
- // if the icon is null, there's nothing to do
10940
+ if (_fortawesome_fontawesome_svg_core__WEBPACK_IMPORTED_MODULE_0__["parse"].icon) {
10941
+ return _fortawesome_fontawesome_svg_core__WEBPACK_IMPORTED_MODULE_0__["parse"].icon(icon);
10942
+ } // if the icon is null, there's nothing to do
10943
+
10944
+
10998
10945
  if (icon === null) {
10999
10946
  return null;
11000
10947
  } // if the icon is an object and has a prefix and an icon name, return it
@@ -11041,14 +10988,16 @@ function FontAwesomeIcon(_ref) {
11041
10988
  maskArgs = props.mask,
11042
10989
  symbol = props.symbol,
11043
10990
  className = props.className,
11044
- title = props.title;
10991
+ title = props.title,
10992
+ titleId = props.titleId;
11045
10993
  var iconLookup = normalizeIconArgs(iconArgs);
11046
10994
  var classes = objectWithKey('classes', [].concat(_toConsumableArray(classList(props)), _toConsumableArray(className.split(' '))));
11047
10995
  var transform = objectWithKey('transform', typeof props.transform === 'string' ? _fortawesome_fontawesome_svg_core__WEBPACK_IMPORTED_MODULE_0__["parse"].transform(props.transform) : props.transform);
11048
10996
  var mask = objectWithKey('mask', normalizeIconArgs(maskArgs));
11049
10997
  var renderedIcon = Object(_fortawesome_fontawesome_svg_core__WEBPACK_IMPORTED_MODULE_0__["icon"])(iconLookup, _objectSpread2({}, classes, {}, transform, {}, mask, {
11050
10998
  symbol: symbol,
11051
- title: title
10999
+ title: title,
11000
+ titleId: titleId
11052
11001
  }));
11053
11002
 
11054
11003
  if (!renderedIcon) {
@@ -11115,14 +11064,14 @@ var convertCurry = convert.bind(null, react__WEBPACK_IMPORTED_MODULE_2___default
11115
11064
  /***/ }),
11116
11065
 
11117
11066
  /***/ "../../../../node_modules/classnames/index.js":
11118
- /*!************************************************************!*\
11119
- !*** C:/Repos/Babylon.js/node_modules/classnames/index.js ***!
11120
- \************************************************************/
11067
+ /*!**************************************************************!*\
11068
+ !*** E:/Babylon/Babylon.js/node_modules/classnames/index.js ***!
11069
+ \**************************************************************/
11121
11070
  /*! no static exports found */
11122
11071
  /***/ (function(module, exports, __webpack_require__) {
11123
11072
 
11124
11073
  var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*!
11125
- Copyright (c) 2017 Jed Watson.
11074
+ Copyright (c) 2018 Jed Watson.
11126
11075
  Licensed under the MIT License (MIT), see
11127
11076
  http://jedwatson.github.io/classnames
11128
11077
  */
@@ -11133,7 +11082,7 @@ var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*!
11133
11082
 
11134
11083
  var hasOwn = {}.hasOwnProperty;
11135
11084
 
11136
- function classNames () {
11085
+ function classNames() {
11137
11086
  var classes = [];
11138
11087
 
11139
11088
  for (var i = 0; i < arguments.length; i++) {
@@ -11144,16 +11093,22 @@ var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*!
11144
11093
 
11145
11094
  if (argType === 'string' || argType === 'number') {
11146
11095
  classes.push(arg);
11147
- } else if (Array.isArray(arg) && arg.length) {
11148
- var inner = classNames.apply(null, arg);
11149
- if (inner) {
11150
- classes.push(inner);
11096
+ } else if (Array.isArray(arg)) {
11097
+ if (arg.length) {
11098
+ var inner = classNames.apply(null, arg);
11099
+ if (inner) {
11100
+ classes.push(inner);
11101
+ }
11151
11102
  }
11152
11103
  } else if (argType === 'object') {
11153
- for (var key in arg) {
11154
- if (hasOwn.call(arg, key) && arg[key]) {
11155
- classes.push(key);
11104
+ if (arg.toString === Object.prototype.toString) {
11105
+ for (var key in arg) {
11106
+ if (hasOwn.call(arg, key) && arg[key]) {
11107
+ classes.push(key);
11108
+ }
11156
11109
  }
11110
+ } else {
11111
+ classes.push(arg.toString());
11157
11112
  }
11158
11113
  }
11159
11114
  }
@@ -11177,9 +11132,9 @@ var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*!
11177
11132
  /***/ }),
11178
11133
 
11179
11134
  /***/ "../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/sass-loader/dist/cjs.js!./components/actionTabs/actionTabs.scss":
11180
- /*!****************************************************************************************************************************************************************!*\
11181
- !*** C:/Repos/Babylon.js/node_modules/css-loader/dist/cjs.js!C:/Repos/Babylon.js/node_modules/sass-loader/dist/cjs.js!./components/actionTabs/actionTabs.scss ***!
11182
- \****************************************************************************************************************************************************************/
11135
+ /*!********************************************************************************************************************************************************************!*\
11136
+ !*** E:/Babylon/Babylon.js/node_modules/css-loader/dist/cjs.js!E:/Babylon/Babylon.js/node_modules/sass-loader/dist/cjs.js!./components/actionTabs/actionTabs.scss ***!
11137
+ \********************************************************************************************************************************************************************/
11183
11138
  /*! no static exports found */
11184
11139
  /***/ (function(module, exports, __webpack_require__) {
11185
11140
 
@@ -11195,9 +11150,9 @@ module.exports = exports;
11195
11150
  /***/ }),
11196
11151
 
11197
11152
  /***/ "../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/sass-loader/dist/cjs.js!./components/actionTabs/tabs/propertyGrids/materials/textures/textureEditor.scss":
11198
- /*!*********************************************************************************************************************************************************************************************************!*\
11199
- !*** C:/Repos/Babylon.js/node_modules/css-loader/dist/cjs.js!C:/Repos/Babylon.js/node_modules/sass-loader/dist/cjs.js!./components/actionTabs/tabs/propertyGrids/materials/textures/textureEditor.scss ***!
11200
- \*********************************************************************************************************************************************************************************************************/
11153
+ /*!*************************************************************************************************************************************************************************************************************!*\
11154
+ !*** E:/Babylon/Babylon.js/node_modules/css-loader/dist/cjs.js!E:/Babylon/Babylon.js/node_modules/sass-loader/dist/cjs.js!./components/actionTabs/tabs/propertyGrids/materials/textures/textureEditor.scss ***!
11155
+ \*************************************************************************************************************************************************************************************************************/
11201
11156
  /*! no static exports found */
11202
11157
  /***/ (function(module, exports, __webpack_require__) {
11203
11158
 
@@ -11213,9 +11168,9 @@ module.exports = exports;
11213
11168
  /***/ }),
11214
11169
 
11215
11170
  /***/ "../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/sass-loader/dist/cjs.js!./components/controls/colorPicker/colorPicker.scss":
11216
- /*!***************************************************************************************************************************************************************************!*\
11217
- !*** C:/Repos/Babylon.js/node_modules/css-loader/dist/cjs.js!C:/Repos/Babylon.js/node_modules/sass-loader/dist/cjs.js!./components/controls/colorPicker/colorPicker.scss ***!
11218
- \***************************************************************************************************************************************************************************/
11171
+ /*!*******************************************************************************************************************************************************************************!*\
11172
+ !*** E:/Babylon/Babylon.js/node_modules/css-loader/dist/cjs.js!E:/Babylon/Babylon.js/node_modules/sass-loader/dist/cjs.js!./components/controls/colorPicker/colorPicker.scss ***!
11173
+ \*******************************************************************************************************************************************************************************/
11219
11174
  /*! no static exports found */
11220
11175
  /***/ (function(module, exports, __webpack_require__) {
11221
11176
 
@@ -11231,9 +11186,9 @@ module.exports = exports;
11231
11186
  /***/ }),
11232
11187
 
11233
11188
  /***/ "../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/sass-loader/dist/cjs.js!./components/embedHost/embedHost.scss":
11234
- /*!**************************************************************************************************************************************************************!*\
11235
- !*** C:/Repos/Babylon.js/node_modules/css-loader/dist/cjs.js!C:/Repos/Babylon.js/node_modules/sass-loader/dist/cjs.js!./components/embedHost/embedHost.scss ***!
11236
- \**************************************************************************************************************************************************************/
11189
+ /*!******************************************************************************************************************************************************************!*\
11190
+ !*** E:/Babylon/Babylon.js/node_modules/css-loader/dist/cjs.js!E:/Babylon/Babylon.js/node_modules/sass-loader/dist/cjs.js!./components/embedHost/embedHost.scss ***!
11191
+ \******************************************************************************************************************************************************************/
11237
11192
  /*! no static exports found */
11238
11193
  /***/ (function(module, exports, __webpack_require__) {
11239
11194
 
@@ -11249,9 +11204,9 @@ module.exports = exports;
11249
11204
  /***/ }),
11250
11205
 
11251
11206
  /***/ "../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/sass-loader/dist/cjs.js!./components/sceneExplorer/sceneExplorer.scss":
11252
- /*!**********************************************************************************************************************************************************************!*\
11253
- !*** C:/Repos/Babylon.js/node_modules/css-loader/dist/cjs.js!C:/Repos/Babylon.js/node_modules/sass-loader/dist/cjs.js!./components/sceneExplorer/sceneExplorer.scss ***!
11254
- \**********************************************************************************************************************************************************************/
11207
+ /*!**************************************************************************************************************************************************************************!*\
11208
+ !*** E:/Babylon/Babylon.js/node_modules/css-loader/dist/cjs.js!E:/Babylon/Babylon.js/node_modules/sass-loader/dist/cjs.js!./components/sceneExplorer/sceneExplorer.scss ***!
11209
+ \**************************************************************************************************************************************************************************/
11255
11210
  /*! no static exports found */
11256
11211
  /***/ (function(module, exports, __webpack_require__) {
11257
11212
 
@@ -11267,9 +11222,9 @@ module.exports = exports;
11267
11222
  /***/ }),
11268
11223
 
11269
11224
  /***/ "../../../../node_modules/css-loader/dist/runtime/api.js":
11270
- /*!***********************************************************************!*\
11271
- !*** C:/Repos/Babylon.js/node_modules/css-loader/dist/runtime/api.js ***!
11272
- \***********************************************************************/
11225
+ /*!*************************************************************************!*\
11226
+ !*** E:/Babylon/Babylon.js/node_modules/css-loader/dist/runtime/api.js ***!
11227
+ \*************************************************************************/
11273
11228
  /*! no static exports found */
11274
11229
  /***/ (function(module, exports, __webpack_require__) {
11275
11230
 
@@ -11372,9 +11327,9 @@ function toComment(sourceMap) {
11372
11327
  /***/ }),
11373
11328
 
11374
11329
  /***/ "../../../../node_modules/gif.js.optimized/dist/gif.js":
11375
- /*!*********************************************************************!*\
11376
- !*** C:/Repos/Babylon.js/node_modules/gif.js.optimized/dist/gif.js ***!
11377
- \*********************************************************************/
11330
+ /*!***********************************************************************!*\
11331
+ !*** E:/Babylon/Babylon.js/node_modules/gif.js.optimized/dist/gif.js ***!
11332
+ \***********************************************************************/
11378
11333
  /*! no static exports found */
11379
11334
  /***/ (function(module, exports, __webpack_require__) {
11380
11335
 
@@ -11384,9 +11339,9 @@ function toComment(sourceMap) {
11384
11339
  /***/ }),
11385
11340
 
11386
11341
  /***/ "../../../../node_modules/object-assign/index.js":
11387
- /*!***************************************************************!*\
11388
- !*** C:/Repos/Babylon.js/node_modules/object-assign/index.js ***!
11389
- \***************************************************************/
11342
+ /*!*****************************************************************!*\
11343
+ !*** E:/Babylon/Babylon.js/node_modules/object-assign/index.js ***!
11344
+ \*****************************************************************/
11390
11345
  /*! no static exports found */
11391
11346
  /***/ (function(module, exports, __webpack_require__) {
11392
11347
 
@@ -11486,9 +11441,9 @@ module.exports = shouldUseNative() ? Object.assign : function (target, source) {
11486
11441
  /***/ }),
11487
11442
 
11488
11443
  /***/ "../../../../node_modules/process/browser.js":
11489
- /*!***********************************************************!*\
11490
- !*** C:/Repos/Babylon.js/node_modules/process/browser.js ***!
11491
- \***********************************************************/
11444
+ /*!*************************************************************!*\
11445
+ !*** E:/Babylon/Babylon.js/node_modules/process/browser.js ***!
11446
+ \*************************************************************/
11492
11447
  /*! no static exports found */
11493
11448
  /***/ (function(module, exports) {
11494
11449
 
@@ -11681,9 +11636,9 @@ process.umask = function() { return 0; };
11681
11636
  /***/ }),
11682
11637
 
11683
11638
  /***/ "../../../../node_modules/prop-types/checkPropTypes.js":
11684
- /*!*********************************************************************!*\
11685
- !*** C:/Repos/Babylon.js/node_modules/prop-types/checkPropTypes.js ***!
11686
- \*********************************************************************/
11639
+ /*!***********************************************************************!*\
11640
+ !*** E:/Babylon/Babylon.js/node_modules/prop-types/checkPropTypes.js ***!
11641
+ \***********************************************************************/
11687
11642
  /*! no static exports found */
11688
11643
  /***/ (function(module, exports, __webpack_require__) {
11689
11644
 
@@ -11795,9 +11750,9 @@ module.exports = checkPropTypes;
11795
11750
  /***/ }),
11796
11751
 
11797
11752
  /***/ "../../../../node_modules/prop-types/factoryWithTypeCheckers.js":
11798
- /*!******************************************************************************!*\
11799
- !*** C:/Repos/Babylon.js/node_modules/prop-types/factoryWithTypeCheckers.js ***!
11800
- \******************************************************************************/
11753
+ /*!********************************************************************************!*\
11754
+ !*** E:/Babylon/Babylon.js/node_modules/prop-types/factoryWithTypeCheckers.js ***!
11755
+ \********************************************************************************/
11801
11756
  /*! no static exports found */
11802
11757
  /***/ (function(module, exports, __webpack_require__) {
11803
11758
 
@@ -12398,9 +12353,9 @@ module.exports = function(isValidElement, throwOnDirectAccess) {
12398
12353
  /***/ }),
12399
12354
 
12400
12355
  /***/ "../../../../node_modules/prop-types/index.js":
12401
- /*!************************************************************!*\
12402
- !*** C:/Repos/Babylon.js/node_modules/prop-types/index.js ***!
12403
- \************************************************************/
12356
+ /*!**************************************************************!*\
12357
+ !*** E:/Babylon/Babylon.js/node_modules/prop-types/index.js ***!
12358
+ \**************************************************************/
12404
12359
  /*! no static exports found */
12405
12360
  /***/ (function(module, exports, __webpack_require__) {
12406
12361
 
@@ -12424,9 +12379,9 @@ if (true) {
12424
12379
  /***/ }),
12425
12380
 
12426
12381
  /***/ "../../../../node_modules/prop-types/lib/ReactPropTypesSecret.js":
12427
- /*!*******************************************************************************!*\
12428
- !*** C:/Repos/Babylon.js/node_modules/prop-types/lib/ReactPropTypesSecret.js ***!
12429
- \*******************************************************************************/
12382
+ /*!*********************************************************************************!*\
12383
+ !*** E:/Babylon/Babylon.js/node_modules/prop-types/lib/ReactPropTypesSecret.js ***!
12384
+ \*********************************************************************************/
12430
12385
  /*! no static exports found */
12431
12386
  /***/ (function(module, exports, __webpack_require__) {
12432
12387
 
@@ -12448,9 +12403,9 @@ module.exports = ReactPropTypesSecret;
12448
12403
  /***/ }),
12449
12404
 
12450
12405
  /***/ "../../../../node_modules/react-contextmenu/es6/AbstractMenu.js":
12451
- /*!******************************************************************************!*\
12452
- !*** C:/Repos/Babylon.js/node_modules/react-contextmenu/es6/AbstractMenu.js ***!
12453
- \******************************************************************************/
12406
+ /*!********************************************************************************!*\
12407
+ !*** E:/Babylon/Babylon.js/node_modules/react-contextmenu/es6/AbstractMenu.js ***!
12408
+ \********************************************************************************/
12454
12409
  /*! exports provided: default */
12455
12410
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
12456
12411
 
@@ -12674,9 +12629,9 @@ var _initialiseProps = function _initialiseProps() {
12674
12629
  /***/ }),
12675
12630
 
12676
12631
  /***/ "../../../../node_modules/react-contextmenu/es6/ContextMenu.js":
12677
- /*!*****************************************************************************!*\
12678
- !*** C:/Repos/Babylon.js/node_modules/react-contextmenu/es6/ContextMenu.js ***!
12679
- \*****************************************************************************/
12632
+ /*!*******************************************************************************!*\
12633
+ !*** E:/Babylon/Babylon.js/node_modules/react-contextmenu/es6/ContextMenu.js ***!
12634
+ \*******************************************************************************/
12680
12635
  /*! exports provided: default */
12681
12636
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
12682
12637
 
@@ -12991,9 +12946,9 @@ ContextMenu.defaultProps = {
12991
12946
  /***/ }),
12992
12947
 
12993
12948
  /***/ "../../../../node_modules/react-contextmenu/es6/ContextMenuTrigger.js":
12994
- /*!************************************************************************************!*\
12995
- !*** C:/Repos/Babylon.js/node_modules/react-contextmenu/es6/ContextMenuTrigger.js ***!
12996
- \************************************************************************************/
12949
+ /*!**************************************************************************************!*\
12950
+ !*** E:/Babylon/Babylon.js/node_modules/react-contextmenu/es6/ContextMenuTrigger.js ***!
12951
+ \**************************************************************************************/
12997
12952
  /*! exports provided: default */
12998
12953
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
12999
12954
 
@@ -13191,9 +13146,9 @@ ContextMenuTrigger.defaultProps = {
13191
13146
  /***/ }),
13192
13147
 
13193
13148
  /***/ "../../../../node_modules/react-contextmenu/es6/MenuItem.js":
13194
- /*!**************************************************************************!*\
13195
- !*** C:/Repos/Babylon.js/node_modules/react-contextmenu/es6/MenuItem.js ***!
13196
- \**************************************************************************/
13149
+ /*!****************************************************************************!*\
13150
+ !*** E:/Babylon/Babylon.js/node_modules/react-contextmenu/es6/MenuItem.js ***!
13151
+ \****************************************************************************/
13197
13152
  /*! exports provided: default */
13198
13153
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
13199
13154
 
@@ -13331,9 +13286,9 @@ MenuItem.defaultProps = {
13331
13286
  /***/ }),
13332
13287
 
13333
13288
  /***/ "../../../../node_modules/react-contextmenu/es6/SubMenu.js":
13334
- /*!*************************************************************************!*\
13335
- !*** C:/Repos/Babylon.js/node_modules/react-contextmenu/es6/SubMenu.js ***!
13336
- \*************************************************************************/
13289
+ /*!***************************************************************************!*\
13290
+ !*** E:/Babylon/Babylon.js/node_modules/react-contextmenu/es6/SubMenu.js ***!
13291
+ \***************************************************************************/
13337
13292
  /*! exports provided: default */
13338
13293
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
13339
13294
 
@@ -13671,9 +13626,9 @@ SubMenu.defaultProps = {
13671
13626
  /***/ }),
13672
13627
 
13673
13628
  /***/ "../../../../node_modules/react-contextmenu/es6/actions.js":
13674
- /*!*************************************************************************!*\
13675
- !*** C:/Repos/Babylon.js/node_modules/react-contextmenu/es6/actions.js ***!
13676
- \*************************************************************************/
13629
+ /*!***************************************************************************!*\
13630
+ !*** E:/Babylon/Babylon.js/node_modules/react-contextmenu/es6/actions.js ***!
13631
+ \***************************************************************************/
13677
13632
  /*! exports provided: MENU_SHOW, MENU_HIDE, dispatchGlobalEvent, showMenu, hideMenu */
13678
13633
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
13679
13634
 
@@ -13731,9 +13686,9 @@ function hideMenu() {
13731
13686
  /***/ }),
13732
13687
 
13733
13688
  /***/ "../../../../node_modules/react-contextmenu/es6/connectMenu.js":
13734
- /*!*****************************************************************************!*\
13735
- !*** C:/Repos/Babylon.js/node_modules/react-contextmenu/es6/connectMenu.js ***!
13736
- \*****************************************************************************/
13689
+ /*!*******************************************************************************!*\
13690
+ !*** E:/Babylon/Babylon.js/node_modules/react-contextmenu/es6/connectMenu.js ***!
13691
+ \*******************************************************************************/
13737
13692
  /*! exports provided: default */
13738
13693
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
13739
13694
 
@@ -13829,9 +13784,9 @@ var ignoredTriggerProps = [].concat(_toConsumableArray(Object.keys(_ContextMenuT
13829
13784
  /***/ }),
13830
13785
 
13831
13786
  /***/ "../../../../node_modules/react-contextmenu/es6/globalEventListener.js":
13832
- /*!*************************************************************************************!*\
13833
- !*** C:/Repos/Babylon.js/node_modules/react-contextmenu/es6/globalEventListener.js ***!
13834
- \*************************************************************************************/
13787
+ /*!***************************************************************************************!*\
13788
+ !*** E:/Babylon/Babylon.js/node_modules/react-contextmenu/es6/globalEventListener.js ***!
13789
+ \***************************************************************************************/
13835
13790
  /*! exports provided: default */
13836
13791
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
13837
13792
 
@@ -13891,9 +13846,9 @@ var GlobalEventListener = function GlobalEventListener() {
13891
13846
  /***/ }),
13892
13847
 
13893
13848
  /***/ "../../../../node_modules/react-contextmenu/es6/helpers.js":
13894
- /*!*************************************************************************!*\
13895
- !*** C:/Repos/Babylon.js/node_modules/react-contextmenu/es6/helpers.js ***!
13896
- \*************************************************************************/
13849
+ /*!***************************************************************************!*\
13850
+ !*** E:/Babylon/Babylon.js/node_modules/react-contextmenu/es6/helpers.js ***!
13851
+ \***************************************************************************/
13897
13852
  /*! exports provided: callIfExists, hasOwnProp, uniqueId, cssClasses, store, canUseDOM */
13898
13853
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
13899
13854
 
@@ -13940,9 +13895,9 @@ var canUseDOM = Boolean(typeof window !== 'undefined' && window.document && wind
13940
13895
  /***/ }),
13941
13896
 
13942
13897
  /***/ "../../../../node_modules/react-contextmenu/es6/index.js":
13943
- /*!***********************************************************************!*\
13944
- !*** C:/Repos/Babylon.js/node_modules/react-contextmenu/es6/index.js ***!
13945
- \***********************************************************************/
13898
+ /*!*************************************************************************!*\
13899
+ !*** E:/Babylon/Babylon.js/node_modules/react-contextmenu/es6/index.js ***!
13900
+ \*************************************************************************/
13946
13901
  /*! exports provided: ContextMenu, ContextMenuTrigger, MenuItem, SubMenu, connectMenu, hideMenu, showMenu */
13947
13902
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
13948
13903
 
@@ -13978,9 +13933,9 @@ __webpack_require__.r(__webpack_exports__);
13978
13933
  /***/ }),
13979
13934
 
13980
13935
  /***/ "../../../../node_modules/react-dom/cjs/react-dom.development.js":
13981
- /*!*******************************************************************************!*\
13982
- !*** C:/Repos/Babylon.js/node_modules/react-dom/cjs/react-dom.development.js ***!
13983
- \*******************************************************************************/
13936
+ /*!*********************************************************************************!*\
13937
+ !*** E:/Babylon/Babylon.js/node_modules/react-dom/cjs/react-dom.development.js ***!
13938
+ \*********************************************************************************/
13984
13939
  /*! no static exports found */
13985
13940
  /***/ (function(module, exports, __webpack_require__) {
13986
13941
 
@@ -39002,9 +38957,9 @@ exports.version = ReactVersion;
39002
38957
  /***/ }),
39003
38958
 
39004
38959
  /***/ "../../../../node_modules/react-dom/index.js":
39005
- /*!***********************************************************!*\
39006
- !*** C:/Repos/Babylon.js/node_modules/react-dom/index.js ***!
39007
- \***********************************************************/
38960
+ /*!*************************************************************!*\
38961
+ !*** E:/Babylon/Babylon.js/node_modules/react-dom/index.js ***!
38962
+ \*************************************************************/
39008
38963
  /*! no static exports found */
39009
38964
  /***/ (function(module, exports, __webpack_require__) {
39010
38965
 
@@ -39047,9 +39002,9 @@ if (false) {} else {
39047
39002
  /***/ }),
39048
39003
 
39049
39004
  /***/ "../../../../node_modules/react-is/cjs/react-is.development.js":
39050
- /*!*****************************************************************************!*\
39051
- !*** C:/Repos/Babylon.js/node_modules/react-is/cjs/react-is.development.js ***!
39052
- \*****************************************************************************/
39005
+ /*!*******************************************************************************!*\
39006
+ !*** E:/Babylon/Babylon.js/node_modules/react-is/cjs/react-is.development.js ***!
39007
+ \*******************************************************************************/
39053
39008
  /*! no static exports found */
39054
39009
  /***/ (function(module, exports, __webpack_require__) {
39055
39010
 
@@ -39240,9 +39195,9 @@ exports.typeOf = typeOf;
39240
39195
  /***/ }),
39241
39196
 
39242
39197
  /***/ "../../../../node_modules/react-is/index.js":
39243
- /*!**********************************************************!*\
39244
- !*** C:/Repos/Babylon.js/node_modules/react-is/index.js ***!
39245
- \**********************************************************/
39198
+ /*!************************************************************!*\
39199
+ !*** E:/Babylon/Babylon.js/node_modules/react-is/index.js ***!
39200
+ \************************************************************/
39246
39201
  /*! no static exports found */
39247
39202
  /***/ (function(module, exports, __webpack_require__) {
39248
39203
 
@@ -39257,9 +39212,9 @@ if (false) {} else {
39257
39212
  /***/ }),
39258
39213
 
39259
39214
  /***/ "../../../../node_modules/react/cjs/react.development.js":
39260
- /*!***********************************************************************!*\
39261
- !*** C:/Repos/Babylon.js/node_modules/react/cjs/react.development.js ***!
39262
- \***********************************************************************/
39215
+ /*!*************************************************************************!*\
39216
+ !*** E:/Babylon/Babylon.js/node_modules/react/cjs/react.development.js ***!
39217
+ \*************************************************************************/
39263
39218
  /*! no static exports found */
39264
39219
  /***/ (function(module, exports, __webpack_require__) {
39265
39220
 
@@ -41181,9 +41136,9 @@ exports.version = ReactVersion;
41181
41136
  /***/ }),
41182
41137
 
41183
41138
  /***/ "../../../../node_modules/react/index.js":
41184
- /*!*******************************************************!*\
41185
- !*** C:/Repos/Babylon.js/node_modules/react/index.js ***!
41186
- \*******************************************************/
41139
+ /*!*********************************************************!*\
41140
+ !*** E:/Babylon/Babylon.js/node_modules/react/index.js ***!
41141
+ \*********************************************************/
41187
41142
  /*! no static exports found */
41188
41143
  /***/ (function(module, exports, __webpack_require__) {
41189
41144
 
@@ -41198,9 +41153,9 @@ if (false) {} else {
41198
41153
  /***/ }),
41199
41154
 
41200
41155
  /***/ "../../../../node_modules/scheduler/cjs/scheduler-tracing.development.js":
41201
- /*!***************************************************************************************!*\
41202
- !*** C:/Repos/Babylon.js/node_modules/scheduler/cjs/scheduler-tracing.development.js ***!
41203
- \***************************************************************************************/
41156
+ /*!*****************************************************************************************!*\
41157
+ !*** E:/Babylon/Babylon.js/node_modules/scheduler/cjs/scheduler-tracing.development.js ***!
41158
+ \*****************************************************************************************/
41204
41159
  /*! no static exports found */
41205
41160
  /***/ (function(module, exports, __webpack_require__) {
41206
41161
 
@@ -41559,9 +41514,9 @@ exports.unstable_wrap = unstable_wrap;
41559
41514
  /***/ }),
41560
41515
 
41561
41516
  /***/ "../../../../node_modules/scheduler/cjs/scheduler.development.js":
41562
- /*!*******************************************************************************!*\
41563
- !*** C:/Repos/Babylon.js/node_modules/scheduler/cjs/scheduler.development.js ***!
41564
- \*******************************************************************************/
41517
+ /*!*********************************************************************************!*\
41518
+ !*** E:/Babylon/Babylon.js/node_modules/scheduler/cjs/scheduler.development.js ***!
41519
+ \*********************************************************************************/
41565
41520
  /*! no static exports found */
41566
41521
  /***/ (function(module, exports, __webpack_require__) {
41567
41522
 
@@ -42429,9 +42384,9 @@ exports.unstable_wrapCallback = unstable_wrapCallback;
42429
42384
  /***/ }),
42430
42385
 
42431
42386
  /***/ "../../../../node_modules/scheduler/index.js":
42432
- /*!***********************************************************!*\
42433
- !*** C:/Repos/Babylon.js/node_modules/scheduler/index.js ***!
42434
- \***********************************************************/
42387
+ /*!*************************************************************!*\
42388
+ !*** E:/Babylon/Babylon.js/node_modules/scheduler/index.js ***!
42389
+ \*************************************************************/
42435
42390
  /*! no static exports found */
42436
42391
  /***/ (function(module, exports, __webpack_require__) {
42437
42392
 
@@ -42446,9 +42401,9 @@ if (false) {} else {
42446
42401
  /***/ }),
42447
42402
 
42448
42403
  /***/ "../../../../node_modules/scheduler/tracing.js":
42449
- /*!*************************************************************!*\
42450
- !*** C:/Repos/Babylon.js/node_modules/scheduler/tracing.js ***!
42451
- \*************************************************************/
42404
+ /*!***************************************************************!*\
42405
+ !*** E:/Babylon/Babylon.js/node_modules/scheduler/tracing.js ***!
42406
+ \***************************************************************/
42452
42407
  /*! no static exports found */
42453
42408
  /***/ (function(module, exports, __webpack_require__) {
42454
42409
 
@@ -42463,9 +42418,9 @@ if (false) {} else {
42463
42418
  /***/ }),
42464
42419
 
42465
42420
  /***/ "../../../../node_modules/setimmediate/setImmediate.js":
42466
- /*!*********************************************************************!*\
42467
- !*** C:/Repos/Babylon.js/node_modules/setimmediate/setImmediate.js ***!
42468
- \*********************************************************************/
42421
+ /*!***********************************************************************!*\
42422
+ !*** E:/Babylon/Babylon.js/node_modules/setimmediate/setImmediate.js ***!
42423
+ \***********************************************************************/
42469
42424
  /*! no static exports found */
42470
42425
  /***/ (function(module, exports, __webpack_require__) {
42471
42426
 
@@ -42661,9 +42616,9 @@ if (false) {} else {
42661
42616
  /***/ }),
42662
42617
 
42663
42618
  /***/ "../../../../node_modules/split.js/dist/split.es.js":
42664
- /*!******************************************************************!*\
42665
- !*** C:/Repos/Babylon.js/node_modules/split.js/dist/split.es.js ***!
42666
- \******************************************************************/
42619
+ /*!********************************************************************!*\
42620
+ !*** E:/Babylon/Babylon.js/node_modules/split.js/dist/split.es.js ***!
42621
+ \********************************************************************/
42667
42622
  /*! exports provided: default */
42668
42623
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
42669
42624
 
@@ -43433,9 +43388,9 @@ var Split = function (idsOption, options) {
43433
43388
  /***/ }),
43434
43389
 
43435
43390
  /***/ "../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js":
43436
- /*!**********************************************************************************************!*\
43437
- !*** C:/Repos/Babylon.js/node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js ***!
43438
- \**********************************************************************************************/
43391
+ /*!************************************************************************************************!*\
43392
+ !*** E:/Babylon/Babylon.js/node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js ***!
43393
+ \************************************************************************************************/
43439
43394
  /*! no static exports found */
43440
43395
  /***/ (function(module, exports, __webpack_require__) {
43441
43396
 
@@ -43615,7 +43570,7 @@ function applyToTag(style, options, obj) {
43615
43570
  style.removeAttribute('media');
43616
43571
  }
43617
43572
 
43618
- if (sourceMap && btoa) {
43573
+ if (sourceMap && typeof btoa !== 'undefined') {
43619
43574
  css += "\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap)))), " */");
43620
43575
  } // For old IE
43621
43576
 
@@ -43713,9 +43668,9 @@ module.exports = function (list, options) {
43713
43668
  /***/ }),
43714
43669
 
43715
43670
  /***/ "../../../../node_modules/timers-browserify/main.js":
43716
- /*!******************************************************************!*\
43717
- !*** C:/Repos/Babylon.js/node_modules/timers-browserify/main.js ***!
43718
- \******************************************************************/
43671
+ /*!********************************************************************!*\
43672
+ !*** E:/Babylon/Babylon.js/node_modules/timers-browserify/main.js ***!
43673
+ \********************************************************************/
43719
43674
  /*! no static exports found */
43720
43675
  /***/ (function(module, exports, __webpack_require__) {
43721
43676
 
@@ -43788,10 +43743,10 @@ exports.clearImmediate = (typeof self !== "undefined" && self.clearImmediate) ||
43788
43743
  /***/ }),
43789
43744
 
43790
43745
  /***/ "../../../../node_modules/tslib/tslib.es6.js":
43791
- /*!***********************************************************!*\
43792
- !*** C:/Repos/Babylon.js/node_modules/tslib/tslib.es6.js ***!
43793
- \***********************************************************/
43794
- /*! exports provided: __extends, __assign, __rest, __decorate, __param, __metadata, __awaiter, __generator, __createBinding, __exportStar, __values, __read, __spread, __spreadArrays, __await, __asyncGenerator, __asyncDelegator, __asyncValues, __makeTemplateObject, __importStar, __importDefault, __classPrivateFieldGet, __classPrivateFieldSet */
43746
+ /*!*************************************************************!*\
43747
+ !*** E:/Babylon/Babylon.js/node_modules/tslib/tslib.es6.js ***!
43748
+ \*************************************************************/
43749
+ /*! exports provided: __extends, __assign, __rest, __decorate, __param, __metadata, __awaiter, __generator, __createBinding, __exportStar, __values, __read, __spread, __spreadArrays, __spreadArray, __await, __asyncGenerator, __asyncDelegator, __asyncValues, __makeTemplateObject, __importStar, __importDefault, __classPrivateFieldGet, __classPrivateFieldSet */
43795
43750
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
43796
43751
 
43797
43752
  "use strict";
@@ -43810,6 +43765,7 @@ __webpack_require__.r(__webpack_exports__);
43810
43765
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__read", function() { return __read; });
43811
43766
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__spread", function() { return __spread; });
43812
43767
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__spreadArrays", function() { return __spreadArrays; });
43768
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__spreadArray", function() { return __spreadArray; });
43813
43769
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__await", function() { return __await; });
43814
43770
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__asyncGenerator", function() { return __asyncGenerator; });
43815
43771
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__asyncDelegator", function() { return __asyncDelegator; });
@@ -43843,6 +43799,8 @@ var extendStatics = function(d, b) {
43843
43799
  };
43844
43800
 
43845
43801
  function __extends(d, b) {
43802
+ if (typeof b !== "function" && b !== null)
43803
+ throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
43846
43804
  extendStatics(d, b);
43847
43805
  function __() { this.constructor = d; }
43848
43806
  d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
@@ -43965,19 +43923,31 @@ function __read(o, n) {
43965
43923
  return ar;
43966
43924
  }
43967
43925
 
43926
+ /** @deprecated */
43968
43927
  function __spread() {
43969
43928
  for (var ar = [], i = 0; i < arguments.length; i++)
43970
43929
  ar = ar.concat(__read(arguments[i]));
43971
43930
  return ar;
43972
43931
  }
43973
43932
 
43933
+ /** @deprecated */
43974
43934
  function __spreadArrays() {
43975
43935
  for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;
43976
43936
  for (var r = Array(s), k = 0, i = 0; i < il; i++)
43977
43937
  for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)
43978
43938
  r[k] = a[j];
43979
43939
  return r;
43980
- };
43940
+ }
43941
+
43942
+ function __spreadArray(to, from, pack) {
43943
+ if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
43944
+ if (ar || !(i in from)) {
43945
+ if (!ar) ar = Array.prototype.slice.call(from, 0, i);
43946
+ ar[i] = from[i];
43947
+ }
43948
+ }
43949
+ return to.concat(ar || Array.prototype.slice.call(from));
43950
+ }
43981
43951
 
43982
43952
  function __await(v) {
43983
43953
  return this instanceof __await ? (this.v = v, this) : new __await(v);
@@ -44032,19 +44002,17 @@ function __importDefault(mod) {
44032
44002
  return (mod && mod.__esModule) ? mod : { default: mod };
44033
44003
  }
44034
44004
 
44035
- function __classPrivateFieldGet(receiver, privateMap) {
44036
- if (!privateMap.has(receiver)) {
44037
- throw new TypeError("attempted to get private field on non-instance");
44038
- }
44039
- return privateMap.get(receiver);
44005
+ function __classPrivateFieldGet(receiver, state, kind, f) {
44006
+ if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter");
44007
+ if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
44008
+ return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
44040
44009
  }
44041
44010
 
44042
- function __classPrivateFieldSet(receiver, privateMap, value) {
44043
- if (!privateMap.has(receiver)) {
44044
- throw new TypeError("attempted to set private field on non-instance");
44045
- }
44046
- privateMap.set(receiver, value);
44047
- return value;
44011
+ function __classPrivateFieldSet(receiver, state, value, kind, f) {
44012
+ if (kind === "m") throw new TypeError("Private method is not writable");
44013
+ if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter");
44014
+ if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it");
44015
+ return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
44048
44016
  }
44049
44017
 
44050
44018
 
@@ -44082,9 +44050,9 @@ module.exports = g;
44082
44050
  /***/ }),
44083
44051
 
44084
44052
  /***/ "../../node_modules/re-resizable/lib/index.es5.js":
44085
- /*!**************************************************************************************!*\
44086
- !*** C:/Repos/Babylon.js/.temp/sourceES6/node_modules/re-resizable/lib/index.es5.js ***!
44087
- \**************************************************************************************/
44053
+ /*!****************************************************************************************!*\
44054
+ !*** E:/Babylon/Babylon.js/.temp/sourceES6/node_modules/re-resizable/lib/index.es5.js ***!
44055
+ \****************************************************************************************/
44088
44056
  /*! no static exports found */
44089
44057
  /***/ (function(module, exports, __webpack_require__) {
44090
44058