react-graph-grid 0.0.0 → 0.0.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.
- package/README.md +2 -15
- package/package.json +2 -2
- package/src/Dropdown.jsx +1 -1
- package/src/FieldEdit.jsx +357 -0
- package/src/Graph.jsx +34 -5
- package/src/Grid.jsx +13 -5
- package/src/GridDB.jsx +1 -1
- package/src/GridFE.jsx +532 -0
- package/src/GridFL.jsx +11 -1
- package/src/GridGR.jsx +13 -0
- package/src/Overlay.jsx +4 -2
- package/src/Tests/DebugApp.jsx +49 -2
- package/src/Tests/TestData.jsx +86 -683
- package/src/Themes/Images.jsx +1 -1
- package/src/Themes/Translate.jsx +1 -1
- package/src/main.jsx +3 -4
package/src/Themes/Images.jsx
CHANGED
|
@@ -413,7 +413,7 @@ export class Images {
|
|
|
413
413
|
oi ?
|
|
414
414
|
<div dangerouslySetInnerHTML={{ __html: oi }} className="image-container-div"></div>
|
|
415
415
|
:
|
|
416
|
-
<svg xmlns="http://www.w3.org/2000/svg" width={w || "20"} height={h || "20"} fill="currentColor" viewBox="0 0
|
|
416
|
+
<svg xmlns="http://www.w3.org/2000/svg" width={w || "20"} height={h || "20"} fill="currentColor" viewBox="0 0 580 580">
|
|
417
417
|
<path d="M569 337C578.4 327.6 578.4 312.4 569 303.1L425 159C418.1 152.1 407.8 150.1 398.8 153.8C389.8 157.5 384 166.3 384 176L384 256L272 256C245.5 256 224 277.5 224 304L224 336C224 362.5 245.5 384 272 384L384 384L384 464C384 473.7 389.8 482.5 398.8 486.2C407.8 489.9 418.1 487.9 425 481L569 337zM224 160C241.7 160 256 145.7 256 128C256 110.3 241.7 96 224 96L160 96C107 96 64 139 64 192L64 448C64 501 107 544 160 544L224 544C241.7 544 256 529.7 256 512C256 494.3 241.7 480 224 480L160 480C142.3 480 128 465.7 128 448L128 192C128 174.3 142.3 160 160 160L224 160z" />
|
|
418
418
|
</svg>
|
|
419
419
|
)
|
package/src/Themes/Translate.jsx
CHANGED
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
'LOAD MORE RECORDS': 'Загрузить еще строк',
|
|
35
35
|
'LOADING': 'Загрузка',
|
|
36
36
|
'MEDIUM BUTTONS': 'Средние',
|
|
37
|
-
'MORE
|
|
37
|
+
'MORE': 'еще',
|
|
38
38
|
'NEXT': 'Следующая',
|
|
39
39
|
'NEW CONFIGURATION': 'Новая конфигурация',
|
|
40
40
|
'NO DATA DEFINED TO SAVE': 'Не опеределены данные для сохранения',
|
package/src/main.jsx
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
|
-
|
|
2
|
-
import { StrictMode } from 'react'
|
|
1
|
+
import { StrictMode } from 'react'
|
|
3
2
|
import { createRoot } from 'react-dom/client'
|
|
4
3
|
import DebugApp from './Tests/DebugApp.jsx'
|
|
5
4
|
import './css/default.css';
|
|
6
5
|
|
|
7
6
|
createRoot(document.getElementById('root')).render(
|
|
8
|
-
|
|
7
|
+
<>
|
|
9
8
|
<DebugApp />
|
|
10
|
-
|
|
9
|
+
</>,
|
|
11
10
|
)
|