yootd 0.2.45 → 0.2.46

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 (67) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +43 -43
  3. package/dist/anchor/index.scss +23 -23
  4. package/dist/approval-process/index.scss +95 -95
  5. package/dist/areas/index.scss +21 -21
  6. package/dist/areas/types/types.d.ts +41 -41
  7. package/dist/areas-treeSelect/index.scss +6 -6
  8. package/dist/areas-treeSelect/types/type.d.ts +40 -40
  9. package/dist/aside/components/SortableItem.scss +289 -289
  10. package/dist/aside/index.scss +44 -44
  11. package/dist/aside/types/types.d.ts +82 -82
  12. package/dist/badge/index.scss +5 -5
  13. package/dist/buildings/types/types.d.ts +21 -21
  14. package/dist/button/index.scss +30 -30
  15. package/dist/cascader/index.scss +5 -5
  16. package/dist/courses/types/types.d.ts +18 -18
  17. package/dist/department/index.scss +6 -6
  18. package/dist/department/types/types.d.ts +23 -23
  19. package/dist/description/index.scss +10 -10
  20. package/dist/dictionary/types/types.d.ts +14 -14
  21. package/dist/drawer-modal/index.scss +42 -42
  22. package/dist/drawer-modal/types/types.d.ts +3 -3
  23. package/dist/dropdown/assets/arrow-down.svg +5 -5
  24. package/dist/dropdown-select/index.scss +6 -6
  25. package/dist/dropdown-select/types/type.d.ts +18 -18
  26. package/dist/empty/index.scss +15 -15
  27. package/dist/export/index.scss +6 -6
  28. package/dist/go-back/components/index.scss +5 -5
  29. package/dist/go-back/index.scss +33 -33
  30. package/dist/group-title/index.scss +31 -31
  31. package/dist/holiday/types/types.d.ts +22 -22
  32. package/dist/hooks/useBem.js +10 -10
  33. package/dist/image/index.scss +26 -26
  34. package/dist/input/index.scss +5 -5
  35. package/dist/job-title/types/types.d.ts +17 -17
  36. package/dist/modal/index.d.ts +1 -1
  37. package/dist/modal/index.scss +81 -81
  38. package/dist/pagination/index.scss +47 -47
  39. package/dist/preview/components/preview/phone.scss +7 -7
  40. package/dist/preview/components/reactflow/Controls.d.ts +1 -1
  41. package/dist/preview/components/reactflow/TopPreview.d.ts +1 -1
  42. package/dist/preview/index.scss +35 -35
  43. package/dist/preview/types/type.d.ts +22 -22
  44. package/dist/role/types/types.d.ts +22 -22
  45. package/dist/school/index.scss +21 -21
  46. package/dist/school/types/types.d.ts +85 -85
  47. package/dist/state/index.scss +89 -89
  48. package/dist/steps/index.scss +32 -32
  49. package/dist/student-dropdown/types/types.d.ts +44 -44
  50. package/dist/table/components/primary-header-row/index.scss +67 -67
  51. package/dist/table/components/primary-tbody-row/index.scss +5 -5
  52. package/dist/table/index.scss +58 -58
  53. package/dist/tabs/index.scss +86 -86
  54. package/dist/tag/index.scss +4 -4
  55. package/dist/teacher/types/types.d.ts +33 -33
  56. package/dist/tree/index.scss +34 -34
  57. package/dist/upload/index.scss +115 -115
  58. package/dist/user-dropdown/types/types.d.ts +45 -45
  59. package/dist/video-player/index.js +7 -7
  60. package/dist/video-player/index.scss +339 -339
  61. package/dist/with-search-form/index.scss +11 -11
  62. package/dist/with-search-form/types/type.d.ts +3 -3
  63. package/dist/year-term/index.scss +21 -21
  64. package/dist/year-term/types/types.d.ts +39 -39
  65. package/dist/zones/index.scss +21 -21
  66. package/dist/zones/types/types.d.ts +26 -26
  67. package/package.json +93 -93
