From 8c95793499712040ca02eaccd1b9365a5a9b693a Mon Sep 17 00:00:00 2001 From: Yauhen Date: Thu, 14 Mar 2019 18:34:09 +0300 Subject: [PATCH] refactor(mappings): toggle mappings refactor (#40) --- packages/mapping-kitten/eva/index.ts | 2706 ++++++++++++++++++++++++-- packages/mapping/eva/mapping.json | 44 +- 2 files changed, 2549 insertions(+), 201 deletions(-) diff --git a/packages/mapping-kitten/eva/index.ts b/packages/mapping-kitten/eva/index.ts index 0e9fb6f..6a30fe6 100644 --- a/packages/mapping-kitten/eva/index.ts +++ b/packages/mapping-kitten/eva/index.ts @@ -9794,8 +9794,6 @@ export const style: ThemeStyleType = { 'Toggle': { 'default': { 'offsetValue': 20, - 'tintColor': 'gray-light', - 'borderColor': 'blue-primary', 'thumb': { 'backgroundColor': '#ffffff', }, @@ -9805,6 +9803,8 @@ export const style: ThemeStyleType = { 'height': 42, 'borderRadius': 21, }, + 'tintColor': '#d9e4ff', + 'borderColor': 'blue-primary', 'width': 52, 'height': 32, 'borderRadius': 16, @@ -9812,8 +9812,6 @@ export const style: ThemeStyleType = { }, 'default.checked': { 'offsetValue': 20, - 'tintColor': 'gray-light', - 'borderColor': 'blue-primary', 'thumb': { 'backgroundColor': '#ffffff', }, @@ -9823,6 +9821,8 @@ export const style: ThemeStyleType = { 'height': 42, 'borderRadius': 21, }, + 'tintColor': '#d9e4ff', + 'borderColor': 'blue-primary', 'width': 52, 'height': 32, 'borderRadius': 16, @@ -9830,8 +9830,6 @@ export const style: ThemeStyleType = { }, 'default.checked.disabled': { 'offsetValue': 20, - 'tintColor': 'gray-light', - 'borderColor': 'gray-dark', 'thumb': { 'backgroundColor': '#ffffff', }, @@ -9841,6 +9839,8 @@ export const style: ThemeStyleType = { 'height': 42, 'borderRadius': 21, }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', 'width': 52, 'height': 32, 'borderRadius': 16, @@ -9848,8 +9848,6 @@ export const style: ThemeStyleType = { }, 'default.checked.active': { 'offsetValue': 20, - 'tintColor': 'gray-light', - 'borderColor': 'blue-primary', 'thumb': { 'backgroundColor': '#ffffff', }, @@ -9859,6 +9857,8 @@ export const style: ThemeStyleType = { 'height': 42, 'borderRadius': 21, }, + 'tintColor': '#d9e4ff', + 'borderColor': 'blue-primary', 'width': 52, 'height': 32, 'borderRadius': 16, @@ -9866,8 +9866,6 @@ export const style: ThemeStyleType = { }, 'default.checked.disabled.active': { 'offsetValue': 20, - 'tintColor': 'gray-light', - 'borderColor': 'gray-dark', 'thumb': { 'backgroundColor': '#ffffff', }, @@ -9877,6 +9875,8 @@ export const style: ThemeStyleType = { 'height': 42, 'borderRadius': 21, }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', 'width': 52, 'height': 32, 'borderRadius': 16, @@ -9884,8 +9884,6 @@ export const style: ThemeStyleType = { }, 'default.disabled': { 'offsetValue': 20, - 'tintColor': 'gray-light', - 'borderColor': 'gray-dark', 'thumb': { 'backgroundColor': '#ffffff', }, @@ -9895,6 +9893,8 @@ export const style: ThemeStyleType = { 'height': 42, 'borderRadius': 21, }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', 'width': 52, 'height': 32, 'borderRadius': 16, @@ -9902,8 +9902,24 @@ export const style: ThemeStyleType = { }, 'default.disabled.active': { 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, 'tintColor': 'gray-light', 'borderColor': 'gray-dark', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.active': { + 'offsetValue': 20, 'thumb': { 'backgroundColor': '#ffffff', }, @@ -9913,33 +9929,51 @@ export const style: ThemeStyleType = { 'height': 42, 'borderRadius': 21, }, + 'tintColor': '#d9e4ff', + 'borderColor': 'blue-primary', 'width': 52, 'height': 32, 'borderRadius': 16, 'borderWidth': 1.5, }, - 'default.active': { + 'default.primary': { 'offsetValue': 20, - 'tintColor': 'gray-light', + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': 'transparent', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': '#d9e4ff', 'borderColor': 'blue-primary', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.success': { + 'offsetValue': 20, 'thumb': { 'backgroundColor': '#ffffff', }, 'highlight': { - 'backgroundColor': '#e5e7ea', + 'backgroundColor': 'transparent', 'width': 62, 'height': 42, 'borderRadius': 21, }, + 'tintColor': '#b3ffd6', + 'borderColor': '#00e096', 'width': 52, 'height': 32, 'borderRadius': 16, 'borderWidth': 1.5, }, - 'default.error': { + 'default.info': { 'offsetValue': 20, - 'tintColor': '#FFD6D9', - 'borderColor': 'pink-primary', 'thumb': { 'backgroundColor': '#ffffff', }, @@ -9949,15 +9983,51 @@ export const style: ThemeStyleType = { 'height': 42, 'borderRadius': 21, }, + 'tintColor': '#c7e2ff', + 'borderColor': '#0095ff', 'width': 52, 'height': 32, 'borderRadius': 16, 'borderWidth': 1.5, }, - 'default.error.small': { + 'default.warning': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': 'transparent', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': '#fff1c2', + 'borderColor': '#ffaa00', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.danger': { 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': 'transparent', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, 'tintColor': '#FFD6D9', 'borderColor': 'pink-primary', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.primary.small': { + 'offsetValue': 20, 'thumb': { 'backgroundColor': '#ffffff', }, @@ -9967,15 +10037,15 @@ export const style: ThemeStyleType = { 'height': 32, 'borderRadius': 16, }, + 'tintColor': '#d9e4ff', + 'borderColor': 'blue-primary', 'width': 38, 'height': 22, 'borderRadius': 11, 'borderWidth': 0.5, }, - 'default.error.medium': { + 'default.primary.medium': { 'offsetValue': 20, - 'tintColor': '#FFD6D9', - 'borderColor': 'pink-primary', 'thumb': { 'backgroundColor': '#ffffff', }, @@ -9985,15 +10055,15 @@ export const style: ThemeStyleType = { 'height': 42, 'borderRadius': 21, }, + 'tintColor': '#d9e4ff', + 'borderColor': 'blue-primary', 'width': 52, 'height': 32, 'borderRadius': 16, 'borderWidth': 1.5, }, - 'default.error.large': { + 'default.primary.large': { 'offsetValue': 20, - 'tintColor': '#FFD6D9', - 'borderColor': 'pink-primary', 'thumb': { 'backgroundColor': '#ffffff', }, @@ -10003,15 +10073,15 @@ export const style: ThemeStyleType = { 'height': 52, 'borderRadius': 26, }, + 'tintColor': '#d9e4ff', + 'borderColor': 'blue-primary', 'width': 72, 'height': 42, 'borderRadius': 21, 'borderWidth': 2, }, - 'default.small': { + 'default.success.small': { 'offsetValue': 20, - 'tintColor': 'gray-light', - 'borderColor': 'blue-primary', 'thumb': { 'backgroundColor': '#ffffff', }, @@ -10021,15 +10091,15 @@ export const style: ThemeStyleType = { 'height': 32, 'borderRadius': 16, }, + 'tintColor': '#b3ffd6', + 'borderColor': '#00e096', 'width': 38, 'height': 22, 'borderRadius': 11, 'borderWidth': 0.5, }, - 'default.medium': { + 'default.success.medium': { 'offsetValue': 20, - 'tintColor': 'gray-light', - 'borderColor': 'blue-primary', 'thumb': { 'backgroundColor': '#ffffff', }, @@ -10039,15 +10109,15 @@ export const style: ThemeStyleType = { 'height': 42, 'borderRadius': 21, }, + 'tintColor': '#b3ffd6', + 'borderColor': '#00e096', 'width': 52, 'height': 32, 'borderRadius': 16, 'borderWidth': 1.5, }, - 'default.large': { + 'default.success.large': { 'offsetValue': 20, - 'tintColor': 'gray-light', - 'borderColor': 'blue-primary', 'thumb': { 'backgroundColor': '#ffffff', }, @@ -10057,15 +10127,33 @@ export const style: ThemeStyleType = { 'height': 52, 'borderRadius': 26, }, + 'tintColor': '#b3ffd6', + 'borderColor': '#00e096', 'width': 72, 'height': 42, 'borderRadius': 21, 'borderWidth': 2, }, - 'default.error.checked': { + 'default.info.small': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': 'transparent', + 'width': 48, + 'height': 32, + 'borderRadius': 16, + }, + 'tintColor': '#c7e2ff', + 'borderColor': '#0095ff', + 'width': 38, + 'height': 22, + 'borderRadius': 11, + 'borderWidth': 0.5, + }, + 'default.info.medium': { 'offsetValue': 20, - 'tintColor': '#FFD6D9', - 'borderColor': 'pink-primary', 'thumb': { 'backgroundColor': '#ffffff', }, @@ -10075,15 +10163,51 @@ export const style: ThemeStyleType = { 'height': 42, 'borderRadius': 21, }, + 'tintColor': '#c7e2ff', + 'borderColor': '#0095ff', 'width': 52, 'height': 32, 'borderRadius': 16, 'borderWidth': 1.5, }, - 'default.error.checked.disabled': { + 'default.info.large': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': 'transparent', + 'width': 82, + 'height': 52, + 'borderRadius': 26, + }, + 'tintColor': '#c7e2ff', + 'borderColor': '#0095ff', + 'width': 72, + 'height': 42, + 'borderRadius': 21, + 'borderWidth': 2, + }, + 'default.warning.small': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': 'transparent', + 'width': 48, + 'height': 32, + 'borderRadius': 16, + }, + 'tintColor': '#fff1c2', + 'borderColor': '#ffaa00', + 'width': 38, + 'height': 22, + 'borderRadius': 11, + 'borderWidth': 0.5, + }, + 'default.warning.medium': { 'offsetValue': 20, - 'tintColor': 'gray-light', - 'borderColor': 'gray-dark', 'thumb': { 'backgroundColor': '#ffffff', }, @@ -10093,105 +10217,2283 @@ export const style: ThemeStyleType = { 'height': 42, 'borderRadius': 21, }, + 'tintColor': '#fff1c2', + 'borderColor': '#ffaa00', 'width': 52, 'height': 32, 'borderRadius': 16, 'borderWidth': 1.5, }, - 'default.error.checked.active': { + 'default.warning.large': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': 'transparent', + 'width': 82, + 'height': 52, + 'borderRadius': 26, + }, + 'tintColor': '#fff1c2', + 'borderColor': '#ffaa00', + 'width': 72, + 'height': 42, + 'borderRadius': 21, + 'borderWidth': 2, + }, + 'default.danger.small': { 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': 'transparent', + 'width': 48, + 'height': 32, + 'borderRadius': 16, + }, 'tintColor': '#FFD6D9', 'borderColor': 'pink-primary', + 'width': 38, + 'height': 22, + 'borderRadius': 11, + 'borderWidth': 0.5, + }, + 'default.danger.medium': { + 'offsetValue': 20, 'thumb': { 'backgroundColor': '#ffffff', }, 'highlight': { - 'backgroundColor': '#e5e7ea', + 'backgroundColor': 'transparent', 'width': 62, 'height': 42, 'borderRadius': 21, }, + 'tintColor': '#FFD6D9', + 'borderColor': 'pink-primary', 'width': 52, 'height': 32, 'borderRadius': 16, 'borderWidth': 1.5, }, - 'default.error.checked.disabled.active': { + 'default.danger.large': { 'offsetValue': 20, - 'tintColor': 'gray-light', - 'borderColor': 'gray-dark', 'thumb': { 'backgroundColor': '#ffffff', }, 'highlight': { - 'backgroundColor': '#e5e7ea', + 'backgroundColor': 'transparent', + 'width': 82, + 'height': 52, + 'borderRadius': 26, + }, + 'tintColor': '#FFD6D9', + 'borderColor': 'pink-primary', + 'width': 72, + 'height': 42, + 'borderRadius': 21, + 'borderWidth': 2, + }, + 'default.small': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': 'transparent', + 'width': 48, + 'height': 32, + 'borderRadius': 16, + }, + 'tintColor': '#d9e4ff', + 'borderColor': 'blue-primary', + 'width': 38, + 'height': 22, + 'borderRadius': 11, + 'borderWidth': 0.5, + }, + 'default.medium': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': 'transparent', 'width': 62, 'height': 42, 'borderRadius': 21, }, + 'tintColor': '#d9e4ff', + 'borderColor': 'blue-primary', 'width': 52, 'height': 32, 'borderRadius': 16, 'borderWidth': 1.5, }, - 'default.error.disabled': { + 'default.large': { 'offsetValue': 20, - 'tintColor': 'gray-light', - 'borderColor': 'gray-dark', 'thumb': { 'backgroundColor': '#ffffff', }, 'highlight': { 'backgroundColor': 'transparent', - 'width': 62, - 'height': 42, - 'borderRadius': 21, + 'width': 82, + 'height': 52, + 'borderRadius': 26, + }, + 'tintColor': '#d9e4ff', + 'borderColor': 'blue-primary', + 'width': 72, + 'height': 42, + 'borderRadius': 21, + 'borderWidth': 2, + }, + 'default.primary.checked': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': 'transparent', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': '#d9e4ff', + 'borderColor': 'blue-primary', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.primary.checked.disabled': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': 'transparent', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.primary.checked.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': '#d9e4ff', + 'borderColor': 'blue-primary', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.primary.checked.disabled.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.primary.disabled': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': 'transparent', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.primary.disabled.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.primary.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': '#d9e4ff', + 'borderColor': 'blue-primary', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.success.checked': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': 'transparent', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': '#b3ffd6', + 'borderColor': '#00e096', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.success.checked.disabled': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': 'transparent', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.success.checked.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': '#b3ffd6', + 'borderColor': '#00e096', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.success.checked.disabled.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.success.disabled': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': 'transparent', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.success.disabled.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.success.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': '#b3ffd6', + 'borderColor': '#00e096', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.info.checked': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': 'transparent', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': '#c7e2ff', + 'borderColor': '#0095ff', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.info.checked.disabled': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': 'transparent', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.info.checked.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': '#c7e2ff', + 'borderColor': '#0095ff', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.info.checked.disabled.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.info.disabled': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': 'transparent', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.info.disabled.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.info.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': '#c7e2ff', + 'borderColor': '#0095ff', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.warning.checked': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': 'transparent', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': '#fff1c2', + 'borderColor': '#ffaa00', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.warning.checked.disabled': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': 'transparent', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.warning.checked.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': '#fff1c2', + 'borderColor': '#ffaa00', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.warning.checked.disabled.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.warning.disabled': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': 'transparent', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.warning.disabled.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.warning.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': '#fff1c2', + 'borderColor': '#ffaa00', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.danger.checked': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': 'transparent', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': '#FFD6D9', + 'borderColor': 'pink-primary', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.danger.checked.disabled': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': 'transparent', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.danger.checked.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': '#FFD6D9', + 'borderColor': 'pink-primary', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.danger.checked.disabled.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.danger.disabled': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': 'transparent', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.danger.disabled.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.danger.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': '#FFD6D9', + 'borderColor': 'pink-primary', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.primary.small.checked': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': 'transparent', + 'width': 48, + 'height': 32, + 'borderRadius': 16, + }, + 'tintColor': '#d9e4ff', + 'borderColor': 'blue-primary', + 'width': 38, + 'height': 22, + 'borderRadius': 11, + 'borderWidth': 0.5, + }, + 'default.primary.small.checked.disabled': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': 'transparent', + 'width': 48, + 'height': 32, + 'borderRadius': 16, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 38, + 'height': 22, + 'borderRadius': 11, + 'borderWidth': 0.5, + }, + 'default.primary.small.checked.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 48, + 'height': 32, + 'borderRadius': 16, + }, + 'tintColor': '#d9e4ff', + 'borderColor': 'blue-primary', + 'width': 38, + 'height': 22, + 'borderRadius': 11, + 'borderWidth': 0.5, + }, + 'default.primary.small.checked.disabled.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 48, + 'height': 32, + 'borderRadius': 16, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 38, + 'height': 22, + 'borderRadius': 11, + 'borderWidth': 0.5, + }, + 'default.primary.small.disabled': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': 'transparent', + 'width': 48, + 'height': 32, + 'borderRadius': 16, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 38, + 'height': 22, + 'borderRadius': 11, + 'borderWidth': 0.5, + }, + 'default.primary.small.disabled.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 48, + 'height': 32, + 'borderRadius': 16, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 38, + 'height': 22, + 'borderRadius': 11, + 'borderWidth': 0.5, + }, + 'default.primary.small.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 48, + 'height': 32, + 'borderRadius': 16, + }, + 'tintColor': '#d9e4ff', + 'borderColor': 'blue-primary', + 'width': 38, + 'height': 22, + 'borderRadius': 11, + 'borderWidth': 0.5, + }, + 'default.primary.medium.checked': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': 'transparent', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': '#d9e4ff', + 'borderColor': 'blue-primary', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.primary.medium.checked.disabled': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': 'transparent', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.primary.medium.checked.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': '#d9e4ff', + 'borderColor': 'blue-primary', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.primary.medium.checked.disabled.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.primary.medium.disabled': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': 'transparent', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.primary.medium.disabled.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.primary.medium.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': '#d9e4ff', + 'borderColor': 'blue-primary', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.primary.large.checked': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': 'transparent', + 'width': 82, + 'height': 52, + 'borderRadius': 26, + }, + 'tintColor': '#d9e4ff', + 'borderColor': 'blue-primary', + 'width': 72, + 'height': 42, + 'borderRadius': 21, + 'borderWidth': 2, + }, + 'default.primary.large.checked.disabled': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': 'transparent', + 'width': 82, + 'height': 52, + 'borderRadius': 26, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 72, + 'height': 42, + 'borderRadius': 21, + 'borderWidth': 2, + }, + 'default.primary.large.checked.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 82, + 'height': 52, + 'borderRadius': 26, + }, + 'tintColor': '#d9e4ff', + 'borderColor': 'blue-primary', + 'width': 72, + 'height': 42, + 'borderRadius': 21, + 'borderWidth': 2, + }, + 'default.primary.large.checked.disabled.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 82, + 'height': 52, + 'borderRadius': 26, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 72, + 'height': 42, + 'borderRadius': 21, + 'borderWidth': 2, + }, + 'default.primary.large.disabled': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': 'transparent', + 'width': 82, + 'height': 52, + 'borderRadius': 26, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 72, + 'height': 42, + 'borderRadius': 21, + 'borderWidth': 2, + }, + 'default.primary.large.disabled.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 82, + 'height': 52, + 'borderRadius': 26, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 72, + 'height': 42, + 'borderRadius': 21, + 'borderWidth': 2, + }, + 'default.primary.large.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 82, + 'height': 52, + 'borderRadius': 26, + }, + 'tintColor': '#d9e4ff', + 'borderColor': 'blue-primary', + 'width': 72, + 'height': 42, + 'borderRadius': 21, + 'borderWidth': 2, + }, + 'default.success.small.checked': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': 'transparent', + 'width': 48, + 'height': 32, + 'borderRadius': 16, + }, + 'tintColor': '#b3ffd6', + 'borderColor': '#00e096', + 'width': 38, + 'height': 22, + 'borderRadius': 11, + 'borderWidth': 0.5, + }, + 'default.success.small.checked.disabled': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': 'transparent', + 'width': 48, + 'height': 32, + 'borderRadius': 16, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 38, + 'height': 22, + 'borderRadius': 11, + 'borderWidth': 0.5, + }, + 'default.success.small.checked.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 48, + 'height': 32, + 'borderRadius': 16, + }, + 'tintColor': '#b3ffd6', + 'borderColor': '#00e096', + 'width': 38, + 'height': 22, + 'borderRadius': 11, + 'borderWidth': 0.5, + }, + 'default.success.small.checked.disabled.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 48, + 'height': 32, + 'borderRadius': 16, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 38, + 'height': 22, + 'borderRadius': 11, + 'borderWidth': 0.5, + }, + 'default.success.small.disabled': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': 'transparent', + 'width': 48, + 'height': 32, + 'borderRadius': 16, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 38, + 'height': 22, + 'borderRadius': 11, + 'borderWidth': 0.5, + }, + 'default.success.small.disabled.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 48, + 'height': 32, + 'borderRadius': 16, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 38, + 'height': 22, + 'borderRadius': 11, + 'borderWidth': 0.5, + }, + 'default.success.small.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 48, + 'height': 32, + 'borderRadius': 16, + }, + 'tintColor': '#b3ffd6', + 'borderColor': '#00e096', + 'width': 38, + 'height': 22, + 'borderRadius': 11, + 'borderWidth': 0.5, + }, + 'default.success.medium.checked': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': 'transparent', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': '#b3ffd6', + 'borderColor': '#00e096', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.success.medium.checked.disabled': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': 'transparent', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.success.medium.checked.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': '#b3ffd6', + 'borderColor': '#00e096', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.success.medium.checked.disabled.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.success.medium.disabled': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': 'transparent', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.success.medium.disabled.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.success.medium.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': '#b3ffd6', + 'borderColor': '#00e096', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.success.large.checked': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': 'transparent', + 'width': 82, + 'height': 52, + 'borderRadius': 26, + }, + 'tintColor': '#b3ffd6', + 'borderColor': '#00e096', + 'width': 72, + 'height': 42, + 'borderRadius': 21, + 'borderWidth': 2, + }, + 'default.success.large.checked.disabled': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': 'transparent', + 'width': 82, + 'height': 52, + 'borderRadius': 26, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 72, + 'height': 42, + 'borderRadius': 21, + 'borderWidth': 2, + }, + 'default.success.large.checked.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 82, + 'height': 52, + 'borderRadius': 26, + }, + 'tintColor': '#b3ffd6', + 'borderColor': '#00e096', + 'width': 72, + 'height': 42, + 'borderRadius': 21, + 'borderWidth': 2, + }, + 'default.success.large.checked.disabled.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 82, + 'height': 52, + 'borderRadius': 26, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 72, + 'height': 42, + 'borderRadius': 21, + 'borderWidth': 2, + }, + 'default.success.large.disabled': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': 'transparent', + 'width': 82, + 'height': 52, + 'borderRadius': 26, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 72, + 'height': 42, + 'borderRadius': 21, + 'borderWidth': 2, + }, + 'default.success.large.disabled.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 82, + 'height': 52, + 'borderRadius': 26, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 72, + 'height': 42, + 'borderRadius': 21, + 'borderWidth': 2, + }, + 'default.success.large.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 82, + 'height': 52, + 'borderRadius': 26, + }, + 'tintColor': '#b3ffd6', + 'borderColor': '#00e096', + 'width': 72, + 'height': 42, + 'borderRadius': 21, + 'borderWidth': 2, + }, + 'default.info.small.checked': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': 'transparent', + 'width': 48, + 'height': 32, + 'borderRadius': 16, + }, + 'tintColor': '#c7e2ff', + 'borderColor': '#0095ff', + 'width': 38, + 'height': 22, + 'borderRadius': 11, + 'borderWidth': 0.5, + }, + 'default.info.small.checked.disabled': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': 'transparent', + 'width': 48, + 'height': 32, + 'borderRadius': 16, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 38, + 'height': 22, + 'borderRadius': 11, + 'borderWidth': 0.5, + }, + 'default.info.small.checked.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 48, + 'height': 32, + 'borderRadius': 16, + }, + 'tintColor': '#c7e2ff', + 'borderColor': '#0095ff', + 'width': 38, + 'height': 22, + 'borderRadius': 11, + 'borderWidth': 0.5, + }, + 'default.info.small.checked.disabled.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 48, + 'height': 32, + 'borderRadius': 16, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 38, + 'height': 22, + 'borderRadius': 11, + 'borderWidth': 0.5, + }, + 'default.info.small.disabled': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': 'transparent', + 'width': 48, + 'height': 32, + 'borderRadius': 16, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 38, + 'height': 22, + 'borderRadius': 11, + 'borderWidth': 0.5, + }, + 'default.info.small.disabled.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 48, + 'height': 32, + 'borderRadius': 16, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 38, + 'height': 22, + 'borderRadius': 11, + 'borderWidth': 0.5, + }, + 'default.info.small.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 48, + 'height': 32, + 'borderRadius': 16, + }, + 'tintColor': '#c7e2ff', + 'borderColor': '#0095ff', + 'width': 38, + 'height': 22, + 'borderRadius': 11, + 'borderWidth': 0.5, + }, + 'default.info.medium.checked': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': 'transparent', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': '#c7e2ff', + 'borderColor': '#0095ff', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.info.medium.checked.disabled': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': 'transparent', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.info.medium.checked.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': '#c7e2ff', + 'borderColor': '#0095ff', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.info.medium.checked.disabled.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.info.medium.disabled': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': 'transparent', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.info.medium.disabled.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.info.medium.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': '#c7e2ff', + 'borderColor': '#0095ff', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.info.large.checked': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': 'transparent', + 'width': 82, + 'height': 52, + 'borderRadius': 26, + }, + 'tintColor': '#c7e2ff', + 'borderColor': '#0095ff', + 'width': 72, + 'height': 42, + 'borderRadius': 21, + 'borderWidth': 2, + }, + 'default.info.large.checked.disabled': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': 'transparent', + 'width': 82, + 'height': 52, + 'borderRadius': 26, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 72, + 'height': 42, + 'borderRadius': 21, + 'borderWidth': 2, + }, + 'default.info.large.checked.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 82, + 'height': 52, + 'borderRadius': 26, + }, + 'tintColor': '#c7e2ff', + 'borderColor': '#0095ff', + 'width': 72, + 'height': 42, + 'borderRadius': 21, + 'borderWidth': 2, + }, + 'default.info.large.checked.disabled.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 82, + 'height': 52, + 'borderRadius': 26, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 72, + 'height': 42, + 'borderRadius': 21, + 'borderWidth': 2, + }, + 'default.info.large.disabled': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': 'transparent', + 'width': 82, + 'height': 52, + 'borderRadius': 26, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 72, + 'height': 42, + 'borderRadius': 21, + 'borderWidth': 2, + }, + 'default.info.large.disabled.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 82, + 'height': 52, + 'borderRadius': 26, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 72, + 'height': 42, + 'borderRadius': 21, + 'borderWidth': 2, + }, + 'default.info.large.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 82, + 'height': 52, + 'borderRadius': 26, + }, + 'tintColor': '#c7e2ff', + 'borderColor': '#0095ff', + 'width': 72, + 'height': 42, + 'borderRadius': 21, + 'borderWidth': 2, + }, + 'default.warning.small.checked': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': 'transparent', + 'width': 48, + 'height': 32, + 'borderRadius': 16, + }, + 'tintColor': '#fff1c2', + 'borderColor': '#ffaa00', + 'width': 38, + 'height': 22, + 'borderRadius': 11, + 'borderWidth': 0.5, + }, + 'default.warning.small.checked.disabled': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': 'transparent', + 'width': 48, + 'height': 32, + 'borderRadius': 16, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 38, + 'height': 22, + 'borderRadius': 11, + 'borderWidth': 0.5, + }, + 'default.warning.small.checked.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 48, + 'height': 32, + 'borderRadius': 16, + }, + 'tintColor': '#fff1c2', + 'borderColor': '#ffaa00', + 'width': 38, + 'height': 22, + 'borderRadius': 11, + 'borderWidth': 0.5, + }, + 'default.warning.small.checked.disabled.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 48, + 'height': 32, + 'borderRadius': 16, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 38, + 'height': 22, + 'borderRadius': 11, + 'borderWidth': 0.5, + }, + 'default.warning.small.disabled': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': 'transparent', + 'width': 48, + 'height': 32, + 'borderRadius': 16, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 38, + 'height': 22, + 'borderRadius': 11, + 'borderWidth': 0.5, + }, + 'default.warning.small.disabled.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 48, + 'height': 32, + 'borderRadius': 16, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 38, + 'height': 22, + 'borderRadius': 11, + 'borderWidth': 0.5, + }, + 'default.warning.small.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 48, + 'height': 32, + 'borderRadius': 16, + }, + 'tintColor': '#fff1c2', + 'borderColor': '#ffaa00', + 'width': 38, + 'height': 22, + 'borderRadius': 11, + 'borderWidth': 0.5, + }, + 'default.warning.medium.checked': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': 'transparent', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': '#fff1c2', + 'borderColor': '#ffaa00', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.warning.medium.checked.disabled': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': 'transparent', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.warning.medium.checked.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': '#fff1c2', + 'borderColor': '#ffaa00', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.warning.medium.checked.disabled.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.warning.medium.disabled': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': 'transparent', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.warning.medium.disabled.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.warning.medium.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 62, + 'height': 42, + 'borderRadius': 21, + }, + 'tintColor': '#fff1c2', + 'borderColor': '#ffaa00', + 'width': 52, + 'height': 32, + 'borderRadius': 16, + 'borderWidth': 1.5, + }, + 'default.warning.large.checked': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': 'transparent', + 'width': 82, + 'height': 52, + 'borderRadius': 26, + }, + 'tintColor': '#fff1c2', + 'borderColor': '#ffaa00', + 'width': 72, + 'height': 42, + 'borderRadius': 21, + 'borderWidth': 2, + }, + 'default.warning.large.checked.disabled': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': 'transparent', + 'width': 82, + 'height': 52, + 'borderRadius': 26, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 72, + 'height': 42, + 'borderRadius': 21, + 'borderWidth': 2, + }, + 'default.warning.large.checked.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 82, + 'height': 52, + 'borderRadius': 26, + }, + 'tintColor': '#fff1c2', + 'borderColor': '#ffaa00', + 'width': 72, + 'height': 42, + 'borderRadius': 21, + 'borderWidth': 2, + }, + 'default.warning.large.checked.disabled.active': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': '#e5e7ea', + 'width': 82, + 'height': 52, + 'borderRadius': 26, + }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 72, + 'height': 42, + 'borderRadius': 21, + 'borderWidth': 2, + }, + 'default.warning.large.disabled': { + 'offsetValue': 20, + 'thumb': { + 'backgroundColor': '#ffffff', + }, + 'highlight': { + 'backgroundColor': 'transparent', + 'width': 82, + 'height': 52, + 'borderRadius': 26, }, - 'width': 52, - 'height': 32, - 'borderRadius': 16, - 'borderWidth': 1.5, - }, - 'default.error.disabled.active': { - 'offsetValue': 20, 'tintColor': 'gray-light', 'borderColor': 'gray-dark', + 'width': 72, + 'height': 42, + 'borderRadius': 21, + 'borderWidth': 2, + }, + 'default.warning.large.disabled.active': { + 'offsetValue': 20, 'thumb': { 'backgroundColor': '#ffffff', }, 'highlight': { 'backgroundColor': '#e5e7ea', - 'width': 62, - 'height': 42, - 'borderRadius': 21, + 'width': 82, + 'height': 52, + 'borderRadius': 26, }, - 'width': 52, - 'height': 32, - 'borderRadius': 16, - 'borderWidth': 1.5, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', + 'width': 72, + 'height': 42, + 'borderRadius': 21, + 'borderWidth': 2, }, - 'default.error.active': { + 'default.warning.large.active': { 'offsetValue': 20, - 'tintColor': '#FFD6D9', - 'borderColor': 'pink-primary', 'thumb': { 'backgroundColor': '#ffffff', }, 'highlight': { 'backgroundColor': '#e5e7ea', - 'width': 62, - 'height': 42, - 'borderRadius': 21, + 'width': 82, + 'height': 52, + 'borderRadius': 26, }, - 'width': 52, - 'height': 32, - 'borderRadius': 16, - 'borderWidth': 1.5, + 'tintColor': '#fff1c2', + 'borderColor': '#ffaa00', + 'width': 72, + 'height': 42, + 'borderRadius': 21, + 'borderWidth': 2, }, - 'default.error.small.checked': { + 'default.danger.small.checked': { 'offsetValue': 20, - 'tintColor': '#FFD6D9', - 'borderColor': 'pink-primary', 'thumb': { 'backgroundColor': '#ffffff', }, @@ -10201,15 +12503,15 @@ export const style: ThemeStyleType = { 'height': 32, 'borderRadius': 16, }, + 'tintColor': '#FFD6D9', + 'borderColor': 'pink-primary', 'width': 38, 'height': 22, 'borderRadius': 11, 'borderWidth': 0.5, }, - 'default.error.small.checked.disabled': { + 'default.danger.small.checked.disabled': { 'offsetValue': 20, - 'tintColor': 'gray-light', - 'borderColor': 'gray-dark', 'thumb': { 'backgroundColor': '#ffffff', }, @@ -10219,15 +12521,15 @@ export const style: ThemeStyleType = { 'height': 32, 'borderRadius': 16, }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', 'width': 38, 'height': 22, 'borderRadius': 11, 'borderWidth': 0.5, }, - 'default.error.small.checked.active': { + 'default.danger.small.checked.active': { 'offsetValue': 20, - 'tintColor': '#FFD6D9', - 'borderColor': 'pink-primary', 'thumb': { 'backgroundColor': '#ffffff', }, @@ -10237,15 +12539,15 @@ export const style: ThemeStyleType = { 'height': 32, 'borderRadius': 16, }, + 'tintColor': '#FFD6D9', + 'borderColor': 'pink-primary', 'width': 38, 'height': 22, 'borderRadius': 11, 'borderWidth': 0.5, }, - 'default.error.small.checked.disabled.active': { + 'default.danger.small.checked.disabled.active': { 'offsetValue': 20, - 'tintColor': 'gray-light', - 'borderColor': 'gray-dark', 'thumb': { 'backgroundColor': '#ffffff', }, @@ -10255,15 +12557,15 @@ export const style: ThemeStyleType = { 'height': 32, 'borderRadius': 16, }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', 'width': 38, 'height': 22, 'borderRadius': 11, 'borderWidth': 0.5, }, - 'default.error.small.disabled': { + 'default.danger.small.disabled': { 'offsetValue': 20, - 'tintColor': 'gray-light', - 'borderColor': 'gray-dark', 'thumb': { 'backgroundColor': '#ffffff', }, @@ -10273,15 +12575,15 @@ export const style: ThemeStyleType = { 'height': 32, 'borderRadius': 16, }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', 'width': 38, 'height': 22, 'borderRadius': 11, 'borderWidth': 0.5, }, - 'default.error.small.disabled.active': { + 'default.danger.small.disabled.active': { 'offsetValue': 20, - 'tintColor': 'gray-light', - 'borderColor': 'gray-dark', 'thumb': { 'backgroundColor': '#ffffff', }, @@ -10291,15 +12593,15 @@ export const style: ThemeStyleType = { 'height': 32, 'borderRadius': 16, }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', 'width': 38, 'height': 22, 'borderRadius': 11, 'borderWidth': 0.5, }, - 'default.error.small.active': { + 'default.danger.small.active': { 'offsetValue': 20, - 'tintColor': '#FFD6D9', - 'borderColor': 'pink-primary', 'thumb': { 'backgroundColor': '#ffffff', }, @@ -10309,15 +12611,15 @@ export const style: ThemeStyleType = { 'height': 32, 'borderRadius': 16, }, + 'tintColor': '#FFD6D9', + 'borderColor': 'pink-primary', 'width': 38, 'height': 22, 'borderRadius': 11, 'borderWidth': 0.5, }, - 'default.error.medium.checked': { + 'default.danger.medium.checked': { 'offsetValue': 20, - 'tintColor': '#FFD6D9', - 'borderColor': 'pink-primary', 'thumb': { 'backgroundColor': '#ffffff', }, @@ -10327,15 +12629,15 @@ export const style: ThemeStyleType = { 'height': 42, 'borderRadius': 21, }, + 'tintColor': '#FFD6D9', + 'borderColor': 'pink-primary', 'width': 52, 'height': 32, 'borderRadius': 16, 'borderWidth': 1.5, }, - 'default.error.medium.checked.disabled': { + 'default.danger.medium.checked.disabled': { 'offsetValue': 20, - 'tintColor': 'gray-light', - 'borderColor': 'gray-dark', 'thumb': { 'backgroundColor': '#ffffff', }, @@ -10345,15 +12647,15 @@ export const style: ThemeStyleType = { 'height': 42, 'borderRadius': 21, }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', 'width': 52, 'height': 32, 'borderRadius': 16, 'borderWidth': 1.5, }, - 'default.error.medium.checked.active': { + 'default.danger.medium.checked.active': { 'offsetValue': 20, - 'tintColor': '#FFD6D9', - 'borderColor': 'pink-primary', 'thumb': { 'backgroundColor': '#ffffff', }, @@ -10363,15 +12665,15 @@ export const style: ThemeStyleType = { 'height': 42, 'borderRadius': 21, }, + 'tintColor': '#FFD6D9', + 'borderColor': 'pink-primary', 'width': 52, 'height': 32, 'borderRadius': 16, 'borderWidth': 1.5, }, - 'default.error.medium.checked.disabled.active': { + 'default.danger.medium.checked.disabled.active': { 'offsetValue': 20, - 'tintColor': 'gray-light', - 'borderColor': 'gray-dark', 'thumb': { 'backgroundColor': '#ffffff', }, @@ -10381,15 +12683,15 @@ export const style: ThemeStyleType = { 'height': 42, 'borderRadius': 21, }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', 'width': 52, 'height': 32, 'borderRadius': 16, 'borderWidth': 1.5, }, - 'default.error.medium.disabled': { + 'default.danger.medium.disabled': { 'offsetValue': 20, - 'tintColor': 'gray-light', - 'borderColor': 'gray-dark', 'thumb': { 'backgroundColor': '#ffffff', }, @@ -10399,15 +12701,15 @@ export const style: ThemeStyleType = { 'height': 42, 'borderRadius': 21, }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', 'width': 52, 'height': 32, 'borderRadius': 16, 'borderWidth': 1.5, }, - 'default.error.medium.disabled.active': { + 'default.danger.medium.disabled.active': { 'offsetValue': 20, - 'tintColor': 'gray-light', - 'borderColor': 'gray-dark', 'thumb': { 'backgroundColor': '#ffffff', }, @@ -10417,15 +12719,15 @@ export const style: ThemeStyleType = { 'height': 42, 'borderRadius': 21, }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', 'width': 52, 'height': 32, 'borderRadius': 16, 'borderWidth': 1.5, }, - 'default.error.medium.active': { + 'default.danger.medium.active': { 'offsetValue': 20, - 'tintColor': '#FFD6D9', - 'borderColor': 'pink-primary', 'thumb': { 'backgroundColor': '#ffffff', }, @@ -10435,15 +12737,15 @@ export const style: ThemeStyleType = { 'height': 42, 'borderRadius': 21, }, + 'tintColor': '#FFD6D9', + 'borderColor': 'pink-primary', 'width': 52, 'height': 32, 'borderRadius': 16, 'borderWidth': 1.5, }, - 'default.error.large.checked': { + 'default.danger.large.checked': { 'offsetValue': 20, - 'tintColor': '#FFD6D9', - 'borderColor': 'pink-primary', 'thumb': { 'backgroundColor': '#ffffff', }, @@ -10453,15 +12755,15 @@ export const style: ThemeStyleType = { 'height': 52, 'borderRadius': 26, }, + 'tintColor': '#FFD6D9', + 'borderColor': 'pink-primary', 'width': 72, 'height': 42, 'borderRadius': 21, 'borderWidth': 2, }, - 'default.error.large.checked.disabled': { + 'default.danger.large.checked.disabled': { 'offsetValue': 20, - 'tintColor': 'gray-light', - 'borderColor': 'gray-dark', 'thumb': { 'backgroundColor': '#ffffff', }, @@ -10471,15 +12773,15 @@ export const style: ThemeStyleType = { 'height': 52, 'borderRadius': 26, }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', 'width': 72, 'height': 42, 'borderRadius': 21, 'borderWidth': 2, }, - 'default.error.large.checked.active': { + 'default.danger.large.checked.active': { 'offsetValue': 20, - 'tintColor': '#FFD6D9', - 'borderColor': 'pink-primary', 'thumb': { 'backgroundColor': '#ffffff', }, @@ -10489,15 +12791,15 @@ export const style: ThemeStyleType = { 'height': 52, 'borderRadius': 26, }, + 'tintColor': '#FFD6D9', + 'borderColor': 'pink-primary', 'width': 72, 'height': 42, 'borderRadius': 21, 'borderWidth': 2, }, - 'default.error.large.checked.disabled.active': { + 'default.danger.large.checked.disabled.active': { 'offsetValue': 20, - 'tintColor': 'gray-light', - 'borderColor': 'gray-dark', 'thumb': { 'backgroundColor': '#ffffff', }, @@ -10507,15 +12809,15 @@ export const style: ThemeStyleType = { 'height': 52, 'borderRadius': 26, }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', 'width': 72, 'height': 42, 'borderRadius': 21, 'borderWidth': 2, }, - 'default.error.large.disabled': { + 'default.danger.large.disabled': { 'offsetValue': 20, - 'tintColor': 'gray-light', - 'borderColor': 'gray-dark', 'thumb': { 'backgroundColor': '#ffffff', }, @@ -10525,15 +12827,15 @@ export const style: ThemeStyleType = { 'height': 52, 'borderRadius': 26, }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', 'width': 72, 'height': 42, 'borderRadius': 21, 'borderWidth': 2, }, - 'default.error.large.disabled.active': { + 'default.danger.large.disabled.active': { 'offsetValue': 20, - 'tintColor': 'gray-light', - 'borderColor': 'gray-dark', 'thumb': { 'backgroundColor': '#ffffff', }, @@ -10543,15 +12845,15 @@ export const style: ThemeStyleType = { 'height': 52, 'borderRadius': 26, }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', 'width': 72, 'height': 42, 'borderRadius': 21, 'borderWidth': 2, }, - 'default.error.large.active': { + 'default.danger.large.active': { 'offsetValue': 20, - 'tintColor': '#FFD6D9', - 'borderColor': 'pink-primary', 'thumb': { 'backgroundColor': '#ffffff', }, @@ -10561,6 +12863,8 @@ export const style: ThemeStyleType = { 'height': 52, 'borderRadius': 26, }, + 'tintColor': '#FFD6D9', + 'borderColor': 'pink-primary', 'width': 72, 'height': 42, 'borderRadius': 21, @@ -10568,8 +12872,6 @@ export const style: ThemeStyleType = { }, 'default.small.checked': { 'offsetValue': 20, - 'tintColor': 'gray-light', - 'borderColor': 'blue-primary', 'thumb': { 'backgroundColor': '#ffffff', }, @@ -10579,6 +12881,8 @@ export const style: ThemeStyleType = { 'height': 32, 'borderRadius': 16, }, + 'tintColor': '#d9e4ff', + 'borderColor': 'blue-primary', 'width': 38, 'height': 22, 'borderRadius': 11, @@ -10586,8 +12890,6 @@ export const style: ThemeStyleType = { }, 'default.small.checked.disabled': { 'offsetValue': 20, - 'tintColor': 'gray-light', - 'borderColor': 'gray-dark', 'thumb': { 'backgroundColor': '#ffffff', }, @@ -10597,6 +12899,8 @@ export const style: ThemeStyleType = { 'height': 32, 'borderRadius': 16, }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', 'width': 38, 'height': 22, 'borderRadius': 11, @@ -10604,8 +12908,6 @@ export const style: ThemeStyleType = { }, 'default.small.checked.active': { 'offsetValue': 20, - 'tintColor': 'gray-light', - 'borderColor': 'blue-primary', 'thumb': { 'backgroundColor': '#ffffff', }, @@ -10615,6 +12917,8 @@ export const style: ThemeStyleType = { 'height': 32, 'borderRadius': 16, }, + 'tintColor': '#d9e4ff', + 'borderColor': 'blue-primary', 'width': 38, 'height': 22, 'borderRadius': 11, @@ -10622,8 +12926,6 @@ export const style: ThemeStyleType = { }, 'default.small.checked.disabled.active': { 'offsetValue': 20, - 'tintColor': 'gray-light', - 'borderColor': 'gray-dark', 'thumb': { 'backgroundColor': '#ffffff', }, @@ -10633,6 +12935,8 @@ export const style: ThemeStyleType = { 'height': 32, 'borderRadius': 16, }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', 'width': 38, 'height': 22, 'borderRadius': 11, @@ -10640,8 +12944,6 @@ export const style: ThemeStyleType = { }, 'default.small.disabled': { 'offsetValue': 20, - 'tintColor': 'gray-light', - 'borderColor': 'gray-dark', 'thumb': { 'backgroundColor': '#ffffff', }, @@ -10651,6 +12953,8 @@ export const style: ThemeStyleType = { 'height': 32, 'borderRadius': 16, }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', 'width': 38, 'height': 22, 'borderRadius': 11, @@ -10658,8 +12962,6 @@ export const style: ThemeStyleType = { }, 'default.small.disabled.active': { 'offsetValue': 20, - 'tintColor': 'gray-light', - 'borderColor': 'gray-dark', 'thumb': { 'backgroundColor': '#ffffff', }, @@ -10669,6 +12971,8 @@ export const style: ThemeStyleType = { 'height': 32, 'borderRadius': 16, }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', 'width': 38, 'height': 22, 'borderRadius': 11, @@ -10676,8 +12980,6 @@ export const style: ThemeStyleType = { }, 'default.small.active': { 'offsetValue': 20, - 'tintColor': 'gray-light', - 'borderColor': 'blue-primary', 'thumb': { 'backgroundColor': '#ffffff', }, @@ -10687,6 +12989,8 @@ export const style: ThemeStyleType = { 'height': 32, 'borderRadius': 16, }, + 'tintColor': '#d9e4ff', + 'borderColor': 'blue-primary', 'width': 38, 'height': 22, 'borderRadius': 11, @@ -10694,8 +12998,6 @@ export const style: ThemeStyleType = { }, 'default.medium.checked': { 'offsetValue': 20, - 'tintColor': 'gray-light', - 'borderColor': 'blue-primary', 'thumb': { 'backgroundColor': '#ffffff', }, @@ -10705,6 +13007,8 @@ export const style: ThemeStyleType = { 'height': 42, 'borderRadius': 21, }, + 'tintColor': '#d9e4ff', + 'borderColor': 'blue-primary', 'width': 52, 'height': 32, 'borderRadius': 16, @@ -10712,8 +13016,6 @@ export const style: ThemeStyleType = { }, 'default.medium.checked.disabled': { 'offsetValue': 20, - 'tintColor': 'gray-light', - 'borderColor': 'gray-dark', 'thumb': { 'backgroundColor': '#ffffff', }, @@ -10723,6 +13025,8 @@ export const style: ThemeStyleType = { 'height': 42, 'borderRadius': 21, }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', 'width': 52, 'height': 32, 'borderRadius': 16, @@ -10730,8 +13034,6 @@ export const style: ThemeStyleType = { }, 'default.medium.checked.active': { 'offsetValue': 20, - 'tintColor': 'gray-light', - 'borderColor': 'blue-primary', 'thumb': { 'backgroundColor': '#ffffff', }, @@ -10741,6 +13043,8 @@ export const style: ThemeStyleType = { 'height': 42, 'borderRadius': 21, }, + 'tintColor': '#d9e4ff', + 'borderColor': 'blue-primary', 'width': 52, 'height': 32, 'borderRadius': 16, @@ -10748,8 +13052,6 @@ export const style: ThemeStyleType = { }, 'default.medium.checked.disabled.active': { 'offsetValue': 20, - 'tintColor': 'gray-light', - 'borderColor': 'gray-dark', 'thumb': { 'backgroundColor': '#ffffff', }, @@ -10759,6 +13061,8 @@ export const style: ThemeStyleType = { 'height': 42, 'borderRadius': 21, }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', 'width': 52, 'height': 32, 'borderRadius': 16, @@ -10766,8 +13070,6 @@ export const style: ThemeStyleType = { }, 'default.medium.disabled': { 'offsetValue': 20, - 'tintColor': 'gray-light', - 'borderColor': 'gray-dark', 'thumb': { 'backgroundColor': '#ffffff', }, @@ -10777,6 +13079,8 @@ export const style: ThemeStyleType = { 'height': 42, 'borderRadius': 21, }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', 'width': 52, 'height': 32, 'borderRadius': 16, @@ -10784,8 +13088,6 @@ export const style: ThemeStyleType = { }, 'default.medium.disabled.active': { 'offsetValue': 20, - 'tintColor': 'gray-light', - 'borderColor': 'gray-dark', 'thumb': { 'backgroundColor': '#ffffff', }, @@ -10795,6 +13097,8 @@ export const style: ThemeStyleType = { 'height': 42, 'borderRadius': 21, }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', 'width': 52, 'height': 32, 'borderRadius': 16, @@ -10802,8 +13106,6 @@ export const style: ThemeStyleType = { }, 'default.medium.active': { 'offsetValue': 20, - 'tintColor': 'gray-light', - 'borderColor': 'blue-primary', 'thumb': { 'backgroundColor': '#ffffff', }, @@ -10813,6 +13115,8 @@ export const style: ThemeStyleType = { 'height': 42, 'borderRadius': 21, }, + 'tintColor': '#d9e4ff', + 'borderColor': 'blue-primary', 'width': 52, 'height': 32, 'borderRadius': 16, @@ -10820,8 +13124,6 @@ export const style: ThemeStyleType = { }, 'default.large.checked': { 'offsetValue': 20, - 'tintColor': 'gray-light', - 'borderColor': 'blue-primary', 'thumb': { 'backgroundColor': '#ffffff', }, @@ -10831,6 +13133,8 @@ export const style: ThemeStyleType = { 'height': 52, 'borderRadius': 26, }, + 'tintColor': '#d9e4ff', + 'borderColor': 'blue-primary', 'width': 72, 'height': 42, 'borderRadius': 21, @@ -10838,8 +13142,6 @@ export const style: ThemeStyleType = { }, 'default.large.checked.disabled': { 'offsetValue': 20, - 'tintColor': 'gray-light', - 'borderColor': 'gray-dark', 'thumb': { 'backgroundColor': '#ffffff', }, @@ -10849,6 +13151,8 @@ export const style: ThemeStyleType = { 'height': 52, 'borderRadius': 26, }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', 'width': 72, 'height': 42, 'borderRadius': 21, @@ -10856,8 +13160,6 @@ export const style: ThemeStyleType = { }, 'default.large.checked.active': { 'offsetValue': 20, - 'tintColor': 'gray-light', - 'borderColor': 'blue-primary', 'thumb': { 'backgroundColor': '#ffffff', }, @@ -10867,6 +13169,8 @@ export const style: ThemeStyleType = { 'height': 52, 'borderRadius': 26, }, + 'tintColor': '#d9e4ff', + 'borderColor': 'blue-primary', 'width': 72, 'height': 42, 'borderRadius': 21, @@ -10874,8 +13178,6 @@ export const style: ThemeStyleType = { }, 'default.large.checked.disabled.active': { 'offsetValue': 20, - 'tintColor': 'gray-light', - 'borderColor': 'gray-dark', 'thumb': { 'backgroundColor': '#ffffff', }, @@ -10885,6 +13187,8 @@ export const style: ThemeStyleType = { 'height': 52, 'borderRadius': 26, }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', 'width': 72, 'height': 42, 'borderRadius': 21, @@ -10892,8 +13196,6 @@ export const style: ThemeStyleType = { }, 'default.large.disabled': { 'offsetValue': 20, - 'tintColor': 'gray-light', - 'borderColor': 'gray-dark', 'thumb': { 'backgroundColor': '#ffffff', }, @@ -10903,6 +13205,8 @@ export const style: ThemeStyleType = { 'height': 52, 'borderRadius': 26, }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', 'width': 72, 'height': 42, 'borderRadius': 21, @@ -10910,8 +13214,6 @@ export const style: ThemeStyleType = { }, 'default.large.disabled.active': { 'offsetValue': 20, - 'tintColor': 'gray-light', - 'borderColor': 'gray-dark', 'thumb': { 'backgroundColor': '#ffffff', }, @@ -10921,6 +13223,8 @@ export const style: ThemeStyleType = { 'height': 52, 'borderRadius': 26, }, + 'tintColor': 'gray-light', + 'borderColor': 'gray-dark', 'width': 72, 'height': 42, 'borderRadius': 21, @@ -10928,8 +13232,6 @@ export const style: ThemeStyleType = { }, 'default.large.active': { 'offsetValue': 20, - 'tintColor': 'gray-light', - 'borderColor': 'blue-primary', 'thumb': { 'backgroundColor': '#ffffff', }, @@ -10939,6 +13241,8 @@ export const style: ThemeStyleType = { 'height': 52, 'borderRadius': 26, }, + 'tintColor': '#d9e4ff', + 'borderColor': 'blue-primary', 'width': 72, 'height': 42, 'borderRadius': 21, @@ -12760,7 +15064,19 @@ export const mapping: ThemeMappingType = { }, 'variants': { 'status': { - 'error': { + 'primary': { + 'default': true, + }, + 'success': { + 'default': false, + }, + 'info': { + 'default': false, + }, + 'warning': { + 'default': false, + }, + 'danger': { 'default': false, }, }, @@ -12798,8 +15114,6 @@ export const mapping: ThemeMappingType = { 'default': { 'mapping': { 'offsetValue': 20, - 'tintColor': 'gray-light', - 'borderColor': 'blue-primary', 'thumb': { 'backgroundColor': '#ffffff', }, @@ -12814,19 +15128,31 @@ export const mapping: ThemeMappingType = { }, 'disabled': { 'borderColor': 'gray-dark', + 'tintColor': 'gray-light', }, }, }, 'variant': { 'status': { - 'error': { + 'primary': { + 'tintColor': '#d9e4ff', + 'borderColor': 'blue-primary', + }, + 'success': { + 'tintColor': '#b3ffd6', + 'borderColor': '#00e096', + }, + 'info': { + 'tintColor': '#c7e2ff', + 'borderColor': '#0095ff', + }, + 'warning': { + 'tintColor': '#fff1c2', + 'borderColor': '#ffaa00', + }, + 'danger': { 'tintColor': '#FFD6D9', 'borderColor': 'pink-primary', - 'state': { - 'disabled': { - 'tintColor': 'gray-light', - }, - }, }, }, 'size': { diff --git a/packages/mapping/eva/mapping.json b/packages/mapping/eva/mapping.json index d41074d..824e847 100644 --- a/packages/mapping/eva/mapping.json +++ b/packages/mapping/eva/mapping.json @@ -1436,7 +1436,19 @@ }, "variants": { "status": { - "error": { + "primary": { + "default": true + }, + "success": { + "default": false + }, + "info": { + "default": false + }, + "warning": { + "default": false + }, + "danger": { "default": false } }, @@ -1474,8 +1486,6 @@ "default": { "mapping": { "offsetValue": 20, - "tintColor": "gray-light", - "borderColor": "blue-primary", "thumb": { "backgroundColor": "#ffffff" }, @@ -1489,20 +1499,32 @@ } }, "disabled": { - "borderColor": "gray-dark" + "borderColor": "gray-dark", + "tintColor": "gray-light" } } }, "variant": { "status": { - "error": { + "primary": { + "tintColor": "#d9e4ff", + "borderColor": "blue-primary" + }, + "success": { + "tintColor": "#b3ffd6", + "borderColor": "#00e096" + }, + "info": { + "tintColor": "#c7e2ff", + "borderColor": "#0095ff" + }, + "warning": { + "tintColor": "#fff1c2", + "borderColor": "#ffaa00" + }, + "danger": { "tintColor": "#FFD6D9", - "borderColor": "pink-primary", - "state": { - "disabled": { - "tintColor": "gray-light" - } - } + "borderColor": "pink-primary" } }, "size": {