@hellobetterdigitalnz/betterui 0.0.3-278 → 0.0.3-279

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.
Files changed (26) hide show
  1. package/dist/Components/Form/RichTextEditor/RichTextEditorProps.d.ts +1 -0
  2. package/dist/index.cjs.js +7 -7
  3. package/dist/index.cjs.js.map +1 -1
  4. package/dist/index.es.js +419 -418
  5. package/dist/index.es.js.map +1 -1
  6. package/package.json +1 -1
  7. package/src/Components/DataDisplay/Calendar/Views/DayView/DayView.tsx +304 -304
  8. package/src/Components/Form/Button/Button.mdx +15 -15
  9. package/src/Components/Form/MultiSelectField/MultiSelectField.tsx +404 -404
  10. package/src/Components/Form/RichTextEditor/RichTextEditor.stories.ts +7 -8
  11. package/src/Components/Form/RichTextEditor/RichTextEditor.tsx +3 -1
  12. package/src/Components/Form/RichTextEditor/RichTextEditorProps.tsx +1 -0
  13. package/src/Components/Icons/Communication/ChatCircleText/ChatCircleText.tsx +87 -87
  14. package/src/Components/Icons/Design/GearFine/GearFine.tsx +105 -105
  15. package/src/Components/Icons/Education/GraduationCap/GraduationCap.tsx +105 -105
  16. package/src/Components/Icons/Media/Microphone/Microphone.tsx +94 -94
  17. package/src/Components/Icons/Media/VideoCamera/VideoCamera.tsx +105 -105
  18. package/src/Components/Icons/People/Users/Users.tsx +107 -107
  19. package/src/Components/Icons/SecurityAndWarnings/ShieldCheck/ShieldCheck.tsx +89 -89
  20. package/src/Components/Icons/SystemAndDevice/CloudCheck/CloudCheck.tsx +74 -74
  21. package/src/Components/Icons/SystemAndDevice/Desktop/Desktop.tsx +107 -107
  22. package/src/Components/Icons/SystemAndDevice/DeviceMobile/DeviceMobile.tsx +78 -78
  23. package/src/Components/Icons/SystemAndDevice/DotsSix/DotsSix.tsx +107 -107
  24. package/src/Components/Icons/Time/ClockCounterClockwise/ClockCounterClockwise.tsx +74 -74
  25. package/src/Components/Icons/WeatherAndNature/Plant/Plant.tsx +105 -105
  26. package/src/Components/Layout/ProfileAvatar/ProfileAvatar.tsx +34 -34
@@ -14,6 +14,7 @@ interface RichTextEditorProps {
14
14
  ariaDescribedby?: string;
15
15
  rows?: number;
16
16
  displayChars?: boolean;
17
+ uploader?: boolean;
17
18
  onClick?: (e: any) => void;
18
19
  onChange?: (value: string) => void;
19
20
  onFocus?: (e: any) => void;