@appscode/design-system 1.1.0-beta.7 → 1.1.0-beta.71

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.
Files changed (104) hide show
  1. package/base/utilities/_all.scss +2 -2
  2. package/base/utilities/_colors.scss +105 -136
  3. package/base/utilities/_global.scss +25 -19
  4. package/base/utilities/_layouts.scss +0 -138
  5. package/base/utilities/_typography.scss +2 -2
  6. package/components/_ac-alert-box.scss +2 -2
  7. package/components/_ac-code-highlight.scss +9 -12
  8. package/components/_ac-drag.scss +4 -4
  9. package/components/_ac-modal.scss +2 -2
  10. package/components/_ac-select-box.scss +5 -5
  11. package/components/_ac-table.scss +7 -7
  12. package/components/_ac-tabs.scss +29 -26
  13. package/components/_all.scss +8 -5
  14. package/components/_buttons.scss +10 -10
  15. package/components/_getkeeper.scss +110 -0
  16. package/components/_graph.scss +10 -10
  17. package/components/_image-upload.scss +4 -4
  18. package/components/_input-card.scss +232 -0
  19. package/components/{_ac-input.scss → _input.scss} +53 -7
  20. package/components/_left-sidebar-menu.scss +9 -13
  21. package/components/_monaco-editor.scss +2 -2
  22. package/components/_multi-select.scss +589 -0
  23. package/components/_navbar.scss +7 -7
  24. package/components/_nested-list.scss +2 -2
  25. package/components/_overview-info.scss +3 -3
  26. package/components/_pricing-table.scss +5 -5
  27. package/components/_progress-bar.scss +61 -74
  28. package/components/_subscription-card.scss +8 -10
  29. package/components/_table-of-content.scss +4 -4
  30. package/components/{_ac-terminal.scss → _terminal.scss} +63 -74
  31. package/components/_widget-menu.scss +7 -12
  32. package/components/_wizard.scss +13 -286
  33. package/components/bbum/_information-center.scss +8 -10
  34. package/components/bbum/_mobile-desktop.scss +9 -14
  35. package/components/bbum/_single-post-preview.scss +9 -9
  36. package/components/ui-builder/_ui-builder.scss +194 -10
  37. package/components/ui-builder/_vue-open-api.scss +58 -13
  38. package/icons/close-icon.svg +3 -0
  39. package/layouts/_code-preview.scss +6 -7
  40. package/package.json +1 -1
  41. package/vue-components/types/importFlow.ts +16 -0
  42. package/vue-components/types/notification.ts +3 -3
  43. package/vue-components/types/table.ts +1 -0
  44. package/vue-components/v2/banner/Banner.vue +1 -1
  45. package/vue-components/v2/editor/FilteredFileEditor.vue +2 -2
  46. package/vue-components/v2/modal/Modal.vue +1 -1
  47. package/vue-components/v3/alert/Alert.vue +2 -2
  48. package/vue-components/v3/banner/Banner.vue +2 -2
  49. package/vue-components/v3/breadcrumbs/Breadcrumb.vue +66 -4
  50. package/vue-components/v3/button/Button.vue +33 -11
  51. package/vue-components/v3/cards/Cluster.vue +6 -2
  52. package/vue-components/v3/cards/FeatureCard.vue +1 -1
  53. package/vue-components/v3/cards/FeatureCards.vue +1 -1
  54. package/vue-components/v3/cards/InfoCard.vue +1 -2
  55. package/vue-components/v3/cards/OverviewCard.vue +4 -0
  56. package/vue-components/v3/cards/OverviewCards.vue +10 -2
  57. package/vue-components/v3/cards/Vendor.vue +8 -5
  58. package/vue-components/v3/content/ContentTable.vue +1 -1
  59. package/vue-components/v3/editor/FilteredFileEditor.vue +5 -1
  60. package/vue-components/v3/footer/FooterArea.vue +8 -2
  61. package/vue-components/v3/footer/Info.vue +10 -8
  62. package/vue-components/v3/footer/Status.vue +24 -23
  63. package/vue-components/v3/footer/Usage.vue +20 -30
  64. package/vue-components/v3/form/Form.vue +0 -3
  65. package/vue-components/v3/form-fields/AcSingleInput.vue +3 -8
  66. package/vue-components/v3/form-fields/Input.vue +2 -3
  67. package/vue-components/v3/header/Header.vue +1 -1
  68. package/vue-components/v3/loaders/InfoCardLoader.vue +18 -60
  69. package/vue-components/v3/loaders/SingleInfoCardLoader.vue +24 -0
  70. package/vue-components/v3/modal/Modal.vue +6 -11
  71. package/vue-components/v3/navbar/Navbar.vue +0 -159
  72. package/vue-components/v3/navbar/NavbarItemContent.vue +5 -2
  73. package/vue-components/v3/navbar/User.vue +33 -16
  74. package/vue-components/v3/notification/AlertBox.vue +233 -3
  75. package/vue-components/v3/notification/Notification.vue +2 -2
  76. package/vue-components/v3/option-dots/Options.vue +3 -2
  77. package/vue-components/v3/pagination/Pagination.vue +27 -17
  78. package/vue-components/v3/preloader/Preloader.vue +1 -1
  79. package/vue-components/v3/searchbars/SearchBar.vue +1 -1
  80. package/vue-components/v3/sidebar/ClusterSwitcher.vue +1 -765
  81. package/vue-components/v3/sidebar/Sidebar.vue +3 -30
  82. package/vue-components/v3/sidebar/SidebarBody.vue +9 -2
  83. package/vue-components/v3/sidebar/SidebarFooter.vue +6 -3
  84. package/vue-components/v3/sidebar/SidebarHeader.vue +6 -2
  85. package/vue-components/v3/sidebar/Steps.vue +55 -51
  86. package/vue-components/v3/sidebar/sidebar-tabs/SidebarTabs.vue +78 -2
  87. package/vue-components/v3/sidebar/sidebar-tabs/SidebarTabsLayout.vue +12 -3
  88. package/vue-components/v3/table/Table.vue +14 -16
  89. package/vue-components/v3/table/TableCell.vue +1 -9
  90. package/vue-components/v3/table/TableRow.vue +2 -2
  91. package/vue-components/v3/table/table-cell/ArrayCell.vue +35 -32
  92. package/vue-components/v3/table/table-cell/CellValue.vue +14 -40
  93. package/vue-components/v3/table/table-cell/ObjectCell.vue +40 -38
  94. package/vue-components/v3/tag/Tag.vue +1 -0
  95. package/base/utilities/dark-theme.scss +0 -26
  96. package/components/_ac-card.scss +0 -0
  97. package/components/_ac-multi-select.scss +0 -780
  98. package/vue-components/text.vue +0 -1
  99. package/vue-components/types/longRunningTasks.ts +0 -20
  100. package/vue-components/v3/long-running-tasks/LongRunningTaskItem.vue +0 -94
  101. package/vue-components/v3/modals/LongRunningTasksModal.vue +0 -402
  102. package/vue-components/v3/terminal/LongRunningTaskTerminal.vue +0 -151
  103. /package/components/{_ac-accordion.scss → _accordion.scss} +0 -0
  104. /package/components/{_ac-report.scss → _report.scss} +0 -0
