2016-11-21 03:39:30 +00:00
( function webpackUniversalModuleDefinition ( root , factory ) {
if ( typeof exports === 'object' && typeof module === 'object' )
module . exports = factory ( ) ;
else if ( typeof define === 'function' && define . amd )
define ( [ ] , factory ) ;
else if ( typeof exports === 'object' )
exports [ "VueMaterial" ] = factory ( ) ;
else
root [ "VueMaterial" ] = factory ( ) ;
} ) ( this , function ( ) {
return /******/ ( function ( modules ) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = { } ;
/******/
/******/ // The require function
/******/ function _ _webpack _require _ _ ( moduleId ) {
/******/
/******/ // Check if module is in cache
/******/ if ( installedModules [ moduleId ] )
/******/ return installedModules [ moduleId ] . exports ;
/******/
/******/ // Create a new module (and put it into the cache)
/******/ var module = installedModules [ moduleId ] = {
/******/ exports : { } ,
/******/ id : moduleId ,
/******/ loaded : false
/******/ } ;
/******/
/******/ // Execute the module function
/******/ modules [ moduleId ] . call ( module . exports , module , module . exports , _ _webpack _require _ _ ) ;
/******/
/******/ // Flag the module as loaded
/******/ module . loaded = true ;
/******/
/******/ // Return the exports of the module
/******/ return module . exports ;
/******/ }
/******/
/******/
/******/ // expose the modules object (__webpack_modules__)
/******/ _ _webpack _require _ _ . m = modules ;
/******/
/******/ // expose the module cache
/******/ _ _webpack _require _ _ . c = installedModules ;
/******/
/******/ // __webpack_public_path__
/******/ _ _webpack _require _ _ . p = "/" ;
/******/
/******/ // Load entry module and return exports
/******/ return _ _webpack _require _ _ ( 0 ) ;
/******/ } )
/************************************************************************/
/******/ ( {
/***/ 0 :
/***/ function ( module , exports , _ _webpack _require _ _ ) {
2016-12-16 06:01:17 +00:00
module . exports = _ _webpack _require _ _ ( 249 ) ;
2016-11-21 03:39:30 +00:00
/***/ } ,
2016-12-16 06:01:17 +00:00
/***/ 249 :
2016-11-21 03:39:30 +00:00
/***/ function ( module , exports , _ _webpack _require _ _ ) {
'use strict' ;
Object . defineProperty ( exports , "__esModule" , {
value : true
} ) ;
exports . default = install ;
2016-12-16 06:01:17 +00:00
var _mdWhiteframe = _ _webpack _require _ _ ( 250 ) ;
2016-11-21 03:39:30 +00:00
var _mdWhiteframe2 = _interopRequireDefault ( _mdWhiteframe ) ;
function _interopRequireDefault ( obj ) { return obj && obj . _ _esModule ? obj : { default : obj } ; }
function install ( Vue ) {
Vue . component ( 'md-whiteframe' , Vue . extend ( _mdWhiteframe2 . default ) ) ;
}
module . exports = exports [ 'default' ] ;
/***/ } ,
2016-12-16 06:01:17 +00:00
/***/ 250 :
2016-11-21 03:39:30 +00:00
/***/ function ( module , exports , _ _webpack _require _ _ ) {
var _ _vue _exports _ _ , _ _vue _options _ _
var _ _vue _styles _ _ = { }
/* styles */
2016-12-16 06:01:17 +00:00
_ _webpack _require _ _ ( 251 )
2016-11-21 03:39:30 +00:00
/* script */
2016-12-16 06:01:17 +00:00
_ _vue _exports _ _ = _ _webpack _require _ _ ( 252 )
2016-11-21 03:39:30 +00:00
_ _vue _options _ _ = _ _vue _exports _ _ = _ _vue _exports _ _ || { }
if (
typeof _ _vue _exports _ _ . default === "object" ||
typeof _ _vue _exports _ _ . default === "function"
) {
if ( Object . keys ( _ _vue _exports _ _ ) . some ( function ( key ) { return key !== "default" && key !== "__esModule" } ) ) { console . error ( "named exports are not supported in *.vue files." ) }
_ _vue _options _ _ = _ _vue _exports _ _ = _ _vue _exports _ _ . default
}
if ( typeof _ _vue _options _ _ === "function" ) {
_ _vue _options _ _ = _ _vue _options _ _ . options
}
2016-12-16 06:01:17 +00:00
_ _vue _options _ _ . _ _file = "/Users/marcosmoura/Projects/github/vue-material/src/components/mdWhiteframe/mdWhiteframe.vue"
2016-11-21 03:39:30 +00:00
/* hot reload */
if ( false ) { ( function ( ) {
var hotAPI = require ( "vue-hot-reload-api" )
hotAPI . install ( require ( "vue" ) , false )
if ( ! hotAPI . compatible ) return
module . hot . accept ( )
if ( ! module . hot . data ) {
2016-12-16 06:01:17 +00:00
hotAPI . createRecord ( "data-v-01d6d326" , _ _vue _options _ _ )
2016-11-21 03:39:30 +00:00
} else {
2016-12-16 06:01:17 +00:00
hotAPI . reload ( "data-v-01d6d326" , _ _vue _options _ _ )
2016-11-21 03:39:30 +00:00
}
} ) ( ) }
if ( _ _vue _options _ _ . functional ) { console . error ( "[vue-loader] mdWhiteframe.vue: functional components are not supported and should be defined in plain js files using render functions." ) }
module . exports = _ _vue _exports _ _
/***/ } ,
2016-12-16 06:01:17 +00:00
/***/ 251 :
2016-12-05 03:53:41 +00:00
/***/ function ( module , exports ) {
// removed by extract-text-webpack-plugin
/***/ } ,
2016-12-16 06:01:17 +00:00
/***/ 252 :
2016-11-21 03:39:30 +00:00
/***/ function ( module , exports ) {
'use strict' ;
Object . defineProperty ( exports , "__esModule" , {
value : true
} ) ;
//
//
exports . default = {
props : {
2016-12-08 12:48:37 +00:00
mdElevation : {
type : [ String , Number ] ,
default : 1
} ,
mdTag : {
type : String ,
default : 'div'
2016-11-21 03:39:30 +00:00
}
} ,
computed : {
classes : function classes ( ) {
2016-12-08 12:48:37 +00:00
var numberedElevation = parseInt ( this . mdElevation , 10 ) ;
2016-11-21 03:39:30 +00:00
var elevationClass = 'md-whiteframe-' ;
if ( ! isNaN ( numberedElevation ) && typeof numberedElevation === 'number' ) {
elevationClass += numberedElevation ;
elevationClass += 'dp' ;
2016-12-08 12:48:37 +00:00
} else if ( this . mdElevation . indexOf ( 'dp' ) > - 1 ) {
elevationClass += this . mdElevation ;
2016-11-21 03:39:30 +00:00
}
return elevationClass ;
}
2016-12-08 12:48:37 +00:00
} ,
render : function render ( createElement ) {
return createElement ( this . mdTag , {
staticClass : 'md-whiteframe' ,
class : this . classes
} , this . $slots . default ) ;
2016-11-21 03:39:30 +00:00
}
} ;
module . exports = exports [ 'default' ] ;
/***/ }
/******/ } )
} ) ;
;
//# sourceMappingURL=index.debug.js.map