@hellboy/ds 0.1.2 → 0.2.7
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/README.md +568 -71
- package/{src/style/components/badge → dist/components}/badge.css +9 -25
- package/dist/components/badge.d.mts +12 -0
- package/dist/components/badge.d.ts +12 -0
- package/dist/components/badge.js +42 -0
- package/dist/components/badge.mjs +15 -0
- package/dist/components/banner.css +280 -0
- package/dist/components/banner.d.mts +12 -0
- package/dist/components/banner.d.ts +12 -0
- package/dist/components/banner.js +184 -0
- package/dist/components/banner.mjs +147 -0
- package/dist/components/button-group.css +289 -0
- package/dist/components/button-group.d.mts +81 -0
- package/dist/components/button-group.d.ts +81 -0
- package/dist/components/button-group.js +180 -0
- package/dist/components/button-group.mjs +143 -0
- package/{src/style/components/button → dist/components}/button.css +59 -62
- package/dist/components/button.d.mts +57 -0
- package/dist/components/button.d.ts +57 -0
- package/dist/components/button.js +129 -0
- package/dist/components/button.mjs +92 -0
- package/{src/style/components/card → dist/components}/card.css +9 -30
- package/dist/components/card.d.mts +31 -0
- package/dist/components/card.d.ts +31 -0
- package/dist/components/card.js +59 -0
- package/dist/components/card.mjs +32 -0
- package/{src/style → dist}/components/checkbox.css +51 -43
- package/dist/components/checkbox.d.mts +31 -0
- package/dist/components/checkbox.d.ts +31 -0
- package/dist/components/checkbox.js +130 -0
- package/dist/components/checkbox.mjs +93 -0
- package/{src/style/components/code-block → dist/components}/code-block.css +3 -7
- package/dist/components/code-block.d.mts +24 -0
- package/dist/components/code-block.d.ts +24 -0
- package/dist/components/code-block.js +43 -0
- package/dist/components/code-block.mjs +16 -0
- package/dist/components/color-control.css +285 -0
- package/dist/components/color-control.d.mts +5 -0
- package/dist/components/color-control.d.ts +5 -0
- package/dist/components/color-control.js +534 -0
- package/dist/components/color-control.mjs +497 -0
- package/dist/components/dialog.css +930 -0
- package/dist/components/dialog.d.mts +32 -0
- package/dist/components/dialog.d.ts +32 -0
- package/dist/components/dialog.js +1111 -0
- package/dist/components/dialog.mjs +1074 -0
- package/dist/components/divider.css +356 -0
- package/dist/components/divider.d.mts +32 -0
- package/dist/components/divider.d.ts +32 -0
- package/dist/components/divider.js +344 -0
- package/dist/components/divider.mjs +307 -0
- package/{src/style/components/drag-handle → dist/components}/drag-handle.css +3 -18
- package/dist/components/drag-handle.d.mts +11 -0
- package/dist/components/drag-handle.d.ts +11 -0
- package/dist/components/drag-handle.js +103 -0
- package/dist/components/drag-handle.mjs +66 -0
- package/dist/components/drawer.css +1027 -0
- package/dist/components/drawer.d.mts +14 -0
- package/dist/components/drawer.d.ts +14 -0
- package/dist/components/drawer.js +1072 -0
- package/dist/components/drawer.mjs +1035 -0
- package/dist/components/floating-bar.css +17 -0
- package/dist/components/floating-bar.d.mts +25 -0
- package/dist/components/floating-bar.d.ts +25 -0
- package/dist/components/floating-bar.js +52 -0
- package/dist/components/floating-bar.mjs +25 -0
- package/dist/components/footer.css +40 -0
- package/dist/components/footer.d.mts +8 -0
- package/dist/components/footer.d.ts +8 -0
- package/dist/components/footer.js +44 -0
- package/dist/components/footer.mjs +17 -0
- package/dist/components/grid.css +47 -0
- package/dist/components/grid.d.mts +27 -0
- package/dist/components/grid.d.ts +27 -0
- package/dist/components/grid.js +52 -0
- package/dist/components/grid.mjs +25 -0
- package/dist/components/header.css +1075 -0
- package/dist/components/header.d.mts +35 -0
- package/dist/components/header.d.ts +35 -0
- package/dist/components/header.js +1402 -0
- package/dist/components/header.mjs +1365 -0
- package/dist/components/hero.css +121 -0
- package/dist/components/hero.d.mts +111 -0
- package/dist/components/hero.d.ts +111 -0
- package/dist/components/hero.js +285 -0
- package/dist/components/hero.mjs +248 -0
- package/{src/style/components/icons → dist/components}/icons.css +14 -15
- package/dist/components/icons.d.mts +104 -0
- package/dist/components/icons.d.ts +104 -0
- package/dist/components/icons.js +239 -0
- package/dist/components/icons.mjs +203 -0
- package/{src/style/components/input → dist/components}/input.css +189 -102
- package/dist/components/input.d.mts +114 -0
- package/dist/components/input.d.ts +114 -0
- package/dist/components/input.js +926 -0
- package/dist/components/input.mjs +879 -0
- package/dist/components/layout.css +551 -0
- package/dist/components/layout.d.mts +16 -0
- package/dist/components/layout.d.ts +16 -0
- package/dist/components/layout.js +387 -0
- package/dist/components/layout.mjs +352 -0
- package/{src/style/components/list → dist/components}/list.css +47 -41
- package/dist/components/list.d.mts +46 -0
- package/dist/components/list.d.ts +46 -0
- package/dist/components/list.js +124 -0
- package/dist/components/list.mjs +96 -0
- package/dist/components/navbar.css +706 -0
- package/dist/components/navbar.d.mts +56 -0
- package/dist/components/navbar.d.ts +56 -0
- package/dist/components/navbar.js +994 -0
- package/dist/components/navbar.mjs +952 -0
- package/{src/style/components/page-index → dist/components}/page-index.css +2 -47
- package/dist/components/page-index.d.mts +25 -0
- package/dist/components/page-index.d.ts +25 -0
- package/dist/components/page-index.js +239 -0
- package/dist/components/page-index.mjs +202 -0
- package/{src/style/components/page → dist/components}/page.css +4 -15
- package/dist/components/page.d.mts +30 -0
- package/dist/components/page.d.ts +30 -0
- package/dist/components/page.js +40 -0
- package/dist/components/page.mjs +13 -0
- package/dist/components/popover.css +87 -0
- package/dist/components/popover.d.mts +22 -0
- package/dist/components/popover.d.ts +22 -0
- package/dist/components/popover.js +243 -0
- package/dist/components/popover.mjs +206 -0
- package/{src/style → dist}/components/radio.css +8 -51
- package/dist/components/radio.d.mts +59 -0
- package/dist/components/radio.d.ts +59 -0
- package/dist/components/radio.js +133 -0
- package/dist/components/radio.mjs +95 -0
- package/dist/components/section.css +993 -0
- package/dist/components/section.d.mts +33 -0
- package/dist/components/section.d.ts +33 -0
- package/dist/components/section.js +1401 -0
- package/dist/components/section.mjs +1364 -0
- package/dist/components/select.css +391 -0
- package/dist/components/select.d.mts +63 -0
- package/dist/components/select.d.ts +63 -0
- package/dist/components/select.js +452 -0
- package/dist/components/select.mjs +415 -0
- package/{src/style/components/slider → dist/components}/slider.css +55 -33
- package/dist/components/slider.d.mts +69 -0
- package/dist/components/slider.d.ts +69 -0
- package/dist/components/slider.js +254 -0
- package/dist/components/slider.mjs +217 -0
- package/dist/components/switch.css +1081 -0
- package/dist/components/switch.d.mts +33 -0
- package/dist/components/switch.d.ts +33 -0
- package/dist/components/switch.js +1092 -0
- package/dist/components/switch.mjs +1055 -0
- package/{src/style/components/table → dist/components}/table.css +3 -28
- package/dist/components/table.d.mts +42 -0
- package/dist/components/table.d.ts +42 -0
- package/dist/components/table.js +108 -0
- package/dist/components/table.mjs +76 -0
- package/dist/components/tag.css +97 -0
- package/dist/components/tag.d.mts +12 -0
- package/dist/components/tag.d.ts +12 -0
- package/dist/components/tag.js +42 -0
- package/dist/components/tag.mjs +15 -0
- package/dist/components/textarea.css +1359 -0
- package/dist/components/textarea.d.mts +84 -0
- package/dist/components/textarea.d.ts +84 -0
- package/dist/components/textarea.js +1962 -0
- package/dist/components/textarea.mjs +1924 -0
- package/{src/style/components/theme-control → dist/components}/theme-control.css +3 -7
- package/dist/components/theme-control.d.mts +9 -0
- package/dist/components/theme-control.d.ts +9 -0
- package/dist/components/theme-control.js +235 -0
- package/dist/components/theme-control.mjs +200 -0
- package/{src/style/components/tooltip → dist/components}/tooltip.css +5 -13
- package/dist/components/tooltip.d.mts +12 -0
- package/dist/components/tooltip.d.ts +12 -0
- package/dist/components/tooltip.js +200 -0
- package/dist/components/tooltip.mjs +163 -0
- package/dist/icons-Czahnf-r.d.mts +15 -0
- package/dist/icons-Czahnf-r.d.ts +15 -0
- package/dist/index.css +2915 -2068
- package/dist/index.d.mts +144 -721
- package/dist/index.d.ts +144 -721
- package/dist/index.js +4076 -2282
- package/dist/index.mjs +4132 -2366
- package/dist/theme.css +34 -34
- package/package.json +27 -8
- package/dist/index.css.map +0 -1
- package/dist/index.js.map +0 -1
- package/dist/index.mjs.map +0 -1
- package/hellboy-ds-0.1.2.tgz +0 -0
- package/src/components/badge/Badge.tsx +0 -29
- package/src/components/badge/index.ts +0 -1
- package/src/components/banner/Banner.tsx +0 -48
- package/src/components/banner/banner.css +0 -44
- package/src/components/banner/index.ts +0 -1
- package/src/components/button/button.tsx +0 -127
- package/src/components/button/index.ts +0 -1
- package/src/components/card/card.tsx +0 -57
- package/src/components/card/index.ts +0 -1
- package/src/components/checkbox/Checkbox.tsx +0 -98
- package/src/components/checkbox/index.ts +0 -1
- package/src/components/code-block/code-block.tsx +0 -44
- package/src/components/code-block/index.ts +0 -1
- package/src/components/color-control/color-control.tsx +0 -322
- package/src/components/color-control/index.ts +0 -1
- package/src/components/drag-handle/DragHandle.tsx +0 -78
- package/src/components/drag-handle/index.ts +0 -1
- package/src/components/drawer/drawer.tsx +0 -82
- package/src/components/drawer/index.ts +0 -1
- package/src/components/floating-bar/floating-bar.tsx +0 -52
- package/src/components/floating-bar/index.ts +0 -2
- package/src/components/footer/footer.tsx +0 -28
- package/src/components/footer/index.ts +0 -1
- package/src/components/grid/Grid.tsx +0 -53
- package/src/components/grid/index.ts +0 -1
- package/src/components/header/header.tsx +0 -57
- package/src/components/header/index.ts +0 -1
- package/src/components/icons/icons.tsx +0 -44
- package/src/components/icons/index.ts +0 -1
- package/src/components/index.ts +0 -29
- package/src/components/input/DatePicker.tsx +0 -133
- package/src/components/input/Input.tsx +0 -220
- package/src/components/input/InputDate.tsx +0 -10
- package/src/components/input/InputDateTime.tsx +0 -10
- package/src/components/input/InputEmail.tsx +0 -10
- package/src/components/input/InputField.tsx +0 -137
- package/src/components/input/InputNumber.tsx +0 -10
- package/src/components/input/InputPassword.tsx +0 -10
- package/src/components/input/InputSearch.tsx +0 -10
- package/src/components/input/InputTel.tsx +0 -10
- package/src/components/input/InputText.tsx +0 -10
- package/src/components/input/InputTime.tsx +0 -10
- package/src/components/input/InputUrl.tsx +0 -10
- package/src/components/input/TimePicker.tsx +0 -151
- package/src/components/input/index.ts +0 -11
- package/src/components/layout/Layout.tsx +0 -244
- package/src/components/layout/index.ts +0 -1
- package/src/components/list/List.tsx +0 -159
- package/src/components/list/index.ts +0 -1
- package/src/components/navbar/MenuCategory.tsx +0 -20
- package/src/components/navbar/MenuGroup.tsx +0 -288
- package/src/components/navbar/MenuItem.tsx +0 -65
- package/src/components/navbar/Navbar.tsx +0 -23
- package/src/components/navbar/index.ts +0 -4
- package/src/components/page/index.ts +0 -1
- package/src/components/page/page.tsx +0 -46
- package/src/components/page-index/PageIndex.tsx +0 -275
- package/src/components/page-index/index.ts +0 -1
- package/src/components/popover/index.ts +0 -1
- package/src/components/popover/popover.tsx +0 -199
- package/src/components/radio/Radio.tsx +0 -176
- package/src/components/radio/index.ts +0 -1
- package/src/components/section/index.ts +0 -1
- package/src/components/section/section.tsx +0 -66
- package/src/components/select/Select.tsx +0 -212
- package/src/components/select/index.ts +0 -1
- package/src/components/slider/Slider.tsx +0 -267
- package/src/components/slider/index.ts +0 -1
- package/src/components/switch/index.ts +0 -1
- package/src/components/switch/switch.tsx +0 -99
- package/src/components/table/Table.tsx +0 -147
- package/src/components/table/index.ts +0 -1
- package/src/components/theme-control/index.ts +0 -1
- package/src/components/theme-control/theme-control.tsx +0 -78
- package/src/components/tooltip/index.ts +0 -1
- package/src/components/tooltip/tooltip.tsx +0 -207
- package/src/contexts/NavbarTooltipContext.tsx +0 -48
- package/src/contexts/index.ts +0 -1
- package/src/foundations/motion.md +0 -136
- package/src/index.ts +0 -40
- package/src/style/_shared/field.css +0 -69
- package/src/style/components/color-control/color-control.css +0 -126
- package/src/style/components/drawer/drawer.css +0 -210
- package/src/style/components/floating-bar/floating-bar.css +0 -39
- package/src/style/components/footer/footer.css +0 -108
- package/src/style/components/grid/grid.css +0 -33
- package/src/style/components/header/header.css +0 -44
- package/src/style/components/layout/layout.css +0 -205
- package/src/style/components/navbar/navbar.css +0 -342
- package/src/style/components/popover/popover.css +0 -44
- package/src/style/components/section/section.css +0 -67
- package/src/style/components/select/select.css +0 -143
- package/src/style/components/switch/switch.css +0 -267
- package/src/style/foundations/global.css +0 -316
- package/src/style/foundations/motion.css +0 -164
- package/src/style/foundations/spacing.css +0 -51
- package/src/style/foundations/typography.css +0 -39
- package/src/style/foundations/z-index.css +0 -81
- package/src/style/modes/dark.css +0 -146
- package/src/style/modes/light.css +0 -147
- package/src/style/semantic.css +0 -52
- package/src/style/styles.css +0 -51
- package/src/style/themes/theme.json +0 -37
- package/src/utils/README.md +0 -305
- package/src/utils/USER_PREFERENCES.md +0 -558
- package/src/utils/theme.ts +0 -127
- package/src/utils/user-preferences.ts +0 -577
- package/tsconfig.json +0 -25
- package/tsup.config.ts +0 -52
|
@@ -1,205 +0,0 @@
|
|
|
1
|
-
/* Layout Component Styles */
|
|
2
|
-
|
|
3
|
-
/* Base Layout */
|
|
4
|
-
.layout {
|
|
5
|
-
min-height: 100vh;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
/* ===== SINGLE VARIANT ===== */
|
|
9
|
-
/* coluna1 (main) */
|
|
10
|
-
.layout--single {
|
|
11
|
-
display: flex;
|
|
12
|
-
flex-direction: column;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
.layout--single .layout__container {
|
|
16
|
-
flex: 1;
|
|
17
|
-
display: flex;
|
|
18
|
-
flex-direction: column;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
.layout--single .layout__main {
|
|
22
|
-
flex: 1;
|
|
23
|
-
overflow-y: auto;
|
|
24
|
-
overflow-x: hidden;
|
|
25
|
-
display: flex;
|
|
26
|
-
flex-direction: column;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
.layout--single .layout__header {
|
|
30
|
-
flex-shrink: 0;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
.layout--single .layout__footer {
|
|
34
|
-
flex-shrink: 0;
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
.layout--single .layout__bottom-bar {
|
|
38
|
-
flex-shrink: 0;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
/* ===== STACKED VARIANT ===== */
|
|
42
|
-
/* coluna1 (main + bottom bar) */
|
|
43
|
-
.layout--stacked {
|
|
44
|
-
display: flex;
|
|
45
|
-
flex-direction: column;
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
.layout--stacked .layout__container {
|
|
49
|
-
flex: 1;
|
|
50
|
-
display: flex;
|
|
51
|
-
flex-direction: column;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
.layout--stacked .layout__main {
|
|
55
|
-
flex: 1;
|
|
56
|
-
overflow-y: auto;
|
|
57
|
-
overflow-x: hidden;
|
|
58
|
-
display: flex;
|
|
59
|
-
flex-direction: column;
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
.layout--stacked .layout__header {
|
|
63
|
-
flex-shrink: 0;
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
.layout--stacked .layout__footer {
|
|
67
|
-
flex-shrink: 0;
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
.layout--stacked .layout__bottom-bar {
|
|
71
|
-
flex-shrink: 0;
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
/* ===== SIDEBAR-MAIN-SIDEBAR VARIANT ===== */
|
|
75
|
-
/* coluna1 (sidebar) + coluna2 (page: header + main + footer) + coluna3 (sidebar) */
|
|
76
|
-
.layout--sidebar-main-sidebar {
|
|
77
|
-
display: flex;
|
|
78
|
-
flex-direction: row;
|
|
79
|
-
min-height: 100vh;
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
.layout--sidebar-main-sidebar .layout__container {
|
|
83
|
-
flex: 1;
|
|
84
|
-
display: flex;
|
|
85
|
-
flex-direction: column;
|
|
86
|
-
min-width: 0; /* Prevent flex overflow */
|
|
87
|
-
max-height: 100vh;
|
|
88
|
-
overflow-y: auto;
|
|
89
|
-
overflow-x: hidden;
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
.layout--sidebar-main-sidebar .layout__sidebar {
|
|
93
|
-
flex-shrink: 0;
|
|
94
|
-
/* width is set dynamically via inline styles */
|
|
95
|
-
max-height: 100vh;
|
|
96
|
-
background-color: var(--color-bg-1);
|
|
97
|
-
border-right: 1px solid var(--color-foreground-2);
|
|
98
|
-
border-right-color: rgba(0, 0, 0, 0.1);
|
|
99
|
-
overflow-y: auto;
|
|
100
|
-
overflow-x: hidden;
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
.layout--sidebar-main-sidebar .layout__sidebar--right {
|
|
104
|
-
border-right: none;
|
|
105
|
-
border-left: 1px solid var(--color-foreground-2);
|
|
106
|
-
border-left-color: rgba(0, 0, 0, 0.1);
|
|
107
|
-
background-color: var(--color-bg-2);
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
/* Drag Handle in Layout */
|
|
111
|
-
.layout--sidebar-main-sidebar .drag-handle {
|
|
112
|
-
flex-shrink: 0;
|
|
113
|
-
}
|
|
114
|
-
|
|
115
|
-
.layout--sidebar-main-sidebar .layout__container {
|
|
116
|
-
flex: 1;
|
|
117
|
-
display: flex;
|
|
118
|
-
flex-direction: column;
|
|
119
|
-
min-width: 0; /* Prevent flex overflow */
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
.layout--sidebar-main-sidebar .layout__main {
|
|
123
|
-
flex: 1;
|
|
124
|
-
overflow-y: auto;
|
|
125
|
-
overflow-x: hidden;
|
|
126
|
-
display: flex;
|
|
127
|
-
flex-direction: column;
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
.layout--sidebar-main-sidebar .layout__header {
|
|
131
|
-
flex-shrink: 0;
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
.layout--sidebar-main-sidebar .layout__footer {
|
|
135
|
-
flex-shrink: 0;
|
|
136
|
-
}
|
|
137
|
-
|
|
138
|
-
.layout--sidebar-main-sidebar .layout__bottom-bar {
|
|
139
|
-
flex-shrink: 0;
|
|
140
|
-
}
|
|
141
|
-
|
|
142
|
-
/* ===== SHARED STYLES ===== */
|
|
143
|
-
.layout__header,
|
|
144
|
-
.layout__page-header {
|
|
145
|
-
background-color: var(--color-bg-1);
|
|
146
|
-
border-bottom: 1px solid var(--color-foreground-2);
|
|
147
|
-
border-bottom-color: rgba(0, 0, 0, 0.1);
|
|
148
|
-
padding: var(--spacing-6) var(--spacing-4);
|
|
149
|
-
transition: all var(--transition-base, 0.2s ease);
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
.layout__footer,
|
|
153
|
-
.layout__page-footer {
|
|
154
|
-
background-color: var(--color-bg-1);
|
|
155
|
-
border-top: 1px solid var(--color-foreground-2);
|
|
156
|
-
border-top-color: rgba(0, 0, 0, 0.1);
|
|
157
|
-
/* padding: var(--spacing-6) var(--spacing-4); */
|
|
158
|
-
transition: all var(--transition-base, 0.2s ease);
|
|
159
|
-
margin-top: auto;
|
|
160
|
-
}
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
/* ===== RESPONSIVE ===== */
|
|
165
|
-
@media (max-width: 1024px) {
|
|
166
|
-
.layout--sidebar-main-sidebar .layout__sidebar {
|
|
167
|
-
width: 240px;
|
|
168
|
-
}
|
|
169
|
-
}
|
|
170
|
-
|
|
171
|
-
@media (max-width: 768px) {
|
|
172
|
-
.layout--sidebar-main-sidebar {
|
|
173
|
-
flex-direction: column;
|
|
174
|
-
}
|
|
175
|
-
|
|
176
|
-
.layout--sidebar-main-sidebar .layout__container {
|
|
177
|
-
flex-direction: column;
|
|
178
|
-
}
|
|
179
|
-
|
|
180
|
-
.layout--sidebar-main-sidebar .layout__sidebar {
|
|
181
|
-
width: 100%;
|
|
182
|
-
border-right: none;
|
|
183
|
-
border-bottom: 1px solid var(--color-foreground-2);
|
|
184
|
-
border-bottom-color: rgba(0, 0, 0, 0.1);
|
|
185
|
-
}
|
|
186
|
-
|
|
187
|
-
.layout--sidebar-main-sidebar .layout__sidebar--right {
|
|
188
|
-
border-left: none;
|
|
189
|
-
border-top: 1px solid var(--color-foreground-2);
|
|
190
|
-
border-top-color: rgba(0, 0, 0, 0.1);
|
|
191
|
-
border-bottom: none;
|
|
192
|
-
}
|
|
193
|
-
}
|
|
194
|
-
|
|
195
|
-
/* ===== BOTTOM BAR ===== */
|
|
196
|
-
.layout__bottom-bar {
|
|
197
|
-
flex-shrink: 0;
|
|
198
|
-
background-color: var(--color-bg-1);
|
|
199
|
-
border-top: 1px solid var(--color-foreground-2);
|
|
200
|
-
border-top-color: rgba(0, 0, 0, 0.1);
|
|
201
|
-
min-height: 60px;
|
|
202
|
-
display: flex;
|
|
203
|
-
align-items: center;
|
|
204
|
-
padding: 0 var(--spacing-4);
|
|
205
|
-
}
|
|
@@ -1,342 +0,0 @@
|
|
|
1
|
-
/* Navbar Component Styles */
|
|
2
|
-
|
|
3
|
-
.navbar {
|
|
4
|
-
width: 100%;
|
|
5
|
-
height: 100vh;
|
|
6
|
-
background-color: var(--color-bg-2);
|
|
7
|
-
border-right: 1px solid var(--color-foreground-2);
|
|
8
|
-
border-right-color: rgba(0, 0, 0, 0.1);
|
|
9
|
-
display: flex;
|
|
10
|
-
flex-direction: column;
|
|
11
|
-
overflow-y: auto;
|
|
12
|
-
overflow-x: hidden;
|
|
13
|
-
transition: background-color var(--transition-base, 0.2s ease);
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
/* Webkit scrollbar styles (Chrome, Safari, Edge) */
|
|
17
|
-
.navbar::-webkit-scrollbar {
|
|
18
|
-
width: 8px;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
.navbar::-webkit-scrollbar-track {
|
|
22
|
-
background: transparent;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
.navbar::-webkit-scrollbar-thumb {
|
|
26
|
-
background-color: rgba(0, 0, 0, 0.3);
|
|
27
|
-
border-radius: 4px;
|
|
28
|
-
transition: background-color 0.2s ease;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
.navbar:hover::-webkit-scrollbar-thumb {
|
|
32
|
-
background-color: rgba(0, 0, 0, 1);
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
.navbar--header {
|
|
36
|
-
font-size: 1.4rem;
|
|
37
|
-
margin: 0 0 8px 0;
|
|
38
|
-
color: var(--color-foreground-1);
|
|
39
|
-
display: flex;
|
|
40
|
-
align-items: center;
|
|
41
|
-
gap: var(--spacing-1, 0.25rem);
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
.navbar__content {
|
|
45
|
-
padding: var(--spacing-4, 1rem);
|
|
46
|
-
display: flex;
|
|
47
|
-
flex-direction: column;
|
|
48
|
-
gap: var(--spacing-2, 0.5rem);
|
|
49
|
-
}
|
|
50
|
-
.expanded .navbar__content {
|
|
51
|
-
min-width: 210px;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
/* Menu Item Styles */
|
|
56
|
-
.navbar__menu-item {
|
|
57
|
-
display: flex ;
|
|
58
|
-
align-items: center ;
|
|
59
|
-
gap: var(--spacing-3, 0.75rem) ;
|
|
60
|
-
padding: var(--spacing-2, 0.5rem) var(--spacing-3, 0.75rem) ;
|
|
61
|
-
color: var(--color-foreground-2) ;
|
|
62
|
-
border-radius: var(--border-radius-sm, 4px) ;
|
|
63
|
-
/* transition: background-color var(--motion-duration-fast) var(--motion-easing-linear), color var(--motion-duration-fast) var(--motion-easing-linear) ; */
|
|
64
|
-
font-size: var(--font-size-sm, 0.875rem) ;
|
|
65
|
-
font-weight: 500 ;
|
|
66
|
-
width: 100% ;
|
|
67
|
-
position: relative ;
|
|
68
|
-
border: none ;
|
|
69
|
-
background: transparent;
|
|
70
|
-
cursor: pointer ;
|
|
71
|
-
font-family: inherit ;
|
|
72
|
-
text-align: left ;
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
/* Link-specific styles */
|
|
76
|
-
.navbar__menu-item[href] {
|
|
77
|
-
text-decoration: none;
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
.navbar__menu-item:not(:hover):not(:active):not(.navbar__menu-item--active) {
|
|
81
|
-
transition: background-color var(--motion-duration-fast) var(--motion-easing-accelerate), color var(--motion-duration-fast) var(--motion-easing-accelerate);
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
.navbar__menu-item:hover:not(:disabled) {
|
|
85
|
-
background-color: var(--color-action-primary) ;
|
|
86
|
-
color: var(--color-on-action-primary) ;
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
.navbar__menu-item:active:not(:disabled) {
|
|
90
|
-
background-color: var(--color-action-primary-active) ;
|
|
91
|
-
color: var(--color-on-action-primary) ;
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
.navbar__menu-item:focus-visible:not(:disabled) {
|
|
95
|
-
outline: 2px solid var(--color-action-primary) ;
|
|
96
|
-
outline-offset: 2px ;
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
.navbar__menu-item--active {
|
|
100
|
-
background-color: var(--color-action-primary) ;
|
|
101
|
-
color: var(--color-on-action-primary) ;
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
.navbar__menu-item-icon {
|
|
105
|
-
display: flex;
|
|
106
|
-
align-items: center;
|
|
107
|
-
justify-content: center;
|
|
108
|
-
width: 20px;
|
|
109
|
-
height: 20px;
|
|
110
|
-
flex-shrink: 0;
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
.navbar__menu-item-label {
|
|
114
|
-
flex: 1;
|
|
115
|
-
min-width: 0;
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
.collapsed .navbar__menu-item-label {
|
|
119
|
-
display: none;
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
.collapsed .navbar__menu-item {
|
|
123
|
-
width: auto;
|
|
124
|
-
padding: var(--spacing-2);
|
|
125
|
-
justify-content: center;
|
|
126
|
-
}
|
|
127
|
-
|
|
128
|
-
.navbar--logo {
|
|
129
|
-
display: none;
|
|
130
|
-
}
|
|
131
|
-
.expanded .navbar--logo {
|
|
132
|
-
display: inline-block;
|
|
133
|
-
}
|
|
134
|
-
/* Menu Group Styles */
|
|
135
|
-
.navbar__menu-group {
|
|
136
|
-
display: flex;
|
|
137
|
-
flex-direction: column;
|
|
138
|
-
}
|
|
139
|
-
|
|
140
|
-
.navbar__content .navbar__menu-group > .navbar__menu-group-content {
|
|
141
|
-
margin-left: var(--spacing-8, 2rem);
|
|
142
|
-
}
|
|
143
|
-
|
|
144
|
-
/* Headers alternam entre expandido e colapsado */
|
|
145
|
-
.navbar__menu-group-header-expanded {
|
|
146
|
-
display: block;
|
|
147
|
-
}
|
|
148
|
-
|
|
149
|
-
.navbar__menu-group-header-collapsed {
|
|
150
|
-
display: none;
|
|
151
|
-
}
|
|
152
|
-
|
|
153
|
-
.collapsed .navbar__menu-group-header-expanded {
|
|
154
|
-
display: none;
|
|
155
|
-
}
|
|
156
|
-
|
|
157
|
-
.collapsed .navbar__menu-group-header-collapsed {
|
|
158
|
-
display: block;
|
|
159
|
-
}
|
|
160
|
-
|
|
161
|
-
.collapsed .navbar__menu-group-content {
|
|
162
|
-
display: none ;
|
|
163
|
-
}
|
|
164
|
-
|
|
165
|
-
.navbar__menu-group-header {
|
|
166
|
-
display: flex;
|
|
167
|
-
align-items: center;
|
|
168
|
-
gap: var(--spacing-3, 0.75rem);
|
|
169
|
-
padding: var(--spacing-2, 0.5rem) var(--spacing-3, 0.75rem);
|
|
170
|
-
background: none;
|
|
171
|
-
border: none;
|
|
172
|
-
text-align: left;
|
|
173
|
-
color: var(--color-foreground-2);
|
|
174
|
-
border-radius: var(--border-radius-sm, 4px);
|
|
175
|
-
transition: background-color var(--motion-duration-fast) var(--motion-easing-linear), color var(--motion-duration-fast) var(--motion-easing-linear);
|
|
176
|
-
font-size: var(--font-size-sm, 0.875rem);
|
|
177
|
-
font-weight: 600;
|
|
178
|
-
cursor: pointer;
|
|
179
|
-
width: 100%;
|
|
180
|
-
}
|
|
181
|
-
|
|
182
|
-
.navbar__menu-group-header--collapsed {
|
|
183
|
-
justify-content: center;
|
|
184
|
-
padding: var(--spacing-2);
|
|
185
|
-
}
|
|
186
|
-
|
|
187
|
-
.navbar__menu-group-header--collapsed.navbar__menu-group-header--has-active {
|
|
188
|
-
background-color: var(--color-action-primary);
|
|
189
|
-
color: var(--color-on-action-primary);
|
|
190
|
-
}
|
|
191
|
-
|
|
192
|
-
.navbar__menu-group-header--toggle {
|
|
193
|
-
background-color: var(--color-action-secondary);
|
|
194
|
-
color: var(--color-on-action-secondary);
|
|
195
|
-
box-shadow: 0 0 0 2px var(--color-action-primary);
|
|
196
|
-
}
|
|
197
|
-
|
|
198
|
-
.navbar__menu-group-header--toggle:hover:not(:disabled) {
|
|
199
|
-
background-color: var(--color-action-secondary-hover);
|
|
200
|
-
color: var(--color-on-action-secondary);
|
|
201
|
-
}
|
|
202
|
-
|
|
203
|
-
.navbar__menu-group-header--active {
|
|
204
|
-
background-color: var(--color-action-primary);
|
|
205
|
-
color: var(--color-on-action-primary);
|
|
206
|
-
}
|
|
207
|
-
|
|
208
|
-
.navbar__menu-group-header:not(:hover) {
|
|
209
|
-
transition: background-color var(--motion-duration-fast) var(--motion-easing-accelerate), color var(--motion-duration-fast) var(--motion-easing-accelerate);
|
|
210
|
-
}
|
|
211
|
-
|
|
212
|
-
.navbar__menu-group-header:hover:not(:disabled) {
|
|
213
|
-
background-color: var(--color-bg-2);
|
|
214
|
-
color: var(--color-foreground-1);
|
|
215
|
-
}
|
|
216
|
-
|
|
217
|
-
.navbar__menu-group-icon {
|
|
218
|
-
display: flex;
|
|
219
|
-
align-items: center;
|
|
220
|
-
justify-content: center;
|
|
221
|
-
width: 20px;
|
|
222
|
-
height: 20px;
|
|
223
|
-
flex-shrink: 0;
|
|
224
|
-
}
|
|
225
|
-
|
|
226
|
-
.navbar__menu-group-title {
|
|
227
|
-
flex: 1;
|
|
228
|
-
min-width: 0;
|
|
229
|
-
}
|
|
230
|
-
|
|
231
|
-
.collapsed .navbar__menu-group-title {
|
|
232
|
-
display: none;
|
|
233
|
-
}
|
|
234
|
-
|
|
235
|
-
.navbar__menu-group-chevron {
|
|
236
|
-
display: flex;
|
|
237
|
-
align-items: center;
|
|
238
|
-
justify-content: center;
|
|
239
|
-
width: 12px;
|
|
240
|
-
height: 12px;
|
|
241
|
-
flex-shrink: 0;
|
|
242
|
-
transition: transform 0.2s ease;
|
|
243
|
-
}
|
|
244
|
-
|
|
245
|
-
.collapsed .navbar__menu-group-chevron {
|
|
246
|
-
display: none;
|
|
247
|
-
}
|
|
248
|
-
|
|
249
|
-
.navbar__menu-group-chevron--expanded {
|
|
250
|
-
transform: rotate(180deg);
|
|
251
|
-
}
|
|
252
|
-
|
|
253
|
-
.navbar__menu-group-header--static {
|
|
254
|
-
cursor: default;
|
|
255
|
-
font-weight: 300;
|
|
256
|
-
color: var(--color-foreground-5);
|
|
257
|
-
background-color: transparent;
|
|
258
|
-
margin: var(--spacing-2) 0 0 0;
|
|
259
|
-
/* border-radius: var(--border-radius-sm, 4px); */
|
|
260
|
-
}
|
|
261
|
-
|
|
262
|
-
.navbar__menu-group-header--static:hover {
|
|
263
|
-
background-color: transparent;
|
|
264
|
-
color: var(--color-foreground-5);
|
|
265
|
-
}
|
|
266
|
-
|
|
267
|
-
/* Menu Category */
|
|
268
|
-
.navbar__menu-category {
|
|
269
|
-
font-size: var(--font-size-xs);
|
|
270
|
-
font-weight: 600;
|
|
271
|
-
color: var(--color-foreground-3);
|
|
272
|
-
/* padding: var(--spacing-2) var(--spacing-3); */
|
|
273
|
-
/* padding-bottom: var(--spacing-1); */
|
|
274
|
-
letter-spacing: 0.5px;
|
|
275
|
-
margin-top: var(--spacing-2);
|
|
276
|
-
}
|
|
277
|
-
|
|
278
|
-
/* Responsive adjustments */
|
|
279
|
-
@media (max-width: 768px) {
|
|
280
|
-
.navbar {
|
|
281
|
-
width: 280px;
|
|
282
|
-
}
|
|
283
|
-
|
|
284
|
-
.navbar__content {
|
|
285
|
-
padding: var(--spacing-3, 0.75rem);
|
|
286
|
-
}
|
|
287
|
-
}
|
|
288
|
-
|
|
289
|
-
/* Menu Category Styles */
|
|
290
|
-
.navbar__menu-category {
|
|
291
|
-
display: flex;
|
|
292
|
-
flex-direction: column;
|
|
293
|
-
}
|
|
294
|
-
|
|
295
|
-
.navbar__menu-category-title {
|
|
296
|
-
font-size: var(--font-size-xs, 0.75rem);
|
|
297
|
-
font-weight: var(--font-weight-semibold, 300);
|
|
298
|
-
color: var(--color-foreground-5);
|
|
299
|
-
text-transform: uppercase;
|
|
300
|
-
letter-spacing: var(--letter-spacing-wide, 0.02em);
|
|
301
|
-
padding: var(--spacing-1, 0.5rem) var(--spacing-3, 0.75rem);
|
|
302
|
-
}
|
|
303
|
-
|
|
304
|
-
.collapsed .navbar__menu-category-title {
|
|
305
|
-
display: none;
|
|
306
|
-
}
|
|
307
|
-
|
|
308
|
-
.navbar__menu-category-content {
|
|
309
|
-
display: flex;
|
|
310
|
-
flex-direction: column;
|
|
311
|
-
gap: var(--spacing-1, 0.25rem);
|
|
312
|
-
}
|
|
313
|
-
|
|
314
|
-
/* Popover do MenuGroup quando colapsado */
|
|
315
|
-
.navbar__menu-group-popover {
|
|
316
|
-
min-width: 200px;
|
|
317
|
-
max-width: 300px;
|
|
318
|
-
}
|
|
319
|
-
|
|
320
|
-
.navbar__menu-group-popover-title {
|
|
321
|
-
font-size: var(--font-size-sm);
|
|
322
|
-
font-weight: var(--font-weight-semibold);
|
|
323
|
-
color: var(--color-foreground-1);
|
|
324
|
-
padding: var(--spacing-2) var(--spacing-3) 0 var(--spacing-3);
|
|
325
|
-
border-bottom: 1px solid var(--color-border);
|
|
326
|
-
margin-bottom: var(--spacing-1);
|
|
327
|
-
}
|
|
328
|
-
|
|
329
|
-
.navbar__menu-group-popover-content {
|
|
330
|
-
display: flex;
|
|
331
|
-
flex-direction: column;
|
|
332
|
-
gap: var(--spacing-1);
|
|
333
|
-
padding: var(--spacing-2);
|
|
334
|
-
}
|
|
335
|
-
|
|
336
|
-
.navbar__menu-group-popover-content .navbar__menu-item {
|
|
337
|
-
width: 100%;
|
|
338
|
-
}
|
|
339
|
-
|
|
340
|
-
.navbar__menu-group-popover-content .navbar__menu-item-label {
|
|
341
|
-
display: block ;
|
|
342
|
-
}
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
.popover {
|
|
2
|
-
position: fixed; /* Changed from absolute to fixed for portal positioning */
|
|
3
|
-
background: var(--color-bg-1);
|
|
4
|
-
/* border: 1px solid var(--color-bg-3); */
|
|
5
|
-
/* border-color: rgba(0, 0, 0, 0.15); */
|
|
6
|
-
border-radius: var(--radius-base);
|
|
7
|
-
outline: 2px solid var(--color-bg-3);
|
|
8
|
-
outline-offset: -2px;
|
|
9
|
-
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
|
|
10
|
-
z-index: 9999;
|
|
11
|
-
min-width: 200px;
|
|
12
|
-
margin-top: var(--spacing-1);
|
|
13
|
-
/* padding: var(--spacing-4, 1rem); */
|
|
14
|
-
animation: popover-slide-in var(--transition-base, 0.2s ease);
|
|
15
|
-
/* Prevent initial flash by starting hidden */
|
|
16
|
-
opacity: 0;
|
|
17
|
-
visibility: hidden;
|
|
18
|
-
/* Prevent affecting layout flow */
|
|
19
|
-
pointer-events: none;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
.popover--right {
|
|
23
|
-
margin-top: 0;
|
|
24
|
-
margin-left: var(--spacing-2);
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
.popover:hover {
|
|
28
|
-
outline: 2px solid var(--color-primary-hover);
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
@keyframes popover-slide-in {
|
|
32
|
-
from {
|
|
33
|
-
opacity: 0;
|
|
34
|
-
transform: translateY(-8px);
|
|
35
|
-
}
|
|
36
|
-
to {
|
|
37
|
-
opacity: 1;
|
|
38
|
-
transform: translateY(0);
|
|
39
|
-
}
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
.popover__content {
|
|
43
|
-
/* Additional styling if needed */
|
|
44
|
-
}
|
|
@@ -1,67 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Section Component Styles
|
|
3
|
-
* Responsive section component for content organization
|
|
4
|
-
*/
|
|
5
|
-
|
|
6
|
-
.section {
|
|
7
|
-
padding: var(--spacing-8) var(--spacing-4);
|
|
8
|
-
border-bottom: 1px solid var(--color-foreground-2);
|
|
9
|
-
border-bottom-color: rgba(0, 0, 0, 0.1);
|
|
10
|
-
width: 100%;
|
|
11
|
-
transition: border-color var(--motion-transition-color);
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
.section:last-of-type {
|
|
15
|
-
border-bottom: none;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
.section__title {
|
|
19
|
-
margin: 0 0 var(--spacing-4) 0;
|
|
20
|
-
font-size: var(--font-size-2xl);
|
|
21
|
-
font-weight: var(--font-weight-bold);
|
|
22
|
-
color: var(--color-foreground-1);
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
.section__content {
|
|
26
|
-
font-size: var(--font-size-base);
|
|
27
|
-
line-height: var(--line-height-relaxed);
|
|
28
|
-
color: var(--color-foreground-2);
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
.section--sm {
|
|
32
|
-
padding: var(--spacing-4) var(--spacing-4);
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
.section--lg {
|
|
36
|
-
padding: var(--spacing-12) var(--spacing-4);
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
@media (min-width: 768px) {
|
|
40
|
-
.section {
|
|
41
|
-
padding: var(--spacing-8) var(--spacing-6);
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
.section--sm {
|
|
45
|
-
padding: var(--spacing-4) var(--spacing-6);
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
.section--lg {
|
|
49
|
-
padding: var(--spacing-12) var(--spacing-6);
|
|
50
|
-
}
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
@media (min-width: 1024px) {
|
|
54
|
-
.section {
|
|
55
|
-
padding: var(--spacing-8) var(--spacing-8);
|
|
56
|
-
max-width: 1200px;
|
|
57
|
-
margin: 0 auto;
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
.section--sm {
|
|
61
|
-
padding: var(--spacing-4) var(--spacing-8);
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
.section--lg {
|
|
65
|
-
padding: var(--spacing-12) var(--spacing-8);
|
|
66
|
-
}
|
|
67
|
-
}
|