diff --git a/public/themes/saga-blue/theme.css b/public/themes/saga-blue/theme.css index 037e5fe43..592d7baf2 100644 --- a/public/themes/saga-blue/theme.css +++ b/public/themes/saga-blue/theme.css @@ -2,7 +2,7 @@ :root { --layer-0: #ffffff; --layer-1: #f8f9fa; - --layer-2: #dee2e6; + --layer-2: #e9ecef; --text-color: #495057; --text-color-secondary: #6c757d; --primary-color: #2196F3; diff --git a/public/themes/saga-cyan/theme.css b/public/themes/saga-cyan/theme.css index c27c23031..90a2eb033 100644 --- a/public/themes/saga-cyan/theme.css +++ b/public/themes/saga-cyan/theme.css @@ -2,7 +2,7 @@ :root { --layer-0: #ffffff; --layer-1: #f8f9fa; - --layer-2: #dee2e6; + --layer-2: #e9ecef; --text-color: #495057; --text-color-secondary: #6c757d; --primary-color: #00ACC1; diff --git a/public/themes/saga-deeppurple/theme.css b/public/themes/saga-deeppurple/theme.css index 4036c4f53..e20fcb3e8 100644 --- a/public/themes/saga-deeppurple/theme.css +++ b/public/themes/saga-deeppurple/theme.css @@ -2,7 +2,7 @@ :root { --layer-0: #ffffff; --layer-1: #f8f9fa; - --layer-2: #dee2e6; + --layer-2: #e9ecef; --text-color: #495057; --text-color-secondary: #6c757d; --primary-color: #673AB7; diff --git a/public/themes/saga-green/theme.css b/public/themes/saga-green/theme.css index cc442c0b9..910f8ab1e 100644 --- a/public/themes/saga-green/theme.css +++ b/public/themes/saga-green/theme.css @@ -2,7 +2,7 @@ :root { --layer-0: #ffffff; --layer-1: #f8f9fa; - --layer-2: #dee2e6; + --layer-2: #e9ecef; --text-color: #495057; --text-color-secondary: #6c757d; --primary-color: #4CAF50; diff --git a/public/themes/saga-indigo/theme.css b/public/themes/saga-indigo/theme.css index 9c51fbe83..3e6aceb53 100644 --- a/public/themes/saga-indigo/theme.css +++ b/public/themes/saga-indigo/theme.css @@ -2,7 +2,7 @@ :root { --layer-0: #ffffff; --layer-1: #f8f9fa; - --layer-2: #dee2e6; + --layer-2: #e9ecef; --text-color: #495057; --text-color-secondary: #6c757d; --primary-color: #3F51B5; diff --git a/public/themes/saga-orange/theme.css b/public/themes/saga-orange/theme.css index 4bd4686f7..17bbde4ad 100644 --- a/public/themes/saga-orange/theme.css +++ b/public/themes/saga-orange/theme.css @@ -2,7 +2,7 @@ :root { --layer-0: #ffffff; --layer-1: #f8f9fa; - --layer-2: #dee2e6; + --layer-2: #e9ecef; --text-color: #495057; --text-color-secondary: #6c757d; --primary-color: #FFC107; diff --git a/public/themes/saga-purple/theme.css b/public/themes/saga-purple/theme.css index 1fa2e5f1f..a51474d9c 100644 --- a/public/themes/saga-purple/theme.css +++ b/public/themes/saga-purple/theme.css @@ -2,7 +2,7 @@ :root { --layer-0: #ffffff; --layer-1: #f8f9fa; - --layer-2: #dee2e6; + --layer-2: #e9ecef; --text-color: #495057; --text-color-secondary: #6c757d; --primary-color: #9C27B0; diff --git a/public/themes/saga-teal/theme.css b/public/themes/saga-teal/theme.css index f9d6c09ef..3e1d4d2c7 100644 --- a/public/themes/saga-teal/theme.css +++ b/public/themes/saga-teal/theme.css @@ -2,7 +2,7 @@ :root { --layer-0: #ffffff; --layer-1: #f8f9fa; - --layer-2: #dee2e6; + --layer-2: #e9ecef; --text-color: #495057; --text-color-secondary: #6c757d; --primary-color: #009688; diff --git a/src/components/radiobutton/RadioButton.d.ts b/src/components/radiobutton/RadioButton.d.ts index c3192ad11..0a69c8e2c 100755 --- a/src/components/radiobutton/RadioButton.d.ts +++ b/src/components/radiobutton/RadioButton.d.ts @@ -3,7 +3,6 @@ import Vue from 'vue'; export declare class RadioButton extends Vue { value: any; modelValue: any; - ariaLabelledBy?: string; $emit(eventName: 'click', event: Event): this; $emit(eventName: 'input', value: any): this; $emit(eventName: 'change', event: Event): this; diff --git a/src/components/radiobutton/RadioButton.vue b/src/components/radiobutton/RadioButton.vue index c3792ceb3..ac3509eb4 100755 --- a/src/components/radiobutton/RadioButton.vue +++ b/src/components/radiobutton/RadioButton.vue @@ -1,7 +1,7 @@