@object-ui/components 4.0.4 → 4.0.6
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/CHANGELOG.md +65 -0
- package/dist/index.css +98 -123
- package/dist/index.js +32 -32
- package/dist/index.umd.cjs +3 -3
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,70 @@
|
|
|
1
1
|
# @object-ui/components
|
|
2
2
|
|
|
3
|
+
## 4.0.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 925051d: fix: convert Tailwind v3 `[--var]` arbitrary value syntax to v4 `(--var)`
|
|
8
|
+
|
|
9
|
+
Shadcn `Sidebar`, `Calendar`, `Chart`, `Popover`, `Tooltip`, `HoverCard`,
|
|
10
|
+
`Menubar`, `Select`, `Dropdown`, `Context-Menu`, and `AppSidebar` used the
|
|
11
|
+
Tailwind v3 syntax `w-[--sidebar-width]`, `origin-[--radix-...]`, etc.
|
|
12
|
+
Tailwind v4 no longer interprets the bare `--xxx` inside arbitrary values
|
|
13
|
+
as `var(--xxx)`, so the rule emits empty CSS — the sidebar collapses to
|
|
14
|
+
0 width and overlays the main content, dropdown/popover positions fall
|
|
15
|
+
back to the wrong origin, and the calendar cells lose their fixed size.
|
|
16
|
+
|
|
17
|
+
Replaced all such occurrences with the v4 CSS-variable shorthand
|
|
18
|
+
`w-(--sidebar-width)`, `origin-(--radix-...)`, etc. Existing
|
|
19
|
+
`[calc(var(--xxx)*-1)]` arbitrary expressions are unaffected.
|
|
20
|
+
|
|
21
|
+
- 1b6dc64: fix: complete Tailwind v3→v4 migration cleanup
|
|
22
|
+
- Rename deprecated `flex-shrink-0` → `shrink-0` and `flex-grow-N` →
|
|
23
|
+
`grow-N` (Tailwind v4 dropped the long-form aliases). Affects
|
|
24
|
+
data-table, fields/index, FileField, ChatbotEnhanced,
|
|
25
|
+
FloatingChatbotPanel, ProcessDesigner, HistoryPanel, KanbanEnhanced,
|
|
26
|
+
KanbanImpl, plugin-timeline index, FlowDesigner, LayoutRenderer.
|
|
27
|
+
- Replace `theme(spacing.4)` inside arbitrary-value `[calc(...)]` with
|
|
28
|
+
literal `1rem` in sidebar.tsx — `theme()` is deprecated in v4.
|
|
29
|
+
- Remove obsolete v3-escape CSS overrides from index.css and
|
|
30
|
+
sidebar-fixes.css. The component source now uses native v4 stacked
|
|
31
|
+
data variants (`group-data-[state=collapsed]:group-data-[collapsible=icon]:w-(--sidebar-width-icon)`)
|
|
32
|
+
which Tailwind v4 emits correctly without the manual overrides.
|
|
33
|
+
Only the bespoke `.sidebar-menu-button-icon-mode*` rules are kept.
|
|
34
|
+
- @object-ui/types@4.0.6
|
|
35
|
+
- @object-ui/core@4.0.6
|
|
36
|
+
- @object-ui/i18n@4.0.6
|
|
37
|
+
- @object-ui/react@4.0.6
|
|
38
|
+
|
|
39
|
+
## 4.0.5
|
|
40
|
+
|
|
41
|
+
### Patch Changes
|
|
42
|
+
|
|
43
|
+
- 1dc6061: fix(build): inline dynamic imports in library outputs
|
|
44
|
+
|
|
45
|
+
Library `vite build --lib` outputs were emitting separate code-split chunks
|
|
46
|
+
(`rolldown-runtime-*.js`, `LookupField-*.js`, etc.) when source files used
|
|
47
|
+
`React.lazy()` / dynamic `import()`. When consumer apps re-bundled these
|
|
48
|
+
multi-file dists, the library's per-chunk rolldown-runtime collided with the
|
|
49
|
+
consumer's own runtime, causing "TypeError: i is not a function" at runtime
|
|
50
|
+
when lazy components tried to register themselves (e.g. TextField in
|
|
51
|
+
`@object-ui/fields` after 4.0.4).
|
|
52
|
+
|
|
53
|
+
Adding `output.inlineDynamicImports: true` to all `@object-ui/*` library vite
|
|
54
|
+
configs forces a single `dist/index.js` per package, which lets consumer
|
|
55
|
+
bundlers handle the library as an opaque ESM module without identifier
|
|
56
|
+
mismatches across chunks.
|
|
57
|
+
|
|
58
|
+
Affected packages: components, fields, layout, plugin-aggrid, plugin-ai,
|
|
59
|
+
plugin-calendar, plugin-charts, plugin-chatbot, plugin-dashboard,
|
|
60
|
+
plugin-designer, plugin-detail, plugin-editor, plugin-form, plugin-gantt,
|
|
61
|
+
plugin-grid, plugin-kanban, plugin-list, plugin-map, plugin-markdown,
|
|
62
|
+
plugin-report, plugin-timeline, plugin-view, plugin-workflow.
|
|
63
|
+
- @object-ui/types@4.0.5
|
|
64
|
+
- @object-ui/core@4.0.5
|
|
65
|
+
- @object-ui/i18n@4.0.5
|
|
66
|
+
- @object-ui/react@4.0.5
|
|
67
|
+
|
|
3
68
|
## 4.0.4
|
|
4
69
|
|
|
5
70
|
### Patch Changes
|
package/dist/index.css
CHANGED
|
@@ -642,6 +642,10 @@
|
|
|
642
642
|
.aspect-video {
|
|
643
643
|
aspect-ratio: var(--aspect-video);
|
|
644
644
|
}
|
|
645
|
+
.size-\(--cell-size\) {
|
|
646
|
+
width: var(--cell-size);
|
|
647
|
+
height: var(--cell-size);
|
|
648
|
+
}
|
|
645
649
|
.size-3\.5 {
|
|
646
650
|
width: calc(var(--spacing) * 3.5);
|
|
647
651
|
height: calc(var(--spacing) * 3.5);
|
|
@@ -670,9 +674,8 @@
|
|
|
670
674
|
width: calc(var(--spacing) * 10);
|
|
671
675
|
height: calc(var(--spacing) * 10);
|
|
672
676
|
}
|
|
673
|
-
.
|
|
674
|
-
|
|
675
|
-
height: --cell-size;
|
|
677
|
+
.h-\(--cell-size\) {
|
|
678
|
+
height: var(--cell-size);
|
|
676
679
|
}
|
|
677
680
|
.h-1 {
|
|
678
681
|
height: calc(var(--spacing) * 1);
|
|
@@ -749,9 +752,6 @@
|
|
|
749
752
|
.h-48 {
|
|
750
753
|
height: calc(var(--spacing) * 48);
|
|
751
754
|
}
|
|
752
|
-
.h-\[--cell-size\] {
|
|
753
|
-
height: --cell-size;
|
|
754
|
-
}
|
|
755
755
|
.h-\[1px\] {
|
|
756
756
|
height: 1px;
|
|
757
757
|
}
|
|
@@ -800,14 +800,14 @@
|
|
|
800
800
|
.h-svh {
|
|
801
801
|
height: 100svh;
|
|
802
802
|
}
|
|
803
|
-
.max-h-
|
|
804
|
-
max-height:
|
|
803
|
+
.max-h-\(--radix-context-menu-content-available-height\) {
|
|
804
|
+
max-height: var(--radix-context-menu-content-available-height);
|
|
805
805
|
}
|
|
806
|
-
.max-h-\
|
|
807
|
-
max-height: --radix-
|
|
806
|
+
.max-h-\(--radix-select-content-available-height\) {
|
|
807
|
+
max-height: var(--radix-select-content-available-height);
|
|
808
808
|
}
|
|
809
|
-
.max-h
|
|
810
|
-
max-height: --
|
|
809
|
+
.max-h-40 {
|
|
810
|
+
max-height: calc(var(--spacing) * 40);
|
|
811
811
|
}
|
|
812
812
|
.max-h-\[50vh\] {
|
|
813
813
|
max-height: 50vh;
|
|
@@ -875,6 +875,12 @@
|
|
|
875
875
|
.min-h-svh {
|
|
876
876
|
min-height: 100svh;
|
|
877
877
|
}
|
|
878
|
+
.w-\(--cell-size\) {
|
|
879
|
+
width: var(--cell-size);
|
|
880
|
+
}
|
|
881
|
+
.w-\(--sidebar-width\) {
|
|
882
|
+
width: var(--sidebar-width);
|
|
883
|
+
}
|
|
878
884
|
.w-0 {
|
|
879
885
|
width: calc(var(--spacing) * 0);
|
|
880
886
|
}
|
|
@@ -962,9 +968,6 @@
|
|
|
962
968
|
.w-96 {
|
|
963
969
|
width: calc(var(--spacing) * 96);
|
|
964
970
|
}
|
|
965
|
-
.w-\[--cell-size\] {
|
|
966
|
-
width: --cell-size;
|
|
967
|
-
}
|
|
968
971
|
.w-\[--sidebar-width\] {
|
|
969
972
|
width: --sidebar-width;
|
|
970
973
|
}
|
|
@@ -1016,6 +1019,9 @@
|
|
|
1016
1019
|
.w-px {
|
|
1017
1020
|
width: 1px;
|
|
1018
1021
|
}
|
|
1022
|
+
.max-w-\(--skeleton-width\) {
|
|
1023
|
+
max-width: var(--skeleton-width);
|
|
1024
|
+
}
|
|
1019
1025
|
.max-w-2xl {
|
|
1020
1026
|
max-width: var(--container-2xl);
|
|
1021
1027
|
}
|
|
@@ -1034,9 +1040,6 @@
|
|
|
1034
1040
|
.max-w-7xl {
|
|
1035
1041
|
max-width: var(--container-7xl);
|
|
1036
1042
|
}
|
|
1037
|
-
.max-w-\[--skeleton-width\] {
|
|
1038
|
-
max-width: --skeleton-width;
|
|
1039
|
-
}
|
|
1040
1043
|
.max-w-\[40\%\] {
|
|
1041
1044
|
max-width: 40%;
|
|
1042
1045
|
}
|
|
@@ -1085,6 +1088,9 @@
|
|
|
1085
1088
|
.max-w-xs {
|
|
1086
1089
|
max-width: var(--container-xs);
|
|
1087
1090
|
}
|
|
1091
|
+
.min-w-\(--cell-size\) {
|
|
1092
|
+
min-width: var(--cell-size);
|
|
1093
|
+
}
|
|
1088
1094
|
.min-w-0 {
|
|
1089
1095
|
min-width: calc(var(--spacing) * 0);
|
|
1090
1096
|
}
|
|
@@ -1103,9 +1109,6 @@
|
|
|
1103
1109
|
.min-w-11 {
|
|
1104
1110
|
min-width: calc(var(--spacing) * 11);
|
|
1105
1111
|
}
|
|
1106
|
-
.min-w-\[--cell-size\] {
|
|
1107
|
-
min-width: --cell-size;
|
|
1108
|
-
}
|
|
1109
1112
|
.min-w-\[8rem\] {
|
|
1110
1113
|
min-width: 8rem;
|
|
1111
1114
|
}
|
|
@@ -1148,26 +1151,29 @@
|
|
|
1148
1151
|
.border-collapse {
|
|
1149
1152
|
border-collapse: collapse;
|
|
1150
1153
|
}
|
|
1151
|
-
.origin-\
|
|
1152
|
-
transform-origin: --radix-context-menu-content-transform-origin;
|
|
1154
|
+
.origin-\(--radix-context-menu-content-transform-origin\) {
|
|
1155
|
+
transform-origin: var(--radix-context-menu-content-transform-origin);
|
|
1156
|
+
}
|
|
1157
|
+
.origin-\(--radix-dropdown-menu-content-transform-origin\) {
|
|
1158
|
+
transform-origin: var(--radix-dropdown-menu-content-transform-origin);
|
|
1153
1159
|
}
|
|
1154
|
-
.origin-\
|
|
1155
|
-
transform-origin: --radix-
|
|
1160
|
+
.origin-\(--radix-hover-card-content-transform-origin\) {
|
|
1161
|
+
transform-origin: var(--radix-hover-card-content-transform-origin);
|
|
1156
1162
|
}
|
|
1157
|
-
.origin-\
|
|
1158
|
-
transform-origin: --radix-
|
|
1163
|
+
.origin-\(--radix-menubar-content-transform-origin\) {
|
|
1164
|
+
transform-origin: var(--radix-menubar-content-transform-origin);
|
|
1159
1165
|
}
|
|
1160
|
-
.origin-\
|
|
1161
|
-
transform-origin: --radix-
|
|
1166
|
+
.origin-\(--radix-popover-content-transform-origin\) {
|
|
1167
|
+
transform-origin: var(--radix-popover-content-transform-origin);
|
|
1162
1168
|
}
|
|
1163
|
-
.origin-\
|
|
1164
|
-
transform-origin: --radix-
|
|
1169
|
+
.origin-\(--radix-select-content-transform-origin\) {
|
|
1170
|
+
transform-origin: var(--radix-select-content-transform-origin);
|
|
1165
1171
|
}
|
|
1166
|
-
.origin-\
|
|
1167
|
-
transform-origin: --radix-
|
|
1172
|
+
.origin-\(--radix-tooltip-content-transform-origin\) {
|
|
1173
|
+
transform-origin: var(--radix-tooltip-content-transform-origin);
|
|
1168
1174
|
}
|
|
1169
|
-
.origin-\[--radix
|
|
1170
|
-
transform-origin: --radix
|
|
1175
|
+
.origin-\[--radix-\.\.\.\] {
|
|
1176
|
+
transform-origin: --radix-...;
|
|
1171
1177
|
}
|
|
1172
1178
|
.-translate-x-1\/2 {
|
|
1173
1179
|
--tw-translate-x: calc(calc(1 / 2 * 100%) * -1);
|
|
@@ -1604,8 +1610,8 @@
|
|
|
1604
1610
|
--tw-border-style: dashed;
|
|
1605
1611
|
border-style: dashed;
|
|
1606
1612
|
}
|
|
1607
|
-
.border-\
|
|
1608
|
-
border-color: --color-border;
|
|
1613
|
+
.border-\(--color-border\) {
|
|
1614
|
+
border-color: var(--color-border);
|
|
1609
1615
|
}
|
|
1610
1616
|
.border-blue-300 {
|
|
1611
1617
|
border-color: var(--color-blue-300);
|
|
@@ -1670,8 +1676,8 @@
|
|
|
1670
1676
|
.border-l-transparent {
|
|
1671
1677
|
border-left-color: transparent;
|
|
1672
1678
|
}
|
|
1673
|
-
.bg-\
|
|
1674
|
-
background-color: --color-bg;
|
|
1679
|
+
.bg-\(--color-bg\) {
|
|
1680
|
+
background-color: var(--color-bg);
|
|
1675
1681
|
}
|
|
1676
1682
|
.bg-accent {
|
|
1677
1683
|
background-color: var(--color-accent);
|
|
@@ -1939,6 +1945,9 @@
|
|
|
1939
1945
|
.p-\[1px\] {
|
|
1940
1946
|
padding: 1px;
|
|
1941
1947
|
}
|
|
1948
|
+
.px-\(--cell-size\) {
|
|
1949
|
+
padding-inline: var(--cell-size);
|
|
1950
|
+
}
|
|
1942
1951
|
.px-1 {
|
|
1943
1952
|
padding-inline: calc(var(--spacing) * 1);
|
|
1944
1953
|
}
|
|
@@ -1963,9 +1972,6 @@
|
|
|
1963
1972
|
.px-8 {
|
|
1964
1973
|
padding-inline: calc(var(--spacing) * 8);
|
|
1965
1974
|
}
|
|
1966
|
-
.px-\[--cell-size\] {
|
|
1967
|
-
padding-inline: --cell-size;
|
|
1968
|
-
}
|
|
1969
1975
|
.px-\[0\.3rem\] {
|
|
1970
1976
|
padding-inline: 0.3rem;
|
|
1971
1977
|
}
|
|
@@ -2717,41 +2723,6 @@
|
|
|
2717
2723
|
align-self: flex-start;
|
|
2718
2724
|
}
|
|
2719
2725
|
}
|
|
2720
|
-
.group-data-\[collapsible\=icon\]\:-mt-8 {
|
|
2721
|
-
&:is(:where(.group)[data-collapsible="icon"] *) {
|
|
2722
|
-
margin-top: calc(var(--spacing) * -8);
|
|
2723
|
-
}
|
|
2724
|
-
}
|
|
2725
|
-
.group-data-\[collapsible\=icon\]\:hidden {
|
|
2726
|
-
&:is(:where(.group)[data-collapsible="icon"] *) {
|
|
2727
|
-
display: none;
|
|
2728
|
-
}
|
|
2729
|
-
}
|
|
2730
|
-
.group-data-\[collapsible\=icon\]\:w-\[--sidebar-width-icon\] {
|
|
2731
|
-
&:is(:where(.group)[data-collapsible="icon"] *) {
|
|
2732
|
-
width: --sidebar-width-icon;
|
|
2733
|
-
}
|
|
2734
|
-
}
|
|
2735
|
-
.group-data-\[collapsible\=icon\]\:w-\[calc\(var\(--sidebar-width-icon\)_\+_theme\(spacing\.4\)\)\] {
|
|
2736
|
-
&:is(:where(.group)[data-collapsible="icon"] *) {
|
|
2737
|
-
width: calc(var(--sidebar-width-icon) + 1rem);
|
|
2738
|
-
}
|
|
2739
|
-
}
|
|
2740
|
-
.group-data-\[collapsible\=icon\]\:w-\[calc\(var\(--sidebar-width-icon\)_\+_theme\(spacing\.4\)_\+2px\)\] {
|
|
2741
|
-
&:is(:where(.group)[data-collapsible="icon"] *) {
|
|
2742
|
-
width: calc(var(--sidebar-width-icon) + 1rem + 2px);
|
|
2743
|
-
}
|
|
2744
|
-
}
|
|
2745
|
-
.group-data-\[collapsible\=icon\]\:overflow-hidden {
|
|
2746
|
-
&:is(:where(.group)[data-collapsible="icon"] *) {
|
|
2747
|
-
overflow: hidden;
|
|
2748
|
-
}
|
|
2749
|
-
}
|
|
2750
|
-
.group-data-\[collapsible\=icon\]\:opacity-0 {
|
|
2751
|
-
&:is(:where(.group)[data-collapsible="icon"] *) {
|
|
2752
|
-
opacity: 0%;
|
|
2753
|
-
}
|
|
2754
|
-
}
|
|
2755
2726
|
.group-data-\[collapsible\=offcanvas\]\:right-\[calc\(var\(--sidebar-width\)\*-1\)\] {
|
|
2756
2727
|
&:is(:where(.group)[data-collapsible="offcanvas"] *) {
|
|
2757
2728
|
right: calc(var(--sidebar-width) * -1);
|
|
@@ -2829,6 +2800,55 @@
|
|
|
2829
2800
|
border-left-width: 1px;
|
|
2830
2801
|
}
|
|
2831
2802
|
}
|
|
2803
|
+
.group-data-\[state\=collapsed\]\:group-data-\[collapsible\=icon\]\:-mt-8 {
|
|
2804
|
+
&:is(:where(.group)[data-state="collapsed"] *) {
|
|
2805
|
+
&:is(:where(.group)[data-collapsible="icon"] *) {
|
|
2806
|
+
margin-top: calc(var(--spacing) * -8);
|
|
2807
|
+
}
|
|
2808
|
+
}
|
|
2809
|
+
}
|
|
2810
|
+
.group-data-\[state\=collapsed\]\:group-data-\[collapsible\=icon\]\:hidden {
|
|
2811
|
+
&:is(:where(.group)[data-state="collapsed"] *) {
|
|
2812
|
+
&:is(:where(.group)[data-collapsible="icon"] *) {
|
|
2813
|
+
display: none;
|
|
2814
|
+
}
|
|
2815
|
+
}
|
|
2816
|
+
}
|
|
2817
|
+
.group-data-\[state\=collapsed\]\:group-data-\[collapsible\=icon\]\:w-\(--sidebar-width-icon\) {
|
|
2818
|
+
&:is(:where(.group)[data-state="collapsed"] *) {
|
|
2819
|
+
&:is(:where(.group)[data-collapsible="icon"] *) {
|
|
2820
|
+
width: var(--sidebar-width-icon);
|
|
2821
|
+
}
|
|
2822
|
+
}
|
|
2823
|
+
}
|
|
2824
|
+
.group-data-\[state\=collapsed\]\:group-data-\[collapsible\=icon\]\:w-\[calc\(var\(--sidebar-width-icon\)_\+_1rem\)\] {
|
|
2825
|
+
&:is(:where(.group)[data-state="collapsed"] *) {
|
|
2826
|
+
&:is(:where(.group)[data-collapsible="icon"] *) {
|
|
2827
|
+
width: calc(var(--sidebar-width-icon) + 1rem);
|
|
2828
|
+
}
|
|
2829
|
+
}
|
|
2830
|
+
}
|
|
2831
|
+
.group-data-\[state\=collapsed\]\:group-data-\[collapsible\=icon\]\:w-\[calc\(var\(--sidebar-width-icon\)_\+_1rem_\+_2px\)\] {
|
|
2832
|
+
&:is(:where(.group)[data-state="collapsed"] *) {
|
|
2833
|
+
&:is(:where(.group)[data-collapsible="icon"] *) {
|
|
2834
|
+
width: calc(var(--sidebar-width-icon) + 1rem + 2px);
|
|
2835
|
+
}
|
|
2836
|
+
}
|
|
2837
|
+
}
|
|
2838
|
+
.group-data-\[state\=collapsed\]\:group-data-\[collapsible\=icon\]\:overflow-hidden {
|
|
2839
|
+
&:is(:where(.group)[data-state="collapsed"] *) {
|
|
2840
|
+
&:is(:where(.group)[data-collapsible="icon"] *) {
|
|
2841
|
+
overflow: hidden;
|
|
2842
|
+
}
|
|
2843
|
+
}
|
|
2844
|
+
}
|
|
2845
|
+
.group-data-\[state\=collapsed\]\:group-data-\[collapsible\=icon\]\:opacity-0 {
|
|
2846
|
+
&:is(:where(.group)[data-state="collapsed"] *) {
|
|
2847
|
+
&:is(:where(.group)[data-collapsible="icon"] *) {
|
|
2848
|
+
opacity: 0%;
|
|
2849
|
+
}
|
|
2850
|
+
}
|
|
2851
|
+
}
|
|
2832
2852
|
.group-data-\[state\=open\]\:rotate-180 {
|
|
2833
2853
|
&:is(:where(.group)[data-state="open"] *) {
|
|
2834
2854
|
rotate: 180deg;
|
|
@@ -5961,48 +5981,6 @@ body {
|
|
|
5961
5981
|
.dark [data-sidebar="menu-button"][data-active="true"]:hover {
|
|
5962
5982
|
background-color: hsl(var(--primary) / 0.24);
|
|
5963
5983
|
}
|
|
5964
|
-
.group[data-collapsible="icon"][data-state="collapsed"] .group-data-\[collapsible\=icon\]\:w-\[--sidebar-width-icon\] {
|
|
5965
|
-
width: var(--sidebar-width-icon);
|
|
5966
|
-
}
|
|
5967
|
-
.group[data-collapsible="icon"][data-state="expanded"] .group-data-\[collapsible\=icon\]\:w-\[--sidebar-width-icon\] {
|
|
5968
|
-
width: var(--sidebar-width);
|
|
5969
|
-
}
|
|
5970
|
-
.group[data-collapsible="icon"][data-state="collapsed"] .group-data-\[collapsible\=icon\]\:w-\[calc\(var\(--sidebar-width-icon\)_\+_theme\(spacing\.4\)\)\] {
|
|
5971
|
-
width: calc(var(--sidebar-width-icon) + 1rem);
|
|
5972
|
-
}
|
|
5973
|
-
.group[data-collapsible="icon"][data-state="expanded"] .group-data-\[collapsible\=icon\]\:w-\[calc\(var\(--sidebar-width-icon\)_\+_theme\(spacing\.4\)\)\] {
|
|
5974
|
-
width: var(--sidebar-width);
|
|
5975
|
-
}
|
|
5976
|
-
.group[data-collapsible="icon"][data-state="collapsed"] .group-data-\[collapsible\=icon\]\:w-\[calc\(var\(--sidebar-width-icon\)_\+_theme\(spacing\.4\)_\+2px\)\] {
|
|
5977
|
-
width: calc(var(--sidebar-width-icon) + 1rem + 2px);
|
|
5978
|
-
}
|
|
5979
|
-
.group[data-collapsible="icon"][data-state="expanded"] .group-data-\[collapsible\=icon\]\:w-\[calc\(var\(--sidebar-width-icon\)_\+_theme\(spacing\.4\)_\+2px\)\] {
|
|
5980
|
-
width: var(--sidebar-width);
|
|
5981
|
-
}
|
|
5982
|
-
.group[data-collapsible="icon"][data-state="collapsed"] .group-data-\[collapsible\=icon\]\:opacity-0 {
|
|
5983
|
-
opacity: 0;
|
|
5984
|
-
}
|
|
5985
|
-
.group[data-collapsible="icon"][data-state="expanded"] .group-data-\[collapsible\=icon\]\:opacity-0 {
|
|
5986
|
-
opacity: 1;
|
|
5987
|
-
}
|
|
5988
|
-
.group[data-collapsible="icon"][data-state="collapsed"] .group-data-\[collapsible\=icon\]\:-mt-8 {
|
|
5989
|
-
margin-top: -2rem;
|
|
5990
|
-
}
|
|
5991
|
-
.group[data-collapsible="icon"][data-state="expanded"] .group-data-\[collapsible\=icon\]\:-mt-8 {
|
|
5992
|
-
margin-top: 0;
|
|
5993
|
-
}
|
|
5994
|
-
.group[data-collapsible="icon"][data-state="collapsed"] .group-data-\[collapsible\=icon\]\:hidden {
|
|
5995
|
-
display: none;
|
|
5996
|
-
}
|
|
5997
|
-
.group[data-collapsible="icon"][data-state="expanded"] .group-data-\[collapsible\=icon\]\:hidden {
|
|
5998
|
-
display: block;
|
|
5999
|
-
}
|
|
6000
|
-
.group[data-collapsible="icon"][data-state="collapsed"] .group-data-\[collapsible\=icon\]\:overflow-hidden {
|
|
6001
|
-
overflow: hidden;
|
|
6002
|
-
}
|
|
6003
|
-
.group[data-collapsible="icon"][data-state="expanded"] .group-data-\[collapsible\=icon\]\:overflow-hidden {
|
|
6004
|
-
overflow: auto;
|
|
6005
|
-
}
|
|
6006
5984
|
.group[data-collapsible="icon"][data-state="collapsed"] .sidebar-menu-button-icon-mode {
|
|
6007
5985
|
width: 2rem !important;
|
|
6008
5986
|
height: 2rem !important;
|
|
@@ -6019,9 +5997,6 @@ body {
|
|
|
6019
5997
|
.group[data-collapsible="icon"][data-state="expanded"] .sidebar-menu-button-icon-mode-lg {
|
|
6020
5998
|
padding: 0.5rem;
|
|
6021
5999
|
}
|
|
6022
|
-
.group[data-collapsible="offcanvas"] .group-data-\[collapsible\=offcanvas\]\:w-0 {
|
|
6023
|
-
width: 0;
|
|
6024
|
-
}
|
|
6025
6000
|
@keyframes enter {
|
|
6026
6001
|
from {
|
|
6027
6002
|
opacity: var(--tw-enter-opacity, 1);
|
|
@@ -6445,5 +6420,5 @@ body {
|
|
|
6445
6420
|
|
|
6446
6421
|
|
|
6447
6422
|
/* === sidebar-fixes.css (extracted by Vite) === */
|
|
6448
|
-
.group[data-collapsible=icon][data-state=collapsed] .
|
|
6423
|
+
.group[data-collapsible=icon][data-state=collapsed] .sidebar-menu-button-icon-mode{width:2rem!important;height:2rem!important;padding:.5rem!important}.group[data-collapsible=icon][data-state=expanded] .sidebar-menu-button-icon-mode{width:100%;height:auto;padding:.5rem}.group[data-collapsible=icon][data-state=collapsed] .sidebar-menu-button-icon-mode-lg{padding:0!important}.group[data-collapsible=icon][data-state=expanded] .sidebar-menu-button-icon-mode-lg{padding:.5rem}
|
|
6449
6424
|
/*$vite$:1*/
|