@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
@@ -0,0 +1,232 @@
1
+ // card select
2
+ .card-select {
3
+ height: 94px;
4
+ padding: 10px;
5
+ background-color: $white-100;
6
+ border: 1px solid $primary-90;
7
+ box-sizing: border-box;
8
+ border-radius: 4px;
9
+ transition: 0.3s ease-in-out;
10
+ position: relative;
11
+ z-index: 1;
12
+ // width: 250px;
13
+
14
+ &.is-active-require-field {
15
+ &:after {
16
+ content: "";
17
+ position: absolute;
18
+ width: 100%;
19
+ height: 100%;
20
+ background-color: $black-5;
21
+ top: 0;
22
+ left: 0;
23
+ z-index: 1;
24
+ opacity: 0.6;
25
+ border-radius: 4px;
26
+ }
27
+
28
+ .r-dropdown-item {
29
+ opacity: 1;
30
+ visibility: visible;
31
+ }
32
+ }
33
+
34
+ &.is-singleline {
35
+ height: auto;
36
+ padding: 0;
37
+ border: none;
38
+ background-color: transparent;
39
+ width: auto;
40
+ margin-bottom: 0;
41
+
42
+ label {
43
+ font-weight: 400 !important;
44
+ }
45
+
46
+ &:hover {
47
+ box-shadow: none;
48
+ border: none;
49
+
50
+ label {
51
+ color: $primary !important;
52
+ }
53
+ }
54
+
55
+ .ac-single-radio,
56
+ .ac-single-checkbox {
57
+ label {
58
+ font-size: 13px;
59
+ line-height: 20px;
60
+ color: $primary-5;
61
+ padding-left: 25px !important;
62
+ }
63
+ }
64
+
65
+ &.is-disabled {
66
+ background-color: transparent;
67
+
68
+ label {
69
+ color: $primary-10;
70
+ cursor: not-allowed;
71
+ }
72
+ }
73
+
74
+ .ac-single-radio .is-checkradio[type="radio"]:checked + label {
75
+ color: $primary;
76
+ }
77
+
78
+ .ac-single-radio {
79
+ margin-bottom: 0;
80
+ }
81
+ }
82
+
83
+ &.is-disabled {
84
+ background-color: $primary-97;
85
+ cursor: not-allowed;
86
+ opacity: 0.8;
87
+
88
+ &:hover {
89
+ border-color: transparent;
90
+ box-shadow: none;
91
+ }
92
+ }
93
+
94
+ &:hover {
95
+ box-shadow: 0px 8px 50px rgba(0, 0, 0, 0.2);
96
+ border: 1px solid transparent;
97
+ }
98
+
99
+ &.is-selected {
100
+ border: 1px solid $primary;
101
+ }
102
+
103
+ &:last-child {
104
+ margin-right: 0;
105
+ }
106
+
107
+ // inline more button Start
108
+ .more-option {
109
+ position: relative;
110
+ z-index: 1;
111
+
112
+ .btn-more-option {
113
+ background-color: #e4e4e4;
114
+ height: 16px;
115
+ width: 30px;
116
+ border: none;
117
+ border-radius: 3px;
118
+ padding: 0;
119
+ cursor: pointer;
120
+ margin-left: 5px;
121
+ display: inline-flex;
122
+ align-items: center;
123
+ justify-content: center;
124
+ transform: translate(0px, -2px);
125
+
126
+ span {
127
+ display: inline-flex;
128
+ width: 4px;
129
+ height: 4px;
130
+ border-radius: 50%;
131
+ background-color: #b1b1b1;
132
+ margin-right: 2px;
133
+
134
+ &:last-child {
135
+ margin-right: 0;
136
+ }
137
+ }
138
+ }
139
+ }
140
+
141
+ .r-dropdown-item {
142
+ position: absolute;
143
+ z-index: 2;
144
+ right: 10px;
145
+ top: 10px;
146
+ background-color: $white-100;
147
+ box-shadow: $ac-shadow-2;
148
+ display: inline-block;
149
+ border-radius: 4px;
150
+ padding: 5px 15px;
151
+ width: 200px;
152
+ opacity: 0;
153
+ visibility: hidden;
154
+ transition: 0.3s ease-in-out;
155
+
156
+ button.close-icon {
157
+ position: absolute;
158
+ right: -5px;
159
+ top: -5px;
160
+ border: 1px solid $black-80;
161
+ font-size: 10px;
162
+ height: 25px;
163
+ width: 25px;
164
+ text-align: center;
165
+ background-color: $white-100;
166
+ border-radius: 50%;
167
+ cursor: pointer;
168
+ color: $danger;
169
+ transition: 0.3s ease-in-out;
170
+ display: block;
171
+
172
+ &:hover {
173
+ color: $white-100;
174
+ background-color: $danger;
175
+ border: 1px solid $danger;
176
+ }
177
+ }
178
+
179
+ li {
180
+ display: inline-block;
181
+
182
+ a {
183
+ display: block;
184
+ padding: 5px 10px 5px 0;
185
+ color: $primary-20;
186
+ font-size: 11px;
187
+ text-decoration: underline;
188
+ font-weight: 400;
189
+
190
+ &:hover {
191
+ color: $primary;
192
+ }
193
+ }
194
+ }
195
+ }
196
+
197
+ // inline more button end
198
+ .ac-single-radio,
199
+ .ac-single-checkbox {
200
+ margin-bottom: 10px;
201
+
202
+ &:last-child {
203
+ margin-bottom: 0;
204
+ }
205
+
206
+ label {
207
+ font-family: $font-heading;
208
+ font-style: normal;
209
+ font-weight: 500;
210
+ font-size: 13px;
211
+ line-height: 24px;
212
+ color: $primary-5;
213
+ }
214
+ }
215
+
216
+ p {
217
+ font-family: $font-paragraph;
218
+ font-style: normal;
219
+ font-weight: normal;
220
+ font-size: 13px;
221
+ line-height: 140%;
222
+ color: $primary-10;
223
+
224
+ &.is-warning {
225
+ color: $danger;
226
+ }
227
+
228
+ a {
229
+ text-decoration: underline;
230
+ }
231
+ }
232
+ }
@@ -19,7 +19,7 @@
19
19
  // top: 10px;
