@appscode/design-system 2.17.56 → 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/styles/components/_tabs.scss +1 -0
- package/vue-components/v3/button/Button.vue +1 -1
- package/vue-components/v3/cards/Vendor.vue +1 -1
- package/vue-components/v3/form-fields/AcInput.vue +1 -1
- package/vue-components/v3/form-fields/AcSelect.vue +2 -2
- package/vue-components/v3/form-fields/AcTextArea.vue +2 -2
- package/vue-components/v3/form-fields/Switch.vue +1 -1
- package/vue-components/v3/header/Header.vue +1 -1
- package/vue-components/v3/inbox/MessageList.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,
|
|
@@ -101,7 +101,7 @@ onMounted(() => {
|
|
|
101
101
|
</template>
|
|
102
102
|
<div class="is-flex is-flex-direction-column">
|
|
103
103
|
<div v-if="htmlErrorMsg" class="invalid-error is-danger" v-html="errorMsg" />
|
|
104
|
-
<p v-else-if="errorMsg" class="is-danger">{{ errorMsg }}</p>
|
|
104
|
+
<p v-else-if="errorMsg" class="is-danger is-italic">{{ errorMsg }}</p>
|
|
105
105
|
<slot name="message" />
|
|
106
106
|
</div>
|
|
107
107
|
</ac-input-text>
|
|
@@ -172,8 +172,8 @@ const onSelect = (selectedOption: unknown, id: string) => emit("select", selecte
|
|
|
172
172
|
<slot name="option" v-bind="props" />
|
|
173
173
|
</template>
|
|
174
174
|
</multiselect>
|
|
175
|
-
<div v-if="htmlErrorMsg" class="invalid-error is-danger" v-html="errorMsg" />
|
|
176
|
-
<p v-else v-show="errorMsg" class="is-danger">
|
|
175
|
+
<div v-if="htmlErrorMsg" class="invalid-error is-danger is-italic" v-html="errorMsg" />
|
|
176
|
+
<p v-else v-show="errorMsg" class="is-danger is-italic">
|
|
177
177
|
{{ errorMsg }}
|
|
178
178
|
</p>
|
|
179
179
|
</div>
|
|
@@ -82,8 +82,8 @@ watch(
|
|
|
82
82
|
@focusout="onFocusOutInput"
|
|
83
83
|
/>
|
|
84
84
|
<div class="is-flex is-flex-direction-column">
|
|
85
|
-
<div v-if="htmlErrorMsg" class="invalid-error" v-html="errorMsg" />
|
|
86
|
-
<p v-else-if="errorMsg" class="is-danger">{{ errorMsg }}</p>
|
|
85
|
+
<div v-if="htmlErrorMsg" class="invalid-error is-danger is-italic" v-html="errorMsg" />
|
|
86
|
+
<p v-else-if="errorMsg" class="is-danger is-italic">{{ errorMsg }}</p>
|
|
87
87
|
<slot name="message" />
|
|
88
88
|
</div>
|
|
89
89
|
</AcInputText>
|
|
@@ -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;
|
|
@@ -21,7 +21,7 @@ const Searchbar = defineAsyncComponent(() => import("../form-fields/Searchbar.vu
|
|
|
21
21
|
<div class="is-flex is-justify-content-space-between">
|
|
22
22
|
<div class="is-flex gap-8 dropdown-action dropdown">
|
|
23
23
|
<label class="ac-checkbox" for="checkbox16">
|
|
24
|
-
<input class="is-danger" id="checkbox16" type="checkbox" /><span class="checkmark"></span>
|
|
24
|
+
<input class="is-danger is-italic" id="checkbox16" type="checkbox" /><span class="checkmark"></span>
|
|
25
25
|
</label>
|
|
26
26
|
<button class="button ac-button is-white is-small" title="Filter">
|
|
27
27
|
<span class="icon">
|
|
@@ -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>;
|