@rancher/shell 0.1.3 → 0.1.21

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.
Files changed (245) hide show
  1. package/assets/brand/suse/dark/rancher-logo.svg +1 -148
  2. package/assets/brand/suse/favicon.png +0 -0
  3. package/assets/brand/suse/rancher-logo.svg +1 -130
  4. package/assets/images/featured/img1.jpg +0 -0
  5. package/assets/images/featured.jpg +0 -0
  6. package/assets/images/generic-plugin.svg +1 -0
  7. package/assets/styles/themes/_dark.scss +3 -0
  8. package/assets/styles/themes/_light.scss +3 -0
  9. package/assets/styles/themes/_suse.scss +1 -1
  10. package/assets/translations/en-us.yaml +219 -47
  11. package/assets/translations/zh-hans.yaml +21 -24
  12. package/components/AsyncButton.vue +17 -2
  13. package/components/ButtonDropdown.vue +4 -0
  14. package/components/Carousel.vue +291 -0
  15. package/components/CommunityLinks.vue +64 -22
  16. package/components/CruResource.vue +11 -3
  17. package/components/Dialog.vue +102 -0
  18. package/components/ExplorerMembers.vue +2 -4
  19. package/components/ExplorerProjectsNamespaces.vue +25 -9
  20. package/components/IconMessage.vue +9 -1
  21. package/components/LazyImage.vue +21 -8
  22. package/components/LocaleSelector.vue +62 -29
  23. package/components/PromptRemove.vue +2 -2
  24. package/components/ResourceList/Masthead.vue +21 -1
  25. package/components/ResourceList/ResourceLoadingIndicator.vue +0 -8
  26. package/components/ResourceList/index.vue +9 -23
  27. package/components/ResourceTable.vue +7 -2
  28. package/components/SimpleBox.vue +6 -4
  29. package/components/SortableTable/index.vue +18 -25
  30. package/components/Tabbed/Tab.vue +5 -0
  31. package/components/Tabbed/index.vue +54 -9
  32. package/components/TypeDescription.vue +10 -1
  33. package/components/auth/Principal.vue +1 -0
  34. package/components/fleet/FleetBundles.vue +8 -3
  35. package/components/fleet/FleetClusters.vue +6 -0
  36. package/components/fleet/FleetRepos.vue +7 -1
  37. package/components/fleet/FleetSummary.vue +6 -0
  38. package/components/form/Command.vue +5 -0
  39. package/components/form/EnvVars.vue +5 -0
  40. package/components/form/KeyValue.vue +80 -58
  41. package/components/form/NameNsDescription.vue +13 -5
  42. package/components/form/NodeScheduling.vue +6 -1
  43. package/components/form/PodAffinity.vue +5 -0
  44. package/components/form/ResourceTabs/index.vue +5 -1
  45. package/components/form/ServiceNameSelect.vue +5 -0
  46. package/components/form/ValueFromResource.vue +7 -1
  47. package/components/formatter/ClusterLink.vue +3 -7
  48. package/components/nav/NamespaceFilter.vue +3 -3
  49. package/components/nav/TopLevelMenu.vue +12 -29
  50. package/config/home-links.js +155 -0
  51. package/config/labels-annotations.js +2 -1
  52. package/config/private-label.js +1 -1
  53. package/config/product/explorer.js +5 -4
  54. package/config/product/legacy.js +0 -47
  55. package/config/product/manager.js +0 -2
  56. package/config/product/multi-cluster-apps.js +0 -12
  57. package/config/product/settings.js +12 -1
  58. package/config/product/uiplugins.js +17 -0
  59. package/config/settings.js +23 -2
  60. package/config/types.js +5 -1
  61. package/config/uiplugins.js +117 -0
  62. package/config/version.js +17 -0
  63. package/content/docs/en-us/getting-started.md +1 -26
  64. package/core/plugin.ts +12 -0
  65. package/core/plugins.js +38 -2
  66. package/core/types.ts +6 -0
  67. package/creators/app/{.eslintignore → files/.eslintignore} +0 -0
  68. package/creators/app/{.eslintrc.js → files/.eslintrc.js} +0 -0
  69. package/creators/app/{.vscode → files/.vscode}/settings.json +0 -0
  70. package/creators/app/{babel.config.js → files/babel.config.js} +0 -0
  71. package/creators/app/{nuxt.config.js → files/nuxt.config.js} +0 -0
  72. package/creators/app/{tsconfig.json → files/tsconfig.json} +2 -1
  73. package/creators/app/init +16 -17
  74. package/creators/app/package.json +6 -0
  75. package/creators/pkg/{babel.config.js → files/babel.config.js} +0 -0
  76. package/creators/pkg/{index.ts → files/index.ts} +0 -0
  77. package/creators/pkg/{tsconfig.json → files/tsconfig.json} +13 -12
  78. package/creators/pkg/{vue.config.js → files/vue.config.js} +0 -0
  79. package/creators/pkg/init +1 -1
  80. package/creators/update/init +54 -0
  81. package/creators/update/package.json +20 -0
  82. package/creators/update/upgrade +56 -0
  83. package/creators/update/yarn-error.log +54 -0
  84. package/detail/provisioning.cattle.io.cluster.vue +3 -3
  85. package/detail/workload/index.vue +3 -2
  86. package/dialog/DiagnosticTimingsDialog.vue +116 -0
  87. package/dialog/RotateCertificatesDialog.vue +9 -3
  88. package/edit/auth/azuread.vue +28 -9
  89. package/edit/networking.k8s.io.ingress/index.vue +2 -2
  90. package/edit/persistentvolume/index.vue +51 -13
  91. package/edit/persistentvolumeclaim.vue +31 -13
  92. package/edit/pod.vue +27 -0
  93. package/edit/provisioning.cattle.io.cluster/rke2.vue +103 -24
  94. package/edit/service.vue +7 -5
  95. package/edit/workload/__tests__/Upgrading.test.ts +1 -0
  96. package/edit/workload/index.vue +32 -10
  97. package/edit/workload/mixins/workload.js +121 -126
  98. package/edit/workload/storage/ContainerMountPaths.vue +240 -0
  99. package/edit/workload/storage/Mount.vue +1 -0
  100. package/edit/workload/storage/awsElasticBlockStore.vue +20 -1
  101. package/edit/workload/storage/azureDisk.vue +22 -2
  102. package/edit/workload/storage/azureFile.vue +20 -2
  103. package/edit/workload/storage/csi/index.vue +23 -1
  104. package/edit/workload/storage/gcePersistentDisk.vue +20 -2
  105. package/edit/workload/storage/index.vue +33 -65
  106. package/edit/workload/storage/persistentVolumeClaim/index.vue +5 -0
  107. package/edit/workload/storage/secret.vue +6 -1
  108. package/edit/workload/storage/vsphereVolume.vue +11 -1
  109. package/layouts/default.vue +14 -8
  110. package/layouts/home.vue +9 -4
  111. package/layouts/plain.vue +10 -5
  112. package/list/catalog.cattle.io.app.vue +10 -9
  113. package/list/catalog.cattle.io.clusterrepo.vue +6 -61
  114. package/list/cis.cattle.io.clusterscan.vue +12 -12
  115. package/list/fleet.cattle.io.bundle.vue +33 -28
  116. package/list/fleet.cattle.io.cluster.vue +26 -22
  117. package/list/fleet.cattle.io.clustergroup.vue +6 -0
  118. package/list/fleet.cattle.io.clusterregistrationtoken.vue +28 -24
  119. package/list/fleet.cattle.io.gitrepo.vue +25 -14
  120. package/list/helm.cattle.io.projecthelmchart.vue +52 -33
  121. package/list/logging.banzaicloud.io.clusterflow.vue +7 -12
  122. package/list/logging.banzaicloud.io.flow.vue +7 -14
  123. package/list/management.cattle.io.cluster.vue +26 -15
  124. package/list/management.cattle.io.feature.vue +13 -8
  125. package/list/management.cattle.io.setting.vue +3 -3
  126. package/list/management.cattle.io.user.vue +38 -19
  127. package/list/monitoring.coreos.com.alertmanagerconfig.vue +8 -15
  128. package/list/namespace.vue +14 -1
  129. package/list/node.vue +13 -16
  130. package/list/persistentvolume.vue +16 -9
  131. package/list/persistentvolumeclaim.vue +5 -8
  132. package/list/provisioning.cattle.io.cluster.vue +35 -9
  133. package/list/service.vue +24 -12
  134. package/list/ui.cattle.io.navlink.vue +6 -0
  135. package/list/workload.vue +2 -2
  136. package/machine-config/harvester.vue +5 -3
  137. package/middleware/authenticated.js +6 -0
  138. package/mixins/resource-fetch.js +12 -18
  139. package/mixins/resource-manager.js +126 -0
  140. package/models/catalog.cattle.io.uiplugin.js +38 -0
  141. package/models/cluster/node.js +25 -2
  142. package/models/fleet.cattle.io.bundle.js +1 -1
  143. package/models/harvesterhci.io.management.cluster.js +11 -5
  144. package/models/pod.js +15 -5
  145. package/models/provisioning.cattle.io.cluster.js +16 -6
  146. package/models/workload.js +5 -3
  147. package/models/workload.service.js +10 -0
  148. package/nuxt.config.js +70 -25
  149. package/package.json +108 -109
  150. package/pages/auth/login.vue +11 -1
  151. package/pages/auth/verify.vue +9 -0
  152. package/pages/c/_cluster/apps/charts/index.vue +46 -1
  153. package/pages/c/_cluster/apps/charts/install.vue +10 -9
  154. package/pages/c/_cluster/explorer/index.vue +72 -9
  155. package/pages/c/_cluster/explorer/tools/index.vue +12 -5
  156. package/pages/c/_cluster/mcapps/index.vue +1 -1
  157. package/pages/c/_cluster/settings/DefaultLinksEditor.vue +108 -0
  158. package/pages/c/_cluster/settings/brand.vue +0 -40
  159. package/pages/c/_cluster/settings/links.vue +152 -0
  160. package/pages/c/_cluster/settings/performance.vue +90 -7
  161. package/pages/c/_cluster/uiplugins/DeveloperInstallDialog.vue +232 -0
  162. package/pages/c/_cluster/uiplugins/InstallDialog.vue +293 -0
  163. package/pages/c/_cluster/uiplugins/PluginInfoPanel.vue +300 -0
  164. package/pages/c/_cluster/uiplugins/RemoveUIPlugins.vue +125 -0
  165. package/pages/c/_cluster/uiplugins/SetupUIPlugins.vue +261 -0
  166. package/pages/c/_cluster/uiplugins/UninstallDialog.vue +122 -0
  167. package/pages/c/_cluster/uiplugins/index.vue +808 -0
  168. package/pages/diagnostic.vue +185 -101
  169. package/pages/docs/_doc.vue +3 -1
  170. package/pages/home.vue +21 -56
  171. package/pages/prefs.vue +108 -88
  172. package/pages/safeMode.vue +17 -0
  173. package/pages/support/index.vue +34 -137
  174. package/pkg/dynamic-importer.lib.js +4 -0
  175. package/plugins/dashboard-store/actions.js +19 -0
  176. package/plugins/dashboard-store/getters.js +20 -3
  177. package/plugins/dashboard-store/mutations.js +13 -7
  178. package/plugins/dashboard-store/resource-class.js +2 -2
  179. package/plugins/formatters.js +15 -0
  180. package/plugins/plugin.js +61 -6
  181. package/plugins/steve/getters.js +12 -0
  182. package/plugins/steve/mutations.js +1 -1
  183. package/plugins/steve/subscribe.js +94 -72
  184. package/plugins/steve/web-worker.steve-sub-worker.js +24 -15
  185. package/plugins/version.js +21 -0
  186. package/promptRemove/management.cattle.io.globalrole.vue +47 -0
  187. package/promptRemove/management.cattle.io.roletemplate.vue +47 -0
  188. package/promptRemove/mixin/roleDeletionCheck.js +97 -0
  189. package/rancher-components/Form/TextArea/TextAreaAutoGrow.vue +6 -7
  190. package/rancher-components/components/BadgeState/BadgeState.spec.ts +12 -0
  191. package/rancher-components/components/BadgeState/BadgeState.vue +107 -0
  192. package/rancher-components/components/BadgeState/index.ts +1 -0
  193. package/rancher-components/components/Banner/Banner.test.ts +13 -0
  194. package/rancher-components/components/Banner/Banner.vue +163 -0
  195. package/rancher-components/components/Banner/index.ts +1 -0
  196. package/rancher-components/components/Card/Card.vue +150 -0
  197. package/rancher-components/components/Card/index.ts +1 -0
  198. package/rancher-components/components/Form/Checkbox/Checkbox.test.ts +77 -0
  199. package/rancher-components/components/Form/Checkbox/Checkbox.vue +395 -0
  200. package/rancher-components/components/Form/Checkbox/index.ts +1 -0
  201. package/rancher-components/components/Form/LabeledInput/LabeledInput.test.ts +29 -0
  202. package/rancher-components/components/Form/LabeledInput/LabeledInput.vue +343 -0
  203. package/rancher-components/components/Form/LabeledInput/index.ts +1 -0
  204. package/rancher-components/components/Form/Radio/RadioButton.vue +270 -0
  205. package/rancher-components/components/Form/Radio/RadioGroup.vue +235 -0
  206. package/rancher-components/components/Form/Radio/index.ts +2 -0
  207. package/rancher-components/components/Form/TextArea/TextAreaAutoGrow.vue +168 -0
  208. package/rancher-components/components/Form/TextArea/index.ts +1 -0
  209. package/rancher-components/components/Form/ToggleSwitch/ToggleSwitch.test.ts +107 -0
  210. package/rancher-components/components/Form/ToggleSwitch/ToggleSwitch.vue +137 -0
  211. package/rancher-components/components/Form/ToggleSwitch/index.ts +1 -0
  212. package/rancher-components/components/Form/index.ts +5 -0
  213. package/rancher-components/components/LabeledTooltip/LabeledTooltip.vue +137 -0
  214. package/rancher-components/components/LabeledTooltip/index.ts +1 -0
  215. package/scripts/publish-shell.sh +40 -7
  216. package/scripts/record-deps.js +37 -0
  217. package/scripts/sync-shell-deps +37 -0
  218. package/scripts/test-plugins-build.sh +8 -5
  219. package/scripts/typegen.sh +84 -0
  220. package/store/auth.js +3 -0
  221. package/store/catalog.js +9 -8
  222. package/store/i18n.js +10 -1
  223. package/store/index.js +12 -3
  224. package/store/prefs.js +16 -0
  225. package/store/type-map.js +32 -5
  226. package/store/uiplugins.ts +15 -61
  227. package/types/shell/index.d.ts +3046 -0
  228. package/utils/__tests__/object.test.ts +0 -24
  229. package/utils/__tests__/selector.test.ts +1 -1
  230. package/utils/dynamic-importer.js +4 -0
  231. package/utils/favicon.js +8 -2
  232. package/utils/gc/gc-interval.ts +40 -0
  233. package/utils/gc/gc-root-store.js +76 -0
  234. package/utils/gc/gc-route-changed.ts +44 -0
  235. package/utils/gc/gc-types.ts +21 -0
  236. package/utils/gc/gc.ts +282 -0
  237. package/utils/grafana.js +2 -6
  238. package/utils/socket.js +41 -20
  239. package/utils/string.js +1 -7
  240. package/utils/validators/formRules/__tests__/index.test.ts +108 -0
  241. package/utils/validators/formRules/index.ts +9 -1
  242. package/config/footer.js +0 -19
  243. package/creators/pkg/nuxt.config.js +0 -6
  244. package/pages/plugins.vue +0 -387
  245. package/server/verdaccio-middleware.js +0 -56