@@ -15,7 +15,7 @@
15
15
  // margin-bottom: 10px;
16
16
  // }
17
17
 
18
- // label action start
18
+ // // label action start
19
19
  // .label-action {
20
20
  // align-items: center;
21
21
  // height: 21px;
@@ -111,284 +111,6 @@
111
111
  // key-value-button end
112
112
 
113
113
  // select card start
114
- .card-select {
115
- height: 94px;
116
- padding: 10px;
117
- background-color: $white-100;
118
- border: 1px solid $primary-90;
119
- box-sizing: border-box;
120
- border-radius: 4px;
121
- transition: 0.3s ease-in-out;
122
- position: relative;
123
- z-index: 1;
124
- max-width: 250px;
125
-
126
- &.is-active-require-field {
127
- &:after {
128
- content: "";
129
- position: absolute;
130
- width: 100%;
131
- height: 100%;
132
- background-color: $ac-black;
133
- top: 0;
134
- left: 0;
135
- z-index: 1;
136
- opacity: 0.6;
137
- border-radius: 4px;
138
- }
139
-
140
- .r-dropdown-item {
141
- opacity: 1;
142
- visibility: visible;
143
- }
144
- }
145
-
146
- // &:last-child {
147
- // margin-bottom: 0;
148
- // }
149
-
150
- &.is-singleline {
151
- height: auto;
152
- padding: 0;
153
- border: none;
154
- background-color: transparent;
155
- width: auto;
156
- margin-bottom: 0;
157
-
158
- label {
159
- font-weight: 400 !important;
160
- }
161
-
162
- &:hover {
163
- box-shadow: none;
164
- border: none;
165
-
166
- label {
167
- color: $primary !important;
168
- }
169
- }
170
-
171
- .ac-single-radio,
172
- .ac-single-checkbox {
173
- label {
174
- font-size: 13px;
175
- line-height: 20px;
176
- color: $primary-5;
177
- padding-left: 25px !important;
178
- }
179
-
180
- .is-checkradio[type="checkbox"].ac-checkbox+label::before,
181
- .is-checkradio[type="radio"]+label:before,
182
- .is-checkradio[type="radio"]+label:after {
183
- width: 16px;
184
- height: 16px;
185
- top: 3px;
186
- }
187
-
188
- .is-checkradio[type="checkbox"].ac-checkbox+label::after {
189
- left: 5px;
190
- }
191
- }
192
-
193
- &.is-disabled {
194
- background-color: transparent;
195
-
196
- label {
197
- color: $primary-10;
198
- cursor: not-allowed;
199
- }
200
- }
201
-
202
- .ac-single-radio .is-checkradio[type="radio"]:checked+label {
203
- color: $primary;
204
- }
205
-
206
- .ac-single-radio {
207
- margin-bottom: 0;
208
- }
209
- }
210
-
211
- &.is-disabled {
212
- background-color: $white-100-lighter;
213
- cursor: not-allowed;
214
- opacity: 0.8;
215
-
216
- &:hover {
217
- border-color: transparent;
218
- box-shadow: none;
219
- }
220
- }
221
-
222
- &:hover {
223
- box-shadow: 0px 8px 50px rgba(0, 0, 0, 0.2);
224
- border: 1px solid transparent;
225
- }
226
-
227
- &.is-selected {
228
- border: 1px solid $primary;
229
- }
230
-
231
- &:last-child {
232
- margin-right: 0;
233
- }
234
-
235
- // inline more button Start
236
- .more-option {
237
- position: relative;
238
- z-index: 1;
239
-
240
- .btn-more-option {
241
- background-color: #e4e4e4;
242
- height: 16px;
243
- width: 30px;
244
- border: none;
245
- border-radius: 3px;
246
- padding: 0;
247
- cursor: pointer;
248
- margin-left: 5px;
249
- display: inline-flex;
250
- align-items: center;
251
- justify-content: center;
252
- transform: translate(0px, -2px);
253
-
254
- span {
255
- display: inline-flex;
256
- width: 4px;
257
- height: 4px;
258
- border-radius: 50%;
259
- background-color: #b1b1b1;
260
- margin-right: 2px;
261
-
262
- &:last-child {
263
- margin-right: 0;
264
- }
265
- }
266
- }
267
- }
268
-
269
- .r-dropdown-item {
270
- position: absolute;
271
- z-index: 2;
272
- right: 10px;
273
- top: 10px;
274
- background-color: $white-100;
275
- box-shadow: $ac-shadow-2;
276
- display: inline-block;
277
- border-radius: 4px;
278
- padding: 5px 15px;
279
- width: 200px;
280
- opacity: 0;
281
- visibility: hidden;
282
- transition: 0.3s ease-in-out;
283
-
284
- button.close-icon {
285
- position: absolute;
286
- right: -5px;
287
- top: -5px;
288
- border: 1px solid $black-80;
289
- font-size: 10px;
290
- height: 25px;
291
- width: 25px;
292
- text-align: center;
293
- background-color: $white-100;
294
- border-radius: 50%;
295
- cursor: pointer;
296
- color: $danger;
297
- transition: 0.3s ease-in-out;
298
- display: block;
299
-
300
- &:hover {
301
- color: $white-100;
302
- background-color: $danger;
303
- border: 1px solid $danger;
304
- }
305
- }
306
-
307
- li {
308
- display: inline-block;
309
-
310
- a {
311
- display: block;
312
- padding: 5px 10px 5px 0;
313
- color: $primary-20;
314
- font-size: 11px;
315
- text-decoration: underline;
316
- font-weight: 400;
317
-
318
- &:hover {
319
- color: $primary;
320
- }
321
- }
322
- }
323
- }
324
-
325
- // inline more button end
326
- .ac-single-radio,
327
- .ac-single-checkbox {
328
- margin-bottom: 10px;
329
-
330
- &:last-child {
331
- margin-bottom: 0;
332
- }
333
-
334
- label {
335
- font-family: $font-heading;
336
- font-style: normal;
337
- font-weight: 500;
338
- font-size: 13px;
339
- line-height: 24px;
340
- color: $primary-5;
341
- }
342
- }
343
-
344
- p {
345
- font-family: $font-paragraph;
346
- font-style: normal;
347
- font-weight: normal;
348
- font-size: 13px;
349
- line-height: 140%;
350
- color: $primary-10;
351
-
352
- &.is-warning {
353
- color: $danger;
354
- }
355
-
356
- a {
357
- text-decoration: underline;
358
- }
359
- }
360
-
361
- .ac-single-radio {
362
- .is-checkradio[type="radio"]+label {
363
- padding-left: 25px;
364
-
365
- &:before {
366
- width: 16px;
367
- height: 16px;
368
- top: 4px;
369
- }
370
-
371
- &:after {
372
- width: 16px;
373
- height: 16px;
374
- top: 4px;
375
- }
376
- }
377
- }
378
-
379
- .ac-single-checkbox {
380
- .is-checkradio[type="checkbox"] {
381
- &.ac-checkbox+label {
382
- font-family: $font-heading;
383
- font-style: normal;
384
- font-weight: 500;
385
- font-size: 13px;
386
- line-height: 20px;
387
- color: $primary-5;
388
- }
389
- }
390
- }
391
- }
392
114
 
