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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-asc",
3
- "version": "23.6.0",
3
+ "version": "23.7.1",
4
4
  "description": "handcrafted react components",
5
5
  "main": "index.js",
6
6
  "module": "index.es.js",
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
@@ -69,8 +69,10 @@ react-asc provides built-in ts definition
69
69
  - Menu
70
70
  - Modal + ModalService
71
71
  - NumberSelect
72
+ Portal
72
73
  - Select
73
74
  - Sidebar
75
+ - Skeleton (Avatar, Image, Text, SkeletonFooter)
74
76
  - Snackbar + SnackbarService
75
77
  - SpeedDial
76
78
  - Stepper (beta)
@@ -1,6 +0,0 @@
1
- import React from 'react';
2
- interface IMenuBackdropProps {
3
- onClick?: () => void;
4
- }
5
- export declare const MenuBackdrop: ({ onClick }: IMenuBackdropProps) => React.ReactPortal;
6
- export {};