@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 +1 -1
- package/package.json +1 -1
- package/vue-components/index.ts +1 -3
- package/vue-components/v3/button/Button.vue +1 -1
- package/vue-components/v3/cards/Vendor.vue +1 -1
- package/vue-components/v3/header/Header.vue +1 -1
- package/vue-components/v3/navbar/Appdrawer.vue +1 -1
- package/vue-components/v3/navbar/Navbar.vue +1 -1
- package/vue-components/v3/navbar/NavbarItem.vue +1 -1
- package/vue-components/v3/navbar/User.vue +2 -2
- package/vue-components/v3/sidebar/ClusterSwitcher.vue +1 -1
- package/vue-components/v3/sidebar/Sidebar.vue +1 -1
- package/vue-components/v3/sidebar/SidebarFooter.vue +1 -1
- package/vue-components/v3/sidebar/SidebarHeader.vue +1 -1
- package/vue-components/v3/sidebar/SidebarItem.vue +1 -1
- package/vue-components/v3/sidebar/SidebarItemWithDropDown.vue +1 -1
- package/vue-components/v3/sidebar/Steps.vue +1 -1
- package/vue-components/v3/steps/Steps.vue +1 -1
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 "
|
|
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
package/vue-components/index.ts
CHANGED
|
@@ -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/
|
|
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,
|
|
@@ -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;
|
|
@@ -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>;
|