@mxenabled/connect-widget 2.16.1 → 2.17.0
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/index.es.js +519 -102
- package/dist/index.es.js.map +1 -1
- package/dist/lastBuild.txt +1 -1
- package/dist/style.css +67 -0
- package/package.json +1 -1
package/dist/lastBuild.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Last build:
|
|
1
|
+
Last build: Tue Jan 6 18:16:36 2026
|
package/dist/style.css
CHANGED
|
@@ -3,6 +3,73 @@
|
|
|
3
3
|
display: flex;
|
|
4
4
|
flex-direction: column;
|
|
5
5
|
}
|
|
6
|
+
.institution-panel-wrapper {
|
|
7
|
+
position: relative;
|
|
8
|
+
display: flex;
|
|
9
|
+
justify-content: center;
|
|
10
|
+
padding-top: 32px;
|
|
11
|
+
padding-bottom: 8px;
|
|
12
|
+
border-bottom-right-radius: 8px;
|
|
13
|
+
border-bottom-left-radius: 8px;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.institution-panel-wrapper div.MuiPaper-root {
|
|
17
|
+
box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.12);
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.institution-panel {
|
|
21
|
+
width: 300px;
|
|
22
|
+
pointer-events: none;
|
|
23
|
+
}
|
|
24
|
+
.institution-panel-header {
|
|
25
|
+
font-weight: 600;
|
|
26
|
+
border-radius: 8px 8px 0 0;
|
|
27
|
+
font-size: 18px;
|
|
28
|
+
height: 34px;
|
|
29
|
+
display: flex;
|
|
30
|
+
justify-content: center;
|
|
31
|
+
align-items: center;
|
|
32
|
+
color: white;
|
|
33
|
+
padding-left: 20px;
|
|
34
|
+
padding-right: 20px;
|
|
35
|
+
}
|
|
36
|
+
.institution-panel-body {
|
|
37
|
+
position: relative;
|
|
38
|
+
padding: 0 16px;
|
|
39
|
+
font-size: 13px;
|
|
40
|
+
}
|
|
41
|
+
.institution-panel-body ul {
|
|
42
|
+
list-style-type: none;
|
|
43
|
+
padding: 0;
|
|
44
|
+
margin: 0;
|
|
45
|
+
}
|
|
46
|
+
.institution-panel-body li {
|
|
47
|
+
display: flex;
|
|
48
|
+
align-items: center;
|
|
49
|
+
padding-top: 8px;
|
|
50
|
+
padding-bottom: 8px;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
li span.MuiCheckbox-root {
|
|
54
|
+
padding-left: 0px;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.predirect-instruction-text-wrapper {
|
|
58
|
+
position: relative;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.predirect-instruction-text-wrapper .MuiSvgIcon-root {
|
|
62
|
+
position: absolute;
|
|
63
|
+
bottom: 2px;
|
|
64
|
+
}
|
|
65
|
+
.predirect-instruction-text {
|
|
66
|
+
display: inline;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.psuedo-checkbox-label {
|
|
70
|
+
padding-top: 10px;
|
|
71
|
+
padding-bottom: 10px;
|
|
72
|
+
}
|
|
6
73
|
:root {
|
|
7
74
|
--progress-bar-background-image-height: 80px;
|
|
8
75
|
}
|