20
20
  // z-index: 1;
21
21
  // font-size: 13px;
22
- // color: $ac-label-text;
22
+ // color: $primary-10;
23
23
  // font-weight: 400;
24
24
  // }
25
25
  // }
@@ -43,7 +43,7 @@
43
43
  // height: 36px;
44
44
  // font-weight: 400;
45
45
  // border-radius: 4px;
46
- // border: 1px solid $ac-label-text;
46
+ // border: 1px solid $primary-10;
47
47
  // font-size: 13px;
48
48
 
49
49
  // .file-cta {
@@ -80,7 +80,7 @@
80
80
 
81
81
  // &:focus {
82
82
  // outline: none;
83
- // border-bottom: 1px solid $ac-label-text;
83
+ // border-bottom: 1px solid $primary-10;
84
84
  // }
85
85
  // }
86
86
 
@@ -201,7 +201,7 @@
201
201
  // &[type="checkbox"] + label {
202
202
  // padding-top: 3px;
203
203
  // &::before {
204
- // background-color: $ac-gray-light;
204
+ // background-color: $black-50;
205
205
  // }
206
206
  // }
207
207
 
@@ -263,7 +263,7 @@
263
263
 
264
264
  // &:focus {
265
265
  // outline: none;
266
- // border-bottom: 1px solid $ac-label-text;
266
+ // border-bottom: 1px solid $primary-10;
267
267
  // }
268
268
  // }
269
269
  // }
@@ -322,10 +322,10 @@
322
322
  // }
323
323
 
324
324
  // label {
325
- // color: $ac-label-text;
325
+ // color: $primary-10;
326
326
  // }
327
327
  // .button.is-information:focus {
328
- // background-color: $dark-bg-light;
328
+ // background-color: $black-80;
329
329
  // }
330
330
  // }
331
331
  // }
