From df587c15c40e3cfa28825ddbba0ee57bab017146 Mon Sep 17 00:00:00 2001 From: Clement Ho Date: Mon, 29 Oct 2018 23:16:10 +0000 Subject: Update gitlab-ui to 1.9.0 --- app/assets/javascripts/commons/gitlab_ui.js | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'app/assets/javascripts/commons/gitlab_ui.js') diff --git a/app/assets/javascripts/commons/gitlab_ui.js b/app/assets/javascripts/commons/gitlab_ui.js index 1411f7ffd5e..f60665577fe 100644 --- a/app/assets/javascripts/commons/gitlab_ui.js +++ b/app/assets/javascripts/commons/gitlab_ui.js @@ -1,17 +1,17 @@ import Vue from 'vue'; import { - Pagination, - ProgressBar, - Modal, - LoadingIcon, - ModalDirective, - TooltipDirective, + GlPagination, + GlProgressBar, + GlModal, + GlLoadingIcon, + GlModalDirective, + GlTooltipDirective, } from '@gitlab-org/gitlab-ui'; -Vue.component('gl-pagination', Pagination); -Vue.component('gl-progress-bar', ProgressBar); -Vue.component('gl-ui-modal', Modal); -Vue.component('gl-loading-icon', LoadingIcon); +Vue.component('gl-pagination', GlPagination); +Vue.component('gl-progress-bar', GlProgressBar); +Vue.component('gl-ui-modal', GlModal); +Vue.component('gl-loading-icon', GlLoadingIcon); -Vue.directive('gl-modal', ModalDirective); -Vue.directive('gl-tooltip', TooltipDirective); +Vue.directive('gl-modal', GlModalDirective); +Vue.directive('gl-tooltip', GlTooltipDirective); -- cgit v1.2.1 From 0179a562e6b523544056b07ef4efb6835598dcb8 Mon Sep 17 00:00:00 2001 From: Clement Ho Date: Tue, 30 Oct 2018 16:30:31 -0500 Subject: Remove gitlab-ui's pagination from global --- app/assets/javascripts/commons/gitlab_ui.js | 2 -- 1 file changed, 2 deletions(-) (limited to 'app/assets/javascripts/commons/gitlab_ui.js') diff --git a/app/assets/javascripts/commons/gitlab_ui.js b/app/assets/javascripts/commons/gitlab_ui.js index f60665577fe..091117c6346 100644 --- a/app/assets/javascripts/commons/gitlab_ui.js +++ b/app/assets/javascripts/commons/gitlab_ui.js @@ -1,6 +1,5 @@ import Vue from 'vue'; import { - GlPagination, GlProgressBar, GlModal, GlLoadingIcon, @@ -8,7 +7,6 @@ import { GlTooltipDirective, } from '@gitlab-org/gitlab-ui'; -Vue.component('gl-pagination', GlPagination); Vue.component('gl-progress-bar', GlProgressBar); Vue.component('gl-ui-modal', GlModal); Vue.component('gl-loading-icon', GlLoadingIcon); -- cgit v1.2.1 From 779c90d1d25ce9dd65ec9839f2db12caa9672271 Mon Sep 17 00:00:00 2001 From: Clement Ho Date: Wed, 31 Oct 2018 15:18:20 +0000 Subject: Remove gitlab-ui's modal from global --- app/assets/javascripts/commons/gitlab_ui.js | 4 ---- 1 file changed, 4 deletions(-) (limited to 'app/assets/javascripts/commons/gitlab_ui.js') diff --git a/app/assets/javascripts/commons/gitlab_ui.js b/app/assets/javascripts/commons/gitlab_ui.js index f60665577fe..64a748d29db 100644 --- a/app/assets/javascripts/commons/gitlab_ui.js +++ b/app/assets/javascripts/commons/gitlab_ui.js @@ -2,16 +2,12 @@ import Vue from 'vue'; import { GlPagination, GlProgressBar, - GlModal, GlLoadingIcon, - GlModalDirective, GlTooltipDirective, } from '@gitlab-org/gitlab-ui'; Vue.component('gl-pagination', GlPagination); Vue.component('gl-progress-bar', GlProgressBar); -Vue.component('gl-ui-modal', GlModal); Vue.component('gl-loading-icon', GlLoadingIcon); -Vue.directive('gl-modal', GlModalDirective); Vue.directive('gl-tooltip', GlTooltipDirective); -- cgit v1.2.1 From 160157a92b4b0f493201a815e6e827e92abbf7c3 Mon Sep 17 00:00:00 2001 From: Mike Greiling Date: Tue, 30 Oct 2018 15:28:31 -0500 Subject: Prettify remaining files with differences in CE and EE --- app/assets/javascripts/commons/gitlab_ui.js | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'app/assets/javascripts/commons/gitlab_ui.js') diff --git a/app/assets/javascripts/commons/gitlab_ui.js b/app/assets/javascripts/commons/gitlab_ui.js index fe551480167..e93e1f5ea2c 100644 --- a/app/assets/javascripts/commons/gitlab_ui.js +++ b/app/assets/javascripts/commons/gitlab_ui.js @@ -1,9 +1,5 @@ import Vue from 'vue'; -import { - GlProgressBar, - GlLoadingIcon, - GlTooltipDirective, -} from '@gitlab-org/gitlab-ui'; +import { GlProgressBar, GlLoadingIcon, GlTooltipDirective } from '@gitlab-org/gitlab-ui'; Vue.component('gl-progress-bar', GlProgressBar); Vue.component('gl-loading-icon', GlLoadingIcon); -- cgit v1.2.1 From fe61d36cfa7f2fb57beb667ea83537cfc671f1a1 Mon Sep 17 00:00:00 2001 From: Clement Ho Date: Fri, 2 Nov 2018 08:34:02 +0000 Subject: Remove gitlab-ui's progress bar from global --- app/assets/javascripts/commons/gitlab_ui.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'app/assets/javascripts/commons/gitlab_ui.js') diff --git a/app/assets/javascripts/commons/gitlab_ui.js b/app/assets/javascripts/commons/gitlab_ui.js index e93e1f5ea2c..82a191d056b 100644 --- a/app/assets/javascripts/commons/gitlab_ui.js +++ b/app/assets/javascripts/commons/gitlab_ui.js @@ -1,7 +1,6 @@ import Vue from 'vue'; -import { GlProgressBar, GlLoadingIcon, GlTooltipDirective } from '@gitlab-org/gitlab-ui'; +import { GlLoadingIcon, GlTooltipDirective } from '@gitlab-org/gitlab-ui'; -Vue.component('gl-progress-bar', GlProgressBar); Vue.component('gl-loading-icon', GlLoadingIcon); Vue.directive('gl-tooltip', GlTooltipDirective); -- cgit v1.2.1