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

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.
@@ -237,6 +237,12 @@
237
237
  }
238
238
  }
239
239
 
240
+ .pass-strength {
241
+ position: absolute;
242
+ right: 30px;
243
+ top: 7px;
244
+ }
245
+
240
246
  // dark theme end
241
247
  /****************************************
242
248
  Responsive Classes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@appscode/design-system",
3
- "version": "1.1.0-alpha.3",
3
+ "version": "1.1.0-alpha.5",
4
4
  "description": "A design system for Appscode websites and dashboards made using Bulma",
5
5
  "main": "main.scss",
6
6
  "scripts": {
@@ -5,6 +5,7 @@
5
5
  v-if="!hideHeader"
6
6
  :header-title="tableTitle"
7
7
  :header-sub-title="tableSubTitle"
8
+ :remove-border-bottom="removeBorderBottom"
8
9
  :class="{ 'pl-0 pr-0': removeTableHeaderPadding }"
9
10
  >
10
11
  <header-item>
@@ -22,36 +23,40 @@ export default {
22
23
  props: {
23
24
  removeTableHeaderPadding: {
24
25
  type: Boolean,
25
- default: false
26
+ default: false,
26
27
  },
27
28
  tableTitle: {
28
29
  type: String,
29
- default: "Table"
30
+ default: "Table",
30
31
  },
31
32
  tableSubTitle: {
32
33
  type: String,
33
- default: ""
34
+ default: "",
34
35
  },
35
36
  searchable: {
36
37
  type: Boolean,
37
- default: true
38
+ default: true,
38
39
  },
39
40
  hideHeader: {
40
41
  type: Boolean,
41
- default: false
42
- }
42
+ default: false,
43
+ },
44
+ removeBorderBottom: {
45
+ type: Boolean,
46
+ default: false,
47
+ },
43
48
  },
44
49
  components: {
45
50
  ContentLayout: () => import("./ContentLayout.vue"),
46
51
  ContentHeader: () => import("./ContentHeader.vue"),
47
52
  HeaderItem: () => import("../header/HeaderItem.vue"),
48
- SearchBar: () => import("../searchbars/SearchBar.vue")
53
+ SearchBar: () => import("../searchbars/SearchBar.vue"),
49
54
  },
50
55
 
51
56
  data() {
52
57
  return {
53
- searchText: ""
58
+ searchText: "",
54
59
  };
55
- }
60
+ },
56
61
  };
57
62
  </script>
@@ -5,6 +5,7 @@
5
5
  v-if="!hideHeader"
6
6
  :header-title="tableTitle"
7
7
  :header-sub-title="tableSubTitle"
8
+ :remove-border-bottom="removeBorderBottom"
8
9
  :class="{ 'pl-0 pr-0': removeTableHeaderPadding }"
9
10
  >
10
11
  <template #title-right-actions>
@@ -50,6 +51,10 @@ export default defineComponent({
50
51
  type: Boolean,
51
52
  default: false,
52
53
  },
54
+ removeBorderBottom: {
55
+ type: Boolean,
56
+ default: false,
57
+ },
53
58
  },
54
59
  components: {
55
60
  ContentLayout: defineAsyncComponent(() =>