react-asc 23.5.2 → 23.7.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/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/Portal/Portal.d.ts +7 -0
- package/components/Portal/index.d.ts +1 -0
- package/components/Skeleton/SkeletonAvatar.d.ts +5 -0
- package/components/Skeleton/SkeletonFooter.d.ts +5 -0
- package/components/Skeleton/SkeletonImage.d.ts +5 -0
- package/components/Skeleton/SkeletonText.d.ts +5 -0
- package/components/Skeleton/index.d.ts +4 -0
- package/components/index.d.ts +1 -0
- package/index.es.js +491 -392
- package/index.js +494 -390
- package/package.json +1 -1
- package/react-asc.scss +4 -2
- package/readme.md +2 -0
package/package.json
CHANGED
package/react-asc.scss
CHANGED
|
@@ -248,6 +248,10 @@
|
|
|
248
248
|
color: var(--muted);
|
|
249
249
|
}
|
|
250
250
|
|
|
251
|
+
.flex-1 {
|
|
252
|
+
flex: 1;
|
|
253
|
+
}
|
|
254
|
+
|
|
251
255
|
.d-flex {
|
|
252
256
|
display: flex !important;
|
|
253
257
|
}
|
|
@@ -288,8 +292,6 @@
|
|
|
288
292
|
height: 100%;
|
|
289
293
|
}
|
|
290
294
|
|
|
291
|
-
|
|
292
|
-
|
|
293
295
|
.text-center {
|
|
294
296
|
text-align: center;
|
|
295
297
|
}
|
package/readme.md
CHANGED