Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ThemeProvider.js.map 1.1KB

1
  1. {"version":3,"sources":["../../src/util/ThemeProvider.ts"],"names":[],"mappings":";;;;;;;;;;AAEA;;;;;;AAEA;kBACe,sBAAO,mBAAP,EAAkB,MAAlB,CAAyB;AACtC,UAAM,gBADgC;AAGtC,WAAO;AACL,cAAM;AADD,KAH+B;AAOtC,cAAU;AACR,cADQ,oBACF;AACJ,mBAAO,KAAK,IAAL,GAAY,KAAK,UAAjB,GAA8B,oBAAU,OAAV,CAAkB,QAAlB,CAA2B,MAA3B,CAAkC,IAAlC,CAAuC,IAAvC,CAArC;AACD;AAHO,KAP4B;AAatC,UAbsC,oBAahC;AACJ,eAAO,KAAK,MAAL,CAAY,OAAZ,IAAwB,KAAK,MAAL,CAAY,OAAZ,CAAqB,IAArB,CAA0B;AAAA,mBAAQ,CAAC,KAAK,SAAN,IAAmB,KAAK,IAAL,KAAc,GAAzC;AAAA,SAA1B,CAA/B;AACD;AAfqC,CAAzB,C","sourcesContent":["import { VNode } from 'vue'\nimport Themeable from '../mixins/themeable'\nimport mixins from './mixins'\n\n/* @vue/component */\nexport default mixins(Themeable).extend({\n name: 'theme-provider',\n\n props: {\n root: Boolean\n },\n\n computed: {\n isDark (): boolean {\n return this.root ? this.rootIsDark : Themeable.options.computed.isDark.call(this)\n }\n },\n\n render (): VNode {\n return this.$slots.default! && this.$slots.default!.find(node => !node.isComment && node.text !== ' ')!\n }\n})\n"],"sourceRoot":""}