393
115
  // select card end
394
116
 
@@ -575,7 +297,7 @@
575
297
  // .wizard-title,
576
298
  // .wizard-title.has-line {
577
299
  // span {
578
- // background-color: $ac-label-text;
300
+ // background-color: $primary-10;
579
301
  // }
580
302
  // }
581
303
 
@@ -734,7 +456,7 @@
734
456
  // .card-checkbox {
735
457
  // width: 358px;
736
458
  // height: 115px;
737
- // border: 1px solid $ac-label-text;
459
+ // border: 1px solid $primary-10;
738
460
  // }
739
461
 
740
462
  // checkbox card end
@@ -843,16 +565,21 @@
843
565
  Responsive Classes
844
566
  *****************************************/
845
567
  // Extra small devices (portrait phones, less than 576px)
846
- @media (max-width: 575.98px) {}
568
+ @media (max-width: 575.98px) {
569
+ }
847
570
 
848
571
  // Small devices (landscape phones, 576px and up)
849
- @media (min-width: 576px) and (max-width: 767.98px) {}
572
+ @media (min-width: 576px) and (max-width: 767.98px) {
573
+ }
850
574
 
851
575
  // Medium devices (tablets, 768px and up)
852
- @media (min-width: 768px) and (max-width: 991.98px) {}
576
+ @media (min-width: 768px) and (max-width: 991.98px) {
577
+ }
853
578
 
