@appscode/design-system 1.0.43-alpha.21 → 1.0.43-alpha.212
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/base/utilities/_all.scss +7 -0
- package/base/utilities/_customize-bulma.scss +191 -0
- package/base/utilities/_default.scss +313 -67
- package/base/utilities/_derived-variables.scss +6 -1
- package/base/utilities/_grid.scss +29 -0
- package/base/utilities/_initial-variables.scss +27 -17
- package/base/utilities/_mixin.scss +1 -17
- package/base/utilities/_typography.scss +18 -14
- package/base/utilities/dark-theme.scss +9 -145
- package/components/_ac-accordion.scss +14 -5
- package/components/_ac-alert-box.scss +41 -7
- package/components/_ac-card.scss +48 -10
- package/components/_ac-code-highlight.scss +5 -1
- package/components/_ac-content-layout.scss +2 -2
- package/components/_ac-drag.scss +2 -0
- package/components/_ac-input.scss +64 -23
- package/components/_ac-modal.scss +1 -1
- package/components/_ac-multi-select.scss +247 -9
- package/components/_ac-options.scss +24 -9
- package/components/_ac-select-box.scss +13 -3
- package/components/_ac-table.scss +7 -5
- package/components/_ac-tabs.scss +46 -5
- package/components/_ac-tags.scss +3 -0
- package/components/_ac-terminal.scss +270 -0
- package/components/_all.scss +27 -0
- package/components/_app-drawer.scss +2 -2
- package/components/_breadcumb.scss +2 -0
- package/components/_buttons.scss +50 -37
- package/components/_card-body-wrapper.scss +2 -2
- package/components/_dashboard-header.scss +32 -0
- package/components/_direct-deploy.scss +69 -0
- package/components/_go-to-top.scss +1 -1
- package/components/_graph.scss +45 -0
- package/components/_image-upload.scss +5 -3
- package/components/_left-sidebar-menu.scss +124 -73
- package/components/_monaco-editor.scss +1 -1
- package/components/_navbar.scss +170 -10
- package/components/_overview-info.scss +3 -3
- package/components/_pagination.scss +8 -0
- package/components/_payment-card.scss +10 -1
- package/components/_preview-modal.scss +18 -5
- package/components/_pricing-table.scss +1 -1
- package/components/_progress-bar.scss +4 -4
- package/components/_subscription-card.scss +11 -4
- package/components/_table-of-content.scss +1 -1
- package/components/_tfa.scss +69 -0
- package/components/_transitions.scss +261 -0
- package/components/_wizard.scss +16 -3
- package/components/bbum/_all.scss +9 -0
- package/components/bbum/_card-team.scss +1 -1
- package/components/bbum/_information-center.scss +15 -1
- package/components/bbum/_sign-up-notification.scss +1 -1
- package/components/bbum/_single-post-preview.scss +2 -2
- package/components/bbum/_user-profile.scss +2 -3
- package/components/ui-builder/_ui-builder.scss +76 -1
- package/components/ui-builder/_vue-open-api.scss +104 -0
- package/layouts/_all.scss +2 -0
- package/layouts/_code-preview.scss +5 -2
- package/main.scss +6 -54
- package/package.json +2 -7
- package/plugins/theme.js +4 -0
- package/plugins/time-convert.js +49 -0
- package/plugins/vue-toaster.js +3 -0
- package/vue-components/v2/banner/Banner.vue +2 -2
- package/vue-components/v2/breadcrumbs/Breadcrumb.vue +97 -0
- package/vue-components/v2/button/Button.vue +5 -0
- package/vue-components/v2/button/DownloadBtn.vue +45 -0
- package/vue-components/v2/card/Card.vue +1 -0
- package/vue-components/v2/card/PaymentCards.vue +11 -2
- package/vue-components/v2/content/ContentTable.vue +12 -7
- package/vue-components/v2/editor/Editor.vue +43 -24
- package/vue-components/v2/editor/FilteredFileEditor.vue +189 -0
- package/vue-components/v2/editor/MonacoEditor.vue +125 -0
- package/vue-components/v2/editor/ResourceKeyValueEditor.vue +209 -0
- package/vue-components/v2/form-fields/Input.vue +1 -1
- package/vue-components/v2/loaders/ResourceLoader.vue +101 -0
- package/vue-components/v2/loaders/SidebarLoader.vue +43 -0
- package/vue-components/v2/modal/Modal.vue +38 -4
- package/vue-components/v2/modals/DeleteConfirmationModal.vue +79 -0
- package/vue-components/v2/modals/JsonShowModal.vue +12 -2
- package/vue-components/v2/navbar/Appdrawer.vue +10 -9
- package/vue-components/v2/navbar/ThemeMode.vue +50 -44
- package/vue-components/v2/navbar/User.vue +229 -17
- package/vue-components/v2/notification/Notification.vue +101 -0
- package/vue-components/v2/notification/NotificationItem.vue +44 -0
- package/vue-components/v2/pagination/Pagination.vue +16 -3
- package/vue-components/v2/preloader/Preloader.vue +5 -5
- package/vue-components/v2/sidebar/ClusterSwitcher.vue +126 -0
- package/vue-components/v2/sidebar/SidebarItem.vue +23 -1
- package/vue-components/v2/sidebar/SidebarItemWithDropDown.vue +19 -20
- package/vue-components/v2/tab/TabItem.vue +1 -1
- package/vue-components/v2/table/Table.vue +44 -8
- package/vue-components/v2/table/TableRow.vue +12 -2
- package/vue-components/v2/table/table-cell/CellValue.vue +33 -4
- package/vue-components/v2/table/table-cell/GenericCell.vue +56 -0
- package/vue-components/v2/table/table-cell/ObjectCell.vue +4 -1
- package/vue-components/v2/tabs/EditorTabs.vue +1 -1
- package/vue-components/v3/button/Button.vue +6 -1
- package/vue-components/v3/content/ContentTable.vue +17 -2
- package/vue-components/v3/editor/Editor.vue +42 -33
- package/vue-components/v3/editor/FilteredFileEditor.vue +186 -0
- package/vue-components/v3/editor/MonacoEditor.vue +131 -0
- package/vue-components/v3/editor/ResourceKeyValueEditor.vue +125 -0
- package/vue-components/v3/form/Form.vue +63 -0
- package/vue-components/v3/form-fields/Input.vue +11 -10
- package/vue-components/v3/header/HeaderItem.vue +5 -0
- package/vue-components/v3/header/HeaderItems.vue +5 -0
- package/vue-components/v3/loaders/ResourceLoader.vue +83 -0
- package/vue-components/v3/loaders/SidebarLoader.vue +34 -0
- package/vue-components/v3/long-running-tasks/LongRunningTaskItem.vue +92 -0
- package/vue-components/v3/modal/Modal.vue +38 -6
- package/vue-components/v3/modals/DeleteConfirmationModal.vue +85 -0
- package/vue-components/v3/modals/JsonShowModal.vue +25 -16
- package/vue-components/v3/modals/LongRunningTasksModal.vue +337 -0
- package/vue-components/v3/navbar/Appdrawer.vue +12 -7
- package/vue-components/v3/navbar/ThemeMode.vue +49 -47
- package/vue-components/v3/navbar/User.vue +242 -18
- package/vue-components/v3/notification/Notification.vue +98 -0
- package/vue-components/v3/notification/NotificationItem.vue +52 -0
- package/vue-components/v3/pagination/Pagination.vue +16 -3
- package/vue-components/v3/sidebar/ClusterSwitcher.vue +133 -0
- package/vue-components/v3/sidebar/SidebarItemWithDropDown.vue +120 -0
- package/vue-components/v3/tab/TabItem.vue +1 -1
- package/vue-components/v3/table/MultiInfoTable.vue +143 -0
- package/vue-components/v3/table/Table.vue +47 -13
- package/vue-components/v3/table/TableContainer.vue +34 -0
- package/vue-components/v3/table/TableRow.vue +62 -3
- package/vue-components/v3/table/table-cell/CellValue.vue +28 -3
- package/vue-components/v3/table/table-cell/GenericCell.vue +75 -0
- package/vue-components/v3/table/table-cell/ObjectCell.vue +5 -1
- package/vue-components/v3/tabs/EditorTabs.vue +1 -1
- package/vue-components/v3/terminal/LongRunningTaskTerminal.vue +148 -0
|
@@ -0,0 +1,191 @@
|
|
|
1
|
+
$primary : hsl(208, 77%, 42%);
|
|
2
|
+
|
|
3
|
+
// Colors
|
|
4
|
+
// $black: hsl(0, 0%, 4%) !default;
|
|
5
|
+
// $black-bis: hsl(0, 0%, 7%) !default;
|
|
6
|
+
// $black-ter: hsl(0, 0%, 14%) !default;
|
|
7
|
+
|
|
8
|
+
// $grey-darker: hsl(0, 0%, 21%) !default;
|
|
9
|
+
// $grey-dark: hsl(0, 0%, 29%) !default;
|
|
10
|
+
// $grey: hsl(0, 0%, 48%) !default;
|
|
11
|
+
// $grey-light: hsl(0, 0%, 71%) !default;
|
|
12
|
+
// $grey-lighter: hsl(0, 0%, 86%) !default;
|
|
13
|
+
// $grey-lightest: hsl(0, 0%, 93%) !default;
|
|
14
|
+
|
|
15
|
+
// $white-ter: hsl(0, 0%, 96%) !default;
|
|
16
|
+
// $white-bis: hsl(0, 0%, 98%) !default;
|
|
17
|
+
// $white: hsl(0, 0%, 100%) !default;
|
|
18
|
+
|
|
19
|
+
$orange: hsl(30, 100%, 50%) !default;
|
|
20
|
+
$yellow: hsl(38, 93%, 57%) !default;
|
|
21
|
+
$green: hsl(147, 73%, 31%) !default;
|
|
22
|
+
// $turquoise: hsl(171, 100%, 41%) !default;
|
|
23
|
+
// $cyan: hsl(207, 61%, 53%) !default;
|
|
24
|
+
// $blue: hsl(229, 53%, 53%) !default;
|
|
25
|
+
$purple: hsl(286, 66%, 35%) !default;
|
|
26
|
+
$red: hsl(4, 100%, 58%) !default;
|
|
27
|
+
|
|
28
|
+
// // Typography
|
|
29
|
+
// $family-sans-serif: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif !default;
|
|
30
|
+
// $family-monospace: monospace !default;
|
|
31
|
+
// $render-mode: optimizeLegibility !default;
|
|
32
|
+
|
|
33
|
+
// $size-1: 3rem !default;
|
|
34
|
+
// $size-2: 2.5rem !default;
|
|
35
|
+
// $size-3: 2rem !default;
|
|
36
|
+
// $size-4: 1.5rem !default;
|
|
37
|
+
// $size-5: 1.25rem !default;
|
|
38
|
+
// $size-6: 1rem !default;
|
|
39
|
+
// $size-7: 0.75rem !default;
|
|
40
|
+
|
|
41
|
+
// $weight-light: 300 !default;
|
|
42
|
+
// $weight-normal: 400 !default;
|
|
43
|
+
// $weight-medium: 500 !default;
|
|
44
|
+
// $weight-semibold: 600 !default;
|
|
45
|
+
// $weight-bold: 700 !default;
|
|
46
|
+
|
|
47
|
+
// // Spacing
|
|
48
|
+
// $block-spacing: 1.5rem !default;
|
|
49
|
+
|
|
50
|
+
// // Responsiveness
|
|
51
|
+
// // The container horizontal gap, which acts as the offset for breakpoints
|
|
52
|
+
// $gap: 32px !default;
|
|
53
|
+
// // 960, 1152, and 1344 have been chosen because they are divisible by both 12 and 16
|
|
54
|
+
// $tablet: 769px !default;
|
|
55
|
+
// // 960px container + 4rem
|
|
56
|
+
// $desktop: 960px + (2 * $gap) !default;
|
|
57
|
+
// // 1152px container + 4rem
|
|
58
|
+
// $widescreen: 1152px + (2 * $gap) !default;
|
|
59
|
+
// $widescreen-enabled: true !default;
|
|
60
|
+
// // 1344px container + 4rem
|
|
61
|
+
// $fullhd: 1344px + (2 * $gap) !default;
|
|
62
|
+
// $fullhd-enabled: true !default;
|
|
63
|
+
// $breakpoints: ("mobile": ("until": $tablet), "tablet": ("from": $tablet), "tablet-only": ("from": $tablet, "until": $desktop), "touch": ("from": $desktop), "desktop": ("from": $desktop), "desktop-only": ("from": $desktop, "until": $widescreen), "until-widescreen": ("until": $widescreen), "widescreen": ("from": $widescreen), "widescreen-only": ("from": $widescreen, "until": $fullhd), "until-fullhd": ("until": $fullhd), "fullhd": ("from": $fullhd)) !default;
|
|
64
|
+
|
|
65
|
+
// // Miscellaneous
|
|
66
|
+
// $easing: ease-out !default;
|
|
67
|
+
// $radius-small: 2px !default;
|
|
68
|
+
// $radius: 4px !default;
|
|
69
|
+
// $radius-large: 6px !default;
|
|
70
|
+
// $radius-rounded: 9999px !default;
|
|
71
|
+
// $speed: 86ms !default;
|
|
72
|
+
|
|
73
|
+
// // Flags
|
|
74
|
+
// $variable-columns: true !default;
|
|
75
|
+
// $rtl: false !default;
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
// // Derived-Variables
|
|
80
|
+
|
|
81
|
+
// $primary: $turquoise !default;
|
|
82
|
+
|
|
83
|
+
// $info: $cyan !default;
|
|
84
|
+
// $success: $green !default;
|
|
85
|
+
// $warning: $yellow !default;
|
|
86
|
+
// $danger: $red !default;
|
|
87
|
+
|
|
88
|
+
// $light: $white-ter !default;
|
|
89
|
+
// $dark: $grey-darker !default;
|
|
90
|
+
|
|
91
|
+
// // Invert colors
|
|
92
|
+
|
|
93
|
+
// $orange-invert: findColorInvert($orange) !default;
|
|
94
|
+
// $yellow-invert: findColorInvert($yellow) !default;
|
|
95
|
+
// $green-invert: findColorInvert($green) !default;
|
|
96
|
+
// $turquoise-invert: findColorInvert($turquoise) !default;
|
|
97
|
+
// $cyan-invert: findColorInvert($cyan) !default;
|
|
98
|
+
// $blue-invert: findColorInvert($blue) !default;
|
|
99
|
+
// $purple-invert: findColorInvert($purple) !default;
|
|
100
|
+
// $red-invert: findColorInvert($red) !default;
|
|
101
|
+
|
|
102
|
+
// $primary-invert: findColorInvert($primary) !default;
|
|
103
|
+
// $primary-light: findLightColor($primary) !default;
|
|
104
|
+
// $primary-dark: findDarkColor($primary) !default;
|
|
105
|
+
// $info-invert: findColorInvert($info) !default;
|
|
106
|
+
// $info-light: findLightColor($info) !default;
|
|
107
|
+
// $info-dark: findDarkColor($info) !default;
|
|
108
|
+
// $success-invert: findColorInvert($success) !default;
|
|
109
|
+
// $success-light: findLightColor($success) !default;
|
|
110
|
+
// $success-dark: findDarkColor($success) !default;
|
|
111
|
+
// $warning-invert: findColorInvert($warning) !default;
|
|
112
|
+
// $warning-light: findLightColor($warning) !default;
|
|
113
|
+
// $warning-dark: findDarkColor($warning) !default;
|
|
114
|
+
// $danger-invert: findColorInvert($danger) !default;
|
|
115
|
+
// $danger-light: findLightColor($danger) !default;
|
|
116
|
+
// $danger-dark: findDarkColor($danger) !default;
|
|
117
|
+
// $light-invert: findColorInvert($light) !default;
|
|
118
|
+
// $dark-invert: findColorInvert($dark) !default;
|
|
119
|
+
|
|
120
|
+
// // General colors
|
|
121
|
+
|
|
122
|
+
// $scheme-main: $white !default;
|
|
123
|
+
// $scheme-main-bis: $white-bis !default;
|
|
124
|
+
// $scheme-main-ter: $white-ter !default;
|
|
125
|
+
// $scheme-invert: $black !default;
|
|
126
|
+
// $scheme-invert-bis: $black-bis !default;
|
|
127
|
+
// $scheme-invert-ter: $black-ter !default;
|
|
128
|
+
|
|
129
|
+
// $background: $white-ter !default;
|
|
130
|
+
|
|
131
|
+
// $border: $grey-lighter !default;
|
|
132
|
+
// $border-hover: $grey-light !default;
|
|
133
|
+
// $border-light: $grey-lightest !default;
|
|
134
|
+
// $border-light-hover: $grey-light !default;
|
|
135
|
+
|
|
136
|
+
// // Text colors
|
|
137
|
+
|
|
138
|
+
// $text: $grey-dark !default;
|
|
139
|
+
// $text-invert: findColorInvert($text) !default;
|
|
140
|
+
// $text-light: $grey !default;
|
|
141
|
+
// $text-strong: $grey-darker !default;
|
|
142
|
+
|
|
143
|
+
// // Code colors
|
|
144
|
+
|
|
145
|
+
// $code: darken($red, 15%) !default;
|
|
146
|
+
// $code-background: $background !default;
|
|
147
|
+
|
|
148
|
+
// $pre: $text !default;
|
|
149
|
+
// $pre-background: $background !default;
|
|
150
|
+
|
|
151
|
+
// // Link colors
|
|
152
|
+
|
|
153
|
+
// $link: $blue !default;
|
|
154
|
+
// $link-invert: findColorInvert($link) !default;
|
|
155
|
+
// $link-light: findLightColor($link) !default;
|
|
156
|
+
// $link-dark: findDarkColor($link) !default;
|
|
157
|
+
// $link-visited: $purple !default;
|
|
158
|
+
|
|
159
|
+
// $link-hover: $grey-darker !default;
|
|
160
|
+
// $link-hover-border: $grey-light !default;
|
|
161
|
+
|
|
162
|
+
// $link-focus: $grey-darker !default;
|
|
163
|
+
// $link-focus-border: $blue !default;
|
|
164
|
+
|
|
165
|
+
// $link-active: $grey-darker !default;
|
|
166
|
+
// $link-active-border: $grey-dark !default;
|
|
167
|
+
|
|
168
|
+
// // Typography
|
|
169
|
+
|
|
170
|
+
// $family-primary: $family-sans-serif !default;
|
|
171
|
+
// $family-secondary: $family-sans-serif !default;
|
|
172
|
+
// $family-code: $family-monospace !default;
|
|
173
|
+
|
|
174
|
+
// $size-small: $size-7 !default;
|
|
175
|
+
// $size-normal: $size-6 !default;
|
|
176
|
+
// $size-medium: $size-5 !default;
|
|
177
|
+
// $size-large: $size-4 !default;
|
|
178
|
+
|
|
179
|
+
// // Effects
|
|
180
|
+
|
|
181
|
+
// $shadow: 0 0.5em 1em -0.125em rgba($scheme-invert, 0.1), 0 0px 0 1px rgba($scheme-invert, 0.02) !default;
|
|
182
|
+
|
|
183
|
+
// // Lists and maps
|
|
184
|
+
// $custom-colors: null !default;
|
|
185
|
+
// $custom-shades: null !default;
|
|
186
|
+
|
|
187
|
+
// $colors: mergeColorMaps(("white": ($white, $black), "black": ($black, $white), "light": ($light, $light-invert), "dark": ($dark, $dark-invert), "primary": ($primary, $primary-invert, $primary-light, $primary-dark), "link": ($link, $link-invert, $link-light, $link-dark), "info": ($info, $info-invert, $info-light, $info-dark), "success": ($success, $success-invert, $success-light, $success-dark), "warning": ($warning, $warning-invert, $warning-light, $warning-dark), "danger": ($danger, $danger-invert, $danger-light, $danger-dark)), $custom-colors) !default;
|
|
188
|
+
|
|
189
|
+
// $shades: mergeColorMaps(("black-bis": $black-bis, "black-ter": $black-ter, "grey-darker": $grey-darker, "grey-dark": $grey-dark, "grey": $grey, "grey-light": $grey-light, "grey-lighter": $grey-lighter, "white-ter": $white-ter, "white-bis": $white-bis), $custom-shades) !default;
|
|
190
|
+
|
|
191
|
+
// $sizes: $size-1 $size-2 $size-3 $size-4 $size-5 $size-6 $size-7 !default;
|