@abidibo/react-cam-roi 0.2.2 → 0.2.4

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.
Files changed (67) hide show
  1. package/README.md +0 -2
  2. package/dist/Components/BoolField/BoolField.module.css +60 -0
  3. package/dist/Components/Button/Button.module.css +29 -0
  4. package/dist/Components/EnumField/EnumField.module.css +61 -0
  5. package/dist/Components/IconButton/IconButton.module.css +20 -0
  6. package/dist/Components/Loader/Loader.module.css +25 -0
  7. package/dist/Components/Modal/Modal.module.css +92 -0
  8. package/dist/Components/NumberField/NumberField.module.css +60 -0
  9. package/dist/Components/RoiEditor/ColorPicker.module.css +17 -0
  10. package/dist/Components/RoiEditor/Header.module.css +26 -0
  11. package/dist/Components/RoiEditor/ParametersModalForm/ParametersModalForm.module.css +5 -0
  12. package/dist/Components/RoiEditor/RoiEditor.module.css +5 -0
  13. package/dist/Components/RoiEditor/ShapesList.module.css +71 -0
  14. package/dist/Components/RoiEditor/Toolbar.module.css +41 -0
  15. package/dist/Components/RoiEditor/TopBar.module.css +7 -0
  16. package/dist/Components/TextField/TextField.module.css +61 -0
  17. package/dist/index.cjs.css +2 -0
  18. package/dist/index.cjs.css.map +1 -0
  19. package/dist/index.cjs.js +1582 -0
  20. package/dist/index.cjs.js.map +1 -0
  21. package/dist/index.esm.css +2 -0
  22. package/dist/index.esm.css.map +1 -0
  23. package/dist/index.esm.js +1576 -0
  24. package/dist/index.esm.js.map +1 -0
  25. package/dist/types/Components/BoolField/index.d.ts +5 -0
  26. package/dist/types/Components/Button/index.d.ts +8 -0
  27. package/dist/types/Components/EnumField/index.d.ts +10 -0
  28. package/dist/types/Components/IconButton/index.d.ts +7 -0
  29. package/dist/types/Components/Loader/index.d.ts +1 -0
  30. package/dist/types/Components/Modal/index.d.ts +10 -0
  31. package/dist/types/Components/NumberField/index.d.ts +3 -0
  32. package/dist/types/Components/RoiEditor/Canvas.d.ts +14 -0
  33. package/dist/types/Components/RoiEditor/ColorPicker.d.ts +5 -0
  34. package/dist/types/Components/RoiEditor/Header.d.ts +2 -0
  35. package/dist/types/Components/RoiEditor/Hooks.d.ts +38 -0
  36. package/dist/types/Components/RoiEditor/ParameterField.d.ts +9 -0
  37. package/dist/types/Components/RoiEditor/ParametersModalForm/index.d.ts +17 -0
  38. package/dist/types/Components/RoiEditor/Polygon.d.ts +18 -0
  39. package/dist/types/Components/RoiEditor/Polyline.d.ts +28 -0
  40. package/dist/types/Components/RoiEditor/Rectangle.d.ts +21 -0
  41. package/dist/types/Components/RoiEditor/RoisInfo.d.ts +2 -0
  42. package/dist/types/Components/RoiEditor/ShapesList.d.ts +2 -0
  43. package/dist/types/Components/RoiEditor/Toolbar.d.ts +2 -0
  44. package/dist/types/Components/RoiEditor/TopBar.d.ts +2 -0
  45. package/dist/types/Components/RoiEditor/Types.d.ts +128 -0
  46. package/dist/types/Components/RoiEditor/Utils.d.ts +25 -0
  47. package/dist/types/Components/RoiEditor/index.d.ts +12 -0
  48. package/dist/types/Components/RoleField.d.ts +7 -0
  49. package/dist/types/Components/TextField/index.d.ts +6 -0
  50. package/dist/types/Components/Typography/index.d.ts +9 -0
  51. package/dist/types/Icons/AnnotateIcon.d.ts +6 -0
  52. package/dist/types/Icons/CloseIcon.d.ts +6 -0
  53. package/dist/types/Icons/CopyIcon.d.ts +6 -0
  54. package/dist/types/Icons/DeleteIcon.d.ts +6 -0
  55. package/dist/types/Icons/EditIcon.d.ts +6 -0
  56. package/dist/types/Icons/PointerIcon.d.ts +6 -0
  57. package/dist/types/Icons/PolygonIcon.d.ts +6 -0
  58. package/dist/types/Icons/PolylineIcon.d.ts +6 -0
  59. package/dist/types/Icons/RectangleIcon.d.ts +6 -0
  60. package/dist/types/Icons/SaveIcon.d.ts +6 -0
  61. package/dist/types/Providers/EditorProvider.d.ts +26 -0
  62. package/dist/types/Providers/UiProvider.d.ts +82 -0
  63. package/dist/types/Types.d.ts +10 -0
  64. package/dist/types/Utils/Dispatcher.d.ts +16 -0
  65. package/dist/types/Utils/index.d.ts +6 -0
  66. package/dist/types/index.d.ts +4 -0
  67. package/package.json +17 -6
package/README.md CHANGED
@@ -1,7 +1,5 @@
1
1
  # React Cam ROI
2
2
 
3
- > Still in development!
4
-
5
3
  This is a react component which lets you draw regions of interest (ROI) over images, manage metadata and import/export everything.
6
4
  Metadata are dynamic information that can be attached to the whole image and/or to each ROI. The number of drawable ROIs can also be configured.
