@tidbcloud/uikit 2.3.2 → 2.4.0
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 +12 -0
- package/dist/biz/AppShell/AppPageShell.cjs +104 -0
- package/dist/biz/AppShell/AppPageShell.d.cts +20 -0
- package/dist/biz/AppShell/AppPageShell.d.mts +20 -0
- package/dist/biz/AppShell/AppPageShell.mjs +104 -0
- package/dist/biz/AppShell/AppShell.cjs +83 -0
- package/dist/biz/AppShell/AppShell.d.cts +45 -0
- package/dist/biz/AppShell/AppShell.d.mts +45 -0
- package/dist/biz/AppShell/AppShell.mjs +83 -0
- package/dist/biz/AppShell/container/AppShellBody.cjs +30 -0
- package/dist/biz/AppShell/container/AppShellBody.d.cts +5 -0
- package/dist/biz/AppShell/container/AppShellBody.d.mts +5 -0
- package/dist/biz/AppShell/container/AppShellBody.mjs +30 -0
- package/dist/biz/AppShell/container/AppShellMain.cjs +36 -0
- package/dist/biz/AppShell/container/AppShellMain.d.cts +5 -0
- package/dist/biz/AppShell/container/AppShellMain.d.mts +5 -0
- package/dist/biz/AppShell/container/AppShellMain.mjs +36 -0
- package/dist/biz/AppShell/container/AppShellRoot.cjs +13 -0
- package/dist/biz/AppShell/container/AppShellRoot.d.cts +1 -0
- package/dist/biz/AppShell/container/AppShellRoot.d.mts +1 -0
- package/dist/biz/AppShell/container/AppShellRoot.mjs +13 -0
- package/dist/biz/AppShell/index.d.cts +7 -0
- package/dist/biz/AppShell/index.d.mts +7 -0
- package/dist/biz/AppShell/navbar/ExpandNavbarButton.cjs +44 -0
- package/dist/biz/AppShell/navbar/ExpandNavbarButton.d.cts +6 -0
- package/dist/biz/AppShell/navbar/ExpandNavbarButton.d.mts +6 -0
- package/dist/biz/AppShell/navbar/ExpandNavbarButton.mjs +44 -0
- package/dist/biz/AppShell/navbar/ExpandNavbarButtonPlaceholder.cjs +32 -0
- package/dist/biz/AppShell/navbar/ExpandNavbarButtonPlaceholder.d.cts +1 -0
- package/dist/biz/AppShell/navbar/ExpandNavbarButtonPlaceholder.d.mts +1 -0
- package/dist/biz/AppShell/navbar/ExpandNavbarButtonPlaceholder.mjs +32 -0
- package/dist/biz/AppShell/navbar/FooterNavItemBase.cjs +8 -0
- package/dist/biz/AppShell/navbar/FooterNavItemBase.d.cts +7 -0
- package/dist/biz/AppShell/navbar/FooterNavItemBase.d.mts +7 -0
- package/dist/biz/AppShell/navbar/FooterNavItemBase.mjs +8 -0
- package/dist/biz/AppShell/navbar/NavItemBase.cjs +21 -0
- package/dist/biz/AppShell/navbar/NavItemBase.d.cts +12 -0
- package/dist/biz/AppShell/navbar/NavItemBase.d.mts +12 -0
- package/dist/biz/AppShell/navbar/NavItemBase.mjs +21 -0
- package/dist/biz/AppShell/navbar/Navbar.cjs +61 -0
- package/dist/biz/AppShell/navbar/Navbar.d.cts +11 -0
- package/dist/biz/AppShell/navbar/Navbar.d.mts +11 -0
- package/dist/biz/AppShell/navbar/Navbar.mjs +61 -0
- package/dist/biz/AppShell/navbar/NavbarHeader.cjs +58 -0
- package/dist/biz/AppShell/navbar/NavbarHeader.d.cts +8 -0
- package/dist/biz/AppShell/navbar/NavbarHeader.d.mts +8 -0
- package/dist/biz/AppShell/navbar/NavbarHeader.mjs +58 -0
- package/dist/biz/AppShell/navbar/NavbarSection.cjs +32 -0
- package/dist/biz/AppShell/navbar/NavbarSection.d.cts +16 -0
- package/dist/biz/AppShell/navbar/NavbarSection.d.mts +16 -0
- package/dist/biz/AppShell/navbar/NavbarSection.mjs +32 -0
- package/dist/biz/AppShell/navbar/SubNavItemBase.cjs +23 -0
- package/dist/biz/AppShell/navbar/SubNavItemBase.d.cts +7 -0
- package/dist/biz/AppShell/navbar/SubNavItemBase.d.mts +7 -0
- package/dist/biz/AppShell/navbar/SubNavItemBase.mjs +23 -0
- package/dist/biz/AppShell/navbar/context/NavMenuPortal.cjs +28 -0
- package/dist/biz/AppShell/navbar/context/NavMenuPortal.d.cts +1 -0
- package/dist/biz/AppShell/navbar/context/NavMenuPortal.d.mts +1 -0
- package/dist/biz/AppShell/navbar/context/NavMenuPortal.mjs +28 -0
- package/dist/biz/AppShell/navbar/context/nav-menu-ref-context.cjs +5 -0
- package/dist/biz/AppShell/navbar/context/nav-menu-ref-context.d.cts +1 -0
- package/dist/biz/AppShell/navbar/context/nav-menu-ref-context.d.mts +1 -0
- package/dist/biz/AppShell/navbar/context/nav-menu-ref-context.mjs +5 -0
- package/dist/biz/PageShell/{index.cjs → LegacyPageShell.cjs} +2 -2
- package/dist/biz/PageShell/LegacyPageShell.d.cts +85 -0
- package/dist/biz/PageShell/LegacyPageShell.d.mts +85 -0
- package/dist/biz/PageShell/{index.mjs → LegacyPageShell.mjs} +2 -2
- package/dist/biz/PageShell/index.d.cts +1 -85
- package/dist/biz/PageShell/index.d.mts +1 -85
- package/dist/biz/PageShellBase/PageShellBaseBackButton.cjs +32 -0
- package/dist/biz/PageShellBase/PageShellBaseBackButton.d.cts +5 -0
- package/dist/biz/PageShellBase/PageShellBaseBackButton.d.mts +5 -0
- package/dist/biz/PageShellBase/PageShellBaseBackButton.mjs +32 -0
- package/dist/biz/PageShellBase/PageShellBaseBody.cjs +30 -0
- package/dist/biz/PageShellBase/PageShellBaseBody.d.cts +4 -0
- package/dist/biz/PageShellBase/PageShellBaseBody.d.mts +4 -0
- package/dist/biz/PageShellBase/PageShellBaseBody.mjs +30 -0
- package/dist/biz/PageShellBase/PageShellBaseHeader.cjs +50 -0
- package/dist/biz/PageShellBase/PageShellBaseHeader.d.cts +17 -0
- package/dist/biz/PageShellBase/PageShellBaseHeader.d.mts +17 -0
- package/dist/biz/PageShellBase/PageShellBaseHeader.mjs +50 -0
- package/dist/biz/PageShellBase/PageShellBaseRoot.cjs +14 -0
- package/dist/biz/PageShellBase/PageShellBaseRoot.d.cts +4 -0
- package/dist/biz/PageShellBase/PageShellBaseRoot.d.mts +4 -0
- package/dist/biz/PageShellBase/PageShellBaseRoot.mjs +14 -0
- package/dist/biz/PageShellBase/PageShellBaseTitle.cjs +23 -0
- package/dist/biz/PageShellBase/PageShellBaseTitle.d.cts +4 -0
- package/dist/biz/PageShellBase/PageShellBaseTitle.d.mts +4 -0
- package/dist/biz/PageShellBase/PageShellBaseTitle.mjs +23 -0
- package/dist/biz/PageShellBase/page-shell-base.cjs +25 -0
- package/dist/biz/PageShellBase/page-shell-base.d.cts +14 -0
- package/dist/biz/PageShellBase/page-shell-base.d.mts +14 -0
- package/dist/biz/PageShellBase/page-shell-base.mjs +25 -0
- package/dist/biz/index.cjs +35 -9
- package/dist/biz/index.d.cts +2 -0
- package/dist/biz/index.d.mts +2 -0
- package/dist/biz/index.mjs +27 -1
- package/dist/primitive/index.d.cts +1 -1
- package/dist/primitive/index.d.mts +1 -1
- package/dist/theme/theme.cjs +42 -2
- package/dist/theme/theme.mjs +42 -2
- package/package.json +1 -1
package/dist/biz/index.cjs
CHANGED
|
@@ -9,10 +9,10 @@ const index$5 = require("./LabelTooltip/index.cjs");
|
|
|
9
9
|
const index$7 = require("./Tree/index.cjs");
|
|
10
10
|
const index$8 = require("./TransferTree/index.cjs");
|
|
11
11
|
const index$9 = require("./PropertyCard/index.cjs");
|
|
12
|
-
const index$a = require("./
|
|
13
|
-
const index$b = require("./
|
|
14
|
-
const index$c = require("./
|
|
15
|
-
const
|
|
12
|
+
const index$a = require("./TimeRangePicker/index.cjs");
|
|
13
|
+
const index$b = require("./DateTimePicker/index.cjs");
|
|
14
|
+
const index$c = require("./ProMultiSelect/index.cjs");
|
|
15
|
+
const pageShellBase = require("./PageShellBase/page-shell-base.cjs");
|
|
16
16
|
const helper = require("./PhoneInput/helper.cjs");
|
|
17
17
|
const index_esm = require("../node_modules/.pnpm/mantine-react-table@2.0.0-beta.7_@mantine_core@7.15.2_patch_hash_jclkxeaefn6uz54h34k3r3yjsq_@_6pmziqsvipqgt5gv2plqw5hct4/node_modules/mantine-react-table/dist/index.esm.cjs");
|
|
18
18
|
const ProTable = require("./Table/ProTable/ProTable.cjs");
|
|
@@ -37,7 +37,20 @@ const context = require("./Form/context.cjs");
|
|
|
37
37
|
const CopyText = require("./Form/CopyText.cjs");
|
|
38
38
|
const SegmentControl = require("./Form/SegmentControl.cjs");
|
|
39
39
|
const ProMultiSelect = require("./Form/ProMultiSelect.cjs");
|
|
40
|
+
const LegacyPageShell = require("./PageShell/LegacyPageShell.cjs");
|
|
40
41
|
const helpers$1 = require("./TimeRangePicker/helpers.cjs");
|
|
42
|
+
const AppShell = require("./AppShell/AppShell.cjs");
|
|
43
|
+
const AppPageShell = require("./AppShell/AppPageShell.cjs");
|
|
44
|
+
const NavMenuPortal = require("./AppShell/navbar/context/NavMenuPortal.cjs");
|
|
45
|
+
const NavItemBase = require("./AppShell/navbar/NavItemBase.cjs");
|
|
46
|
+
const SubNavItemBase = require("./AppShell/navbar/SubNavItemBase.cjs");
|
|
47
|
+
const FooterNavItemBase = require("./AppShell/navbar/FooterNavItemBase.cjs");
|
|
48
|
+
const ExpandNavbarButtonPlaceholder = require("./AppShell/navbar/ExpandNavbarButtonPlaceholder.cjs");
|
|
49
|
+
const PageShellBaseRoot = require("./PageShellBase/PageShellBaseRoot.cjs");
|
|
50
|
+
const PageShellBaseHeader = require("./PageShellBase/PageShellBaseHeader.cjs");
|
|
51
|
+
const PageShellBaseTitle = require("./PageShellBase/PageShellBaseTitle.cjs");
|
|
52
|
+
const PageShellBaseBody = require("./PageShellBase/PageShellBaseBody.cjs");
|
|
53
|
+
const PageShellBaseBackButton = require("./PageShellBase/PageShellBaseBackButton.cjs");
|
|
41
54
|
exports.Dot = index.Dot;
|
|
42
55
|
exports.CodeBlock = index$1.CodeBlock;
|
|
43
56
|
exports.CopyText = index$1.CopyText;
|
|
@@ -49,11 +62,11 @@ exports.LabelTooltip = index$5.LabelTooltip;
|
|
|
49
62
|
exports.Tree = index$7.Tree;
|
|
50
63
|
exports.TransferTree = index$8.TransferTree;
|
|
51
64
|
exports.PropertyCard = index$9.PropertyCard;
|
|
52
|
-
exports.
|
|
53
|
-
exports.
|
|
54
|
-
exports.
|
|
55
|
-
exports.
|
|
56
|
-
exports.
|
|
65
|
+
exports.TimeRangePicker = index$a.TimeRangePicker;
|
|
66
|
+
exports.DateTimePicker = index$b.DateTimePicker;
|
|
67
|
+
exports.TimePicker = index$b.TimePicker;
|
|
68
|
+
exports.ProMultiSelect = index$c.ProMultiSelect;
|
|
69
|
+
exports.PageShellBase = pageShellBase.PageShellBase;
|
|
57
70
|
exports.validPhoneNumber = helper.validPhoneNumber;
|
|
58
71
|
exports.MRT_AggregationFns = index_esm.MRT_AggregationFns;
|
|
59
72
|
exports.MRT_BottomToolbar = index_esm.MRT_BottomToolbar;
|
|
@@ -185,6 +198,7 @@ exports.useHookFormContext = context.useHookFormContext;
|
|
|
185
198
|
exports.FormCopyText = CopyText.FormCopyText;
|
|
186
199
|
exports.FormSegmentedControl = SegmentControl.FormSegmentedControl;
|
|
187
200
|
exports.FormProMultiSelect = ProMultiSelect.FormProMultiSelect;
|
|
201
|
+
exports.PageShell = LegacyPageShell.PageShell;
|
|
188
202
|
exports.DEFAULT_QUICK_RANGES = helpers$1.DEFAULT_QUICK_RANGES;
|
|
189
203
|
exports.DEFAULT_TIME_FORMAT = helpers$1.DEFAULT_TIME_FORMAT;
|
|
190
204
|
exports.DEFAULT_TIME_FORMAT_WITH_TIMEZONE = helpers$1.DEFAULT_TIME_FORMAT_WITH_TIMEZONE;
|
|
@@ -198,3 +212,15 @@ exports.toTimeRangeValue = helpers$1.toTimeRangeValue;
|
|
|
198
212
|
exports.toURLTimeRange = helpers$1.toURLTimeRange;
|
|
199
213
|
exports.urlToTimeRange = helpers$1.urlToTimeRange;
|
|
200
214
|
exports.urlToTimeRangeValue = helpers$1.urlToTimeRangeValue;
|
|
215
|
+
exports.AppShell = AppShell.AppShell;
|
|
216
|
+
exports.AppPageShell = AppPageShell.AppPageShell;
|
|
217
|
+
exports.NavMenuPortal = NavMenuPortal.NavMenuPortal;
|
|
218
|
+
exports.NavItemBase = NavItemBase.NavItemBase;
|
|
219
|
+
exports.SubNavItemBase = SubNavItemBase.SubNavItemBase;
|
|
220
|
+
exports.FooterNavItemBase = FooterNavItemBase.FooterNavItemBase;
|
|
221
|
+
exports.ExpandNavbarButtonPlaceholder = ExpandNavbarButtonPlaceholder.ExpandNavbarButtonPlaceholder;
|
|
222
|
+
exports.PageShellBaseRoot = PageShellBaseRoot.PageShellBaseRoot;
|
|
223
|
+
exports.PageShellBaseHeader = PageShellBaseHeader.PageShellBaseHeader;
|
|
224
|
+
exports.PageShellBaseTitle = PageShellBaseTitle.PageShellBaseTitle;
|
|
225
|
+
exports.PageShellBaseBody = PageShellBaseBody.PageShellBaseBody;
|
|
226
|
+
exports.PageShellBaseBackButton = PageShellBaseBackButton.PageShellBaseBackButton;
|
package/dist/biz/index.d.cts
CHANGED
|
@@ -43,3 +43,5 @@ export * from './PageShell/index.cjs';
|
|
|
43
43
|
export * from './TimeRangePicker/index.cjs';
|
|
44
44
|
export * from './DateTimePicker/index.cjs';
|
|
45
45
|
export * from './ProMultiSelect/index.cjs';
|
|
46
|
+
export * from './AppShell/index.cjs';
|
|
47
|
+
export * from './PageShellBase/page-shell-base.cjs';
|
package/dist/biz/index.d.mts
CHANGED
|
@@ -43,3 +43,5 @@ export * from './PageShell/index.mjs';
|
|
|
43
43
|
export * from './TimeRangePicker/index.mjs';
|
|
44
44
|
export * from './DateTimePicker/index.mjs';
|
|
45
45
|
export * from './ProMultiSelect/index.mjs';
|
|
46
|
+
export * from './AppShell/index.mjs';
|
|
47
|
+
export * from './PageShellBase/page-shell-base.mjs';
|
package/dist/biz/index.mjs
CHANGED
|
@@ -7,10 +7,10 @@ import { LabelTooltip } from "./LabelTooltip/index.mjs";
|
|
|
7
7
|
import { Tree } from "./Tree/index.mjs";
|
|
8
8
|
import { TransferTree } from "./TransferTree/index.mjs";
|
|
9
9
|
import { PropertyCard } from "./PropertyCard/index.mjs";
|
|
10
|
-
import { PageShell } from "./PageShell/index.mjs";
|
|
11
10
|
import { TimeRangePicker } from "./TimeRangePicker/index.mjs";
|
|
12
11
|
import { DateTimePicker, TimePicker } from "./DateTimePicker/index.mjs";
|
|
13
12
|
import { ProMultiSelect } from "./ProMultiSelect/index.mjs";
|
|
13
|
+
import { PageShellBase } from "./PageShellBase/page-shell-base.mjs";
|
|
14
14
|
import { validPhoneNumber } from "./PhoneInput/helper.mjs";
|
|
15
15
|
import { MRT_AggregationFns, MRT_BottomToolbar, MRT_ColumnActionMenu, MRT_ColumnPinningButtons, MRT_CopyButton, MRT_DefaultColumn, MRT_DefaultDisplayColumn, MRT_EditActionButtons, MRT_EditCellTextInput, MRT_EditRowModal, MRT_ExpandAllButton, MRT_ExpandButton, MRT_FilterCheckbox, MRT_FilterFns, MRT_FilterOptionMenu, MRT_FilterRangeFields, MRT_FilterRangeSlider, MRT_FilterTextInput, MRT_GlobalFilterTextInput, MRT_GrabHandleButton, MRT_ProgressBar, MRT_RowActionMenu, MRT_RowPinButton, MRT_SelectCheckbox, MRT_ShowHideColumnsButton, MRT_ShowHideColumnsMenu, MRT_ShowHideColumnsMenuItems, MRT_SortingFns, MRT_Table, MRT_TableBody, MRT_TableBodyCell, MRT_TableBodyCellValue, MRT_TableBodyRow, MRT_TableBodyRowGrabHandle, MRT_TableBodyRowPinButton, MRT_TableContainer, MRT_TableDetailPanel, MRT_TableFooter, MRT_TableFooterCell, MRT_TableFooterRow, MRT_TableHead, MRT_TableHeadCell, MRT_TableHeadCellFilterContainer, MRT_TableHeadCellFilterLabel, MRT_TableHeadCellGrabHandle, MRT_TableHeadCellResizeHandle, MRT_TableHeadCellSortLabel, MRT_TableHeadRow, MRT_TablePagination, MRT_TablePaper, MRT_ToggleDensePaddingButton, MRT_ToggleFiltersButton, MRT_ToggleFullScreenButton, MRT_ToggleGlobalFilterButton, MRT_ToggleRowActionMenuButton, MRT_ToolbarAlertBanner, MRT_ToolbarDropZone, MRT_ToolbarInternalButtons, MRT_TopToolbar, MantineReactTable, Memo_MRT_TableBody, Memo_MRT_TableBodyCell, Memo_MRT_TableBodyRow, createMRTColumnHelper, createRow, dataVariable, defaultDisplayColumnProps, flexRender, getAllLeafColumnDefs, getCanRankRows, getColumnId, getDefaultColumnFilterFn, getDefaultColumnOrderIds, getIsRankingRows, getIsRowSelected, getLeadingDisplayColumnIds, getMRT_RowSelectionHandler, getMRT_Rows, getMRT_SelectAllHandler, getPrimaryColor, getPrimaryShade, getTrailingDisplayColumnIds, localizedFilterOption, mrtFilterOptions, parseCSSVarId, prepareColumns, rankGlobalFuzzy, reorderColumn, showRowActionsColumn, showRowDragColumn, showRowExpandColumn, showRowNumbersColumn, showRowPinningColumn, showRowSelectionColumn, showRowSpacerColumn, useMRT_ColumnVirtualizer, useMRT_Effects, useMRT_RowVirtualizer, useMRT_Rows, useMRT_TableInstance, useMRT_TableOptions, useMantineReactTable } from "../node_modules/.pnpm/mantine-react-table@2.0.0-beta.7_@mantine_core@7.15.2_patch_hash_jclkxeaefn6uz54h34k3r3yjsq_@_6pmziqsvipqgt5gv2plqw5hct4/node_modules/mantine-react-table/dist/index.esm.mjs";
|
|
16
16
|
import { ProTable } from "./Table/ProTable/ProTable.mjs";
|
|
@@ -35,8 +35,23 @@ import { HookFormContext, HookFormProvider, useHookFormContext } from "./Form/co
|
|
|
35
35
|
import { FormCopyText } from "./Form/CopyText.mjs";
|
|
36
36
|
import { FormSegmentedControl } from "./Form/SegmentControl.mjs";
|
|
37
37
|
import { FormProMultiSelect } from "./Form/ProMultiSelect.mjs";
|
|
38
|
+
import { PageShell } from "./PageShell/LegacyPageShell.mjs";
|
|
38
39
|
import { DEFAULT_QUICK_RANGES, DEFAULT_TIME_FORMAT, DEFAULT_TIME_FORMAT_WITH_TIMEZONE, DEFAULT_TIME_RANGE, addOffsetUTC, formatDuration, fromTimeRangeValue, getUTCString, timeFormatter, toTimeRangeValue, toURLTimeRange, urlToTimeRange, urlToTimeRangeValue } from "./TimeRangePicker/helpers.mjs";
|
|
40
|
+
import { AppShell } from "./AppShell/AppShell.mjs";
|
|
41
|
+
import { AppPageShell } from "./AppShell/AppPageShell.mjs";
|
|
42
|
+
import { NavMenuPortal } from "./AppShell/navbar/context/NavMenuPortal.mjs";
|
|
43
|
+
import { NavItemBase } from "./AppShell/navbar/NavItemBase.mjs";
|
|
44
|
+
import { SubNavItemBase } from "./AppShell/navbar/SubNavItemBase.mjs";
|
|
45
|
+
import { FooterNavItemBase } from "./AppShell/navbar/FooterNavItemBase.mjs";
|
|
46
|
+
import { ExpandNavbarButtonPlaceholder } from "./AppShell/navbar/ExpandNavbarButtonPlaceholder.mjs";
|
|
47
|
+
import { PageShellBaseRoot } from "./PageShellBase/PageShellBaseRoot.mjs";
|
|
48
|
+
import { PageShellBaseHeader } from "./PageShellBase/PageShellBaseHeader.mjs";
|
|
49
|
+
import { PageShellBaseTitle } from "./PageShellBase/PageShellBaseTitle.mjs";
|
|
50
|
+
import { PageShellBaseBody } from "./PageShellBase/PageShellBaseBody.mjs";
|
|
51
|
+
import { PageShellBaseBackButton } from "./PageShellBase/PageShellBaseBackButton.mjs";
|
|
39
52
|
export {
|
|
53
|
+
AppPageShell,
|
|
54
|
+
AppShell,
|
|
40
55
|
CodeBlock,
|
|
41
56
|
CopyText,
|
|
42
57
|
DEFAULT_FORM_STATE_KEY,
|
|
@@ -47,6 +62,8 @@ export {
|
|
|
47
62
|
DateTimePicker,
|
|
48
63
|
Dot,
|
|
49
64
|
DotBadge,
|
|
65
|
+
ExpandNavbarButtonPlaceholder,
|
|
66
|
+
FooterNavItemBase,
|
|
50
67
|
Form,
|
|
51
68
|
FormActions,
|
|
52
69
|
FormCheckbox,
|
|
@@ -133,12 +150,21 @@ export {
|
|
|
133
150
|
Memo_MRT_TableBody,
|
|
134
151
|
Memo_MRT_TableBodyCell,
|
|
135
152
|
Memo_MRT_TableBodyRow,
|
|
153
|
+
NavItemBase,
|
|
154
|
+
NavMenuPortal,
|
|
136
155
|
PageShell,
|
|
156
|
+
PageShellBase,
|
|
157
|
+
PageShellBaseBackButton,
|
|
158
|
+
PageShellBaseBody,
|
|
159
|
+
PageShellBaseHeader,
|
|
160
|
+
PageShellBaseRoot,
|
|
161
|
+
PageShellBaseTitle,
|
|
137
162
|
PhoneInput,
|
|
138
163
|
ProMultiSelect,
|
|
139
164
|
ProTable,
|
|
140
165
|
PropertyCard,
|
|
141
166
|
SearchArea,
|
|
167
|
+
SubNavItemBase,
|
|
142
168
|
TimePicker,
|
|
143
169
|
TimeRangePicker,
|
|
144
170
|
TransferTree,
|
|
@@ -29,7 +29,7 @@ declare module '@mantine/core' {
|
|
|
29
29
|
}
|
|
30
30
|
}
|
|
31
31
|
export type ColorScheme = 'light' | 'dark';
|
|
32
|
-
export type { AppShellProps, AppShellNavbarProps, AppShellMainProps, AppShellFooterProps, AppShellAsideProps, AppShellHeaderProps, AppShellSectionProps, AspectRatioProps, CenterProps, ContainerProps, FlexProps, GridProps, GroupProps, SimpleGridProps, SpaceProps, StackProps, CheckboxProps, CheckboxGroupProps, ChipProps, ChipGroupProps, ColorInputProps, ColorPickerProps, FieldsetProps, FileInputProps, InputProps, InputWrapperProps, InputErrorProps, InputLabelProps, InputPlaceholderProps, InputBaseProps, JsonInputProps, NativeSelectProps, PasswordInputProps, PinInputProps, RadioProps, RadioGroupProps, RadioCardProps, RatingProps, SegmentedControlProps, SegmentedControlItem, SliderProps, RangeSliderProps, SwitchProps, TextareaProps, AutocompleteProps, ComboboxProps, ComboboxItem, ComboboxData, PillProps, PillsInputProps, OptionsFilter, TagsInputProps, ActionIconProps, ButtonProps, CloseButtonProps, CopyButtonProps, FileButtonProps, UnstyledButtonProps, AnchorProps, BreadcrumbsProps, BurgerProps, NavLinkProps, PaginationProps, StepperProps, TabsProps, TreeProps, AlertProps, LoaderProps, NotificationProps, ProgressProps, RingProgressProps, SemiCircleProgressProps, SkeletonProps, AffixProps, DialogProps, DrawerProps, FloatingIndicatorProps, HoverCardProps, LoadingOverlayProps, MenuProps, ModalProps, OverlayProps, PopoverProps, TooltipProps, AccordionProps, AvatarProps, BackgroundImageProps, BadgeProps, CardProps, CardSectionProps, ColorSwatchProps, ImageProps, IndicatorProps, KbdProps, NumberFormatterProps, SpoilerProps, ThemeIconProps, TimelineProps, BlockquoteProps, CodeProps, HighlightProps, ListProps, MarkProps, TableProps, TextProps, TitleProps, TypographyStylesProviderProps, BoxProps, CollapseProps, DividerProps, FocusTrapProps, PaperProps, PortalProps, ScrollAreaProps, TransitionProps, VisuallyHiddenProps, ColorSchemeScriptProps, MantineSize, ElementProps, OptionsData } from '../node_modules/.pnpm/@mantine_core@7.15.2_patch_hash_jclkxeaefn6uz54h34k3r3yjsq_@mantine_hooks@7.15.2_react@18.3.1_sx7emryda53tomnuogmu74guza/node_modules/@mantine/core/lib';
|
|
32
|
+
export type { AppShellProps, AppShellNavbarProps, AppShellMainProps, AppShellFooterProps, AppShellAsideProps, AppShellHeaderProps, AppShellSectionProps, AspectRatioProps, CenterProps, ContainerProps, FlexProps, GridProps, GroupProps, SimpleGridProps, SpaceProps, StackProps, CheckboxProps, CheckboxGroupProps, ChipProps, ChipGroupProps, ColorInputProps, ColorPickerProps, FieldsetProps, FileInputProps, InputProps, InputWrapperProps, InputErrorProps, InputLabelProps, InputPlaceholderProps, InputBaseProps, JsonInputProps, NativeSelectProps, PasswordInputProps, PinInputProps, RadioProps, RadioGroupProps, RadioCardProps, RatingProps, SegmentedControlProps, SegmentedControlItem, SliderProps, RangeSliderProps, SwitchProps, TextareaProps, AutocompleteProps, ComboboxProps, ComboboxItem, ComboboxData, PillProps, PillsInputProps, OptionsFilter, TagsInputProps, ActionIconProps, ButtonProps, CloseButtonProps, CopyButtonProps, FileButtonProps, UnstyledButtonProps, AnchorProps, BreadcrumbsProps, BurgerProps, NavLinkProps, PaginationProps, StepperProps, TabsProps, TreeProps, AlertProps, LoaderProps, NotificationProps, ProgressProps, RingProgressProps, SemiCircleProgressProps, SkeletonProps, AffixProps, DialogProps, DrawerProps, FloatingIndicatorProps, HoverCardProps, LoadingOverlayProps, MenuProps, ModalProps, OverlayProps, PopoverProps, TooltipProps, AccordionProps, AvatarProps, BackgroundImageProps, BadgeProps, CardProps, CardSectionProps, ColorSwatchProps, ImageProps, IndicatorProps, KbdProps, NumberFormatterProps, SpoilerProps, ThemeIconProps, TimelineProps, BlockquoteProps, CodeProps, HighlightProps, ListProps, MarkProps, TableProps, TextProps, TitleProps, TypographyStylesProviderProps, BoxProps, BoxComponentProps, CollapseProps, DividerProps, FocusTrapProps, PaperProps, PortalProps, ScrollAreaProps, TransitionProps, VisuallyHiddenProps, ColorSchemeScriptProps, MantineSize, ElementProps, OptionsData } from '../node_modules/.pnpm/@mantine_core@7.15.2_patch_hash_jclkxeaefn6uz54h34k3r3yjsq_@mantine_hooks@7.15.2_react@18.3.1_sx7emryda53tomnuogmu74guza/node_modules/@mantine/core/lib';
|
|
33
33
|
export { AppShell, AspectRatio, Center, Container, Flex, Grid, Group, SimpleGrid, Space, Stack, Checkbox, Chip, ColorInput, ColorPicker, HueSlider, AlphaSlider, Fieldset, FileInput, Input, InputBase, JsonInput, NativeSelect, PasswordInput, PinInput, Radio, RadioGroup, RadioCard, Rating, SegmentedControl, Slider, RangeSlider, Switch, Textarea, Autocomplete, Combobox, Pill, PillsInput, TagsInput, ActionIcon, CloseButton, FileButton, UnstyledButton, Anchor, Breadcrumbs, Burger, NavLink, Pagination, Stepper, Tabs, Tree, Alert, Loader, Notification, Progress, RingProgress, SemiCircleProgress, Skeleton, Affix, Dialog, Drawer, FloatingIndicator, HoverCard, LoadingOverlay, Menu, Modal, Overlay, Popover, Tooltip, Accordion, Avatar, BackgroundImage, Badge, Card, ColorSwatch, Image, Indicator, Kbd, NumberFormatter, Spoiler, ThemeIcon, Timeline, Blockquote, Code, Highlight, List, Mark, Table, Text, Title, TypographyStylesProvider, Box, Collapse, Divider, FocusTrap, Paper, Portal, ScrollArea, Transition, VisuallyHidden, ColorSchemeScript, useInputProps, useMantineTheme, useCombobox, useComputedColorScheme, defaultOptionsFilter, getOptionsLockup, getParsedComboboxData, isOptionsGroup, useProps } from '../node_modules/.pnpm/@mantine_core@7.15.2_patch_hash_jclkxeaefn6uz54h34k3r3yjsq_@mantine_hooks@7.15.2_react@18.3.1_sx7emryda53tomnuogmu74guza/node_modules/@mantine/core/lib';
|
|
34
34
|
export { useColorScheme } from '../hooks/useColorScheme.cjs';
|
|
35
35
|
export { TextInput, type TextInputProps } from './TextInput/index.cjs';
|
|
@@ -29,7 +29,7 @@ declare module '@mantine/core' {
|
|
|
29
29
|
}
|
|
30
30
|
}
|
|
31
31
|
export type ColorScheme = 'light' | 'dark';
|
|
32
|
-
export type { AppShellProps, AppShellNavbarProps, AppShellMainProps, AppShellFooterProps, AppShellAsideProps, AppShellHeaderProps, AppShellSectionProps, AspectRatioProps, CenterProps, ContainerProps, FlexProps, GridProps, GroupProps, SimpleGridProps, SpaceProps, StackProps, CheckboxProps, CheckboxGroupProps, ChipProps, ChipGroupProps, ColorInputProps, ColorPickerProps, FieldsetProps, FileInputProps, InputProps, InputWrapperProps, InputErrorProps, InputLabelProps, InputPlaceholderProps, InputBaseProps, JsonInputProps, NativeSelectProps, PasswordInputProps, PinInputProps, RadioProps, RadioGroupProps, RadioCardProps, RatingProps, SegmentedControlProps, SegmentedControlItem, SliderProps, RangeSliderProps, SwitchProps, TextareaProps, AutocompleteProps, ComboboxProps, ComboboxItem, ComboboxData, PillProps, PillsInputProps, OptionsFilter, TagsInputProps, ActionIconProps, ButtonProps, CloseButtonProps, CopyButtonProps, FileButtonProps, UnstyledButtonProps, AnchorProps, BreadcrumbsProps, BurgerProps, NavLinkProps, PaginationProps, StepperProps, TabsProps, TreeProps, AlertProps, LoaderProps, NotificationProps, ProgressProps, RingProgressProps, SemiCircleProgressProps, SkeletonProps, AffixProps, DialogProps, DrawerProps, FloatingIndicatorProps, HoverCardProps, LoadingOverlayProps, MenuProps, ModalProps, OverlayProps, PopoverProps, TooltipProps, AccordionProps, AvatarProps, BackgroundImageProps, BadgeProps, CardProps, CardSectionProps, ColorSwatchProps, ImageProps, IndicatorProps, KbdProps, NumberFormatterProps, SpoilerProps, ThemeIconProps, TimelineProps, BlockquoteProps, CodeProps, HighlightProps, ListProps, MarkProps, TableProps, TextProps, TitleProps, TypographyStylesProviderProps, BoxProps, CollapseProps, DividerProps, FocusTrapProps, PaperProps, PortalProps, ScrollAreaProps, TransitionProps, VisuallyHiddenProps, ColorSchemeScriptProps, MantineSize, ElementProps, OptionsData } from '../node_modules/.pnpm/@mantine_core@7.15.2_patch_hash_jclkxeaefn6uz54h34k3r3yjsq_@mantine_hooks@7.15.2_react@18.3.1_sx7emryda53tomnuogmu74guza/node_modules/@mantine/core/lib';
|
|
32
|
+
export type { AppShellProps, AppShellNavbarProps, AppShellMainProps, AppShellFooterProps, AppShellAsideProps, AppShellHeaderProps, AppShellSectionProps, AspectRatioProps, CenterProps, ContainerProps, FlexProps, GridProps, GroupProps, SimpleGridProps, SpaceProps, StackProps, CheckboxProps, CheckboxGroupProps, ChipProps, ChipGroupProps, ColorInputProps, ColorPickerProps, FieldsetProps, FileInputProps, InputProps, InputWrapperProps, InputErrorProps, InputLabelProps, InputPlaceholderProps, InputBaseProps, JsonInputProps, NativeSelectProps, PasswordInputProps, PinInputProps, RadioProps, RadioGroupProps, RadioCardProps, RatingProps, SegmentedControlProps, SegmentedControlItem, SliderProps, RangeSliderProps, SwitchProps, TextareaProps, AutocompleteProps, ComboboxProps, ComboboxItem, ComboboxData, PillProps, PillsInputProps, OptionsFilter, TagsInputProps, ActionIconProps, ButtonProps, CloseButtonProps, CopyButtonProps, FileButtonProps, UnstyledButtonProps, AnchorProps, BreadcrumbsProps, BurgerProps, NavLinkProps, PaginationProps, StepperProps, TabsProps, TreeProps, AlertProps, LoaderProps, NotificationProps, ProgressProps, RingProgressProps, SemiCircleProgressProps, SkeletonProps, AffixProps, DialogProps, DrawerProps, FloatingIndicatorProps, HoverCardProps, LoadingOverlayProps, MenuProps, ModalProps, OverlayProps, PopoverProps, TooltipProps, AccordionProps, AvatarProps, BackgroundImageProps, BadgeProps, CardProps, CardSectionProps, ColorSwatchProps, ImageProps, IndicatorProps, KbdProps, NumberFormatterProps, SpoilerProps, ThemeIconProps, TimelineProps, BlockquoteProps, CodeProps, HighlightProps, ListProps, MarkProps, TableProps, TextProps, TitleProps, TypographyStylesProviderProps, BoxProps, BoxComponentProps, CollapseProps, DividerProps, FocusTrapProps, PaperProps, PortalProps, ScrollAreaProps, TransitionProps, VisuallyHiddenProps, ColorSchemeScriptProps, MantineSize, ElementProps, OptionsData } from '../node_modules/.pnpm/@mantine_core@7.15.2_patch_hash_jclkxeaefn6uz54h34k3r3yjsq_@mantine_hooks@7.15.2_react@18.3.1_sx7emryda53tomnuogmu74guza/node_modules/@mantine/core/lib';
|
|
33
33
|
export { AppShell, AspectRatio, Center, Container, Flex, Grid, Group, SimpleGrid, Space, Stack, Checkbox, Chip, ColorInput, ColorPicker, HueSlider, AlphaSlider, Fieldset, FileInput, Input, InputBase, JsonInput, NativeSelect, PasswordInput, PinInput, Radio, RadioGroup, RadioCard, Rating, SegmentedControl, Slider, RangeSlider, Switch, Textarea, Autocomplete, Combobox, Pill, PillsInput, TagsInput, ActionIcon, CloseButton, FileButton, UnstyledButton, Anchor, Breadcrumbs, Burger, NavLink, Pagination, Stepper, Tabs, Tree, Alert, Loader, Notification, Progress, RingProgress, SemiCircleProgress, Skeleton, Affix, Dialog, Drawer, FloatingIndicator, HoverCard, LoadingOverlay, Menu, Modal, Overlay, Popover, Tooltip, Accordion, Avatar, BackgroundImage, Badge, Card, ColorSwatch, Image, Indicator, Kbd, NumberFormatter, Spoiler, ThemeIcon, Timeline, Blockquote, Code, Highlight, List, Mark, Table, Text, Title, TypographyStylesProvider, Box, Collapse, Divider, FocusTrap, Paper, Portal, ScrollArea, Transition, VisuallyHidden, ColorSchemeScript, useInputProps, useMantineTheme, useCombobox, useComputedColorScheme, defaultOptionsFilter, getOptionsLockup, getParsedComboboxData, isOptionsGroup, useProps } from '../node_modules/.pnpm/@mantine_core@7.15.2_patch_hash_jclkxeaefn6uz54h34k3r3yjsq_@mantine_hooks@7.15.2_react@18.3.1_sx7emryda53tomnuogmu74guza/node_modules/@mantine/core/lib';
|
|
34
34
|
export { useColorScheme } from '../hooks/useColorScheme.mjs';
|
|
35
35
|
export { TextInput, type TextInputProps } from './TextInput/index.mjs';
|
package/dist/theme/theme.cjs
CHANGED
|
@@ -413,7 +413,8 @@ const theme = createTheme.createTheme({
|
|
|
413
413
|
},
|
|
414
414
|
NavLink: {
|
|
415
415
|
defaultProps: {
|
|
416
|
-
px:
|
|
416
|
+
px: 8,
|
|
417
|
+
py: 4,
|
|
417
418
|
lh: 1.5,
|
|
418
419
|
fw: 500,
|
|
419
420
|
variant: "light",
|
|
@@ -430,7 +431,7 @@ const theme = createTheme.createTheme({
|
|
|
430
431
|
color: withThemeColor(8),
|
|
431
432
|
"&:hover": {
|
|
432
433
|
color: withThemeColor(8),
|
|
433
|
-
backgroundColor: withThemeColor(
|
|
434
|
+
backgroundColor: withThemeColor(3)
|
|
434
435
|
},
|
|
435
436
|
"&:active": {
|
|
436
437
|
color: withThemeColor(8),
|
|
@@ -457,6 +458,27 @@ const theme = createTheme.createTheme({
|
|
|
457
458
|
},
|
|
458
459
|
label: {
|
|
459
460
|
lineHeight: "24px"
|
|
461
|
+
},
|
|
462
|
+
section: {
|
|
463
|
+
'&:where([data-position="left"])': {
|
|
464
|
+
marginInlineEnd: 8
|
|
465
|
+
},
|
|
466
|
+
'&:where([data-position="right"])': {
|
|
467
|
+
marginInlineStart: 8
|
|
468
|
+
}
|
|
469
|
+
},
|
|
470
|
+
collapse: {
|
|
471
|
+
position: "relative",
|
|
472
|
+
"&::before": {
|
|
473
|
+
content: '""',
|
|
474
|
+
display: "block",
|
|
475
|
+
position: "absolute",
|
|
476
|
+
left: 16,
|
|
477
|
+
top: 0,
|
|
478
|
+
width: 1,
|
|
479
|
+
height: "100%",
|
|
480
|
+
backgroundColor: withThemeColor(4)
|
|
481
|
+
}
|
|
460
482
|
}
|
|
461
483
|
};
|
|
462
484
|
}
|
|
@@ -1190,6 +1212,24 @@ const theme = createTheme.createTheme({
|
|
|
1190
1212
|
withArrow: true,
|
|
1191
1213
|
shadow: "md"
|
|
1192
1214
|
}
|
|
1215
|
+
},
|
|
1216
|
+
Accordion: {
|
|
1217
|
+
styles: (theme2, props) => {
|
|
1218
|
+
if (props.variant === "contained") {
|
|
1219
|
+
return {
|
|
1220
|
+
item: {
|
|
1221
|
+
"--item-border-color": themeColor(theme2, "carbon", 4),
|
|
1222
|
+
"--item-filled-color": "inherit"
|
|
1223
|
+
},
|
|
1224
|
+
control: {
|
|
1225
|
+
"&:hover": {
|
|
1226
|
+
backgroundColor: "inherit"
|
|
1227
|
+
}
|
|
1228
|
+
}
|
|
1229
|
+
};
|
|
1230
|
+
}
|
|
1231
|
+
return {};
|
|
1232
|
+
}
|
|
1193
1233
|
}
|
|
1194
1234
|
}
|
|
1195
1235
|
});
|
package/dist/theme/theme.mjs
CHANGED
|
@@ -411,7 +411,8 @@ const theme = createTheme({
|
|
|
411
411
|
},
|
|
412
412
|
NavLink: {
|
|
413
413
|
defaultProps: {
|
|
414
|
-
px:
|
|
414
|
+
px: 8,
|
|
415
|
+
py: 4,
|
|
415
416
|
lh: 1.5,
|
|
416
417
|
fw: 500,
|
|
417
418
|
variant: "light",
|
|
@@ -428,7 +429,7 @@ const theme = createTheme({
|
|
|
428
429
|
color: withThemeColor(8),
|
|
429
430
|
"&:hover": {
|
|
430
431
|
color: withThemeColor(8),
|
|
431
|
-
backgroundColor: withThemeColor(
|
|
432
|
+
backgroundColor: withThemeColor(3)
|
|
432
433
|
},
|
|
433
434
|
"&:active": {
|
|
434
435
|
color: withThemeColor(8),
|
|
@@ -455,6 +456,27 @@ const theme = createTheme({
|
|
|
455
456
|
},
|
|
456
457
|
label: {
|
|
457
458
|
lineHeight: "24px"
|
|
459
|
+
},
|
|
460
|
+
section: {
|
|
461
|
+
'&:where([data-position="left"])': {
|
|
462
|
+
marginInlineEnd: 8
|
|
463
|
+
},
|
|
464
|
+
'&:where([data-position="right"])': {
|
|
465
|
+
marginInlineStart: 8
|
|
466
|
+
}
|
|
467
|
+
},
|
|
468
|
+
collapse: {
|
|
469
|
+
position: "relative",
|
|
470
|
+
"&::before": {
|
|
471
|
+
content: '""',
|
|
472
|
+
display: "block",
|
|
473
|
+
position: "absolute",
|
|
474
|
+
left: 16,
|
|
475
|
+
top: 0,
|
|
476
|
+
width: 1,
|
|
477
|
+
height: "100%",
|
|
478
|
+
backgroundColor: withThemeColor(4)
|
|
479
|
+
}
|
|
458
480
|
}
|
|
459
481
|
};
|
|
460
482
|
}
|
|
@@ -1188,6 +1210,24 @@ const theme = createTheme({
|
|
|
1188
1210
|
withArrow: true,
|
|
1189
1211
|
shadow: "md"
|
|
1190
1212
|
}
|
|
1213
|
+
},
|
|
1214
|
+
Accordion: {
|
|
1215
|
+
styles: (theme2, props) => {
|
|
1216
|
+
if (props.variant === "contained") {
|
|
1217
|
+
return {
|
|
1218
|
+
item: {
|
|
1219
|
+
"--item-border-color": themeColor(theme2, "carbon", 4),
|
|
1220
|
+
"--item-filled-color": "inherit"
|
|
1221
|
+
},
|
|
1222
|
+
control: {
|
|
1223
|
+
"&:hover": {
|
|
1224
|
+
backgroundColor: "inherit"
|
|
1225
|
+
}
|
|
1226
|
+
}
|
|
1227
|
+
};
|
|
1228
|
+
}
|
|
1229
|
+
return {};
|
|
1230
|
+
}
|
|
1191
1231
|
}
|
|
1192
1232
|
}
|
|
1193
1233
|
});
|