@@ -898,4 +898,50 @@
898
898
  .ac-search:focus {
899
899
  width: 200px !important;
900
900
  padding-right: 10px;
901
+ }
902
+
903
+ // check radio
904
+
905
+ .ac-single-radio {
906
+ .is-checkradio[type="radio"]+label {
907
+ padding-left: 25px;
908
+
909
+ &:before {
910
+ width: 16px;
911
+ height: 16px;
912
+ top: 4px;
913
+ background: transparent;
914
+ }
915
+
916
+ &:after {
917
+ width: 16px;
918
+ height: 16px;
919
+ top: 4px;
920
+ }
921
+ }
922
+ }
923
+
924
+ .is-checkradio[type="radio"]+label::after,
925
+ .is-checkradio[type="radio"]+label:after {
926
+ background: $primary;
927
+ }
928
+
929
+ .is-checkradio[type="checkbox"]:checked+label::before,
930
+ .is-checkradio[type="checkbox"]:checked+label:before,
931
+ .is-checkradio[type="radio"]:checked+label::before,
932
+ .is-checkradio[type="radio"]:checked+label:before {
933
+ border: 0.2rem solid $primary;
934
+ }
935
+
936
+ .is-checkradio[type="checkbox"]:hover:not([disabled])+label::before,
937
+ .is-checkradio[type="checkbox"]:hover:not([disabled])+label:before,
938
+ .is-checkradio[type="radio"]:hover:not([disabled])+label::before,
939
+ .is-checkradio[type="radio"]:hover:not([disabled])+label:before {
940
+ border-color: $primary-30 !important;
941
+ }
942
+
943
+ .is-checkradio[type="checkbox"]+label::after,
944
+ .is-checkradio[type="checkbox"]+label:after {
945
+ border-width: 0.2rem;
946
+ border-color: $primary;
901
947
  }
@@ -98,7 +98,7 @@
98
98
  // height: calc(100vh - 80px);
99
99
  // overflow-y: auto;
100
100
  // padding-top: 4px;
101
- // scrollbar-color: $white-100-light transparent;
101
+ // scrollbar-color: $white-100 transparent;
102
102
 
103
103
  // /* width */
104
104
  // &::-webkit-scrollbar {
@@ -257,7 +257,7 @@
257
257
 
258
258
  // // &:active {
259
259
  // // i.fa {
260
- // // background-color: $white-100-lighter;
260
+ // // background-color: $primary-90;
261
261
  // // width: 25px;
262
262
  // // height: 25px;
263
263
  // // text-align: center;
@@ -313,7 +313,7 @@
313
313
  // }
314
314
 
315
315
  // .multiselect__input {
316
- // background-color: $ac-bg-light-gray !important;
316
+ // background-color: transparent-light-gray !important;
317
317
  // top: 13px;
318
318
 
319
319
  // &::placeholder {
@@ -324,7 +324,7 @@
324
324
  // }
325
325
 
326
326
  // .multiselect__single {
327
- // background-color: $ac-bg-light-gray !important;
327
+ // background-color: transparent-light-gray !important;
328
328
  // top: 14px !important;
329
329
 
330
330
  // img {
@@ -452,7 +452,7 @@ Responsive Classes
452
452
  // ul {
453
453
  // max-height: 0;
454
454
  // transition: max-height 0.2s ease-out;
455
- // background-color: $ac-bg;
455
+ // background-color: transparent;
456
456
 
457
457
  // li {
458
458
  // a {
@@ -470,17 +470,13 @@ Responsive Classes
470
470
  }
471
471
 
472
472
  // Small devices (landscape phones, 576px and up)
473
- @media (min-width: 576px) and (max-width: 767.98px) {
474
- }
473
+ @media (min-width: 576px) and (max-width: 767.98px) {}
475
474
 
476
475
  // Medium devices (tablets, 768px and up)
477
- @media (min-width: 768px) and (max-width: 991.98px) {
478
- }
476
+ @media (min-width: 768px) and (max-width: 991.98px) {}
479
477
 
480
478
  // Large devices (desktops, 992px and up)
481
- @media (min-width: 992px) and (max-width: 1199.98px) {
482
- }
479
+ @media (min-width: 992px) and (max-width: 1199.98px) {}
483
480
 
484
481
  // Extra large devices (large desktops, 1200px and up)
485
- @media (min-width: 1200px) {
486
- }
482
+ @media (min-width: 1200px) {}
@@ -1,6 +1,6 @@
1
1
  .editor {
2
2
  border: none;
3
- background-color: $white-100-light !important;
3
+ background-color: $white-100 !important;
4
4
  }
5
5
 
6
6
  .decorationsOverviewRuler {
@@ -63,4 +63,4 @@
63
63
  height: 6px !important;
64
64
  }
65
65
  }
66
- }
66
+ }