@appscode/design-system 1.1.0-beta.15 → 1.1.0-beta.18
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.
- package/components/_wizard.scss +1 -1
- package/components/ui-builder/_ui-builder.scss +9 -13
- package/package.json +1 -1
- package/vue-components/v3/cards/Vendor.vue +1 -1
- package/vue-components/v3/editor/FilteredFileEditor.vue +4 -0
- package/vue-components/v3/navbar/User.vue +4 -4
- package/vue-components/v3/pagination/Pagination.vue +2 -1
- package/vue-components/v3/sidebar/ClusterSwitcher.vue +3 -0
package/components/_wizard.scss
CHANGED
|
@@ -198,6 +198,7 @@
|
|
|
198
198
|
}
|
|
199
199
|
|
|
200
200
|
.is-collapsed {
|
|
201
|
+
|
|
201
202
|
&.ac-nested-elements::before,
|
|
202
203
|
&.ac-nested-elements::after {
|
|
203
204
|
display: none;
|
|
@@ -206,9 +207,9 @@
|
|
|
206
207
|
|
|
207
208
|
// details with checkradio
|
|
208
209
|
.details-with-checkradio-wrapper {
|
|
209
|
-
display:
|
|
210
|
-
|
|
211
|
-
|
|
210
|
+
display: flex;
|
|
211
|
+
flex-wrap: wrap;
|
|
212
|
+
gap: 15px;
|
|
212
213
|
}
|
|
213
214
|
|
|
214
215
|
// dark theme start
|
|
@@ -248,21 +249,16 @@
|
|
|
248
249
|
Responsive Classes
|
|
249
250
|
*****************************************/
|
|
250
251
|
// Extra small devices (portrait phones, less than 576px)
|
|
251
|
-
@media (max-width: 575.98px) {
|
|
252
|
-
}
|
|
252
|
+
@media (max-width: 575.98px) {}
|
|
253
253
|
|
|
254
254
|
// Small devices (landscape phones, 576px and up)
|
|
255
|
-
@media (min-width: 576px) and (max-width: 767.98px) {
|
|
256
|
-
}
|
|
255
|
+
@media (min-width: 576px) and (max-width: 767.98px) {}
|
|
257
256
|
|
|
258
257
|
// Medium devices (tablets, 768px and up)
|
|
259
|
-
@media (min-width: 768px) and (max-width: 991.98px) {
|
|
260
|
-
}
|
|
258
|
+
@media (min-width: 768px) and (max-width: 991.98px) {}
|
|
261
259
|
|
|
262
260
|
// Large devices (desktops, 992px and up)
|
|
263
|
-
@media (min-width: 992px) and (max-width: 1199.98px) {
|
|
264
|
-
}
|
|
261
|
+
@media (min-width: 992px) and (max-width: 1199.98px) {}
|
|
265
262
|
|
|
266
263
|
// Extra large devices (large desktops, 1200px and up)
|
|
267
|
-
@media (min-width: 1200px) {
|
|
268
|
-
}
|
|
264
|
+
@media (min-width: 1200px) {}
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
2
|
import { defineAsyncComponent, ref, watch, computed, nextTick } from "vue";
|
|
3
|
-
import type { User
|
|
3
|
+
import type { User } from "../../types/user";
|
|
4
4
|
|
|
5
|
-
interface FormatedOrgs extends
|
|
5
|
+
interface FormatedOrgs extends User {
|
|
6
6
|
isPersonalAccount?: boolean;
|
|
7
7
|
}
|
|
8
8
|
|
|
@@ -93,13 +93,13 @@ watch(dropDownStatus, (n) => {
|
|
|
93
93
|
<navbar-item :modifierClasses="'ac-profile-button'">
|
|
94
94
|
<template #navbar-item>
|
|
95
95
|
<div class="ac-user-profile mr-8">
|
|
96
|
-
<img :src="
|
|
96
|
+
<img :src="user.avatar_url" alt="User Photo" />
|
|
97
97
|
</div>
|
|
98
98
|
{{ user.full_name || user.username }}
|
|
99
99
|
<i class="fa fa-angle-down" aria-hidden="true"></i>
|
|
100
100
|
</template>
|
|
101
101
|
<!-- <button class="button ac-nav-button ac-profile-button">
|
|
102
|
-
|
|
102
|
+
|
|
103
103
|
</button> -->
|
|
104
104
|
|
|
105
105
|
<template #navbar-content>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
|
-
import {
|
|
2
|
+
import { computed, ref, watch } from "vue";
|
|
3
3
|
|
|
4
4
|
interface Props {
|
|
5
5
|
hideRowsPerPageSelection?: boolean;
|
|
@@ -224,6 +224,7 @@ watch(selectedItemCountPerPage, () => {
|
|
|
224
224
|
&:active,
|
|
225
225
|
&:focus-visible {
|
|
226
226
|
border: 1px solid $primary;
|
|
227
|
+
outline: none;
|
|
227
228
|
}
|
|
228
229
|
}
|
|
229
230
|
}
|