{"version":3,"sources":["node_modules\\react-dom\\lib\\ViewportMetrics.js"],"names":["ViewportMetrics","currentScrollLeft","currentScrollTop","refreshScrollValues","scrollPosition","x","y","module","exports"],"mappings":";;;;;;;;;;AAUA;;AAEA,GAAIA,iBAAkB;AACpBC,kBAAmB,CADC;;AAGpBC,iBAAkB,CAHE;;AAKpBC,oBAAqB,6BAAUC,cAAV,CAA0B;AAC7CJ,gBAAgBC,iBAAhB,CAAoCG,eAAeC,CAAnD;AACAL,gBAAgBE,gBAAhB,CAAmCE,eAAeE,CAAlD;AACD,CARmB,CAAtB;;;AAWAC,OAAOC,OAAP,CAAiBR,eAAjB","file":"ViewportMetrics.js","sourceRoot":"D:/Work/Office/react-native-on-web/cli/tmpl/project","sourcesContent":["/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar ViewportMetrics = {\n  currentScrollLeft: 0,\n\n  currentScrollTop: 0,\n\n  refreshScrollValues: function (scrollPosition) {\n    ViewportMetrics.currentScrollLeft = scrollPosition.x;\n    ViewportMetrics.currentScrollTop = scrollPosition.y;\n  }\n};\n\nmodule.exports = ViewportMetrics;"]}