@appscode/design-system 2.1.8 → 2.2.1
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 +1 -1
- package/vue-components/styles/components/select-box/_multi-select.scss +1 -1
- package/vue-components/v3/form-fields/Switch.vue +1 -1
- package/vue-components/v2/banner/Banner.vue +0 -12
- package/vue-components/v2/breadcrumbs/Breadcrumb.vue +0 -84
- package/vue-components/v2/button/Button.vue +0 -70
- package/vue-components/v2/button/Buttons.vue +0 -5
- package/vue-components/v2/button/DownloadBtn.vue +0 -45
- package/vue-components/v2/card/Card.vue +0 -37
- package/vue-components/v2/card/CardContent.vue +0 -5
- package/vue-components/v2/card/CardHeader.vue +0 -10
- package/vue-components/v2/card/Cards.vue +0 -5
- package/vue-components/v2/card/OverviewCard.vue +0 -10
- package/vue-components/v2/card/OverviewCards.vue +0 -20
- package/vue-components/v2/card/PaymentCard.vue +0 -69
- package/vue-components/v2/card/PaymentCardOptionButtons.vue +0 -35
- package/vue-components/v2/card/PaymentCards.vue +0 -48
- package/vue-components/v2/content/ContentHeader.vue +0 -50
- package/vue-components/v2/content/ContentLayout.vue +0 -9
- package/vue-components/v2/content/ContentTable.vue +0 -62
- package/vue-components/v2/editor/Editor.vue +0 -144
- package/vue-components/v2/editor/FilteredFileEditor.vue +0 -177
- package/vue-components/v2/editor/MonacoEditor.vue +0 -118
- package/vue-components/v2/editor/ResourceKeyValueEditor.vue +0 -199
- package/vue-components/v2/form/Form.vue +0 -54
- package/vue-components/v2/form/FormFooterControl.vue +0 -5
- package/vue-components/v2/form/FormFooterControls.vue +0 -5
- package/vue-components/v2/form-fields/AcSingleInput.vue +0 -20
- package/vue-components/v2/form-fields/Input.vue +0 -17
- package/vue-components/v2/header/Header.vue +0 -34
- package/vue-components/v2/header/HeaderItem.vue +0 -5
- package/vue-components/v2/header/HeaderItems.vue +0 -5
- package/vue-components/v2/icons/Ellipsis.vue +0 -4
- package/vue-components/v2/loaders/ResourceLoader.vue +0 -101
- package/vue-components/v2/loaders/SidebarLoader.vue +0 -43
- package/vue-components/v2/modal/Modal.vue +0 -137
- package/vue-components/v2/modals/DeleteConfirmationModal.vue +0 -74
- package/vue-components/v2/modals/JsonShowModal.vue +0 -69
- package/vue-components/v2/navbar/Appdrawer.vue +0 -74
- package/vue-components/v2/navbar/Navbar.vue +0 -29
- package/vue-components/v2/navbar/NavbarItem.vue +0 -7
- package/vue-components/v2/navbar/NavbarItemContent.vue +0 -5
- package/vue-components/v2/navbar/ThemeMode.vue +0 -114
- package/vue-components/v2/navbar/User.vue +0 -190
- package/vue-components/v2/notification/Notification.vue +0 -92
- package/vue-components/v2/notification/NotificationItem.vue +0 -42
- package/vue-components/v2/pagination/Pagination.vue +0 -214
- package/vue-components/v2/preloader/Preloader.vue +0 -26
- package/vue-components/v2/searchbars/SearchBar.vue +0 -31
- package/vue-components/v2/sidebar/ClusterSwitcher.vue +0 -126
- package/vue-components/v2/sidebar/Sidebar.vue +0 -5
- package/vue-components/v2/sidebar/SidebarItem.vue +0 -59
- package/vue-components/v2/sidebar/SidebarItemWithDropDown.vue +0 -114
- package/vue-components/v2/tab/TabItem.vue +0 -16
- package/vue-components/v2/tab/Tabs.vue +0 -7
- package/vue-components/v2/tab/TabsBody.vue +0 -5
- package/vue-components/v2/table/EmptyTableImage.vue +0 -3
- package/vue-components/v2/table/EmptyTableInfo.vue +0 -6
- package/vue-components/v2/table/FakeTableCell.vue +0 -35
- package/vue-components/v2/table/InfoTable.vue +0 -91
- package/vue-components/v2/table/NarrowTable.vue +0 -17
- package/vue-components/v2/table/Table.vue +0 -212
- package/vue-components/v2/table/TableCell.vue +0 -26
- package/vue-components/v2/table/TableContainer.vue +0 -5
- package/vue-components/v2/table/TableRow.vue +0 -50
- package/vue-components/v2/table/table-cell/ArrayCell.vue +0 -94
- package/vue-components/v2/table/table-cell/CellValue.vue +0 -125
- package/vue-components/v2/table/table-cell/GenericCell.vue +0 -56
- package/vue-components/v2/table/table-cell/ObjectCell.vue +0 -93
- package/vue-components/v2/table/table-cell/ValueWithModal.vue +0 -34
- package/vue-components/v2/tabs/EditorTabs.vue +0 -28
- package/vue-components/v2/tag/Tag.vue +0 -16
- package/vue-components/v2/tag/Tags.vue +0 -5
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<tabs-body>
|
|
3
|
-
<tabs class="is-line">
|
|
4
|
-
<tab-item :is-active="activeTab === 'edit'">
|
|
5
|
-
<a @click.prevent="$emit('tabchange', 'edit')">Edit</a>
|
|
6
|
-
</tab-item>
|
|
7
|
-
<tab-item :is-active="activeTab === 'preview'">
|
|
8
|
-
<a @click.prevent="$emit('tabchange', 'preview')">Preview Changes</a>
|
|
9
|
-
</tab-item>
|
|
10
|
-
</tabs>
|
|
11
|
-
</tabs-body>
|
|
12
|
-
</template>
|
|
13
|
-
|
|
14
|
-
<script>
|
|
15
|
-
export default {
|
|
16
|
-
props: {
|
|
17
|
-
activeTab: {
|
|
18
|
-
type: String,
|
|
19
|
-
default: "",
|
|
20
|
-
},
|
|
21
|
-
},
|
|
22
|
-
components: {
|
|
23
|
-
TabsBody: () => import("../tab/TabsBody.vue"),
|
|
24
|
-
Tabs: () => import("../tab/Tabs.vue"),
|
|
25
|
-
TabItem: () => import("../tab/TabItem.vue"),
|
|
26
|
-
},
|
|
27
|
-
};
|
|
28
|
-
</script>
|