@aj-shadow/z-abs-complayer-bootstrap-client 0.0.0-aj-beta.221

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 (189) hide show
  1. package/.gitattributes +26 -0
  2. package/LICENSE.txt +96 -0
  3. package/README.md +5 -0
  4. package/npm-shrinkwrap.json +13 -0
  5. package/package.json +10 -0
  6. package/project/client/_build/Bundle-CompLayer-Bootstrap-client.bld +30 -0
  7. package/project/client/_build/Client-CompLayer-Bootstrap-client-jsx.bld +10 -0
  8. package/project/client/_build/Client-CompLayer-Bootstrap-client.bld +10 -0
  9. package/project/client/_build/Client-css-CompLayer-Bootstrap-bundle.bld +9 -0
  10. package/project/client/_build/server-css-font-CompLayer-Bootstrap-rc.bld +9 -0
  11. package/project/client/_build/z-abs-complayer-bootstrap-client.prj +43 -0
  12. package/project/client/breadcrump.jsx +63 -0
  13. package/project/client/button-new.jsx +141 -0
  14. package/project/client/button-text.jsx +142 -0
  15. package/project/client/button.jsx +140 -0
  16. package/project/client/core-components/button.jsx +139 -0
  17. package/project/client/core-components/original/dropdown.js +165 -0
  18. package/project/client/core-components/original/modal.js +358 -0
  19. package/project/client/core-components/original/popover.js +125 -0
  20. package/project/client/core-components/original/tooltip.js +677 -0
  21. package/project/client/css/breadcrump.css +28 -0
  22. package/project/client/css/button.css +139 -0
  23. package/project/client/css/group-popup.css +12 -0
  24. package/project/client/css/icons/icon-inline.css +4 -0
  25. package/project/client/css/icons/icon-markup.css +8 -0
  26. package/project/client/css/middle_button.css +12 -0
  27. package/project/client/css/mini_button.css +85 -0
  28. package/project/client/css/modal.css +4 -0
  29. package/project/client/css/original/bootstrap.css +6031 -0
  30. package/project/client/css/panel-dark.css +19 -0
  31. package/project/client/css/panel-light.css +19 -0
  32. package/project/client/css/popup.css +39 -0
  33. package/project/client/css/realtime-width.css +19 -0
  34. package/project/client/css/realtime-zoom.css +29 -0
  35. package/project/client/css/same_as_parent.css +12 -0
  36. package/project/client/css/scroll-list.css +47 -0
  37. package/project/client/css/tab-dark.css +85 -0
  38. package/project/client/css/tab-light.css +83 -0
  39. package/project/client/group.jsx +96 -0
  40. package/project/client/icons/file-icons.js +29 -0
  41. package/project/client/icons/folder-icons.js +34 -0
  42. package/project/client/icons-inline/const.js +15 -0
  43. package/project/client/icons-inline/icon-align.jsx +32 -0
  44. package/project/client/icons-inline/icon-checkbox.jsx +38 -0
  45. package/project/client/icons-inline/icon-communication-address.jsx +29 -0
  46. package/project/client/icons-inline/icon-communication-info.jsx +28 -0
  47. package/project/client/icons-inline/icon-communication-instance.jsx +28 -0
  48. package/project/client/icons-inline/icon-communication-ip.jsx +30 -0
  49. package/project/client/icons-inline/icon-communication-stack.jsx +28 -0
  50. package/project/client/icons-inline/icon-communication-transport.jsx +28 -0
  51. package/project/client/icons-inline/icon-communication.jsx +28 -0
  52. package/project/client/icons-inline/icon-con-connection-events.jsx +29 -0
  53. package/project/client/icons-inline/icon-con-message-events.jsx +29 -0
  54. package/project/client/icons-inline/icon-con-messages.jsx +46 -0
  55. package/project/client/icons-inline/icon-con-server-events.jsx +29 -0
  56. package/project/client/icons-inline/icon-debug-breakpoints-deactivate.jsx +28 -0
  57. package/project/client/icons-inline/icon-debug-breakpoints-remove.jsx +27 -0
  58. package/project/client/icons-inline/icon-debug-continue.jsx +27 -0
  59. package/project/client/icons-inline/icon-debug-enter.jsx +29 -0
  60. package/project/client/icons-inline/icon-debug-gui.jsx +36 -0
  61. package/project/client/icons-inline/icon-debug-ip.jsx +28 -0
  62. package/project/client/icons-inline/icon-debug-leave.jsx +29 -0
  63. package/project/client/icons-inline/icon-debug-pause.jsx +28 -0
  64. package/project/client/icons-inline/icon-debug-step-in.jsx +30 -0
  65. package/project/client/icons-inline/icon-debug-step-out.jsx +30 -0
  66. package/project/client/icons-inline/icon-debug-step-over.jsx +30 -0
  67. package/project/client/icons-inline/icon-debug-step.jsx +32 -0
  68. package/project/client/icons-inline/icon-doc-docs.jsx +31 -0
  69. package/project/client/icons-inline/icon-doc-documentation.jsx +32 -0
  70. package/project/client/icons-inline/icon-doc-education.jsx +32 -0
  71. package/project/client/icons-inline/icon-doc-markup-preview.jsx +30 -0
  72. package/project/client/icons-inline/icon-doc-markup.jsx +31 -0
  73. package/project/client/icons-inline/icon-doc-navigation-preview.jsx +33 -0
  74. package/project/client/icons-inline/icon-doc-navigation.jsx +34 -0
  75. package/project/client/icons-inline/icon-doc-video.jsx +47 -0
  76. package/project/client/icons-inline/icon-doc-workshop.jsx +32 -0
  77. package/project/client/icons-inline/icon-empty-line.jsx +27 -0
  78. package/project/client/icons-inline/icon-execution-as-service.jsx +34 -0
  79. package/project/client/icons-inline/icon-execution-clear.jsx +30 -0
  80. package/project/client/icons-inline/icon-execution-gui-slow.jsx +38 -0
  81. package/project/client/icons-inline/icon-execution-ip-slow.jsx +31 -0
  82. package/project/client/icons-inline/icon-execution-logs.jsx +32 -0
  83. package/project/client/icons-inline/icon-execution-play-slow.jsx +28 -0
  84. package/project/client/icons-inline/icon-execution-play.jsx +27 -0
  85. package/project/client/icons-inline/icon-execution-stop.jsx +27 -0
  86. package/project/client/icons-inline/icon-file-add.jsx +31 -0
  87. package/project/client/icons-inline/icon-file-delete.jsx +30 -0
  88. package/project/client/icons-inline/icon-file-new.jsx +27 -0
  89. package/project/client/icons-inline/icon-file-property.jsx +39 -0
  90. package/project/client/icons-inline/icon-file-save.jsx +30 -0
  91. package/project/client/icons-inline/icon-file-search.jsx +33 -0
  92. package/project/client/icons-inline/icon-files-save.jsx +35 -0
  93. package/project/client/icons-inline/icon-filter-hide.jsx +30 -0
  94. package/project/client/icons-inline/icon-filter-show.jsx +31 -0
  95. package/project/client/icons-inline/icon-filter.jsx +52 -0
  96. package/project/client/icons-inline/icon-folder-add.jsx +31 -0
  97. package/project/client/icons-inline/icon-folder-delete.jsx +30 -0
  98. package/project/client/icons-inline/icon-folder-new.jsx +27 -0
  99. package/project/client/icons-inline/icon-folder-property.jsx +39 -0
  100. package/project/client/icons-inline/icon-gui-event-action.jsx +29 -0
  101. package/project/client/icons-inline/icon-gui-event-function.jsx +27 -0
  102. package/project/client/icons-inline/icon-gui-event-info.jsx +29 -0
  103. package/project/client/icons-inline/icon-gui-event-instance.jsx +29 -0
  104. package/project/client/icons-inline/icon-gui-event-object.jsx +40 -0
  105. package/project/client/icons-inline/icon-gui-event-stack.jsx +37 -0
  106. package/project/client/icons-inline/icon-gui-events.jsx +34 -0
  107. package/project/client/icons-inline/icon-guid.jsx +24 -0
  108. package/project/client/icons-inline/icon-line-first.jsx +33 -0
  109. package/project/client/icons-inline/icon-line-last.jsx +31 -0
  110. package/project/client/icons-inline/icon-line-next-block.jsx +30 -0
  111. package/project/client/icons-inline/icon-line-next-line.jsx +30 -0
  112. package/project/client/icons-inline/icon-line-previous-block.jsx +30 -0
  113. package/project/client/icons-inline/icon-line-previous-line.jsx +29 -0
  114. package/project/client/icons-inline/icon-link.jsx +29 -0
  115. package/project/client/icons-inline/icon-markup-close.jsx +29 -0
  116. package/project/client/icons-inline/icon-markup-copy.jsx +28 -0
  117. package/project/client/icons-inline/icon-markup-help.jsx +28 -0
  118. package/project/client/icons-inline/icon-markup-open.jsx +30 -0
  119. package/project/client/icons-inline/icon-markup-save.jsx +29 -0
  120. package/project/client/icons-inline/icon-mode-dark.jsx +28 -0
  121. package/project/client/icons-inline/icon-mode-light.jsx +28 -0
  122. package/project/client/icons-inline/icon-not-implemented.jsx +28 -0
  123. package/project/client/icons-inline/icon-phase-data.jsx +26 -0
  124. package/project/client/icons-inline/icon-phase-execution.jsx +26 -0
  125. package/project/client/icons-inline/icon-phase-none.jsx +26 -0
  126. package/project/client/icons-inline/icon-phase-postcondition.jsx +26 -0
  127. package/project/client/icons-inline/icon-phase-precondition.jsx +26 -0
  128. package/project/client/icons-inline/icon-project-save.jsx +30 -0
  129. package/project/client/icons-inline/icon-repo.jsx +33 -0
  130. package/project/client/icons-inline/icon-resize-horizontal-decrease.jsx +30 -0
  131. package/project/client/icons-inline/icon-resize-horizontal-increase.jsx +31 -0
  132. package/project/client/icons-inline/icon-scroll-auto.jsx +37 -0
  133. package/project/client/icons-inline/icon-stack-event-info.jsx +27 -0
  134. package/project/client/icons-inline/icon-stack-event-instance.jsx +27 -0
  135. package/project/client/icons-inline/icon-stack-event-stack.jsx +27 -0
  136. package/project/client/icons-inline/icon-stack-events.jsx +32 -0
  137. package/project/client/icons-inline/icon-stage-create-static-ip-address.jsx +32 -0
  138. package/project/client/icons-inline/icon-stage-delete-static-ip-address.jsx +27 -0
  139. package/project/client/icons-inline/icon-stage-host.jsx +40 -0
  140. package/project/client/icons-inline/icon-stage-ping.jsx +29 -0
  141. package/project/client/icons-inline/icon-stage.jsx +37 -0
  142. package/project/client/icons-inline/icon-state-event-executed.jsx +25 -0
  143. package/project/client/icons-inline/icon-state-event-not-executed.jsx +25 -0
  144. package/project/client/icons-inline/icon-zoom-in.jsx +30 -0
  145. package/project/client/icons-inline/icon-zoom-out.jsx +30 -0
  146. package/project/client/icons-inline/icon.jsx +229 -0
  147. package/project/client/icons-inline/inner-icons/inner-icon-connection.jsx +27 -0
  148. package/project/client/icons-inline/inner-icons/inner-icon-file-delete.jsx +26 -0
  149. package/project/client/icons-inline/inner-icons/inner-icon-file-save.jsx +28 -0
  150. package/project/client/icons-inline/inner-icons/inner-icon-file.jsx +26 -0
  151. package/project/client/icons-inline/inner-icons/inner-icon-folder.jsx +28 -0
  152. package/project/client/icons-inline/inner-icons/inner-icon-gui.jsx +28 -0
  153. package/project/client/icons-inline/inner-icons/inner-icon-info-type.jsx +30 -0
  154. package/project/client/icons-inline/inner-icons/inner-icon-instance-type.jsx +32 -0
  155. package/project/client/icons-inline/inner-icons/inner-icon-item.jsx +27 -0
  156. package/project/client/icons-inline/inner-icons/inner-icon-message.jsx +26 -0
  157. package/project/client/icons-inline/inner-icons/inner-icon-project.jsx +29 -0
  158. package/project/client/icons-inline/inner-icons/inner-icon-server.jsx +27 -0
  159. package/project/client/icons-inline/inner-icons/inner-icon-stack-event.jsx +31 -0
  160. package/project/client/icons-inline/inner-icons/inner-icon-stack-type.jsx +31 -0
  161. package/project/client/icons-inline/inner-icons/inner-icon-state-event.jsx +38 -0
  162. package/project/client/image.jsx +80 -0
  163. package/project/client/marked-textarea.jsx +156 -0
  164. package/project/client/modal-body.jsx +27 -0
  165. package/project/client/modal-footer.jsx +27 -0
  166. package/project/client/modal-header.jsx +40 -0
  167. package/project/client/modal.jsx +71 -0
  168. package/project/client/popover.jsx +129 -0
  169. package/project/client/realtime-components/realtime-button.jsx +50 -0
  170. package/project/client/realtime-components/realtime-press-down-button.jsx +66 -0
  171. package/project/client/realtime-components/realtime-width/realtime-button-width-decrease.jsx +32 -0
  172. package/project/client/realtime-components/realtime-width/realtime-button-width-increase.jsx +32 -0
  173. package/project/client/realtime-components/realtime-width/realtime-width-const.js +12 -0
  174. package/project/client/realtime-components/realtime-width/realtime-width-display.jsx +26 -0
  175. package/project/client/realtime-components/realtime-width.jsx +52 -0
  176. package/project/client/realtime-components/realtime-zoom/realtime-button-zoom-in.jsx +42 -0
  177. package/project/client/realtime-components/realtime-zoom/realtime-button-zoom-out.jsx +42 -0
  178. package/project/client/realtime-components/realtime-zoom/realtime-zoom-const.js +10 -0
  179. package/project/client/realtime-components/realtime-zoom/realtime-zoom-display.jsx +27 -0
  180. package/project/client/realtime-components/realtime-zoom.jsx +52 -0
  181. package/project/client/scroll-list/scroll-list-cache.js +32 -0
  182. package/project/client/scroll-list/scroll-list-frame.js +358 -0
  183. package/project/client/scroll-list/scroll-list-node.js +107 -0
  184. package/project/client/scroll-list/scroll-list-template-data.js +13 -0
  185. package/project/client/scroll-list/scroll-list-zero-height.js +40 -0
  186. package/project/client/scroll-list/scroll-list.js +123 -0
  187. package/project/client/tab.jsx +30 -0
  188. package/project/client/tabs.jsx +191 -0
  189. package/project/z-abs-complayer-bootstrap-client.tree +204 -0
