@object-ui/components 4.0.5 → 4.0.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/CHANGELOG.md +70 -0
- package/dist/index.css +106 -122
- package/dist/index.js +2575 -2406
- package/dist/index.umd.cjs +3 -3
- package/dist/packages/components/src/custom/filter-builder.d.ts +21 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,75 @@
|
|
|
1
1
|
# @object-ui/components
|
|
2
2
|
|
|
3
|
+
## 4.0.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 7c9b85c: Fix compatibility with the framework's normalized Expression envelope format.
|
|
8
|
+
|
|
9
|
+
`@objectstack/spec` now emits predicate (`visible` / `enabled`) and template
|
|
10
|
+
(`titleFormat`) fields as `{ dialect, source }` envelopes instead of bare
|
|
11
|
+
strings. The previous implementation assumed strings and crashed the record
|
|
12
|
+
detail view (`TypeError: titleFormat.replace is not a function`) and printed
|
|
13
|
+
`Failed to evaluate expression: ${[object Object]}` for every action visibility
|
|
14
|
+
predicate.
|
|
15
|
+
- `@object-ui/core`: `ExpressionEvaluator.evaluate` / `evaluateCondition` now
|
|
16
|
+
unwrap Expression envelopes transparently.
|
|
17
|
+
- `@object-ui/react`: new `toPredicateInput()` helper to safely normalize
|
|
18
|
+
`boolean | string | Expression` predicate inputs into the `${expr}` form
|
|
19
|
+
expected by `useCondition`.
|
|
20
|
+
- `@object-ui/components`: `action-bar`, `action-button`, `action-group`,
|
|
21
|
+
`action-icon`, `action-menu` renderers use `toPredicateInput()` instead of
|
|
22
|
+
template-literal interpolation that produced `${[object Object]}`.
|
|
23
|
+
- `@object-ui/plugin-detail`, `@object-ui/plugin-kanban`,
|
|
24
|
+
`@object-ui/plugin-calendar`, `@object-ui/app-shell`,
|
|
25
|
+
`@object-ui/console`: title-format helpers accept both legacy strings and
|
|
26
|
+
the new `{ source }` envelope.
|
|
27
|
+
|
|
28
|
+
All changes are backward-compatible — legacy bare strings continue to work.
|
|
29
|
+
|
|
30
|
+
- Updated dependencies [7c9b85c]
|
|
31
|
+
- Updated dependencies [fd15918]
|
|
32
|
+
- @object-ui/core@4.0.7
|
|
33
|
+
- @object-ui/react@4.0.7
|
|
34
|
+
- @object-ui/i18n@4.0.7
|
|
35
|
+
- @object-ui/types@4.0.7
|
|
36
|
+
|
|
37
|
+
## 4.0.6
|
|
38
|
+
|
|
39
|
+
### Patch Changes
|
|
40
|
+
|
|
41
|
+
- 925051d: fix: convert Tailwind v3 `[--var]` arbitrary value syntax to v4 `(--var)`
|
|
42
|
+
|
|
43
|
+
Shadcn `Sidebar`, `Calendar`, `Chart`, `Popover`, `Tooltip`, `HoverCard`,
|
|
44
|
+
`Menubar`, `Select`, `Dropdown`, `Context-Menu`, and `AppSidebar` used the
|
|
45
|
+
Tailwind v3 syntax `w-[--sidebar-width]`, `origin-[--radix-...]`, etc.
|
|
46
|
+
Tailwind v4 no longer interprets the bare `--xxx` inside arbitrary values
|
|
47
|
+
as `var(--xxx)`, so the rule emits empty CSS — the sidebar collapses to
|
|
48
|
+
0 width and overlays the main content, dropdown/popover positions fall
|
|
49
|
+
back to the wrong origin, and the calendar cells lose their fixed size.
|
|
50
|
+
|
|
51
|
+
Replaced all such occurrences with the v4 CSS-variable shorthand
|
|
52
|
+
`w-(--sidebar-width)`, `origin-(--radix-...)`, etc. Existing
|
|
53
|
+
`[calc(var(--xxx)*-1)]` arbitrary expressions are unaffected.
|
|
54
|
+
|
|
55
|
+
- 1b6dc64: fix: complete Tailwind v3→v4 migration cleanup
|
|
56
|
+
- Rename deprecated `flex-shrink-0` → `shrink-0` and `flex-grow-N` →
|
|
57
|
+
`grow-N` (Tailwind v4 dropped the long-form aliases). Affects
|
|
58
|
+
data-table, fields/index, FileField, ChatbotEnhanced,
|
|
59
|
+
FloatingChatbotPanel, ProcessDesigner, HistoryPanel, KanbanEnhanced,
|
|
60
|
+
KanbanImpl, plugin-timeline index, FlowDesigner, LayoutRenderer.
|
|
61
|
+
- Replace `theme(spacing.4)` inside arbitrary-value `[calc(...)]` with
|
|
62
|
+
literal `1rem` in sidebar.tsx — `theme()` is deprecated in v4.
|
|
63
|
+
- Remove obsolete v3-escape CSS overrides from index.css and
|
|
64
|
+
sidebar-fixes.css. The component source now uses native v4 stacked
|
|
65
|
+
data variants (`group-data-[state=collapsed]:group-data-[collapsible=icon]:w-(--sidebar-width-icon)`)
|
|
66
|
+
which Tailwind v4 emits correctly without the manual overrides.
|
|
67
|
+
Only the bespoke `.sidebar-menu-button-icon-mode*` rules are kept.
|
|
68
|
+
- @object-ui/types@4.0.6
|
|
69
|
+
- @object-ui/core@4.0.6
|
|
70
|
+
- @object-ui/i18n@4.0.6
|
|
71
|
+
- @object-ui/react@4.0.6
|
|
72
|
+
|
|
3
73
|
## 4.0.5
|
|
4
74
|
|
|
5
75
|
### 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,17 @@
|
|
|
800
800
|
.h-svh {
|
|
801
801
|
height: 100svh;
|
|
802
802
|
}
|
|
803
|
+
.max-h-\(--radix-context-menu-content-available-height\) {
|
|
804
|
+
max-height: var(--radix-context-menu-content-available-height);
|
|
805
|
+
}
|
|
806
|
+
.max-h-\(--radix-select-content-available-height\) {
|
|
807
|
+
max-height: var(--radix-select-content-available-height);
|
|
808
|
+
}
|
|
803
809
|
.max-h-40 {
|
|
804
810
|
max-height: calc(var(--spacing) * 40);
|
|
805
811
|
}
|
|
806
|
-
.max-h
|
|
807
|
-
max-height: --
|
|
808
|
-
}
|
|
809
|
-
.max-h-\[--radix-select-content-available-height\] {
|
|
810
|
-
max-height: --radix-select-content-available-height;
|
|
812
|
+
.max-h-64 {
|
|
813
|
+
max-height: calc(var(--spacing) * 64);
|
|
811
814
|
}
|
|
812
815
|
.max-h-\[50vh\] {
|
|
813
816
|
max-height: 50vh;
|
|
@@ -875,6 +878,12 @@
|
|
|
875
878
|
.min-h-svh {
|
|
876
879
|
min-height: 100svh;
|
|
877
880
|
}
|
|
881
|
+
.w-\(--cell-size\) {
|
|
882
|
+
width: var(--cell-size);
|
|
883
|
+
}
|
|
884
|
+
.w-\(--sidebar-width\) {
|
|
885
|
+
width: var(--sidebar-width);
|
|
886
|
+
}
|
|
878
887
|
.w-0 {
|
|
879
888
|
width: calc(var(--spacing) * 0);
|
|
880
889
|
}
|
|
@@ -962,9 +971,6 @@
|
|
|
962
971
|
.w-96 {
|
|
963
972
|
width: calc(var(--spacing) * 96);
|
|
964
973
|
}
|
|
965
|
-
.w-\[--cell-size\] {
|
|
966
|
-
width: --cell-size;
|
|
967
|
-
}
|
|
968
974
|
.w-\[--sidebar-width\] {
|
|
969
975
|
width: --sidebar-width;
|
|
970
976
|
}
|
|
@@ -1016,6 +1022,9 @@
|
|
|
1016
1022
|
.w-px {
|
|
1017
1023
|
width: 1px;
|
|
1018
1024
|
}
|
|
1025
|
+
.max-w-\(--skeleton-width\) {
|
|
1026
|
+
max-width: var(--skeleton-width);
|
|
1027
|
+
}
|
|
1019
1028
|
.max-w-2xl {
|
|
1020
1029
|
max-width: var(--container-2xl);
|
|
1021
1030
|
}
|
|
@@ -1034,9 +1043,6 @@
|
|
|
1034
1043
|
.max-w-7xl {
|
|
1035
1044
|
max-width: var(--container-7xl);
|
|
1036
1045
|
}
|
|
1037
|
-
.max-w-\[--skeleton-width\] {
|
|
1038
|
-
max-width: --skeleton-width;
|
|
1039
|
-
}
|
|
1040
1046
|
.max-w-\[40\%\] {
|
|
1041
1047
|
max-width: 40%;
|
|
1042
1048
|
}
|
|
@@ -1085,6 +1091,9 @@
|
|
|
1085
1091
|
.max-w-xs {
|
|
1086
1092
|
max-width: var(--container-xs);
|
|
1087
1093
|
}
|
|
1094
|
+
.min-w-\(--cell-size\) {
|
|
1095
|
+
min-width: var(--cell-size);
|
|
1096
|
+
}
|
|
1088
1097
|
.min-w-0 {
|
|
1089
1098
|
min-width: calc(var(--spacing) * 0);
|
|
1090
1099
|
}
|
|
@@ -1103,9 +1112,6 @@
|
|
|
1103
1112
|
.min-w-11 {
|
|
1104
1113
|
min-width: calc(var(--spacing) * 11);
|
|
1105
1114
|
}
|
|
1106
|
-
.min-w-\[--cell-size\] {
|
|
1107
|
-
min-width: --cell-size;
|
|
1108
|
-
}
|
|
1109
1115
|
.min-w-\[8rem\] {
|
|
1110
1116
|
min-width: 8rem;
|
|
1111
1117
|
}
|
|
@@ -1148,26 +1154,29 @@
|
|
|
1148
1154
|
.border-collapse {
|
|
1149
1155
|
border-collapse: collapse;
|
|
1150
1156
|
}
|
|
1151
|
-
.origin-\
|
|
1152
|
-
transform-origin: --radix-context-menu-content-transform-origin;
|
|
1157
|
+
.origin-\(--radix-context-menu-content-transform-origin\) {
|
|
1158
|
+
transform-origin: var(--radix-context-menu-content-transform-origin);
|
|
1159
|
+
}
|
|
1160
|
+
.origin-\(--radix-dropdown-menu-content-transform-origin\) {
|
|
1161
|
+
transform-origin: var(--radix-dropdown-menu-content-transform-origin);
|
|
1153
1162
|
}
|
|
1154
|
-
.origin-\
|
|
1155
|
-
transform-origin: --radix-
|
|
1163
|
+
.origin-\(--radix-hover-card-content-transform-origin\) {
|
|
1164
|
+
transform-origin: var(--radix-hover-card-content-transform-origin);
|
|
1156
1165
|
}
|
|
1157
|
-
.origin-\
|
|
1158
|
-
transform-origin: --radix-
|
|
1166
|
+
.origin-\(--radix-menubar-content-transform-origin\) {
|
|
1167
|
+
transform-origin: var(--radix-menubar-content-transform-origin);
|
|
1159
1168
|
}
|
|
1160
|
-
.origin-\
|
|
1161
|
-
transform-origin: --radix-
|
|
1169
|
+
.origin-\(--radix-popover-content-transform-origin\) {
|
|
1170
|
+
transform-origin: var(--radix-popover-content-transform-origin);
|
|
1162
1171
|
}
|
|
1163
|
-
.origin-\
|
|
1164
|
-
transform-origin: --radix-
|
|
1172
|
+
.origin-\(--radix-select-content-transform-origin\) {
|
|
1173
|
+
transform-origin: var(--radix-select-content-transform-origin);
|
|
1165
1174
|
}
|
|
1166
|
-
.origin-\
|
|
1167
|
-
transform-origin: --radix-
|
|
1175
|
+
.origin-\(--radix-tooltip-content-transform-origin\) {
|
|
1176
|
+
transform-origin: var(--radix-tooltip-content-transform-origin);
|
|
1168
1177
|
}
|
|
1169
|
-
.origin-\[--radix
|
|
1170
|
-
transform-origin: --radix
|
|
1178
|
+
.origin-\[--radix-\.\.\.\] {
|
|
1179
|
+
transform-origin: --radix-...;
|
|
1171
1180
|
}
|
|
1172
1181
|
.-translate-x-1\/2 {
|
|
1173
1182
|
--tw-translate-x: calc(calc(1 / 2 * 100%) * -1);
|
|
@@ -1604,8 +1613,8 @@
|
|
|
1604
1613
|
--tw-border-style: dashed;
|
|
1605
1614
|
border-style: dashed;
|
|
1606
1615
|
}
|
|
1607
|
-
.border-\
|
|
1608
|
-
border-color: --color-border;
|
|
1616
|
+
.border-\(--color-border\) {
|
|
1617
|
+
border-color: var(--color-border);
|
|
1609
1618
|
}
|
|
1610
1619
|
.border-blue-300 {
|
|
1611
1620
|
border-color: var(--color-blue-300);
|
|
@@ -1670,8 +1679,8 @@
|
|
|
1670
1679
|
.border-l-transparent {
|
|
1671
1680
|
border-left-color: transparent;
|
|
1672
1681
|
}
|
|
1673
|
-
.bg-\
|
|
1674
|
-
background-color: --color-bg;
|
|
1682
|
+
.bg-\(--color-bg\) {
|
|
1683
|
+
background-color: var(--color-bg);
|
|
1675
1684
|
}
|
|
1676
1685
|
.bg-accent {
|
|
1677
1686
|
background-color: var(--color-accent);
|
|
@@ -1939,6 +1948,9 @@
|
|
|
1939
1948
|
.p-\[1px\] {
|
|
1940
1949
|
padding: 1px;
|
|
1941
1950
|
}
|
|
1951
|
+
.px-\(--cell-size\) {
|
|
1952
|
+
padding-inline: var(--cell-size);
|
|
1953
|
+
}
|
|
1942
1954
|
.px-1 {
|
|
1943
1955
|
padding-inline: calc(var(--spacing) * 1);
|
|
1944
1956
|
}
|
|
@@ -1963,9 +1975,6 @@
|
|
|
1963
1975
|
.px-8 {
|
|
1964
1976
|
padding-inline: calc(var(--spacing) * 8);
|
|
1965
1977
|
}
|
|
1966
|
-
.px-\[--cell-size\] {
|
|
1967
|
-
padding-inline: --cell-size;
|
|
1968
|
-
}
|
|
1969
1978
|
.px-\[0\.3rem\] {
|
|
1970
1979
|
padding-inline: 0.3rem;
|
|
1971
1980
|
}
|
|
@@ -2717,41 +2726,6 @@
|
|
|
2717
2726
|
align-self: flex-start;
|
|
2718
2727
|
}
|
|
2719
2728
|
}
|
|
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
2729
|
.group-data-\[collapsible\=offcanvas\]\:right-\[calc\(var\(--sidebar-width\)\*-1\)\] {
|
|
2756
2730
|
&:is(:where(.group)[data-collapsible="offcanvas"] *) {
|
|
2757
2731
|
right: calc(var(--sidebar-width) * -1);
|
|
@@ -2829,6 +2803,55 @@
|
|
|
2829
2803
|
border-left-width: 1px;
|
|
2830
2804
|
}
|
|
2831
2805
|
}
|
|
2806
|
+
.group-data-\[state\=collapsed\]\:group-data-\[collapsible\=icon\]\:-mt-8 {
|
|
2807
|
+
&:is(:where(.group)[data-state="collapsed"] *) {
|
|
2808
|
+
&:is(:where(.group)[data-collapsible="icon"] *) {
|
|
2809
|
+
margin-top: calc(var(--spacing) * -8);
|
|
2810
|
+
}
|
|
2811
|
+
}
|
|
2812
|
+
}
|
|
2813
|
+
.group-data-\[state\=collapsed\]\:group-data-\[collapsible\=icon\]\:hidden {
|
|
2814
|
+
&:is(:where(.group)[data-state="collapsed"] *) {
|
|
2815
|
+
&:is(:where(.group)[data-collapsible="icon"] *) {
|
|
2816
|
+
display: none;
|
|
2817
|
+
}
|
|
2818
|
+
}
|
|
2819
|
+
}
|
|
2820
|
+
.group-data-\[state\=collapsed\]\:group-data-\[collapsible\=icon\]\:w-\(--sidebar-width-icon\) {
|
|
2821
|
+
&:is(:where(.group)[data-state="collapsed"] *) {
|
|
2822
|
+
&:is(:where(.group)[data-collapsible="icon"] *) {
|
|
2823
|
+
width: var(--sidebar-width-icon);
|
|
2824
|
+
}
|
|
2825
|
+
}
|
|
2826
|
+
}
|
|
2827
|
+
.group-data-\[state\=collapsed\]\:group-data-\[collapsible\=icon\]\:w-\[calc\(var\(--sidebar-width-icon\)_\+_1rem\)\] {
|
|
2828
|
+
&:is(:where(.group)[data-state="collapsed"] *) {
|
|
2829
|
+
&:is(:where(.group)[data-collapsible="icon"] *) {
|
|
2830
|
+
width: calc(var(--sidebar-width-icon) + 1rem);
|
|
2831
|
+
}
|
|
2832
|
+
}
|
|
2833
|
+
}
|
|
2834
|
+
.group-data-\[state\=collapsed\]\:group-data-\[collapsible\=icon\]\:w-\[calc\(var\(--sidebar-width-icon\)_\+_1rem_\+_2px\)\] {
|
|
2835
|
+
&:is(:where(.group)[data-state="collapsed"] *) {
|
|
2836
|
+
&:is(:where(.group)[data-collapsible="icon"] *) {
|
|
2837
|
+
width: calc(var(--sidebar-width-icon) + 1rem + 2px);
|
|
2838
|
+
}
|
|
2839
|
+
}
|
|
2840
|
+
}
|
|
2841
|
+
.group-data-\[state\=collapsed\]\:group-data-\[collapsible\=icon\]\:overflow-hidden {
|
|
2842
|
+
&:is(:where(.group)[data-state="collapsed"] *) {
|
|
2843
|
+
&:is(:where(.group)[data-collapsible="icon"] *) {
|
|
2844
|
+
overflow: hidden;
|
|
2845
|
+
}
|
|
2846
|
+
}
|
|
2847
|
+
}
|
|
2848
|
+
.group-data-\[state\=collapsed\]\:group-data-\[collapsible\=icon\]\:opacity-0 {
|
|
2849
|
+
&:is(:where(.group)[data-state="collapsed"] *) {
|
|
2850
|
+
&:is(:where(.group)[data-collapsible="icon"] *) {
|
|
2851
|
+
opacity: 0%;
|
|
2852
|
+
}
|
|
2853
|
+
}
|
|
2854
|
+
}
|
|
2832
2855
|
.group-data-\[state\=open\]\:rotate-180 {
|
|
2833
2856
|
&:is(:where(.group)[data-state="open"] *) {
|
|
2834
2857
|
rotate: 180deg;
|
|
@@ -3459,6 +3482,12 @@
|
|
|
3459
3482
|
--tw-ring-color: var(--color-ring);
|
|
3460
3483
|
}
|
|
3461
3484
|
}
|
|
3485
|
+
.focus\:ring-offset-1 {
|
|
3486
|
+
&:focus {
|
|
3487
|
+
--tw-ring-offset-width: 1px;
|
|
3488
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
3489
|
+
}
|
|
3490
|
+
}
|
|
3462
3491
|
.focus\:ring-offset-2 {
|
|
3463
3492
|
&:focus {
|
|
3464
3493
|
--tw-ring-offset-width: 2px;
|
|
@@ -5961,48 +5990,6 @@ body {
|
|
|
5961
5990
|
.dark [data-sidebar="menu-button"][data-active="true"]:hover {
|
|
5962
5991
|
background-color: hsl(var(--primary) / 0.24);
|
|
5963
5992
|
}
|
|
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
5993
|
.group[data-collapsible="icon"][data-state="collapsed"] .sidebar-menu-button-icon-mode {
|
|
6007
5994
|
width: 2rem !important;
|
|
6008
5995
|
height: 2rem !important;
|
|
@@ -6019,9 +6006,6 @@ body {
|
|
|
6019
6006
|
.group[data-collapsible="icon"][data-state="expanded"] .sidebar-menu-button-icon-mode-lg {
|
|
6020
6007
|
padding: 0.5rem;
|
|
6021
6008
|
}
|
|
6022
|
-
.group[data-collapsible="offcanvas"] .group-data-\[collapsible\=offcanvas\]\:w-0 {
|
|
6023
|
-
width: 0;
|
|
6024
|
-
}
|
|
6025
6009
|
@keyframes enter {
|
|
6026
6010
|
from {
|
|
6027
6011
|
opacity: var(--tw-enter-opacity, 1);
|
|
@@ -6445,5 +6429,5 @@ body {
|
|
|
6445
6429
|
|
|
6446
6430
|
|
|
6447
6431
|
/* === sidebar-fixes.css (extracted by Vite) === */
|
|
6448
|
-
.group[data-collapsible=icon][data-state=collapsed] .
|
|
6432
|
+
.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
6433
|
/*$vite$:1*/
|