@genesislcap/pbc-reconciliation-ui 15.6.0 → 15.6.2
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 +0 -41
- package/dist/custom-elements.json +80 -80
- package/package.json +27 -29
- package/tsconfig.json +0 -16
package/README.md
CHANGED
|
@@ -45,44 +45,3 @@ Baseline task combines `clean` and `bootstrap` tasks into a single command:
|
|
|
45
45
|
```shell
|
|
46
46
|
npm run baseline
|
|
47
47
|
```
|
|
48
|
-
|
|
49
|
-
## Custom Elements IntelliSense
|
|
50
|
-
|
|
51
|
-
Using any modern editor, you'll receive IntelliSense help while writing TypeScript code while working in the repo. However, you'll also likely be writing a lot of html markup inside of "html\`\`" blocks.
|
|
52
|
-
By default you'll not get any IntelliSense provided in that scenario, but you can enable this while working in the monorepo by leveraging the open source [custom elements lsp](https://www.npmjs.com/package/@genesiscommunitysuccess/custom-elements-lsp) that Genesis provides. This comes pre-configured when you create a seed with `genx`.
|
|
53
|
-
|
|
54
|
-
### VSCode
|
|
55
|
-
|
|
56
|
-
VSCode has full support for the plugin, and is the recommended IDE to use if you're new working with the web code. To enable the LSP you'll need to follow the following steps.
|
|
57
|
-
|
|
58
|
-
1. You need a `.vscode/settings.json` file from the place that you launch your IDE. This has been added to the root of your project automatically, but you'll need to create it in a different place if you want to launch your editor from a different directory. The contents should contain a `typescript.tsdk` key which points to your local typescript install.
|
|
59
|
-
> This is the same file you'll edit if you want to set a specific workspace config. In that case you can have the `typescript.tsdk` key defined, as well as any other config you would like.
|
|
60
|
-
|
|
61
|
-
2. Launch VSCode on the root directory of the project (so in the folder structure you'll have `.vscode` directory from step 1 at the root). You can do this via the GUI or if you've installed VSCode on your path you can navigate to the root and run `code .`.
|
|
62
|
-
|
|
63
|
-
3. Ensuring you have a typescript file open, open the command palette (Ctrl/Cmd + Shift + P) and search for `TypeScript: Select Typescript Version...`
|
|
64
|
-

|
|
65
|
-
> If you don't see this option then ensure you have a `.ts` file open.
|
|
66
|
-
> If you don't see this option, it may be because you need to set VSCode to trust the workspace (so it picks up the config from step 1) when asked.
|
|
67
|
-
|
|
68
|
-
4. Select the workspace version, which should have the path matching the path set in the value of step 1.
|
|
69
|
-

|
|
70
|
-
> If you don't see this option then ensure that you've opened the project in VSCode that has the `.vscode` directory from step 1 at the root.
|
|
71
|
-
|
|
72
|
-
5. That should be it! Please note that you'll not see any diagnostics information after the LSP had loaded until you interact and change the file.
|
|
73
|
-
|
|
74
|
-
### JetBrains
|
|
75
|
-
|
|
76
|
-
This section applies to JetBrains IDEs such as IntelliJ and Webstorm, though the location of the settings menus might slightly differ between versions.
|
|
77
|
-
|
|
78
|
-
**IMPORTANT**: Currently JetBrains does not leverage the TypeScript server for full IntelliSense in their IDEs so our plugin can only offer limited functionality. You should receive full diagnostics support from the plugin, but only limited definition coverage, and no help with autocompletion. Currently we are in discussion with JetBrains to come to a solution about this.
|
|
79
|
-
|
|
80
|
-
1. Launch the IDE.
|
|
81
|
-
|
|
82
|
-
2. Open the preferences menu option from the settings.
|
|
83
|
-

|
|
84
|
-
|
|
85
|
-
3. Navigate to the `Typescript` settings in the `Languages & Frameworks` settings, and ensure that the typescript option is set to the `node_modules/typescript` of your _local_ project, as shown in the image. This may be the default already, in which case you don't need to do anything. You'll also want to enable at least the three options which are enabled in the image below.
|
|
86
|
-

|
|
87
|
-
|
|
88
|
-
4. That should be it! Please note that you'll not see any diagnostics information after the LSP had loaded until you interact and change the file.
|
|
@@ -349,86 +349,6 @@
|
|
|
349
349
|
}
|
|
350
350
|
]
|
|
351
351
|
},
|
|
352
|
-
{
|
|
353
|
-
"kind": "javascript-module",
|
|
354
|
-
"path": "src/services/data-dictionary.service.ts",
|
|
355
|
-
"declarations": [
|
|
356
|
-
{
|
|
357
|
-
"kind": "variable",
|
|
358
|
-
"name": "DataDictionaryService"
|
|
359
|
-
}
|
|
360
|
-
],
|
|
361
|
-
"exports": [
|
|
362
|
-
{
|
|
363
|
-
"kind": "js",
|
|
364
|
-
"name": "DataDictionaryService",
|
|
365
|
-
"declaration": {
|
|
366
|
-
"name": "DataDictionaryService",
|
|
367
|
-
"module": "src/services/data-dictionary.service.ts"
|
|
368
|
-
}
|
|
369
|
-
}
|
|
370
|
-
]
|
|
371
|
-
},
|
|
372
|
-
{
|
|
373
|
-
"kind": "javascript-module",
|
|
374
|
-
"path": "src/services/document.service.ts",
|
|
375
|
-
"declarations": [
|
|
376
|
-
{
|
|
377
|
-
"kind": "variable",
|
|
378
|
-
"name": "DocumentService"
|
|
379
|
-
}
|
|
380
|
-
],
|
|
381
|
-
"exports": [
|
|
382
|
-
{
|
|
383
|
-
"kind": "js",
|
|
384
|
-
"name": "DocumentService",
|
|
385
|
-
"declaration": {
|
|
386
|
-
"name": "DocumentService",
|
|
387
|
-
"module": "src/services/document.service.ts"
|
|
388
|
-
}
|
|
389
|
-
}
|
|
390
|
-
]
|
|
391
|
-
},
|
|
392
|
-
{
|
|
393
|
-
"kind": "javascript-module",
|
|
394
|
-
"path": "src/services/reconciliation-configuration.service.ts",
|
|
395
|
-
"declarations": [
|
|
396
|
-
{
|
|
397
|
-
"kind": "variable",
|
|
398
|
-
"name": "ReconciliationConfigurationService"
|
|
399
|
-
}
|
|
400
|
-
],
|
|
401
|
-
"exports": [
|
|
402
|
-
{
|
|
403
|
-
"kind": "js",
|
|
404
|
-
"name": "ReconciliationConfigurationService",
|
|
405
|
-
"declaration": {
|
|
406
|
-
"name": "ReconciliationConfigurationService",
|
|
407
|
-
"module": "src/services/reconciliation-configuration.service.ts"
|
|
408
|
-
}
|
|
409
|
-
}
|
|
410
|
-
]
|
|
411
|
-
},
|
|
412
|
-
{
|
|
413
|
-
"kind": "javascript-module",
|
|
414
|
-
"path": "src/services/reconciliation.service.ts",
|
|
415
|
-
"declarations": [
|
|
416
|
-
{
|
|
417
|
-
"kind": "variable",
|
|
418
|
-
"name": "ReconciliationService"
|
|
419
|
-
}
|
|
420
|
-
],
|
|
421
|
-
"exports": [
|
|
422
|
-
{
|
|
423
|
-
"kind": "js",
|
|
424
|
-
"name": "ReconciliationService",
|
|
425
|
-
"declaration": {
|
|
426
|
-
"name": "ReconciliationService",
|
|
427
|
-
"module": "src/services/reconciliation.service.ts"
|
|
428
|
-
}
|
|
429
|
-
}
|
|
430
|
-
]
|
|
431
|
-
},
|
|
432
352
|
{
|
|
433
353
|
"kind": "javascript-module",
|
|
434
354
|
"path": "src/main/index.ts",
|
|
@@ -868,6 +788,86 @@
|
|
|
868
788
|
}
|
|
869
789
|
]
|
|
870
790
|
},
|
|
791
|
+
{
|
|
792
|
+
"kind": "javascript-module",
|
|
793
|
+
"path": "src/services/data-dictionary.service.ts",
|
|
794
|
+
"declarations": [
|
|
795
|
+
{
|
|
796
|
+
"kind": "variable",
|
|
797
|
+
"name": "DataDictionaryService"
|
|
798
|
+
}
|
|
799
|
+
],
|
|
800
|
+
"exports": [
|
|
801
|
+
{
|
|
802
|
+
"kind": "js",
|
|
803
|
+
"name": "DataDictionaryService",
|
|
804
|
+
"declaration": {
|
|
805
|
+
"name": "DataDictionaryService",
|
|
806
|
+
"module": "src/services/data-dictionary.service.ts"
|
|
807
|
+
}
|
|
808
|
+
}
|
|
809
|
+
]
|
|
810
|
+
},
|
|
811
|
+
{
|
|
812
|
+
"kind": "javascript-module",
|
|
813
|
+
"path": "src/services/document.service.ts",
|
|
814
|
+
"declarations": [
|
|
815
|
+
{
|
|
816
|
+
"kind": "variable",
|
|
817
|
+
"name": "DocumentService"
|
|
818
|
+
}
|
|
819
|
+
],
|
|
820
|
+
"exports": [
|
|
821
|
+
{
|
|
822
|
+
"kind": "js",
|
|
823
|
+
"name": "DocumentService",
|
|
824
|
+
"declaration": {
|
|
825
|
+
"name": "DocumentService",
|
|
826
|
+
"module": "src/services/document.service.ts"
|
|
827
|
+
}
|
|
828
|
+
}
|
|
829
|
+
]
|
|
830
|
+
},
|
|
831
|
+
{
|
|
832
|
+
"kind": "javascript-module",
|
|
833
|
+
"path": "src/services/reconciliation-configuration.service.ts",
|
|
834
|
+
"declarations": [
|
|
835
|
+
{
|
|
836
|
+
"kind": "variable",
|
|
837
|
+
"name": "ReconciliationConfigurationService"
|
|
838
|
+
}
|
|
839
|
+
],
|
|
840
|
+
"exports": [
|
|
841
|
+
{
|
|
842
|
+
"kind": "js",
|
|
843
|
+
"name": "ReconciliationConfigurationService",
|
|
844
|
+
"declaration": {
|
|
845
|
+
"name": "ReconciliationConfigurationService",
|
|
846
|
+
"module": "src/services/reconciliation-configuration.service.ts"
|
|
847
|
+
}
|
|
848
|
+
}
|
|
849
|
+
]
|
|
850
|
+
},
|
|
851
|
+
{
|
|
852
|
+
"kind": "javascript-module",
|
|
853
|
+
"path": "src/services/reconciliation.service.ts",
|
|
854
|
+
"declarations": [
|
|
855
|
+
{
|
|
856
|
+
"kind": "variable",
|
|
857
|
+
"name": "ReconciliationService"
|
|
858
|
+
}
|
|
859
|
+
],
|
|
860
|
+
"exports": [
|
|
861
|
+
{
|
|
862
|
+
"kind": "js",
|
|
863
|
+
"name": "ReconciliationService",
|
|
864
|
+
"declaration": {
|
|
865
|
+
"name": "ReconciliationService",
|
|
866
|
+
"module": "src/services/reconciliation.service.ts"
|
|
867
|
+
}
|
|
868
|
+
}
|
|
869
|
+
]
|
|
870
|
+
},
|
|
871
871
|
{
|
|
872
872
|
"kind": "javascript-module",
|
|
873
873
|
"path": "src/styles/scrollbar.styles.ts",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/pbc-reconciliation-ui",
|
|
3
3
|
"description": "Genesis PBC Reconciliation UI",
|
|
4
|
-
"version": "15.6.
|
|
4
|
+
"version": "15.6.2",
|
|
5
5
|
"license": "SEE LICENSE IN license.txt",
|
|
6
6
|
"main": "dist/esm/index.js",
|
|
7
7
|
"types": "dist/dts/index.d.ts",
|
|
@@ -84,43 +84,41 @@
|
|
|
84
84
|
},
|
|
85
85
|
"prettier": "@genesislcap/prettier-config",
|
|
86
86
|
"devDependencies": {
|
|
87
|
-
"@
|
|
88
|
-
"@
|
|
89
|
-
"@genesislcap/
|
|
90
|
-
"@genesislcap/
|
|
91
|
-
"@genesislcap/
|
|
92
|
-
"@genesislcap/
|
|
93
|
-
"@genesislcap/
|
|
94
|
-
"@genesislcap/
|
|
95
|
-
"@genesislcap/
|
|
96
|
-
"@genesislcap/
|
|
97
|
-
"@genesislcap/vite-builder": "15.6.0",
|
|
98
|
-
"@genesislcap/webpack-builder": "15.6.0",
|
|
87
|
+
"@genesislcap/design-system-configurator": "15.6.2",
|
|
88
|
+
"@genesislcap/eslint-config": "15.6.2",
|
|
89
|
+
"@genesislcap/eslint-stylelint-builder": "15.6.2",
|
|
90
|
+
"@genesislcap/foundation-testing": "15.6.2",
|
|
91
|
+
"@genesislcap/genx": "15.6.2",
|
|
92
|
+
"@genesislcap/prettier-config": "15.6.2",
|
|
93
|
+
"@genesislcap/stylelint-config": "15.6.2",
|
|
94
|
+
"@genesislcap/uvu-playwright-builder": "15.6.2",
|
|
95
|
+
"@genesislcap/vite-builder": "15.6.2",
|
|
96
|
+
"@genesislcap/webpack-builder": "15.6.2",
|
|
99
97
|
"@types/node": "20.11.5",
|
|
100
98
|
"husky": "^7.0.4",
|
|
101
99
|
"lint-prepush": "^2.2.1",
|
|
102
100
|
"lint-staged": "^12.4.1"
|
|
103
101
|
},
|
|
104
102
|
"dependencies": {
|
|
105
|
-
"@genesislcap/foundation-comms": "15.6.
|
|
106
|
-
"@genesislcap/foundation-events": "15.6.
|
|
107
|
-
"@genesislcap/foundation-layout": "15.6.
|
|
108
|
-
"@genesislcap/foundation-logger": "15.6.
|
|
109
|
-
"@genesislcap/foundation-notifications": "15.6.
|
|
110
|
-
"@genesislcap/foundation-shell": "15.6.
|
|
111
|
-
"@genesislcap/foundation-store": "15.6.
|
|
112
|
-
"@genesislcap/foundation-ui": "15.6.
|
|
113
|
-
"@genesislcap/foundation-utils": "15.6.
|
|
114
|
-
"@genesislcap/foundation-zero": "15.6.
|
|
115
|
-
"@genesislcap/foundation-zero-grid-pro": "15.6.
|
|
116
|
-
"@genesislcap/g2plot-chart": "15.6.
|
|
117
|
-
"@genesislcap/rapid-design-system": "15.6.
|
|
118
|
-
"@genesislcap/rapid-grid-pro": "15.6.
|
|
119
|
-
"@genesislcap/web-core": "15.6.
|
|
103
|
+
"@genesislcap/foundation-comms": "15.6.2",
|
|
104
|
+
"@genesislcap/foundation-events": "15.6.2",
|
|
105
|
+
"@genesislcap/foundation-layout": "15.6.2",
|
|
106
|
+
"@genesislcap/foundation-logger": "15.6.2",
|
|
107
|
+
"@genesislcap/foundation-notifications": "15.6.2",
|
|
108
|
+
"@genesislcap/foundation-shell": "15.6.2",
|
|
109
|
+
"@genesislcap/foundation-store": "15.6.2",
|
|
110
|
+
"@genesislcap/foundation-ui": "15.6.2",
|
|
111
|
+
"@genesislcap/foundation-utils": "15.6.2",
|
|
112
|
+
"@genesislcap/foundation-zero": "15.6.2",
|
|
113
|
+
"@genesislcap/foundation-zero-grid-pro": "15.6.2",
|
|
114
|
+
"@genesislcap/g2plot-chart": "15.6.2",
|
|
115
|
+
"@genesislcap/rapid-design-system": "15.6.2",
|
|
116
|
+
"@genesislcap/rapid-grid-pro": "15.6.2",
|
|
117
|
+
"@genesislcap/web-core": "15.6.2"
|
|
120
118
|
},
|
|
121
119
|
"publishConfig": {
|
|
122
120
|
"access": "public"
|
|
123
121
|
},
|
|
124
122
|
"customElements": "dist/custom-elements.json",
|
|
125
|
-
"gitHead": "
|
|
123
|
+
"gitHead": "a5781780cb56906755ddbfc4be75e221719ae4b4"
|
|
126
124
|
}
|
package/tsconfig.json
CHANGED
|
@@ -1,21 +1,5 @@
|
|
|
1
1
|
{
|
|
2
2
|
"compilerOptions": {
|
|
3
|
-
"plugins": [
|
|
4
|
-
{
|
|
5
|
-
"name": "@genesiscommunitysuccess/custom-elements-lsp",
|
|
6
|
-
"srcRouteFromTSServer": "../../..",
|
|
7
|
-
"designSystemPrefix": "zero",
|
|
8
|
-
"parser": {
|
|
9
|
-
"fastEnable": true,
|
|
10
|
-
"timeout": 2000,
|
|
11
|
-
"dependencies": [
|
|
12
|
-
"node_modules/**/custom-elements.json",
|
|
13
|
-
"!**/@custom-elements-manifest/**/*"
|
|
14
|
-
]
|
|
15
|
-
},
|
|
16
|
-
"plugins": ["@genesiscommunitysuccess/cep-fast-plugin"]
|
|
17
|
-
}
|
|
18
|
-
],
|
|
19
3
|
"declarationDir": "./dist/dts",
|
|
20
4
|
"outDir": "./dist/esm",
|
|
21
5
|
"rootDir": "./src",
|