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
|
@@ -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
|
+
}
|
|
@@ -8,8 +8,7 @@ var _react = _interopRequireWildcard(require("react"));
|
|
|
8
8
|
var _MyZoomImage = _interopRequireDefault(require("../MyZoomImage/MyZoomImage"));
|
|
9
9
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
10
10
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
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 ReactCrop;
|
|
15
14
|
let hasReactCrop = false;
|
|
@@ -9,8 +9,7 @@ var _MyInputModule = _interopRequireDefault(require("./MyInput.module.css"));
|
|
|
9
9
|
var _pi = require("react-icons/pi");
|
|
10
10
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
11
11
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
12
|
-
function
|
|
13
|
-
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; }
|
|
12
|
+
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); }
|
|
14
13
|
const MyInputType = exports.MyInputType = Object.freeze({
|
|
15
14
|
TEXT: 'text',
|
|
16
15
|
PASSWORD: 'password',
|
|
@@ -802,7 +801,9 @@ function MyInput({
|
|
|
802
801
|
children: options && options.map(e => {
|
|
803
802
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("option", {
|
|
804
803
|
value: MyInputIsNumeric(e[options_key_value]) ? parseInt(e[options_key_value]) : e[options_key_value],
|
|
805
|
-
|
|
804
|
+
dangerouslySetInnerHTML: {
|
|
805
|
+
__html: e[options_key_text] || e["label"]
|
|
806
|
+
}
|
|
806
807
|
}, e[options_key_value]);
|
|
807
808
|
})
|
|
808
809
|
}), !myValue && !options && (placeholder || myTitleLite) && /*#__PURE__*/(0, _jsxRuntime.jsx)("span", {
|