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.
@@ -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 _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
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 _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
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 _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "px-react-ui-components",
3
- "version": "1.1.4",
3
+ "version": "1.1.6",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.js",
6
6
  "type": "commonjs",