@vcita/design-system 0.6.23 → 0.6.24
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/CHANGELOG.MD +4 -1
- package/dist/@vcita/design-system.esm.js +218 -167
- package/dist/@vcita/design-system.min.js +1 -1
- package/dist/@vcita/design-system.ssr.js +196 -154
- package/package.json +1 -1
- package/src/components/VcInputBottomSheet/VcInputBottomSheet.spec.js +34 -1
- package/src/components/VcInputBottomSheet/VcInputBottomSheet.stories.js +11 -5
- package/src/components/VcInputBottomSheet/VcInputBottomSheet.vue +27 -9
- package/src/components/VcInputPopover/VcInputPopover.vue +6 -4
package/CHANGELOG.MD
CHANGED
|
@@ -6,7 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
|
|
7
7
|
### Unreleased changes
|
|
8
8
|
|
|
9
|
-
### 0.6.
|
|
9
|
+
### 0.6.24 (2022-06-14)
|
|
10
|
+
- VcInputBottomSheet - add switch support
|
|
11
|
+
|
|
12
|
+
### 0.6.23 (2022-06-13)
|
|
10
13
|
- VcWizard - css fix
|
|
11
14
|
|
|
12
15
|
### 0.6.22 (2022-05-31)
|
|
@@ -4132,13 +4132,137 @@ const __vue_component__$u = /*#__PURE__*/normalizeComponent({
|
|
|
4132
4132
|
}, __vue_inject_styles__$u, __vue_script__$u, __vue_scope_id__$u, __vue_is_functional_template__$u, __vue_module_identifier__$u, false, createInjector, undefined, undefined);
|
|
4133
4133
|
|
|
4134
4134
|
var script$t = {
|
|
4135
|
+
components: {
|
|
4136
|
+
VcIcon: __vue_component__$U,
|
|
4137
|
+
VSwitch: VSwitch
|
|
4138
|
+
},
|
|
4139
|
+
name: "VcSwitch",
|
|
4140
|
+
props: {
|
|
4141
|
+
value: {
|
|
4142
|
+
type: Boolean,
|
|
4143
|
+
default: true
|
|
4144
|
+
},
|
|
4145
|
+
label: {
|
|
4146
|
+
type: String,
|
|
4147
|
+
required: false
|
|
4148
|
+
},
|
|
4149
|
+
color: {
|
|
4150
|
+
type: String,
|
|
4151
|
+
default: 'primary'
|
|
4152
|
+
},
|
|
4153
|
+
ripple: {
|
|
4154
|
+
type: Boolean,
|
|
4155
|
+
default: true
|
|
4156
|
+
},
|
|
4157
|
+
disabled: {
|
|
4158
|
+
type: Boolean,
|
|
4159
|
+
default: false
|
|
4160
|
+
},
|
|
4161
|
+
icon: {
|
|
4162
|
+
type: Boolean,
|
|
4163
|
+
default: false
|
|
4164
|
+
}
|
|
4165
|
+
},
|
|
4166
|
+
methods: {
|
|
4167
|
+
onChange: function (id) {
|
|
4168
|
+
this.$emit('input', id);
|
|
4169
|
+
}
|
|
4170
|
+
}
|
|
4171
|
+
};
|
|
4172
|
+
|
|
4173
|
+
/* script */
|
|
4174
|
+
const __vue_script__$t = script$t;
|
|
4175
|
+
/* template */
|
|
4176
|
+
|
|
4177
|
+
var __vue_render__$t = function () {
|
|
4178
|
+
var _vm = this;
|
|
4179
|
+
|
|
4180
|
+
var _h = _vm.$createElement;
|
|
4181
|
+
|
|
4182
|
+
var _c = _vm._self._c || _h;
|
|
4183
|
+
|
|
4184
|
+
return _c('div', {
|
|
4185
|
+
staticClass: "switchContainer",
|
|
4186
|
+
class: {
|
|
4187
|
+
'with-icon': _vm.icon
|
|
4188
|
+
}
|
|
4189
|
+
}, [_c('v-switch', {
|
|
4190
|
+
staticClass: "VcSwitch",
|
|
4191
|
+
class: {
|
|
4192
|
+
'is-active': _vm.value,
|
|
4193
|
+
'with-icon': _vm.icon
|
|
4194
|
+
},
|
|
4195
|
+
attrs: {
|
|
4196
|
+
"inset": "",
|
|
4197
|
+
"hide-details": "",
|
|
4198
|
+
"label": _vm.label,
|
|
4199
|
+
"ripple": _vm.ripple,
|
|
4200
|
+
"input-value": _vm.value,
|
|
4201
|
+
"color": _vm.color,
|
|
4202
|
+
"disabled": _vm.disabled
|
|
4203
|
+
},
|
|
4204
|
+
on: {
|
|
4205
|
+
"change": _vm.onChange
|
|
4206
|
+
},
|
|
4207
|
+
scopedSlots: _vm._u([{
|
|
4208
|
+
key: "label",
|
|
4209
|
+
fn: function () {
|
|
4210
|
+
return [_vm._t("label")];
|
|
4211
|
+
},
|
|
4212
|
+
proxy: true
|
|
4213
|
+
}], null, true)
|
|
4214
|
+
}), _vm._v(" "), _vm.icon && _vm.value ? _c('VcIcon', {
|
|
4215
|
+
staticClass: "VcSwitchIcon VcSwitchIconV",
|
|
4216
|
+
attrs: {
|
|
4217
|
+
"size": "10"
|
|
4218
|
+
}
|
|
4219
|
+
}, [_vm._v("$check_button")]) : _vm._e(), _vm._v(" "), _vm.icon && !_vm.value ? _c('VcIcon', {
|
|
4220
|
+
staticClass: "VcSwitchIcon VcSwitchIconX",
|
|
4221
|
+
attrs: {
|
|
4222
|
+
"size": "10"
|
|
4223
|
+
}
|
|
4224
|
+
}, [_vm._v("$close_button")]) : _vm._e()], 1);
|
|
4225
|
+
};
|
|
4226
|
+
|
|
4227
|
+
var __vue_staticRenderFns__$t = [];
|
|
4228
|
+
/* style */
|
|
4229
|
+
|
|
4230
|
+
const __vue_inject_styles__$t = function (inject) {
|
|
4231
|
+
if (!inject) return;
|
|
4232
|
+
inject("data-v-c503b80e_0", {
|
|
4233
|
+
source: ".switchContainer .VcSwitch[data-v-c503b80e]{padding:0;margin:0}.switchContainer .VcSwitch[data-v-c503b80e] label{font-size:var(--font-size-small);font-weight:var(--font-weight-medium);line-height:var(--size-value6);color:var(--neutral-lighten-1)}.switchContainer .VcSwitch[data-v-c503b80e] input{height:var(--size-value5)}.switchContainer .VcSwitch[data-v-c503b80e] .v-input--selection-controls__input{margin-left:0;margin-right:var(--size-value3);height:var(--size-value5);width:var(--size-value8)}#app[dir=rtl] .switchContainer .VcSwitch[data-v-c503b80e] .v-input--selection-controls__input{margin-left:var(--size-value3)}#app[dir=rtl] .switchContainer .VcSwitch[data-v-c503b80e] .v-input--selection-controls__input{margin-right:0}.switchContainer .VcSwitch[data-v-c503b80e] .v-input--switch__track{top:0;left:0}#app[dir=rtl] .switchContainer .VcSwitch[data-v-c503b80e] .v-input--switch__track{left:auto;right:0}.switchContainer .VcSwitch[data-v-c503b80e] .v-input--selection-controls__ripple{left:-10px;height:25px;width:25px}#app[dir=rtl] .switchContainer .VcSwitch[data-v-c503b80e] .v-input--selection-controls__ripple{left:auto;right:-10px}.switchContainer .VcSwitch[data-v-c503b80e] .v-input--switch__thumb{height:14px;width:14px;background-color:#fff;top:calc(50% - 7px);transform:translateX(3px)!important;box-shadow:var(--shadow-5)}#app[dir=rtl] .switchContainer .VcSwitch[data-v-c503b80e] .v-input--switch__thumb{transform:translateX(-3px)!important}.switchContainer .VcSwitch.v-input--is-disabled[data-v-c503b80e] {opacity:1}.switchContainer .VcSwitch.v-input--is-disabled[data-v-c503b80e] .v-input--switch__track{color:var(--gray-lighten-2)!important}.switchContainer .VcSwitch.v-input--is-disabled[data-v-c503b80e] .v-input--switch__thumb{background-color:var(--gray)!important;box-shadow:none}.switchContainer .VcSwitch.is-active[data-v-c503b80e] .v-input--switch__track{opacity:1;background-color:currentColor}.switchContainer .VcSwitch.is-active[data-v-c503b80e] .v-input--selection-controls__ripple{transform:translateX(14px)!important}#app[dir=rtl] .switchContainer .VcSwitch.is-active[data-v-c503b80e] .v-input--selection-controls__ripple{transform:translateX(-14px)!important}.switchContainer .VcSwitch.is-active[data-v-c503b80e] .v-input--switch__thumb{transform:translateX(17px)!important}#app[dir=rtl] .switchContainer .VcSwitch.is-active[data-v-c503b80e] .v-input--switch__thumb{transform:translateX(-17px)!important}.switchContainer .VcSwitch.with-icon[data-v-c503b80e] input{height:var(--size-value6)}.switchContainer .VcSwitch.with-icon[data-v-c503b80e] .v-input--selection-controls__input{margin-left:0;margin-right:var(--size-value3);height:var(--size-value6);width:var(--size-value12)}#app[dir=rtl] .switchContainer .VcSwitch.with-icon[data-v-c503b80e] .v-input--selection-controls__input{margin-left:var(--size-value3)}#app[dir=rtl] .switchContainer .VcSwitch.with-icon[data-v-c503b80e] .v-input--selection-controls__input{margin-right:0}.switchContainer .VcSwitch.with-icon[data-v-c503b80e] .v-input--switch__track{top:0;left:0;height:var(--size-value6);width:var(--size-value12)}#app[dir=rtl] .switchContainer .VcSwitch.with-icon[data-v-c503b80e] .v-input--switch__track{left:auto;right:0}.switchContainer .VcSwitch.with-icon[data-v-c503b80e] .v-input--selection-controls__ripple{left:-9px;height:29px;width:29px;top:calc(50% - 21.5px)}#app[dir=rtl] .switchContainer .VcSwitch.with-icon[data-v-c503b80e] .v-input--selection-controls__ripple{left:auto;right:-9px}.switchContainer .VcSwitch.with-icon[data-v-c503b80e] .v-input--switch__thumb{height:18px;width:18px;top:calc(50% - 9px);transform:translateX(3.5px)!important}#app[dir=rtl] .switchContainer .VcSwitch.with-icon[data-v-c503b80e] .v-input--switch__thumb{transform:translateX(-3.5px)!important}.switchContainer .VcSwitch.with-icon.v-input--is-disabled[data-v-c503b80e] {opacity:1}.switchContainer .VcSwitch.with-icon.v-input--is-disabled[data-v-c503b80e] .v-input--switch__track{color:var(--gray-lighten-2)!important}.switchContainer .VcSwitch.with-icon.v-input--is-disabled[data-v-c503b80e] .v-input--switch__thumb{background-color:var(--gray)!important;box-shadow:none}.switchContainer .VcSwitch.with-icon.v-input--is-disabled+.VcSwitchIcon[data-v-c503b80e]{fill:var(--gray-lighten-2)!important}.switchContainer .VcSwitch.with-icon.is-active[data-v-c503b80e] .v-input--switch__track{opacity:1;background-color:currentColor}.switchContainer .VcSwitch.with-icon.is-active[data-v-c503b80e] .v-input--selection-controls__ripple{transform:translateX(23.5px)!important}#app[dir=rtl] .switchContainer .VcSwitch.with-icon.is-active[data-v-c503b80e] .v-input--selection-controls__ripple{transform:translateX(-23.5px)!important}.switchContainer .VcSwitch.with-icon.is-active[data-v-c503b80e] .v-input--switch__thumb{transform:translateX(26px)!important}#app[dir=rtl] .switchContainer .VcSwitch.with-icon.is-active[data-v-c503b80e] .v-input--switch__thumb{transform:translateX(-26px)!important}.switchContainer .VcSwitchIcon[data-v-c503b80e]{cursor:pointer;pointer-events:none;margin:17px;left:-10px}.switchContainer .VcSwitchIconV[data-v-c503b80e]{top:-33px;transform:translateX(23px);fill:var(--v-secondary-base)}.switchContainer .VcSwitchIconX[data-v-c503b80e]{top:-34px;transform:translate(0,0);fill:var(--neutral-lighten-1)}.switchContainer.with-icon[data-v-c503b80e]{height:var(--size-value6)}",
|
|
4234
|
+
map: undefined,
|
|
4235
|
+
media: undefined
|
|
4236
|
+
});
|
|
4237
|
+
};
|
|
4238
|
+
/* scoped */
|
|
4239
|
+
|
|
4240
|
+
|
|
4241
|
+
const __vue_scope_id__$t = "data-v-c503b80e";
|
|
4242
|
+
/* module identifier */
|
|
4243
|
+
|
|
4244
|
+
const __vue_module_identifier__$t = undefined;
|
|
4245
|
+
/* functional template */
|
|
4246
|
+
|
|
4247
|
+
const __vue_is_functional_template__$t = false;
|
|
4248
|
+
/* style inject SSR */
|
|
4249
|
+
|
|
4250
|
+
/* style inject shadow dom */
|
|
4251
|
+
|
|
4252
|
+
const __vue_component__$t = /*#__PURE__*/normalizeComponent({
|
|
4253
|
+
render: __vue_render__$t,
|
|
4254
|
+
staticRenderFns: __vue_staticRenderFns__$t
|
|
4255
|
+
}, __vue_inject_styles__$t, __vue_script__$t, __vue_scope_id__$t, __vue_is_functional_template__$t, __vue_module_identifier__$t, false, createInjector, undefined, undefined);
|
|
4256
|
+
|
|
4257
|
+
var script$s = {
|
|
4135
4258
|
name: "VcInputBottomSheet",
|
|
4136
4259
|
components: {
|
|
4137
4260
|
VcBottomSheet: __vue_component__$u,
|
|
4138
4261
|
VcModalHeader: __vue_component__$P,
|
|
4139
4262
|
VcLayout: __vue_component__$R,
|
|
4140
4263
|
VcModalFooter: __vue_component__$Q,
|
|
4141
|
-
VcForm: __vue_component__$N
|
|
4264
|
+
VcForm: __vue_component__$N,
|
|
4265
|
+
VcSwitch: __vue_component__$t
|
|
4142
4266
|
},
|
|
4143
4267
|
props: {
|
|
4144
4268
|
value: {
|
|
@@ -4177,16 +4301,30 @@ var script$t = {
|
|
|
4177
4301
|
dataQa: {
|
|
4178
4302
|
type: String,
|
|
4179
4303
|
default: 'vc-bottom-sheet-input'
|
|
4304
|
+
},
|
|
4305
|
+
showHeaderToggle: {
|
|
4306
|
+
type: Boolean,
|
|
4307
|
+
default: false
|
|
4308
|
+
},
|
|
4309
|
+
toggleInitialValue: {
|
|
4310
|
+
type: Boolean,
|
|
4311
|
+
default: true
|
|
4180
4312
|
}
|
|
4181
4313
|
},
|
|
4182
|
-
|
|
4183
|
-
|
|
4184
|
-
|
|
4314
|
+
|
|
4315
|
+
data() {
|
|
4316
|
+
return {
|
|
4317
|
+
toggleValue: this.toggleInitialValue,
|
|
4318
|
+
validForm: true
|
|
4319
|
+
};
|
|
4320
|
+
},
|
|
4321
|
+
|
|
4185
4322
|
methods: {
|
|
4186
4323
|
onOkClicked() {
|
|
4187
4324
|
this.validate();
|
|
4188
4325
|
this.$emit('onOkClicked', {
|
|
4189
|
-
valid: this.validForm
|
|
4326
|
+
valid: this.validForm,
|
|
4327
|
+
disabled: !this.toggleValue
|
|
4190
4328
|
});
|
|
4191
4329
|
},
|
|
4192
4330
|
|
|
@@ -4197,7 +4335,15 @@ var script$t = {
|
|
|
4197
4335
|
onMainFormValueChanged(value) {
|
|
4198
4336
|
this.validForm = value;
|
|
4199
4337
|
this.$emit('onValidationChanged', {
|
|
4200
|
-
valid: this.validForm
|
|
4338
|
+
valid: this.validForm,
|
|
4339
|
+
disabled: !this.toggleValue
|
|
4340
|
+
});
|
|
4341
|
+
},
|
|
4342
|
+
|
|
4343
|
+
onHeaderToggleChanged() {
|
|
4344
|
+
this.$emit('onDisabledChanged', {
|
|
4345
|
+
valid: this.validForm,
|
|
4346
|
+
disabled: !this.toggleValue
|
|
4201
4347
|
});
|
|
4202
4348
|
}
|
|
4203
4349
|
|
|
@@ -4205,10 +4351,10 @@ var script$t = {
|
|
|
4205
4351
|
};
|
|
4206
4352
|
|
|
4207
4353
|
/* script */
|
|
4208
|
-
const __vue_script__$
|
|
4354
|
+
const __vue_script__$s = script$s;
|
|
4209
4355
|
/* template */
|
|
4210
4356
|
|
|
4211
|
-
var __vue_render__$
|
|
4357
|
+
var __vue_render__$s = function () {
|
|
4212
4358
|
var _vm = this;
|
|
4213
4359
|
|
|
4214
4360
|
var _h = _vm.$createElement;
|
|
@@ -4258,7 +4404,29 @@ var __vue_render__$t = function () {
|
|
|
4258
4404
|
"onCloseButtonClicked": function ($event) {
|
|
4259
4405
|
return _vm.$emit('input', false);
|
|
4260
4406
|
}
|
|
4261
|
-
}
|
|
4407
|
+
},
|
|
4408
|
+
scopedSlots: _vm._u([{
|
|
4409
|
+
key: "headerImage",
|
|
4410
|
+
fn: function () {
|
|
4411
|
+
return [_vm.showHeaderToggle ? _c('VcSwitch', {
|
|
4412
|
+
attrs: {
|
|
4413
|
+
"color": "secondary",
|
|
4414
|
+
"data-qa": _vm.dataQa + "-switch"
|
|
4415
|
+
},
|
|
4416
|
+
on: {
|
|
4417
|
+
"input": _vm.onHeaderToggleChanged
|
|
4418
|
+
},
|
|
4419
|
+
model: {
|
|
4420
|
+
value: _vm.toggleValue,
|
|
4421
|
+
callback: function ($$v) {
|
|
4422
|
+
_vm.toggleValue = $$v;
|
|
4423
|
+
},
|
|
4424
|
+
expression: "toggleValue"
|
|
4425
|
+
}
|
|
4426
|
+
}) : _vm._e()];
|
|
4427
|
+
},
|
|
4428
|
+
proxy: true
|
|
4429
|
+
}], null, false, 4191315885)
|
|
4262
4430
|
}) : _vm._e(), _vm._v(" "), _c('VcLayout', {
|
|
4263
4431
|
staticClass: "vc-bottom-sheet__content",
|
|
4264
4432
|
attrs: {
|
|
@@ -4277,7 +4445,9 @@ var __vue_render__$t = function () {
|
|
|
4277
4445
|
return _vm.$emit('submit', data);
|
|
4278
4446
|
}
|
|
4279
4447
|
}
|
|
4280
|
-
}, [_vm._t("default"
|
|
4448
|
+
}, [_vm._t("default", null, {
|
|
4449
|
+
"disabled": !_vm.toggleValue
|
|
4450
|
+
})], 2)], 1), _vm._v(" "), _vm.footer ? _c('VcModalFooter', {
|
|
4281
4451
|
staticClass: "vc-bottom-sheet__footer",
|
|
4282
4452
|
class: {
|
|
4283
4453
|
'showDivider': _vm.showHeaderDivider
|
|
@@ -4303,13 +4473,13 @@ var __vue_render__$t = function () {
|
|
|
4303
4473
|
}) : _vm._e()], 1)]], 2);
|
|
4304
4474
|
};
|
|
4305
4475
|
|
|
4306
|
-
var __vue_staticRenderFns__$
|
|
4476
|
+
var __vue_staticRenderFns__$s = [];
|
|
4307
4477
|
/* style */
|
|
4308
4478
|
|
|
4309
|
-
const __vue_inject_styles__$
|
|
4479
|
+
const __vue_inject_styles__$s = function (inject) {
|
|
4310
4480
|
if (!inject) return;
|
|
4311
|
-
inject("data-v-
|
|
4312
|
-
source: "[data-v-
|
|
4481
|
+
inject("data-v-e1c1f348_0", {
|
|
4482
|
+
source: "[data-v-e1c1f348]:root{--primary-font-family:Montserrat;--font-size-xxx-small:9px;--font-size-xx-small:12px;--font-size-x-small:13px;--font-size-small:14px;--font-size-small2:15px;--font-size-small3:17px;--font-size-medium:18px;--font-size-medium1:22px;--font-size-medium2:24px;--font-size-large:28px;--font-weight-light:300;--font-weight-medium:400;--font-weight-medium2:500;--font-weight-large:600;--font-weight-large2:700;--font-weight-xl:800;--letter-spacing:0.003em;--size-value0:0px;--size-value1:4px;--size-value2:8px;--size-value3:12px;--size-value4:16px;--size-value5:20px;--size-value6:24px;--size-value7:28px;--size-value8:32px;--size-value9:36px;--size-value10:40px;--size-value11:44px;--size-value12:48px;--size-value13:52px;--size-value14:56px;--size-value15:60px;--size-value16:64px;--size-value17:68px;--size-value18:72px;--size-value19:76px;--size-value20:80px;--border-radius:6px;--border-frame:1px solid #e0e0e0;--border-focused-frame:1px solid var(--v-secondary-base);--shadow-focused-frame:0px 0px 0px 3px var(--v-secondary-lighten1);--popover-width:360px;--popover-max-height:464px;--popover-border-radius:10px;--modal-desktop-offset:-112px;--modal-bg-color:#ffffff;--modal-box-shadow:0px 7px 8px -4px rgba(0, 0, 0, 0.2),2px 13px 19px 2px rgba(0, 0, 0, 0.14),0px 5px 24px rgba(0, 0, 0, 0.12);--modal-border-radius:10px;--modal-width-small:384px;--modal-width-medium:576px;--modal-width-large:816px;--modal-width-x-large:972px;--avatar-x-sm:24px;--avatar-sm:32px;--avatar-md:40px;--avatar-lg:48px;--dropzone-active-border-color:#1e93b7;--dropzone-active-second-border-color:#95cddb;--gray-darken-5:#212121;--gray-darken-4:#616161;--gray-darken-3:#757575;--gray-darken-2:#999999;--gray-darken-1:#b3b3b3;--gray:#cccccc;--gray-lighten-1:#e0e0e0;--gray-lighten-2:#ededed;--gray-lighten-3:#f7f7f7;--gray-lighten-4:#fafafa;--neutral:#586E8C;--neutral-lighten-1:#D6DBE6;--neutral-lighten-2:#EAEDF2;--neutral-lighten-3:#F8F9FB;--red:#F2514A;--red-lighten-1:#F79792;--red-lighten-2:#FBCBC9;--red-lighten-3:#FDE8E7;--yellow:#FFC511;--yellow-lighten-1:#FFDC70;--yellow-lighten-2:#FFEDB8;--yellow-lighten-3:#FFF7E0;--green:#54D28C;--green-lighten-1:#98E4BA;--green-lighten-2:#CFF8E1;--green-lighten-3:#EAFCF2;--blue:#478FFF;--blue-lighten-1:#91BCFF;--blue-lighten-2:#C8DDFF;--blue-lighten-3:#E7F0FF;--orange:#FF8F00;--orange-lighten-1:#FCB965;--orange-lighten-2:#FAD9B0;--orange-lighten-3:#F9EBDA;--shadow-1:0px 1px 4px rgba(0, 0, 0, 0.11);--shadow-2:0px 2px 5px rgba(0, 0, 0, 0.1),0px 2px 2px rgba(0, 0, 0, 0.06),0px 3px 1px -2px rgba(0, 0, 0, 0.06);--shadow-3:0px 3px 2px rgba(0, 0, 0, 0.101961);--shadow-4:0px 1px 1px rgba(0, 0, 0, 0.06),0px 3px 8px rgba(0, 0, 0, 0.15);--shadow-5:0px 4px 18px rgba(0, 0, 0, 0.1);--shadow-6:0px 1px 10px rgba(0, 0, 0, 0.12),0px 4px 7px rgba(0, 0, 0, 0.14),0px 2px 4px -1px rgba(0, 0, 0, 0.2);--shadow-7:0px 3px 5px -1px rgba(0, 0, 0, 0.2),0px 6px 10px rgba(0, 0, 0, 0.14),0px 1px 18px rgba(0, 0, 0, 0.12);--shadow-8:0px 5px 7px 3px rgba(0, 0, 0, 0.26);--shadow-9:0px 7px 8px -4px rgba(0, 0, 0, 0.2),2px 13px 19px 2px rgba(0, 0, 0, 0.14),0px 5px 24px rgba(0, 0, 0, 0.12);--shadow-10:0px 4px 8px #cccccc}.VcInputBottomSheet .vc-bottom-sheet__header.showDivider[data-v-e1c1f348]{border-bottom:1px solid var(--gray-lighten-1)}.VcInputBottomSheet .vc-bottom-sheet__footer[data-v-e1c1f348]{padding:var(--size-value3) var(--size-value4)}.VcInputBottomSheet .vc-bottom-sheet__footer.showDivider[data-v-e1c1f348]{border-top:1px solid var(--gray-lighten-1);display:flex}.VcInputBottomSheet .vc-bottom-sheet__content[data-v-e1c1f348]{padding:var(--size-value6) var(--size-value4);overflow-y:auto}",
|
|
4313
4483
|
map: undefined,
|
|
4314
4484
|
media: undefined
|
|
4315
4485
|
});
|
|
@@ -4317,21 +4487,21 @@ const __vue_inject_styles__$t = function (inject) {
|
|
|
4317
4487
|
/* scoped */
|
|
4318
4488
|
|
|
4319
4489
|
|
|
4320
|
-
const __vue_scope_id__$
|
|
4490
|
+
const __vue_scope_id__$s = "data-v-e1c1f348";
|
|
4321
4491
|
/* module identifier */
|
|
4322
4492
|
|
|
4323
|
-
const __vue_module_identifier__$
|
|
4493
|
+
const __vue_module_identifier__$s = undefined;
|
|
4324
4494
|
/* functional template */
|
|
4325
4495
|
|
|
4326
|
-
const __vue_is_functional_template__$
|
|
4496
|
+
const __vue_is_functional_template__$s = false;
|
|
4327
4497
|
/* style inject SSR */
|
|
4328
4498
|
|
|
4329
4499
|
/* style inject shadow dom */
|
|
4330
4500
|
|
|
4331
|
-
const __vue_component__$
|
|
4332
|
-
render: __vue_render__$
|
|
4333
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
4334
|
-
}, __vue_inject_styles__$
|
|
4501
|
+
const __vue_component__$s = /*#__PURE__*/normalizeComponent({
|
|
4502
|
+
render: __vue_render__$s,
|
|
4503
|
+
staticRenderFns: __vue_staticRenderFns__$s
|
|
4504
|
+
}, __vue_inject_styles__$s, __vue_script__$s, __vue_scope_id__$s, __vue_is_functional_template__$s, __vue_module_identifier__$s, false, createInjector, undefined, undefined);
|
|
4335
4505
|
|
|
4336
4506
|
//
|
|
4337
4507
|
//
|
|
@@ -4351,7 +4521,7 @@ const __vue_component__$t = /*#__PURE__*/normalizeComponent({
|
|
|
4351
4521
|
//
|
|
4352
4522
|
//
|
|
4353
4523
|
//
|
|
4354
|
-
var script$
|
|
4524
|
+
var script$r = {
|
|
4355
4525
|
components: {
|
|
4356
4526
|
VMenu: VMenu
|
|
4357
4527
|
},
|
|
@@ -4387,10 +4557,10 @@ var script$s = {
|
|
|
4387
4557
|
};
|
|
4388
4558
|
|
|
4389
4559
|
/* script */
|
|
4390
|
-
const __vue_script__$
|
|
4560
|
+
const __vue_script__$r = script$r;
|
|
4391
4561
|
/* template */
|
|
4392
4562
|
|
|
4393
|
-
var __vue_render__$
|
|
4563
|
+
var __vue_render__$r = function () {
|
|
4394
4564
|
var _vm = this;
|
|
4395
4565
|
|
|
4396
4566
|
var _h = _vm.$createElement;
|
|
@@ -4428,136 +4598,13 @@ var __vue_render__$s = function () {
|
|
|
4428
4598
|
}, [_vm._v(" "), _vm._t("default")], 2);
|
|
4429
4599
|
};
|
|
4430
4600
|
|
|
4431
|
-
var __vue_staticRenderFns__$s = [];
|
|
4432
|
-
/* style */
|
|
4433
|
-
|
|
4434
|
-
const __vue_inject_styles__$s = function (inject) {
|
|
4435
|
-
if (!inject) return;
|
|
4436
|
-
inject("data-v-da6757e6_0", {
|
|
4437
|
-
source: "[data-v-da6757e6]:root{--primary-font-family:Montserrat;--font-size-xxx-small:9px;--font-size-xx-small:12px;--font-size-x-small:13px;--font-size-small:14px;--font-size-small2:15px;--font-size-small3:17px;--font-size-medium:18px;--font-size-medium1:22px;--font-size-medium2:24px;--font-size-large:28px;--font-weight-light:300;--font-weight-medium:400;--font-weight-medium2:500;--font-weight-large:600;--font-weight-large2:700;--font-weight-xl:800;--letter-spacing:0.003em;--size-value0:0px;--size-value1:4px;--size-value2:8px;--size-value3:12px;--size-value4:16px;--size-value5:20px;--size-value6:24px;--size-value7:28px;--size-value8:32px;--size-value9:36px;--size-value10:40px;--size-value11:44px;--size-value12:48px;--size-value13:52px;--size-value14:56px;--size-value15:60px;--size-value16:64px;--size-value17:68px;--size-value18:72px;--size-value19:76px;--size-value20:80px;--border-radius:6px;--border-frame:1px solid #e0e0e0;--border-focused-frame:1px solid var(--v-secondary-base);--shadow-focused-frame:0px 0px 0px 3px var(--v-secondary-lighten1);--popover-width:360px;--popover-max-height:464px;--popover-border-radius:10px;--modal-desktop-offset:-112px;--modal-bg-color:#ffffff;--modal-box-shadow:0px 7px 8px -4px rgba(0, 0, 0, 0.2),2px 13px 19px 2px rgba(0, 0, 0, 0.14),0px 5px 24px rgba(0, 0, 0, 0.12);--modal-border-radius:10px;--modal-width-small:384px;--modal-width-medium:576px;--modal-width-large:816px;--modal-width-x-large:972px;--avatar-x-sm:24px;--avatar-sm:32px;--avatar-md:40px;--avatar-lg:48px;--dropzone-active-border-color:#1e93b7;--dropzone-active-second-border-color:#95cddb;--gray-darken-5:#212121;--gray-darken-4:#616161;--gray-darken-3:#757575;--gray-darken-2:#999999;--gray-darken-1:#b3b3b3;--gray:#cccccc;--gray-lighten-1:#e0e0e0;--gray-lighten-2:#ededed;--gray-lighten-3:#f7f7f7;--gray-lighten-4:#fafafa;--neutral:#586E8C;--neutral-lighten-1:#D6DBE6;--neutral-lighten-2:#EAEDF2;--neutral-lighten-3:#F8F9FB;--red:#F2514A;--red-lighten-1:#F79792;--red-lighten-2:#FBCBC9;--red-lighten-3:#FDE8E7;--yellow:#FFC511;--yellow-lighten-1:#FFDC70;--yellow-lighten-2:#FFEDB8;--yellow-lighten-3:#FFF7E0;--green:#54D28C;--green-lighten-1:#98E4BA;--green-lighten-2:#CFF8E1;--green-lighten-3:#EAFCF2;--blue:#478FFF;--blue-lighten-1:#91BCFF;--blue-lighten-2:#C8DDFF;--blue-lighten-3:#E7F0FF;--orange:#FF8F00;--orange-lighten-1:#FCB965;--orange-lighten-2:#FAD9B0;--orange-lighten-3:#F9EBDA;--shadow-1:0px 1px 4px rgba(0, 0, 0, 0.11);--shadow-2:0px 2px 5px rgba(0, 0, 0, 0.1),0px 2px 2px rgba(0, 0, 0, 0.06),0px 3px 1px -2px rgba(0, 0, 0, 0.06);--shadow-3:0px 3px 2px rgba(0, 0, 0, 0.101961);--shadow-4:0px 1px 1px rgba(0, 0, 0, 0.06),0px 3px 8px rgba(0, 0, 0, 0.15);--shadow-5:0px 4px 18px rgba(0, 0, 0, 0.1);--shadow-6:0px 1px 10px rgba(0, 0, 0, 0.12),0px 4px 7px rgba(0, 0, 0, 0.14),0px 2px 4px -1px rgba(0, 0, 0, 0.2);--shadow-7:0px 3px 5px -1px rgba(0, 0, 0, 0.2),0px 6px 10px rgba(0, 0, 0, 0.14),0px 1px 18px rgba(0, 0, 0, 0.12);--shadow-8:0px 5px 7px 3px rgba(0, 0, 0, 0.26);--shadow-9:0px 7px 8px -4px rgba(0, 0, 0, 0.2),2px 13px 19px 2px rgba(0, 0, 0, 0.14),0px 5px 24px rgba(0, 0, 0, 0.12);--shadow-10:0px 4px 8px #cccccc}.vc-popover[data-v-da6757e6]{background-color:var(--modal-bg-color);width:var(--popover-width);max-height:var(--popover-max-height);display:flex;box-shadow:var(--modal-box-shadow);border-radius:var(--popover-border-radius)}",
|
|
4438
|
-
map: undefined,
|
|
4439
|
-
media: undefined
|
|
4440
|
-
});
|
|
4441
|
-
};
|
|
4442
|
-
/* scoped */
|
|
4443
|
-
|
|
4444
|
-
|
|
4445
|
-
const __vue_scope_id__$s = "data-v-da6757e6";
|
|
4446
|
-
/* module identifier */
|
|
4447
|
-
|
|
4448
|
-
const __vue_module_identifier__$s = undefined;
|
|
4449
|
-
/* functional template */
|
|
4450
|
-
|
|
4451
|
-
const __vue_is_functional_template__$s = false;
|
|
4452
|
-
/* style inject SSR */
|
|
4453
|
-
|
|
4454
|
-
/* style inject shadow dom */
|
|
4455
|
-
|
|
4456
|
-
const __vue_component__$s = /*#__PURE__*/normalizeComponent({
|
|
4457
|
-
render: __vue_render__$s,
|
|
4458
|
-
staticRenderFns: __vue_staticRenderFns__$s
|
|
4459
|
-
}, __vue_inject_styles__$s, __vue_script__$s, __vue_scope_id__$s, __vue_is_functional_template__$s, __vue_module_identifier__$s, false, createInjector, undefined, undefined);
|
|
4460
|
-
|
|
4461
|
-
var script$r = {
|
|
4462
|
-
components: {
|
|
4463
|
-
VcIcon: __vue_component__$U,
|
|
4464
|
-
VSwitch: VSwitch
|
|
4465
|
-
},
|
|
4466
|
-
name: "VcSwitch",
|
|
4467
|
-
props: {
|
|
4468
|
-
value: {
|
|
4469
|
-
type: Boolean,
|
|
4470
|
-
default: true
|
|
4471
|
-
},
|
|
4472
|
-
label: {
|
|
4473
|
-
type: String,
|
|
4474
|
-
required: false
|
|
4475
|
-
},
|
|
4476
|
-
color: {
|
|
4477
|
-
type: String,
|
|
4478
|
-
default: 'primary'
|
|
4479
|
-
},
|
|
4480
|
-
ripple: {
|
|
4481
|
-
type: Boolean,
|
|
4482
|
-
default: true
|
|
4483
|
-
},
|
|
4484
|
-
disabled: {
|
|
4485
|
-
type: Boolean,
|
|
4486
|
-
default: false
|
|
4487
|
-
},
|
|
4488
|
-
icon: {
|
|
4489
|
-
type: Boolean,
|
|
4490
|
-
default: false
|
|
4491
|
-
}
|
|
4492
|
-
},
|
|
4493
|
-
methods: {
|
|
4494
|
-
onChange: function (id) {
|
|
4495
|
-
this.$emit('input', id);
|
|
4496
|
-
}
|
|
4497
|
-
}
|
|
4498
|
-
};
|
|
4499
|
-
|
|
4500
|
-
/* script */
|
|
4501
|
-
const __vue_script__$r = script$r;
|
|
4502
|
-
/* template */
|
|
4503
|
-
|
|
4504
|
-
var __vue_render__$r = function () {
|
|
4505
|
-
var _vm = this;
|
|
4506
|
-
|
|
4507
|
-
var _h = _vm.$createElement;
|
|
4508
|
-
|
|
4509
|
-
var _c = _vm._self._c || _h;
|
|
4510
|
-
|
|
4511
|
-
return _c('div', {
|
|
4512
|
-
staticClass: "switchContainer",
|
|
4513
|
-
class: {
|
|
4514
|
-
'with-icon': _vm.icon
|
|
4515
|
-
}
|
|
4516
|
-
}, [_c('v-switch', {
|
|
4517
|
-
staticClass: "VcSwitch",
|
|
4518
|
-
class: {
|
|
4519
|
-
'is-active': _vm.value,
|
|
4520
|
-
'with-icon': _vm.icon
|
|
4521
|
-
},
|
|
4522
|
-
attrs: {
|
|
4523
|
-
"inset": "",
|
|
4524
|
-
"hide-details": "",
|
|
4525
|
-
"label": _vm.label,
|
|
4526
|
-
"ripple": _vm.ripple,
|
|
4527
|
-
"input-value": _vm.value,
|
|
4528
|
-
"color": _vm.color,
|
|
4529
|
-
"disabled": _vm.disabled
|
|
4530
|
-
},
|
|
4531
|
-
on: {
|
|
4532
|
-
"change": _vm.onChange
|
|
4533
|
-
},
|
|
4534
|
-
scopedSlots: _vm._u([{
|
|
4535
|
-
key: "label",
|
|
4536
|
-
fn: function () {
|
|
4537
|
-
return [_vm._t("label")];
|
|
4538
|
-
},
|
|
4539
|
-
proxy: true
|
|
4540
|
-
}], null, true)
|
|
4541
|
-
}), _vm._v(" "), _vm.icon && _vm.value ? _c('VcIcon', {
|
|
4542
|
-
staticClass: "VcSwitchIcon VcSwitchIconV",
|
|
4543
|
-
attrs: {
|
|
4544
|
-
"size": "10"
|
|
4545
|
-
}
|
|
4546
|
-
}, [_vm._v("$check_button")]) : _vm._e(), _vm._v(" "), _vm.icon && !_vm.value ? _c('VcIcon', {
|
|
4547
|
-
staticClass: "VcSwitchIcon VcSwitchIconX",
|
|
4548
|
-
attrs: {
|
|
4549
|
-
"size": "10"
|
|
4550
|
-
}
|
|
4551
|
-
}, [_vm._v("$close_button")]) : _vm._e()], 1);
|
|
4552
|
-
};
|
|
4553
|
-
|
|
4554
4601
|
var __vue_staticRenderFns__$r = [];
|
|
4555
4602
|
/* style */
|
|
4556
4603
|
|
|
4557
4604
|
const __vue_inject_styles__$r = function (inject) {
|
|
4558
4605
|
if (!inject) return;
|
|
4559
|
-
inject("data-v-
|
|
4560
|
-
source: "
|
|
4606
|
+
inject("data-v-da6757e6_0", {
|
|
4607
|
+
source: "[data-v-da6757e6]:root{--primary-font-family:Montserrat;--font-size-xxx-small:9px;--font-size-xx-small:12px;--font-size-x-small:13px;--font-size-small:14px;--font-size-small2:15px;--font-size-small3:17px;--font-size-medium:18px;--font-size-medium1:22px;--font-size-medium2:24px;--font-size-large:28px;--font-weight-light:300;--font-weight-medium:400;--font-weight-medium2:500;--font-weight-large:600;--font-weight-large2:700;--font-weight-xl:800;--letter-spacing:0.003em;--size-value0:0px;--size-value1:4px;--size-value2:8px;--size-value3:12px;--size-value4:16px;--size-value5:20px;--size-value6:24px;--size-value7:28px;--size-value8:32px;--size-value9:36px;--size-value10:40px;--size-value11:44px;--size-value12:48px;--size-value13:52px;--size-value14:56px;--size-value15:60px;--size-value16:64px;--size-value17:68px;--size-value18:72px;--size-value19:76px;--size-value20:80px;--border-radius:6px;--border-frame:1px solid #e0e0e0;--border-focused-frame:1px solid var(--v-secondary-base);--shadow-focused-frame:0px 0px 0px 3px var(--v-secondary-lighten1);--popover-width:360px;--popover-max-height:464px;--popover-border-radius:10px;--modal-desktop-offset:-112px;--modal-bg-color:#ffffff;--modal-box-shadow:0px 7px 8px -4px rgba(0, 0, 0, 0.2),2px 13px 19px 2px rgba(0, 0, 0, 0.14),0px 5px 24px rgba(0, 0, 0, 0.12);--modal-border-radius:10px;--modal-width-small:384px;--modal-width-medium:576px;--modal-width-large:816px;--modal-width-x-large:972px;--avatar-x-sm:24px;--avatar-sm:32px;--avatar-md:40px;--avatar-lg:48px;--dropzone-active-border-color:#1e93b7;--dropzone-active-second-border-color:#95cddb;--gray-darken-5:#212121;--gray-darken-4:#616161;--gray-darken-3:#757575;--gray-darken-2:#999999;--gray-darken-1:#b3b3b3;--gray:#cccccc;--gray-lighten-1:#e0e0e0;--gray-lighten-2:#ededed;--gray-lighten-3:#f7f7f7;--gray-lighten-4:#fafafa;--neutral:#586E8C;--neutral-lighten-1:#D6DBE6;--neutral-lighten-2:#EAEDF2;--neutral-lighten-3:#F8F9FB;--red:#F2514A;--red-lighten-1:#F79792;--red-lighten-2:#FBCBC9;--red-lighten-3:#FDE8E7;--yellow:#FFC511;--yellow-lighten-1:#FFDC70;--yellow-lighten-2:#FFEDB8;--yellow-lighten-3:#FFF7E0;--green:#54D28C;--green-lighten-1:#98E4BA;--green-lighten-2:#CFF8E1;--green-lighten-3:#EAFCF2;--blue:#478FFF;--blue-lighten-1:#91BCFF;--blue-lighten-2:#C8DDFF;--blue-lighten-3:#E7F0FF;--orange:#FF8F00;--orange-lighten-1:#FCB965;--orange-lighten-2:#FAD9B0;--orange-lighten-3:#F9EBDA;--shadow-1:0px 1px 4px rgba(0, 0, 0, 0.11);--shadow-2:0px 2px 5px rgba(0, 0, 0, 0.1),0px 2px 2px rgba(0, 0, 0, 0.06),0px 3px 1px -2px rgba(0, 0, 0, 0.06);--shadow-3:0px 3px 2px rgba(0, 0, 0, 0.101961);--shadow-4:0px 1px 1px rgba(0, 0, 0, 0.06),0px 3px 8px rgba(0, 0, 0, 0.15);--shadow-5:0px 4px 18px rgba(0, 0, 0, 0.1);--shadow-6:0px 1px 10px rgba(0, 0, 0, 0.12),0px 4px 7px rgba(0, 0, 0, 0.14),0px 2px 4px -1px rgba(0, 0, 0, 0.2);--shadow-7:0px 3px 5px -1px rgba(0, 0, 0, 0.2),0px 6px 10px rgba(0, 0, 0, 0.14),0px 1px 18px rgba(0, 0, 0, 0.12);--shadow-8:0px 5px 7px 3px rgba(0, 0, 0, 0.26);--shadow-9:0px 7px 8px -4px rgba(0, 0, 0, 0.2),2px 13px 19px 2px rgba(0, 0, 0, 0.14),0px 5px 24px rgba(0, 0, 0, 0.12);--shadow-10:0px 4px 8px #cccccc}.vc-popover[data-v-da6757e6]{background-color:var(--modal-bg-color);width:var(--popover-width);max-height:var(--popover-max-height);display:flex;box-shadow:var(--modal-box-shadow);border-radius:var(--popover-border-radius)}",
|
|
4561
4608
|
map: undefined,
|
|
4562
4609
|
media: undefined
|
|
4563
4610
|
});
|
|
@@ -4565,7 +4612,7 @@ const __vue_inject_styles__$r = function (inject) {
|
|
|
4565
4612
|
/* scoped */
|
|
4566
4613
|
|
|
4567
4614
|
|
|
4568
|
-
const __vue_scope_id__$r = "data-v-
|
|
4615
|
+
const __vue_scope_id__$r = "data-v-da6757e6";
|
|
4569
4616
|
/* module identifier */
|
|
4570
4617
|
|
|
4571
4618
|
const __vue_module_identifier__$r = undefined;
|
|
@@ -4588,8 +4635,8 @@ var script$q = {
|
|
|
4588
4635
|
VcLayout: __vue_component__$R,
|
|
4589
4636
|
VcModalFooter: __vue_component__$Q,
|
|
4590
4637
|
VcForm: __vue_component__$N,
|
|
4591
|
-
VcPopover: __vue_component__$
|
|
4592
|
-
VcSwitch: __vue_component__$
|
|
4638
|
+
VcPopover: __vue_component__$r,
|
|
4639
|
+
VcSwitch: __vue_component__$t
|
|
4593
4640
|
},
|
|
4594
4641
|
props: {
|
|
4595
4642
|
value: {
|
|
@@ -4634,10 +4681,14 @@ var script$q = {
|
|
|
4634
4681
|
default: true
|
|
4635
4682
|
}
|
|
4636
4683
|
},
|
|
4637
|
-
|
|
4638
|
-
|
|
4639
|
-
|
|
4640
|
-
|
|
4684
|
+
|
|
4685
|
+
data() {
|
|
4686
|
+
return {
|
|
4687
|
+
validForm: true,
|
|
4688
|
+
toggleValue: this.toggleInitialValue
|
|
4689
|
+
};
|
|
4690
|
+
},
|
|
4691
|
+
|
|
4641
4692
|
methods: {
|
|
4642
4693
|
onOkClicked() {
|
|
4643
4694
|
this.validate();
|
|
@@ -4788,8 +4839,8 @@ var __vue_staticRenderFns__$q = [];
|
|
|
4788
4839
|
|
|
4789
4840
|
const __vue_inject_styles__$q = function (inject) {
|
|
4790
4841
|
if (!inject) return;
|
|
4791
|
-
inject("data-v-
|
|
4792
|
-
source: "[data-v-
|
|
4842
|
+
inject("data-v-274a38c1_0", {
|
|
4843
|
+
source: "[data-v-274a38c1]:root{--primary-font-family:Montserrat;--font-size-xxx-small:9px;--font-size-xx-small:12px;--font-size-x-small:13px;--font-size-small:14px;--font-size-small2:15px;--font-size-small3:17px;--font-size-medium:18px;--font-size-medium1:22px;--font-size-medium2:24px;--font-size-large:28px;--font-weight-light:300;--font-weight-medium:400;--font-weight-medium2:500;--font-weight-large:600;--font-weight-large2:700;--font-weight-xl:800;--letter-spacing:0.003em;--size-value0:0px;--size-value1:4px;--size-value2:8px;--size-value3:12px;--size-value4:16px;--size-value5:20px;--size-value6:24px;--size-value7:28px;--size-value8:32px;--size-value9:36px;--size-value10:40px;--size-value11:44px;--size-value12:48px;--size-value13:52px;--size-value14:56px;--size-value15:60px;--size-value16:64px;--size-value17:68px;--size-value18:72px;--size-value19:76px;--size-value20:80px;--border-radius:6px;--border-frame:1px solid #e0e0e0;--border-focused-frame:1px solid var(--v-secondary-base);--shadow-focused-frame:0px 0px 0px 3px var(--v-secondary-lighten1);--popover-width:360px;--popover-max-height:464px;--popover-border-radius:10px;--modal-desktop-offset:-112px;--modal-bg-color:#ffffff;--modal-box-shadow:0px 7px 8px -4px rgba(0, 0, 0, 0.2),2px 13px 19px 2px rgba(0, 0, 0, 0.14),0px 5px 24px rgba(0, 0, 0, 0.12);--modal-border-radius:10px;--modal-width-small:384px;--modal-width-medium:576px;--modal-width-large:816px;--modal-width-x-large:972px;--avatar-x-sm:24px;--avatar-sm:32px;--avatar-md:40px;--avatar-lg:48px;--dropzone-active-border-color:#1e93b7;--dropzone-active-second-border-color:#95cddb;--gray-darken-5:#212121;--gray-darken-4:#616161;--gray-darken-3:#757575;--gray-darken-2:#999999;--gray-darken-1:#b3b3b3;--gray:#cccccc;--gray-lighten-1:#e0e0e0;--gray-lighten-2:#ededed;--gray-lighten-3:#f7f7f7;--gray-lighten-4:#fafafa;--neutral:#586E8C;--neutral-lighten-1:#D6DBE6;--neutral-lighten-2:#EAEDF2;--neutral-lighten-3:#F8F9FB;--red:#F2514A;--red-lighten-1:#F79792;--red-lighten-2:#FBCBC9;--red-lighten-3:#FDE8E7;--yellow:#FFC511;--yellow-lighten-1:#FFDC70;--yellow-lighten-2:#FFEDB8;--yellow-lighten-3:#FFF7E0;--green:#54D28C;--green-lighten-1:#98E4BA;--green-lighten-2:#CFF8E1;--green-lighten-3:#EAFCF2;--blue:#478FFF;--blue-lighten-1:#91BCFF;--blue-lighten-2:#C8DDFF;--blue-lighten-3:#E7F0FF;--orange:#FF8F00;--orange-lighten-1:#FCB965;--orange-lighten-2:#FAD9B0;--orange-lighten-3:#F9EBDA;--shadow-1:0px 1px 4px rgba(0, 0, 0, 0.11);--shadow-2:0px 2px 5px rgba(0, 0, 0, 0.1),0px 2px 2px rgba(0, 0, 0, 0.06),0px 3px 1px -2px rgba(0, 0, 0, 0.06);--shadow-3:0px 3px 2px rgba(0, 0, 0, 0.101961);--shadow-4:0px 1px 1px rgba(0, 0, 0, 0.06),0px 3px 8px rgba(0, 0, 0, 0.15);--shadow-5:0px 4px 18px rgba(0, 0, 0, 0.1);--shadow-6:0px 1px 10px rgba(0, 0, 0, 0.12),0px 4px 7px rgba(0, 0, 0, 0.14),0px 2px 4px -1px rgba(0, 0, 0, 0.2);--shadow-7:0px 3px 5px -1px rgba(0, 0, 0, 0.2),0px 6px 10px rgba(0, 0, 0, 0.14),0px 1px 18px rgba(0, 0, 0, 0.12);--shadow-8:0px 5px 7px 3px rgba(0, 0, 0, 0.26);--shadow-9:0px 7px 8px -4px rgba(0, 0, 0, 0.2),2px 13px 19px 2px rgba(0, 0, 0, 0.14),0px 5px 24px rgba(0, 0, 0, 0.12);--shadow-10:0px 4px 8px #cccccc}.vc-popover[data-v-274a38c1]{width:var(--popover-width);max-height:var(--popover-max-height);display:flex;box-shadow:var(--modal-box-shadow)}.vc-popover .vc-popover-content[data-v-274a38c1]{padding:var(--size-value4) var(--size-value6);overflow-y:auto}.vc-popover .vc-popover-footer[data-v-274a38c1]{padding:var(--size-value3) var(--size-value6)}",
|
|
4793
4844
|
map: undefined,
|
|
4794
4845
|
media: undefined
|
|
4795
4846
|
});
|
|
@@ -4797,7 +4848,7 @@ const __vue_inject_styles__$q = function (inject) {
|
|
|
4797
4848
|
/* scoped */
|
|
4798
4849
|
|
|
4799
4850
|
|
|
4800
|
-
const __vue_scope_id__$q = "data-v-
|
|
4851
|
+
const __vue_scope_id__$q = "data-v-274a38c1";
|
|
4801
4852
|
/* module identifier */
|
|
4802
4853
|
|
|
4803
4854
|
const __vue_module_identifier__$q = undefined;
|
|
@@ -5195,7 +5246,7 @@ const __vue_component__$n = /*#__PURE__*/normalizeComponent({
|
|
|
5195
5246
|
var script$m = {
|
|
5196
5247
|
components: {
|
|
5197
5248
|
VcIcon: __vue_component__$U,
|
|
5198
|
-
VcSwitch: __vue_component__$
|
|
5249
|
+
VcSwitch: __vue_component__$t,
|
|
5199
5250
|
VContainer: VContainer
|
|
5200
5251
|
},
|
|
5201
5252
|
name: 'VcListEntity',
|
|
@@ -5303,7 +5354,7 @@ var script$l = {
|
|
|
5303
5354
|
components: {
|
|
5304
5355
|
VcImage: __vue_component__$L,
|
|
5305
5356
|
VcIcon: __vue_component__$U,
|
|
5306
|
-
VcSwitch: __vue_component__$
|
|
5357
|
+
VcSwitch: __vue_component__$t,
|
|
5307
5358
|
VContainer: VContainer
|
|
5308
5359
|
},
|
|
5309
5360
|
name: "VcExpansionCard",
|
|
@@ -8152,8 +8203,8 @@ var components$1 = /*#__PURE__*/Object.freeze({
|
|
|
8152
8203
|
VcChecklistItem: __vue_component__$y,
|
|
8153
8204
|
VcListbox: __vue_component__$v,
|
|
8154
8205
|
VcBottomSheet: __vue_component__$u,
|
|
8155
|
-
VcInputBottomSheet: __vue_component__$
|
|
8156
|
-
VcPopover: __vue_component__$
|
|
8206
|
+
VcInputBottomSheet: __vue_component__$s,
|
|
8207
|
+
VcPopover: __vue_component__$r,
|
|
8157
8208
|
VcInputPopover: __vue_component__$q,
|
|
8158
8209
|
VcChip: __vue_component__$p,
|
|
8159
8210
|
VcSearchBar: __vue_component__$w,
|
|
@@ -8163,7 +8214,7 @@ var components$1 = /*#__PURE__*/Object.freeze({
|
|
|
8163
8214
|
VcIcon: __vue_component__$U,
|
|
8164
8215
|
VcLayout: __vue_component__$R,
|
|
8165
8216
|
VcLoader: __vue_component__$n,
|
|
8166
|
-
VcSwitch: __vue_component__$
|
|
8217
|
+
VcSwitch: __vue_component__$t,
|
|
8167
8218
|
VcListEntity: __vue_component__$m,
|
|
8168
8219
|
VcExpansionCard: __vue_component__$l,
|
|
8169
8220
|
VcTextField: __vue_component__$x,
|
|
@@ -8221,8 +8272,8 @@ var components = /*#__PURE__*/Object.freeze({
|
|
|
8221
8272
|
VcChecklistItem: __vue_component__$y,
|
|
8222
8273
|
VcListbox: __vue_component__$v,
|
|
8223
8274
|
VcBottomSheet: __vue_component__$u,
|
|
8224
|
-
VcInputBottomSheet: __vue_component__$
|
|
8225
|
-
VcPopover: __vue_component__$
|
|
8275
|
+
VcInputBottomSheet: __vue_component__$s,
|
|
8276
|
+
VcPopover: __vue_component__$r,
|
|
8226
8277
|
VcInputPopover: __vue_component__$q,
|
|
8227
8278
|
VcChip: __vue_component__$p,
|
|
8228
8279
|
VcSearchBar: __vue_component__$w,
|
|
@@ -8232,7 +8283,7 @@ var components = /*#__PURE__*/Object.freeze({
|
|
|
8232
8283
|
VcIcon: __vue_component__$U,
|
|
8233
8284
|
VcLayout: __vue_component__$R,
|
|
8234
8285
|
VcLoader: __vue_component__$n,
|
|
8235
|
-
VcSwitch: __vue_component__$
|
|
8286
|
+
VcSwitch: __vue_component__$t,
|
|
8236
8287
|
VcListEntity: __vue_component__$m,
|
|
8237
8288
|
VcExpansionCard: __vue_component__$l,
|
|
8238
8289
|
VcTextField: __vue_component__$x,
|