7
5
 
@@ -0,0 +1,60 @@
1
+ /*
2
+ .bool-field-wrapper {
3
+ margin-bottom: 2rem;
4
+ }
5
+ .bool-field-wrapper-light {
6
+ }
7
+ .bool-field-wrapper-dark {
8
+ }
9
+ */
10
+
11
+ .bool-field {
12
+ border-radius: 0.25rem;
13
+ box-sizing: border-box;
14
+ padding: 0.5rem;
15
+ }
16
+ .bool-field:focus-visible {
17
+ outline: none;
18
+ border: 1px solid #1976d2;
19
+ }
20
+ .bool-field-light {
21
+ background-color: #fff;
22
+ color: #333;
23
+ border: 1px solid #ccc;
24
+ }
25
+ .bool-field-dark {
26
+ background-color: #333;
27
+ border: 1px solid #666;
28
+ color: #fff;
29
+ }
30
+ .bool-field-error {
31
+ border: 1px solid #d32f2f;
32
+ }
33
+ .bool-field-label {
34
+ font-weight: bold;
35
+ display: block;
36
+ margin: 0 0 1rem 0;
37
+ }
38
+ /*
39
+ .text-fiel-label-light {
40
+ }
41
+ .bool-field-label-dark {
42
+ }
43
+ */
44
+ .bool-field-label-error {
45
+ color: #d32f2f;
46
+ }
47
+ .bool-field-helper-text {
48
+ font-style: italic;
49
+ font-size: 0.9rem;
50
+ margin-top: 0.5rem;
51
+ }
52
+ /*
53
+ .bool-field-helper-text-light {
54
+ }
55
+ .bool-field-helper-text-dark {
56
+ }
57
+ */
58
+ .bool-field-helper-text-error {
59
+ color: #d32f2f;
60
+ }
@@ -0,0 +1,29 @@
1
+ .button {
2
+ align-items: center;
3
+ border: none;
4
+ border-radius: 4px;
5
+ color: black;
6
+ padding: .5rem 1rem;
7
+ text-align: center;
8
+ text-decoration: none;
9
+ display: flex;
10
+ font-size: 16px;
11
+ gap: .5rem;
12
+ margin: 4px 2px;
13
+ cursor: pointer;
14
+ }
15
+
16
+ .button-light {
17
+ background-color: #c7c7c7;
18
+ color: black;
19
+ }
20
+
21
+ .button-dark {
22
+ background-color: #383838;
23
+ color: white;
24
+ }
25
+
26
+ .button-disabled {
27
+ cursor: not-allowed;
28
+ opacity: 0.5;
29
+ }
@@ -0,0 +1,61 @@
1
+ /*
2
+ .enum-field-wrapper {
3
+ margin-bottom: 2rem;
4
+ }
5
+ .enum-field-wrapper-light {
6
+ }
7
+ .enum-field-wrapper-dark {
8
+ }
9
+ */
10
+
11
+ .enum-field {
12
+ border-radius: 0.25rem;
13
+ box-sizing: border-box;
14
+ padding: 0.5rem;
15
+ width: 100%;
16
+ }
17
+ .enum-field:focus-visible {
18
+ outline: none;
19
+ border: 1px solid #1976d2;
20
+ }
21
+ .enum-field-light {
22
+ background-color: #fff;
23
+ color: #333;
24
+ border: 1px solid #ccc;
25
+ }
26
+ .enum-field-dark {
27
+ background-color: #333;
28
+ border: 1px solid #666;
29
+ color: #fff;
30
+ }
31
+ .enum-field-error {
32
+ border: 1px solid #d32f2f;
33
+ }
34
+ .enum-field-label {
35
+ font-weight: bold;
36
+ display: block;
37
+ margin: 0 0 1rem 0;
38
+ }
39
+ /*
40
+ .text-fiel-label-light {
41
+ }
42
+ .enum-field-label-dark {
43
+ }
44
+ */
45
+ .enum-field-label-error {
46
+ color: #d32f2f;
47
+ }
48
+ .enum-field-helper-text {
49
+ font-style: italic;
50
+ font-size: 0.9rem;
51
+ margin-top: 0.5rem;
52
+ }
53
+ /*
54
+ .enum-field-helper-text-light {
55
+ }
56
+ .enum-field-helper-text-dark {
57
+ }
58
+ */
59
+ .enum-field-helper-text-error {
60
+ color: #d32f2f;
61
+ }
@@ -0,0 +1,20 @@
1
+ .icon-button {
2
+ display: inline-block;
3
+ border-radius: 50%;
4
+ line-height: 0;
5
+ padding: 0.5rem;
6
+ cursor: pointer;
7
+ }
8
+
9
+ .icon-button-light:hover {
10
+ background-color: rgba(0, 0, 0, 0.1);
11
+ }
12
+
13
+ .icon-button-dark:hover {
14
+ background-color: rgba(255, 255, 255, 0.1);
15
+ }
16
+
17
+ .icon-button-disabled {
18
+ cursor: not-allowed;
19
+ opacity: 0.5;
20
+ }
@@ -0,0 +1,25 @@
1
+ .loader {
2
+ border-radius: 50%;
3
+ width: 40px;
4
+ height: 40px;
5
+ animation: spin 1s linear infinite;
6
+ }
7
+
8
+ .loader-light {
9
+ border: 10px solid #f3f3f3;
10
+ border-top: 10px solid #3498db;
11
+ }
12
+
13
+ .loader-dark {
14
+ border: 10px solid #333;
15
+ border-top: 10px solid #3498db;
16
+ }
17
+
18
+ @keyframes spin {
19
+ 0% {
20
+ transform: rotate(0deg);
21
+ }
22
+ 100% {
23
+ transform: rotate(360deg);
24
+ }
25
+ }
@@ -0,0 +1,92 @@
1
+ .modal-overlay {
2
+ position: fixed;
3
+ top: 0;
4
+ left: 0;
5
+ width: 100%;
6
+ height: 100%;
7
+ display: flex;
8
+ justify-content: center;
9
+ align-items: center;
10
+ z-index: 9000;
11
+ }
12
+
13
+ .modal-overlay-light {
14
+ background-color: rgba(255, 255, 255, 0.7);
15
+ }
16
+
17
+ .modal-overlay-dark {
18
+ background-color: rgba(0, 0, 0, 0.7);
19
+ }
20
+
21
+ .modal {
22
+ max-width: 80%;
23
+ max-height: 80%;
24
+ overflow: auto;
25
+ padding: 20px;
26
+ border-radius: 5px;
27
+ }
28
+
29
+ .modal:focus-visible {
30
+ outline: none;
31
+ }
32
+
33
+ .modal-light {
34
+ background-color: #fff;
35
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
36
+ color: #000;
37
+ }
38
+
39
+ .modal-dark {
40
+ background-color: #333;
41
+ box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
42
+ color: #fff;
43
+ }
44
+
45
+ .modal-xs {
46
+ width: 400px;
47
+ }
48
+
49
+ .modal-sm {
50
+ width: 600px;
51
+ }
52
+
53
+ .modal-md {
54
+ width: 800px;
55
+ }
56
+
57
+ .modal-lg {
58
+ width: 1000px;
59
+ }
60
+
61
+ .modal-xl {
62
+ width: 1200px;
63
+ }
64
+
65
+ .modal-header {
66
+ display: flex;
67
+ justify-content: space-between;
68
+ align-items: center;
69
+ margin-bottom: 1rem;
70
+ }
71
+
72
+ .modal-title {
73
+ font-size: 1.5rem;
74
+ font-weight: bold;
75
+ margin: 0;
76
+ }
77
+
78
+ .modal-title-light {
79
+ color: #000;
80
+ }
81
+
82
+ .modal-title-dark {
83
+ color: #fff;
84
+ }
85
+
86
+ .modal-footer {
87
+ display: flex;
88
+ justify-content: flex-end;
89
+ margin-top: 1rem;
90
+ gap: .5rem;
91
+ }
92
+
@@ -0,0 +1,60 @@
1
+ /*
2
+ .number-field-wrapper {
3
+ }
4
+ .number-field-wrapper-light {
5
+ }
6
+ .number-field-wrapper-dark {
7
+ }
8
+ */
9
+
10
+ .number-field {
11
+ border-radius: 0.25rem;
12
+ box-sizing: border-box;
13
+ padding: 0.5rem;
14
+ width: 100%;
15
+ }
16
+ .number-field:focus-visible {
17
+ outline: none;
18
+ border: 1px solid #1976d2;
19
+ }
20
+ .number-field-light {
21
+ background-color: #fff;
22
+ color: #333;
23
+ border: 1px solid #ccc;
24
+ }
25
+ .number-field-dark {
26
+ background-color: #333;
27
+ border: 1px solid #666;
28
+ color: #fff;
29
+ }
30
+ .number-field-error {
31
+ border: 1px solid #d32f2f;
32
+ }
33
+ .number-field-label {
34
+ font-weight: bold;
35
+ display: block;
36
+ margin: 0 0 1rem 0;
37
+ }
38
+ /*
39
+ .text-fiel-label-light {
40
+ }
41
+ .number-field-label-dark {
42
+ }
43
+ */
44
+ .number-field-label-error {
45
+ color: #d32f2f;
46
+ }
47
+ .number-field-helper-text {
48
+ font-style: italic;
49
+ font-size: 0.9rem;
50
+ padding-top: 0.5rem;
51
+ }
52
+ /*
53
+ .number-field-helper-text-light {
54
+ }
55
+ .number-field-helper-text-dark {
56
+ }
57
+ */
58
+ .number-field-helper-text-error {
59
+ color: #d32f2f;
60
+ }
@@ -0,0 +1,17 @@
1
+ .colorpickerWrapper {
2
+ display: flex;
3
+ flex-wrap: nowrap;
4
+ gap: .2rem;
5
+ }
6
+
7
+ .colorpicker-button {
8
+ box-sizing: border-box;
9
+ width: 24px;
10
+ height: 24px;
11
+ border-radius: 50%;
12
+ cursor: pointer;
13
+ }
14
+
15
+ .colorpicker-button-active {
16
+ border: 2px solid red;
17
+ }
@@ -0,0 +1,26 @@
1
+ .header {
2
+ align-items: flex-start;
3
+ display: flex;
4
+ justify-content: space-between;
5
+ padding: .5rem;
6
+ }
7
+
8
+ .header-light {
9
+ background-color: #ddd;;
10
+ }
11
+
12
+ .header-dark {
13
+ background-color: #222;
14
+ }
15
+
16
+ .header-info {
17
+ padding: .5rem;
18
+ }
19
+ .header-info-light {
20
+ background-color: #ddd;;
21
+ color: #000;
22
+ }
23
+ .header-info-dark {
24
+ background-color: #222;
25
+ color: #fff;
26
+ }
@@ -0,0 +1,5 @@
1
+ .form {
2
+ display: flex;
3
+ flex-direction: column;
4
+ gap: 1rem;
5
+ }
@@ -0,0 +1,5 @@
1
+ .canvas-wrapper {
2
+ background-size: contain;
3
+ background-repeat: no-repeat;
4
+ position: relative;
5
+ }
@@ -0,0 +1,71 @@
1
+ .shapes-table {
2
+ border-collapse: collapse;
3
+ width: 100%;
4
+ }
5
+
6
+ .shapes-table tr {
7
+ cursor: pointer;
8
+ }
9
+
10
+ .shapes-table th {
11
+ padding: .8rem .3rem;
12
+ text-align: left;
13
+ }
14
+
15
+ .shapes-table td {
16
+ padding: 0 .3rem;
17
+ }
18
+
19
+ .shapes-table tr td:last-child,
20
+ .shapes-table tr th:last-child {
21
+ text-align: right;
22
+ }
23
+
24
+ .shapes-table-light {
25
+ background-color: #eee;
26
+ color: #000;
27
+ }
28
+
29
+ .shapes-table-dark {
30
+ background-color: #333;
31
+ color: #fff;
32
+ }
33
+
34
+ .shapes-row-selected-light {
35
+ background-color: #ccc;
36
+ }
37
+
38
+ .shapes-row-selected-dark {
39
+ background-color: #666;
40
+ }
41
+
42
+ .shapes-row-even-light {
43
+ background-color: #f7f7f7;
44
+ }
45
+
46
+ .shapes-row-even-dark {
47
+ background-color: #444;
48
+ }
49
+
50
+ .shapes-row-odd-light {
51
+ background-color: #f0f0f0;
52
+ }
53
+
54
+ .shapes-row-odd-dark {
55
+ background-color: #555;
56
+ }
57
+
58
+ .shapesTableName {
59
+ display: flex;
60
+ align-items: center;
61
+ }
62
+
63
+ .shapesTableColor {
64
+ border: 1px solid #000;
65
+ box-sizing: border-box;
66
+ display: inline-block;
67
+ width: 24px;
68
+ height: 24px;
69
+ border-radius: 50%;
70
+ margin-right: .5rem;
71
+ }
@@ -0,0 +1,41 @@
1
+ .toolbar {
2
+ align-items: center;
3
+ display: flex;
4
+ padding: .5rem;
5
+ }
6
+
7
+ .toolbar-light {
8
+ background-color: #eee;;
9
+ }
10
+
11
+ .toolbar-dark {
12
+ background-color: #333;
13
+ }
14
+
15
+ .toolbar-helper {
16
+ padding: .5rem;
17
+ }
18
+
19
+ .toolbar-helper-light {
20
+ background-color: #f7f7f7;;
21
+ color: #000;
22
+ }
23
+
24
+ .toolbar-helper-dark {
25
+ background-color: #222;
26
+ color: #fff;
27
+ }
28
+
29
+ .toolbar-spacer {
30
+ height: 20px;
31
+ margin: 0 .5rem;
32
+ width: 1px;
33
+ }
34
+
35
+ .toolbar-spacer-light {
36
+ background-color: #ccc;
37
+ }
38
+
39
+ .toolbar-spacer-dark {
40
+ background-color: #555;
41
+ }
@@ -0,0 +1,7 @@
1
+ .top-bar {
2
+ align-items: center;
3
+ display: flex;
4
+ gap: .5rem;
5
+ justify-content: flex-end;
6
+ margin-bottom: .5rem;
7
+ }
@@ -0,0 +1,61 @@
1
+ /*
2
+ .text-field-wrapper {
3
+ margin-bottom: 2rem;
4
+ }
5
+ .text-field-wrapper-light {
6
+ }
7
+ .text-field-wrapper-dark {
8
+ }
9
+ */
10
+
11
+ .text-field {
12
+ border-radius: 0.25rem;
13
+ box-sizing: border-box;
14
+ padding: 0.5rem;
15
+ width: 100%;
16
+ }
17
+ .text-field:focus-visible {
18
+ outline: none;
19
+ border: 1px solid #1976d2;
20
+ }
21
+ .text-field-light {
22
+ background-color: #fff;
23
+ color: #333;
24
+ border: 1px solid #ccc;
25
+ }
26
+ .text-field-dark {
27
+ background-color: #333;
28
+ border: 1px solid #666;
29
+ color: #fff;
30
+ }
31
+ .text-field-error {
32
+ border: 1px solid #d32f2f;
33
+ }
34
+ .text-field-label {
35
+ font-weight: bold;
36
+ display: block;
37
+ margin: 0 0 1rem 0;
38
+ }
39
+ /*
40
+ .text-fiel-label-light {
41
+ }
42
+ .text-field-label-dark {
43
+ }
44
+ */
45
+ .text-field-label-error {
46
+ color: #d32f2f;
47
+ }
48
+ .text-field-helper-text {
49
+ font-style: italic;
50
+ font-size: 0.9rem;
51
+ margin-top: 0.5rem;
52
+ }
53
+ /*
54
+ .text-field-helper-text-light {
55
+ }
56
+ .text-field-helper-text-dark {
57
+ }
58
+ */
59
+ .text-field-helper-text-error {
60
+ color: #d32f2f;
61
+ }
@@ -0,0 +1,2 @@
1
+ .IconButton-module_icon-button__T7a-e{border-radius:50%;cursor:pointer;display:inline-block;line-height:0;padding:.5rem}.IconButton-module_icon-button-light__ZNyjL:hover{background-color:rgba(0,0,0,.1)}.IconButton-module_icon-button-dark__nwcCW:hover{background-color:hsla(0,0%,100%,.1)}.IconButton-module_icon-button-disabled__a9y4V{cursor:not-allowed;opacity:.5}.Modal-module_modal-overlay__AX73T{align-items:center;display:flex;height:100%;justify-content:center;left:0;position:fixed;top:0;width:100%;z-index:9000}.Modal-module_modal-overlay-light__XGI4c{background-color:hsla(0,0%,100%,.7)}.Modal-module_modal-overlay-dark__o-3S1{background-color:rgba(0,0,0,.7)}.Modal-module_modal__JutQb{border-radius:5px;max-height:80%;max-width:80%;overflow:auto;padding:20px}.Modal-module_modal__JutQb:focus-visible{outline:none}.Modal-module_modal-light__tJ5iM{background-color:#fff;box-shadow:0 0 10px rgba(0,0,0,.2);color:#000}.Modal-module_modal-dark__ToNtQ{background-color:#333;box-shadow:0 0 10px hsla(0,0%,100%,.2);color:#fff}.Modal-module_modal-xs__ZpG0m{width:400px}.Modal-module_modal-sm__ZR3WM{width:600px}.Modal-module_modal-md__cekju{width:800px}.Modal-module_modal-lg__As-E0{width:1000px}.Modal-module_modal-xl__tBTZS{width:1200px}.Modal-module_modal-header__tayxk{align-items:center;display:flex;justify-content:space-between;margin-bottom:1rem}.Modal-module_modal-title__0SHNZ{font-size:1.5rem;font-weight:700;margin:0}.Modal-module_modal-title-light__txH-X{color:#000}.Modal-module_modal-title-dark__72qJi{color:#fff}.Modal-module_modal-footer__XwwRD{display:flex;gap:.5rem;justify-content:flex-end;margin-top:1rem}.TextField-module_text-field__i1lgc{border-radius:.25rem;box-sizing:border-box;padding:.5rem;width:100%}.TextField-module_text-field__i1lgc:focus-visible{border:1px solid #1976d2;outline:none}.TextField-module_text-field-light__F5sz2{background-color:#fff;border:1px solid #ccc;color:#333}.TextField-module_text-field-dark__mGGSs{background-color:#333;border:1px solid #666;color:#fff}.TextField-module_text-field-error__6cqOv{border:1px solid #d32f2f}.TextField-module_text-field-label__Jjdem{display:block;font-weight:700;margin:0 0 1rem}.TextField-module_text-field-label-error__FTZnh{color:#d32f2f}.TextField-module_text-field-helper-text__E9vmk{font-size:.9rem;font-style:italic;margin-top:.5rem}.TextField-module_text-field-helper-text-error__48hRk{color:#d32f2f}.NumberField-module_number-field__Sg83r{border-radius:.25rem;box-sizing:border-box;padding:.5rem;width:100%}.NumberField-module_number-field__Sg83r:focus-visible{border:1px solid #1976d2;outline:none}.NumberField-module_number-field-light__-13Kl{background-color:#fff;border:1px solid #ccc;color:#333}.NumberField-module_number-field-dark__6br67{background-color:#333;border:1px solid #666;color:#fff}.NumberField-module_number-field-error__MuNs5{border:1px solid #d32f2f}.NumberField-module_number-field-label__-E8z7{display:block;font-weight:700;margin:0 0 1rem}.NumberField-module_number-field-label-error__nDs97{color:#d32f2f}.NumberField-module_number-field-helper-text__UNMnr{font-size:.9rem;font-style:italic;padding-top:.5rem}.NumberField-module_number-field-helper-text-error__QW1b-{color:#d32f2f}.BoolField-module_bool-field__-Qg7I{border-radius:.25rem;box-sizing:border-box;padding:.5rem}.BoolField-module_bool-field__-Qg7I:focus-visible{border:1px solid #1976d2;outline:none}.BoolField-module_bool-field-light__CHITs{background-color:#fff;border:1px solid #ccc;color:#333}.BoolField-module_bool-field-dark__gy9uQ{background-color:#333;border:1px solid #666;color:#fff}.BoolField-module_bool-field-error__qJV-E{border:1px solid #d32f2f}.BoolField-module_bool-field-label__LZbjy{display:block;font-weight:700;margin:0 0 1rem}.BoolField-module_bool-field-label-error__gBzdk{color:#d32f2f}.BoolField-module_bool-field-helper-text__fH8fC{font-size:.9rem;font-style:italic;margin-top:.5rem}.BoolField-module_bool-field-helper-text-error__McdWn{color:#d32f2f}.EnumField-module_enum-field__szaEn{border-radius:.25rem;box-sizing:border-box;padding:.5rem;width:100%}.EnumField-module_enum-field__szaEn:focus-visible{border:1px solid #1976d2;outline:none}.EnumField-module_enum-field-light__vWmLt{background-color:#fff;border:1px solid #ccc;color:#333}.EnumField-module_enum-field-dark__fDZ4K{background-color:#333;border:1px solid #666;color:#fff}.EnumField-module_enum-field-error__Kagoh{border:1px solid #d32f2f}.EnumField-module_enum-field-label__o1dg0{display:block;font-weight:700;margin:0 0 1rem}.EnumField-module_enum-field-label-error__O2ayN{color:#d32f2f}.EnumField-module_enum-field-helper-text__nRzmi{font-size:.9rem;font-style:italic;margin-top:.5rem}.EnumField-module_enum-field-helper-text-error__ukfl1{color:#d32f2f}.Button-module_button__MSSZa{align-items:center;border:none;border-radius:4px;color:#000;cursor:pointer;display:flex;font-size:16px;gap:.5rem;margin:4px 2px;padding:.5rem 1rem;text-align:center;text-decoration:none}.Button-module_button-light__u6BIN{background-color:#c7c7c7;color:#000}.Button-module_button-dark__3wtFc{background-color:#383838;color:#fff}.Button-module_button-disabled__s9jaY{cursor:not-allowed;opacity:.5}.Loader-module_loader__6JyG7{animation:Loader-module_spin__ZcV1b 1s linear infinite;border-radius:50%;height:40px;width:40px}.Loader-module_loader-light__WlXKM{border:10px solid #f3f3f3;border-top-color:#3498db}.Loader-module_loader-dark__mW1w5{border:10px solid #333;border-top-color:#3498db}@keyframes Loader-module_spin__ZcV1b{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.Header-module_header__1FVtV{align-items:flex-start;display:flex;justify-content:space-between;padding:.5rem}.Header-module_header-light__Vqkzy{background-color:#ddd}.Header-module_header-dark__IuBJ1{background-color:#222}.Header-module_header-info__7BSAi{padding:.5rem}.Header-module_header-info-light__u9GgZ{background-color:#ddd;color:#000}.Header-module_header-info-dark__JWxIy{background-color:#222;color:#fff}.RoiEditor-module_canvas-wrapper__q0gQg{background-repeat:no-repeat;background-size:contain;position:relative}.ParametersModalForm-module_form__WXebJ{display:flex;flex-direction:column;gap:1rem}.ShapesList-module_shapes-table__sx5Xp{border-collapse:collapse;width:100%}.ShapesList-module_shapes-table__sx5Xp tr{cursor:pointer}.ShapesList-module_shapes-table__sx5Xp th{padding:.8rem .3rem;text-align:left}.ShapesList-module_shapes-table__sx5Xp td{padding:0 .3rem}.ShapesList-module_shapes-table__sx5Xp tr td:last-child,.ShapesList-module_shapes-table__sx5Xp tr th:last-child{text-align:right}.ShapesList-module_shapes-table-light__TbtKn{background-color:#eee;color:#000}.ShapesList-module_shapes-table-dark__siyhV{background-color:#333;color:#fff}.ShapesList-module_shapes-row-selected-light__-0gaE{background-color:#ccc}.ShapesList-module_shapes-row-selected-dark__bGR3a{background-color:#666}.ShapesList-module_shapes-row-even-light__2eUZX{background-color:#f7f7f7}.ShapesList-module_shapes-row-even-dark__eyECv{background-color:#444}.ShapesList-module_shapes-row-odd-light__vZzPj{background-color:#f0f0f0}.ShapesList-module_shapes-row-odd-dark__TWGAu{background-color:#555}.ShapesList-module_shapesTableName__9Q6i1{align-items:center;display:flex}.ShapesList-module_shapesTableColor__Iyd33{border:1px solid #000;border-radius:50%;box-sizing:border-box;display:inline-block;height:24px;margin-right:.5rem;width:24px}.ColorPicker-module_colorpickerWrapper__qONC-{display:flex;flex-wrap:nowrap;gap:.2rem}.ColorPicker-module_colorpicker-button__Tvdcw{border-radius:50%;box-sizing:border-box;cursor:pointer;height:24px;width:24px}.ColorPicker-module_colorpicker-button-active__zwhHp{border:2px solid red}.Toolbar-module_toolbar__ywNcv{align-items:center;display:flex;padding:.5rem}.Toolbar-module_toolbar-light__aJtaH{background-color:#eee}.Toolbar-module_toolbar-dark__9iO4U{background-color:#333}.Toolbar-module_toolbar-helper__DBw3v{padding:.5rem}.Toolbar-module_toolbar-helper-light__Z4PLG{background-color:#f7f7f7;color:#000}.Toolbar-module_toolbar-helper-dark__AEXUy{background-color:#222;color:#fff}.Toolbar-module_toolbar-spacer__qPxmN{height:20px;margin:0 .5rem;width:1px}.Toolbar-module_toolbar-spacer-light__2CNYP{background-color:#ccc}.Toolbar-module_toolbar-spacer-dark__cW0Rj{background-color:#555}.TopBar-module_top-bar__9oCUR{align-items:center;display:flex;gap:.5rem;justify-content:flex-end;margin-bottom:.5rem}
2
+ /*# sourceMappingURL=index.cjs.css.map */
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["IconButton.module.css","Modal.module.css","TextField.module.css","NumberField.module.css","BoolField.module.css","EnumField.module.css","Button.module.css","Loader.module.css","Header.module.css","RoiEditor.module.css","ParametersModalForm.module.css","ShapesList.module.css","ColorPicker.module.css","Toolbar.module.css","TopBar.module.css"],"names":[],"mappings":"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","file":"index.cjs.css","sourcesContent":[".icon-button {\n display: inline-block;\n border-radius: 50%;\n line-height: 0;\n padding: 0.5rem;\n cursor: pointer;\n}\n\n.icon-button-light:hover {\n background-color: rgba(0, 0, 0, 0.1);\n}\n\n.icon-button-dark:hover {\n background-color: rgba(255, 255, 255, 0.1);\n}\n\n.icon-button-disabled {\n cursor: not-allowed;\n opacity: 0.5;\n}\n",".modal-overlay {\n position: fixed;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n display: flex;\n justify-content: center;\n align-items: center;\n z-index: 9000;\n}\n\n.modal-overlay-light {\n background-color: rgba(255, 255, 255, 0.7);\n}\n\n.modal-overlay-dark {\n background-color: rgba(0, 0, 0, 0.7);\n}\n\n.modal {\n max-width: 80%;\n max-height: 80%;\n overflow: auto;\n padding: 20px;\n border-radius: 5px;\n}\n\n.modal:focus-visible {\n outline: none;\n}\n\n.modal-light {\n background-color: #fff;\n box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);\n color: #000;\n}\n\n.modal-dark {\n background-color: #333;\n box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);\n color: #fff;\n}\n\n.modal-xs {\n width: 400px;\n}\n\n.modal-sm {\n width: 600px;\n}\n\n.modal-md {\n width: 800px;\n}\n\n.modal-lg {\n width: 1000px;\n}\n\n.modal-xl {\n width: 1200px;\n}\n\n.modal-header {\n display: flex;\n justify-content: space-between;\n align-items: center;\n margin-bottom: 1rem;\n}\n\n.modal-title {\n font-size: 1.5rem;\n font-weight: bold;\n margin: 0;\n}\n\n.modal-title-light {\n color: #000;\n}\n\n.modal-title-dark {\n color: #fff;\n}\n\n.modal-footer {\n display: flex;\n justify-content: flex-end;\n margin-top: 1rem;\n gap: .5rem;\n}\n\n","/*\n.text-field-wrapper {\n margin-bottom: 2rem;\n}\n.text-field-wrapper-light {\n}\n.text-field-wrapper-dark {\n}\n*/\n\n.text-field {\n border-radius: 0.25rem;\n box-sizing: border-box;\n padding: 0.5rem;\n width: 100%;\n}\n.text-field:focus-visible {\n outline: none;\n border: 1px solid #1976d2;\n}\n.text-field-light {\n background-color: #fff;\n color: #333;\n border: 1px solid #ccc;\n}\n.text-field-dark {\n background-color: #333;\n border: 1px solid #666;\n color: #fff;\n}\n.text-field-error {\n border: 1px solid #d32f2f;\n}\n.text-field-label {\n font-weight: bold;\n display: block;\n margin: 0 0 1rem 0;\n}\n/*\n.text-fiel-label-light {\n}\n.text-field-label-dark {\n}\n*/\n.text-field-label-error {\n color: #d32f2f;\n}\n.text-field-helper-text {\n font-style: italic;\n font-size: 0.9rem;\n margin-top: 0.5rem;\n}\n/*\n.text-field-helper-text-light {\n}\n.text-field-helper-text-dark {\n}\n*/\n.text-field-helper-text-error {\n color: #d32f2f;\n}\n","/*\n.number-field-wrapper {\n}\n.number-field-wrapper-light {\n}\n.number-field-wrapper-dark {\n}\n*/\n\n.number-field {\n border-radius: 0.25rem;\n box-sizing: border-box;\n padding: 0.5rem;\n width: 100%;\n}\n.number-field:focus-visible {\n outline: none;\n border: 1px solid #1976d2;\n}\n.number-field-light {\n background-color: #fff;\n color: #333;\n border: 1px solid #ccc;\n}\n.number-field-dark {\n background-color: #333;\n border: 1px solid #666;\n color: #fff;\n}\n.number-field-error {\n border: 1px solid #d32f2f;\n}\n.number-field-label {\n font-weight: bold;\n display: block;\n margin: 0 0 1rem 0;\n}\n/*\n.text-fiel-label-light {\n}\n.number-field-label-dark {\n}\n*/\n.number-field-label-error {\n color: #d32f2f;\n}\n.number-field-helper-text {\n font-style: italic;\n font-size: 0.9rem;\n padding-top: 0.5rem;\n}\n/*\n.number-field-helper-text-light {\n}\n.number-field-helper-text-dark {\n}\n*/\n.number-field-helper-text-error {\n color: #d32f2f;\n}\n","/*\n.bool-field-wrapper {\n margin-bottom: 2rem;\n}\n.bool-field-wrapper-light {\n}\n.bool-field-wrapper-dark {\n}\n*/\n\n.bool-field {\n border-radius: 0.25rem;\n box-sizing: border-box;\n padding: 0.5rem;\n}\n.bool-field:focus-visible {\n outline: none;\n border: 1px solid #1976d2;\n}\n.bool-field-light {\n background-color: #fff;\n color: #333;\n border: 1px solid #ccc;\n}\n.bool-field-dark {\n background-color: #333;\n border: 1px solid #666;\n color: #fff;\n}\n.bool-field-error {\n border: 1px solid #d32f2f;\n}\n.bool-field-label {\n font-weight: bold;\n display: block;\n margin: 0 0 1rem 0;\n}\n/*\n.text-fiel-label-light {\n}\n.bool-field-label-dark {\n}\n*/\n.bool-field-label-error {\n color: #d32f2f;\n}\n.bool-field-helper-text {\n font-style: italic;\n font-size: 0.9rem;\n margin-top: 0.5rem;\n}\n/*\n.bool-field-helper-text-light {\n}\n.bool-field-helper-text-dark {\n}\n*/\n.bool-field-helper-text-error {\n color: #d32f2f;\n}\n","/*\n.enum-field-wrapper {\n margin-bottom: 2rem;\n}\n.enum-field-wrapper-light {\n}\n.enum-field-wrapper-dark {\n}\n*/\n\n.enum-field {\n border-radius: 0.25rem;\n box-sizing: border-box;\n padding: 0.5rem;\n width: 100%;\n}\n.enum-field:focus-visible {\n outline: none;\n border: 1px solid #1976d2;\n}\n.enum-field-light {\n background-color: #fff;\n color: #333;\n border: 1px solid #ccc;\n}\n.enum-field-dark {\n background-color: #333;\n border: 1px solid #666;\n color: #fff;\n}\n.enum-field-error {\n border: 1px solid #d32f2f;\n}\n.enum-field-label {\n font-weight: bold;\n display: block;\n margin: 0 0 1rem 0;\n}\n/*\n.text-fiel-label-light {\n}\n.enum-field-label-dark {\n}\n*/\n.enum-field-label-error {\n color: #d32f2f;\n}\n.enum-field-helper-text {\n font-style: italic;\n font-size: 0.9rem;\n margin-top: 0.5rem;\n}\n/*\n.enum-field-helper-text-light {\n}\n.enum-field-helper-text-dark {\n}\n*/\n.enum-field-helper-text-error {\n color: #d32f2f;\n}\n",".button {\n align-items: center;\n border: none;\n border-radius: 4px;\n color: black;\n padding: .5rem 1rem;\n text-align: center;\n text-decoration: none;\n display: flex;\n font-size: 16px;\n gap: .5rem;\n margin: 4px 2px;\n cursor: pointer;\n}\n\n.button-light {\n background-color: #c7c7c7;\n color: black;\n}\n\n.button-dark {\n background-color: #383838;\n color: white;\n}\n\n.button-disabled {\n cursor: not-allowed;\n opacity: 0.5;\n}\n",".loader {\n border-radius: 50%;\n width: 40px;\n height: 40px;\n animation: spin 1s linear infinite;\n}\n\n.loader-light {\n border: 10px solid #f3f3f3;\n border-top: 10px solid #3498db;\n}\n\n.loader-dark {\n border: 10px solid #333;\n border-top: 10px solid #3498db;\n}\n\n @keyframes spin {\n 0% {\n transform: rotate(0deg);\n }\n 100% {\n transform: rotate(360deg);\n }\n} \n",".header {\n align-items: flex-start;\n display: flex;\n justify-content: space-between;\n padding: .5rem;\n}\n\n.header-light {\n background-color: #ddd;;\n}\n\n.header-dark {\n background-color: #222;\n}\n\n.header-info {\n padding: .5rem;\n}\n.header-info-light {\n background-color: #ddd;;\n color: #000;\n}\n.header-info-dark {\n background-color: #222;\n color: #fff;\n}\n",".canvas-wrapper {\n background-size: contain;\n background-repeat: no-repeat;\n position: relative;\n}\n",".form {\n display: flex;\n flex-direction: column;\n gap: 1rem;\n}\n",".shapes-table {\n border-collapse: collapse;\n width: 100%;\n}\n\n.shapes-table tr {\n cursor: pointer;\n}\n\n.shapes-table th {\n padding: .8rem .3rem;\n text-align: left;\n}\n\n.shapes-table td {\n padding: 0 .3rem;\n}\n\n.shapes-table tr td:last-child,\n.shapes-table tr th:last-child {\n text-align: right;\n}\n\n.shapes-table-light {\n background-color: #eee;\n color: #000;\n}\n\n.shapes-table-dark {\n background-color: #333;\n color: #fff;\n}\n\n.shapes-row-selected-light {\n background-color: #ccc;\n}\n\n.shapes-row-selected-dark {\n background-color: #666;\n}\n\n.shapes-row-even-light {\n background-color: #f7f7f7;\n}\n\n.shapes-row-even-dark {\n background-color: #444;\n}\n\n.shapes-row-odd-light {\n background-color: #f0f0f0;\n}\n\n.shapes-row-odd-dark {\n background-color: #555;\n}\n\n.shapesTableName {\n display: flex;\n align-items: center;\n}\n\n.shapesTableColor {\n border: 1px solid #000;\n box-sizing: border-box;\n display: inline-block;\n width: 24px;\n height: 24px;\n border-radius: 50%;\n margin-right: .5rem;\n}\n",".colorpickerWrapper {\n display: flex;\n flex-wrap: nowrap;\n gap: .2rem;\n}\n\n.colorpicker-button {\n box-sizing: border-box;\n width: 24px;\n height: 24px;\n border-radius: 50%;\n cursor: pointer;\n}\n\n.colorpicker-button-active {\n border: 2px solid red;\n}\n",".toolbar {\n align-items: center;\n display: flex;\n padding: .5rem;\n}\n\n.toolbar-light {\n background-color: #eee;;\n}\n\n.toolbar-dark {\n background-color: #333;\n}\n\n.toolbar-helper {\n padding: .5rem;\n}\n\n.toolbar-helper-light {\n background-color: #f7f7f7;;\n color: #000;\n}\n\n.toolbar-helper-dark {\n background-color: #222;\n color: #fff;\n}\n\n.toolbar-spacer {\n height: 20px;\n margin: 0 .5rem;\n width: 1px;\n}\n\n.toolbar-spacer-light {\n background-color: #ccc;\n}\n\n.toolbar-spacer-dark {\n background-color: #555;\n}\n",".top-bar {\n align-items: center;\n display: flex;\n gap: .5rem;\n justify-content: flex-end;\n margin-bottom: .5rem;\n}\n"]}