yootd 0.0.42 → 0.0.44
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/teacher/index.js +1 -1
- package/dist/teacher/types/types.d.ts +33 -31
- package/package.json +101 -101
package/dist/teacher/index.js
CHANGED
@@ -48,7 +48,7 @@ export var Teacher = function Teacher(_ref) {
|
|
48
48
|
value: item.userId
|
49
49
|
};
|
50
50
|
});
|
51
|
-
}, [teacherData]);
|
51
|
+
}, [teacherData, label, connectors]);
|
52
52
|
return /*#__PURE__*/React.createElement(Select, _extends({
|
53
53
|
options: allTeacherOptions,
|
54
54
|
placeholder: placeholder,
|
@@ -1,31 +1,33 @@
|
|
1
|
-
import { SelectProps } from 'yootd';
|
2
|
-
|
3
|
-
export interface PageData<T> {
|
4
|
-
content: T[];
|
5
|
-
page: {
|
6
|
-
number: number;
|
7
|
-
size: number;
|
8
|
-
totalElements: number;
|
9
|
-
totalPages: number;
|
10
|
-
};
|
11
|
-
}
|
12
|
-
// 查询老师返回的数据类型
|
13
|
-
export interface IteacherItem {
|
14
|
-
[key: string]: string | number;
|
15
|
-
userId: number; // 老师ID
|
16
|
-
personalName: string; // 老师姓名
|
17
|
-
personalMobile?: string; // 手机号
|
18
|
-
uniqueNumber?: string; // 工号
|
19
|
-
nationName?: string; // 民族
|
20
|
-
gender?: number; // 性别
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
| '
|
25
|
-
| '
|
26
|
-
| '
|
27
|
-
| '
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
1
|
+
import { SelectProps } from 'yootd';
|
2
|
+
|
3
|
+
export interface PageData<T> {
|
4
|
+
content: T[];
|
5
|
+
page: {
|
6
|
+
number: number;
|
7
|
+
size: number;
|
8
|
+
totalElements: number;
|
9
|
+
totalPages: number;
|
10
|
+
};
|
11
|
+
}
|
12
|
+
// 查询老师返回的数据类型
|
13
|
+
export interface IteacherItem {
|
14
|
+
[key: string]: string | number;
|
15
|
+
userId: number; // 老师ID
|
16
|
+
personalName: string; // 老师姓名
|
17
|
+
personalMobile?: string; // 手机号
|
18
|
+
uniqueNumber?: string; // 工号
|
19
|
+
nationName?: string; // 民族
|
20
|
+
gender?: number; // 性别
|
21
|
+
personalEmail?: string; // 邮箱
|
22
|
+
}
|
23
|
+
type LabelOptions =
|
24
|
+
| 'personalName'
|
25
|
+
| 'uniqueNumber'
|
26
|
+
| 'personalMobile'
|
27
|
+
| 'nationName'
|
28
|
+
| 'genderName'
|
29
|
+
| 'personalEmail';
|
30
|
+
export type TeacherProps = SelectProps & {
|
31
|
+
label?: LabelOptions[];
|
32
|
+
connectors?: string;
|
33
|
+
};
|
package/package.json
CHANGED
@@ -1,101 +1,101 @@
|
|
1
|
-
{
|
2
|
-
"name": "yootd",
|
3
|
-
"version": "0.0.
|
4
|
-
"description": "A react library developed with dumi",
|
5
|
-
"license": "MIT",
|
6
|
-
"module": "dist/index.js",
|
7
|
-
"types": "dist/index.d.ts",
|
8
|
-
"files": [
|
9
|
-
"dist"
|
10
|
-
],
|
11
|
-
"scripts": {
|
12
|
-
"build": "father build",
|
13
|
-
"build:watch": "father dev",
|
14
|
-
"dev": "dumi dev",
|
15
|
-
"docs:build": "dumi build",
|
16
|
-
"docs:preview": "dumi preview",
|
17
|
-
"doctor": "father doctor",
|
18
|
-
"lint": "npm run lint:es && npm run lint:css",
|
19
|
-
"lint:css": "stylelint \"{src,test}/**/*.{css,less}\"",
|
20
|
-
"lint:es": "eslint \"{src,test}/**/*.{js,jsx,ts,tsx}\"",
|
21
|
-
"prepare": "husky install && dumi setup",
|
22
|
-
"prepublishOnly": "father doctor && npm run build",
|
23
|
-
"start": "npm run dev"
|
24
|
-
},
|
25
|
-
"commitlint": {
|
26
|
-
"extends": [
|
27
|
-
"@commitlint/config-conventional"
|
28
|
-
]
|
29
|
-
},
|
30
|
-
"lint-staged": {
|
31
|
-
"*.{md,json}": [
|
32
|
-
"prettier --write --no-error-on-unmatched-pattern"
|
33
|
-
],
|
34
|
-
"*.{css,less}": [
|
35
|
-
"stylelint --fix",
|
36
|
-
"prettier --write"
|
37
|
-
],
|
38
|
-
"*.{js,jsx}": [
|
39
|
-
"eslint --fix",
|
40
|
-
"prettier --write"
|
41
|
-
],
|
42
|
-
"*.{ts,tsx}": [
|
43
|
-
"eslint --fix",
|
44
|
-
"prettier --parser=typescript --write"
|
45
|
-
]
|
46
|
-
},
|
47
|
-
"devDependencies": {
|
48
|
-
"@commitlint/cli": "^17.1.2",
|
49
|
-
"@commitlint/config-conventional": "^17.1.0",
|
50
|
-
"@dnd-kit/core": "^6.1.0",
|
51
|
-
"@dnd-kit/modifiers": "^7.0.0",
|
52
|
-
"@dnd-kit/sortable": "^8.0.0",
|
53
|
-
"@dnd-kit/utilities": "^3.2.2",
|
54
|
-
"@tanstack/react-query": "^5.59.15",
|
55
|
-
"@types/lodash": "^4.17.12",
|
56
|
-
"@types/react": "^18.0.0",
|
57
|
-
"@types/react-dom": "^18.0.0",
|
58
|
-
"@umijs/lint": "^4.0.0",
|
59
|
-
"@vladmandic/face-api": "^1.7.14",
|
60
|
-
"antd": "^5.21.4",
|
61
|
-
"axios": "^1.7.7",
|
62
|
-
"dayjs": "^1.11.13",
|
63
|
-
"dumi": "^2.3.0",
|
64
|
-
"dumi-theme-antd": "^0.4.2",
|
65
|
-
"eslint": "^8.23.0",
|
66
|
-
"father": "^4.1.0",
|
67
|
-
"husky": "^8.0.1",
|
68
|
-
"lint-staged": "^13.0.3",
|
69
|
-
"lodash": "^4.17.21",
|
70
|
-
"nanoid": "^5.0.8",
|
71
|
-
"prettier": "^2.7.1",
|
72
|
-
"prettier-plugin-organize-imports": "^3.0.0",
|
73
|
-
"prettier-plugin-packagejson": "^2.2.18",
|
74
|
-
"react": "^18.0.0",
|
75
|
-
"react-dom": "^18.0.0",
|
76
|
-
"sass": "^1.80.0",
|
77
|
-
"stylelint": "^14.9.1",
|
78
|
-
"yootd-webrtc-sdk": "^1.0.1"
|
79
|
-
},
|
80
|
-
"peerDependencies": {
|
81
|
-
"@dnd-kit/core": ">=6.1.0",
|
82
|
-
"@dnd-kit/modifiers": ">=7.0.0",
|
83
|
-
"@dnd-kit/sortable": ">=8.0.0",
|
84
|
-
"@dnd-kit/utilities": ">=3.2.2",
|
85
|
-
"@tanstack/react-query": ">=5.59.15",
|
86
|
-
"@vladmandic/face-api": "^1.7.14",
|
87
|
-
"@xyflow/react": ">=12.3.3",
|
88
|
-
"antd": ">=5.21.4",
|
89
|
-
"axios": ">=1.7.7",
|
90
|
-
"dayjs": ">=1.11.13",
|
91
|
-
"lodash": ">=4.17.21",
|
92
|
-
"nanoid": ">=5.0.8",
|
93
|
-
"react": ">=16.9.0",
|
94
|
-
"react-dom": ">=16.9.0",
|
95
|
-
"yootd-webrtc-sdk": "^1.0.1"
|
96
|
-
},
|
97
|
-
"publishConfig": {
|
98
|
-
"access": "public"
|
99
|
-
},
|
100
|
-
"authors": []
|
101
|
-
}
|
1
|
+
{
|
2
|
+
"name": "yootd",
|
3
|
+
"version": "0.0.44",
|
4
|
+
"description": "A react library developed with dumi",
|
5
|
+
"license": "MIT",
|
6
|
+
"module": "dist/index.js",
|
7
|
+
"types": "dist/index.d.ts",
|
8
|
+
"files": [
|
9
|
+
"dist"
|
10
|
+
],
|
11
|
+
"scripts": {
|
12
|
+
"build": "father build",
|
13
|
+
"build:watch": "father dev",
|
14
|
+
"dev": "dumi dev",
|
15
|
+
"docs:build": "dumi build",
|
16
|
+
"docs:preview": "dumi preview",
|
17
|
+
"doctor": "father doctor",
|
18
|
+
"lint": "npm run lint:es && npm run lint:css",
|
19
|
+
"lint:css": "stylelint \"{src,test}/**/*.{css,less}\"",
|
20
|
+
"lint:es": "eslint \"{src,test}/**/*.{js,jsx,ts,tsx}\"",
|
21
|
+
"prepare": "husky install && dumi setup",
|
22
|
+
"prepublishOnly": "father doctor && npm run build",
|
23
|
+
"start": "npm run dev"
|
24
|
+
},
|
25
|
+
"commitlint": {
|
26
|
+
"extends": [
|
27
|
+
"@commitlint/config-conventional"
|
28
|
+
]
|
29
|
+
},
|
30
|
+
"lint-staged": {
|
31
|
+
"*.{md,json}": [
|
32
|
+
"prettier --write --no-error-on-unmatched-pattern"
|
33
|
+
],
|
34
|
+
"*.{css,less}": [
|
35
|
+
"stylelint --fix",
|
36
|
+
"prettier --write"
|
37
|
+
],
|
38
|
+
"*.{js,jsx}": [
|
39
|
+
"eslint --fix",
|
40
|
+
"prettier --write"
|
41
|
+
],
|
42
|
+
"*.{ts,tsx}": [
|
43
|
+
"eslint --fix",
|
44
|
+
"prettier --parser=typescript --write"
|
45
|
+
]
|
46
|
+
},
|
47
|
+
"devDependencies": {
|
48
|
+
"@commitlint/cli": "^17.1.2",
|
49
|
+
"@commitlint/config-conventional": "^17.1.0",
|
50
|
+
"@dnd-kit/core": "^6.1.0",
|
51
|
+
"@dnd-kit/modifiers": "^7.0.0",
|
52
|
+
"@dnd-kit/sortable": "^8.0.0",
|
53
|
+
"@dnd-kit/utilities": "^3.2.2",
|
54
|
+
"@tanstack/react-query": "^5.59.15",
|
55
|
+
"@types/lodash": "^4.17.12",
|
56
|
+
"@types/react": "^18.0.0",
|
57
|
+
"@types/react-dom": "^18.0.0",
|
58
|
+
"@umijs/lint": "^4.0.0",
|
59
|
+
"@vladmandic/face-api": "^1.7.14",
|
60
|
+
"antd": "^5.21.4",
|
61
|
+
"axios": "^1.7.7",
|
62
|
+
"dayjs": "^1.11.13",
|
63
|
+
"dumi": "^2.3.0",
|
64
|
+
"dumi-theme-antd": "^0.4.2",
|
65
|
+
"eslint": "^8.23.0",
|
66
|
+
"father": "^4.1.0",
|
67
|
+
"husky": "^8.0.1",
|
68
|
+
"lint-staged": "^13.0.3",
|
69
|
+
"lodash": "^4.17.21",
|
70
|
+
"nanoid": "^5.0.8",
|
71
|
+
"prettier": "^2.7.1",
|
72
|
+
"prettier-plugin-organize-imports": "^3.0.0",
|
73
|
+
"prettier-plugin-packagejson": "^2.2.18",
|
74
|
+
"react": "^18.0.0",
|
75
|
+
"react-dom": "^18.0.0",
|
76
|
+
"sass": "^1.80.0",
|
77
|
+
"stylelint": "^14.9.1",
|
78
|
+
"yootd-webrtc-sdk": "^1.0.1"
|
79
|
+
},
|
80
|
+
"peerDependencies": {
|
81
|
+
"@dnd-kit/core": ">=6.1.0",
|
82
|
+
"@dnd-kit/modifiers": ">=7.0.0",
|
83
|
+
"@dnd-kit/sortable": ">=8.0.0",
|
84
|
+
"@dnd-kit/utilities": ">=3.2.2",
|
85
|
+
"@tanstack/react-query": ">=5.59.15",
|
86
|
+
"@vladmandic/face-api": "^1.7.14",
|
87
|
+
"@xyflow/react": ">=12.3.3",
|
88
|
+
"antd": ">=5.21.4",
|
89
|
+
"axios": ">=1.7.7",
|
90
|
+
"dayjs": ">=1.11.13",
|
91
|
+
"lodash": ">=4.17.21",
|
92
|
+
"nanoid": ">=5.0.8",
|
93
|
+
"react": ">=16.9.0",
|
94
|
+
"react-dom": ">=16.9.0",
|
95
|
+
"yootd-webrtc-sdk": "^1.0.1"
|
96
|
+
},
|
97
|
+
"publishConfig": {
|
98
|
+
"access": "public"
|
99
|
+
},
|
100
|
+
"authors": []
|
101
|
+
}
|