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
|
-
!***
|
|
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.
|
|
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.
|
|
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
|
-
!***
|
|
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
|
-
!***
|
|
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
|
-
!***
|
|
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
|
-
|
|
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
|
-
!***
|
|
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)
|
|
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)
|
|
11148
|
-
|
|
11149
|
-
|
|
11150
|
-
|
|
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
|
-
|
|
11154
|
-
|
|
11155
|
-
|
|
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
|
-
!***
|
|
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
|
-
!***
|
|
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
|
-
!***
|
|
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
|
-
!***
|
|
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
|
-
!***
|
|
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
|
-
!***
|
|
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
|
-
!***
|
|
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
|
-
!***
|
|
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
|
-
!***
|
|
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
|
-
!***
|
|
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
|
-
!***
|
|
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
|
-
!***
|
|
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
|
-
!***
|
|
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/re-resizable/lib/index.es5.js":
|
|
12451
|
-
|
|
12452
|
-
!***
|
|
12453
|
-
|
|
12406
|
+
/*!************************************************************************!*\
|
|
12407
|
+
!*** E:/Babylon/Babylon.js/node_modules/re-resizable/lib/index.es5.js ***!
|
|
12408
|
+
\************************************************************************/
|
|
12454
12409
|
/*! no static exports found */
|
|
12455
12410
|
/***/ (function(module, exports, __webpack_require__) {
|
|
12456
12411
|
|
|
@@ -13197,9 +13152,9 @@ module.exports = Resizable;
|
|
|
13197
13152
|
/***/ }),
|
|
13198
13153
|
|
|
13199
13154
|
/***/ "../../node_modules/react-contextmenu/es6/AbstractMenu.js":
|
|
13200
|
-
|
|
13201
|
-
!***
|
|
13202
|
-
|
|
13155
|
+
/*!********************************************************************************!*\
|
|
13156
|
+
!*** E:/Babylon/Babylon.js/node_modules/react-contextmenu/es6/AbstractMenu.js ***!
|
|
13157
|
+
\********************************************************************************/
|
|
13203
13158
|
/*! exports provided: default */
|
|
13204
13159
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
13205
13160
|
|
|
@@ -13423,9 +13378,9 @@ var _initialiseProps = function _initialiseProps() {
|
|
|
13423
13378
|
/***/ }),
|
|
13424
13379
|
|
|
13425
13380
|
/***/ "../../node_modules/react-contextmenu/es6/ContextMenu.js":
|
|
13426
|
-
|
|
13427
|
-
!***
|
|
13428
|
-
|
|
13381
|
+
/*!*******************************************************************************!*\
|
|
13382
|
+
!*** E:/Babylon/Babylon.js/node_modules/react-contextmenu/es6/ContextMenu.js ***!
|
|
13383
|
+
\*******************************************************************************/
|
|
13429
13384
|
/*! exports provided: default */
|
|
13430
13385
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
13431
13386
|
|
|
@@ -13740,9 +13695,9 @@ ContextMenu.defaultProps = {
|
|
|
13740
13695
|
/***/ }),
|
|
13741
13696
|
|
|
13742
13697
|
/***/ "../../node_modules/react-contextmenu/es6/ContextMenuTrigger.js":
|
|
13743
|
-
|
|
13744
|
-
!***
|
|
13745
|
-
|
|
13698
|
+
/*!**************************************************************************************!*\
|
|
13699
|
+
!*** E:/Babylon/Babylon.js/node_modules/react-contextmenu/es6/ContextMenuTrigger.js ***!
|
|
13700
|
+
\**************************************************************************************/
|
|
13746
13701
|
/*! exports provided: default */
|
|
13747
13702
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
13748
13703
|
|
|
@@ -13940,9 +13895,9 @@ ContextMenuTrigger.defaultProps = {
|
|
|
13940
13895
|
/***/ }),
|
|
13941
13896
|
|
|
13942
13897
|
/***/ "../../node_modules/react-contextmenu/es6/MenuItem.js":
|
|
13943
|
-
|
|
13944
|
-
!***
|
|
13945
|
-
|
|
13898
|
+
/*!****************************************************************************!*\
|
|
13899
|
+
!*** E:/Babylon/Babylon.js/node_modules/react-contextmenu/es6/MenuItem.js ***!
|
|
13900
|
+
\****************************************************************************/
|
|
13946
13901
|
/*! exports provided: default */
|
|
13947
13902
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
13948
13903
|
|
|
@@ -14080,9 +14035,9 @@ MenuItem.defaultProps = {
|
|
|
14080
14035
|
/***/ }),
|
|
14081
14036
|
|
|
14082
14037
|
/***/ "../../node_modules/react-contextmenu/es6/SubMenu.js":
|
|
14083
|
-
|
|
14084
|
-
!***
|
|
14085
|
-
|
|
14038
|
+
/*!***************************************************************************!*\
|
|
14039
|
+
!*** E:/Babylon/Babylon.js/node_modules/react-contextmenu/es6/SubMenu.js ***!
|
|
14040
|
+
\***************************************************************************/
|
|
14086
14041
|
/*! exports provided: default */
|
|
14087
14042
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
14088
14043
|
|
|
@@ -14420,9 +14375,9 @@ SubMenu.defaultProps = {
|
|
|
14420
14375
|
/***/ }),
|
|
14421
14376
|
|
|
14422
14377
|
/***/ "../../node_modules/react-contextmenu/es6/actions.js":
|
|
14423
|
-
|
|
14424
|
-
!***
|
|
14425
|
-
|
|
14378
|
+
/*!***************************************************************************!*\
|
|
14379
|
+
!*** E:/Babylon/Babylon.js/node_modules/react-contextmenu/es6/actions.js ***!
|
|
14380
|
+
\***************************************************************************/
|
|
14426
14381
|
/*! exports provided: MENU_SHOW, MENU_HIDE, dispatchGlobalEvent, showMenu, hideMenu */
|
|
14427
14382
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
14428
14383
|
|
|
@@ -14480,9 +14435,9 @@ function hideMenu() {
|
|
|
14480
14435
|
/***/ }),
|
|
14481
14436
|
|
|
14482
14437
|
/***/ "../../node_modules/react-contextmenu/es6/connectMenu.js":
|
|
14483
|
-
|
|
14484
|
-
!***
|
|
14485
|
-
|
|
14438
|
+
/*!*******************************************************************************!*\
|
|
14439
|
+
!*** E:/Babylon/Babylon.js/node_modules/react-contextmenu/es6/connectMenu.js ***!
|
|
14440
|
+
\*******************************************************************************/
|
|
14486
14441
|
/*! exports provided: default */
|
|
14487
14442
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
14488
14443
|
|
|
@@ -14578,9 +14533,9 @@ var ignoredTriggerProps = [].concat(_toConsumableArray(Object.keys(_ContextMenuT
|
|
|
14578
14533
|
/***/ }),
|
|
14579
14534
|
|
|
14580
14535
|
/***/ "../../node_modules/react-contextmenu/es6/globalEventListener.js":
|
|
14581
|
-
|
|
14582
|
-
!***
|
|
14583
|
-
|
|
14536
|
+
/*!***************************************************************************************!*\
|
|
14537
|
+
!*** E:/Babylon/Babylon.js/node_modules/react-contextmenu/es6/globalEventListener.js ***!
|
|
14538
|
+
\***************************************************************************************/
|
|
14584
14539
|
/*! exports provided: default */
|
|
14585
14540
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
14586
14541
|
|
|
@@ -14640,9 +14595,9 @@ var GlobalEventListener = function GlobalEventListener() {
|
|
|
14640
14595
|
/***/ }),
|
|
14641
14596
|
|
|
14642
14597
|
/***/ "../../node_modules/react-contextmenu/es6/helpers.js":
|
|
14643
|
-
|
|
14644
|
-
!***
|
|
14645
|
-
|
|
14598
|
+
/*!***************************************************************************!*\
|
|
14599
|
+
!*** E:/Babylon/Babylon.js/node_modules/react-contextmenu/es6/helpers.js ***!
|
|
14600
|
+
\***************************************************************************/
|
|
14646
14601
|
/*! exports provided: callIfExists, hasOwnProp, uniqueId, cssClasses, store, canUseDOM */
|
|
14647
14602
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
14648
14603
|
|
|
@@ -14689,9 +14644,9 @@ var canUseDOM = Boolean(typeof window !== 'undefined' && window.document && wind
|
|
|
14689
14644
|
/***/ }),
|
|
14690
14645
|
|
|
14691
14646
|
/***/ "../../node_modules/react-contextmenu/es6/index.js":
|
|
14692
|
-
|
|
14693
|
-
!***
|
|
14694
|
-
|
|
14647
|
+
/*!*************************************************************************!*\
|
|
14648
|
+
!*** E:/Babylon/Babylon.js/node_modules/react-contextmenu/es6/index.js ***!
|
|
14649
|
+
\*************************************************************************/
|
|
14695
14650
|
/*! exports provided: ContextMenu, ContextMenuTrigger, MenuItem, SubMenu, connectMenu, hideMenu, showMenu */
|
|
14696
14651
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
14697
14652
|
|
|
@@ -14727,9 +14682,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
14727
14682
|
/***/ }),
|
|
14728
14683
|
|
|
14729
14684
|
/***/ "../../node_modules/react-dom/cjs/react-dom.development.js":
|
|
14730
|
-
|
|
14731
|
-
!***
|
|
14732
|
-
|
|
14685
|
+
/*!*********************************************************************************!*\
|
|
14686
|
+
!*** E:/Babylon/Babylon.js/node_modules/react-dom/cjs/react-dom.development.js ***!
|
|
14687
|
+
\*********************************************************************************/
|
|
14733
14688
|
/*! no static exports found */
|
|
14734
14689
|
/***/ (function(module, exports, __webpack_require__) {
|
|
14735
14690
|
|
|
@@ -39751,9 +39706,9 @@ exports.version = ReactVersion;
|
|
|
39751
39706
|
/***/ }),
|
|
39752
39707
|
|
|
39753
39708
|
/***/ "../../node_modules/react-dom/index.js":
|
|
39754
|
-
|
|
39755
|
-
!***
|
|
39756
|
-
|
|
39709
|
+
/*!*************************************************************!*\
|
|
39710
|
+
!*** E:/Babylon/Babylon.js/node_modules/react-dom/index.js ***!
|
|
39711
|
+
\*************************************************************/
|
|
39757
39712
|
/*! no static exports found */
|
|
39758
39713
|
/***/ (function(module, exports, __webpack_require__) {
|
|
39759
39714
|
|
|
@@ -39796,9 +39751,9 @@ if (false) {} else {
|
|
|
39796
39751
|
/***/ }),
|
|
39797
39752
|
|
|
39798
39753
|
/***/ "../../node_modules/react-is/cjs/react-is.development.js":
|
|
39799
|
-
|
|
39800
|
-
!***
|
|
39801
|
-
|
|
39754
|
+
/*!*******************************************************************************!*\
|
|
39755
|
+
!*** E:/Babylon/Babylon.js/node_modules/react-is/cjs/react-is.development.js ***!
|
|
39756
|
+
\*******************************************************************************/
|
|
39802
39757
|
/*! no static exports found */
|
|
39803
39758
|
/***/ (function(module, exports, __webpack_require__) {
|
|
39804
39759
|
|
|
@@ -39989,9 +39944,9 @@ exports.typeOf = typeOf;
|
|
|
39989
39944
|
/***/ }),
|
|
39990
39945
|
|
|
39991
39946
|
/***/ "../../node_modules/react-is/index.js":
|
|
39992
|
-
|
|
39993
|
-
!***
|
|
39994
|
-
|
|
39947
|
+
/*!************************************************************!*\
|
|
39948
|
+
!*** E:/Babylon/Babylon.js/node_modules/react-is/index.js ***!
|
|
39949
|
+
\************************************************************/
|
|
39995
39950
|
/*! no static exports found */
|
|
39996
39951
|
/***/ (function(module, exports, __webpack_require__) {
|
|
39997
39952
|
|
|
@@ -40006,9 +39961,9 @@ if (false) {} else {
|
|
|
40006
39961
|
/***/ }),
|
|
40007
39962
|
|
|
40008
39963
|
/***/ "../../node_modules/react/cjs/react.development.js":
|
|
40009
|
-
|
|
40010
|
-
!***
|
|
40011
|
-
|
|
39964
|
+
/*!*************************************************************************!*\
|
|
39965
|
+
!*** E:/Babylon/Babylon.js/node_modules/react/cjs/react.development.js ***!
|
|
39966
|
+
\*************************************************************************/
|
|
40012
39967
|
/*! no static exports found */
|
|
40013
39968
|
/***/ (function(module, exports, __webpack_require__) {
|
|
40014
39969
|
|
|
@@ -41930,9 +41885,9 @@ exports.version = ReactVersion;
|
|
|
41930
41885
|
/***/ }),
|
|
41931
41886
|
|
|
41932
41887
|
/***/ "../../node_modules/react/index.js":
|
|
41933
|
-
|
|
41934
|
-
!***
|
|
41935
|
-
|
|
41888
|
+
/*!*********************************************************!*\
|
|
41889
|
+
!*** E:/Babylon/Babylon.js/node_modules/react/index.js ***!
|
|
41890
|
+
\*********************************************************/
|
|
41936
41891
|
/*! no static exports found */
|
|
41937
41892
|
/***/ (function(module, exports, __webpack_require__) {
|
|
41938
41893
|
|
|
@@ -41947,9 +41902,9 @@ if (false) {} else {
|
|
|
41947
41902
|
/***/ }),
|
|
41948
41903
|
|
|
41949
41904
|
/***/ "../../node_modules/scheduler/cjs/scheduler-tracing.development.js":
|
|
41950
|
-
|
|
41951
|
-
!***
|
|
41952
|
-
|
|
41905
|
+
/*!*****************************************************************************************!*\
|
|
41906
|
+
!*** E:/Babylon/Babylon.js/node_modules/scheduler/cjs/scheduler-tracing.development.js ***!
|
|
41907
|
+
\*****************************************************************************************/
|
|
41953
41908
|
/*! no static exports found */
|
|
41954
41909
|
/***/ (function(module, exports, __webpack_require__) {
|
|
41955
41910
|
|
|
@@ -42308,9 +42263,9 @@ exports.unstable_wrap = unstable_wrap;
|
|
|
42308
42263
|
/***/ }),
|
|
42309
42264
|
|
|
42310
42265
|
/***/ "../../node_modules/scheduler/cjs/scheduler.development.js":
|
|
42311
|
-
|
|
42312
|
-
!***
|
|
42313
|
-
|
|
42266
|
+
/*!*********************************************************************************!*\
|
|
42267
|
+
!*** E:/Babylon/Babylon.js/node_modules/scheduler/cjs/scheduler.development.js ***!
|
|
42268
|
+
\*********************************************************************************/
|
|
42314
42269
|
/*! no static exports found */
|
|
42315
42270
|
/***/ (function(module, exports, __webpack_require__) {
|
|
42316
42271
|
|
|
@@ -43178,9 +43133,9 @@ exports.unstable_wrapCallback = unstable_wrapCallback;
|
|
|
43178
43133
|
/***/ }),
|
|
43179
43134
|
|
|
43180
43135
|
/***/ "../../node_modules/scheduler/index.js":
|
|
43181
|
-
|
|
43182
|
-
!***
|
|
43183
|
-
|
|
43136
|
+
/*!*************************************************************!*\
|
|
43137
|
+
!*** E:/Babylon/Babylon.js/node_modules/scheduler/index.js ***!
|
|
43138
|
+
\*************************************************************/
|
|
43184
43139
|
/*! no static exports found */
|
|
43185
43140
|
/***/ (function(module, exports, __webpack_require__) {
|
|
43186
43141
|
|
|
@@ -43195,9 +43150,9 @@ if (false) {} else {
|
|
|
43195
43150
|
/***/ }),
|
|
43196
43151
|
|
|
43197
43152
|
/***/ "../../node_modules/scheduler/tracing.js":
|
|
43198
|
-
|
|
43199
|
-
!***
|
|
43200
|
-
|
|
43153
|
+
/*!***************************************************************!*\
|
|
43154
|
+
!*** E:/Babylon/Babylon.js/node_modules/scheduler/tracing.js ***!
|
|
43155
|
+
\***************************************************************/
|
|
43201
43156
|
/*! no static exports found */
|
|
43202
43157
|
/***/ (function(module, exports, __webpack_require__) {
|
|
43203
43158
|
|
|
@@ -43212,9 +43167,9 @@ if (false) {} else {
|
|
|
43212
43167
|
/***/ }),
|
|
43213
43168
|
|
|
43214
43169
|
/***/ "../../node_modules/setimmediate/setImmediate.js":
|
|
43215
|
-
|
|
43216
|
-
!***
|
|
43217
|
-
|
|
43170
|
+
/*!***********************************************************************!*\
|
|
43171
|
+
!*** E:/Babylon/Babylon.js/node_modules/setimmediate/setImmediate.js ***!
|
|
43172
|
+
\***********************************************************************/
|
|
43218
43173
|
/*! no static exports found */
|
|
43219
43174
|
/***/ (function(module, exports, __webpack_require__) {
|
|
43220
43175
|
|
|
@@ -43410,9 +43365,9 @@ if (false) {} else {
|
|
|
43410
43365
|
/***/ }),
|
|
43411
43366
|
|
|
43412
43367
|
/***/ "../../node_modules/split.js/dist/split.es.js":
|
|
43413
|
-
|
|
43414
|
-
!***
|
|
43415
|
-
|
|
43368
|
+
/*!********************************************************************!*\
|
|
43369
|
+
!*** E:/Babylon/Babylon.js/node_modules/split.js/dist/split.es.js ***!
|
|
43370
|
+
\********************************************************************/
|
|
43416
43371
|
/*! exports provided: default */
|
|
43417
43372
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
43418
43373
|
|
|
@@ -44182,9 +44137,9 @@ var Split = function (idsOption, options) {
|
|
|
44182
44137
|
/***/ }),
|
|
44183
44138
|
|
|
44184
44139
|
/***/ "../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js":
|
|
44185
|
-
|
|
44186
|
-
!***
|
|
44187
|
-
|
|
44140
|
+
/*!************************************************************************************************!*\
|
|
44141
|
+
!*** E:/Babylon/Babylon.js/node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js ***!
|
|
44142
|
+
\************************************************************************************************/
|
|
44188
44143
|
/*! no static exports found */
|
|
44189
44144
|
/***/ (function(module, exports, __webpack_require__) {
|
|
44190
44145
|
|
|
@@ -44364,7 +44319,7 @@ function applyToTag(style, options, obj) {
|
|
|
44364
44319
|
style.removeAttribute('media');
|
|
44365
44320
|
}
|
|
44366
44321
|
|
|
44367
|
-
if (sourceMap && btoa) {
|
|
44322
|
+
if (sourceMap && typeof btoa !== 'undefined') {
|
|
44368
44323
|
css += "\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap)))), " */");
|
|
44369
44324
|
} // For old IE
|
|
44370
44325
|
|
|
@@ -44462,9 +44417,9 @@ module.exports = function (list, options) {
|
|
|
44462
44417
|
/***/ }),
|
|
44463
44418
|
|
|
44464
44419
|
/***/ "../../node_modules/timers-browserify/main.js":
|
|
44465
|
-
|
|
44466
|
-
!***
|
|
44467
|
-
|
|
44420
|
+
/*!********************************************************************!*\
|
|
44421
|
+
!*** E:/Babylon/Babylon.js/node_modules/timers-browserify/main.js ***!
|
|
44422
|
+
\********************************************************************/
|
|
44468
44423
|
/*! no static exports found */
|
|
44469
44424
|
/***/ (function(module, exports, __webpack_require__) {
|
|
44470
44425
|
|
|
@@ -44537,10 +44492,10 @@ exports.clearImmediate = (typeof self !== "undefined" && self.clearImmediate) ||
|
|
|
44537
44492
|
/***/ }),
|
|
44538
44493
|
|
|
44539
44494
|
/***/ "../../node_modules/tslib/tslib.es6.js":
|
|
44540
|
-
|
|
44541
|
-
!***
|
|
44542
|
-
|
|
44543
|
-
/*! 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 */
|
|
44495
|
+
/*!*************************************************************!*\
|
|
44496
|
+
!*** E:/Babylon/Babylon.js/node_modules/tslib/tslib.es6.js ***!
|
|
44497
|
+
\*************************************************************/
|
|
44498
|
+
/*! 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 */
|
|
44544
44499
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
44545
44500
|
|
|
44546
44501
|
"use strict";
|
|
@@ -44559,6 +44514,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
44559
44514
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__read", function() { return __read; });
|
|
44560
44515
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__spread", function() { return __spread; });
|
|
44561
44516
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__spreadArrays", function() { return __spreadArrays; });
|
|
44517
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__spreadArray", function() { return __spreadArray; });
|
|
44562
44518
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__await", function() { return __await; });
|
|
44563
44519
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__asyncGenerator", function() { return __asyncGenerator; });
|
|
44564
44520
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__asyncDelegator", function() { return __asyncDelegator; });
|
|
@@ -44592,6 +44548,8 @@ var extendStatics = function(d, b) {
|
|
|
44592
44548
|
};
|
|
44593
44549
|
|
|
44594
44550
|
function __extends(d, b) {
|
|
44551
|
+
if (typeof b !== "function" && b !== null)
|
|
44552
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
44595
44553
|
extendStatics(d, b);
|
|
44596
44554
|
function __() { this.constructor = d; }
|
|
44597
44555
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
@@ -44714,19 +44672,31 @@ function __read(o, n) {
|
|
|
44714
44672
|
return ar;
|
|
44715
44673
|
}
|
|
44716
44674
|
|
|
44675
|
+
/** @deprecated */
|
|
44717
44676
|
function __spread() {
|
|
44718
44677
|
for (var ar = [], i = 0; i < arguments.length; i++)
|
|
44719
44678
|
ar = ar.concat(__read(arguments[i]));
|
|
44720
44679
|
return ar;
|
|
44721
44680
|
}
|
|
44722
44681
|
|
|
44682
|
+
/** @deprecated */
|
|
44723
44683
|
function __spreadArrays() {
|
|
44724
44684
|
for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;
|
|
44725
44685
|
for (var r = Array(s), k = 0, i = 0; i < il; i++)
|
|
44726
44686
|
for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)
|
|
44727
44687
|
r[k] = a[j];
|
|
44728
44688
|
return r;
|
|
44729
|
-
}
|
|
44689
|
+
}
|
|
44690
|
+
|
|
44691
|
+
function __spreadArray(to, from, pack) {
|
|
44692
|
+
if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
|
|
44693
|
+
if (ar || !(i in from)) {
|
|
44694
|
+
if (!ar) ar = Array.prototype.slice.call(from, 0, i);
|
|
44695
|
+
ar[i] = from[i];
|
|
44696
|
+
}
|
|
44697
|
+
}
|
|
44698
|
+
return to.concat(ar || Array.prototype.slice.call(from));
|
|
44699
|
+
}
|
|
44730
44700
|
|
|
44731
44701
|
function __await(v) {
|
|
44732
44702
|
return this instanceof __await ? (this.v = v, this) : new __await(v);
|
|
@@ -44781,19 +44751,17 @@ function __importDefault(mod) {
|
|
|
44781
44751
|
return (mod && mod.__esModule) ? mod : { default: mod };
|
|
44782
44752
|
}
|
|
44783
44753
|
|
|
44784
|
-
function __classPrivateFieldGet(receiver,
|
|
44785
|
-
if (!
|
|
44786
|
-
|
|
44787
|
-
|
|
44788
|
-
return privateMap.get(receiver);
|
|
44754
|
+
function __classPrivateFieldGet(receiver, state, kind, f) {
|
|
44755
|
+
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter");
|
|
44756
|
+
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");
|
|
44757
|
+
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
|
|
44789
44758
|
}
|
|
44790
44759
|
|
|
44791
|
-
function __classPrivateFieldSet(receiver,
|
|
44792
|
-
if (
|
|
44793
|
-
|
|
44794
|
-
|
|
44795
|
-
|
|
44796
|
-
return value;
|
|
44760
|
+
function __classPrivateFieldSet(receiver, state, value, kind, f) {
|
|
44761
|
+
if (kind === "m") throw new TypeError("Private method is not writable");
|
|
44762
|
+
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter");
|
|
44763
|
+
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");
|
|
44764
|
+
return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
|
|
44797
44765
|
}
|
|
44798
44766
|
|
|
44799
44767
|
|