@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.
- package/dist/components/core/common/SolidGenericImport/DocumentSvg.d.ts +2 -0
- package/dist/components/core/common/SolidGenericImport/DocumentSvg.d.ts.map +1 -0
- package/dist/components/core/common/SolidGenericImport/DocumentSvg.js +5 -0
- package/dist/components/core/common/SolidGenericImport/DocumentSvg.js.map +1 -0
- package/dist/components/core/common/SolidGenericImport/SolidGenericImport.d.ts +2 -0
- package/dist/components/core/common/SolidGenericImport/SolidGenericImport.d.ts.map +1 -0
- package/dist/components/core/common/SolidGenericImport/SolidGenericImport.js +25 -0
- package/dist/components/core/common/SolidGenericImport/SolidGenericImport.js.map +1 -0
- package/dist/components/core/common/SolidGenericImport/SolidImport.module.css +40 -0
- package/dist/components/core/common/SolidGenericImport/SolidImportDropzone.d.ts +2 -0
- package/dist/components/core/common/SolidGenericImport/SolidImportDropzone.d.ts.map +1 -0
- package/dist/components/core/common/SolidGenericImport/SolidImportDropzone.js +138 -0
- package/dist/components/core/common/SolidGenericImport/SolidImportDropzone.js.map +1 -0
- package/dist/components/core/common/SolidGenericImport/SolidImportInstructions.d.ts +2 -0
- package/dist/components/core/common/SolidGenericImport/SolidImportInstructions.d.ts.map +1 -0
- package/dist/components/core/common/SolidGenericImport/SolidImportInstructions.js +123 -0
- package/dist/components/core/common/SolidGenericImport/SolidImportInstructions.js.map +1 -0
- package/dist/components/core/common/SolidGenericImport/SolidImportStepper.d.ts +2 -0
- package/dist/components/core/common/SolidGenericImport/SolidImportStepper.d.ts.map +1 -0
- package/dist/components/core/common/SolidGenericImport/SolidImportStepper.js +14 -0
- package/dist/components/core/common/SolidGenericImport/SolidImportStepper.js.map +1 -0
- package/dist/components/core/common/SolidGenericImport/SolidImportTransaction.d.ts +2 -0
- package/dist/components/core/common/SolidGenericImport/SolidImportTransaction.d.ts.map +1 -0
- package/dist/components/core/common/SolidGenericImport/SolidImportTransaction.js +185 -0
- package/dist/components/core/common/SolidGenericImport/SolidImportTransaction.js.map +1 -0
- package/dist/components/core/common/SolidGenericImport/SolidImportTransactionStatus.d.ts +2 -0
- package/dist/components/core/common/SolidGenericImport/SolidImportTransactionStatus.d.ts.map +1 -0
- package/dist/components/core/common/SolidGenericImport/SolidImportTransactionStatus.js +141 -0
- package/dist/components/core/common/SolidGenericImport/SolidImportTransactionStatus.js.map +1 -0
- package/dist/components/core/common/SolidGenericImport/SolidImportWrapper.d.ts +2 -0
- package/dist/components/core/common/SolidGenericImport/SolidImportWrapper.d.ts.map +1 -0
- package/dist/components/core/common/SolidGenericImport/SolidImportWrapper.js +17 -0
- package/dist/components/core/common/SolidGenericImport/SolidImportWrapper.js.map +1 -0
- package/dist/components/core/form/fields/SolidSelectionDynamicField.d.ts.map +1 -1
- package/dist/components/core/form/fields/SolidSelectionDynamicField.js +24 -7
- package/dist/components/core/form/fields/SolidSelectionDynamicField.js.map +1 -1
- package/dist/components/core/list/SolidListView.d.ts.map +1 -1
- package/dist/components/core/list/SolidListView.js +4 -1
- package/dist/components/core/list/SolidListView.js.map +1 -1
- package/dist/components/core/list/SolidListViewConfigure.d.ts +1 -1
- package/dist/components/core/list/SolidListViewConfigure.d.ts.map +1 -1
- package/dist/components/core/list/SolidListViewConfigure.js +9 -6
- package/dist/components/core/list/SolidListViewConfigure.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/redux/api/importTransactionApi.d.ts +11 -0
- package/dist/redux/api/importTransactionApi.d.ts.map +1 -0
- package/dist/redux/api/importTransactionApi.js +69 -0
- package/dist/redux/api/importTransactionApi.js.map +1 -0
- package/dist/resources/themes/solid-dark-purple/theme.css +4 -0
- package/dist/resources/themes/solid-light-purple/theme.css +4 -0
- package/package.json +1 -1
- package/src/components/core/common/SolidGenericImport/SolidImport.module.css +40 -0
- package/src/resources/themes/solid-dark-purple/theme.css +4 -0
- 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
|
+
}
|