@appscode/design-system 1.1.0-alpha.5 → 1.1.0-alpha.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -17,7 +17,7 @@
17
17
  margin-bottom: 10px;
18
18
  }
19
19
 
20
- p {
20
+ p :not(.ac-notification *){
21
21
  font-size: 13px;
22
22
  margin-bottom: 10px;
23
23
  color: $ac-color-value;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@appscode/design-system",
3
- "version": "1.1.0-alpha.5",
3
+ "version": "1.1.0-alpha.7",
4
4
  "description": "A design system for Appscode websites and dashboards made using Bulma",
5
5
  "main": "main.scss",
6
6
  "scripts": {
@@ -32,6 +32,7 @@
32
32
  <!-- modal body start -->
33
33
  <div
34
34
  class="ac-modal-body ac-vscrollbar"
35
+ :class="modifierBodyClasses"
35
36
  data-testid="ac-modal-content-with-scroll"
36
37
  >
37
38
  <div class="ac-modal-content">
@@ -45,11 +46,7 @@
45
46
  <!-- modal footer start -->
46
47
  <div
47
48
  v-if="!hideActionFooter"
48
- class="
49
- ac-modal-footer
50
- action-footer
51
- is-flex is-align-items-center is-justify-content-space-between
52
- "
49
+ class="ac-modal-footer action-footer is-flex is-align-items-center is-justify-content-space-between"
53
50
  >
54
51
  <div>
55
52
  <slot name="modal-footer-left" />
@@ -91,6 +88,10 @@ export default {
91
88
  type: Boolean,
92
89
  default: false,
93
90
  },
91
+ modifierBodyClasses: {
92
+ type: String,
93
+ default: "",
94
+ },
94
95
  },
95
96
 
96
97
  components: {
@@ -30,6 +30,7 @@
30
30
  <!-- modal body start -->
31
31
  <div
32
32
  class="ac-modal-body ac-vscrollbar"
33
+ :class="modifierBodyClasses"
33
34
  data-testid="ac-modal-content-with-scroll"
34
35
  >
35
36
  <div class="ac-modal-content">
@@ -92,6 +93,10 @@ export default defineComponent({
92
93
  type: Boolean,
93
94
  default: false,
94
95
  },
96
+ modifierBodyClasses: {
97
+ type: String,
98
+ default: "",
99
+ },
95
100
  },
96
101
  emits: ["closemodal"],
97
102