@appscode/design-system 1.1.0-beta.57 → 1.1.0-beta.59

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.
@@ -1,7 +1,7 @@
1
1
  // terminal scss start
2
2
  .ac-terminal {
3
3
  width: 100%;
4
- border-top: 1px solid var(--ac-white-light);
4
+ border-top: 1px solid $primary-80;
5
5
  padding: 0;
6
6
  position: fixed;
7
7
  width: calc(100% - 250px);
@@ -15,7 +15,7 @@
15
15
 
16
16
  .terminal-body {
17
17
  font-family: "Inconsolata", monospace;
18
- background-color: var(--dark-bg-light);
18
+ background-color: $black-100;
19
19
  height: 100%;
20
20
  color: $white-100;
21
21
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@appscode/design-system",
3
- "version": "1.1.0-beta.57",
3
+ "version": "1.1.0-beta.59",
4
4
  "description": "A design system for Appscode websites and dashboards made using Bulma",
5
5
  "main": "main.scss",
6
6
  "scripts": {
@@ -21,7 +21,8 @@
21
21
  padding: 8px 16px;
22
22
  border-radius: 2px;
23
23
  strong {
24
- width: min(30px);
24
+ min-width: 30px;
25
+ font-size: 14px;
25
26
  }
26
27
  }
27
28
  </style>
@@ -28,7 +28,7 @@ withDefaults(defineProps<Props>(), {
28
28
  .overview-cards-wrapper {
29
29
  border: 1px solid $primary-90;
30
30
  margin-right: 20px;
31
- height: 100%;
31
+ height: calc(100% - 16px);
32
32
  }
33
33
  .overview-cards {
34
34
  display: grid;
@@ -21,8 +21,8 @@
21
21
  min-height: 30px;
22
22
  padding: 0 20px;
23
23
  background: $primary-20;
24
- border-top: 1px solid $primary-90;
25
- z-index: 99;
24
+ border-top: 1px solid #3d5e7c;
25
+ z-index: 9999;
26
26
  transition: 0.3s ease-in-out;
27
27
  }
28
28
 
@@ -13,7 +13,7 @@ export default {
13
13
  primaryColor="#f5f5f5"
14
14
  secondaryColor="#ecebeb"
15
15
  >
16
- <rect x="0" y="0" rx="0" ry="0" width="NaN" height="NaN" />
16
+ <rect x="0" y="0" rx="0" ry="0" />
17
17
  <rect x="10" y="70" rx="3" ry="3" width="120" height="11" />
18
18
  <rect x="10" y="100" rx="3" ry="3" width="120" height="11" />
19
19
  <rect x="150" y="100" rx="3" ry="3" width="60" height="11" />
@@ -168,7 +168,7 @@ onUpdated(() => {
168
168
  <table-container ref="ac_table_container" @scroller="handleScroller">
169
169
  <table
170
170
  ref="ac_table"
171
- class="table ac-table"
171
+ class="table ac-table is-bordered"
172
172
  :class="{
173
173
  'is-fullwidth':
174
174
  !isDynamicWidthTable ||
@@ -176,7 +176,7 @@ onUpdated(() => {
176
176
  isTableEmpty ||
177
177
  isLoaderActive,
178
178
  // 'ac-striped': !columnStriped,
179
- 'is-bordered': columnStriped,
179
+ // 'is-bordered': columnStriped,
180
180
  }"
181
181
  >
182
182
  <colgroup>
@@ -53,8 +53,8 @@ const indexOfCharacterLengthExceed = computed(() => {
53
53
  let idx = -1;
54
54
  let cumulativeLen = 0;
55
55
  for (const [index, po] of printableStringObjs.value.entries()) {
56
- const newLen = cumulativeLen + po.print.length;
57
- if (newLen > props.maxCharacterLength) {
56
+ const newLen = cumulativeLen + po.print.length + 2;
57
+ if (newLen + 2 > props.maxCharacterLength) {
58
58
  idx = index;
59
59
  break;
60
60
  }
@@ -48,8 +48,8 @@ const indexOfCharacterLengthExceed = computed(() => {
48
48
  let idx = -1;
49
49
  let cumulativeLen = 0;
50
50
  for (const [index, po] of printableStringObjs.value.entries()) {
51
- const newLen = cumulativeLen + po.print.length;
52
- if (newLen > props.maxCharacterLength) {
51
+ const newLen = cumulativeLen + po.print.length + 2;
52
+ if (newLen + 2 > props.maxCharacterLength) {
53
53
  idx = index;
54
54
  break;
55
55
  }
@@ -68,7 +68,7 @@ const indexOfCharacterLengthExceed = computed(() => {
68
68
  indexOfCharacterLengthExceed
69
69
  )"
70
70
  :key="printableStringOb.key"
71
- modifierClasses="is-info is-light"
71
+ modifierClasses="is-primary is-light"
72
72
  >
73
73
  <value-with-modal
74
74
  v-if="printableStringOb.exceededLength"