@@ -48,6 +48,7 @@ export interface ThemeVariables {
4848 inputLineHeight : string ;
4949 inputPaddingX : string ;
5050 inputPaddingY : string ;
51+ inputBorderWidth : string ;
5152 checkboxSize : string ;
5253
5354 buttonBackgroundColor : string ;
@@ -83,6 +84,8 @@ export interface ThemeVariables {
8384 gridDataBackgroundColor : string ;
8485 gridDataBorderColor : string ;
8586
87+ dropdownBorderWidth : string ;
88+
8689 toastBackgroundColor : string ;
8790 toastBorderWidth : string ;
8891 toastBorderColor : string ;
@@ -102,6 +105,7 @@ export interface ThemeVariables {
102105 sectionFooterMargin : string ;
103106 sectionFooterBorderWidth : string ;
104107
108+ calendarBorderWidth : string ;
105109 calendarBackgroundColor : string ;
106110 calendarPadding : string ;
107111 calendarHeaderFontWeight : string ;
@@ -162,6 +166,7 @@ export const variableMap: Record<keyof ThemeVariables, string> = {
162166 inputLineHeight : "--cx-input-line-height" ,
163167 inputPaddingX : "--cx-input-padding-x" ,
164168 inputPaddingY : "--cx-input-padding-y" ,
169+ inputBorderWidth : "--cx-input-border-width" ,
165170 checkboxSize : "--cx-checkbox-size" ,
166171
167172 buttonBackgroundColor : "--cx-button-background-color" ,
@@ -197,6 +202,8 @@ export const variableMap: Record<keyof ThemeVariables, string> = {
197202 gridDataBackgroundColor : "--cx-grid-data-background-color" ,
198203 gridDataBorderColor : "--cx-grid-data-border-color" ,
199204
205+ dropdownBorderWidth : "--cx-dropdown-border-width" ,
206+
200207 toastBackgroundColor : "--cx-toast-background-color" ,
201208 toastBorderWidth : "--cx-toast-border-width" ,
202209 toastBorderColor : "--cx-toast-border-color" ,
@@ -216,6 +223,7 @@ export const variableMap: Record<keyof ThemeVariables, string> = {
216223 sectionFooterMargin : "--cx-section-footer-margin" ,
217224 sectionFooterBorderWidth : "--cx-section-footer-border-width" ,
218225
226+ calendarBorderWidth : "--cx-calendar-border-width" ,
219227 calendarBackgroundColor : "--cx-calendar-background-color" ,
220228 calendarPadding : "--cx-calendar-padding" ,
221229 calendarHeaderFontWeight : "--cx-calendar-header-font-weight" ,
0 commit comments