@@ -1,82 +1,82 @@
1
- import { React } from 'react';
2
- type IdataItem = {
3
- key: string;
4
- title: string;
5
- extra?: string;
6
- checked?: boolean;
7
- status?: string;
8
- data?: any;
9
- showEditBtn?: boolean;
10
- showDelBtn?: boolean;
11
- children?: Array<{
12
- key: string;
13
- title: string;
14
- extra?: string;
15
- checked?: boolean;
16
- status?: string;
17
- data?: any;
18
- showEditBtn?: boolean;
19
- showDelBtn?: boolean;
20
- }>;
21
- };
22
- export type AsideProps = {
23
- width?: number;
24
- height?: number | string;
25
- style?: React.CSSProperties;
26
- activeKey?: string;
27
- title?: string;
28
- data: IdataItem[];
29
- overflow?: boolean;
30
- titleShow?: boolean;
31
- addBtnIcon?: boolean;
32
- editBtnIcon?: boolean;
33
- delBtnIcon?: boolean;
34
- switchBtnIcon?: boolean;
35
- dragBtnIcon?: boolean;
36
- onClick?: (key: string, e: IdataItem) => void;
37
- onAdd?: () => void;
38
- onEdit?: (key: string, e: IdataItem) => void;
39
- onDel?: (key: string, e: IdataItem) => void;
40
- onSwitch?: (
41
- changeValue: { key: string; checked: boolean },
42
- data: IdataItem[],
43
- ) => void;
44
- onDragEnd?: (data: IdataItem[]) => void;
45
- onScrollBottom?: () => void;
46
- bottomThreshold?: number;
47
- isSubNode?: boolean;
48
- onSubClick?: (key: string, subKey: string, e: IdataItem) => void;
49
- customBtn?: React.ReactNode;
50
- };
51
- export type AsideItemProps = {
52
- activeKey: string;
53
- id: string;
54
- title: string;
55
- editBtnIcon?: boolean;
56
- delBtnIcon?: boolean;
57
- switchBtnIcon?: boolean;
58
- dragBtnIcon?: boolean;
59
- checked?: boolean;
60
- extra?: string;
61
- status?: string;
62
- data?: any;
63
- showEditBtn?: boolean;
64
- showDelBtn?: boolean;
65
- onClick?: (key: string | undefined, e: IdataItem) => void;
66
- onEdit?: (key: string, e: IdataItem) => void;
67
- onDel?: (key: string, e: IdataItem) => void;
68
- onSwitch?: (key: string, e: boolean) => void;
69
- subId?: string;
70
- isSubNode?: boolean;
71
- subNode?: Array<{
72
- key: string;
73
- title: string;
74
- extra?: string;
75
- checked?: boolean;
76
- status?: string;
77
- data?: any;
78
- showEditBtn?: boolean;
79
- showDelBtn?: boolean;
80
- }>;
81
- onSubClick?: (key, subKey: string | undefined, e: IdataItem) => void;
82
- };
1
+ import { React } from 'react';
2
+ type IdataItem = {
3
+ key: string;
4
+ title: string;
5
+ extra?: string;
6
+ checked?: boolean;
7
+ status?: string;
8
+ data?: any;
9
+ showEditBtn?: boolean;
10
+ showDelBtn?: boolean;
11
+ children?: Array<{
12
+ key: string;
13
+ title: string;
14
+ extra?: string;
15
+ checked?: boolean;
16
+ status?: string;
17
+ data?: any;
18
+ showEditBtn?: boolean;
19
+ showDelBtn?: boolean;
20
+ }>;
21
+ };
22
+ export type AsideProps = {
23
+ width?: number;
24
+ height?: number | string;
25
+ style?: React.CSSProperties;
26
+ activeKey?: string;
27
+ title?: string;
28
+ data: IdataItem[];
29
+ overflow?: boolean;
30
+ titleShow?: boolean;
31
+ addBtnIcon?: boolean;
32
+ editBtnIcon?: boolean;
33
+ delBtnIcon?: boolean;
34
+ switchBtnIcon?: boolean;
35
+ dragBtnIcon?: boolean;
36
+ onClick?: (key: string, e: IdataItem) => void;
37
+ onAdd?: () => void;
38
+ onEdit?: (key: string, e: IdataItem) => void;
39
+ onDel?: (key: string, e: IdataItem) => void;
40
+ onSwitch?: (
41
+ changeValue: { key: string; checked: boolean },
42
+ data: IdataItem[],
43
+ ) => void;
44
+ onDragEnd?: (data: IdataItem[]) => void;
45
+ onScrollBottom?: () => void;
46
+ bottomThreshold?: number;
47
+ isSubNode?: boolean;
48
+ onSubClick?: (key: string, subKey: string, e: IdataItem) => void;
49
+ customBtn?: React.ReactNode;
50
+ };
51
+ export type AsideItemProps = {
52
+ activeKey: string;
53
+ id: string;
54
+ title: string;
55
+ editBtnIcon?: boolean;
56
+ delBtnIcon?: boolean;
57
+ switchBtnIcon?: boolean;
58
+ dragBtnIcon?: boolean;
59
+ checked?: boolean;
60
+ extra?: string;
61
+ status?: string;
62
+ data?: any;
63
+ showEditBtn?: boolean;
64
+ showDelBtn?: boolean;
65
+ onClick?: (key: string | undefined, e: IdataItem) => void;
66
+ onEdit?: (key: string, e: IdataItem) => void;
67
+ onDel?: (key: string, e: IdataItem) => void;
68
+ onSwitch?: (key: string, e: boolean) => void;
69
+ subId?: string;
70
+ isSubNode?: boolean;
71
+ subNode?: Array<{
72
+ key: string;
73
+ title: string;
74
+ extra?: string;
75
+ checked?: boolean;
76
+ status?: string;
77
+ data?: any;
78
+ showEditBtn?: boolean;
79
+ showDelBtn?: boolean;
80
+ }>;
81
+ onSubClick?: (key, subKey: string | undefined, e: IdataItem) => void;
82
+ };
@@ -1,5 +1,5 @@
1
- .yot-badge {
2
- .ant-scroll-number.ant-badge-count {
3
- background-color: var(--ant-color-error);
4
- }
5
- }
1
+ .yot-badge {
2
+ .ant-scroll-number.ant-badge-count {
3
+ background-color: var(--ant-color-error);
4
+ }
5
+ }
@@ -1,21 +1,21 @@
1
- export interface PageData<T> {
2
- content: T[];
3
- page: {
4
- number: number;
5
- size: number;
6
- totalElements: number;
7
- totalPages: number;
8
- };
9
- }
10
- // 查询位置接口返回的数据类型
11
- export interface IareaItem {
12
- areaId: number;
13
- areaLevel: number;
14
- areaName: string;
15
- areaType: number;
16
- }
17
- export interface IBuildingsProps {
18
- showSearch?: boolean;
19
- areaType?: number;
20
- areaSubType?: number;
21
- }
1
+ export interface PageData<T> {
2
+ content: T[];
3
+ page: {
4
+ number: number;
5
+ size: number;
6
+ totalElements: number;
7
+ totalPages: number;
8
+ };
9
+ }
10
+ // 查询位置接口返回的数据类型
11
+ export interface IareaItem {
12
+ areaId: number;
13
+ areaLevel: number;
14
+ areaName: string;
15
+ areaType: number;
16
+ }
17
+ export interface IBuildingsProps {
18
+ showSearch?: boolean;
19
+ areaType?: number;
20
+ areaSubType?: number;
21
+ }
@@ -1,31 +1,31 @@
1
- .yot-button {
2
- &--small {
3
- height: 26px;
4
- padding-left: 16px;
5
- padding-right: 16px;
6
- border-radius: 4px;
7
- font-size: 14px;
8
- }
9
-
10
- &--middle {
11
- height: 32px;
12
- padding-left: 16px;
13
- padding-right: 16px;
14
- border-radius: 4px;
15
- font-size: 14px;
16
- }
17
-
18
- &--large {
19
- height: 40px;
20
- padding-left: 32px;
21
- padding-right: 32px;
22
- border-radius: 8px;
23
- font-size: 16px;
24
- }
25
-
26
- &__link{
27
- padding: 0 !important;
28
- border: 0 !important;
29
- }
30
-
1
+ .yot-button {
2
+ &--small {
3
+ height: 26px;
4
+ padding-left: 16px;
5
+ padding-right: 16px;
6
+ border-radius: 4px;
7
+ font-size: 14px;
8
+ }
9
+
10
+ &--middle {
11
+ height: 32px;
12
+ padding-left: 16px;
13
+ padding-right: 16px;
14
+ border-radius: 4px;
15
+ font-size: 14px;
16
+ }
17
+
18
+ &--large {
19
+ height: 40px;
20
+ padding-left: 32px;
21
+ padding-right: 32px;
22
+ border-radius: 8px;
23
+ font-size: 16px;
24
+ }
25
+
26
+ &__link{
27
+ padding: 0 !important;
28
+ border: 0 !important;
29
+ }
30
+
31
31
  }
@@ -1,5 +1,5 @@
1
- .yot-cascader {
2
- .ant-cascader-menu-item[aria-checked='true'] {
3
- background-color: var(--ant-color-primary-bg);
4
- }
5
- }
1
+ .yot-cascader {
2
+ .ant-cascader-menu-item[aria-checked='true'] {
3
+ background-color: var(--ant-color-primary-bg);
4
+ }
5
+ }
@@ -1,18 +1,18 @@
1
- export interface PageData<T> {
2
- content: T[];
3
- page: {
4
- number: number;
5
- size: number;
6
- totalElements: number;
7
- totalPages: number;
8
- };
9
- }
10
- // 查询课程返回的数据类型
11
- export interface ICourseItem {
12
- courseDefId: number;
13
- courseName: string;
14
- courseNo: string;
15
- }
16
- export interface ICourseProps {
17
- showSearch?: boolean;
18
- }
1
+ export interface PageData<T> {
2
+ content: T[];
3
+ page: {
4
+ number: number;
5
+ size: number;
6
+ totalElements: number;
7
+ totalPages: number;
8
+ };
9
+ }
10
+ // 查询课程返回的数据类型
11
+ export interface ICourseItem {
12
+ courseDefId: number;
13
+ courseName: string;
14
+ courseNo: string;
15
+ }
16
+ export interface ICourseProps {
17
+ showSearch?: boolean;
18
+ }
@@ -1,6 +1,6 @@
1
- .yot-department {
2
- .ant-select-tree-treenode {
3
- margin-bottom: 0 !important;
4
- padding-bottom: calc(var(--ant-padding-xs) / 2) !important;
5
- }
6
- }
1
+ .yot-department {
2
+ .ant-select-tree-treenode {
3
+ margin-bottom: 0 !important;
4
+ padding-bottom: calc(var(--ant-padding-xs) / 2) !important;
5
+ }
6
+ }
@@ -1,23 +1,23 @@
1
- export interface PageData<T> {
2
- content: T[];
3
- page: {
4
- number: number;
5
- size: number;
6
- totalElements: number;
7
- totalPages: number;
8
- };
9
- }
10
- // 查询部门返回的数据类型
11
- export interface IDepartmentItem {
12
- deptId: number; // 部门ID
13
- deptName: string; // 部门名称
14
- deptLevel: number; // 部门级别(1,2,3,4...)
15
- children?: DeptListResponse[]; // 子部门
16
- }
17
- // 树组件填充的数据接口
18
- export interface ITreeData {
19
- title: string;
20
- value: number;
21
- children?: ITreeData[];
22
- }
23
- export type DepartmentProps = TreeSelectProps;
1
+ export interface PageData<T> {
2
+ content: T[];
3
+ page: {
4
+ number: number;
5
+ size: number;
6
+ totalElements: number;
7
+ totalPages: number;
8
+ };
9
+ }
10
+ // 查询部门返回的数据类型
11
+ export interface IDepartmentItem {
12
+ deptId: number; // 部门ID
13
+ deptName: string; // 部门名称
14
+ deptLevel: number; // 部门级别(1,2,3,4...)
15
+ children?: DeptListResponse[]; // 子部门
16
+ }
17
+ // 树组件填充的数据接口
18
+ export interface ITreeData {
19
+ title: string;
20
+ value: number;
21
+ children?: ITreeData[];
22
+ }
23
+ export type DepartmentProps = TreeSelectProps;
@@ -1,10 +1,10 @@
1
- .yot-descriptions{
2
- &-content{
3
- .ant-descriptions-item-label{
4
- color:var(--ant-color-text-secondary);
5
- }
6
- .ant-descriptions-item-content{
7
- color:var(--ant-color-text);
8
- }
9
- }
10
- }
1
+ .yot-descriptions{
2
+ &-content{
3
+ .ant-descriptions-item-label{
4
+ color:var(--ant-color-text-secondary);
5
+ }
6
+ .ant-descriptions-item-content{
7
+ color:var(--ant-color-text);
8
+ }
9
+ }
10
+ }
@@ -1,14 +1,14 @@
1
- export interface PageData<T> {
2
- content: T[];
3
- page: {
4
- number: number;
5
- size: number;
6
- totalElements: number;
7
- totalPages: number;
8
- };
9
- }
10
- export interface dictionaryItem {
11
- dictValue: string; // 字典项编码
12
- dictTitle: string; // 字典项名称
13
- dictTitle2?: string; // 字典项描述
14
- }
1
+ export interface PageData<T> {
2
+ content: T[];
3
+ page: {
4
+ number: number;
5
+ size: number;
6
+ totalElements: number;
7
+ totalPages: number;
8
+ };
9
+ }
10
+ export interface dictionaryItem {
11
+ dictValue: string; // 字典项编码
12
+ dictTitle: string; // 字典项名称
13
+ dictTitle2?: string; // 字典项描述
14
+ }
@@ -1,42 +1,42 @@
1
- .yot-drawer {
2
- .ant-drawer-content-wrapper {
3
- max-width: 66.67vw;
4
- width: 100%;
5
- }
6
- .ant-drawer-header {
7
- background-color: var(--ant-color-bg-layout);
8
- .ant-drawer-header-title {
9
- font-size: 18px;
10
- font-weight: bold;
11
- .ant-drawer-close {
12
- display: none;
13
- }
14
- }
15
- }
16
- .ant-drawer-body {
17
- padding: 0;
18
- }
19
- .ant-drawer-footer {
20
- padding: 0;
21
- }
22
- .ant-drawer-footer & {
23
- padding-left: 24px;
24
- padding-right: 24px;
25
- &-footer {
26
- padding: 8px 16px;
27
- }
28
- &__foot-confirm {
29
- width: 64px;
30
- height: 32px;
31
- }
32
- &__foot-close {
33
- width: 64px;
34
- height: 32px;
35
- background-color: var(--ant-color-bg-layout);
36
- margin-right: 8px;
37
- }
38
- }
39
- &__close {
40
- cursor: pointer;
41
- }
42
- }
1
+ .yot-drawer {
2
+ .ant-drawer-content-wrapper {
3
+ max-width: 66.67vw;
4
+ width: 100%;
5
+ }
6
+ .ant-drawer-header {
7
+ background-color: var(--ant-color-bg-layout);
8
+ .ant-drawer-header-title {
9
+ font-size: 18px;
10
+ font-weight: bold;
11
+ .ant-drawer-close {
12
+ display: none;
13
+ }
14
+ }
15
+ }
16
+ .ant-drawer-body {
17
+ padding: 0;
18
+ }
19
+ .ant-drawer-footer {
20
+ padding: 0;
21
+ }
22
+ .ant-drawer-footer & {
23
+ padding-left: 24px;
24
+ padding-right: 24px;
25
+ &-footer {
26
+ padding: 8px 16px;
27
+ }
28
+ &__foot-confirm {
29
+ width: 64px;
30
+ height: 32px;
31
+ }
32
+ &__foot-close {
33
+ width: 64px;
34
+ height: 32px;
35
+ background-color: var(--ant-color-bg-layout);
36
+ margin-right: 8px;
37
+ }
38
+ }
39
+ &__close {
40
+ cursor: pointer;
41
+ }
42
+ }
@@ -1,3 +1,3 @@
1
- export interface DrawerModalProps {
2
- onConfirm?: () => void;
3
- }
1
+ export interface DrawerModalProps {
2
+ onConfirm?: () => void;
3
+ }
@@ -1,6 +1,6 @@
1
- <svg t="1729587167155" class="icon" viewBox="0 0 1024 1024" version="1.1"
2
- xmlns="http://www.w3.org/2000/svg" p-id="3741" width="20" height="20">
3
- <path
4
- d="M474.282667 690.176L148.053333 363.904l45.226667-45.226667 318.72 318.72 318.72-318.72 45.226667 45.226667-326.229334 326.272a53.333333 53.333333 0 0 1-75.434666 0z"
5
- p-id="3742" fill="#1f1f1f"></path>
1
+ <svg t="1729587167155" class="icon" viewBox="0 0 1024 1024" version="1.1"
2
+ xmlns="http://www.w3.org/2000/svg" p-id="3741" width="20" height="20">
3
+ <path
4
+ d="M474.282667 690.176L148.053333 363.904l45.226667-45.226667 318.72 318.72 318.72-318.72 45.226667 45.226667-326.229334 326.272a53.333333 53.333333 0 0 1-75.434666 0z"
5
+ p-id="3742" fill="#1f1f1f"></path>
6
6
  </svg>
@@ -1,6 +1,6 @@
1
- .yot-dropdownselect {
2
- .ant-dropdown-menu-item.ant-dropdown-menu-item-active{
3
- background-color: #F0F8FF !important;
4
- }
5
- }
6
-
1
+ .yot-dropdownselect {
2
+ .ant-dropdown-menu-item.ant-dropdown-menu-item-active{
3
+ background-color: #F0F8FF !important;
4
+ }
5
+ }
6
+
@@ -1,18 +1,18 @@
1
- export interface DropdownSelectProps {
2
- defaultValue?: string; // 默认选中的key值
3
- items: MenuItemType[]; // 下拉菜单
4
- onChange?: (value: string) => void; // 选中值改变时触发
5
- arrow?: boolean; // 下拉箭头是否显示
6
- overlayClassName?: string; // 下拉菜单的样式
7
- autoAdjustOverflow?: boolean; // 下拉框被遮挡时自动调整位置
8
- autoFocus?: boolean; // 打开后自动聚焦下拉框
9
- disabled?: boolean; // 菜单是否禁用
10
- destroyPopupOnHide?: boolean; // 关闭后是否销毁 Dropdown
11
- dropdownRender?: (menus: ReactNode) => ReactNode; // 自定义下拉菜单
12
- getPopupContainer?: (triggerNode: HTMLElement) => HTMLElement; // 菜单渲染父节点。默认渲染到 body 上,如果你遇到菜单滚动定位问题,试试修改为滚动的区域,并相对其定位
13
- overlayClassName?: string; // 下拉菜单的样式
14
- overlayStyle?: React.CSSProperties; // 下拉菜单的样式
15
- placement?: 'bottomLeft' | 'bottomRight' | 'topLeft' | 'topRight'; // 菜单弹出位置
16
- trigger?: Array<click | hover | contextMenu>; // 触发下拉的行为
17
- open?: boolean; // 菜单是否显示
18
- }
1
+ export interface DropdownSelectProps {
2
+ defaultValue?: string; // 默认选中的key值
3
+ items: MenuItemType[]; // 下拉菜单
4
+ onChange?: (value: string) => void; // 选中值改变时触发
5
+ arrow?: boolean; // 下拉箭头是否显示
6
+ overlayClassName?: string; // 下拉菜单的样式
7
+ autoAdjustOverflow?: boolean; // 下拉框被遮挡时自动调整位置
8
+ autoFocus?: boolean; // 打开后自动聚焦下拉框
9
+ disabled?: boolean; // 菜单是否禁用
10
+ destroyPopupOnHide?: boolean; // 关闭后是否销毁 Dropdown
11
+ dropdownRender?: (menus: ReactNode) => ReactNode; // 自定义下拉菜单
12
+ getPopupContainer?: (triggerNode: HTMLElement) => HTMLElement; // 菜单渲染父节点。默认渲染到 body 上,如果你遇到菜单滚动定位问题,试试修改为滚动的区域,并相对其定位
13
+ overlayClassName?: string; // 下拉菜单的样式
14
+ overlayStyle?: React.CSSProperties; // 下拉菜单的样式
15
+ placement?: 'bottomLeft' | 'bottomRight' | 'topLeft' | 'topRight'; // 菜单弹出位置
16
+ trigger?: Array<click | hover | contextMenu>; // 触发下拉的行为
17
+ open?: boolean; // 菜单是否显示
18
+ }
@@ -1,15 +1,15 @@
1
- .yot-empty {
2
- &-description {
3
- &-content {
4
- &__title {
5
- font-size: 20px;
6
- font-weight: bold;
7
- color: var(--ant-color-text);
8
- }
9
- &__text {
10
- font-size: 14px;
11
- color: var(--ant-color-text-secondary);
12
- }
13
- }
14
- }
15
- }
1
+ .yot-empty {
2
+ &-description {
3
+ &-content {
4
+ &__title {
5
+ font-size: 20px;
6
+ font-weight: bold;
7
+ color: var(--ant-color-text);
8
+ }
9
+ &__text {
10
+ font-size: 14px;
11
+ color: var(--ant-color-text-secondary);
12
+ }
13
+ }
14
+ }
15
+ }
@@ -1,6 +1,6 @@
1
- .yot-export {
2
- .ant-dropdown-menu-item.ant-dropdown-menu-item-active{
3
- background-color: var(--ant-color-primary-bg-hover) !important;
4
- }
5
- }
6
-
1
+ .yot-export {
2
+ .ant-dropdown-menu-item.ant-dropdown-menu-item-active{
3
+ background-color: var(--ant-color-primary-bg-hover) !important;
4
+ }
5
+ }
6
+
@@ -1,5 +1,5 @@
1
- .yot-goback-icon {
2
- rect {
3
- fill: var(--ant-color-primary);
4
- }
5
- }
1
+ .yot-goback-icon {
2
+ rect {
3
+ fill: var(--ant-color-primary);
4
+ }
5
+ }