@appscode/design-system 2.17.57 → 2.17.58

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/main.scss CHANGED
@@ -3,7 +3,7 @@
3
3
  @import "@/components/vue-components/styles/base/utilities/_customize-bulma.scss";
4
4
 
5
5
  // Third party CSS
6
- @import "../node_modules/bulma/bulma.sass";
6
+ @import "bulma/bulma.sass";
7
7
  @import "font-awesome/css/font-awesome.min.css";
8
8
  @import "vue-multiselect/dist/vue-multiselect.css";
9
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@appscode/design-system",
3
- "version": "2.17.57",
3
+ "version": "2.17.58",
4
4
  "description": "A design system for Appscode websites and dashboards made using Bulma",
5
5
  "main": "main.scss",
6
6
  "scripts": {
@@ -149,7 +149,6 @@ import AcSearchBar from "./v3/searchbars/SearchBar.vue";
149
149
 
150
150
  import AcSidebarTabs from "./v3/sidebar/sidebar-tabs/SidebarTabs.vue";
151
151
  import AcSidebarTabsLayout from "./v3/sidebar/sidebar-tabs/SidebarTabsLayout.vue";
152
- import AcTabsContent from "./v3/sidebar/sidebar-tabs/TabsContent.vue";
153
152
 
154
153
  import AcAccentColorPicker from "./v3/sidebar/AccentColorPicker.vue";
155
154
  import AcClusterSwitcher from "./v3/sidebar/ClusterSwitcher.vue";
@@ -190,7 +189,7 @@ import AcEditorTabs from "./v3/tabs/EditorTabs.vue";
190
189
  import AcTag from "./v3/tag/Tag.vue";
191
190
  import AcTags from "./v3/tag/Tags.vue";
192
191
 
193
- import AcSimpleSelect from "./v3/upcoming/SimpleSelect.vue";
192
+ import AcSimpleSelect from "./v3/form-fields/SimpleSelect.vue";
194
193
 
195
194
  export {
196
195
  AcAccordion,
@@ -314,7 +313,6 @@ export {
314
313
  AcSearchBar,
315
314
  AcSidebarTabs,
316
315
  AcSidebarTabsLayout,
317
- AcTabsContent,
318
316
  AcAccentColorPicker,
319
317
  AcClusterSwitcher,
320
318
  AcSidebar,
@@ -1,7 +1,7 @@
1
1
  <script setup lang="ts">
2
2
  import { computed } from "vue";
3
3
 
4
- interface Props {
4
+ export interface Props {
5
5
  title?: string;
6
6
  tooltip?: string;
7
7
  isLoaderActive?: boolean;
@@ -1,5 +1,5 @@
1
1
  <script setup lang="ts">
2
- interface Props {
2
+ export interface Props {
3
3
  title?: string;
4
4
  subTitle?: string;
5
5
  logo?: string;
@@ -4,7 +4,7 @@ import { defineAsyncComponent } from "vue";
4
4
  const HeaderItem = defineAsyncComponent(() => import("./HeaderItem.vue"));
5
5
  const HeaderItems = defineAsyncComponent(() => import("./HeaderItems.vue"));
6
6
 
7
- interface Props {
7
+ export interface Props {
8
8
  title?: string;
9
9
  isContainer?: boolean;
10
10
  topValue?: string;
@@ -3,7 +3,7 @@ import { setCookie } from "tiny-cookie";
3
3
  import { computed, defineAsyncComponent, ref } from "vue";
4
4
  import GridIcon from "../icons/GridIcon.vue";
5
5
 
6
- interface Props {
6
+ export interface Props {
7
7
  currentApp?: "console" | "db" | "platform" | "billing" | "selfhost" | "learn" | "grafana";
8
8
  baseUrl?: string;
9
9
  activeOrganization?: string;
@@ -1,5 +1,5 @@
1
1
  <script setup lang="ts">
2
- interface Props {
2
+ export interface Props {
3
3
  modifierClasses?: string;
4
4
  fullWidth?: boolean;
5
5
  productName?: string;
@@ -3,7 +3,7 @@ import { useRoute } from "vue-router";
3
3
  import { computed, ref, watch } from "vue";
4
4
  import { onClickOutside } from "@vueuse/core";
5
5
 
6
- interface Props {
6
+ export interface Props {
7
7
  modifierClasses?: string;
8
8
  }
9
9
 
@@ -6,11 +6,11 @@ import HeroiconsCheck from "~icons/heroicons/check";
6
6
 
7
7
  import type { User } from "../../types/user";
8
8
 
9
- interface FormatedOrgs extends User {
9
+ export interface FormatedOrgs extends User {
10
10
  isPersonalAccount?: boolean;
11
11
  }
12
12
 
13
- interface Props {
13
+ export interface Props {
14
14
  user: FormatedOrgs;
15
15
  serverDomain?: string;
16
16
  accountsDomain?: string;
@@ -5,7 +5,7 @@ import Badge from "../badge-tags/Badge.vue";
5
5
 
6
6
  const Multiselect = defineAsyncComponent(() => import("vue-multiselect"));
7
7
 
8
- interface Props {
8
+ export interface Props {
9
9
  sidebarCollapsed?: boolean;
10
10
  mouseHover?: boolean;
11
11
  clusterOptions?: Array<SwitchCluster>;
@@ -1,5 +1,5 @@
1
1
  <script setup lang="ts">
2
- interface Props {
2
+ export interface Props {
3
3
  type?: string;
4
4
  isCollapsible?: boolean;
5
5
  sidebarLight?: boolean;
@@ -1,7 +1,7 @@
1
1
  <script setup lang="ts">
2
2
  import { defineAsyncComponent } from "vue";
3
3
 
4
- interface Props {
4
+ export interface Props {
5
5
  isColorpickerEnabled?: boolean;
6
6
  hideFooter?: boolean;
7
7
  }
@@ -1,7 +1,7 @@
1
1
  <script setup lang="ts">
2
2
  defineEmits(["toggleSidebar"]);
3
3
 
4
- interface Props {
4
+ export interface Props {
5
5
  brandLogo?: string;
6
6
  brandLogoAlt?: string;
7
7
  url?: string;
@@ -1,7 +1,7 @@
1
1
  <script setup lang="ts">
2
2
  import { nextTick, watch, ref } from "vue";
3
3
 
4
- interface Props {
4
+ export interface Props {
5
5
  id?: string;
6
6
  title?: string;
7
7
  url?: string;
@@ -1,7 +1,7 @@
1
1
  <script setup lang="ts">
2
2
  import { ref, watch } from "vue";
3
3
 
4
- interface Props {
4
+ export interface Props {
5
5
  isDropDownOpen?: boolean;
6
6
  title?: string;
7
7
  icon?: string;
@@ -2,7 +2,7 @@
2
2
  import FeCheck from "~icons/fe/check";
3
3
  import type { Step } from "../../types/importFlow";
4
4
 
5
- interface Props {
5
+ export interface Props {
6
6
  steps?: Step[];
7
7
  activeStepIdentifier?: number;
8
8
  activeSubStepIdentifier?: number;
@@ -1,7 +1,7 @@
1
1
  <script setup lang="ts">
2
2
  import CheckIcon from "../icons/CheckIcon.vue";
3
3
 
4
- interface Props {
4
+ export interface Props {
5
5
  direction?: string;
6
6
  active?: number;
7
7
  options?: { title: string; description: string; id: number }[];