@appscode/design-system 2.2.23 → 2.2.25

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@appscode/design-system",
3
- "version": "2.2.23",
3
+ "version": "2.2.25",
4
4
  "description": "A design system for Appscode websites and dashboards made using Bulma",
5
5
  "main": "main.scss",
6
6
  "scripts": {
@@ -43,6 +43,9 @@
43
43
  :show-labels="false"
44
44
  :close-on-select="true"
45
45
  :open-direction="openDirection"
46
+ :group-values="groupValues"
47
+ :group-label="groupLabel"
48
+ :group-select="groupSelect"
46
49
  data-testid="simple-select-box"
47
50
  @open="openDropDown"
48
51
  @close="closeDropDown"
@@ -79,6 +82,9 @@ interface Props {
79
82
  wrapperDivCustomClass: string;
80
83
  multiselectCustomClass: string;
81
84
  openDirection: "top" | "bottom";
85
+ groupLabel: string;
86
+ groupValues: string;
87
+ groupSelect: boolean;
82
88
  }
83
89
 
84
90
  const props = withDefaults(defineProps<Props>(), {
@@ -98,6 +104,9 @@ const props = withDefaults(defineProps<Props>(), {
98
104
  noResultText: "",
99
105
  showStar: false,
100
106
  openDirection: "bottom",
107
+ groupLabel: "",
108
+ groupValues: "",
109
+ groupSelect: false,
101
110
  });
102
111
 
103
112
  const emit = defineEmits(["select", "remove", "refresh-btn-click"]);
@@ -208,7 +208,7 @@ function handleIsActiveChange(isActive: string) {
208
208
  >
209
209
  </li>
210
210
  <li key="signout" @click="$emit('on-logout')">
211
- <a data-testid="user-logout-link" :href="`${accountsDomain}/user/logout`">
211
+ <a data-testid="user-logout-link" :href="`${accountsDomain}/accounts/user/logout`">
212
212
  <span class="icon">
213
213
  <HeroiconsPower />
214
214
  </span>