mario-education 2.4.573-feedback → 2.4.574-feedback

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.
@@ -0,0 +1,8 @@
1
+ import { FC } from "react";
2
+ interface Props {
3
+ onChange: (e: any) => void;
4
+ value?: string;
5
+ roles: string[];
6
+ }
7
+ declare const RosterUserSelector: FC<Props>;
8
+ export default RosterUserSelector;
@@ -0,0 +1,8 @@
1
+ import { Option } from "../types/types";
2
+ declare const useRosterUserSelector: (roles: string[], value?: string | undefined) => {
3
+ users: Option[];
4
+ isLoading: boolean;
5
+ user: Option | undefined;
6
+ handleInputChange: (value: string) => void;
7
+ };
8
+ export default useRosterUserSelector;
package/dist/index.css CHANGED
@@ -5119,6 +5119,16 @@ p._1YLGi {
5119
5119
  ._3YPC1:hover {
5120
5120
  background: #EFF3FC; }
5121
5121
 
5122
+ ._1eQ6W {
5123
+ background: #ffffff;
5124
+ border-radius: 12px; }
5125
+ ._1eQ6W input {
5126
+ color: #000000; }
5127
+ @media (max-width: 767px) {
5128
+ ._1eQ6W {
5129
+ width: 100%;
5130
+ min-width: auto; } }
5131
+
5122
5132
  ._1Jgr2 {
5123
5133
  padding: 16px;
5124
5134
  min-height: 530px;