barbican-reset 2.56.0 → 2.58.0
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/components/BrButton.vue +1 -0
- package/components/BrFormCheckbox/Component.vue +0 -1
- package/components/BrFormCheckboxGroup/Component.vue +0 -1
- package/components/BrFormInput/Component.vue +0 -1
- package/components/BrFormPassword.vue +0 -1
- package/components/BrFormRadio/Component.vue +0 -1
- package/components/BrFormRadioGroup/Component.vue +1 -2
- package/components/BrFormTextarea/Component.vue +0 -1
- package/css/index.css +534 -1308
- package/package.json +1 -1
- package/scss/helpers/mixins/_br-footer.scss +1 -1
- package/scss/helpers/mixins/_buttons.scss +1 -2
- package/scss/helpers/mixins/_focus.scss +9 -11
- package/scss/helpers/mixins/buttons/_solid.scss +14 -8
- package/scss/helpers/variables/colors/_grey.scss +7 -7
- package/scss/index.scss +0 -1
- package/scss/_klaro.scss +0 -473
package/components/BrButton.vue
CHANGED
|
@@ -21,7 +21,6 @@
|
|
|
21
21
|
import mixins from "../../mixins/inputs";
|
|
22
22
|
|
|
23
23
|
export default {
|
|
24
|
-
compatConfig: { COMPONENT_V_MODEL: false }, // THIS LINE IS IMPORTANT, WILL NOT WORK WITHOUT.
|
|
25
24
|
inheritAttrs: false, // Allow us to put attributes on the input.
|
|
26
25
|
mixins: [mixins],
|
|
27
26
|
emits: ["update:modelValue", "change"],
|
|
@@ -21,7 +21,6 @@
|
|
|
21
21
|
import BrFormCheckbox from "../BrFormCheckbox/Component";
|
|
22
22
|
|
|
23
23
|
export default {
|
|
24
|
-
compatConfig: { COMPONENT_V_MODEL: false }, // THIS LINE IS IMPORTANT, WILL NOT WORK WITHOUT.
|
|
25
24
|
props: ["modelValue", "options", "name", "id"],
|
|
26
25
|
components: {
|
|
27
26
|
BrFormCheckbox,
|
|
@@ -19,7 +19,6 @@
|
|
|
19
19
|
import mixins from "../../mixins/inputs";
|
|
20
20
|
|
|
21
21
|
export default {
|
|
22
|
-
compatConfig: { COMPONENT_V_MODEL: false }, // THIS LINE IS IMPORTANT, WILL NOT WORK WITHOUT.
|
|
23
22
|
inheritAttrs: false, // Allow us to put attributes on the input.
|
|
24
23
|
mixins: [mixins],
|
|
25
24
|
emits: ["update:modelValue"],
|
|
@@ -31,7 +31,6 @@ import HidePasswordIcon from "../icons/password/hide";
|
|
|
31
31
|
import ShowPasswordIcon from "../icons/password/show";
|
|
32
32
|
|
|
33
33
|
export default {
|
|
34
|
-
compatConfig: { COMPONENT_V_MODEL: false }, // THIS LINE IS IMPORTANT, WILL NOT WORK WITHOUT.
|
|
35
34
|
inheritAttrs: false, // Allow us to put attributes on the input.
|
|
36
35
|
emits: ["update:modelValue"],
|
|
37
36
|
data() {
|
|
@@ -15,7 +15,6 @@
|
|
|
15
15
|
|
|
16
16
|
<script>
|
|
17
17
|
export default {
|
|
18
|
-
compatConfig: { COMPONENT_V_MODEL: false }, // THIS LINE IS IMPORTANT, WILL NOT WORK WITHOUT.
|
|
19
18
|
inheritAttrs: false, // Allow us to put attributes on the input.
|
|
20
19
|
// @TODO:
|
|
21
20
|
// We may be able to get rid of name, value & disabled if we are using v-bind="$attrs"
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
<template v-if="options">
|
|
4
4
|
<br-form-radio
|
|
5
5
|
v-for="(option, index) in options"
|
|
6
|
-
v-model="model"
|
|
7
6
|
:value="option.value"
|
|
7
|
+
v-model="model"
|
|
8
8
|
:key="index"
|
|
9
9
|
:name="name"
|
|
10
10
|
>
|
|
@@ -17,7 +17,6 @@
|
|
|
17
17
|
|
|
18
18
|
<script>
|
|
19
19
|
export default {
|
|
20
|
-
compatConfig: { COMPONENT_V_MODEL: false }, // THIS LINE IS IMPORTANT, WILL NOT WORK WITHOUT.
|
|
21
20
|
props: {
|
|
22
21
|
modelValue: { type: [Array, Boolean] },
|
|
23
22
|
options: { type: Object },
|