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.esm.js
CHANGED
|
@@ -1133,7 +1133,7 @@ const StyledInput = styled.input `
|
|
|
1133
1133
|
padding: ${(props) => (props.isPassword ? "0px 48px 0px 16px" : "0px 16px")};
|
|
1134
1134
|
font-family: ${typography.fontFamily.primary};
|
|
1135
1135
|
border: 1px solid ${colors$1.input.border};
|
|
1136
|
-
border-radius:
|
|
1136
|
+
border-radius: 8px;
|
|
1137
1137
|
outline: none;
|
|
1138
1138
|
transition: all 0.2s ease;
|
|
1139
1139
|
background-color: ${(props) => props.disabled ? colors$1.input["surface-disabled"] : colors$1.input.surface};
|