854
579
  // Large devices (desktops, 992px and up)
855
- @media (min-width: 992px) and (max-width: 1199.98px) {}
580
+ @media (min-width: 992px) and (max-width: 1199.98px) {
581
+ }
856
582
 
857
583
  // Extra large devices (large desktops, 1200px and up)
858
- @media (min-width: 1200px) {}
584
+ @media (min-width: 1200px) {
585
+ }
@@ -81,7 +81,7 @@
81
81
  content: "";
82
82
  width: 100%;
83
83
  height: 100%;
84
- background-color: $ac-black;
84
+ background-color: $black-5;
85
85
  z-index: -1;
86
86
  opacity: 0.2;
87
87
  }
@@ -111,7 +111,7 @@
111
111
  top: 0;
112
112
  width: 100%;
113
113
  height: 100%;
114
- background-color: $ac-black;
114
+ background-color: $black-5;
115
115
  opacity: 0.3;
116
116
  z-index: -1;
117
117
  }
@@ -169,6 +169,7 @@
169
169
  }
170
170
  }
171
171
  }
172
+
172
173
  .ac-system-body.has-ui-builder {
173
174
  .information-center .information-center-inner {
174
175
  top: 140px;
@@ -187,6 +188,7 @@
187
188
  }
188
189
  }
189
190
  }
191
+
190
192
  // dark theme end
191
193
  // Extra small devices (portrait phones, less than 576px)
192
194
  @media (max-width: 575.98px) {
@@ -196,17 +198,13 @@
196
198
  }
197
199
 
198
200
  // Small devices (landscape phones, 576px and up)
199
- @media (min-width: 576px) and (max-width: 767.98px) {
200
- }
201
+ @media (min-width: 576px) and (max-width: 767.98px) {}
201
202
 
202
203
  // Medium devices (tablets, 768px and up)
203
- @media (min-width: 768px) and (max-width: 991.98px) {
204
- }
204
+ @media (min-width: 768px) and (max-width: 991.98px) {}
205
205
 
