diff --git a/public/index.html b/public/index.html index 76d9481..55046db 100644 --- a/public/index.html +++ b/public/index.html @@ -12,6 +12,8 @@ + +
diff --git a/src/components/Cards/Card.vue b/src/components/Cards/Card.vue index 39c8d17..bdb7c3f 100644 --- a/src/components/Cards/Card.vue +++ b/src/components/Cards/Card.vue @@ -3,7 +3,7 @@
-
+

{{title}}

{{subTitle}}

@@ -24,12 +24,8 @@ export default { props: { title: String, subTitle: String, - type: String - }, - computed: { - isRTL() { - return this.$rtl.isRTL; - } + type: String, + cardHeaderClasses: [String, Object] } }; diff --git a/src/components/NotificationPlugin/Notification.vue b/src/components/NotificationPlugin/Notification.vue index edd6e4f..674f4b8 100644 --- a/src/components/NotificationPlugin/Notification.vue +++ b/src/components/NotificationPlugin/Notification.vue @@ -17,11 +17,11 @@ - - {{title}}
- +
+
{{title}}
+
- +
diff --git a/src/plugins/RTLPlugin.js b/src/plugins/RTLPlugin.js index 600ab65..c5c958e 100644 --- a/src/plugins/RTLPlugin.js +++ b/src/plugins/RTLPlugin.js @@ -17,8 +17,8 @@ export default { }, disableRTL() { this.isRTL = false; - this.getDocClasses().add('rtl'); - this.getDocClasses().add('menu-on-right'); + this.getDocClasses().remove('rtl'); + this.getDocClasses().remove('menu-on-right'); } } }); diff --git a/yarn.lock b/yarn.lock index 4e3044f..76ac636 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1393,6 +1393,16 @@ boom@5.x.x: dependencies: hoek "4.x.x" +bootstrap-rtl@^3.3.4: + version "3.3.4" + resolved "https://registry.yarnpkg.com/bootstrap-rtl/-/bootstrap-rtl-3.3.4.tgz#4f813e6fce91aa9f47ad47f48172355af61c1b11" + dependencies: + bootstrap "^3.3.4" + +bootstrap@^3.3.4: + version "3.3.7" + resolved "https://registry.yarnpkg.com/bootstrap/-/bootstrap-3.3.7.tgz#5a389394549f23330875a3b150656574f8a9eb71" + bootstrap@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/bootstrap/-/bootstrap-4.0.0.tgz#ceb03842c145fcc1b9b4e15da2a05656ba68469a"