@appscode/design-system 1.0.43-alpha.128 → 1.0.43-alpha.130

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.
@@ -81,3 +81,35 @@
81
81
  }
82
82
  }
83
83
  }
84
+
85
+ .resource {
86
+ display: flex;
87
+ align-items: center;
88
+ border-left: 1px solid $ac-white-light;
89
+ padding: 0 1.5rem;
90
+ margin-top: -10px;
91
+ margin-bottom: -10px;
92
+ .r-icon {
93
+ display: flex;
94
+ align-items: center;
95
+ max-width: 40px;
96
+ }
97
+
98
+ .r-data {
99
+ margin-left: 0.8rem;
100
+ .request,
101
+ .limit {
102
+ font-weight: 500;
103
+ min-width: 50px;
104
+ text-align: center;
105
+ }
106
+ .request {
107
+ font-weight: 300;
108
+ }
109
+ hr {
110
+ margin: 0;
111
+ padding: 0;
112
+ background-color: $ac-white-light;
113
+ }
114
+ }
115
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@appscode/design-system",
3
- "version": "1.0.43-alpha.128",
3
+ "version": "1.0.43-alpha.130",
4
4
  "description": "A design system for Appscode websites and dashboards made using Bulma",
5
5
  "main": "main.scss",
6
6
  "scripts": {
@@ -4,6 +4,7 @@
4
4
  :class="`${modifierClasses}${isLoaderActive ? ' is-loading' : ''}`"
5
5
  :disabled="disabled"
6
6
  @click="handleClick"
7
+ :title="tooltip"
7
8
  >
8
9
  <span v-if="iconClass || iconImage" class="icon is-small">
9
10
  <img
@@ -27,6 +28,10 @@ export default {
27
28
  type: String,
28
29
  default: "",
29
30
  },
31
+ tooltip: {
32
+ type: String,
33
+ defualt: undefined
34
+ },
30
35
  // for loader
31
36
  isLoaderActive: {
32
37
  type: Boolean,
@@ -4,6 +4,7 @@
4
4
  :class="`${modifierClasses}${isLoaderActive ? ' is-loading' : ''}`"
5
5
  :disabled="disabled ? true : null"
6
6
  @click="handleClick"
7
+ :title="tooltip"
7
8
  >
8
9
  <span v-if="iconClass || iconImage" class="icon is-small">
9
10
  <img
@@ -28,6 +29,10 @@ export default defineComponent({
28
29
  type: String,
29
30
  default: "",
30
31
  },
32
+ tooltip: {
33
+ type: String,
34
+ defualt: undefined
35
+ },
31
36
  // for loader
32
37
  isLoaderActive: {
33
38
  type: Boolean,