@appscode/design-system 1.1.0-beta.69 → 1.1.0-beta.70

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": "1.1.0-beta.69",
3
+ "version": "1.1.0-beta.70",
4
4
  "description": "A design system for Appscode websites and dashboards made using Bulma",
5
5
  "main": "main.scss",
6
6
  "scripts": {
@@ -3,20 +3,18 @@ interface Props {
3
3
  title?: string;
4
4
  subTitle?: string;
5
5
  logo?: string;
6
- link?: string;
7
6
  }
8
7
 
9
8
  withDefaults(defineProps<Props>(), {
10
9
  title: "no title",
11
10
  subTitle: "",
12
11
  logo: "https://bb-developer-v1.web.app/_nuxt/img/azure-logo.4fa9281.svg",
13
- link: "#",
14
12
  });
15
13
  </script>
16
14
 
17
15
  <template>
18
16
  <!-- use "is-selected" for select item -->
19
- <RouterLink :to="link" class="ac-single-card has-text-centered">
17
+ <div class="ac-single-card has-text-centered">
20
18
  <div class="ac-card-logo">
21
19
  <div class="card-status" />
22
20
  <img :src="logo" alt="vendor logo" />
@@ -27,7 +25,7 @@ withDefaults(defineProps<Props>(), {
27
25
  {{ subTitle }}
28
26
  </p>
29
27
  </div>
30
- </RouterLink>
28
+ </div>
31
29
  </template>
32
30
 
33
31
  <style lang="scss" scoped>