@solidstarters/solid-core-ui 1.1.131 → 1.1.133

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 (57) hide show
  1. package/dist/components/core/common/SolidGenericImport/DocumentSvg.d.ts +2 -0
  2. package/dist/components/core/common/SolidGenericImport/DocumentSvg.d.ts.map +1 -0
  3. package/dist/components/core/common/SolidGenericImport/DocumentSvg.js +5 -0
  4. package/dist/components/core/common/SolidGenericImport/DocumentSvg.js.map +1 -0
  5. package/dist/components/core/common/SolidGenericImport/SolidGenericImport.d.ts +2 -0
  6. package/dist/components/core/common/SolidGenericImport/SolidGenericImport.d.ts.map +1 -0
  7. package/dist/components/core/common/SolidGenericImport/SolidGenericImport.js +25 -0
  8. package/dist/components/core/common/SolidGenericImport/SolidGenericImport.js.map +1 -0
  9. package/dist/components/core/common/SolidGenericImport/SolidImport.module.css +40 -0
  10. package/dist/components/core/common/SolidGenericImport/SolidImportDropzone.d.ts +2 -0
  11. package/dist/components/core/common/SolidGenericImport/SolidImportDropzone.d.ts.map +1 -0
  12. package/dist/components/core/common/SolidGenericImport/SolidImportDropzone.js +138 -0
  13. package/dist/components/core/common/SolidGenericImport/SolidImportDropzone.js.map +1 -0
  14. package/dist/components/core/common/SolidGenericImport/SolidImportInstructions.d.ts +2 -0
  15. package/dist/components/core/common/SolidGenericImport/SolidImportInstructions.d.ts.map +1 -0
  16. package/dist/components/core/common/SolidGenericImport/SolidImportInstructions.js +123 -0
  17. package/dist/components/core/common/SolidGenericImport/SolidImportInstructions.js.map +1 -0
  18. package/dist/components/core/common/SolidGenericImport/SolidImportStepper.d.ts +2 -0
  19. package/dist/components/core/common/SolidGenericImport/SolidImportStepper.d.ts.map +1 -0
  20. package/dist/components/core/common/SolidGenericImport/SolidImportStepper.js +14 -0
  21. package/dist/components/core/common/SolidGenericImport/SolidImportStepper.js.map +1 -0
  22. package/dist/components/core/common/SolidGenericImport/SolidImportTransaction.d.ts +2 -0
  23. package/dist/components/core/common/SolidGenericImport/SolidImportTransaction.d.ts.map +1 -0
  24. package/dist/components/core/common/SolidGenericImport/SolidImportTransaction.js +185 -0
  25. package/dist/components/core/common/SolidGenericImport/SolidImportTransaction.js.map +1 -0
  26. package/dist/components/core/common/SolidGenericImport/SolidImportTransactionStatus.d.ts +2 -0
  27. package/dist/components/core/common/SolidGenericImport/SolidImportTransactionStatus.d.ts.map +1 -0
  28. package/dist/components/core/common/SolidGenericImport/SolidImportTransactionStatus.js +141 -0
  29. package/dist/components/core/common/SolidGenericImport/SolidImportTransactionStatus.js.map +1 -0
  30. package/dist/components/core/common/SolidGenericImport/SolidImportWrapper.d.ts +2 -0
  31. package/dist/components/core/common/SolidGenericImport/SolidImportWrapper.d.ts.map +1 -0
  32. package/dist/components/core/common/SolidGenericImport/SolidImportWrapper.js +17 -0
  33. package/dist/components/core/common/SolidGenericImport/SolidImportWrapper.js.map +1 -0
  34. package/dist/components/core/form/fields/SolidSelectionDynamicField.d.ts.map +1 -1
  35. package/dist/components/core/form/fields/SolidSelectionDynamicField.js +24 -7
  36. package/dist/components/core/form/fields/SolidSelectionDynamicField.js.map +1 -1
  37. package/dist/components/core/list/SolidListView.d.ts.map +1 -1
  38. package/dist/components/core/list/SolidListView.js +4 -1
  39. package/dist/components/core/list/SolidListView.js.map +1 -1
  40. package/dist/components/core/list/SolidListViewConfigure.d.ts +1 -1
  41. package/dist/components/core/list/SolidListViewConfigure.d.ts.map +1 -1
  42. package/dist/components/core/list/SolidListViewConfigure.js +9 -6
  43. package/dist/components/core/list/SolidListViewConfigure.js.map +1 -1
  44. package/dist/index.d.ts +1 -0
  45. package/dist/index.d.ts.map +1 -1
  46. package/dist/index.js +1 -0
  47. package/dist/index.js.map +1 -1
  48. package/dist/redux/api/importTransactionApi.d.ts +11 -0
  49. package/dist/redux/api/importTransactionApi.d.ts.map +1 -0
  50. package/dist/redux/api/importTransactionApi.js +69 -0
  51. package/dist/redux/api/importTransactionApi.js.map +1 -0
  52. package/dist/resources/themes/solid-dark-purple/theme.css +4 -0
  53. package/dist/resources/themes/solid-light-purple/theme.css +4 -0
  54. package/package.json +1 -1
  55. package/src/components/core/common/SolidGenericImport/SolidImport.module.css +40 -0
  56. package/src/resources/themes/solid-dark-purple/theme.css +4 -0
  57. package/src/resources/themes/solid-light-purple/theme.css +4 -0
@@ -0,0 +1,40 @@
1
+ .SolidImportContextWrapper {
2
+ height: 60vh;
3
+ border-radius: 6px;
4
+ border: 1px solid var(--primary-light-color);
5
+ overflow: auto;
6
+ }
7
+
8
+ .StepperText {
9
+ position: absolute;
10
+ left: 50%;
11
+ top: 50%;
12
+ transform: translate(-50%, -50%);
13
+ font-weight: 600;
14
+ }
15
+
16
+ .ActiveStepperText {
17
+ color: var(--surface-0) !important;
18
+ }
19
+
20
+ .DeactiveStepperText {
21
+ color: var(--solid-primary-black) !important;
22
+ }
23
+
24
+ .TransactionsHeaderDivider {
25
+ position: absolute;
26
+ background-color: var(--primary-light-color);
27
+ height: 70%;
28
+ width: 1px;
29
+ right: 0;
30
+ top: 50%;
31
+ transform: translateY(-50%);
32
+ }
33
+
34
+ .ImportTableHeader {
35
+ background: var(--gray-100);
36
+ border-bottom: 1px solid var(--primary-light-color);
37
+ position: sticky;
38
+ top: 0;
39
+ z-index: 1;
40
+ }
@@ -194,6 +194,10 @@
194
194
  --primary-900: #0e545f;
195
195
  }
196
196
 
197
+ .solid-primary-black-text {
198
+ color: var(--solid-primary-black);
199
+ }
200
+
197
201
  .p-editor-container .p-editor-toolbar {
198
202
  background: #18191D;
199
203
  border-top-right-radius: 6px;
@@ -205,6 +205,10 @@
205
205
  --primary-900: #260955;
206
206
  }
207
207
 
208
+ .solid-primary-black-text {
209
+ color: var(--solid-primary-black);
210
+ }
211
+
208
212
  .solid-primary-title {
209
213
  color: var(--solid-title) !important;
210
214
  }