206
206
  // Large devices (desktops, 992px and up)
207
- @media (min-width: 992px) and (max-width: 1199.98px) {
208
- }
207
+ @media (min-width: 992px) and (max-width: 1199.98px) {}
209
208
 
210
209
  // Extra large devices (large desktops, 1200px and up)
211
- @media (min-width: 1200px) {
212
- }
210
+ @media (min-width: 1200px) {}
@@ -30,7 +30,7 @@
30
30
  left: 50%;
31
31
  top: 7px;
32
32
  transform: translate(-50%, -50%);
33
- background-color: $ac-bg;
33
+ background-color: transparent;
34
34
  border-radius: 10px;
35
35
  }
36
36
 
@@ -44,7 +44,7 @@
44
44
  width: 10px;
45
45
  height: 10px;
46
46
  border-radius: 50%;
47
- background-color: $ac-bg;
47
+ background-color: transparent;
48
48
  display: block;
49
49
  position: absolute;
50
50
  top: 2px;
@@ -120,7 +120,7 @@
120
120
  .left-content {
121
121
  padding: 20px;
122
122
  border-radius: 4px;
123
- background-color: $ac-bg;
123
+ background-color: transparent;
124
124
 
125
125
  h3 {
126
126
  margin-bottom: 30px;
@@ -131,7 +131,7 @@
131
131
 
132
132
  .right-content {
133
133
  border-radius: 4px;
134
- background-color: $ac-bg;
134
+ background-color: transparent;
135
135
  }
136
136
  }
137
137
 
@@ -139,21 +139,16 @@
139
139
  Responsive Classes
140
140
  *****************************************/
141
141
  // Extra small devices (portrait phones, less than 576px)
142
- @media (max-width: 575.98px) {
143
- }
142
+ @media (max-width: 575.98px) {}
144
143
 
145
144
  // Small devices (landscape phones, 576px and up)
146
- @media (min-width: 576px) and (max-width: 767.98px) {
147
- }
145
+ @media (min-width: 576px) and (max-width: 767.98px) {}
148
146
 
149
147
  // Medium devices (tablets, 768px and up)
150
- @media (min-width: 768px) and (max-width: 991.98px) {
151
- }
148
+ @media (min-width: 768px) and (max-width: 991.98px) {}
152
149
 
153
150
  // Large devices (desktops, 992px and up)
154
- @media (min-width: 992px) and (max-width: 1199.98px) {
155
- }
151
+ @media (min-width: 992px) and (max-width: 1199.98px) {}
156
152
 
157
153
  // Extra large devices (large desktops, 1200px and up)
158
- @media (min-width: 1200px) {
159
- }
154
+ @media (min-width: 1200px) {}
@@ -180,17 +180,21 @@
180
180
  left: 24px;
181
181
  z-index: -2;
182
182
  }
183
+
183
184
  &:hover {
184
185
  &:nth-child(2) {
185
186
  z-index: 1;
186
187
  }
188
+
187
189
  &:nth-child(3) {
188
190
  z-index: 2;
189
191
  }
192
+
190
193
  img {
191
194
  transform: scale(1.2);
192
195
  }
193
196
  }
197
+
194
198
  img {
195
199
  width: 18px;
196
200
  transition: 0.3s ease-in-out;
@@ -226,7 +230,7 @@
226
230
  cursor: pointer;
227
231
  display: block;
228
232
  width: 50%;
229
- border-right: 1px solid $white-100-light !important;
233
+ border-right: 1px solid $white-100 !important;
230
234
  padding: 10px;
231
235
 
232
236
  &:last-child {
@@ -278,17 +282,13 @@
278
282
  }
279
283
 
280
284
  // Small devices (landscape phones, 576px and up)
281
- @media (min-width: 576px) and (max-width: 767.98px) {
282
- }
285
+ @media (min-width: 576px) and (max-width: 767.98px) {}
283
286
 
284
287
  // Medium devices (tablets, 768px and up)
285
- @media (min-width: 768px) and (max-width: 991.98px) {
286
- }
288
+ @media (min-width: 768px) and (max-width: 991.98px) {}
287
289
 
288
290
  // Large devices (desktops, 992px and up)
289
- @media (min-width: 992px) and (max-width: 1199.98px) {
290
- }
291
+ @media (min-width: 992px) and (max-width: 1199.98px) {}
291
292
 
292
293
  // Extra large devices (large desktops, 1200px and up)
293
- @media (min-width: 1200px) {
294
- }
294
+ @media (min-width: 1200px) {}