teachable-design-system 0.3.8 → 0.3.9
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/index.cjs.js +1 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/types/components/Dropdown/Dropdown 2.d.ts +3 -0
- package/dist/types/components/Dropdown/Dropdown 2.d.ts.map +1 -0
- package/package.json +1 -1
- package/src/components/Dropdown/Dropdown 2.tsx +57 -0
- package/src/components/Input/style.ts +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -1135,7 +1135,7 @@ const StyledInput = styled.input `
|
|
|
1135
1135
|
padding: ${(props) => (props.isPassword ? "0px 48px 0px 16px" : "0px 16px")};
|
|
1136
1136
|
font-family: ${typography.fontFamily.primary};
|
|
1137
1137
|
border: 1px solid ${colors$1.input.border};
|
|
1138
|
-
border-radius:
|
|
1138
|
+
border-radius: 8px;
|
|
1139
1139
|
outline: none;
|
|
1140
1140
|
transition: all 0.2s ease;
|
|
1141
1141
|
background-color: ${(props) => props.disabled ? colors$1.input["surface-disabled"] : colors$1.input.surface};
|