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,105 +1,105 @@
|
|
|
1
|
-
.my-TabsContainer {
|
|
2
|
-
display: flex;
|
|
3
|
-
width: 100%;
|
|
4
|
-
gap: 0px;
|
|
5
|
-
flex-direction: column;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
.my-TabsTabList {
|
|
9
|
-
display: flex;
|
|
10
|
-
flex-direction: row;
|
|
11
|
-
width: 100%;
|
|
12
|
-
list-style: none;
|
|
13
|
-
padding: 0 0 0 7px;
|
|
14
|
-
margin: 0px;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
.my-TabsTabList li {
|
|
18
|
-
display: flex;
|
|
19
|
-
flex-direction: row;
|
|
20
|
-
padding: 8px 17px;
|
|
21
|
-
min-width: 100px;
|
|
22
|
-
text-align: center;
|
|
23
|
-
background: #f5f5f5;
|
|
24
|
-
margin-right: 1px;
|
|
25
|
-
font-size: 13px;
|
|
26
|
-
border-radius: 8px 8px 0 0;
|
|
27
|
-
gap: 0.5rem;
|
|
28
|
-
justify-content: center;
|
|
29
|
-
align-items: center;
|
|
30
|
-
-webkit-user-select: none; /* Safari */
|
|
31
|
-
-ms-user-select: none; /* IE 10 and IE 11 */
|
|
32
|
-
user-select: none; /* Standard syntax */
|
|
33
|
-
border: 1px solid #dfe3e6;
|
|
34
|
-
border-bottom: none;
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
.my-TabsTabList li .icon {
|
|
38
|
-
font-size: 17px;
|
|
39
|
-
color: #8a9ba4;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
.my-TabsTabList li .badge {
|
|
43
|
-
font-size: 9px;
|
|
44
|
-
color: #39464d;
|
|
45
|
-
background-color: #0000001f;
|
|
46
|
-
border-radius: 5px;
|
|
47
|
-
padding: 1px 5px 1px 5px;
|
|
48
|
-
margin-left: 5px;
|
|
49
|
-
margin-right: -8px;
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
.my-TabsTabList li .title {
|
|
53
|
-
font-size: 13px;
|
|
54
|
-
color: #000;
|
|
55
|
-
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
.my-TabsTabList li .description {
|
|
60
|
-
font-size: 11px;
|
|
61
|
-
color: #8a9ba4;
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
.my-TabsTabList li.active {
|
|
65
|
-
background: #b3d2e6;
|
|
66
|
-
}
|
|
67
|
-
.my-TabsTabList li.active .badge {
|
|
68
|
-
background-color: #2e465685;
|
|
69
|
-
color: #fff;
|
|
70
|
-
}
|
|
71
|
-
.my-TabsTabList li.active .title {
|
|
72
|
-
font-weight: 600;
|
|
73
|
-
}
|
|
74
|
-
.my-TabsTabList li.active .icon {
|
|
75
|
-
color: #000;
|
|
76
|
-
}
|
|
77
|
-
.my-TabsTabList li.active .description {
|
|
78
|
-
color: #435d6e;
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
.my-TabsTabList li:hover {
|
|
82
|
-
cursor: pointer;
|
|
83
|
-
background: #eeeeee;
|
|
84
|
-
}
|
|
85
|
-
.my-TabsTabList li.active:hover {
|
|
86
|
-
background: #c1ddf3;
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
.my-TabsTabBody {
|
|
90
|
-
display: inline-block;
|
|
91
|
-
width: 100%;
|
|
92
|
-
padding: 12px;
|
|
93
|
-
border: 1px solid #d9dee1;
|
|
94
|
-
border-radius: 8px;
|
|
95
|
-
border-top-width: 2px;
|
|
96
|
-
border-top-color: #b3d2e6;
|
|
97
|
-
}
|
|
98
|
-
.my-TabsTabBody .my-TabsTabContainer {
|
|
99
|
-
display: none;
|
|
100
|
-
width: 100%;
|
|
101
|
-
}
|
|
102
|
-
.my-TabsTabBody .my-TabsTabContainer.active {
|
|
103
|
-
display: inline-block;
|
|
104
|
-
width: 100%;
|
|
105
|
-
}
|
|
1
|
+
.my-TabsContainer {
|
|
2
|
+
display: flex;
|
|
3
|
+
width: 100%;
|
|
4
|
+
gap: 0px;
|
|
5
|
+
flex-direction: column;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.my-TabsTabList {
|
|
9
|
+
display: flex;
|
|
10
|
+
flex-direction: row;
|
|
11
|
+
width: 100%;
|
|
12
|
+
list-style: none;
|
|
13
|
+
padding: 0 0 0 7px;
|
|
14
|
+
margin: 0px;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.my-TabsTabList li {
|
|
18
|
+
display: flex;
|
|
19
|
+
flex-direction: row;
|
|
20
|
+
padding: 8px 17px;
|
|
21
|
+
min-width: 100px;
|
|
22
|
+
text-align: center;
|
|
23
|
+
background: #f5f5f5;
|
|
24
|
+
margin-right: 1px;
|
|
25
|
+
font-size: 13px;
|
|
26
|
+
border-radius: 8px 8px 0 0;
|
|
27
|
+
gap: 0.5rem;
|
|
28
|
+
justify-content: center;
|
|
29
|
+
align-items: center;
|
|
30
|
+
-webkit-user-select: none; /* Safari */
|
|
31
|
+
-ms-user-select: none; /* IE 10 and IE 11 */
|
|
32
|
+
user-select: none; /* Standard syntax */
|
|
33
|
+
border: 1px solid #dfe3e6;
|
|
34
|
+
border-bottom: none;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.my-TabsTabList li .icon {
|
|
38
|
+
font-size: 17px;
|
|
39
|
+
color: #8a9ba4;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.my-TabsTabList li .badge {
|
|
43
|
+
font-size: 9px;
|
|
44
|
+
color: #39464d;
|
|
45
|
+
background-color: #0000001f;
|
|
46
|
+
border-radius: 5px;
|
|
47
|
+
padding: 1px 5px 1px 5px;
|
|
48
|
+
margin-left: 5px;
|
|
49
|
+
margin-right: -8px;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.my-TabsTabList li .title {
|
|
53
|
+
font-size: 13px;
|
|
54
|
+
color: #000;
|
|
55
|
+
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
.my-TabsTabList li .description {
|
|
60
|
+
font-size: 11px;
|
|
61
|
+
color: #8a9ba4;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.my-TabsTabList li.active {
|
|
65
|
+
background: #b3d2e6;
|
|
66
|
+
}
|
|
67
|
+
.my-TabsTabList li.active .badge {
|
|
68
|
+
background-color: #2e465685;
|
|
69
|
+
color: #fff;
|
|
70
|
+
}
|
|
71
|
+
.my-TabsTabList li.active .title {
|
|
72
|
+
font-weight: 600;
|
|
73
|
+
}
|
|
74
|
+
.my-TabsTabList li.active .icon {
|
|
75
|
+
color: #000;
|
|
76
|
+
}
|
|
77
|
+
.my-TabsTabList li.active .description {
|
|
78
|
+
color: #435d6e;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.my-TabsTabList li:hover {
|
|
82
|
+
cursor: pointer;
|
|
83
|
+
background: #eeeeee;
|
|
84
|
+
}
|
|
85
|
+
.my-TabsTabList li.active:hover {
|
|
86
|
+
background: #c1ddf3;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.my-TabsTabBody {
|
|
90
|
+
display: inline-block;
|
|
91
|
+
width: 100%;
|
|
92
|
+
padding: 12px;
|
|
93
|
+
border: 1px solid #d9dee1;
|
|
94
|
+
border-radius: 8px;
|
|
95
|
+
border-top-width: 2px;
|
|
96
|
+
border-top-color: #b3d2e6;
|
|
97
|
+
}
|
|
98
|
+
.my-TabsTabBody .my-TabsTabContainer {
|
|
99
|
+
display: none;
|
|
100
|
+
width: 100%;
|
|
101
|
+
}
|
|
102
|
+
.my-TabsTabBody .my-TabsTabContainer.active {
|
|
103
|
+
display: inline-block;
|
|
104
|
+
width: 100%;
|
|
105
|
+
}
|
|
@@ -1,28 +1,28 @@
|
|
|
1
|
-
.my-waiting-backdrop {
|
|
2
|
-
position: fixed;
|
|
3
|
-
top: 0;
|
|
4
|
-
left: 0;
|
|
5
|
-
right: 0;
|
|
6
|
-
bottom: 0;
|
|
7
|
-
background-color: #282c39de;
|
|
8
|
-
display: flex;
|
|
9
|
-
justify-content: center;
|
|
10
|
-
align-items: center;
|
|
11
|
-
z-index: 9999999;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
.my-waiting-content{
|
|
15
|
-
display: block;
|
|
16
|
-
color : #fff;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
.my-waiting-content > div{
|
|
20
|
-
justify-content: center;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
.my-waiting-message{
|
|
25
|
-
display: block;
|
|
26
|
-
padding: 15px 0;
|
|
27
|
-
text-align: center;
|
|
1
|
+
.my-waiting-backdrop {
|
|
2
|
+
position: fixed;
|
|
3
|
+
top: 0;
|
|
4
|
+
left: 0;
|
|
5
|
+
right: 0;
|
|
6
|
+
bottom: 0;
|
|
7
|
+
background-color: #282c39de;
|
|
8
|
+
display: flex;
|
|
9
|
+
justify-content: center;
|
|
10
|
+
align-items: center;
|
|
11
|
+
z-index: 9999999;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.my-waiting-content{
|
|
15
|
+
display: block;
|
|
16
|
+
color : #fff;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.my-waiting-content > div{
|
|
20
|
+
justify-content: center;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
.my-waiting-message{
|
|
25
|
+
display: block;
|
|
26
|
+
padding: 15px 0;
|
|
27
|
+
text-align: center;
|
|
28
28
|
}
|
package/package.json
CHANGED
|
@@ -1,56 +1,57 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "px-react-ui-components",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"main": "dist/index.js",
|
|
5
|
-
"module": "dist/index.js",
|
|
6
|
-
"type": "commonjs",
|
|
7
|
-
"exports": {
|
|
8
|
-
".": "./dist/index.js"
|
|
9
|
-
},
|
|
10
|
-
"files": [
|
|
11
|
-
"dist",
|
|
12
|
-
"dist/components",
|
|
13
|
-
"README.md"
|
|
14
|
-
],
|
|
15
|
-
"scripts": {
|
|
16
|
-
"build": "babel src --out-dir dist --copy-files",
|
|
17
|
-
"prepare": "npm run build"
|
|
18
|
-
},
|
|
19
|
-
"keywords": [
|
|
20
|
-
"react",
|
|
21
|
-
"components",
|
|
22
|
-
"ui",
|
|
23
|
-
"ui-components",
|
|
24
|
-
"library",
|
|
25
|
-
"design system",
|
|
26
|
-
"styled-components",
|
|
27
|
-
"tailwindcss",
|
|
28
|
-
"input",
|
|
29
|
-
"select",
|
|
30
|
-
"datepicker",
|
|
31
|
-
"container",
|
|
32
|
-
"tabs"
|
|
33
|
-
],
|
|
34
|
-
"author": "Piri AYKUT | piriaykut@gmail.com",
|
|
35
|
-
"license": "MIT",
|
|
36
|
-
"description": "React UI components library",
|
|
37
|
-
"devDependencies": {
|
|
38
|
-
"@babel/cli": "^7.27.0",
|
|
39
|
-
"@babel/core": "^7.26.10",
|
|
40
|
-
"@babel/preset-
|
|
41
|
-
"@babel/preset-
|
|
42
|
-
},
|
|
43
|
-
"peerDependencies": {
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"quill": "^
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"react-
|
|
51
|
-
"react-icons": "^5.5.0",
|
|
52
|
-
"react-image-crop": "^11.0.7",
|
|
53
|
-
"react-loader-spinner": "^6.1.6",
|
|
54
|
-
"react-
|
|
55
|
-
|
|
56
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "px-react-ui-components",
|
|
3
|
+
"version": "1.0.9",
|
|
4
|
+
"main": "dist/index.js",
|
|
5
|
+
"module": "dist/index.js",
|
|
6
|
+
"type": "commonjs",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": "./dist/index.js"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"dist",
|
|
12
|
+
"dist/components",
|
|
13
|
+
"README.md"
|
|
14
|
+
],
|
|
15
|
+
"scripts": {
|
|
16
|
+
"build": "babel src --out-dir dist --copy-files",
|
|
17
|
+
"prepare": "npm run build"
|
|
18
|
+
},
|
|
19
|
+
"keywords": [
|
|
20
|
+
"react",
|
|
21
|
+
"components",
|
|
22
|
+
"ui",
|
|
23
|
+
"ui-components",
|
|
24
|
+
"library",
|
|
25
|
+
"design system",
|
|
26
|
+
"styled-components",
|
|
27
|
+
"tailwindcss",
|
|
28
|
+
"input",
|
|
29
|
+
"select",
|
|
30
|
+
"datepicker",
|
|
31
|
+
"container",
|
|
32
|
+
"tabs"
|
|
33
|
+
],
|
|
34
|
+
"author": "Piri AYKUT | piriaykut@gmail.com",
|
|
35
|
+
"license": "MIT",
|
|
36
|
+
"description": "React UI components library",
|
|
37
|
+
"devDependencies": {
|
|
38
|
+
"@babel/cli": "^7.27.0",
|
|
39
|
+
"@babel/core": "^7.26.10",
|
|
40
|
+
"@babel/preset-env": "^7.26.9",
|
|
41
|
+
"@babel/preset-react": "^7.26.3"
|
|
42
|
+
},
|
|
43
|
+
"peerDependencies": {
|
|
44
|
+
"katex": "^0.16.21",
|
|
45
|
+
"quill": "^1.3.7",
|
|
46
|
+
"quill-image-resize-module-react": "^3.0.0",
|
|
47
|
+
"quill-table-ui": "^1.0.7",
|
|
48
|
+
"react": "^18.3.1",
|
|
49
|
+
"react-confirm-alert": "^3.0.6",
|
|
50
|
+
"react-dom": "^18.3.1",
|
|
51
|
+
"react-icons": "^5.5.0",
|
|
52
|
+
"react-image-crop": "^11.0.7",
|
|
53
|
+
"react-loader-spinner": "^6.1.6",
|
|
54
|
+
"react-quill": "^2.0.0",
|
|
55
|
+
"react-zoom-pan-pinch": "^3.7.0"
|
|
56
|
+
}
|
|
57
|
+
}
|