react-asc 23.7.0 → 23.7.3

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.7.0",
3
+ "version": "23.7.3",
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;
@@ -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 {};