@babylonjs/inspector 4.2.0-rc.8 → 4.2.2

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
+ !*** C:/Users/raweber/Documents/GitHub/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.4 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) {
@@ -314,7 +314,7 @@ var STYLE_TO_PREFIX = {
314
314
  'kit': 'fak'
315
315
  };
316
316
  var LAYERS_TEXT_CLASSNAME = 'fa-layers-text';
317
- var FONT_FAMILY_PATTERN = /Font Awesome ([5 ]*)(Solid|Regular|Light|Duotone|Brands|Free|Pro|Kit).*/; // TODO: do we need to handle font-weight for kit SVG pseudo-elements?
317
+ var FONT_FAMILY_PATTERN = /Font Awesome ([5 ]*)(Solid|Regular|Light|Duotone|Brands|Free|Pro|Kit).*/i; // TODO: do we need to handle font-weight for kit SVG pseudo-elements?
318
318
 
319
319
  var FONT_WEIGHT_TO_PREFIX = {
320
320
  '900': 'fas',
@@ -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.4\"";
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
+ !*** C:/Users/raweber/Documents/GitHub/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
+ !*** C:/Users/raweber/Documents/GitHub/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
+ !*** C:/Users/raweber/Documents/GitHub/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,15 +10936,24 @@ 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
+ // this has everything that it needs to be rendered which means it was probably imported
10941
+ // directly from an icon svg package
10942
+ if (icon && _typeof(icon) === 'object' && icon.prefix && icon.iconName && icon.icon) {
10943
+ return icon;
10944
+ }
10945
+
10946
+ if (_fortawesome_fontawesome_svg_core__WEBPACK_IMPORTED_MODULE_0__["parse"].icon) {
10947
+ return _fortawesome_fontawesome_svg_core__WEBPACK_IMPORTED_MODULE_0__["parse"].icon(icon);
10948
+ } // if the icon is null, there's nothing to do
10949
+
10950
+
10998
10951
  if (icon === null) {
10999
10952
  return null;
11000
10953
  } // if the icon is an object and has a prefix and an icon name, return it
11001
10954
 
11002
10955
 
11003
- if (_typeof(icon) === 'object' && icon.prefix && icon.iconName) {
10956
+ if (icon && _typeof(icon) === 'object' && icon.prefix && icon.iconName) {
11004
10957
  return icon;
11005
10958
  } // if it's an array with length of two
11006
10959
 
@@ -11041,14 +10994,16 @@ function FontAwesomeIcon(_ref) {
11041
10994
  maskArgs = props.mask,
11042
10995
  symbol = props.symbol,
11043
10996
  className = props.className,
11044
- title = props.title;
10997
+ title = props.title,
10998
+ titleId = props.titleId;
11045
10999
  var iconLookup = normalizeIconArgs(iconArgs);
11046
11000
  var classes = objectWithKey('classes', [].concat(_toConsumableArray(classList(props)), _toConsumableArray(className.split(' '))));
11047
11001
  var transform = objectWithKey('transform', typeof props.transform === 'string' ? _fortawesome_fontawesome_svg_core__WEBPACK_IMPORTED_MODULE_0__["parse"].transform(props.transform) : props.transform);
11048
11002
  var mask = objectWithKey('mask', normalizeIconArgs(maskArgs));
11049
11003
  var renderedIcon = Object(_fortawesome_fontawesome_svg_core__WEBPACK_IMPORTED_MODULE_0__["icon"])(iconLookup, _objectSpread2({}, classes, {}, transform, {}, mask, {
11050
11004
  symbol: symbol,
11051
- title: title
11005
+ title: title,
11006
+ titleId: titleId
11052
11007
  }));
11053
11008
 
11054
11009
  if (!renderedIcon) {
@@ -11115,14 +11070,14 @@ var convertCurry = convert.bind(null, react__WEBPACK_IMPORTED_MODULE_2___default
11115
11070
  /***/ }),
11116
11071
 
11117
11072
  /***/ "../../../../node_modules/classnames/index.js":
11118
- /*!************************************************************!*\
11119
- !*** C:/Repos/Babylon.js/node_modules/classnames/index.js ***!
11120
- \************************************************************/
11073
+ /*!*************************************************************************************!*\
11074
+ !*** C:/Users/raweber/Documents/GitHub/Babylon.js/node_modules/classnames/index.js ***!
11075
+ \*************************************************************************************/
11121
11076
  /*! no static exports found */
11122
11077
  /***/ (function(module, exports, __webpack_require__) {
11123
11078
 
11124
11079
  var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*!
11125
- Copyright (c) 2017 Jed Watson.
11080
+ Copyright (c) 2018 Jed Watson.
11126
11081
  Licensed under the MIT License (MIT), see
11127
11082
  http://jedwatson.github.io/classnames
11128
11083
  */
@@ -11133,7 +11088,7 @@ var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*!
11133
11088
 
11134
11089
  var hasOwn = {}.hasOwnProperty;
11135
11090
 
11136
- function classNames () {
11091
+ function classNames() {
11137
11092
  var classes = [];
11138
11093
 
11139
11094
  for (var i = 0; i < arguments.length; i++) {
@@ -11144,16 +11099,22 @@ var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*!
11144
11099
 
11145
11100
  if (argType === 'string' || argType === 'number') {
11146
11101
  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);
11102
+ } else if (Array.isArray(arg)) {
11103
+ if (arg.length) {
11104
+ var inner = classNames.apply(null, arg);
11105
+ if (inner) {
11106
+ classes.push(inner);
11107
+ }
11151
11108
  }
11152
11109
  } else if (argType === 'object') {
11153
- for (var key in arg) {
11154
- if (hasOwn.call(arg, key) && arg[key]) {
11155
- classes.push(key);
11110
+ if (arg.toString === Object.prototype.toString) {
11111
+ for (var key in arg) {
11112
+ if (hasOwn.call(arg, key) && arg[key]) {
11113
+ classes.push(key);
11114
+ }
11156
11115
  }
11116
+ } else {
11117
+ classes.push(arg.toString());
11157
11118
  }
11158
11119
  }
11159
11120
  }
@@ -11177,9 +11138,9 @@ var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*!
11177
11138
  /***/ }),
11178
11139
 
11179
11140
  /***/ "../../../../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
- \****************************************************************************************************************************************************************/
11141
+ /*!******************************************************************************************************************************************************************************************************************!*\
11142
+ !*** C:/Users/raweber/Documents/GitHub/Babylon.js/node_modules/css-loader/dist/cjs.js!C:/Users/raweber/Documents/GitHub/Babylon.js/node_modules/sass-loader/dist/cjs.js!./components/actionTabs/actionTabs.scss ***!
11143
+ \******************************************************************************************************************************************************************************************************************/
11183
11144
  /*! no static exports found */
11184
11145
  /***/ (function(module, exports, __webpack_require__) {
11185
11146
 
@@ -11195,9 +11156,9 @@ module.exports = exports;
11195
11156
  /***/ }),
11196
11157
 
11197
11158
  /***/ "../../../../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
- \*********************************************************************************************************************************************************************************************************/
11159
+ /*!***********************************************************************************************************************************************************************************************************************************************************!*\
11160
+ !*** C:/Users/raweber/Documents/GitHub/Babylon.js/node_modules/css-loader/dist/cjs.js!C:/Users/raweber/Documents/GitHub/Babylon.js/node_modules/sass-loader/dist/cjs.js!./components/actionTabs/tabs/propertyGrids/materials/textures/textureEditor.scss ***!
11161
+ \***********************************************************************************************************************************************************************************************************************************************************/
11201
11162
  /*! no static exports found */
11202
11163
  /***/ (function(module, exports, __webpack_require__) {
11203
11164
 
@@ -11213,9 +11174,9 @@ module.exports = exports;
11213
11174
  /***/ }),
11214
11175
 
11215
11176
  /***/ "../../../../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
- \***************************************************************************************************************************************************************************/
11177
+ /*!*****************************************************************************************************************************************************************************************************************************!*\
11178
+ !*** C:/Users/raweber/Documents/GitHub/Babylon.js/node_modules/css-loader/dist/cjs.js!C:/Users/raweber/Documents/GitHub/Babylon.js/node_modules/sass-loader/dist/cjs.js!./components/controls/colorPicker/colorPicker.scss ***!
11179
+ \*****************************************************************************************************************************************************************************************************************************/
11219
11180
  /*! no static exports found */
11220
11181
  /***/ (function(module, exports, __webpack_require__) {
11221
11182
 
@@ -11231,9 +11192,9 @@ module.exports = exports;
11231
11192
  /***/ }),
11232
11193
 
11233
11194
  /***/ "../../../../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
- \**************************************************************************************************************************************************************/
11195
+ /*!****************************************************************************************************************************************************************************************************************!*\
11196
+ !*** C:/Users/raweber/Documents/GitHub/Babylon.js/node_modules/css-loader/dist/cjs.js!C:/Users/raweber/Documents/GitHub/Babylon.js/node_modules/sass-loader/dist/cjs.js!./components/embedHost/embedHost.scss ***!
11197
+ \****************************************************************************************************************************************************************************************************************/
11237
11198
  /*! no static exports found */
11238
11199
  /***/ (function(module, exports, __webpack_require__) {
11239
11200
 
@@ -11249,9 +11210,9 @@ module.exports = exports;
11249
11210
  /***/ }),
11250
11211
 
11251
11212
  /***/ "../../../../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
- \**********************************************************************************************************************************************************************/
11213
+ /*!************************************************************************************************************************************************************************************************************************!*\
11214
+ !*** C:/Users/raweber/Documents/GitHub/Babylon.js/node_modules/css-loader/dist/cjs.js!C:/Users/raweber/Documents/GitHub/Babylon.js/node_modules/sass-loader/dist/cjs.js!./components/sceneExplorer/sceneExplorer.scss ***!
11215
+ \************************************************************************************************************************************************************************************************************************/
11255
11216
  /*! no static exports found */
11256
11217
  /***/ (function(module, exports, __webpack_require__) {
11257
11218
 
@@ -11267,9 +11228,9 @@ module.exports = exports;
11267
11228
  /***/ }),
11268
11229
 
11269
11230
  /***/ "../../../../node_modules/css-loader/dist/runtime/api.js":
11270
- /*!***********************************************************************!*\
11271
- !*** C:/Repos/Babylon.js/node_modules/css-loader/dist/runtime/api.js ***!
11272
- \***********************************************************************/
11231
+ /*!************************************************************************************************!*\
11232
+ !*** C:/Users/raweber/Documents/GitHub/Babylon.js/node_modules/css-loader/dist/runtime/api.js ***!
11233
+ \************************************************************************************************/
11273
11234
  /*! no static exports found */
11274
11235
  /***/ (function(module, exports, __webpack_require__) {
11275
11236
 
@@ -11372,9 +11333,9 @@ function toComment(sourceMap) {
11372
11333
  /***/ }),
11373
11334
 
11374
11335
  /***/ "../../../../node_modules/gif.js.optimized/dist/gif.js":
11375
- /*!*********************************************************************!*\
11376
- !*** C:/Repos/Babylon.js/node_modules/gif.js.optimized/dist/gif.js ***!
11377
- \*********************************************************************/
11336
+ /*!**********************************************************************************************!*\
11337
+ !*** C:/Users/raweber/Documents/GitHub/Babylon.js/node_modules/gif.js.optimized/dist/gif.js ***!
11338
+ \**********************************************************************************************/
11378
11339
  /*! no static exports found */
11379
11340
  /***/ (function(module, exports, __webpack_require__) {
11380
11341
 
@@ -11384,9 +11345,9 @@ function toComment(sourceMap) {
11384
11345
  /***/ }),
11385
11346
 
11386
11347
  /***/ "../../../../node_modules/object-assign/index.js":
11387
- /*!***************************************************************!*\
11388
- !*** C:/Repos/Babylon.js/node_modules/object-assign/index.js ***!
11389
- \***************************************************************/
11348
+ /*!****************************************************************************************!*\
11349
+ !*** C:/Users/raweber/Documents/GitHub/Babylon.js/node_modules/object-assign/index.js ***!
11350
+ \****************************************************************************************/
11390
11351
  /*! no static exports found */
11391
11352
  /***/ (function(module, exports, __webpack_require__) {
11392
11353
 
@@ -11486,9 +11447,9 @@ module.exports = shouldUseNative() ? Object.assign : function (target, source) {
11486
11447
  /***/ }),
11487
11448
 
11488
11449
  /***/ "../../../../node_modules/process/browser.js":
11489
- /*!***********************************************************!*\
11490
- !*** C:/Repos/Babylon.js/node_modules/process/browser.js ***!
11491
- \***********************************************************/
11450
+ /*!************************************************************************************!*\
11451
+ !*** C:/Users/raweber/Documents/GitHub/Babylon.js/node_modules/process/browser.js ***!
11452
+ \************************************************************************************/
11492
11453
  /*! no static exports found */
11493
11454
  /***/ (function(module, exports) {
11494
11455
 
@@ -11681,9 +11642,9 @@ process.umask = function() { return 0; };
11681
11642
  /***/ }),
11682
11643
 
11683
11644
  /***/ "../../../../node_modules/prop-types/checkPropTypes.js":
11684
- /*!*********************************************************************!*\
11685
- !*** C:/Repos/Babylon.js/node_modules/prop-types/checkPropTypes.js ***!
11686
- \*********************************************************************/
11645
+ /*!**********************************************************************************************!*\
11646
+ !*** C:/Users/raweber/Documents/GitHub/Babylon.js/node_modules/prop-types/checkPropTypes.js ***!
11647
+ \**********************************************************************************************/
11687
11648
  /*! no static exports found */
11688
11649
  /***/ (function(module, exports, __webpack_require__) {
11689
11650
 
@@ -11795,9 +11756,9 @@ module.exports = checkPropTypes;
11795
11756
  /***/ }),
11796
11757
 
11797
11758
  /***/ "../../../../node_modules/prop-types/factoryWithTypeCheckers.js":
11798
- /*!******************************************************************************!*\
11799
- !*** C:/Repos/Babylon.js/node_modules/prop-types/factoryWithTypeCheckers.js ***!
11800
- \******************************************************************************/
11759
+ /*!*******************************************************************************************************!*\
11760
+ !*** C:/Users/raweber/Documents/GitHub/Babylon.js/node_modules/prop-types/factoryWithTypeCheckers.js ***!
11761
+ \*******************************************************************************************************/
11801
11762
  /*! no static exports found */
11802
11763
  /***/ (function(module, exports, __webpack_require__) {
11803
11764
 
@@ -12398,9 +12359,9 @@ module.exports = function(isValidElement, throwOnDirectAccess) {
12398
12359
  /***/ }),
12399
12360
 
12400
12361
  /***/ "../../../../node_modules/prop-types/index.js":
12401
- /*!************************************************************!*\
12402
- !*** C:/Repos/Babylon.js/node_modules/prop-types/index.js ***!
12403
- \************************************************************/
12362
+ /*!*************************************************************************************!*\
12363
+ !*** C:/Users/raweber/Documents/GitHub/Babylon.js/node_modules/prop-types/index.js ***!
12364
+ \*************************************************************************************/
12404
12365
  /*! no static exports found */
12405
12366
  /***/ (function(module, exports, __webpack_require__) {
12406
12367
 
@@ -12424,9 +12385,9 @@ if (true) {
12424
12385
  /***/ }),
12425
12386
 
12426
12387
  /***/ "../../../../node_modules/prop-types/lib/ReactPropTypesSecret.js":
12427
- /*!*******************************************************************************!*\
12428
- !*** C:/Repos/Babylon.js/node_modules/prop-types/lib/ReactPropTypesSecret.js ***!
12429
- \*******************************************************************************/
12388
+ /*!********************************************************************************************************!*\
12389
+ !*** C:/Users/raweber/Documents/GitHub/Babylon.js/node_modules/prop-types/lib/ReactPropTypesSecret.js ***!
12390
+ \********************************************************************************************************/
12430
12391
  /*! no static exports found */
12431
12392
  /***/ (function(module, exports, __webpack_require__) {
12432
12393
 
@@ -12448,9 +12409,9 @@ module.exports = ReactPropTypesSecret;
12448
12409
  /***/ }),
12449
12410
 
12450
12411
  /***/ "../../../../node_modules/react-contextmenu/es6/AbstractMenu.js":
12451
- /*!******************************************************************************!*\
12452
- !*** C:/Repos/Babylon.js/node_modules/react-contextmenu/es6/AbstractMenu.js ***!
12453
- \******************************************************************************/
12412
+ /*!*******************************************************************************************************!*\
12413
+ !*** C:/Users/raweber/Documents/GitHub/Babylon.js/node_modules/react-contextmenu/es6/AbstractMenu.js ***!
12414
+ \*******************************************************************************************************/
12454
12415
  /*! exports provided: default */
12455
12416
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
12456
12417
 
@@ -12674,9 +12635,9 @@ var _initialiseProps = function _initialiseProps() {
12674
12635
  /***/ }),
12675
12636
 
12676
12637
  /***/ "../../../../node_modules/react-contextmenu/es6/ContextMenu.js":
12677
- /*!*****************************************************************************!*\
12678
- !*** C:/Repos/Babylon.js/node_modules/react-contextmenu/es6/ContextMenu.js ***!
12679
- \*****************************************************************************/
12638
+ /*!******************************************************************************************************!*\
12639
+ !*** C:/Users/raweber/Documents/GitHub/Babylon.js/node_modules/react-contextmenu/es6/ContextMenu.js ***!
12640
+ \******************************************************************************************************/
12680
12641
  /*! exports provided: default */
12681
12642
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
12682
12643
 
@@ -12991,9 +12952,9 @@ ContextMenu.defaultProps = {
12991
12952
  /***/ }),
12992
12953
 
12993
12954
  /***/ "../../../../node_modules/react-contextmenu/es6/ContextMenuTrigger.js":
12994
- /*!************************************************************************************!*\
12995
- !*** C:/Repos/Babylon.js/node_modules/react-contextmenu/es6/ContextMenuTrigger.js ***!
12996
- \************************************************************************************/
12955
+ /*!*************************************************************************************************************!*\
12956
+ !*** C:/Users/raweber/Documents/GitHub/Babylon.js/node_modules/react-contextmenu/es6/ContextMenuTrigger.js ***!
12957
+ \*************************************************************************************************************/
12997
12958
  /*! exports provided: default */
12998
12959
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
12999
12960
 
@@ -13191,9 +13152,9 @@ ContextMenuTrigger.defaultProps = {
13191
13152
  /***/ }),
13192
13153
 
13193
13154
  /***/ "../../../../node_modules/react-contextmenu/es6/MenuItem.js":
13194
- /*!**************************************************************************!*\
13195
- !*** C:/Repos/Babylon.js/node_modules/react-contextmenu/es6/MenuItem.js ***!
13196
- \**************************************************************************/
13155
+ /*!***************************************************************************************************!*\
13156
+ !*** C:/Users/raweber/Documents/GitHub/Babylon.js/node_modules/react-contextmenu/es6/MenuItem.js ***!
13157
+ \***************************************************************************************************/
13197
13158
  /*! exports provided: default */
13198
13159
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
13199
13160
 
@@ -13331,9 +13292,9 @@ MenuItem.defaultProps = {
13331
13292
  /***/ }),
13332
13293
 
13333
13294
  /***/ "../../../../node_modules/react-contextmenu/es6/SubMenu.js":
13334
- /*!*************************************************************************!*\
13335
- !*** C:/Repos/Babylon.js/node_modules/react-contextmenu/es6/SubMenu.js ***!
13336
- \*************************************************************************/
13295
+ /*!**************************************************************************************************!*\
13296
+ !*** C:/Users/raweber/Documents/GitHub/Babylon.js/node_modules/react-contextmenu/es6/SubMenu.js ***!
13297
+ \**************************************************************************************************/
13337
13298
  /*! exports provided: default */
13338
13299
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
13339
13300
 
@@ -13671,9 +13632,9 @@ SubMenu.defaultProps = {
13671
13632
  /***/ }),
13672
13633
 
13673
13634
  /***/ "../../../../node_modules/react-contextmenu/es6/actions.js":
13674
- /*!*************************************************************************!*\
13675
- !*** C:/Repos/Babylon.js/node_modules/react-contextmenu/es6/actions.js ***!
13676
- \*************************************************************************/
13635
+ /*!**************************************************************************************************!*\
13636
+ !*** C:/Users/raweber/Documents/GitHub/Babylon.js/node_modules/react-contextmenu/es6/actions.js ***!
13637
+ \**************************************************************************************************/
13677
13638
  /*! exports provided: MENU_SHOW, MENU_HIDE, dispatchGlobalEvent, showMenu, hideMenu */
13678
13639
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
13679
13640
 
@@ -13731,9 +13692,9 @@ function hideMenu() {
13731
13692
  /***/ }),
13732
13693
 
13733
13694
  /***/ "../../../../node_modules/react-contextmenu/es6/connectMenu.js":
13734
- /*!*****************************************************************************!*\
13735
- !*** C:/Repos/Babylon.js/node_modules/react-contextmenu/es6/connectMenu.js ***!
13736
- \*****************************************************************************/
13695
+ /*!******************************************************************************************************!*\
13696
+ !*** C:/Users/raweber/Documents/GitHub/Babylon.js/node_modules/react-contextmenu/es6/connectMenu.js ***!
13697
+ \******************************************************************************************************/
13737
13698
  /*! exports provided: default */
13738
13699
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
13739
13700
 
@@ -13829,9 +13790,9 @@ var ignoredTriggerProps = [].concat(_toConsumableArray(Object.keys(_ContextMenuT
13829
13790
  /***/ }),
13830
13791
 
13831
13792
  /***/ "../../../../node_modules/react-contextmenu/es6/globalEventListener.js":
13832
- /*!*************************************************************************************!*\
13833
- !*** C:/Repos/Babylon.js/node_modules/react-contextmenu/es6/globalEventListener.js ***!
13834
- \*************************************************************************************/
13793
+ /*!**************************************************************************************************************!*\
13794
+ !*** C:/Users/raweber/Documents/GitHub/Babylon.js/node_modules/react-contextmenu/es6/globalEventListener.js ***!
13795
+ \**************************************************************************************************************/
13835
13796
  /*! exports provided: default */
13836
13797
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
13837
13798
 
@@ -13891,9 +13852,9 @@ var GlobalEventListener = function GlobalEventListener() {
13891
13852
  /***/ }),
13892
13853
 
13893
13854
  /***/ "../../../../node_modules/react-contextmenu/es6/helpers.js":
13894
- /*!*************************************************************************!*\
13895
- !*** C:/Repos/Babylon.js/node_modules/react-contextmenu/es6/helpers.js ***!
13896
- \*************************************************************************/
13855
+ /*!**************************************************************************************************!*\
13856
+ !*** C:/Users/raweber/Documents/GitHub/Babylon.js/node_modules/react-contextmenu/es6/helpers.js ***!
13857
+ \**************************************************************************************************/
13897
13858
  /*! exports provided: callIfExists, hasOwnProp, uniqueId, cssClasses, store, canUseDOM */
13898
13859
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
13899
13860
 
@@ -13940,9 +13901,9 @@ var canUseDOM = Boolean(typeof window !== 'undefined' && window.document && wind
13940
13901
  /***/ }),
13941
13902
 
13942
13903
  /***/ "../../../../node_modules/react-contextmenu/es6/index.js":
13943
- /*!***********************************************************************!*\
13944
- !*** C:/Repos/Babylon.js/node_modules/react-contextmenu/es6/index.js ***!
13945
- \***********************************************************************/
13904
+ /*!************************************************************************************************!*\
13905
+ !*** C:/Users/raweber/Documents/GitHub/Babylon.js/node_modules/react-contextmenu/es6/index.js ***!
13906
+ \************************************************************************************************/
13946
13907
  /*! exports provided: ContextMenu, ContextMenuTrigger, MenuItem, SubMenu, connectMenu, hideMenu, showMenu */
13947
13908
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
13948
13909
 
@@ -13978,9 +13939,9 @@ __webpack_require__.r(__webpack_exports__);
13978
13939
  /***/ }),
13979
13940
 
13980
13941
  /***/ "../../../../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
- \*******************************************************************************/
13942
+ /*!********************************************************************************************************!*\
13943
+ !*** C:/Users/raweber/Documents/GitHub/Babylon.js/node_modules/react-dom/cjs/react-dom.development.js ***!
13944
+ \********************************************************************************************************/
13984
13945
  /*! no static exports found */
13985
13946
  /***/ (function(module, exports, __webpack_require__) {
13986
13947
 
@@ -39002,9 +38963,9 @@ exports.version = ReactVersion;
39002
38963
  /***/ }),
39003
38964
 
39004
38965
  /***/ "../../../../node_modules/react-dom/index.js":
39005
- /*!***********************************************************!*\
39006
- !*** C:/Repos/Babylon.js/node_modules/react-dom/index.js ***!
39007
- \***********************************************************/
38966
+ /*!************************************************************************************!*\
38967
+ !*** C:/Users/raweber/Documents/GitHub/Babylon.js/node_modules/react-dom/index.js ***!
38968
+ \************************************************************************************/
39008
38969
  /*! no static exports found */
39009
38970
  /***/ (function(module, exports, __webpack_require__) {
39010
38971
 
@@ -39047,9 +39008,9 @@ if (false) {} else {
39047
39008
  /***/ }),
39048
39009
 
39049
39010
  /***/ "../../../../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
- \*****************************************************************************/
39011
+ /*!******************************************************************************************************!*\
39012
+ !*** C:/Users/raweber/Documents/GitHub/Babylon.js/node_modules/react-is/cjs/react-is.development.js ***!
39013
+ \******************************************************************************************************/
39053
39014
  /*! no static exports found */
39054
39015
  /***/ (function(module, exports, __webpack_require__) {
39055
39016
 
@@ -39240,9 +39201,9 @@ exports.typeOf = typeOf;
39240
39201
  /***/ }),
39241
39202
 
39242
39203
  /***/ "../../../../node_modules/react-is/index.js":
39243
- /*!**********************************************************!*\
39244
- !*** C:/Repos/Babylon.js/node_modules/react-is/index.js ***!
39245
- \**********************************************************/
39204
+ /*!***********************************************************************************!*\
39205
+ !*** C:/Users/raweber/Documents/GitHub/Babylon.js/node_modules/react-is/index.js ***!
39206
+ \***********************************************************************************/
39246
39207
  /*! no static exports found */
39247
39208
  /***/ (function(module, exports, __webpack_require__) {
39248
39209
 
@@ -39257,9 +39218,9 @@ if (false) {} else {
39257
39218
  /***/ }),
39258
39219
 
39259
39220
  /***/ "../../../../node_modules/react/cjs/react.development.js":
39260
- /*!***********************************************************************!*\
39261
- !*** C:/Repos/Babylon.js/node_modules/react/cjs/react.development.js ***!
39262
- \***********************************************************************/
39221
+ /*!************************************************************************************************!*\
39222
+ !*** C:/Users/raweber/Documents/GitHub/Babylon.js/node_modules/react/cjs/react.development.js ***!
39223
+ \************************************************************************************************/
39263
39224
  /*! no static exports found */
39264
39225
  /***/ (function(module, exports, __webpack_require__) {
39265
39226
 
@@ -41181,9 +41142,9 @@ exports.version = ReactVersion;
41181
41142
  /***/ }),
41182
41143
 
41183
41144
  /***/ "../../../../node_modules/react/index.js":
41184
- /*!*******************************************************!*\
41185
- !*** C:/Repos/Babylon.js/node_modules/react/index.js ***!
41186
- \*******************************************************/
41145
+ /*!********************************************************************************!*\
41146
+ !*** C:/Users/raweber/Documents/GitHub/Babylon.js/node_modules/react/index.js ***!
41147
+ \********************************************************************************/
41187
41148
  /*! no static exports found */
41188
41149
  /***/ (function(module, exports, __webpack_require__) {
41189
41150
 
@@ -41198,9 +41159,9 @@ if (false) {} else {
41198
41159
  /***/ }),
41199
41160
 
41200
41161
  /***/ "../../../../node_modules/scheduler/cjs/scheduler-tracing.development.js":
41201
- /*!***************************************************************************************!*\
41202
- !*** C:/Repos/Babylon.js/node_modules/scheduler/cjs/scheduler-tracing.development.js ***!
41203
- \***************************************************************************************/
41162
+ /*!****************************************************************************************************************!*\
41163
+ !*** C:/Users/raweber/Documents/GitHub/Babylon.js/node_modules/scheduler/cjs/scheduler-tracing.development.js ***!
41164
+ \****************************************************************************************************************/
41204
41165
  /*! no static exports found */
41205
41166
  /***/ (function(module, exports, __webpack_require__) {
41206
41167
 
@@ -41559,9 +41520,9 @@ exports.unstable_wrap = unstable_wrap;
41559
41520
  /***/ }),
41560
41521
 
41561
41522
  /***/ "../../../../node_modules/scheduler/cjs/scheduler.development.js":
41562
- /*!*******************************************************************************!*\
41563
- !*** C:/Repos/Babylon.js/node_modules/scheduler/cjs/scheduler.development.js ***!
41564
- \*******************************************************************************/
41523
+ /*!********************************************************************************************************!*\
41524
+ !*** C:/Users/raweber/Documents/GitHub/Babylon.js/node_modules/scheduler/cjs/scheduler.development.js ***!
41525
+ \********************************************************************************************************/
41565
41526
  /*! no static exports found */
41566
41527
  /***/ (function(module, exports, __webpack_require__) {
41567
41528
 
@@ -42429,9 +42390,9 @@ exports.unstable_wrapCallback = unstable_wrapCallback;
42429
42390
  /***/ }),
42430
42391
 
42431
42392
  /***/ "../../../../node_modules/scheduler/index.js":
42432
- /*!***********************************************************!*\
42433
- !*** C:/Repos/Babylon.js/node_modules/scheduler/index.js ***!
42434
- \***********************************************************/
42393
+ /*!************************************************************************************!*\
42394
+ !*** C:/Users/raweber/Documents/GitHub/Babylon.js/node_modules/scheduler/index.js ***!
42395
+ \************************************************************************************/
42435
42396
  /*! no static exports found */
42436
42397
  /***/ (function(module, exports, __webpack_require__) {
42437
42398
 
@@ -42446,9 +42407,9 @@ if (false) {} else {
42446
42407
  /***/ }),
42447
42408
 
42448
42409
  /***/ "../../../../node_modules/scheduler/tracing.js":
42449
- /*!*************************************************************!*\
42450
- !*** C:/Repos/Babylon.js/node_modules/scheduler/tracing.js ***!
42451
- \*************************************************************/
42410
+ /*!**************************************************************************************!*\
42411
+ !*** C:/Users/raweber/Documents/GitHub/Babylon.js/node_modules/scheduler/tracing.js ***!
42412
+ \**************************************************************************************/
42452
42413
  /*! no static exports found */
42453
42414
  /***/ (function(module, exports, __webpack_require__) {
42454
42415
 
@@ -42463,9 +42424,9 @@ if (false) {} else {
42463
42424
  /***/ }),
42464
42425
 
42465
42426
  /***/ "../../../../node_modules/setimmediate/setImmediate.js":
42466
- /*!*********************************************************************!*\
42467
- !*** C:/Repos/Babylon.js/node_modules/setimmediate/setImmediate.js ***!
42468
- \*********************************************************************/
42427
+ /*!**********************************************************************************************!*\
42428
+ !*** C:/Users/raweber/Documents/GitHub/Babylon.js/node_modules/setimmediate/setImmediate.js ***!
42429
+ \**********************************************************************************************/
42469
42430
  /*! no static exports found */
42470
42431
  /***/ (function(module, exports, __webpack_require__) {
42471
42432
 
@@ -42661,9 +42622,9 @@ if (false) {} else {
42661
42622
  /***/ }),
42662
42623
 
42663
42624
  /***/ "../../../../node_modules/split.js/dist/split.es.js":
42664
- /*!******************************************************************!*\
42665
- !*** C:/Repos/Babylon.js/node_modules/split.js/dist/split.es.js ***!
42666
- \******************************************************************/
42625
+ /*!*******************************************************************************************!*\
42626
+ !*** C:/Users/raweber/Documents/GitHub/Babylon.js/node_modules/split.js/dist/split.es.js ***!
42627
+ \*******************************************************************************************/
42667
42628
  /*! exports provided: default */
42668
42629
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
42669
42630
 
@@ -42832,16 +42793,19 @@ var Split = function (idsOption, options) {
42832
42793
  // Set default options.sizes to equal percentages of the parent element.
42833
42794
  var sizes = getOption(options, 'sizes') || ids.map(function () { return 100 / ids.length; });
42834
42795
 
42835
- // Standardize minSize to an array if it isn't already. This allows minSize
42836
- // to be passed as a number.
42796
+ // Standardize minSize and maxSize to an array if it isn't already.
42797
+ // This allows minSize and maxSize to be passed as a number.
42837
42798
  var minSize = getOption(options, 'minSize', 100);
42838
42799
  var minSizes = Array.isArray(minSize) ? minSize : ids.map(function () { return minSize; });
42800
+ var maxSize = getOption(options, 'maxSize', Infinity);
42801
+ var maxSizes = Array.isArray(maxSize) ? maxSize : ids.map(function () { return maxSize; });
42839
42802
 
42840
42803
  // Get other options
42841
42804
  var expandToMin = getOption(options, 'expandToMin', false);
42842
42805
  var gutterSize = getOption(options, 'gutterSize', 10);
42843
42806
  var gutterAlign = getOption(options, 'gutterAlign', 'center');
42844
42807
  var snapOffset = getOption(options, 'snapOffset', 30);
42808
+ var snapOffsets = Array.isArray(snapOffset) ? snapOffset : ids.map(function () { return snapOffset; });
42845
42809
  var dragInterval = getOption(options, 'dragInterval', 1);
42846
42810
  var direction = getOption(options, 'direction', HORIZONTAL);
42847
42811
  var cursor = getOption(
@@ -42972,15 +42936,24 @@ var Split = function (idsOption, options) {
42972
42936
  // If within snapOffset of min or max, set offset to min or max.
42973
42937
  // snapOffset buffers a.minSize and b.minSize, so logic is opposite for both.
42974
42938
  // Include the appropriate gutter sizes to prevent overflows.
42975
- if (offset <= a.minSize + snapOffset + this[aGutterSize]) {
42939
+ if (offset <= a.minSize + a.snapOffset + this[aGutterSize]) {
42976
42940
  offset = a.minSize + this[aGutterSize];
42977
42941
  } else if (
42978
42942
  offset >=
42979
- this.size - (b.minSize + snapOffset + this[bGutterSize])
42943
+ this.size - (b.minSize + b.snapOffset + this[bGutterSize])
42980
42944
  ) {
42981
42945
  offset = this.size - (b.minSize + this[bGutterSize]);
42982
42946
  }
42983
42947
 
42948
+ if (offset >= a.maxSize - a.snapOffset + this[aGutterSize]) {
42949
+ offset = a.maxSize + this[aGutterSize];
42950
+ } else if (
42951
+ offset <=
42952
+ this.size - (b.maxSize - b.snapOffset + this[bGutterSize])
42953
+ ) {
42954
+ offset = this.size - (b.maxSize + this[bGutterSize]);
42955
+ }
42956
+
42984
42957
  // Actually adjust the size.
42985
42958
  adjust.call(this, offset);
42986
42959
 
@@ -43254,6 +43227,8 @@ var Split = function (idsOption, options) {
43254
43227
  element: elementOrSelector(id),
43255
43228
  size: sizes[i],
43256
43229
  minSize: minSizes[i],
43230
+ maxSize: maxSizes[i],
43231
+ snapOffset: snapOffsets[i],
43257
43232
  i: i,
43258
43233
  };
43259
43234
 
@@ -43433,9 +43408,9 @@ var Split = function (idsOption, options) {
43433
43408
  /***/ }),
43434
43409
 
43435
43410
  /***/ "../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js":
43436
- /*!**********************************************************************************************!*\
43437
- !*** C:/Repos/Babylon.js/node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js ***!
43438
- \**********************************************************************************************/
43411
+ /*!***********************************************************************************************************************!*\
43412
+ !*** C:/Users/raweber/Documents/GitHub/Babylon.js/node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js ***!
43413
+ \***********************************************************************************************************************/
43439
43414
  /*! no static exports found */
43440
43415
  /***/ (function(module, exports, __webpack_require__) {
43441
43416
 
@@ -43615,7 +43590,7 @@ function applyToTag(style, options, obj) {
43615
43590
  style.removeAttribute('media');
43616
43591
  }
43617
43592
 
43618
- if (sourceMap && btoa) {
43593
+ if (sourceMap && typeof btoa !== 'undefined') {
43619
43594
  css += "\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap)))), " */");
43620
43595
  } // For old IE
43621
43596
 
@@ -43713,9 +43688,9 @@ module.exports = function (list, options) {
43713
43688
  /***/ }),
43714
43689
 
43715
43690
  /***/ "../../../../node_modules/timers-browserify/main.js":
43716
- /*!******************************************************************!*\
43717
- !*** C:/Repos/Babylon.js/node_modules/timers-browserify/main.js ***!
43718
- \******************************************************************/
43691
+ /*!*******************************************************************************************!*\
43692
+ !*** C:/Users/raweber/Documents/GitHub/Babylon.js/node_modules/timers-browserify/main.js ***!
43693
+ \*******************************************************************************************/
43719
43694
  /*! no static exports found */
43720
43695
  /***/ (function(module, exports, __webpack_require__) {
43721
43696
 
@@ -43788,10 +43763,10 @@ exports.clearImmediate = (typeof self !== "undefined" && self.clearImmediate) ||
43788
43763
  /***/ }),
43789
43764
 
43790
43765
  /***/ "../../../../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 */
43766
+ /*!************************************************************************************!*\
43767
+ !*** C:/Users/raweber/Documents/GitHub/Babylon.js/node_modules/tslib/tslib.es6.js ***!
43768
+ \************************************************************************************/
43769
+ /*! 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
43770
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
43796
43771
 
43797
43772
  "use strict";
@@ -43810,6 +43785,7 @@ __webpack_require__.r(__webpack_exports__);
43810
43785
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__read", function() { return __read; });
43811
43786
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__spread", function() { return __spread; });
43812
43787
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__spreadArrays", function() { return __spreadArrays; });
43788
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__spreadArray", function() { return __spreadArray; });
43813
43789
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__await", function() { return __await; });
43814
43790
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__asyncGenerator", function() { return __asyncGenerator; });
43815
43791
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__asyncDelegator", function() { return __asyncDelegator; });
@@ -43843,6 +43819,8 @@ var extendStatics = function(d, b) {
43843
43819
  };
43844
43820
 
43845
43821
  function __extends(d, b) {
43822
+ if (typeof b !== "function" && b !== null)
43823
+ throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
43846
43824
  extendStatics(d, b);
43847
43825
  function __() { this.constructor = d; }
43848
43826
  d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
@@ -43965,19 +43943,31 @@ function __read(o, n) {
43965
43943
  return ar;
43966
43944
  }
43967
43945
 
43946
+ /** @deprecated */
43968
43947
  function __spread() {
43969
43948
  for (var ar = [], i = 0; i < arguments.length; i++)
43970
43949
  ar = ar.concat(__read(arguments[i]));
43971
43950
  return ar;
43972
43951
  }
43973
43952
 
43953
+ /** @deprecated */
43974
43954
  function __spreadArrays() {
43975
43955
  for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;
43976
43956
  for (var r = Array(s), k = 0, i = 0; i < il; i++)
43977
43957
  for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)
43978
43958
  r[k] = a[j];
43979
43959
  return r;
43980
- };
43960
+ }
43961
+
43962
+ function __spreadArray(to, from, pack) {
43963
+ if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
43964
+ if (ar || !(i in from)) {
43965
+ if (!ar) ar = Array.prototype.slice.call(from, 0, i);
43966
+ ar[i] = from[i];
43967
+ }
43968
+ }
43969
+ return to.concat(ar || Array.prototype.slice.call(from));
43970
+ }
43981
43971
 
43982
43972
  function __await(v) {
43983
43973
  return this instanceof __await ? (this.v = v, this) : new __await(v);
@@ -44032,19 +44022,17 @@ function __importDefault(mod) {
44032
44022
  return (mod && mod.__esModule) ? mod : { default: mod };
44033
44023
  }
44034
44024
 
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);
44025
+ function __classPrivateFieldGet(receiver, state, kind, f) {
44026
+ if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter");
44027
+ 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");
44028
+ return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
44040
44029
  }
44041
44030
 
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;
44031
+ function __classPrivateFieldSet(receiver, state, value, kind, f) {
44032
+ if (kind === "m") throw new TypeError("Private method is not writable");
44033
+ if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter");
44034
+ 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");
44035
+ return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
44048
44036
  }
44049
44037
 
44050
44038
 
@@ -44082,9 +44070,9 @@ module.exports = g;
44082
44070
  /***/ }),
44083
44071
 
44084
44072
  /***/ "../../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
- \**************************************************************************************/
44073
+ /*!***************************************************************************************************************!*\
44074
+ !*** C:/Users/raweber/Documents/GitHub/Babylon.js/.temp/sourceES6/node_modules/re-resizable/lib/index.es5.js ***!
44075
+ \***************************************************************************************************************/
44088
44076
  /*! no static exports found */
44089
44077
  /***/ (function(module, exports, __webpack_require__) {
44090
44078