@@ -0,0 +1,28 @@
1
+
2
+ 'use strict';
3
+
4
+ import InnerIconMessage from './inner-icons/inner-icon-message';
5
+ import InnerIconInstanceType from './inner-icons/inner-icon-instance-type';
6
+ import ReactComponentBase from 'z-abs-corelayer-client/client/react-component/react-component-base';
7
+ import React from 'react';
8
+
9
+
10
+ export default class IconCommunicationInstance extends ReactComponentBase {
11
+ constructor(props) {
12
+ super(props);
13
+ }
14
+
15
+ shouldUpdate(nextProps, nextState) {
16
+ return !this.shallowCompare(this.props, nextProps);
17
+ }
18
+
19
+ render() {
20
+ const stroke = "#333";
21
+ return (
22
+ <svg width="100%" height="100%" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
23
+ <InnerIconMessage stroke={stroke} />
24
+ <InnerIconInstanceType />
25
+ </svg>
26
+ );
27
+ }
28
+ }
@@ -0,0 +1,30 @@
1
+
2
+ 'use strict';
3
+
4
+ import InnerIconMessage from './inner-icons/inner-icon-message';
5
+ import ReactComponentBase from 'z-abs-corelayer-client/client/react-component/react-component-base';
6
+ import React from 'react';
7
+
8
+
9
+ export default class IconCommunicationIp extends ReactComponentBase {
10
+ constructor(props) {
11
+ super(props);
12
+ }
13
+
14
+ static stroke = "#333";
15
+ static strokeWidth = "0.5";
16
+
17
+ shouldUpdate(nextProps, nextState) {
18
+ return !this.shallowCompare(this.props, nextProps);
19
+ }
20
+
21
+ render() {
22
+ return (
23
+ <svg width="100%" height="100%" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
24
+ <InnerIconMessage stroke={IconCommunicationIp.stroke} />
25
+ <path stroke={IconCommunicationIp.stroke} strokeWidth={IconCommunicationIp.strokeWidth} d="M12 10 C9.66 10 7.5 11.8 7.5 14 C7.5 17.2 12 22 12 22 C12 22 16.5 17.2 16.5 14 C16.5 11.8 14.34 10 12 10 Z" fill="Gold" />
26
+ <circle stroke={IconCommunicationIp.stroke} strokeWidth={IconCommunicationIp.strokeWidth} cx="12" cy="14" r="2" fill="white"/>
27
+ </svg>
28
+ );
29
+ }
30
+ }
@@ -0,0 +1,28 @@
1
+
2
+ 'use strict';
3
+
4
+ import InnerIconMessage from './inner-icons/inner-icon-message';
5
+ import InnerIconStackType from './inner-icons/inner-icon-stack-type';
6
+ import ReactComponentBase from 'z-abs-corelayer-client/client/react-component/react-component-base';
7
+ import React from 'react';
8
+
9
+
10
+ export default class IconCommunicationStack extends ReactComponentBase {
11
+ constructor(props) {
12
+ super(props);
13
+ }
14
+
15
+ shouldUpdate(nextProps, nextState) {
16
+ return !this.shallowCompare(this.props, nextProps);
17
+ }
18
+
19
+ render() {
20
+ const stroke = "#333";
21
+ return (
22
+ <svg width="100%" height="100%" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
23
+ <InnerIconMessage stroke={stroke} />
24
+ <InnerIconStackType />
25
+ </svg>
26
+ );
27
+ }
28
+ }
@@ -0,0 +1,28 @@
1
+
2
+ 'use strict';
3
+
4
+ import InnerIconMessage from './inner-icons/inner-icon-message';
5
+ import ReactComponentBase from 'z-abs-corelayer-client/client/react-component/react-component-base';
6
+ import React from 'react';
7
+
8
+
9
+ export default class IconCommunicationTransport extends ReactComponentBase {
10
+ constructor(props) {
11
+ super(props);
12
+ }
13
+
14
+ shouldUpdate(nextProps, nextState) {
15
+ return !this.shallowCompare(this.props, nextProps);
16
+ }
17
+
18
+ render() {
19
+ const stroke = "#333";
20
+ const strokeWidth = "0.5";
21
+ return (
22
+ <svg width="100%" height="100%" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
23
+ <InnerIconMessage stroke={stroke} />
24
+ <path stroke={stroke} strokeWidth={strokeWidth} d="M12 10 L17 12 L17 16 C17 19 14.5 22 12 22 C9.5 22 7 19 7 16 L7 12 Z" fill="Gold"/>
25
+ </svg>
26
+ );
27
+ }
28
+ }
@@ -0,0 +1,28 @@
1
+
2
+ 'use strict';
3
+
4
+ import InnerIconMessage from './inner-icons/inner-icon-message';
5
+ import ReactComponentBase from 'z-abs-corelayer-client/client/react-component/react-component-base';
6
+ import React from 'react';
7
+
8
+
9
+ export default class IconCommunication extends ReactComponentBase {
10
+ constructor(props) {
11
+ super(props);
12
+ }
13
+
14
+ shouldUpdate(nextProps, nextState) {
15
+ return !this.shallowCompare(this.props, nextProps);
16
+ }
17
+
18
+ render() {
19
+ const stroke = "#333";
20
+ return (
21
+ <svg width="100%" height="100%" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
22
+ <g transform="translate(0,6.5)">
23
+ <InnerIconMessage stroke={stroke} />
24
+ </g>
25
+ </svg>
26
+ );
27
+ }
28
+ }
@@ -0,0 +1,29 @@
1
+
2
+ 'use strict';
3
+
4
+ import InnerIconConnection from './inner-icons/inner-icon-connection';
5
+ import ReactComponentBase from 'z-abs-corelayer-client/client/react-component/react-component-base';
6
+ import React from 'react';
7
+
8
+
9
+ export default class IconConConnectionEvents extends ReactComponentBase {
10
+ constructor(props) {
11
+ super(props);
12
+ }
13
+
14
+ shouldUpdate(nextProps, nextState) {
15
+ return !this.shallowCompare(this.props, nextProps);
16
+ }
17
+
18
+ render() {
19
+ const stroke = "#333";
20
+ return (
21
+ <svg width="100%" height="100%" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
22
+ <InnerIconConnection stroke={stroke} />
23
+ <g transform="translate(24,10) scale(-1, 1)">
24
+ <InnerIconConnection stroke={stroke} />
25
+ </g>
26
+ </svg>
27
+ );
28
+ }
29
+ }
@@ -0,0 +1,29 @@
1
+
2
+ 'use strict';
3
+
4
+ import InnerIconMessage from './inner-icons/inner-icon-message';
5
+ import ReactComponentBase from 'z-abs-corelayer-client/client/react-component/react-component-base';
6
+ import React from 'react';
7
+
8
+
9
+ export default class IconConMessageEvents extends ReactComponentBase {
10
+ constructor(props) {
11
+ super(props);
12
+ }
13
+
14
+ shouldUpdate(nextProps, nextState) {
15
+ return !this.shallowCompare(this.props, nextProps);
16
+ }
17
+
18
+ render() {
19
+ const stroke = "#333";
20
+ return (
21
+ <svg width="100%" height="100%" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
22
+ <InnerIconMessage stroke={stroke} />
23
+ <g transform="translate(24,10) scale(-1, 1)">
24
+ <InnerIconMessage stroke={stroke} />
25
+ </g>
26
+ </svg>
27
+ );
28
+ }
29
+ }
@@ -0,0 +1,46 @@
1
+
2
+ 'use strict';
3
+
4
+ import ReactComponentBase from 'z-abs-corelayer-client/client/react-component/react-component-base';
5
+ import React from 'react';
6
+
7
+
8
+ export default class IconConMessages extends ReactComponentBase {
9
+ constructor(props) {
10
+ super(props);
11
+ }
12
+
13
+ shouldUpdate(nextProps, nextState) {
14
+ return !this.shallowCompare(this.props, nextProps);
15
+ }
16
+
17
+ static TOP_POINT = 4;
18
+ static MIDDLE_TOP_POINT = IconConMessages.TOP_POINT + 4;
19
+ static MIDDLE_BOTTOM_POINT = IconConMessages.MIDDLE_TOP_POINT + 4;
20
+ static BOTTOM_POINT = IconConMessages.MIDDLE_BOTTOM_POINT + 4;
21
+ static WIDTH = 8;
22
+ static WIDTH_R = 16;
23
+ static LEFT_POINT = 4;
24
+ static MIDDLE_POINT = IconConMessages.LEFT_POINT + IconConMessages.WIDTH;
25
+ static RIGHT_POINT = IconConMessages.MIDDLE_POINT + IconConMessages.WIDTH;
26
+
27
+ render() {
28
+ if(this.props.active) {
29
+ return (
30
+ <svg width="100%" height="100%" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
31
+ <rect x={IconConMessages.LEFT_POINT} y={IconConMessages.TOP_POINT + 4} width={IconConMessages.WIDTH_R} height="8" stroke="none" strokeWidth="0.5" fill="White" />
32
+ <polygon stroke="#333" strokeWidth="0.5" fill="Gold" points={`${IconConMessages.LEFT_POINT},${IconConMessages.MIDDLE_TOP_POINT} ${IconConMessages.MIDDLE_POINT},${IconConMessages.MIDDLE_BOTTOM_POINT} ${IconConMessages.RIGHT_POINT},${IconConMessages.MIDDLE_TOP_POINT} ${IconConMessages.RIGHT_POINT},${IconConMessages.BOTTOM_POINT} ${IconConMessages.LEFT_POINT},${IconConMessages.BOTTOM_POINT} ${IconConMessages.LEFT_POINT},${IconConMessages.MIDDLE_TOP_POINT} ${IconConMessages.MIDDLE_POINT},${IconConMessages.TOP_POINT} ${IconConMessages.RIGHT_POINT},${IconConMessages.MIDDLE_TOP_POINT}`} />
33
+ </svg>
34
+ );
35
+ }
36
+ else {
37
+ return (
38
+ <svg width="100%" height="100%" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
39
+ <rect x={IconConMessages.LEFT_POINT} y={IconConMessages.TOP_POINT + 4} width={IconConMessages.WIDTH_R} height="8" stroke="none" strokeWidth="0.5" fill="White" />
40
+ <polygon stroke="#333" strokeWidth="0.5" fill="Gold" points={`${IconConMessages.LEFT_POINT},${IconConMessages.MIDDLE_TOP_POINT} ${IconConMessages.MIDDLE_POINT},${IconConMessages.MIDDLE_BOTTOM_POINT} ${IconConMessages.RIGHT_POINT},${IconConMessages.MIDDLE_TOP_POINT} ${IconConMessages.RIGHT_POINT},${IconConMessages.BOTTOM_POINT} ${IconConMessages.LEFT_POINT},${IconConMessages.BOTTOM_POINT} ${IconConMessages.LEFT_POINT},${IconConMessages.MIDDLE_TOP_POINT}`} />
41
+ <polygon stroke="#333" strokeWidth="0.5" fill="Gold" points={`${IconConMessages.LEFT_POINT + 2},${IconConMessages.MIDDLE_TOP_POINT} ${IconConMessages.MIDDLE_POINT},${IconConMessages.MIDDLE_BOTTOM_POINT - 1} ${IconConMessages.RIGHT_POINT - 2},${IconConMessages.MIDDLE_TOP_POINT}`} />
42
+ </svg>
43
+ );
44
+ }
45
+ }
46
+ }
@@ -0,0 +1,29 @@
1
+
2
+ 'use strict';
3
+
4
+ import InnerIconConnection from './inner-icons/inner-icon-connection';
5
+ import ReactComponentBase from 'z-abs-corelayer-client/client/react-component/react-component-base';
6
+ import React from 'react';
7
+
8
+
9
+ export default class IconConServerEvents extends ReactComponentBase {
10
+ constructor(props) {
11
+ super(props);
12
+ }
13
+
14
+ static stroke = "#333";
15
+ static strokeWidth = "0.3";
16
+
17
+ shouldUpdate(nextProps, nextState) {
18
+ return !this.shallowCompare(this.props, nextProps);
19
+ }
20
+
21
+ render() {
22
+ return (
23
+ <svg width="100%" height="100%" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
24
+ <path d="M7,3.5 L15,8.5 L7,13.5 z" stroke={IconConServerEvents.stroke} strokeWidth={IconConServerEvents.strokeWidth} fill="Gold" />
25
+ <rect x="14" y="13" width="8" height="8" stroke={IconConServerEvents.stroke} strokeWidth={IconConServerEvents.strokeWidth} fill="Gold" />
26
+ </svg>
27
+ );
28
+ }
29
+ }
@@ -0,0 +1,28 @@
1
+
2
+ 'use strict';
3
+
4
+ import ReactComponentBase from 'z-abs-corelayer-client/client/react-component/react-component-base';
5
+ import React from 'react';
6
+
7
+
8
+ export default class IconDebugBreakpointsDeactivate extends ReactComponentBase {
9
+ constructor(props) {
10
+ super(props);
11
+ }
12
+
13
+ static stroke = "cornflowerblue";
14
+ static fill = "none";
15
+ static strokeWidth = "2";
16
+
17
+ shouldUpdate(nextProps, nextState) {
18
+ return !this.shallowCompare(this.props, nextProps);
19
+ }
20
+
21
+ render() {
22
+ return (
23
+ <svg width="100%" height="100%" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
24
+ <path className={this.props.colorMark} d="M4,9 L15,9 L19,12 L15,15 L4,15 z" stroke={IconDebugBreakpointsDeactivate.stroke} strokeWidth={IconDebugBreakpointsDeactivate.strokeWidth} fill={IconDebugBreakpointsDeactivate.fill} />
25
+ </svg>
26
+ );
27
+ }
28
+ }
@@ -0,0 +1,27 @@
1
+
2
+ 'use strict';
3
+
4
+ import ReactComponentBase from 'z-abs-corelayer-client/client/react-component/react-component-base';
5
+ import React from 'react';
6
+
7
+
8
+ export default class IconDebugBreakpointsRemove extends ReactComponentBase {
9
+ constructor(props) {
10
+ super(props);
11
+ }
12
+
13
+ static stroke = "cornflowerblue";
14
+ static strokeWidth = "2";
15
+
16
+ shouldUpdate(nextProps, nextState) {
17
+ return !this.shallowCompare(this.props, nextProps);
18
+ }
19
+
20
+ render() {
21
+ return (
22
+ <svg width="100%" height="100%" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
23
+ <path className={this.props.colorMark} d="M4,9 L15,9 L19,12 L15,15 L4,15 z" stroke={IconDebugBreakpointsRemove.stroke} strokeWidth={IconDebugBreakpointsRemove.strokeWidth} fill={IconDebugBreakpointsRemove.stroke} />
24
+ </svg>
25
+ );
26
+ }
27
+ }
@@ -0,0 +1,27 @@
1
+
2
+ 'use strict';
3
+
4
+ import ReactComponentBase from 'z-abs-corelayer-client/client/react-component/react-component-base';
5
+ import React from 'react';
6
+
7
+
8
+ export default class IconDebugContinue extends ReactComponentBase {
9
+ constructor(props) {
10
+ super(props);
11
+ }
12
+
13
+ static stroke = "Crimson";
14
+ static strokeWidth = "0.3";
15
+
16
+ shouldUpdate(nextProps, nextState) {
17
+ return !this.shallowCompare(this.props, nextProps);
18
+ }
19
+
20
+ render() {
21
+ return (
22
+ <svg width="100%" height="100%" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
23
+ <path className={this.props.colorMark} d="M9,7 L16,11.5 L9,16 z" stroke={IconDebugContinue.stroke} strokeWidth={IconDebugContinue.strokeWidth} fill={IconDebugContinue.stroke} />
24
+ </svg>
25
+ );
26
+ }
27
+ }
@@ -0,0 +1,29 @@
1
+
2
+ 'use strict';
3
+
4
+ import ReactComponentBase from 'z-abs-corelayer-client/client/react-component/react-component-base';
5
+ import React from 'react';
6
+
7
+
8
+ export default class IconDebugEnter extends ReactComponentBase {
9
+ constructor(props) {
10
+ super(props);
11
+ }
12
+
13
+ static stroke = "#333";
14
+ static strokeWidth = "1.5";
15
+
16
+ shouldUpdate(nextProps, nextState) {
17
+ return !this.shallowCompare(this.props, nextProps);
18
+ }
19
+
20
+ render() {
21
+ return (
22
+ <svg className="icon-inline" width="100%" height="100%" viewBox="0 0 18 18" xmlns="http://www.w3.org/2000/svg">
23
+ <rect className={`icon_${this.props.colorMark}`} x="7" y="4.5" width="8" height="9" rx="2" ry="2" strokeWidth={IconDebugEnter.strokeWidth} fill="#eee" />
24
+ <line className={`icon_${this.props.colorMark}`} x1="2" x2="10" y1="9" y2="9" strokeWidth={IconDebugEnter.strokeWidth} />
25
+ <path className={`icon_${this.props.colorMark}`} d="M11,9, L9.5,8 L9.5,10 z" strokeWidth={IconDebugEnter.strokeWidth} />
26
+ </svg>
27
+ );
28
+ }
29
+ }
@@ -0,0 +1,36 @@
1
+
2
+ 'use strict';
3
+
4
+ import ReactComponentBase from 'z-abs-corelayer-client/client/react-component/react-component-base';
5
+ import React from 'react';
6
+
7
+
8
+ export default class IconDebugGui extends ReactComponentBase {
9
+ constructor(props) {
10
+ super(props);
11
+ }
12
+
13
+ static crossStrokeWidth = "0.3";
14
+ static ropeStorke = "#555";
15
+ static ropeStrokeWidth="0.5";
16
+
17
+ shouldUpdate(nextProps, nextState) {
18
+ return !this.shallowCompare(this.props, nextProps);
19
+ }
20
+
21
+ render() {
22
+ return (
23
+ <svg className="icon-inline" width="100%" height="100%" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
24
+ <g transform="translate(1,2)">
25
+ <line x1="11" x2="11" y1="20" y2="6" strokeLinecap="round" stroke={IconDebugGui.ropeStorke} strokeWidth={IconDebugGui.ropeStrokeWidth} />
26
+ <line x1="7" x2="2" y1="20" y2="8" strokeLinecap="round" stroke={IconDebugGui.ropeStorke} strokeWidth={IconDebugGui.ropeStrokeWidth} />
27
+ <line x1="15" x2="20" y1="20" y2="8" strokeLinecap="round" stroke={IconDebugGui.ropeStorke} strokeWidth={IconDebugGui.ropeStrokeWidth} />
28
+ <line x1="9" x2="2" y1="20" y2="3" strokeLinecap="round" stroke={IconDebugGui.ropeStorke} strokeWidth={IconDebugGui.ropeStrokeWidth} />
29
+ <line x1="13" x2="20" y1="20" y2="3" strokeLinecap="round" stroke={IconDebugGui.ropeStorke} strokeWidth={IconDebugGui.ropeStrokeWidth} />
30
+ <polygon className={`icon_${this.props.colorMark}`} strokeWidth={IconDebugGui.crossStrokeWidth} points="11,4 3,1 1,2 1,3 8,5 1,7 1,8 3,9 11,6.3 19,9 21,8 21,7 14,5 21,3 21,2 19,1" />
31
+ <path className={`icon_${this.props.colorMark}`} strokeWidth={IconDebugGui.crossStrokeWidth} fill="none" d="M11,4 L3,1 L1,2 L1,3 L8,5 L1,7 L1,8 L3,9 L11,6.3 L19,9 L21,8 L21,7 L14,5.1 L21,3 L21,2 L19,1 z M1,7 L3,8 L3,9 M3,8 L21,2 M19,9 L19,8 L21,7 M19,8 L11,5.3 M8,5 L11,4 M1,2 L9.35,4.5 M12.7,4.8 L14,5.1 M11,5.3 L11,6.3" />
32
+ </g>
33
+ </svg>
34
+ );
35
+ }
36
+ }
@@ -0,0 +1,28 @@
1
+
2
+ 'use strict';
3
+
4
+ import ReactComponentBase from 'z-abs-corelayer-client/client/react-component/react-component-base';
5
+ import React from 'react';
6
+
7
+
8
+ export default class IconDebugIp extends ReactComponentBase {
9
+ constructor(props) {
10
+ super(props);
11
+ }
12
+
13
+ static stroke = "#333";
14
+ static strokeWidth = "0.3";
15
+
16
+ shouldUpdate(nextProps, nextState) {
17
+ return !this.shallowCompare(this.props, nextProps);
18
+ }
19
+
20
+ render() {
21
+ return (
22
+ <svg className="icon-inline" width="100%" height="100%" viewBox="0 0 18 18" xmlns="http://www.w3.org/2000/svg">
23
+ <rect className={`icon_${this.props.colorMark}`} x="3" y="8" width="10" height="3" stroke={this.props.stroke} strokeWidth={IconDebugIp.strokeWidth} fill="#333" />
24
+ <path className={`icon_${this.props.colorMark}`} d="M11,6.5 L16,9.5 L11,12.5 z" stroke={this.props.stroke} strokeWidth={IconDebugIp.strokeWidth} fill={this.props.stroke} />
25
+ </svg>
26
+ );
27
+ }
28
+ }
@@ -0,0 +1,29 @@
1
+
2
+ 'use strict';
3
+
4
+ import ReactComponentBase from 'z-abs-corelayer-client/client/react-component/react-component-base';
5
+ import React from 'react';
6
+
7
+
8
+ export default class IconDebugLeave extends ReactComponentBase {
9
+ constructor(props) {
10
+ super(props);
11
+ }
12
+
13
+ static stroke = "#333";
14
+ static strokeWidth = "1.5";
15
+
16
+ shouldUpdate(nextProps, nextState) {
17
+ return !this.shallowCompare(this.props, nextProps);
18
+ }
19
+
20
+ render() {
21
+ return (
22
+ <svg className="icon-inline" width="100%" height="100%" viewBox="0 0 18 18" xmlns="http://www.w3.org/2000/svg">
23
+ <rect className={`icon_${this.props.colorMark}`} x="7" y="4.5" width="8" height="9" rx="2" ry="2" strokeWidth={IconDebugLeave.strokeWidth} fill="#eee" />
24
+ <line className={`icon_${this.props.colorMark}`} x1="2" x2="11" y1="9" y2="9" strokeWidth={IconDebugLeave.strokeWidth} />
25
+ <path className={`icon_${this.props.colorMark}`} d="M2,9, L4,8 L4,10 z" strokeWidth={IconDebugLeave.strokeWidth} />
26
+ </svg>
27
+ );
28
+ }
29
+ }
@@ -0,0 +1,28 @@
1
+
2
+ 'use strict';
3
+
4
+ import ReactComponentBase from 'z-abs-corelayer-client/client/react-component/react-component-base';
5
+ import React from 'react';
6
+
7
+
8
+ export default class IconDebugPause extends ReactComponentBase {
9
+ constructor(props) {
10
+ super(props);
11
+ }
12
+
13
+ static stroke = "Crimson";
14
+ static strokeWidth = "3";
15
+
16
+ shouldUpdate(nextProps, nextState) {
17
+ return !this.shallowCompare(this.props, nextProps);
18
+ }
19
+
20
+ render() {
21
+ return (
22
+ <svg width="100%" height="100%" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
23
+ <line x1="10" x2="10" y1="7.5" y2="16.5" stroke={IconDebugPause.stroke} strokeWidth={IconDebugPause.strokeWidth} fill={IconDebugPause.stroke} />
24
+ <line x1="14" x2="14" y1="7.5" y2="16.5" stroke={IconDebugPause.stroke} strokeWidth={IconDebugPause.strokeWidth} fill={IconDebugPause.stroke} />
25
+ </svg>
26
+ );
27
+ }
28
+ }
@@ -0,0 +1,30 @@
1
+
2
+ 'use strict';
3
+
4
+ import ReactComponentBase from 'z-abs-corelayer-client/client/react-component/react-component-base';
5
+ import React from 'react';
6
+
7
+
8
+ export default class IconDebugStepIn extends ReactComponentBase {
9
+ constructor(props) {
10
+ super(props);
11
+ }
12
+
13
+ static stroke = "Crimson";
14
+ static strokeWidth = "1.5";
15
+
16
+ shouldUpdate(nextProps, nextState) {
17
+ return !this.shallowCompare(this.props, nextProps);
18
+ }
19
+
20
+ render() {
21
+ return (
22
+ <svg width="100%" height="100%" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
23
+ <circle cx="12" cy="18" r="2" stroke={IconDebugStepIn.stroke} strokeWidth={IconDebugStepIn.strokeWidth} fill={IconDebugStepIn.stroke} />
24
+ <line x1="12" x2="12" y1="4" y2="12" stroke={IconDebugStepIn.stroke} strokeWidth={IconDebugStepIn.strokeWidth} fill={IconDebugStepIn.stroke} />
25
+ <line x1="9" x2="12" y1="9" y2="12" stroke={IconDebugStepIn.stroke} strokeWidth={IconDebugStepIn.strokeWidth} fill={IconDebugStepIn.stroke} />
26
+ <line x1="15" x2="12" y1="9" y2="12" stroke={IconDebugStepIn.stroke} strokeWidth={IconDebugStepIn.strokeWidth} fill={IconDebugStepIn.stroke} />
27
+ </svg>
28
+ );
29
+ }
30
+ }
@@ -0,0 +1,30 @@
1
+
2
+ 'use strict';
3
+
4
+ import ReactComponentBase from 'z-abs-corelayer-client/client/react-component/react-component-base';
5
+ import React from 'react';
6
+
7
+
8
+ export default class IconDebugStepOut extends ReactComponentBase {
9
+ constructor(props) {
10
+ super(props);
11
+ }
12
+
13
+ static stroke = "Crimson";
14
+ static strokeWidth = "1.5";
15
+
16
+ shouldUpdate(nextProps, nextState) {
17
+ return !this.shallowCompare(this.props, nextProps);
18
+ }
19
+
20
+ render() {
21
+ return (
22
+ <svg width="100%" height="100%" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
23
+ <circle cx="12" cy="18" r="2" stroke={IconDebugStepOut.stroke} strokeWidth={IconDebugStepOut.strokeWidth} fill={IconDebugStepOut.stroke} />
24
+ <line x1="12" x2="12" y1="4" y2="12" stroke={IconDebugStepOut.stroke} strokeWidth={IconDebugStepOut.strokeWidth} fill={IconDebugStepOut.stroke} />
25
+ <line x1="9" x2="12" y1="7" y2="4" stroke={IconDebugStepOut.stroke} strokeWidth={IconDebugStepOut.strokeWidth} fill={IconDebugStepOut.stroke} />
26
+ <line x1="15" x2="12" y1="7" y2="4" stroke={IconDebugStepOut.stroke} strokeWidth={IconDebugStepOut.strokeWidth} fill={IconDebugStepOut.stroke} />
27
+ </svg>
28
+ );
29
+ }
30
+ }
@@ -0,0 +1,30 @@
1
+
2
+ 'use strict';
3
+
4
+ import ReactComponentBase from 'z-abs-corelayer-client/client/react-component/react-component-base';
5
+ import React from 'react';
6
+
7
+
8
+ export default class IconDebugStepOver extends ReactComponentBase {
9
+ constructor(props) {
10
+ super(props);
11
+ }
12
+
13
+ static stroke = "Crimson";
14
+ static strokeWidth = "1.5";
15
+
16
+ shouldUpdate(nextProps, nextState) {
17
+ return !this.shallowCompare(this.props, nextProps);
18
+ }
19
+
20
+ render() {
21
+ return (
22
+ <svg width="100%" height="100%" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
23
+ <circle cx="12" cy="18" r="2" stroke={IconDebugStepOver.stroke} strokeWidth={IconDebugStepOver.strokeWidth} fill={IconDebugStepOver.stroke} />
24
+ <path d="M6 12 A6 5 0 0 1 18 12" stroke={IconDebugStepOver.stroke} strokeWidth={IconDebugStepOver.strokeWidth} fill="none" />
25
+ <line x1="18.5" x2="19" y1="11" y2="7" stroke={IconDebugStepOver.stroke} strokeWidth={IconDebugStepOver.strokeWidth} fill={IconDebugStepOver.stroke} />
26
+ <line x1="19" x2="14" y1="12" y2="10" stroke={IconDebugStepOver.stroke} strokeWidth={IconDebugStepOver.strokeWidth} fill={IconDebugStepOver.stroke} />
27
+ </svg>
28
+ );
29
+ }
30
+ }
@@ -0,0 +1,32 @@
1
+
2
+ 'use strict';
3
+
4
+ import ReactComponentBase from 'z-abs-corelayer-client/client/react-component/react-component-base';
5
+ import React from 'react';
6
+
7
+
8
+ export default class IconDebugStep extends ReactComponentBase {
9
+ constructor(props) {
10
+ super(props);
11
+ }
12
+
13
+ static stroke = "Crimson";
14
+ static strokeWidth = "1.5";
15
+
16
+ shouldUpdate(nextProps, nextState) {
17
+ return !this.shallowCompare(this.props, nextProps);
18
+ }
19
+
20
+ render() {
21
+ return (
22
+ <svg width="100%" height="100%" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
23
+ <g transform="rotate(270, 12, 12)">
24
+ <circle cx="12" cy="18" r="2" stroke={IconDebugStep.stroke} strokeWidth={IconDebugStep.strokeWidth} fill={IconDebugStep.stroke} />
25
+ <line x1="12" x2="12" y1="4" y2="12" stroke={IconDebugStep.stroke} strokeWidth={IconDebugStep.strokeWidth} fill={IconDebugStep.stroke} />
26
+ <line x1="9" x2="12" y1="9" y2="12" stroke={IconDebugStep.stroke} strokeWidth={IconDebugStep.strokeWidth} fill={IconDebugStep.stroke} />
27
+ <line x1="15" x2="12" y1="9" y2="12" stroke={IconDebugStep.stroke} strokeWidth={IconDebugStep.strokeWidth} fill={IconDebugStep.stroke} />
28
+ </g>
29
+ </svg>
30
+ );
31
+ }
32
+ }