optimized-react-component-library-xyz123 0.28.5 → 0.28.6
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.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +498 -464
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +498 -464
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -13
- package/src/css/darkMode.css +9 -5
- package/src/css/questions.css +10 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "optimized-react-component-library-xyz123",
|
|
3
|
-
"version": "0.28.
|
|
3
|
+
"version": "0.28.6",
|
|
4
4
|
"description": "A modern React component library using TypeScript with React 19 support.",
|
|
5
5
|
"main": "dist/index.cjs",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -28,9 +28,7 @@
|
|
|
28
28
|
"format": "prettier --write .",
|
|
29
29
|
"test": "vitest",
|
|
30
30
|
"prepare": "husky install",
|
|
31
|
-
"release": "standard-version"
|
|
32
|
-
"storybook": "storybook dev -p 6006",
|
|
33
|
-
"build-storybook": "storybook build"
|
|
31
|
+
"release": "standard-version"
|
|
34
32
|
},
|
|
35
33
|
"repository": {
|
|
36
34
|
"type": "git",
|
|
@@ -43,8 +41,7 @@
|
|
|
43
41
|
"typescript",
|
|
44
42
|
"npm",
|
|
45
43
|
"modern-react",
|
|
46
|
-
"boilerplate"
|
|
47
|
-
"storybook"
|
|
44
|
+
"boilerplate"
|
|
48
45
|
],
|
|
49
46
|
"author": "YOUR NAME",
|
|
50
47
|
"license": "MIT",
|
|
@@ -53,12 +50,6 @@
|
|
|
53
50
|
"react-dom": "^19.2.0"
|
|
54
51
|
},
|
|
55
52
|
"devDependencies": {
|
|
56
|
-
"@storybook/addon-a11y": "^8.6.15",
|
|
57
|
-
"@storybook/addon-docs": "^8.6.15",
|
|
58
|
-
"@storybook/addon-essentials": "^8.6.15",
|
|
59
|
-
"@storybook/react": "^8.6.15",
|
|
60
|
-
"@storybook/react-vite": "^8.6.15",
|
|
61
|
-
"@storybook/test": "^8.6.15",
|
|
62
53
|
"@testing-library/jest-dom": "^6.8.0",
|
|
63
54
|
"@testing-library/react": "^16.3.0",
|
|
64
55
|
"@types/dompurify": "^3.0.5",
|
|
@@ -72,7 +63,6 @@
|
|
|
72
63
|
"jsdom": "^26.1.0",
|
|
73
64
|
"prettier": "^3.0.0",
|
|
74
65
|
"standard-version": "^9.5.0",
|
|
75
|
-
"storybook": "^8.6.15",
|
|
76
66
|
"tsup": "^8.0.0",
|
|
77
67
|
"typescript": "^5.6.0",
|
|
78
68
|
"vitest": "^2.0.0"
|
package/src/css/darkMode.css
CHANGED
|
@@ -143,10 +143,18 @@
|
|
|
143
143
|
}
|
|
144
144
|
|
|
145
145
|
.errorDot {
|
|
146
|
-
color: var(--dark-main);
|
|
147
146
|
background-color: var(--dark-error);
|
|
148
147
|
}
|
|
149
148
|
|
|
149
|
+
.pts-validation-error-icon svg rect{
|
|
150
|
+
fill: var(--dark-error);
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
.pts-validation-error-icon svg path{
|
|
154
|
+
fill: var(--dark-main);
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
|
|
150
158
|
.errorText,
|
|
151
159
|
.pts-root-mandatoryAsterisk {
|
|
152
160
|
color: var(--dark-error);
|
|
@@ -318,10 +326,6 @@
|
|
|
318
326
|
color: var(--dark-action);
|
|
319
327
|
}
|
|
320
328
|
|
|
321
|
-
.filePickLabel .filePickButton {
|
|
322
|
-
background: var(--dark-info);
|
|
323
|
-
}
|
|
324
|
-
|
|
325
329
|
/* ---------- EDIT PREVIEW LINK ---------- */
|
|
326
330
|
|
|
327
331
|
.pts-editPreviewLink-container button {
|
package/src/css/questions.css
CHANGED
|
@@ -84,6 +84,15 @@ div.pts-root-question:last-child {
|
|
|
84
84
|
margin-right: 9px;
|
|
85
85
|
}
|
|
86
86
|
|
|
87
|
+
.pts-validation-error-icon{
|
|
88
|
+
margin-right: 0.9rem;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.pts-validation-error-icon svg{
|
|
92
|
+
width: 1.65rem;
|
|
93
|
+
height: 1.65rem;
|
|
94
|
+
}
|
|
95
|
+
|
|
87
96
|
.errorText,
|
|
88
97
|
.pts-root-mandatoryAsterisk {
|
|
89
98
|
color: var(--error);
|
|
@@ -915,6 +924,7 @@ div.pts-root-question:last-child {
|
|
|
915
924
|
/* AddFiles.tsx */ /* SelectedFiles.tsx */
|
|
916
925
|
.lastCol {
|
|
917
926
|
display: flex;
|
|
927
|
+
justify-content: flex-end;
|
|
918
928
|
max-width: 62px;
|
|
919
929
|
padding: 0;
|
|
920
930
|
margin: 0;
|