optimized-react-component-library-xyz123 0.1.42 → 0.1.44
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.css +504 -0
- package/dist/index.d.mts +56 -2
- package/dist/index.d.ts +56 -2
- package/dist/index.js +822 -374
- package/dist/index.mjs +820 -373
- package/package.json +4 -2
- package/src/css/darkMode.css +18 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "optimized-react-component-library-xyz123",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.44",
|
|
4
4
|
"description": "A modern React component library using TypeScript with React 19 support.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -68,6 +68,8 @@
|
|
|
68
68
|
"dependencies": {
|
|
69
69
|
"clsx": "^2.1.1",
|
|
70
70
|
"date-fns": "^4.1.0",
|
|
71
|
-
"dompurify": "^3.2.6"
|
|
71
|
+
"dompurify": "^3.2.6",
|
|
72
|
+
"react-bootstrap": "^2.10.10",
|
|
73
|
+
"react-dropzone": "^14.3.8"
|
|
72
74
|
}
|
|
73
75
|
}
|
package/src/css/darkMode.css
CHANGED
|
@@ -6,6 +6,19 @@
|
|
|
6
6
|
color: #ffffff;
|
|
7
7
|
}
|
|
8
8
|
|
|
9
|
+
.pts-header-container{
|
|
10
|
+
background-color: #200827;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.pts-header-container svg path{
|
|
14
|
+
fill: #ffffff;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.pts-languageButton{
|
|
18
|
+
color:#ffffff;
|
|
19
|
+
cursor: pointer;
|
|
20
|
+
}
|
|
21
|
+
|
|
9
22
|
section,
|
|
10
23
|
.pts-form-step-header {
|
|
11
24
|
background-color: #141414;
|
|
@@ -61,6 +74,8 @@
|
|
|
61
74
|
.pts-root-question input[type='email'],
|
|
62
75
|
.pts-root-question input[type='tel'] {
|
|
63
76
|
border: 1px solid #808080;
|
|
77
|
+
background: #000000;
|
|
78
|
+
color: #ffffff;
|
|
64
79
|
}
|
|
65
80
|
|
|
66
81
|
/* ---------- SERVICE HEADLINE AND BODY ---------- */
|
|
@@ -155,6 +170,9 @@
|
|
|
155
170
|
border-color: #b07cbf;
|
|
156
171
|
}
|
|
157
172
|
|
|
173
|
+
.textfield-about{
|
|
174
|
+
color: #808080;
|
|
175
|
+
}
|
|
158
176
|
/* ---------- EDIT PREVIEW LINK ---------- */
|
|
159
177
|
|
|
160
178
|
.pts-editPreviewLink-container button {
|