cx 25.10.0 → 25.10.1

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 (137) hide show
  1. package/LICENSE-THIRD-PARTY.md +91 -91
  2. package/LICENSE.md +7 -7
  3. package/README.md +46 -46
  4. package/dist/manifest.js +570 -570
  5. package/dist/ui.js +1 -3
  6. package/package.json +1 -1
  7. package/src/charts/Bar.d.ts +27 -27
  8. package/src/charts/BarGraph.d.ts +15 -15
  9. package/src/charts/Chart.d.ts +12 -12
  10. package/src/charts/ColorMap.d.ts +21 -21
  11. package/src/charts/Column.d.ts +29 -29
  12. package/src/charts/ColumnBarBase.d.ts +64 -64
  13. package/src/charts/ColumnBarGraphBase.d.ts +73 -73
  14. package/src/charts/ColumnGraph.d.ts +18 -18
  15. package/src/charts/Gridlines.d.ts +24 -24
  16. package/src/charts/Legend.d.ts +45 -45
  17. package/src/charts/LegendEntry.d.ts +54 -54
  18. package/src/charts/LineGraph.d.ts +101 -101
  19. package/src/charts/Marker.d.ts +110 -110
  20. package/src/charts/MarkerLine.d.ts +56 -56
  21. package/src/charts/MouseTracker.d.ts +16 -16
  22. package/src/charts/PieChart.d.ts +92 -92
  23. package/src/charts/PieLabel.d.ts +26 -26
  24. package/src/charts/PieLabelsContainer.d.ts +6 -6
  25. package/src/charts/Range.d.ts +74 -74
  26. package/src/charts/RangeMarker.d.ts +35 -35
  27. package/src/charts/ScatterGraph.d.ts +64 -64
  28. package/src/charts/Swimlane.d.ts +24 -24
  29. package/src/charts/Swimlanes.d.ts +41 -41
  30. package/src/charts/axis/Axis.d.ts +113 -113
  31. package/src/charts/axis/Axis.scss +22 -22
  32. package/src/charts/axis/CategoryAxis.d.ts +30 -30
  33. package/src/charts/axis/NumericAxis.d.ts +46 -46
  34. package/src/charts/axis/Stack.d.ts +10 -10
  35. package/src/charts/axis/TimeAxis.d.ts +31 -31
  36. package/src/charts/axis/index.d.ts +3 -3
  37. package/src/charts/axis/index.scss +5 -5
  38. package/src/charts/axis/variables.scss +2 -2
  39. package/src/charts/helpers/MinMaxFinder.d.ts +22 -22
  40. package/src/charts/helpers/PointReducer.d.ts +24 -24
  41. package/src/charts/helpers/SnapPointFinder.d.ts +30 -30
  42. package/src/charts/helpers/ValueAtFinder.d.ts +16 -16
  43. package/src/charts/helpers/index.d.ts +4 -4
  44. package/src/charts/index.d.ts +27 -27
  45. package/src/charts/index.scss +22 -22
  46. package/src/charts/shapes.d.ts +22 -22
  47. package/src/global.scss +13 -13
  48. package/src/index.scss +6 -6
  49. package/src/svg/index.scss +8 -8
  50. package/src/ui/Instance.js +1 -4
  51. package/src/ui/index.scss +2 -2
  52. package/src/ui/layout/index.scss +3 -3
  53. package/src/ui/layout/variables.scss +2 -2
  54. package/src/ui/variables.scss +1 -1
  55. package/src/util/call-once.scss +6 -6
  56. package/src/util/index.scss +10 -10
  57. package/src/util/scss/divide.scss +3 -3
  58. package/src/util/scss/index.scss +9 -9
  59. package/src/variables.scss +217 -217
  60. package/src/widgets/AccessorBindings.spec.tsx +66 -66
  61. package/src/widgets/Button.d.ts +58 -58
  62. package/src/widgets/CxCredit.d.ts +12 -12
  63. package/src/widgets/DocumentTitle.d.ts +11 -11
  64. package/src/widgets/FlexBox.d.ts +69 -69
  65. package/src/widgets/Heading.d.ts +16 -16
  66. package/src/widgets/HighlightedSearchText.d.ts +9 -9
  67. package/src/widgets/HtmlElement.d.ts +30 -30
  68. package/src/widgets/Icon.d.ts +34 -34
  69. package/src/widgets/ProgressBar.d.ts +17 -17
  70. package/src/widgets/Resizer.d.ts +27 -27
  71. package/src/widgets/Sandbox.d.ts +18 -18
  72. package/src/widgets/Section.d.ts +52 -52
  73. package/src/widgets/animations.scss +10 -10
  74. package/src/widgets/autoFocus.d.ts +1 -1
  75. package/src/widgets/cx.d.ts +1 -1
  76. package/src/widgets/drag-drop/DragSource.d.ts +45 -45
  77. package/src/widgets/drag-drop/DropZone.d.ts +98 -98
  78. package/src/widgets/drag-drop/index.d.ts +4 -4
  79. package/src/widgets/drag-drop/index.scss +3 -3
  80. package/src/widgets/drag-drop/ops.d.ts +56 -56
  81. package/src/widgets/enableAllInternalDependencies.d.ts +1 -1
  82. package/src/widgets/form/Calendar.variables.scss +63 -63
  83. package/src/widgets/form/Checkbox.variables.scss +39 -39
  84. package/src/widgets/form/ColorPicker.variables.scss +22 -22
  85. package/src/widgets/form/Radio.variables.scss +45 -45
  86. package/src/widgets/form/index.scss +24 -24
  87. package/src/widgets/grid/Grid.d.ts +442 -442
  88. package/src/widgets/grid/GridCell.d.ts +38 -38
  89. package/src/widgets/grid/Pagination.d.ts +14 -14
  90. package/src/widgets/grid/TreeNode.d.ts +23 -23
  91. package/src/widgets/grid/index.d.ts +3 -3
  92. package/src/widgets/grid/index.scss +3 -3
  93. package/src/widgets/icons/arrow-down.svg +3 -3
  94. package/src/widgets/icons/arrow-right.svg +2 -2
  95. package/src/widgets/icons/base.svg +104 -104
  96. package/src/widgets/icons/calendar-old.svg +169 -169
  97. package/src/widgets/icons/calendar.svg +187 -187
  98. package/src/widgets/icons/clear.svg +74 -74
  99. package/src/widgets/icons/close.svg +74 -74
  100. package/src/widgets/icons/dropdown-arrow.svg +61 -61
  101. package/src/widgets/icons/file.svg +4 -4
  102. package/src/widgets/icons/folder-open.svg +5 -5
  103. package/src/widgets/icons/folder.svg +58 -58
  104. package/src/widgets/icons/forward.svg +67 -67
  105. package/src/widgets/icons/loading.svg +4 -4
  106. package/src/widgets/icons/search.svg +107 -107
  107. package/src/widgets/icons/sort-asc.svg +3 -3
  108. package/src/widgets/index.d.ts +55 -55
  109. package/src/widgets/index.scss +16 -16
  110. package/src/widgets/nav/Link.d.ts +26 -26
  111. package/src/widgets/nav/LinkButton.d.ts +34 -34
  112. package/src/widgets/nav/Menu.d.ts +27 -27
  113. package/src/widgets/nav/MenuItem.d.ts +31 -31
  114. package/src/widgets/nav/MenuSpacer.d.ts +5 -5
  115. package/src/widgets/nav/RedirectRoute.d.ts +9 -9
  116. package/src/widgets/nav/Route.d.ts +21 -21
  117. package/src/widgets/nav/Scroller.d.ts +17 -17
  118. package/src/widgets/nav/Submenu.d.ts +6 -6
  119. package/src/widgets/nav/Tab.d.ts +33 -33
  120. package/src/widgets/nav/Tab.variables.scss +84 -84
  121. package/src/widgets/nav/index.d.ts +10 -10
  122. package/src/widgets/nav/index.scss +5 -5
  123. package/src/widgets/overlay/ContextMenu.d.ts +10 -10
  124. package/src/widgets/overlay/Dropdown.d.ts +32 -32
  125. package/src/widgets/overlay/FlyweightTooltipTracker.d.ts +8 -8
  126. package/src/widgets/overlay/MsgBox.d.ts +16 -16
  127. package/src/widgets/overlay/Overlay.d.ts +73 -73
  128. package/src/widgets/overlay/Toast.d.ts +30 -30
  129. package/src/widgets/overlay/Tooltip.d.ts +50 -50
  130. package/src/widgets/overlay/Window.d.ts +42 -42
  131. package/src/widgets/overlay/Window.variables.scss +62 -62
  132. package/src/widgets/overlay/alerts.d.ts +7 -7
  133. package/src/widgets/overlay/captureMouse.d.ts +53 -53
  134. package/src/widgets/overlay/captureMouse.scss +13 -13
  135. package/src/widgets/overlay/createHotPromiseWindowFactory.d.ts +18 -18
  136. package/src/widgets/overlay/index.d.ts +11 -11
  137. package/src/widgets/overlay/index.scss +15 -15
