@mxenabled/connect-widget 2.18.0 → 2.19.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 +111 -52
- package/dist/index.es.js.map +1 -1
- package/dist/lastBuild.txt +1 -1
- package/dist/style.css +43 -0
- package/package.json +2 -2
package/dist/lastBuild.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Last build:
|
|
1
|
+
Last build: Tue Feb 17 16:59:55 2026
|
package/dist/style.css
CHANGED
|
@@ -70,6 +70,49 @@ li span.MuiCheckbox-root {
|
|
|
70
70
|
padding-top: 10px;
|
|
71
71
|
padding-bottom: 10px;
|
|
72
72
|
}
|
|
73
|
+
._container_hgokd_1 {
|
|
74
|
+
display: flex;
|
|
75
|
+
flex-direction: column;
|
|
76
|
+
align-items: center;
|
|
77
|
+
justify-content: center;
|
|
78
|
+
text-align: center;
|
|
79
|
+
padding-top: 20px;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
._logoContainer_hgokd_10 {
|
|
83
|
+
position: relative;
|
|
84
|
+
display: inline-block;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
._icon_hgokd_15 {
|
|
88
|
+
position: absolute;
|
|
89
|
+
top: -16px;
|
|
90
|
+
right: -16px;
|
|
91
|
+
background: white;
|
|
92
|
+
border-radius: 50%;
|
|
93
|
+
display: flex;
|
|
94
|
+
line-height: 0;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
._title_hgokd_25.MuiTypography-root {
|
|
98
|
+
margin-bottom: 4px;
|
|
99
|
+
margin-top: 32px;
|
|
100
|
+
font-size: 23px;
|
|
101
|
+
font-weight: 700;
|
|
102
|
+
line-height: 32px;
|
|
103
|
+
text-align: center;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
._body_hgokd_34.MuiTypography-root {
|
|
107
|
+
text-align: center;
|
|
108
|
+
margin-bottom: 32px;
|
|
109
|
+
font-size: 15px;
|
|
110
|
+
line-height: 24px;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
._body_hgokd_34 strong {
|
|
114
|
+
font-weight: 700;
|
|
115
|
+
}
|
|
73
116
|
:root {
|
|
74
117
|
--progress-bar-background-image-height: 80px;
|
|
75
118
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mxenabled/connect-widget",
|
|
3
3
|
"description": "A simple ui library for React",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.19.0",
|
|
5
5
|
"module": "dist/index.es.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"type": "module",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"access": "public"
|
|
13
13
|
},
|
|
14
14
|
"scripts": {
|
|
15
|
-
"dev": "vite",
|
|
15
|
+
"dev": "vite build --watch",
|
|
16
16
|
"build": "tsc && vite build && npm run logBuildDate",
|
|
17
17
|
"lint": "eslint . --ext ts,tsx,js,jsx,md --report-unused-disable-directives --max-warnings 14",
|
|
18
18
|
"preview": "vite preview",
|