react-asc 23.6.0 → 23.7.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/components/Backdrop/Backdrop.d.ts +2 -3
- package/components/Drawer/Drawer.d.ts +1 -1
- package/components/Form/validators/MinValidator.d.ts +1 -0
- package/components/Form/validators/index.d.ts +1 -0
- package/components/Menu/MenuBody.d.ts +1 -1
- package/components/Modal/Modal.d.ts +2 -1
- package/components/Portal/Portal.d.ts +7 -0
- package/components/Portal/index.d.ts +1 -0
- package/index.es.js +203 -163
- package/index.js +202 -161
- package/package.json +1 -1
- package/react-asc.scss +4 -13
- package/readme.md +2 -0
- package/components/Menu/MenuBackdrop.d.ts +0 -6
package/package.json
CHANGED
package/react-asc.scss
CHANGED
|
@@ -212,17 +212,6 @@
|
|
|
212
212
|
}
|
|
213
213
|
}
|
|
214
214
|
|
|
215
|
-
:root {
|
|
216
|
-
--progress-height: 0.5rem;
|
|
217
|
-
// --progress-font-size: 0.75rem;
|
|
218
|
-
--progress-bg: #e9ecef;
|
|
219
|
-
// --progress-border-radius: 0.375rem;
|
|
220
|
-
--progress-box-shadow: var(--shadow);
|
|
221
|
-
--progress-bar-color: #fff;
|
|
222
|
-
--progress-bar-bg: var(--primary);
|
|
223
|
-
--progress-bar-transition: width 0.6s ease;
|
|
224
|
-
}
|
|
225
|
-
|
|
226
215
|
:root {
|
|
227
216
|
--borderRadius: 5px;
|
|
228
217
|
--0: 0px !important;
|
|
@@ -248,6 +237,10 @@
|
|
|
248
237
|
color: var(--muted);
|
|
249
238
|
}
|
|
250
239
|
|
|
240
|
+
.flex-1 {
|
|
241
|
+
flex: 1;
|
|
242
|
+
}
|
|
243
|
+
|
|
251
244
|
.d-flex {
|
|
252
245
|
display: flex !important;
|
|
253
246
|
}
|
|
@@ -288,8 +281,6 @@
|
|
|
288
281
|
height: 100%;
|
|
289
282
|
}
|
|
290
283
|
|
|
291
|
-
|
|
292
|
-
|
|
293
284
|
.text-center {
|
|
294
285
|
text-align: center;
|
|
295
286
|
}
|
package/readme.md
CHANGED