px-react-ui-components 1.1.4 → 1.1.6
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 +117 -117
- package/dist/components/MyContainer/MyContainer.module.css +109 -109
- package/dist/components/MyEditor/MyEditor.js +1 -2
- package/dist/components/MyEditor/MyEditor.scss +276 -276
- package/dist/components/MyFileUpload/MyFileUpload.js +1 -2
- package/dist/components/MyFileUpload/MyFileUpload.module.css +86 -86
- package/dist/components/MyImageCropper/MyImageCropper.js +1 -2
- package/dist/components/MyInput/MyInput.js +4 -3
- package/dist/components/MyInput/MyInput.module.css +420 -420
- package/dist/components/MyMaps/YandexMaps.js +1 -2
- package/dist/components/MyMenu/MenuItem.js +1 -2
- package/dist/components/MyMenu/MyMenu.module.css +101 -101
- package/dist/components/MyModal/MyModal.css +84 -84
- package/dist/components/MyModal/MyModal.js +1 -2
- package/dist/components/MyNotFound/MyNotFound.css +21 -21
- package/dist/components/MyScrollableCard/MyScrollableCard.js +1 -2
- package/dist/components/MyTable/MyTable.js +1 -2
- package/dist/components/MyTable/MyTable.module.css +357 -357
- package/dist/components/MyTabs/MyTabPane.js +1 -2
- package/dist/components/MyTabs/MyTabs.css +105 -105
- package/dist/components/MyTabs/MyTabs.js +1 -2
- package/dist/components/MyWaiting/MyWaiting.css +32 -32
- package/dist/components/MyZoomImage/MyZoomImage.js +1 -2
- package/package.json +1 -1
|
@@ -6,8 +6,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
exports.default = void 0;
|
|
7
7
|
var _react = _interopRequireWildcard(require("react"));
|
|
8
8
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
9
|
-
function
|
|
10
|
-
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
9
|
+
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
|
|
11
10
|
function MyTabPane({
|
|
12
11
|
children,
|
|
13
12
|
label = null,
|
|
@@ -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
|
+
}
|
|
@@ -7,8 +7,7 @@ exports.default = void 0;
|
|
|
7
7
|
var _react = _interopRequireWildcard(require("react"));
|
|
8
8
|
require("./MyTabs.css");
|
|
9
9
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
10
|
-
function
|
|
11
|
-
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
10
|
+
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
|
|
12
11
|
function MyTabs({
|
|
13
12
|
children,
|
|
14
13
|
className = null,
|
|
@@ -1,33 +1,33 @@
|
|
|
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
|
-
}
|
|
29
|
-
|
|
30
|
-
@keyframes spin {
|
|
31
|
-
0% { transform: rotate(0deg); }
|
|
32
|
-
100% { transform: rotate(360deg); }
|
|
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
|
+
}
|
|
29
|
+
|
|
30
|
+
@keyframes spin {
|
|
31
|
+
0% { transform: rotate(0deg); }
|
|
32
|
+
100% { transform: rotate(360deg); }
|
|
33
33
|
}
|
|
@@ -8,8 +8,7 @@ var _react = _interopRequireWildcard(require("react"));
|
|
|
8
8
|
require("./MyZoomImage.css");
|
|
9
9
|
var _pi = require("react-icons/pi");
|
|
10
10
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
11
|
-
function
|
|
12
|
-
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
11
|
+
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
|
|
13
12
|
// Opsiyonel bağımlılığı kontrol et
|
|
14
13
|
let TransformWrapper, TransformComponent, useControls;
|
|
15
14
|
let hasZoomPanPinch = false;
|