odaptos_design_system 1.4.76 → 1.4.78
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/Radio/Radio.d.ts +1 -1
- package/dist/RatingScale/RatingScale.d.ts +22 -0
- package/dist/Search/Search.d.ts +3 -2
- package/dist/odaptos_design_system.cjs.development.js +4 -2
- package/dist/odaptos_design_system.cjs.development.js.map +1 -1
- package/dist/odaptos_design_system.cjs.production.min.js +1 -1
- package/dist/odaptos_design_system.cjs.production.min.js.map +1 -1
- package/dist/odaptos_design_system.esm.js +4 -2
- package/dist/odaptos_design_system.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/Radio/Radio.tsx +1 -1
- package/src/RatingScale/RatingScale.module.scss +19 -0
- package/src/RatingScale/RatingScale.tsx +87 -0
- package/src/Search/Search.tsx +9 -2
|
@@ -8696,7 +8696,8 @@ const TextInput = props => {
|
|
|
8696
8696
|
const Search = ({
|
|
8697
8697
|
searchInput,
|
|
8698
8698
|
onChange,
|
|
8699
|
-
placeholder
|
|
8699
|
+
placeholder,
|
|
8700
|
+
id
|
|
8700
8701
|
}) => {
|
|
8701
8702
|
return /*#__PURE__*/React.createElement(TextInput, {
|
|
8702
8703
|
value: searchInput,
|
|
@@ -8709,7 +8710,8 @@ const Search = ({
|
|
|
8709
8710
|
width: '1rem'
|
|
8710
8711
|
}
|
|
8711
8712
|
}),
|
|
8712
|
-
onChange: onChange
|
|
8713
|
+
onChange: onChange,
|
|
8714
|
+
id: id
|
|
8713
8715
|
});
|
|
8714
8716
|
};
|
|
8715
8717
|
|