@appscode/design-system 2.7.12 → 2.7.14

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.7.12",
3
+ "version": "2.7.14",
4
4
  "description": "A design system for Appscode websites and dashboards made using Bulma",
5
5
  "main": "main.scss",
6
6
  "scripts": {
@@ -163,7 +163,7 @@ body:has(.message-details) {
163
163
  width: 32px;
164
164
  height: 32px;
165
165
  background-color: #fff;
166
- box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.15);
166
+ // box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.15);
167
167
  border-radius: 50%;
168
168
  border: 1px solid $color-border;
169
169
  display: flex;
@@ -12,7 +12,7 @@ const props = defineProps({
12
12
  filterOptions: {
13
13
  type: Array,
14
14
  default: () => [
15
- { value: "all-cluster", text: "All Cluster" },
15
+ { value: "all", text: "All Cluster" },
16
16
  { value: "active", text: "Active" },
17
17
  { value: "pending", text: "Pending" },
18
18
  ],
@@ -23,7 +23,7 @@ function handleSearch(searchText) {
23
23
  emit("handleSearch", searchText);
24
24
  }
25
25
 
26
- const selectedFilter = ref("all-cluster");
26
+ const selectedFilter = ref("all");
27
27
 
28
28
  watch(selectedFilter, (n) => {
29
29
  emit("handleFilter", n);