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.
- package/dist/components/selector/RosterUserSelector.d.ts +8 -0
- package/dist/hooks/useRosterUserSelector.d.ts +8 -0
- package/dist/index.css +10 -0
- package/dist/index.js +1088 -877
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +1070 -859
- package/dist/index.modern.js.map +1 -1
- package/dist/services/userService.d.ts +3 -0
- package/dist/types/types.d.ts +15 -0
- package/package.json +1 -1
|
@@ -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;
|