@cyber-harbour/ui 1.0.34 → 1.0.36
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/eye_light-3WS4REO5.png +0 -0
- package/dist/eye_light_hover-PVS4UAB4.png +0 -0
- package/dist/group_light-RVCSCGRJ.png +0 -0
- package/dist/group_light_hover-LVI5PRZM.png +0 -0
- package/dist/index.d.mts +43 -5
- package/dist/index.d.ts +43 -5
- package/dist/index.js +184 -170
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +268 -254
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -1
- package/src/Core/Header/Header.tsx +1 -1
- package/src/Core/Sidebar/Sidebar.tsx +3 -3
- package/src/Core/Sidebar/SidebarDelimeter.tsx +1 -1
- package/src/FullscreenCard/FullscreenCard.tsx +39 -8
- package/src/Graph2D/Graph2D.tsx +71 -70
- package/src/Graph2D/GraphLoader.tsx +84 -0
- package/src/Graph2D/eye_light.png +0 -0
- package/src/Graph2D/eye_light_hover.png +0 -0
- package/src/Graph2D/group_light.png +0 -0
- package/src/Graph2D/group_light_hover.png +0 -0
- package/src/Graph2D/types.ts +1 -0
- package/src/Layouts/PageLayout/PageLayout.tsx +6 -3
- package/src/Theme/ThemeProvider.tsx +9 -3
- package/src/Theme/index.ts +1 -1
- package/src/Theme/themes/config.ts +41 -0
- package/src/Theme/themes/dark.ts +703 -0
- package/src/Theme/themes/index.ts +2 -0
- package/src/Theme/{theme.ts → themes/light.ts} +30 -41
- package/src/Theme/types.ts +24 -0
- package/dist/cross_light-JTZWFLSV.png +0 -0
- package/dist/cross_light_hover-UQZ7E3CW.png +0 -0
- package/dist/eye_light-EQXRQBFN.png +0 -0
- package/dist/eye_light_hover-5XFRPJS4.png +0 -0
- package/src/Graph2D/cross_light.png +0 -0
- package/src/Graph2D/cross_light_hover.png +0 -0
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
// Індексні шари (z-index) для різних компонентів
|
|
2
|
+
export const zIndex = {
|
|
3
|
+
dropdown: 1000,
|
|
4
|
+
sticky: 1020,
|
|
5
|
+
fixed: 1030,
|
|
6
|
+
backdrop: 1040,
|
|
7
|
+
modal: 1050,
|
|
8
|
+
popover: 1060,
|
|
9
|
+
tooltip: 1070,
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
// Розміри брейкпоінтів
|
|
13
|
+
export const breakpoints = {
|
|
14
|
+
xs: 320,
|
|
15
|
+
s: 576,
|
|
16
|
+
m: 768,
|
|
17
|
+
l: 992,
|
|
18
|
+
xl: 1200,
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
// Типографія
|
|
22
|
+
export const typography = {
|
|
23
|
+
fontFamily:
|
|
24
|
+
'Inter,-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;',
|
|
25
|
+
lineHeight: 1.49,
|
|
26
|
+
// Розміри текстових елементів
|
|
27
|
+
variants: {
|
|
28
|
+
h1: {
|
|
29
|
+
fontSize: 22,
|
|
30
|
+
},
|
|
31
|
+
h2: {
|
|
32
|
+
fontSize: 16,
|
|
33
|
+
},
|
|
34
|
+
h3: {
|
|
35
|
+
fontSize: 14,
|
|
36
|
+
},
|
|
37
|
+
body: {
|
|
38
|
+
fontSize: 12,
|
|
39
|
+
},
|
|
40
|
+
},
|
|
41
|
+
};
|