@@ -0,0 +1,395 @@
1
+ <script lang="ts">
2
+ import Vue, { PropType } from 'vue';
3
+ import { _EDIT, _VIEW } from '@shell/config/query-params';
4
+ import { addObject, removeObject } from '@shell/utils/array';
5
+
6
+ export default Vue.extend({
7
+ props: {
8
+ /**
9
+ * The checkbox value.
10
+ */
11
+ value: {
12
+ type: [Boolean, Array, String] as PropType<boolean | boolean[] | string>,
13
+ default: false
14
+ },
15
+
16
+ /**
17
+ * The checkbox label.
18
+ */
19
+ label: {
20
+ type: String,
21
+ default: null
22
+ },
23
+
24
+ /**
25
+ * The i18n key to use for the checkbox label.
26
+ */
27
+ labelKey: {
28
+ type: String,
29
+ default: null
30
+ },
31
+
32
+ /**
33
+ * Random ID generated for binding label to input.
34
+ */
35
+ id: {
36
+ type: String,
37
+ default: String(Math.random() * 1000)
38
+ },
39
+
40
+ /**
41
+ * Disable the checkbox.
42
+ */
43
+ disabled: {
44
+ type: Boolean,
45
+ default: false
46
+ },
47
+
48
+ /**
49
+ * Display an indeterminate state. Useful for cases where a checkbox might
50
+ * be the parent to child checkboxes, and we need to show that a subset of
51
+ * children are checked.
52
+ */
53
+ indeterminate: {
54
+ type: Boolean,
55
+ default: false
56
+ },
57
+
58
+ /**
59
+ * The checkbox editing mode.
60
+ * @values _EDIT, _VIEW
61
+ */
62
+ mode: {
63
+ type: String,
64
+ default: _EDIT
65
+ },
66
+
67
+ /**
68
+ * The contents of the checkbox tooltip.
69
+ */
70
+ tooltip: {
71
+ type: [String, Object],
72
+ default: null
73
+ },
74
+
75
+ /**
76
+ * The i18n key to use for the checkbox tooltip.
77
+ */
78
+ tooltipKey: {
79
+ type: String,
80
+ default: null
81
+ },
82
+
83
+ /**
84
+ * A custom value to use when the checkbox is checked.
85
+ */
86
+ valueWhenTrue: {
87
+ type: [Boolean, String, Number],
88
+ default: true
89
+ },
90
+
91
+ /**
92
+ * The i18n key to use for the checkbox description.
93
+ */
94
+ descriptionKey: {
95
+ type: String,
96
+ default: null
97
+ },
98
+
99
+ /**
100
+ * The checkbox description.
101
+ */
102
+ description: {
103
+ type: String,
104
+ default: null
105
+ },
106
+
107
+ /**
108
+ * Primary checkbox displays label so that it stands out more
109
+ */
110
+ primary: {
111
+ type: Boolean,
112
+ default: false
113
+ },
114
+ },
115
+
116
+ computed: {
117
+ /**
118
+ * Determines if the checkbox is disabled.
119
+ * @returns boolean: True when the disabled prop is true or when mode is
120
+ * View.
121
+ */
122
+ isDisabled(): boolean {
123
+ return (this.disabled || this.mode === _VIEW);
124
+ },
125
+ /**
126
+ * Determines if the checkbox is checked when using custom values or
127
+ * multiple values.
128
+ * @returns boolean: True when at least one value is true in a collection or
129
+ * when value matches `this.valueWhenTrue`.
130
+ */
131
+ isChecked(): boolean {
132
+ return this.isMulti(this.value) ? this.findTrueValues(this.value) : this.value === this.valueWhenTrue;
133
+ }
134
+ },
135
+
136
+ methods: {
137
+ /**
138
+ * Toggles the checked state for the checkbox and emits an 'input' event.
139
+ */
140
+ clicked(event: MouseEvent): boolean | void {
141
+ if ((event.target as HTMLLinkElement).tagName === 'A' && (event.target as HTMLLinkElement).href) {
142
+ // Ignore links inside the checkbox label so you can click them
143
+ return true;
144
+ }
145
+
146
+ event.stopPropagation();
147
+ event.preventDefault();
148
+
149
+ if (this.isDisabled) {
150
+ return;
151
+ }
152
+
153
+ const customEvent = {
154
+ bubbles: true,
155
+ cancelable: false,
156
+ shiftKey: event.shiftKey,
157
+ altKey: event.altKey,
158
+ ctrlKey: event.ctrlKey,
159
+ metaKey: event.metaKey
160
+ };
161
+
162
+ const click = new CustomEvent('click', customEvent);
163
+
164
+ // Flip the value
165
+ if (this.isMulti(this.value)) {
166
+ if (this.isChecked) {
167
+ removeObject(this.value, this.valueWhenTrue);
168
+ } else {
169
+ addObject(this.value, this.valueWhenTrue);
170
+ }
171
+ this.$emit('input', this.value);
172
+ } else if (this.isString(this.valueWhenTrue)) {
173
+ if (this.isChecked) {
174
+ this.$emit('input', null);
175
+ } else {
176
+ this.$emit('input', this.valueWhenTrue);
177
+ }
178
+ } else {
179
+ this.$emit('input', !this.value);
180
+ this.$el.dispatchEvent(click);
181
+ }
182
+ },
183
+
184
+ /**
185
+ * Determines if there are multiple values for the checkbox.
186
+ */
187
+ isMulti(value: boolean | boolean[] | string): value is boolean[] {
188
+ return Array.isArray(value);
189
+ },
190
+
191
+ isString(value: boolean | number | string): value is boolean {
192
+ return typeof value === 'string';
193
+ },
194
+
195
+ /**
196
+ * Finds the first true value for multiple checkboxes.
197
+ * @param value A collection of values for the checkbox.
198
+ */
199
+ findTrueValues(value: boolean[]): boolean {
200
+ return value.find(v => v === this.valueWhenTrue) || false;
201
+ }
202
+ }
203
+ });
204
+ </script>
205
+
206
+ <template>
207
+ <div class="checkbox-outer-container" data-checkbox-ctrl>
208
+ <label
209
+ class="checkbox-container"
210
+ :class="{ 'disabled': isDisabled}"
211
+ :for="id"
212
+ @keydown.enter.prevent="clicked($event)"
213
+ @keydown.space.prevent="clicked($event)"
214
+ @click="clicked($event)"
215
+ >
216
+ <input
217
+ v-model="value"
218
+ :checked="isChecked"
219
+ :value="valueWhenTrue"
220
+ type="checkbox"
221
+ :tabindex="-1"
222
+ :name="id"
223
+ @click.stop.prevent
224
+ />
225
+ <span
226
+ class="checkbox-custom"
227
+ :class="{indeterminate: indeterminate}"
228
+ :tabindex="isDisabled ? -1 : 0"
229
+ :aria-label="label"
230
+ :aria-checked="!!value"
231
+ role="checkbox"
232
+ />
233
+ <span
234
+ v-if="$slots.label || label || labelKey || tooltipKey || tooltip"
235
+ class="checkbox-label"
236
+ :class="{ 'checkbox-primary': primary }"
237
+ >
238
+ <slot name="label">
239
+ <t v-if="labelKey" :k="labelKey" :raw="true" />
240
+ <template v-else-if="label">{{ label }}</template>
241
+ <i v-if="tooltipKey" v-tooltip="t(tooltipKey)" class="checkbox-info icon icon-info icon-lg" />
242
+ <i v-else-if="tooltip" v-tooltip="tooltip" class="checkbox-info icon icon-info icon-lg" />
243
+ </slot>
244
+ </span>
245
+ </label>
246
+ <div v-if="descriptionKey || description" class="checkbox-outer-container-description">
247
+ <t v-if="descriptionKey" :k="descriptionKey" />
248
+ <template v-else-if="description">
249
+ {{ description }}
250
+ </template>
251
+ </div>
252
+ </div>
253
+ </template>
254
+
255
+ <style lang='scss'>
256
+ $fontColor: var(--input-label);
257
+
258
+ .checkbox-outer-container {
259
+ display: inline-flex;
260
+ flex-direction: column;
261
+ &-description {
262
+ color: $fontColor;
263
+ font-size: 14px;
264
+ margin-left: 19px;
265
+ margin-top: 5px;
266
+ opacity: 0.8;
267
+ }
268
+ }
269
+
270
+ // NOTE: SortableTable depends on the names of this class, do not arbitrarily change.
271
+ .checkbox-container {
272
+ position: relative;
273
+ display: inline-flex;
274
+ align-items: center;
275
+ margin: 0;
276
+ cursor: pointer;
277
+ user-select: none;
278
+ border-radius: var(--border-radius);
279
+
280
+ .checkbox-label {
281
+ color: var(--input-label);
282
+ display: inline-flex;
283
+ margin: 0px 10px 0px 5px;
284
+
285
+ &.checkbox-primary {
286
+ color: inherit;
287
+ font-weight: 600;
288
+ }
289
+ }
290
+
291
+ .checkbox-info {
292
+ line-height: normal;
293
+ margin-left: 2px;
294
+ }
295
+
296
+ .checkbox-custom {
297
+ height: 14px;
298
+ width: 14px;
299
+ background-color: var(--body-bg);
300
+ border-radius: var(--border-radius);
301
+ transition: all 0.3s ease-out;
302
+ border: 1px solid var(--border);
303
+ }
304
+
305
+ input {
306
+ // display: none;
307
+ opacity: 0;
308
+ position: absolute;
309
+ z-index: -1;
310
+ }
311
+
312
+ input:checked ~ .checkbox-custom {
313
+ background-color:var(--primary);
314
+ -webkit-transform: rotate(0deg) scale(1);
315
+ -ms-transform: rotate(0deg) scale(1);
316
+ transform: rotate(0deg) scale(1);
317
+ opacity:1;
318
+ border: 1px solid var(--primary);
319
+ }
320
+
321
+ // Custom Checkbox tick
322
+ .checkbox-custom::after {
323
+ position: absolute;
324
+ content: "";
325
+ left: 0px;
326
+ top: 0px;
327
+ height: 0px;
328
+ width: 0px;
329
+ border-radius: var(--border-radius);
330
+ border: solid;
331
+ border-color: var(--input-text);
332
+ border-width: 0 3px 3px 0;
333
+ -webkit-transform: rotate(0deg) scale(0);
334
+ -ms-transform: rotate(0deg) scale(0);
335
+ transform: rotate(0deg) scale(0);
336
+ opacity:1;
337
+ }
338
+
339
+ input:checked ~ .checkbox-custom::after {
340
+ -webkit-transform: rotate(45deg) scale(1);
341
+ -ms-transform: rotate(45deg) scale(1);
342
+ transform: rotate(45deg) scale(1);
343
+ opacity:1;
344
+ left: 4px;
345
+ width: 4px;
346
+ height: 10px;
347
+ border: solid;
348
+ border-color: var(--checkbox-tick);
349
+ border-width: 0 2px 2px 0;
350
+ background-color: transparent;
351
+ }
352
+
353
+ input:checked ~ .checkbox-custom.indeterminate::after {
354
+ -webkit-transform: scale(1);
355
+ -ms-transform: scale(1);
356
+ transform: scale(1);
357
+ opacity:1;
358
+ left: 3px;
359
+ top:2px;
360
+ width: 6px;
361
+ height: 5px;
362
+ border: solid;
363
+ border-color: var(--checkbox-tick);
364
+ border-width: 0 0 2px 0;
365
+ background-color: transparent;
366
+ }
367
+
368
+ // Disabled styles
369
+ &.disabled {
370
+ .checkbox-custom {
371
+ background-color: var(--checkbox-disabled-bg);
372
+ border-color: var(--checkbox-disabled-bg);
373
+ }
374
+ input:checked ~ .checkbox-custom {
375
+ background-color: var(--checkbox-disabled-bg);
376
+ border-color: var(--checkbox-disabled-bg);
377
+ &::after {
378
+ border-color: var(--checkbox-tick-disabled);
379
+ }
380
+ }
381
+ }
382
+
383
+ &.disabled {
384
+ cursor: not-allowed;
385
+ }
386
+
387
+ .checkbox-view {
388
+ display: flex;
389
+ flex-direction: column;
390
+ LABEL {
391
+ color: $fontColor;
392
+ }
393
+ }
394
+ }
395
+ </style>
@@ -0,0 +1 @@
1
+ export { default as Checkbox } from './Checkbox.vue';
@@ -0,0 +1,29 @@
1
+
2
+ import { mount } from '@vue/test-utils';
3
+ import { LabeledInput } from './index';
4
+
5
+ describe('component: LabeledInput', () => {
6
+ it('should emit input only once', () => {
7
+ const value = '2';
8
+ const delay = 1;
9
+ const wrapper = mount(LabeledInput, {
10
+ propsData: { delay },
11
+ mocks: {
12
+ $store: {
13
+ getters: {
14
+ 'i18n/t': jest.fn()
15
+ }
16
+ }
17
+ }
18
+ });
19
+
20
+ jest.useFakeTimers();
21
+ wrapper.find('input').setValue('1');
22
+ wrapper.find('input').setValue(value);
23
+ jest.advanceTimersByTime(delay);
24
+ jest.useRealTimers();
25
+
26
+ expect(wrapper.emitted('input')).toHaveLength(1);
27
+ expect(wrapper.emitted('input')![0][0]).toBe(value);
28
+ });
29
+ });