Skip to content

Commit

Permalink
revert: partial revert of #5789
Browse files Browse the repository at this point in the history
broke production
  • Loading branch information
johnleider committed Dec 12, 2018
1 parent 5d9dcf9 commit e847e35
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
Expand Up @@ -2,7 +2,7 @@
// Utilities
import { goTo } from '@/util/helpers'
import { mapState } from 'vuex'
import { getObjectValueByPath } from 'vuetify/lib/util/helpers'
import { getObjectValueByPath } from 'vuetify/es5/util/helpers'
import upperFirst from 'lodash/upperFirst'
import camelCase from 'lodash/camelCase'
Expand Down
Expand Up @@ -68,7 +68,7 @@
import { mapState } from 'vuex'
import { capitalize, camel } from '@/util/helpers'
import componentNameMap from '@/data/i18n/componentNameMap'
import { getObjectValueByPath } from 'vuetify/lib/util/helpers'
import { getObjectValueByPath } from 'vuetify/es5/util/helpers'
export default {
props: {
Expand Down
2 changes: 1 addition & 1 deletion packages/vuetifyjs.com/src/examples/scrolling/usage.vue
Expand Up @@ -26,7 +26,7 @@
</template>

<script>
import * as easings from 'vuetify/lib/util/easing-patterns'
import * as easings from 'vuetify/es5/util/easing-patterns'
export default {
data () {
Expand Down
4 changes: 2 additions & 2 deletions packages/vuetifyjs.com/src/pages/ThemeGeneratorPage.vue
Expand Up @@ -85,7 +85,7 @@
</template>

<script>
import colors from 'vuetify/lib/util/colors'
import colors from 'vuetify/es5/util/colors'
import { Swatches } from 'vue-color'
const files = require.context(
Expand Down Expand Up @@ -144,7 +144,7 @@
e[k] = this.findName(this.theme[k])
return e
}, {})
let str = `import colors from 'vuetify/lib/util/colors'\n\n${JSON.stringify(names, null, 2)}`
let str = `import colors from 'vuetify/es5/util/colors'\n\n${JSON.stringify(names, null, 2)}`
str = str.replace(/"(.*)":\s"(.*)"/g, '$1: colors.$2')
return str
Expand Down
Expand Up @@ -4,7 +4,7 @@
helpers-section-head(value="Motion.Transitions.createYourOwnHeader")
helpers-section-text(value="Motion.Transitions.createYourOwnText1")
helpers-markup(lang="javascript")
| import { createSimpleTransition } from 'vuetify/lib/util/helpers'
| import { createSimpleTransition } from 'vuetify/es5/util/helpers'
| &nbsp;
| const myTransition = createSimpleTransition('my-transition')
| &nbsp;
Expand Down
4 changes: 2 additions & 2 deletions packages/vuetifyjs.com/src/pages/style/ColorsPage.vue
Expand Up @@ -25,7 +25,7 @@
| import Vuetify from 'vuetify'
|
| // Helpers
| import colors from 'vuetify/lib/util/colors'
| import colors from 'vuetify/es5/util/colors'
|
| Vue.use(Vuetify, {
| theme: {
Expand Down Expand Up @@ -102,7 +102,7 @@
</template>

<script>
import colors from 'vuetify/lib/util/colors'
import colors from 'vuetify/es5/util/colors'
import { kebab } from '@/util/helpers'
export default {
Expand Down
4 changes: 2 additions & 2 deletions packages/vuetifyjs.com/src/pages/style/ThemePage.vue
Expand Up @@ -39,7 +39,7 @@
| })
helpers-section-text(:value="`${namespace}.customizingText3`")
helpers-markup(lang="javascript")
| import colors from 'vuetify/lib/util/colors'
| import colors from 'vuetify/es5/util/colors'
|
| Vue.use(Vuetify, {
| theme: {
Expand All @@ -58,7 +58,7 @@
helpers-section-text(:value="`${namespace}.variantsText1`")
helpers-markup(lang="javascript")
| // src/theme.js
| import colors from 'vuetify/lib/util/colors'
| import colors from 'vuetify/es5/util/colors'
|
| export default {
| primary: {
Expand Down

0 comments on commit e847e35

Please sign in to comment.