px-react-ui-components 1.0.7 → 1.0.9
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/MyAlert/MyAlert.css +112 -112
- package/dist/components/MyContainer/MyContainer.module.css +109 -109
- package/dist/components/MyEditor/MyEditor.scss +276 -276
- package/dist/components/MyFileUpload/MyFileUpload.module.css +86 -86
- package/dist/components/MyInput/MyInput.module.css +420 -420
- package/dist/components/MyMenu/MyMenu.module.css +101 -101
- package/dist/components/MyModal/MyModal.css +83 -83
- package/dist/components/MyNotFound/MyNotFound.css +21 -21
- package/dist/components/MyTable/MyTable.module.css +350 -350
- package/dist/components/MyTabs/MyTabs.css +105 -105
- package/dist/components/MyWaiting/MyWaiting.css +27 -27
- package/package.json +57 -56
|
@@ -1,86 +1,86 @@
|
|
|
1
|
-
.myFileUploadContainer {
|
|
2
|
-
display: flex;
|
|
3
|
-
width: 100%;
|
|
4
|
-
flex-direction: row;
|
|
5
|
-
gap: 5px;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
.myFileUploadContainer .myFileUploadContainerItem {
|
|
9
|
-
width: 100%;
|
|
10
|
-
padding: 5px;
|
|
11
|
-
background-color: #f0f0f0;
|
|
12
|
-
border-radius: 5px;
|
|
13
|
-
border: 1px dashed #ccc;
|
|
14
|
-
display: flex;
|
|
15
|
-
flex-direction: row;
|
|
16
|
-
justify-content: center;
|
|
17
|
-
align-items: center;
|
|
18
|
-
gap: 3px;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
.myFileUploadContainer
|
|
22
|
-
.myFileUploadContainerItem
|
|
23
|
-
.myFileUploadContainerItemIcon {
|
|
24
|
-
display: flex;
|
|
25
|
-
width: 100%;
|
|
26
|
-
|
|
27
|
-
flex-direction: row;
|
|
28
|
-
justify-content: center;
|
|
29
|
-
align-items: center;
|
|
30
|
-
gap: 1px;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
.myFileUploadContainer
|
|
34
|
-
.myFileUploadContainerItem
|
|
35
|
-
.myFileUploadContainerItemIcon
|
|
36
|
-
.Icon {
|
|
37
|
-
font-size: 35px;
|
|
38
|
-
color: #17305b;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
.myFileUploadContainer
|
|
42
|
-
.myFileUploadContainerItem
|
|
43
|
-
.myFileUploadContainerItemIcon
|
|
44
|
-
.myFileUploadContainerItemIconText {
|
|
45
|
-
width: 100%;
|
|
46
|
-
|
|
47
|
-
text-align: center;
|
|
48
|
-
font-weight: normal;
|
|
49
|
-
color: #636363;
|
|
50
|
-
font-size: 12px;
|
|
51
|
-
line-height: 1.3;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
.myFileUploadContainer
|
|
55
|
-
.myFileUploadContainerItem
|
|
56
|
-
.myFileUploadContainerItemFile {
|
|
57
|
-
display: flex;
|
|
58
|
-
flex-direction: row;
|
|
59
|
-
justify-content: center;
|
|
60
|
-
align-items: center;
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
.myFileUploadContainer
|
|
64
|
-
.myFileUploadContainerItem
|
|
65
|
-
.myFileUploadContainerItemFile
|
|
66
|
-
.myFileUploadButton {
|
|
67
|
-
display: flex;
|
|
68
|
-
width: 200px;
|
|
69
|
-
height: 35px;
|
|
70
|
-
flex-direction: column;
|
|
71
|
-
align-items: center;
|
|
72
|
-
justify-content: center;
|
|
73
|
-
gap: 10px;
|
|
74
|
-
flex-shrink: 0;
|
|
75
|
-
background-color: #334f7f;
|
|
76
|
-
color: #fff;
|
|
77
|
-
border-radius: 15px;
|
|
78
|
-
cursor: pointer;
|
|
79
|
-
font-size: 13px;
|
|
80
|
-
}
|
|
81
|
-
.myFileUploadContainer
|
|
82
|
-
.myFileUploadContainerItem
|
|
83
|
-
.myFileUploadContainerItemFile
|
|
84
|
-
.myFileUploadButton:hover {
|
|
85
|
-
background-color: #2a436a;
|
|
86
|
-
}
|
|
1
|
+
.myFileUploadContainer {
|
|
2
|
+
display: flex;
|
|
3
|
+
width: 100%;
|
|
4
|
+
flex-direction: row;
|
|
5
|
+
gap: 5px;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.myFileUploadContainer .myFileUploadContainerItem {
|
|
9
|
+
width: 100%;
|
|
10
|
+
padding: 5px;
|
|
11
|
+
background-color: #f0f0f0;
|
|
12
|
+
border-radius: 5px;
|
|
13
|
+
border: 1px dashed #ccc;
|
|
14
|
+
display: flex;
|
|
15
|
+
flex-direction: row;
|
|
16
|
+
justify-content: center;
|
|
17
|
+
align-items: center;
|
|
18
|
+
gap: 3px;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.myFileUploadContainer
|
|
22
|
+
.myFileUploadContainerItem
|
|
23
|
+
.myFileUploadContainerItemIcon {
|
|
24
|
+
display: flex;
|
|
25
|
+
width: 100%;
|
|
26
|
+
|
|
27
|
+
flex-direction: row;
|
|
28
|
+
justify-content: center;
|
|
29
|
+
align-items: center;
|
|
30
|
+
gap: 1px;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.myFileUploadContainer
|
|
34
|
+
.myFileUploadContainerItem
|
|
35
|
+
.myFileUploadContainerItemIcon
|
|
36
|
+
.Icon {
|
|
37
|
+
font-size: 35px;
|
|
38
|
+
color: #17305b;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.myFileUploadContainer
|
|
42
|
+
.myFileUploadContainerItem
|
|
43
|
+
.myFileUploadContainerItemIcon
|
|
44
|
+
.myFileUploadContainerItemIconText {
|
|
45
|
+
width: 100%;
|
|
46
|
+
|
|
47
|
+
text-align: center;
|
|
48
|
+
font-weight: normal;
|
|
49
|
+
color: #636363;
|
|
50
|
+
font-size: 12px;
|
|
51
|
+
line-height: 1.3;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.myFileUploadContainer
|
|
55
|
+
.myFileUploadContainerItem
|
|
56
|
+
.myFileUploadContainerItemFile {
|
|
57
|
+
display: flex;
|
|
58
|
+
flex-direction: row;
|
|
59
|
+
justify-content: center;
|
|
60
|
+
align-items: center;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.myFileUploadContainer
|
|
64
|
+
.myFileUploadContainerItem
|
|
65
|
+
.myFileUploadContainerItemFile
|
|
66
|
+
.myFileUploadButton {
|
|
67
|
+
display: flex;
|
|
68
|
+
width: 200px;
|
|
69
|
+
height: 35px;
|
|
70
|
+
flex-direction: column;
|
|
71
|
+
align-items: center;
|
|
72
|
+
justify-content: center;
|
|
73
|
+
gap: 10px;
|
|
74
|
+
flex-shrink: 0;
|
|
75
|
+
background-color: #334f7f;
|
|
76
|
+
color: #fff;
|
|
77
|
+
border-radius: 15px;
|
|
78
|
+
cursor: pointer;
|
|
79
|
+
font-size: 13px;
|
|
80
|
+
}
|
|
81
|
+
.myFileUploadContainer
|
|
82
|
+
.myFileUploadContainerItem
|
|
83
|
+
.myFileUploadContainerItemFile
|
|
84
|
+
.myFileUploadButton:hover {
|
|
85
|
+
background-color: #2a436a;
|
|
86
|
+
}
|