indicator-ui 1.1.80 → 1.1.82
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.cjs +11 -11
- package/dist/index.js +6088 -6058
- package/dist/indicator-ui.css +1 -1
- package/dist/styles/colors/css-variables/index.css +2 -1
- package/dist/styles/colors/css-variables/main-colors.css +37 -0
- package/dist/types/src/hooks/utils/index.d.ts +1 -0
- package/dist/types/src/hooks/utils/useInterval.d.ts +4 -0
- package/dist/types/src/hooks/utils/useIsHover.d.ts +2 -0
- package/dist/types/src/types/mixins.d.ts +1 -0
- package/dist/types/src/ui/Notify/ProgressBar/hooks/index.d.ts +1 -0
- package/dist/types/src/ui/Notify/ProgressBar/hooks/useProgressBar.d.ts +10 -0
- package/dist/types/src/ui/Notify/ProgressBar/ui/ProgressBar.d.ts +2 -3
- package/package.json +1 -1
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
/*BACKGROUND COLOR*/
|
|
3
|
+
--background-primary: #FFFFFF;
|
|
4
|
+
--background-secondary: #F9FAFB;
|
|
5
|
+
--background-tretiary: #F2F4F7;
|
|
6
|
+
--background-quaternary: #EAECF0;
|
|
7
|
+
|
|
8
|
+
/*TEXT COLOR*/
|
|
9
|
+
--text-buttons: #FFFFFF;
|
|
10
|
+
--text-secondary: #344054;
|
|
11
|
+
--text-tretiary: #667085;
|
|
12
|
+
--text-quaternary: #98A2B3;
|
|
13
|
+
|
|
14
|
+
/*ICONS COLOR*/
|
|
15
|
+
--icons-light: #EAECF0;
|
|
16
|
+
--icons-white: #FFFFFF;
|
|
17
|
+
--icons-primary: #667085;
|
|
18
|
+
--icons-secondary: #98A2B3;
|
|
19
|
+
--icons-tretiary: #D0D5DD;
|
|
20
|
+
--icons-quaternary: #EAECF0;
|
|
21
|
+
|
|
22
|
+
/*BORDER COLOR*/
|
|
23
|
+
--border-primary: #D0D5DD;
|
|
24
|
+
--border-secondary: #EAECF0;
|
|
25
|
+
--border-tretiary: #F2F4F7;
|
|
26
|
+
|
|
27
|
+
/*ELEMENTS COLOR*/
|
|
28
|
+
--elements-modals: #FFFFFF;
|
|
29
|
+
--elements-input: #FFFFFF;
|
|
30
|
+
--elements-button: #FFFFFF;
|
|
31
|
+
|
|
32
|
+
/*TABS COLOR*/
|
|
33
|
+
--tabs-active: #FFFFFF;
|
|
34
|
+
--tabs-active-hover: #F9FAFB;
|
|
35
|
+
--tabs-default: #F2F4F7;
|
|
36
|
+
--tabs-default-hover: #EAECF0;
|
|
37
|
+
}
|
|
@@ -42,4 +42,5 @@ export type InstanceRefAttributes<T> = {
|
|
|
42
42
|
export type ComponentInstanceRef<T extends ElementType> = React.ComponentProps<T> extends InstanceRefAttributes<infer Method> ? Method : never;
|
|
43
43
|
export type AcceptsComponentProps<T extends ElementType, P extends ComponentAttributes> = React.ComponentPropsWithoutRef<T> extends P ? T : never;
|
|
44
44
|
export type InferRefObjectElement<T> = T extends React.RefObject<infer K | null> ? K : never;
|
|
45
|
+
export type InferRefElement<T> = T extends React.Ref<infer K | null> ? K : never;
|
|
45
46
|
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './useProgressBar';
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
};
|
|
1
|
+
import { useProgressBar } from '../hooks';
|
|
2
|
+
type PropsType = Parameters<typeof useProgressBar>[number];
|
|
4
3
|
export declare function ProgressBar(props: PropsType): import("react/jsx-runtime").JSX.Element | undefined;
|
|
5
4
|
export {};
|