@lunit/oui 2.2.19 → 2.2.20
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/dist/components/Button/styleds/BaseButton.styled.d.ts +1 -1
- package/dist/components/Button/styleds/BaseButton.styled.js +1 -0
- package/dist/components/Button/styleds/ContainedButton.styled.d.ts +1 -1
- package/dist/components/Button/styleds/GhostButton.styled.d.ts +1 -1
- package/dist/components/Button/styleds/OutlinedButton.styled.d.ts +1 -1
- package/dist/components/Toggle/Toggle.styled.js +1 -1
- package/package.json +1 -1
|
@@ -141,7 +141,7 @@ declare const baseButtonStyle: (theme: Theme, focusOutline: boolean | undefined)
|
|
|
141
141
|
flexShrink?: import("csstype").Property.FlexShrink | undefined;
|
|
142
142
|
flexWrap?: import("csstype").Property.FlexWrap | undefined;
|
|
143
143
|
float?: import("csstype").Property.Float | undefined;
|
|
144
|
-
fontFamily
|
|
144
|
+
fontFamily: import("csstype").Property.FontFamily | undefined;
|
|
145
145
|
fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
|
|
146
146
|
fontKerning?: import("csstype").Property.FontKerning | undefined;
|
|
147
147
|
fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
|
|
@@ -143,7 +143,7 @@ declare const containedPrimaryStyle: (theme: Theme, focusOutline: boolean | unde
|
|
|
143
143
|
flexShrink?: import("csstype").Property.FlexShrink | undefined;
|
|
144
144
|
flexWrap?: import("csstype").Property.FlexWrap | undefined;
|
|
145
145
|
float?: import("csstype").Property.Float | undefined;
|
|
146
|
-
fontFamily
|
|
146
|
+
fontFamily: import("csstype").Property.FontFamily | undefined;
|
|
147
147
|
fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
|
|
148
148
|
fontKerning?: import("csstype").Property.FontKerning | undefined;
|
|
149
149
|
fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
|
|
@@ -142,7 +142,7 @@ declare const ghostPrimaryStyle: (theme: Theme, focusOutline: boolean | undefine
|
|
|
142
142
|
flexShrink?: import("csstype").Property.FlexShrink | undefined;
|
|
143
143
|
flexWrap?: import("csstype").Property.FlexWrap | undefined;
|
|
144
144
|
float?: import("csstype").Property.Float | undefined;
|
|
145
|
-
fontFamily
|
|
145
|
+
fontFamily: import("csstype").Property.FontFamily | undefined;
|
|
146
146
|
fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
|
|
147
147
|
fontKerning?: import("csstype").Property.FontKerning | undefined;
|
|
148
148
|
fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
|
|
@@ -144,7 +144,7 @@ declare const outlinedPrimaryStyle: (theme: Theme, focusOutline: boolean | undef
|
|
|
144
144
|
flexShrink?: import("csstype").Property.FlexShrink | undefined;
|
|
145
145
|
flexWrap?: import("csstype").Property.FlexWrap | undefined;
|
|
146
146
|
float?: import("csstype").Property.Float | undefined;
|
|
147
|
-
fontFamily
|
|
147
|
+
fontFamily: import("csstype").Property.FontFamily | undefined;
|
|
148
148
|
fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
|
|
149
149
|
fontKerning?: import("csstype").Property.FontKerning | undefined;
|
|
150
150
|
fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
|
|
@@ -47,7 +47,7 @@ export const StyledToggle = styled(Switch, {
|
|
|
47
47
|
},
|
|
48
48
|
'& .MuiSwitch-switchBase.Mui-checked + .MuiSwitch-track': {
|
|
49
49
|
opacity: 1,
|
|
50
|
-
backgroundColor: toggleColor || theme.palette.lunitTeal[
|
|
50
|
+
backgroundColor: toggleColor || theme.palette.lunitTeal[70],
|
|
51
51
|
},
|
|
52
52
|
'& .MuiSwitch-switchBase.Mui-disabled + .MuiSwitch-track': {
|
|
53
53
|
opacity: 1,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lunit/oui",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.20",
|
|
4
4
|
"validate-branch-name": {
|
|
5
5
|
"pattern": "^(main|develop)|(feature|fix|release|hotfix|qe)/.+$",
|
|
6
6
|
"errorMsg": "The branch name is not correct. Please check the pattern. (ex. feature/add-something)"
|