optimized-react-component-library-xyz123 2.2.19 → 2.3.1
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 +3 -16
- package/dist/index.d.ts +3 -16
- package/dist/index.js +200 -387
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +194 -380
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/css/darkMode.css +0 -10
- package/src/css/mobileView.css +1 -9
- package/src/css/questions.css +0 -62
- package/src/css/styles.css +3 -2
package/package.json
CHANGED
package/src/css/darkMode.css
CHANGED
|
@@ -234,16 +234,6 @@
|
|
|
234
234
|
background-color: var(--dark-action);
|
|
235
235
|
}
|
|
236
236
|
|
|
237
|
-
/* ---------- RADIO MULTIPLE WHITH INFO ---------- */
|
|
238
|
-
|
|
239
|
-
.pts-radio-collapse-button-container{
|
|
240
|
-
background-color: var(--dark-action);
|
|
241
|
-
}
|
|
242
|
-
|
|
243
|
-
.pts-radio-collapse-body.open {
|
|
244
|
-
border-color:var(--dark-action);
|
|
245
|
-
}
|
|
246
|
-
|
|
247
237
|
/* ---------- MULTIPLE CHECKBOXES ---------- */
|
|
248
238
|
|
|
249
239
|
.pts-multipleCheckboxes-container input[type='checkbox'] {
|
package/src/css/mobileView.css
CHANGED
|
@@ -177,20 +177,12 @@
|
|
|
177
177
|
margin-right: 1.6rem;
|
|
178
178
|
margin-top: 1.6rem;
|
|
179
179
|
}
|
|
180
|
-
|
|
180
|
+
|
|
181
181
|
.pts-textArea-container textarea {
|
|
182
182
|
width: 100%;
|
|
183
183
|
box-sizing: border-box;
|
|
184
184
|
}
|
|
185
185
|
|
|
186
|
-
.pts-radio-collapse-button-container {
|
|
187
|
-
align-items: start;
|
|
188
|
-
gap: 6px;
|
|
189
|
-
grid-template-columns: 5% 84% 5%;
|
|
190
|
-
padding-top: 1.6rem;
|
|
191
|
-
padding-bottom: 1rem;
|
|
192
|
-
}
|
|
193
|
-
|
|
194
186
|
.inputContainer {
|
|
195
187
|
margin-bottom: 1.6rem;
|
|
196
188
|
}
|
package/src/css/questions.css
CHANGED
|
@@ -157,68 +157,6 @@ div.pts-root-question:last-child {
|
|
|
157
157
|
cursor: pointer;
|
|
158
158
|
}
|
|
159
159
|
|
|
160
|
-
|
|
161
|
-
/****RADIO MULTIPLE WITH INFO*/
|
|
162
|
-
.pts-radio-collapse {
|
|
163
|
-
position: relative;
|
|
164
|
-
width: 100%;
|
|
165
|
-
max-width: 62.4rem;
|
|
166
|
-
margin-bottom: 0.8rem;
|
|
167
|
-
}
|
|
168
|
-
|
|
169
|
-
.pts-radio-collapse-button-container {
|
|
170
|
-
background-color: var(--background);
|
|
171
|
-
color: var(--text);
|
|
172
|
-
cursor: pointer;
|
|
173
|
-
padding: 1.2rem 1.6rem;
|
|
174
|
-
border-radius: 8px;
|
|
175
|
-
outline: none;
|
|
176
|
-
display: grid;
|
|
177
|
-
text-align: left;
|
|
178
|
-
grid-template-columns: 5% 90% 5%;
|
|
179
|
-
align-items: center;
|
|
180
|
-
}
|
|
181
|
-
|
|
182
|
-
.pts-radio-collapse-button-container.open {
|
|
183
|
-
border-radius: 8px 8px 0 0;
|
|
184
|
-
}
|
|
185
|
-
|
|
186
|
-
.pts-radio-collapse-button-container input{
|
|
187
|
-
background-color: var(--main);
|
|
188
|
-
}
|
|
189
|
-
|
|
190
|
-
.pts-radio-collapse-button {
|
|
191
|
-
all:unset;
|
|
192
|
-
display: grid;
|
|
193
|
-
grid-template-columns: 95% 5%;
|
|
194
|
-
background-color: transparent;
|
|
195
|
-
}
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
.pts-radio-collapse-button svg path{
|
|
199
|
-
fill: var(--text);
|
|
200
|
-
}
|
|
201
|
-
|
|
202
|
-
.pts-radio-collapse-body {
|
|
203
|
-
position: relative;
|
|
204
|
-
display: grid;
|
|
205
|
-
grid-template-rows: 0fr;
|
|
206
|
-
transition: grid-template-rows 0.3s ease;
|
|
207
|
-
}
|
|
208
|
-
|
|
209
|
-
.pts-radio-collapse-body.open {
|
|
210
|
-
grid-template-rows: 1fr;
|
|
211
|
-
border: 2px solid var(--background);
|
|
212
|
-
border-top: none;
|
|
213
|
-
border-radius:0 0 8px 8px;
|
|
214
|
-
padding: 1.6rem;
|
|
215
|
-
}
|
|
216
|
-
|
|
217
|
-
.pts-radio-collapse-content {
|
|
218
|
-
overflow: hidden;
|
|
219
|
-
|
|
220
|
-
}
|
|
221
|
-
|
|
222
160
|
/* ---------- SINGLE CHECKBOX ---------- */
|
|
223
161
|
|
|
224
162
|
.pts-singleCheckbox-row {
|