@appscode/design-system 1.0.43-alpha.119 → 1.0.43-alpha.121

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.
@@ -180,11 +180,12 @@
180
180
  }
181
181
  .left-content {
182
182
  .ac-files {
183
- max-height: 400px;
183
+ max-height: 350px;
184
184
  overflow-y: auto;
185
185
  padding: 10px;
186
186
  span {
187
187
  width: 20px;
188
+ white-space: nowrap;
188
189
  }
189
190
  }
190
191
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@appscode/design-system",
3
- "version": "1.0.43-alpha.119",
3
+ "version": "1.0.43-alpha.121",
4
4
  "description": "A design system for Appscode websites and dashboards made using Bulma",
5
5
  "main": "main.scss",
6
6
  "scripts": {
@@ -37,7 +37,7 @@
37
37
  :original-value="activeFile.content"
38
38
  :language="activeFile.format"
39
39
  :read-only="isEditorReadOnly"
40
- :editor-height="60"
40
+ :editor-height="editorHeight"
41
41
  :show-minimap="showMinimap"
42
42
  />
43
43
  <span v-else> *************** </span>
@@ -80,6 +80,10 @@ export default {
80
80
  showMinimap: {
81
81
  type: Boolean,
82
82
  default: false
83
+ },
84
+ editorHeight: {
85
+ type: Number,
86
+ default: 60
83
87
  }
84
88
  },
85
89
  data() {
@@ -55,8 +55,9 @@
55
55
  :toggle-hide-value="toggleHideValue"
56
56
  :is-preview-loading="isPreviewLoading"
57
57
  :is-editor-read-only="isEditorReadOnly"
58
- :previewYamls="previewYamls"
59
- :showMinimap="showMinimap"
58
+ :preview-yamls="previewYamls"
59
+ :show-minimap="showMinimap"
60
+ :editor-height="editorHeight"
60
61
  @setActiveKey="setActiveKey"
61
62
  />
62
63
  </template>
@@ -114,6 +115,10 @@ export default {
114
115
  deleteModalStatus: {
115
116
  type: String,
116
117
  default: "closed"
118
+ },
119
+ editorHeight: {
120
+ type: Number,
121
+ default: 60
117
122
  }
118
123
  },
119
124
  data() {