@@ -1,169 +1,169 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
- <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
-
4
- <svg
5
- xmlns:dc="http://purl.org/dc/elements/1.1/"
6
- xmlns:cc="http://creativecommons.org/ns#"
7
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8
- xmlns:svg="http://www.w3.org/2000/svg"
9
- xmlns="http://www.w3.org/2000/svg"
10
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
- width="32"
13
- height="32"
14
- viewBox="0 0 32 32"
15
- id="svg2"
16
- version="1.1"
17
- inkscape:version="0.91 r13725"
18
- sodipodi:docname="calendar.svg">
19
- <defs
20
- id="defs4" />
21
- <sodipodi:namedview
22
- id="base"
23
- pagecolor="#ffffff"
24
- bordercolor="#666666"
25
- borderopacity="1.0"
26
- inkscape:pageopacity="0.0"
27
- inkscape:pageshadow="2"
28
- inkscape:zoom="21.25"
29
- inkscape:cx="2.5926726"
30
- inkscape:cy="17.310187"
31
- inkscape:document-units="px"
32
- inkscape:current-layer="layer1"
33
- showgrid="true"
34
- units="px"
35
- inkscape:window-width="1856"
36
- inkscape:window-height="1057"
37
- inkscape:window-x="3056"
38
- inkscape:window-y="439"
39
- inkscape:window-maximized="1">
40
- <inkscape:grid
41
- type="xygrid"
42
- id="grid5338"
43
- empspacing="8" />
44
- </sodipodi:namedview>
45
- <metadata
46
- id="metadata7">
47
- <rdf:RDF>
48
- <cc:Work
49
- rdf:about="">
50
- <dc:format>image/svg+xml</dc:format>
51
- <dc:type
52
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
53
- <dc:title />
54
- </cc:Work>
55
- </rdf:RDF>
56
- </metadata>
57
- <g
58
- inkscape:label="Layer 1"
59
- inkscape:groupmode="layer"
60
- id="layer1"
61
- transform="translate(0,-1020.3622)"
62
- style="display:inline">
63
- <rect
64
- y="1026.3621"
65
- x="8"
66
- height="2"
67
- width="4"
68
- id="rect4165"
69
- style="opacity:1;fill:#000000;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
70
- <rect
71
- style="opacity:1;fill:#000000;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
72
- id="rect4167"
73
- width="4"
74
- height="2"
75
- x="18"
76
- y="1026.3622" />
77
- <rect
78
- style="opacity:1;fill:#000000;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
79
- id="rect4288"
80
- width="4"
81
- height="4"
82
- x="11"
83
- y="1037.3622" />
84
- <path
85
- style="fill:#cccccc;fill-rule:evenodd;stroke:#999999;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
86
- d="m 7,1041.3623 16,0"
87
- id="path4272"
88
- inkscape:connector-curvature="0" />
89
- <path
90
- inkscape:connector-curvature="0"
91
- id="path4274"
92
- d="m 7,1037.3622 16,0"
93
- style="fill:#cccccc;fill-rule:evenodd;stroke:#999999;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
94
- <path
95
- style="fill:#000000;fill-rule:evenodd;stroke:#999999;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
96
- d="m 7.0000008,1033.3622 16.0000002,0"
97
- id="path4276"
98
- inkscape:connector-curvature="0" />
99
- <path
100
- style="fill:#cccccc;fill-rule:evenodd;stroke:#999999;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
101
- d="m 11,1045.3622 0,-12"
102
- id="path4278"
103
- inkscape:connector-curvature="0" />
104
- <path
105
- style="fill:#cccccc;fill-rule:evenodd;stroke:#999999;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
106
- d="m 15,1045.3622 0,-12"
107
- id="path4280"
108
- inkscape:connector-curvature="0" />
109
- <path
110
- style="fill:#cccccc;fill-rule:evenodd;stroke:#999999;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
111
- d="m 19,1045.3622 0,-12"
112
- id="path4282"
113
- inkscape:connector-curvature="0" />
114
- <rect
115
- style="opacity:1;fill:none;stroke:#000000;stroke-width:1.99999893;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
116
- id="rect4138"
117
- width="16"
118
- height="16"
119
- x="7.0000005"
120
- y="1029.3622" />
121
- </g>
122
- <g
123
- inkscape:groupmode="layer"
124
- id="layer2"
125
- inkscape:label="Base"
126
- style="display:none">
127
- <circle
128
- style="opacity:1;fill:none;stroke:#c40000;stroke-width:0.0501454;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
129
- id="path4140"
130
- cx="16"
131
- cy="16"
132
- r="12" />
133
- <rect
134
- style="opacity:1;fill:none;stroke:#c40000;stroke-width:0.05017764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
135
- id="rect4142-8"
136
- width="12"
137
- height="28"
138
- x="10"
139
- y="2" />
140
- <rect
141
- style="opacity:1;fill:none;stroke:#c40000;stroke-width:0.05017611;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
142
- id="rect4144-4"
143
- width="28"
144
- height="12"
145
- x="2"
146
- y="10" />
147
- <rect
148
- y="7.9999995"
149
- x="4"
150
- height="15.999999"
151
- width="24"
152
- id="rect4146"
153
- style="opacity:1;fill:none;stroke:#c40000;stroke-width:0.05017379;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
154
- <rect
155
- y="6.0250883"
156
- x="6.0250883"
157
- height="19.949823"
158
- width="19.949823"
159
- id="rect4148-8"
160
- style="opacity:1;fill:none;stroke:#c40000;stroke-width:0.05017426;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
161
- <rect
162
- style="opacity:1;fill:none;stroke:#c40000;stroke-width:0.04999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
163
- id="rect4150"
164
- width="16"
165
- height="24"
166
- x="8"
167
- y="4" />
168
- </g>
169
- </svg>
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
6
+ xmlns:cc="http://creativecommons.org/ns#"
7
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8
+ xmlns:svg="http://www.w3.org/2000/svg"
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
+ width="32"
13
+ height="32"
14
+ viewBox="0 0 32 32"
15
+ id="svg2"
16
+ version="1.1"
17
+ inkscape:version="0.91 r13725"
18
+ sodipodi:docname="calendar.svg">
19
+ <defs
20
+ id="defs4" />
21
+ <sodipodi:namedview
22
+ id="base"
23
+ pagecolor="#ffffff"
24
+ bordercolor="#666666"
25
+ borderopacity="1.0"
26
+ inkscape:pageopacity="0.0"
27
+ inkscape:pageshadow="2"
28
+ inkscape:zoom="21.25"
29
+ inkscape:cx="2.5926726"
30
+ inkscape:cy="17.310187"
31
+ inkscape:document-units="px"
32
+ inkscape:current-layer="layer1"
33
+ showgrid="true"
34
+ units="px"
35
+ inkscape:window-width="1856"
36
+ inkscape:window-height="1057"
37
+ inkscape:window-x="3056"
38
+ inkscape:window-y="439"
39
+ inkscape:window-maximized="1">
40
+ <inkscape:grid
41
+ type="xygrid"
42
+ id="grid5338"
43
+ empspacing="8" />
44
+ </sodipodi:namedview>
45
+ <metadata
46
+ id="metadata7">
47
+ <rdf:RDF>
48
+ <cc:Work
49
+ rdf:about="">
50
+ <dc:format>image/svg+xml</dc:format>
51
+ <dc:type
52
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
53
+ <dc:title />
54
+ </cc:Work>
55
+ </rdf:RDF>
56
+ </metadata>
57
+ <g
58
+ inkscape:label="Layer 1"
59
+ inkscape:groupmode="layer"
60
+ id="layer1"
61
+ transform="translate(0,-1020.3622)"
62
+ style="display:inline">
63
+ <rect
64
+ y="1026.3621"
65
+ x="8"
66
+ height="2"
67
+ width="4"
68
+ id="rect4165"
69
+ style="opacity:1;fill:#000000;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
70
+ <rect
71
+ style="opacity:1;fill:#000000;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
72
+ id="rect4167"
73
+ width="4"
74
+ height="2"
75
+ x="18"
76
+ y="1026.3622" />
77
+ <rect
78
+ style="opacity:1;fill:#000000;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
79
+ id="rect4288"
80
+ width="4"
81
+ height="4"
82
+ x="11"
83
+ y="1037.3622" />
84
+ <path
85
+ style="fill:#cccccc;fill-rule:evenodd;stroke:#999999;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
86
+ d="m 7,1041.3623 16,0"
87
+ id="path4272"
88
+ inkscape:connector-curvature="0" />
89
+ <path
90
+ inkscape:connector-curvature="0"
91
+ id="path4274"
92
+ d="m 7,1037.3622 16,0"
93
+ style="fill:#cccccc;fill-rule:evenodd;stroke:#999999;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
94
+ <path
95
+ style="fill:#000000;fill-rule:evenodd;stroke:#999999;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
96
+ d="m 7.0000008,1033.3622 16.0000002,0"
97
+ id="path4276"
98
+ inkscape:connector-curvature="0" />
99
+ <path
100
+ style="fill:#cccccc;fill-rule:evenodd;stroke:#999999;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
101
+ d="m 11,1045.3622 0,-12"
102
+ id="path4278"
103
+ inkscape:connector-curvature="0" />
104
+ <path
105
+ style="fill:#cccccc;fill-rule:evenodd;stroke:#999999;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
106
+ d="m 15,1045.3622 0,-12"
107
+ id="path4280"
108
+ inkscape:connector-curvature="0" />
109
+ <path
110
+ style="fill:#cccccc;fill-rule:evenodd;stroke:#999999;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
111
+ d="m 19,1045.3622 0,-12"
112
+ id="path4282"
113
+ inkscape:connector-curvature="0" />
114
+ <rect
115
+ style="opacity:1;fill:none;stroke:#000000;stroke-width:1.99999893;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
116
+ id="rect4138"
117
+ width="16"
118
+ height="16"
119
+ x="7.0000005"
120
+ y="1029.3622" />
121
+ </g>
122
+ <g
123
+ inkscape:groupmode="layer"
124
+ id="layer2"
125
+ inkscape:label="Base"
126
+ style="display:none">
127
+ <circle
128
+ style="opacity:1;fill:none;stroke:#c40000;stroke-width:0.0501454;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
129
+ id="path4140"
130
+ cx="16"
131
+ cy="16"
132
+ r="12" />
133
+ <rect
134
+ style="opacity:1;fill:none;stroke:#c40000;stroke-width:0.05017764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
135
+ id="rect4142-8"
136
+ width="12"
137
+ height="28"
138
+ x="10"
139
+ y="2" />
140
+ <rect
141
+ style="opacity:1;fill:none;stroke:#c40000;stroke-width:0.05017611;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
142
+ id="rect4144-4"
143
+ width="28"
144
+ height="12"
145
+ x="2"
146
+ y="10" />
147
+ <rect
148
+ y="7.9999995"
149
+ x="4"
150
+ height="15.999999"
151
+ width="24"
152
+ id="rect4146"
153
+ style="opacity:1;fill:none;stroke:#c40000;stroke-width:0.05017379;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
154
+ <rect
155
+ y="6.0250883"
156
+ x="6.0250883"
157
+ height="19.949823"
158
+ width="19.949823"
159
+ id="rect4148-8"
160
+ style="opacity:1;fill:none;stroke:#c40000;stroke-width:0.05017426;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
161
+ <rect
162
+ style="opacity:1;fill:none;stroke:#c40000;stroke-width:0.04999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
163
+ id="rect4150"
164
+ width="16"
165
+ height="24"
166
+ x="8"
167
+ y="4" />
168
+ </g>
169
+ </svg>