This repository has been archived on 2024-07-27. You can view files and clone it, but cannot push or open issues or pull requests.
keksAccountGUI/node_modulesOLD/vuetify/es5/framework.js.map

1 line
2.8 KiB
Plaintext

{"version":3,"sources":["../src/framework.ts"],"names":[],"mappings":";;;;;;;AAAA;;AAWA;;AAGA;;;;;;;;;;IAEqB,O;;;AAanB,qBAAgD;AAAA,QAAnC,MAAmC,uEAAF,EAAE;;AAAA;;AANhD,SAAA,SAAA,GAAoD,EAApD;AAEA,SAAA,SAAA,GAAsB,EAAtB;AAEA,SAAA,MAAA,GAAiC,EAAjC;AAGE,SAAK,MAAL,GAAc,MAAd;AAEA,SAAK,GAAL,CAAS,QAAQ,CAAC,WAAlB;AACA,SAAK,GAAL,CAAS,QAAQ,CAAC,UAAlB;AACA,SAAK,GAAL,CAAS,QAAQ,CAAC,IAAlB;AACA,SAAK,GAAL,CAAS,QAAQ,CAAC,KAAlB;AACA,SAAK,GAAL,CAAS,QAAQ,CAAC,IAAlB;AACA,SAAK,GAAL,CAAS,QAAQ,CAAC,KAAlB;AACD,G,CAED;AACA;AACA;;;;;yBACM,I,EAAW,U,EAAmB;AAAA;;AAClC,WAAK,SAAL,CAAe,OAAf,CAAuB,UAAA,QAAQ,EAAG;AAChC,YAAM,OAAO,GAAG,KAAI,CAAC,SAAL,CAAe,QAAf,CAAhB;AACA,QAAA,OAAO,CAAC,SAAR,GAAoB,KAAI,CAAC,SAAzB;AAEA,QAAA,OAAO,CAAC,IAAR,CAAa,IAAb,EAAmB,UAAnB;AACD,OALD,EADkC,CAQlC;AACA;AACA;;AACA,WAAK,SAAL,CAAe,GAAf,GAAqB,OAAO,CAAC,KAAK,MAAL,CAAY,GAAb,CAA5B;AACD,K,CAED;;;;wBACK,O,EAAuB;AAC1B,UAAM,QAAQ,GAAG,OAAO,CAAC,QAAzB;AAEA,UAAI,KAAK,SAAL,CAAe,QAAf,CAAwB,QAAxB,CAAJ,EAAuC;AAEvC,WAAK,SAAL,CAAe,QAAf,IAA2B,IAAI,OAAJ,CAAY,KAAK,MAAL,CAAY,QAAZ,CAAZ,CAA3B;AACA,WAAK,SAAL,CAAe,IAAf,CAAoB,QAApB;AACD;;;;;;;AAhDM,OAAA,CAAA,OAAA,GAAU,gBAAV;AAEA,OAAA,CAAA,SAAA,GAAY,KAAZ;AAEA,OAAA,CAAA,OAAA","sourcesContent":["import { install } from './install'\n\n// Types\nimport {\n VuetifyService,\n VuetifyServiceContract,\n} from 'vuetify/types/services'\nimport { VuetifyPreset } from 'vuetify/types/presets'\nimport Vue from 'vue'\n\n// Services\nimport * as services from './services'\n\n// Styles\nimport './styles/main.sass'\n\nexport default class Vuetify {\n static install = install\n\n static installed = false\n\n static version = __VUETIFY_VERSION__\n\n framework: Record<string, VuetifyServiceContract> = {}\n\n installed: string[] = []\n\n preset: Partial<VuetifyPreset> = {}\n\n constructor (preset: Partial<VuetifyPreset> = {}) {\n this.preset = preset\n\n this.use(services.Application)\n this.use(services.Breakpoint)\n this.use(services.Goto)\n this.use(services.Icons)\n this.use(services.Lang)\n this.use(services.Theme)\n }\n\n // Called on the new vuetify instance\n // bootstrap in install beforeCreate\n // Exposes ssrContext if available\n init (root: Vue, ssrContext?: object) {\n this.installed.forEach(property => {\n const service = this.framework[property]\n service.framework = this.framework\n\n service.init(root, ssrContext)\n })\n\n // rtl is not installed and\n // will never be called by\n // the init process\n this.framework.rtl = Boolean(this.preset.rtl) as any\n }\n\n // Instantiate a VuetifyService\n use (Service: VuetifyService) {\n const property = Service.property\n\n if (this.installed.includes(property)) return\n\n this.framework[property] = new Service(this.preset[property])\n this.installed.push(property)\n }\n}\n"],"sourceRoot":"","file":"framework.js"}