@latte-macchiat-io/latte-vanilla-components 0.0.251 → 0.0.252
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/package.json +1 -1
- package/src/theme/contract.css.ts +13 -13
- package/src/theme/createTheme.ts +1 -1
package/package.json
CHANGED
@@ -97,12 +97,12 @@ export const themeContract = createGlobalThemeContract({
|
|
97
97
|
'2xl': 'latte-global-paddingLeft-2xl',
|
98
98
|
},
|
99
99
|
paddingLeftNeg: {
|
100
|
-
mobile: 'latte-global-
|
101
|
-
sm: 'latte-global-
|
102
|
-
md: 'latte-global-
|
103
|
-
lg: 'latte-global-
|
104
|
-
xl: 'latte-global-
|
105
|
-
'2xl': 'latte-global-
|
100
|
+
mobile: 'latte-global-paddingLeftNeg-mobile',
|
101
|
+
sm: 'latte-global-paddingLeftNeg-sm',
|
102
|
+
md: 'latte-global-paddingLeftNeg-md',
|
103
|
+
lg: 'latte-global-paddingLeftNeg-lg',
|
104
|
+
xl: 'latte-global-paddingLeftNeg-xl',
|
105
|
+
'2xl': 'latte-global-paddingLeftNeg-2xl',
|
106
106
|
},
|
107
107
|
},
|
108
108
|
|
@@ -581,7 +581,7 @@ export const themeContract = createGlobalThemeContract({
|
|
581
581
|
},
|
582
582
|
paddingTop: {
|
583
583
|
mobile: 'latte-modal-paddingTop-mobile',
|
584
|
-
sm: 'latte-modal-
|
584
|
+
sm: 'latte-modal-paddingTopap-sm',
|
585
585
|
md: 'latte-modal-paddingTop-md',
|
586
586
|
lg: 'latte-modal-paddingTop-lg',
|
587
587
|
xl: 'latte-modal-paddingTop-xl',
|
@@ -733,12 +733,12 @@ export const themeContract = createGlobalThemeContract({
|
|
733
733
|
'2xl': 'latte-video-soundButton-width-2xl',
|
734
734
|
},
|
735
735
|
height: {
|
736
|
-
mobile: 'latte-video-
|
737
|
-
sm: 'latte-video-
|
738
|
-
md: 'latte-video-
|
739
|
-
lg: 'latte-video-
|
740
|
-
xl: 'latte-video-
|
741
|
-
'2xl': 'latte-video-
|
736
|
+
mobile: 'latte-video-soundButton-height-mobile',
|
737
|
+
sm: 'latte-video-soundButton-height-sm',
|
738
|
+
md: 'latte-video-soundButton-height-md',
|
739
|
+
lg: 'latte-video-soundButton-height-lg',
|
740
|
+
xl: 'latte-video-soundButton-height-xl',
|
741
|
+
'2xl': 'latte-video-soundButton-height-2xl',
|
742
742
|
},
|
743
743
|
iconSize: {
|
744
744
|
mobile: 'latte-video-soundButton-iconSize-mobile',
|
package/src/theme/createTheme.ts
CHANGED
@@ -83,7 +83,7 @@ const createAppDarkTheme = (selector: string, overrides: ThemeOverrides = {}) =>
|
|
83
83
|
button: { ...baseDarkTheme.button, ...overrides.button },
|
84
84
|
icon: { ...baseDarkTheme.icon, ...overrides.icon },
|
85
85
|
columns: { ...baseDarkTheme.columns, ...overrides.columns },
|
86
|
-
heading: { ...
|
86
|
+
heading: { ...baseDarkTheme.heading, ...overrides.heading },
|
87
87
|
modal: { ...baseDarkTheme.modal, ...overrides.modal },
|
88
88
|
keyNumber: { ...baseDarkTheme.keyNumber, ...overrides.keyNumber },
|
89
89
|
header: { ...baseDarkTheme.header, ...overrides.header },
|