@nice2dev/ui 1.0.18 → 1.0.19
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 +64 -0
- package/dist/NiceErrorBoundary-DBCCmeyl.js +770 -0
- package/dist/NiceErrorBoundary-V6wkSSLP.cjs +1 -0
- package/dist/NiceForm-DLADlHAQ.js +5383 -0
- package/dist/NiceForm-DUkduLqG.cjs +382 -0
- package/dist/NiceForm.css +1 -1
- package/dist/NiceModal-CUdeVj-j.js +95 -0
- package/dist/NiceModal-Cc8R-DpX.cjs +1 -0
- package/dist/NiceModuleLifecyclePanel-4UEsYB5r.js +6553 -0
- package/dist/NiceModuleLifecyclePanel-C6agdtTI.cjs +1 -0
- package/dist/NiceModuleLifecyclePanel.css +1 -1
- package/dist/NicePagination-Cqr3Pe_F.js +171 -0
- package/dist/NicePagination-DyWWdtb3.cjs +1 -0
- package/dist/NicePinCodeInput-C6zJxUVf.cjs +419 -0
- package/dist/NicePinCodeInput-ltwzQf4r.js +12240 -0
- package/dist/NicePinCodeInput.css +1 -1
- package/dist/NiceSavedQueryPanel-BIXW0y1X.js +6455 -0
- package/dist/NiceSavedQueryPanel-CFHwMDIx.cjs +596 -0
- package/dist/NiceSavedQueryPanel.css +1 -1
- package/dist/NiceTabs-B9zxj6qd.js +1657 -0
- package/dist/NiceTabs-CNauJ4fu.cjs +1 -0
- package/dist/NiceWindow-Bo_yCa1o.js +1418 -0
- package/dist/NiceWindow-DPzJxOfx.cjs +1 -0
- package/dist/charts-C60va95_.js +4657 -0
- package/dist/charts-D_I1iwel.cjs +761 -0
- package/dist/charts.cjs +1 -1
- package/dist/charts.css +1 -1
- package/dist/charts.mjs +1 -1
- package/dist/core-Bcc4sz15.cjs +96 -0
- package/dist/core-Da1dGJN3.js +22401 -0
- package/dist/data.cjs +1 -1
- package/dist/data.d.ts +5 -0
- package/dist/data.mjs +1 -1
- package/dist/editors.cjs +1 -1
- package/dist/editors.d.ts +44 -1
- package/dist/editors.mjs +3 -3
- package/dist/feedback.cjs +1 -1
- package/dist/feedback.mjs +2 -2
- package/dist/index-DCDfWfAt.js +64336 -0
- package/dist/index-DpiCo0_e.cjs +5194 -0
- package/dist/index.cjs +1 -1
- package/dist/index.css +1 -1
- package/dist/index.d.ts +166 -3
- package/dist/index.mjs +47 -47
- package/dist/lazy.cjs +1 -1
- package/dist/lazy.mjs +3 -3
- package/dist/navigation.cjs +1 -1
- package/dist/navigation.d.ts +15 -1
- package/dist/navigation.mjs +30 -30
- package/dist/overlays.cjs +1 -1
- package/dist/overlays.mjs +53 -53
- package/dist/style.css +6 -6
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -9035,6 +9035,29 @@ export declare interface NiceColorPaletteProps extends NiceBaseProps {
|
|
|
9035
9035
|
label?: string;
|
|
9036
9036
|
/** Disabled state */
|
|
9037
9037
|
disabled?: boolean;
|
|
9038
|
+
/**
|
|
9039
|
+
* Target number of colors in the generated palette. Overrides the natural
|
|
9040
|
+
* count of the active harmony mode (clamped between `minColors` and
|
|
9041
|
+
* `maxColors`). When omitted, the harmony's natural angle count is used.
|
|
9042
|
+
*/
|
|
9043
|
+
colorCount?: number;
|
|
9044
|
+
/**
|
|
9045
|
+
* Step size (HSV value delta) between adjacent colors in the `shade-chain`
|
|
9046
|
+
* mode. Default 0.12.
|
|
9047
|
+
*/
|
|
9048
|
+
shadeStep?: number;
|
|
9049
|
+
/** Called when the user changes the shade step via the in-component control. */
|
|
9050
|
+
onShadeStepChange?: (step: number) => void;
|
|
9051
|
+
/**
|
|
9052
|
+
* Custom harmony schemes. Appended to the built-in mode list in the
|
|
9053
|
+
* selector and persisted via `localStorage` when `persistCustomSchemes`
|
|
9054
|
+
* is true.
|
|
9055
|
+
*/
|
|
9056
|
+
customSchemes?: NiceCustomHarmonyScheme[];
|
|
9057
|
+
/** Called when the user edits the custom-schemes list. */
|
|
9058
|
+
onCustomSchemesChange?: (schemes: NiceCustomHarmonyScheme[]) => void;
|
|
9059
|
+
/** Persist custom schemes to `localStorage["nice-palette-custom-schemes"]`. Default true. */
|
|
9060
|
+
persistCustomSchemes?: boolean;
|
|
9038
9061
|
}
|
|
9039
9062
|
|
|
9040
9063
|
export declare const NiceColorPicker: default_2.ForwardRefExoticComponent<NiceColorPickerProps & default_2.RefAttributes<HTMLInputElement>>;
|
|
@@ -9936,6 +9959,12 @@ export declare interface NiceCountryPickerProps extends NiceFormFieldProps, Dual
|
|
|
9936
9959
|
* false (except flag) and ignoring `controlWidth`. Default: false.
|
|
9937
9960
|
*/
|
|
9938
9961
|
compact?: boolean;
|
|
9962
|
+
/**
|
|
9963
|
+
* Visual variant. `'ghost'` removes border, background and the dropdown
|
|
9964
|
+
* arrow — only the flag/icon is shown. Designed for dense toolbars
|
|
9965
|
+
* (e.g. NiceTopNav narrow mode). Default: `'default'`.
|
|
9966
|
+
*/
|
|
9967
|
+
variant?: 'default' | 'ghost';
|
|
9939
9968
|
/**
|
|
9940
9969
|
* Dropdown horizontal alignment relative to the trigger. `'auto'` picks
|
|
9941
9970
|
* the side with more available viewport space (right-edge preferred).
|
|
@@ -10105,6 +10134,15 @@ export { NiceCursorPaginationConfig }
|
|
|
10105
10134
|
|
|
10106
10135
|
export { NiceCustomDataSourceHandlers }
|
|
10107
10136
|
|
|
10137
|
+
/** A user-defined harmony scheme (hue angles + optional lightness offsets). */
|
|
10138
|
+
declare interface NiceCustomHarmonyScheme {
|
|
10139
|
+
id: string;
|
|
10140
|
+
name: string;
|
|
10141
|
+
angles: number[];
|
|
10142
|
+
/** Optional per-color lightness deltas applied on top of preset/base V. */
|
|
10143
|
+
lightnessOffsets?: number[];
|
|
10144
|
+
}
|
|
10145
|
+
|
|
10108
10146
|
export declare const NiceDashboardLayout: default_2.ForwardRefExoticComponent<NiceDashboardLayoutProps & default_2.RefAttributes<HTMLDivElement>>;
|
|
10109
10147
|
|
|
10110
10148
|
/** Props for the {@link NiceDashboardLayout} component — a CSS-grid dashboard with draggable, resizable panels. */
|
|
@@ -10838,6 +10876,8 @@ export declare interface NiceDisplayStylePickerProps extends NiceBaseProps {
|
|
|
10838
10876
|
label?: string;
|
|
10839
10877
|
/** Filter to show only specific styles. */
|
|
10840
10878
|
styles?: NiceDisplayStyle[];
|
|
10879
|
+
/** Compact mode — forces dropdown layout for tight spaces. */
|
|
10880
|
+
compact?: boolean;
|
|
10841
10881
|
}
|
|
10842
10882
|
|
|
10843
10883
|
export declare const NiceDivider: default_2.FC<NiceDividerProps>;
|
|
@@ -12815,7 +12855,7 @@ export declare interface NiceGradientValue {
|
|
|
12815
12855
|
|
|
12816
12856
|
export { NiceGraphQLConfig }
|
|
12817
12857
|
|
|
12818
|
-
export declare type NiceHarmonyMode = 'monochromatic' | 'complementary' | 'split-complementary' | 'analogous' | 'triadic' | 'tetradic' | 'square' | 'custom';
|
|
12858
|
+
export declare type NiceHarmonyMode = 'monochromatic' | 'complementary' | 'split-complementary' | 'analogous' | 'triadic' | 'tetradic' | 'square' | 'shade-chain' | 'custom';
|
|
12819
12859
|
|
|
12820
12860
|
/**
|
|
12821
12861
|
* Semantic heading with decoupled visual scale. Renders the correct
|
|
@@ -13704,6 +13744,12 @@ export declare interface NiceLanguagePickerProps extends NiceFormFieldProps, Dua
|
|
|
13704
13744
|
* dropdown alignment. Default: false.
|
|
13705
13745
|
*/
|
|
13706
13746
|
compact?: boolean;
|
|
13747
|
+
/**
|
|
13748
|
+
* Visual variant. `'ghost'` removes border, background and the dropdown
|
|
13749
|
+
* arrow — only the flag is shown. Designed for dense toolbars
|
|
13750
|
+
* (e.g. NiceTopNav narrow mode). Default: `'default'`.
|
|
13751
|
+
*/
|
|
13752
|
+
variant?: 'default' | 'ghost';
|
|
13707
13753
|
/**
|
|
13708
13754
|
* Dropdown horizontal alignment relative to trigger. `'auto'` picks the
|
|
13709
13755
|
* side with more available viewport space. Default: `'auto'` in compact
|
|
@@ -14944,6 +14990,12 @@ export declare interface NiceMenuProps extends NiceBaseProps {
|
|
|
14944
14990
|
renderTriggerLabel?: (item: NiceMenuItem) => default_2.ReactNode;
|
|
14945
14991
|
/** Optional renderer for panel-entry label. */
|
|
14946
14992
|
renderEntryLabel?: (item: NiceMenuItem) => default_2.ReactNode;
|
|
14993
|
+
/**
|
|
14994
|
+
* Maximum depth of nested flyouts rendered. `1` = top-level only, `2` = level-1 panel,
|
|
14995
|
+
* `3` = level-2 subpanel (default — preserves legacy behavior), up to `10`. Items with
|
|
14996
|
+
* `children` beyond this depth are rendered as leaves (no flyout arrow, no hover-open).
|
|
14997
|
+
*/
|
|
14998
|
+
maxDepth?: number;
|
|
14947
14999
|
}
|
|
14948
15000
|
|
|
14949
15001
|
/**
|
|
@@ -15615,6 +15667,11 @@ export declare const NiceNavShell: ForwardRefExoticComponent<NiceNavShellProps &
|
|
|
15615
15667
|
export declare interface NiceNavShellApi {
|
|
15616
15668
|
activeRoute: string | undefined;
|
|
15617
15669
|
tabs: NiceNavShellTab[];
|
|
15670
|
+
/** True when the shell is in narrow/mobile layout (viewport ≤ `mobileBreakpoint`
|
|
15671
|
+
* or `forceMobileLayout`). Render-prop slot consumers should forward this to
|
|
15672
|
+
* any embedded `NiceTopNav` (`forceMobileLayout={isMobile}`) so the hamburger
|
|
15673
|
+
* switch happens at the same width the sidebar disappears. */
|
|
15674
|
+
isMobile: boolean;
|
|
15618
15675
|
openRoute: (route: string, opts?: Partial<NiceNavShellTab>) => void;
|
|
15619
15676
|
closeTab: (id: string) => void;
|
|
15620
15677
|
closeOthers: (id: string) => void;
|
|
@@ -15638,6 +15695,31 @@ export declare interface NiceNavShellProps {
|
|
|
15638
15695
|
topNavProps?: NiceTopNavProps;
|
|
15639
15696
|
/** Sidebar navigation slot. */
|
|
15640
15697
|
sidebar?: Slot;
|
|
15698
|
+
/**
|
|
15699
|
+
* Shared navigation model. When provided, the shell renders an internal
|
|
15700
|
+
* `NiceSidebarNav` in the sidebar slot (unless an explicit `sidebar` slot
|
|
15701
|
+
* is given) AND forwards the same model to the embedded mobile hamburger
|
|
15702
|
+
* inside `NiceTopNav`. This guarantees one source of truth for both layouts.
|
|
15703
|
+
*/
|
|
15704
|
+
sidebarData?: SidebarNavDataNode[];
|
|
15705
|
+
/** User id forwarded to NiceSidebarNav (preferences scope). */
|
|
15706
|
+
sidebarUserId?: string;
|
|
15707
|
+
/** Active route highlighted in the sidebar (defaults to `activeRoute`). */
|
|
15708
|
+
sidebarActiveRoute?: string;
|
|
15709
|
+
/** Fired when a view is clicked anywhere in the sidebar (desktop or mobile). */
|
|
15710
|
+
onSidebarNavigate?: (route: string, view: SidebarNavView) => void;
|
|
15711
|
+
/**
|
|
15712
|
+
* Viewport breakpoint (px). At or below this width, the desktop sidebar is
|
|
15713
|
+
* hidden and the navigation is delegated to the top-nav hamburger drawer
|
|
15714
|
+
* (which uses the same `sidebarData`). Default `720` — matches
|
|
15715
|
+
* `NiceTopNav`'s own `mobileBreakpoint` so the sidebar disappears at the
|
|
15716
|
+
* exact same width the hamburger appears (no dead zone where neither is
|
|
15717
|
+
* visible). Override on BOTH components together if you need a different
|
|
15718
|
+
* value.
|
|
15719
|
+
*/
|
|
15720
|
+
mobileBreakpoint?: number;
|
|
15721
|
+
/** Force the shell into the mobile layout regardless of viewport. */
|
|
15722
|
+
forceMobileLayout?: boolean;
|
|
15641
15723
|
/** Map of route → content (ReactNode or factory). */
|
|
15642
15724
|
routes: Record<string, ReactNode | (() => ReactNode)>;
|
|
15643
15725
|
/** Initial / default route (used when uncontrolled). */
|
|
@@ -15890,6 +15972,12 @@ export declare interface NiceNotificationsProps {
|
|
|
15890
15972
|
badgeMax?: number;
|
|
15891
15973
|
/** Size variant of the trigger. */
|
|
15892
15974
|
size?: 'sm' | 'md' | 'lg';
|
|
15975
|
+
/**
|
|
15976
|
+
* Visual variant. `'ghost'` removes border, background and hover-border
|
|
15977
|
+
* — only the bell icon (with badge) is shown. Designed for dense toolbars
|
|
15978
|
+
* (e.g. NiceTopNav narrow mode). Default: `'default'`.
|
|
15979
|
+
*/
|
|
15980
|
+
variant?: 'default' | 'ghost';
|
|
15893
15981
|
className?: string;
|
|
15894
15982
|
style?: default_2.CSSProperties;
|
|
15895
15983
|
id?: string;
|
|
@@ -18929,6 +19017,14 @@ export declare interface NiceSidebarNavProps {
|
|
|
18929
19017
|
* Default `false`.
|
|
18930
19018
|
*/
|
|
18931
19019
|
minimal?: boolean;
|
|
19020
|
+
/**
|
|
19021
|
+
* **Embedded mode** — render the sidebar inside another container (e.g. a
|
|
19022
|
+
* mobile drawer / hamburger menu). Forces full width, drops the footer with
|
|
19023
|
+
* the collapse-btn (there is nothing to collapse to inside a drawer) and
|
|
19024
|
+
* ignores `collapsed` / `width` / `collapsedWidth`. The mode strip and the
|
|
19025
|
+
* full navigation tree stay intact. Default `false`.
|
|
19026
|
+
*/
|
|
19027
|
+
embedded?: boolean;
|
|
18932
19028
|
/** Optional header slot rendered above the mode strip / tree (e.g. workspace switcher). */
|
|
18933
19029
|
header?: ReactNode;
|
|
18934
19030
|
/** Optional footer slot rendered below the standard footer-toggle row. */
|
|
@@ -20355,10 +20451,14 @@ export declare interface NiceThemeBuilderProps extends NiceBaseProps {
|
|
|
20355
20451
|
livePreview?: boolean;
|
|
20356
20452
|
/** Currently focused token from NiceThemePreview (auto-switches section + scrolls) */
|
|
20357
20453
|
focusedToken?: string;
|
|
20454
|
+
/** Show the embedded NiceThemePreview pane (default: true) */
|
|
20455
|
+
showPreview?: boolean;
|
|
20456
|
+
/** Layout placement of the preview pane (default: 'right') */
|
|
20457
|
+
previewPlacement?: 'right' | 'bottom';
|
|
20358
20458
|
}
|
|
20359
20459
|
|
|
20360
20460
|
/** Editable sections in the {@link NiceThemeBuilder}. */
|
|
20361
|
-
export declare type NiceThemeBuilderSection = 'general' | 'colors' | 'backgrounds' | 'background-image' | 'text' | 'borders' | 'spacing' | 'typography' | 'shadows' | 'transitions';
|
|
20461
|
+
export declare type NiceThemeBuilderSection = 'general' | 'colors' | 'backgrounds' | 'background-image' | 'text' | 'borders' | 'spacing' | 'typography' | 'shadows' | 'transitions' | 'nesting';
|
|
20362
20462
|
|
|
20363
20463
|
export { NiceThemeColors }
|
|
20364
20464
|
|
|
@@ -20507,6 +20607,12 @@ export declare interface NiceThemePickerProps extends NiceFormFieldProps, DualVi
|
|
|
20507
20607
|
* dropdown alignment. Default: false.
|
|
20508
20608
|
*/
|
|
20509
20609
|
compact?: boolean;
|
|
20610
|
+
/**
|
|
20611
|
+
* Visual variant. `'ghost'` removes border, background and the dropdown
|
|
20612
|
+
* arrow — only the preview swatch is shown. Designed for dense toolbars
|
|
20613
|
+
* (e.g. NiceTopNav narrow mode). Default: `'default'`.
|
|
20614
|
+
*/
|
|
20615
|
+
variant?: 'default' | 'ghost';
|
|
20510
20616
|
/** Dropdown horizontal alignment. Default: `'auto'` in compact, `'left'` otherwise. */
|
|
20511
20617
|
dropdownAlign?: DropdownAlign;
|
|
20512
20618
|
/**
|
|
@@ -21065,6 +21171,33 @@ export declare interface NiceTopNavProps {
|
|
|
21065
21171
|
userMenu?: NiceTopNavMenuItem[];
|
|
21066
21172
|
onProfile?: () => void;
|
|
21067
21173
|
onLogout?: () => void;
|
|
21174
|
+
/**
|
|
21175
|
+
* Whether to render the workspace `<select>` row above the navigation tree
|
|
21176
|
+
* in the hamburger pull-down panel. Visibility is ALWAYS prop-controlled
|
|
21177
|
+
* (not auto-derived from `mobilePanels.length`) — consumers decide when it
|
|
21178
|
+
* makes sense to show it. Requires signed-in `user`. Default: `false`.
|
|
21179
|
+
*/
|
|
21180
|
+
showMobilePanelSelector?: boolean;
|
|
21181
|
+
/** List of panels/workspaces the user has access to. */
|
|
21182
|
+
mobilePanels?: Array<{
|
|
21183
|
+
id: string;
|
|
21184
|
+
label: string;
|
|
21185
|
+
icon?: default_2.ReactNode;
|
|
21186
|
+
}>;
|
|
21187
|
+
/** Currently active panel id (controls the workspace `<select>` value). */
|
|
21188
|
+
activeMobilePanelId?: string;
|
|
21189
|
+
/** Notified when user picks a different panel from the workspace selector. */
|
|
21190
|
+
onMobilePanelChange?: (id: string) => void;
|
|
21191
|
+
/**
|
|
21192
|
+
* Render a mode toolbar (favorites / all / …) row above the navigation
|
|
21193
|
+
* in the hamburger pull-down panel. Requires signed-in `user`. NOTE: when
|
|
21194
|
+
* panel renders `<NiceSidebarNav embedded enableModeIcons>` (i.e. you
|
|
21195
|
+
* pass `sidebarData`), the sidebar already has its own mode strip — leave
|
|
21196
|
+
* this `false` for that branch to avoid a duplicate bar. Default: `false`.
|
|
21197
|
+
*/
|
|
21198
|
+
showMobilePanelModes?: boolean;
|
|
21199
|
+
/** Optional custom mode toolbar; replaces the default cosmetic pills. */
|
|
21200
|
+
mobilePanelModes?: default_2.ReactNode;
|
|
21068
21201
|
showLogin?: boolean;
|
|
21069
21202
|
loginLabel?: string;
|
|
21070
21203
|
onLoginClick?: () => void;
|
|
@@ -21098,6 +21231,26 @@ export declare interface NiceTopNavProps {
|
|
|
21098
21231
|
rightClusterDefaultOpen?: boolean;
|
|
21099
21232
|
leftContent?: default_2.ReactNode;
|
|
21100
21233
|
rightContent?: default_2.ReactNode;
|
|
21234
|
+
/**
|
|
21235
|
+
* Full navigation data shared with `NiceSidebarNav`. When provided, the
|
|
21236
|
+
* hamburger drawer renders an embedded `NiceSidebarNav` (full mode strip +
|
|
21237
|
+
* multi-level tree + search/favorites/preferences) instead of the legacy
|
|
21238
|
+
* flat menu. Lets a parent shell drive both the desktop sidebar and the
|
|
21239
|
+
* mobile hamburger from one model.
|
|
21240
|
+
*/
|
|
21241
|
+
sidebarData?: SidebarNavDataNode[];
|
|
21242
|
+
/** User id forwarded to the embedded `NiceSidebarNav` (preferences scope). */
|
|
21243
|
+
sidebarUserId?: string;
|
|
21244
|
+
/** Active route highlighted in the mobile sidebar drawer. */
|
|
21245
|
+
sidebarActiveRoute?: string;
|
|
21246
|
+
/** Fired when a view is clicked in the mobile sidebar drawer. Closes the drawer. */
|
|
21247
|
+
onSidebarNavigate?: (route: string, view: SidebarNavView) => void;
|
|
21248
|
+
/**
|
|
21249
|
+
* Force the narrow "2-row" mobile layout regardless of viewport width. Use
|
|
21250
|
+
* from `NiceNavShell` to keep the breakpoint decision in one place when the
|
|
21251
|
+
* shell already hides the sidebar.
|
|
21252
|
+
*/
|
|
21253
|
+
forceMobileLayout?: boolean;
|
|
21101
21254
|
className?: string;
|
|
21102
21255
|
style?: default_2.CSSProperties;
|
|
21103
21256
|
id?: string;
|
|
@@ -21381,6 +21534,11 @@ export declare interface NiceTreeSelectProps extends NiceFormFieldProps {
|
|
|
21381
21534
|
/** Only allow selection of leaf nodes */
|
|
21382
21535
|
selectableLeafsOnly?: boolean;
|
|
21383
21536
|
clearable?: boolean;
|
|
21537
|
+
/**
|
|
21538
|
+
* Maximum nesting depth rendered (1..10). Beyond this, nodes are treated as
|
|
21539
|
+
* leaves (children not rendered, no expand toggle). Default: unlimited.
|
|
21540
|
+
*/
|
|
21541
|
+
maxDepth?: number;
|
|
21384
21542
|
}
|
|
21385
21543
|
|
|
21386
21544
|
export declare const NiceTreeView: default_2.FC<NiceTreeViewProps>;
|
|
@@ -21427,6 +21585,11 @@ export declare interface NiceTreeViewProps extends NiceBaseProps {
|
|
|
21427
21585
|
editable?: boolean;
|
|
21428
21586
|
/** Called when a node label is edited. */
|
|
21429
21587
|
onNodeEdit?: (key: string, newText: string) => void;
|
|
21588
|
+
/**
|
|
21589
|
+
* Maximum nesting depth rendered (1..10). Beyond this, nodes are treated as
|
|
21590
|
+
* leaves (children not rendered, no expand toggle). Default: unlimited.
|
|
21591
|
+
*/
|
|
21592
|
+
maxDepth?: number;
|
|
21430
21593
|
}
|
|
21431
21594
|
|
|
21432
21595
|
/**
|
|
@@ -24993,7 +25156,7 @@ export declare interface SidebarNavHiddenItem {
|
|
|
24993
25156
|
}
|
|
24994
25157
|
|
|
24995
25158
|
/** Display mode for the sidebar navigation */
|
|
24996
|
-
export declare type SidebarNavMode = 'all' | 'by-role' | 'by-unit' | 'favorites' | 'preferences';
|
|
25159
|
+
export declare type SidebarNavMode = 'all' | 'by-role' | 'by-unit' | 'favorites' | 'search' | 'preferences';
|
|
24997
25160
|
|
|
24998
25161
|
/** A module containing multiple views */
|
|
24999
25162
|
export declare interface SidebarNavModule {
|
package/dist/index.mjs
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import { A as s, C as i, a as c, b as t, c as r, D as o, d as n, E as N, F as l, e as d, f as u, g as m, H as h, L as p, M as S, N as C, h as g, i as b, j as T, k as P, l as D, m as A, n as f, o as y, p as
|
|
2
|
-
import {
|
|
3
|
-
import { g as
|
|
4
|
-
import { C as Bu, F as Vu, o as xu, p as Ou, N as _u, a as Gu, b as Hu, c as Uu, q as zu, r as Wu, d as Ku, e as Qu, f as Yu, g as qu, h as ju, i as Xu, j as Ju, k as Zu, l as $u, m as em, n as am, T as sm } from "./NiceForm-
|
|
5
|
-
import { J as cm, K as tm, L as rm, N as om, a as nm, b as Nm, c as lm, M as dm, d as um, e as mm, f as hm, g as pm, h as Sm, i as Cm, j as gm, k as bm, l as Tm, m as Pm, n as Dm, o as Am, p as fm, q as ym, r as
|
|
6
|
-
import { N as oh, f as nh, g as Nh, h as lh, i as dh, j as uh, k as mh, l as hh, m as ph, n as Sh, o as Ch, p as gh, q as bh, r as Th, s as Ph, u as Dh, v as Ah, w as fh, y as yh, A as
|
|
7
|
-
import { N as Wh, a as Kh, b as Qh, c as Yh, d as qh, e as jh, f as Xh, g as Jh, h as Zh, i as $h, k as ep, u as ap } from "./NiceErrorBoundary-
|
|
8
|
-
import { N as ip } from "./NiceModal-
|
|
9
|
-
import { N as tp } from "./NicePagination-
|
|
10
|
-
import { N as op, a as np, b as Np, c as lp, d as dp, e as up, f as mp, g as hp, h as pp, i as Sp, j as Cp, k as gp, l as bp, m as Tp, n as Pp, o as Dp } from "./NiceSavedQueryPanel-
|
|
11
|
-
import { C as fp, j as yp, h as
|
|
12
|
-
import { N as $p, a as eS, b as aS, c as sS, d as iS, e as cS, f as tS, g as rS, h as oS, i as nS, j as NS, k as lS, l as dS, n as uS, o as mS, u as hS, p as pS, m as SS } from "./NiceWindow-
|
|
13
|
-
import { N as gS, a as bS, b as TS, c as PS, d as DS, e as AS, f as fS, g as yS, h as
|
|
1
|
+
import { A as s, C as i, a as c, b as t, c as r, D as o, d as n, E as N, F as l, e as d, f as u, g as m, H as h, L as p, M as S, N as C, h as g, i as b, j as T, k as P, l as D, m as A, n as f, o as y, p as R, q as E, r as I, s as k, t as M, u as v, v as L, w, x as F, y as B, z as V, B as x, G as O, I as _, J as G, K as H, O as U, P as z, Q as W, R as K, S as Q, T as Y, U as q, V as j, W as X, X as J, Y as Z, Z as $, _ as ee, $ as ae, a0 as se, a1 as ie, a2 as ce, a3 as te, a4 as re, a5 as oe, a6 as ne, a7 as Ne, a8 as le, a9 as de, aa as ue, ab as me, ac as he, ad as pe, ae as Se, af as Ce, ag as ge, ah as be, ai as Te, aj as Pe, ak as De, al as Ae, am as fe, an as ye, ao as Re, ap as Ee, aq as Ie, ar as ke, as as Me, at as ve, au as Le, av as we, aw as Fe, ax as Be, ay as Ve, az as xe, aA as Oe, aB as _e, aC as Ge, aD as He, aE as Ue, aF as ze, aG as We, aH as Ke, aI as Qe, aJ as Ye, aK as qe, aL as je, aM as Xe, aN as Je, aO as Ze, aP as $e, aQ as ea, aR as aa, aS as sa, aT as ia, aU as ca, aV as ta, aW as ra, aX as oa, aY as na, aZ as Na, a_ as la, a$ as da, b0 as ua, b1 as ma, b2 as ha, b3 as pa, b4 as Sa, b5 as Ca, b6 as ga, b7 as ba, b8 as Ta, b9 as Pa, ba as Da, bb as Aa, bc as fa, bd as ya, be as Ra, bf as Ea, bg as Ia, bh as ka, bi as Ma, bj as va, bk as La, bl as wa, bm as Fa, bn as Ba, bo as Va, bp as xa, bq as Oa, br as _a, bs as Ga, bt as Ha, bu as Ua, bv as za, bw as Wa, bx as Ka, by as Qa, bz as Ya, bA as qa, bB as ja, bC as Xa, bD as Ja, bE as Za, bF as $a, bG as es, bH as as, bI as ss, bJ as is, bK as cs, bL as ts, bM as rs, bN as os, bO as ns, bP as Ns, bQ as ls, bR as ds, bS as us, bT as ms, bU as hs, bV as ps, bW as Ss, bX as Cs, bY as gs, bZ as bs, b_ as Ts, b$ as Ps, c0 as Ds, c1 as As, c2 as fs, c3 as ys, c4 as Rs, c5 as Es, c6 as Is, c7 as ks, c8 as Ms, c9 as vs, ca as Ls, cb as ws, cc as Fs, cd as Bs, ce as Vs, cf as xs, cg as Os, ch as _s, ci as Gs, cj as Hs, ck as Us, cl as zs, cm as Ws, cn as Ks, co as Qs, cp as Ys, cq as qs, cr as js, cs as Xs, ct as Js, aK as Zs, b$ as $s, cu as ei, cv as ai, cw as si, cx as ii, cy as ci, cz as ti, cA as ri, cB as oi, cC as ni, cD as Ni, cE as li, cF as di, cG as ui, cH as mi, cI as hi, cJ as pi, cK as Si, cL as Ci, cM as gi, cN as bi, cO as Ti, cP as Pi, cQ as Di, cR as Ai, cS as fi, cT as yi, cU as Ri, cV as Ei, cW as Ii, cX as ki, cY as Mi, cZ as vi, c_ as Li, c$ as wi, d0 as Fi, d1 as Bi, d2 as Vi, d3 as xi, d4 as Oi, d5 as _i, d6 as Gi, d7 as Hi, d8 as Ui, d9 as zi, da as Wi, db as Ki, dc as Qi, dd as Yi, de as qi, df as ji, dg as Xi, dh as Ji, di as Zi, dj as $i, dk as ec, dl as ac, dm as sc, dn as ic, dp as cc, dq as tc, dr as rc, ds as oc, dt as nc, du as Nc, dv as lc, dw as dc, dx as uc, dy as mc, dz as hc, dA as pc, dB as Sc, dC as Cc, dD as gc, dE as bc, dF as Tc, dG as Pc, dH as Dc, dI as Ac, dJ as fc, dK as yc, dL as Rc, dM as Ec, dN as Ic, dO as kc, dP as Mc, dQ as vc, dR as Lc, dS as wc, dT as Fc, dU as Bc, dV as Vc, dW as xc, dX as Oc, dY as _c, dZ as Gc, d_ as Hc, d$ as Uc, e0 as zc, e1 as Wc, e2 as Kc, e3 as Qc, e4 as Yc, e5 as qc, e6 as jc, e7 as Xc, e8 as Jc, e9 as Zc, ea as $c, eb as et, ec as at, ed as st, ee as it, ef as ct, eg as tt, eh as rt, ei as ot, ej as nt, ek as Nt, el as lt, em as dt, en as ut, eo as mt, ep as ht, eq as pt, er as St, es as Ct, et as gt, eu as bt, ev as Tt, ew as Pt, ex as Dt, ey as At, ez as ft, eA as yt, eB as Rt } from "./index-DCDfWfAt.js";
|
|
2
|
+
import { L as It, N as kt, m as Mt, O as vt, Q as Lt, U as wt, W as Ft, Y as Bt, _ as Vt, a0 as xt, a1 as Ot, a2 as _t, a3 as Gt, T as Ht, z as Ut, I as zt, a4 as Wt, a5 as Kt, a6 as Qt, a7 as Yt, a8 as qt, a9 as jt, x as Xt, aa as Jt, ab as Zt, ac as $t, ad as er, ae as ar, af as sr, ag as ir, ah as cr, G as tr, f as rr, ai as or, aj as nr, K as Nr, ak as lr, al as dr, am as ur, an as mr, ao as hr, ap as pr, aq as Sr, ar as Cr, as as gr, at as br, l as Tr, B as Pr, au as Dr, av as Ar, aw as fr, ax as yr, ay as Rr, az as Er, aA as Ir, aB as kr, aC as Mr, aD as vr, aE as Lr, aF as wr, aG as Fr, aH as Br, aI as Vr, aJ as xr, aK as Or, aL as _r, t as Gr, aM as Hr, aN as Ur, aO as zr, aP as Wr, aQ as Kr, aR as Qr, aS as Yr, aT as qr, aU as jr, aV as Xr, aW as Jr, aX as Zr, aY as $r, aZ as eo, a_ as ao, a$ as so, b0 as io, b1 as co, b2 as to, b3 as ro, b4 as oo, b5 as no, b6 as No, b7 as lo, b8 as uo, b9 as mo, ba as ho, bb as po, bc as So, bd as Co, be as go, bf as bo, bg as To, bh as Po, bi as Do, bj as Ao, bk as fo, bl as yo, bm as Ro, bn as Eo, bo as Io, bp as ko, bq as Mo, br as vo, bs as Lo, bt as wo, bu as Fo, bv as Bo, bw as Vo, bx as xo, by as Oo, bz as _o, bA as Go, bB as Ho, bC as Uo, bD as zo, bE as Wo, bF as Ko, bG as Qo, bH as Yo, bI as qo, bJ as jo, bK as Xo, bL as Jo, bM as Zo, bN as $o, bO as en, bP as an, bQ as sn, bR as cn, bS as tn, bT as rn, bU as on, p as nn, bV as Nn, bW as ln, bX as dn, bY as un, bZ as mn, b_ as hn, b$ as pn, c0 as Sn, c1 as Cn, c2 as gn, c3 as bn, s as Tn, c4 as Pn, c5 as Dn, c6 as An, c7 as fn, c8 as yn, c9 as Rn, J as En, ca as In, cb as kn, w as Mn, cc as vn, cd as Ln, ce as wn, cf as Fn, cg as Bn, ch as Vn, ci as xn, cj as On, ck as _n, cl as Gn, cm as Hn, cn as Un, co as zn, cp as Wn, cq as Kn, cr as Qn, cs as Yn, ct as qn, cu as jn, cv as Xn, cw as Jn, cx as Zn, cy as $n, cz as eN, cA as aN, cB as sN, cC as iN, cD as cN, cE as tN, cF as rN, cG as oN, cH as nN, cI as NN, cJ as lN, cK as dN, cL as uN, cM as mN, cN as hN, cO as pN, cP as SN, cQ as CN, cR as gN, cS as bN, cT as TN, cU as PN, cV as DN, cW as AN, cX as fN, cY as yN, cZ as RN, c_ as EN, c$ as IN, d0 as kN, d1 as MN, d2 as vN, d3 as LN, d4 as wN, d5 as FN, d6 as BN, d7 as VN, d8 as xN, d9 as ON, da as _N, db as GN, dc as HN, dd as UN, de as zN, df as WN, dg as KN, dh as QN, di as YN, dj as qN, dk as jN, dl as XN, dm as JN, dn as ZN, dp as $N, dq as el, dr as al, ds as sl, dt as il, du as cl, dv as tl, dw as rl, dx as ol, dy as nl, dz as Nl, dA as ll, dB as dl, dC as ul, dD as ml, dE as hl, dF as pl, dG as Sl, dH as Cl, dI as gl, V as bl, dJ as Tl, dK as Pl, dL as Dl, dM as Al, dN as fl, dO as yl, dP as Rl, dQ as El, dR as Il, dS as kl, X as Ml, dT as vl, dU as Ll, dV as wl, dW as Fl, dX as Bl, a as Vl, b as xl, e as Ol, dY as _l, S as Gl, v as Hl, dZ as Ul, d_ as zl, H as Wl, d$ as Kl, e0 as Ql, h as Yl, e1 as ql, e2 as jl, e3 as Xl, e4 as Jl, e5 as Zl, e6 as $l, e7 as ed, P as ad, e8 as sd, e9 as id, ea as cd, eb as td, ec as rd, ed as od, ee as nd, ef as Nd, eg as ld, eh as dd, ei as ud, ej as md, R as hd, ek as pd, i as Sd, Z as Cd, el as gd, d as bd, F as Td, em as Pd, en as Dd, eo as Ad, o as fd, ep as yd, q as Rd, n as Ed, eq as Id, $ as kd, er as Md, c as vd, r as Ld, es as wd, et as Fd, eu as Bd, ev as Vd, ew as xd, ex as Od, ey as _d, ez as Gd, eA as Hd, eB as Ud, eC as zd, eD as Wd, eE as Kd, eF as Qd, eG as Yd, eH as qd, eI as jd, eJ as Xd, eK as Jd, eL as Zd, eM as $d, u as eu, k as au, g as su, eN as iu, D as cu, eO as tu, eP as ru, eQ as ou, j as nu, eR as Nu, eS as lu, eT as du, eU as uu, eV as mu, eW as hu, eX as pu, eY as Su, eZ as Cu, e_ as gu, e$ as bu, f0 as Tu, f1 as Pu, f2 as Du, f3 as Au, f4 as fu } from "./core-Da1dGJN3.js";
|
|
3
|
+
import { g as Ru, N as Eu, a as Iu, b as ku, c as Mu, f as vu, d as Lu, e as wu } from "./NiceTabs-B9zxj6qd.js";
|
|
4
|
+
import { C as Bu, F as Vu, o as xu, p as Ou, N as _u, a as Gu, b as Hu, c as Uu, q as zu, r as Wu, d as Ku, e as Qu, f as Yu, g as qu, h as ju, i as Xu, j as Ju, k as Zu, l as $u, m as em, n as am, T as sm } from "./NiceForm-DLADlHAQ.js";
|
|
5
|
+
import { J as cm, K as tm, L as rm, N as om, a as nm, b as Nm, c as lm, M as dm, d as um, e as mm, f as hm, g as pm, h as Sm, i as Cm, j as gm, k as bm, l as Tm, m as Pm, n as Dm, o as Am, p as fm, q as ym, r as Rm, s as Em, t as Im, u as km, v as Mm, w as vm, x as Lm, y as wm, z as Fm, A as Bm, B as Vm, C as xm, D as Om, E as _m, O as Gm, F as Hm, G as Um, H as zm, I as Wm, P as Km, Q as Qm, R as Ym, S as qm, T as jm, U as Xm, V as Jm, W as Zm, X as $m, Y as eh, Z as ah, _ as sh, $ as ih, a0 as ch, a1 as th } from "./NicePinCodeInput-ltwzQf4r.js";
|
|
6
|
+
import { N as oh, f as nh, g as Nh, h as lh, i as dh, j as uh, k as mh, l as hh, m as ph, n as Sh, o as Ch, p as gh, q as bh, r as Th, s as Ph, u as Dh, v as Ah, w as fh, y as yh, A as Rh, B as Eh, C as Ih, E as kh, F as Mh, G as vh, I as Lh, J as wh, K as Fh, R as Bh, L as Vh, M as xh, O as Oh, T as _h, P as Gh, Q as Hh, U as Uh } from "./NiceModuleLifecyclePanel-4UEsYB5r.js";
|
|
7
|
+
import { N as Wh, a as Kh, b as Qh, c as Yh, d as qh, e as jh, f as Xh, g as Jh, h as Zh, i as $h, k as ep, u as ap } from "./NiceErrorBoundary-DBCCmeyl.js";
|
|
8
|
+
import { N as ip } from "./NiceModal-CUdeVj-j.js";
|
|
9
|
+
import { N as tp } from "./NicePagination-Cqr3Pe_F.js";
|
|
10
|
+
import { N as op, a as np, b as Np, c as lp, d as dp, e as up, f as mp, g as hp, h as pp, i as Sp, j as Cp, k as gp, l as bp, m as Tp, n as Pp, o as Dp } from "./NiceSavedQueryPanel-BIXW0y1X.js";
|
|
11
|
+
import { C as fp, j as yp, h as Rp, o as Ep, p as Ip, l as kp, q as Mp, r as vp, g as Lp, e as wp, k as Fp, s as Bp, t as Vp, b as xp, n as Op, m as _p, a as Gp, u as Hp, f as Up, v as zp, i as Wp, c as Kp, d as Qp, w as Yp, N as qp, x as jp, y as Xp, z as Jp } from "./charts-C60va95_.js";
|
|
12
|
+
import { N as $p, a as eS, b as aS, c as sS, d as iS, e as cS, f as tS, g as rS, h as oS, i as nS, j as NS, k as lS, l as dS, n as uS, o as mS, u as hS, p as pS, m as SS } from "./NiceWindow-Bo_yCa1o.js";
|
|
13
|
+
import { N as gS, a as bS, b as TS, c as PS, d as DS, e as AS, f as fS, g as yS, h as RS } from "./devops-BL39OCVh.js";
|
|
14
14
|
import { N as IS, a as kS, b as MS, c as vS, d as LS, e as wS, f as FS, g as BS, h as VS, i as xS } from "./no-code-snLY0d6I.js";
|
|
15
15
|
import { N as _S, a as GS, b as HS, c as US, d as zS, e as WS } from "./data-branching-BmCKIXgr.js";
|
|
16
16
|
export {
|
|
@@ -81,9 +81,9 @@ export {
|
|
|
81
81
|
f as NiceAspectRatio,
|
|
82
82
|
y as NiceAuditLog,
|
|
83
83
|
Nh as NiceAuthButtons,
|
|
84
|
-
|
|
84
|
+
R as NiceAuthGuard,
|
|
85
85
|
_u as NiceAutocomplete,
|
|
86
|
-
|
|
86
|
+
E as NiceAutomationRuleEditor,
|
|
87
87
|
I as NiceAvatar,
|
|
88
88
|
k as NiceAvatarGroup,
|
|
89
89
|
M as NiceBPMNDesigner,
|
|
@@ -103,9 +103,9 @@ export {
|
|
|
103
103
|
aS as NiceBox,
|
|
104
104
|
gS as NiceBranchManager,
|
|
105
105
|
dh as NiceBreadcrumb,
|
|
106
|
-
|
|
106
|
+
Rp as NiceBullet,
|
|
107
107
|
H as NiceBusinessCard,
|
|
108
|
-
|
|
108
|
+
Ru as NiceButton,
|
|
109
109
|
U as NiceButtonGroup,
|
|
110
110
|
lm as NiceCalendar,
|
|
111
111
|
z as NiceCallout,
|
|
@@ -115,10 +115,10 @@ export {
|
|
|
115
115
|
K as NiceCarousel,
|
|
116
116
|
Q as NiceCascadeSelect,
|
|
117
117
|
Y as NiceCenter,
|
|
118
|
-
|
|
118
|
+
Ep as NiceChart,
|
|
119
119
|
Ip as NiceChartAI,
|
|
120
120
|
q as NiceChat,
|
|
121
|
-
|
|
121
|
+
Eu as NiceCheckbox,
|
|
122
122
|
j as NiceCheckboxGroup,
|
|
123
123
|
kp as NiceCircularGauge,
|
|
124
124
|
mh as NiceClassicShell,
|
|
@@ -195,10 +195,10 @@ export {
|
|
|
195
195
|
fe as NiceERPReportDesigner,
|
|
196
196
|
Pm as NiceEmojiPicker,
|
|
197
197
|
ye as NiceEmpty,
|
|
198
|
-
|
|
198
|
+
Re as NiceEnergyChart,
|
|
199
199
|
qh as NiceErrorBoundary,
|
|
200
200
|
wS as NiceEventOrchestrator,
|
|
201
|
-
|
|
201
|
+
Ee as NiceFAQ,
|
|
202
202
|
Ie as NiceFeatureFlagsProvider,
|
|
203
203
|
ke as NiceFeatureGate,
|
|
204
204
|
sr as NiceFieldStatus,
|
|
@@ -237,11 +237,11 @@ export {
|
|
|
237
237
|
We as NiceIconButton,
|
|
238
238
|
or as NiceIconProvider,
|
|
239
239
|
ym as NiceImageAnnotator,
|
|
240
|
-
|
|
240
|
+
Rm as NiceImageEditor,
|
|
241
241
|
Ke as NiceImageViewer,
|
|
242
242
|
Qe as NiceInbox,
|
|
243
243
|
nr as NiceInlineHelp,
|
|
244
|
-
|
|
244
|
+
Em as NiceInputOtp,
|
|
245
245
|
Ye as NiceInstallPrompt,
|
|
246
246
|
qe as NiceInstanceMonitor,
|
|
247
247
|
je as NiceIntegrationHub,
|
|
@@ -283,10 +283,10 @@ export {
|
|
|
283
283
|
yh as NiceModeSelector,
|
|
284
284
|
up as NiceModuleGrid,
|
|
285
285
|
da as NiceModuleHotSwap,
|
|
286
|
-
|
|
286
|
+
Rh as NiceModuleLifecyclePanel,
|
|
287
287
|
ua as NiceModuleLoaderProvider,
|
|
288
288
|
ma as NiceModuleRoute,
|
|
289
|
-
|
|
289
|
+
Eh as NiceMultiView,
|
|
290
290
|
Ih as NiceNavMenu,
|
|
291
291
|
ha as NiceNavShell,
|
|
292
292
|
kh as NiceNavbar,
|
|
@@ -314,13 +314,13 @@ export {
|
|
|
314
314
|
Op as NicePieChart,
|
|
315
315
|
Bm as NicePinCodeInput,
|
|
316
316
|
yS as NicePipelineEditor,
|
|
317
|
-
|
|
317
|
+
RS as NicePipelineMonitor,
|
|
318
318
|
mp as NicePivotGrid,
|
|
319
319
|
hp as NicePivotGridFieldChooser,
|
|
320
320
|
ya as NicePlanningTimeline,
|
|
321
321
|
_p as NicePolarChart,
|
|
322
|
-
|
|
323
|
-
|
|
322
|
+
Ra as NicePoll,
|
|
323
|
+
Ea as NicePollLive,
|
|
324
324
|
cS as NicePopover,
|
|
325
325
|
lr as NicePreferencesPanel,
|
|
326
326
|
Ia as NicePresenceAvatars,
|
|
@@ -421,8 +421,8 @@ export {
|
|
|
421
421
|
fs as NiceThemeBuilder,
|
|
422
422
|
Tr as NiceThemeContext,
|
|
423
423
|
ys as NiceThemeDesigner,
|
|
424
|
-
|
|
425
|
-
|
|
424
|
+
Rs as NiceThemePicker,
|
|
425
|
+
Es as NiceThemePreview,
|
|
426
426
|
Pr as NiceThemeProvider,
|
|
427
427
|
Is as NiceThemeSwitcher,
|
|
428
428
|
Dr as NiceThemeVariantConfigurator,
|
|
@@ -469,7 +469,7 @@ export {
|
|
|
469
469
|
qs as NiceViewRenderer,
|
|
470
470
|
js as NiceViewRendererV2,
|
|
471
471
|
Xs as NiceVirtualScroller,
|
|
472
|
-
|
|
472
|
+
Rr as NiceVisuallyHidden,
|
|
473
473
|
Wm as NiceWiki,
|
|
474
474
|
lS as NiceWindow,
|
|
475
475
|
dS as NiceWindowManager,
|
|
@@ -478,7 +478,7 @@ export {
|
|
|
478
478
|
Zs as NiceWorkflowInstanceMonitor,
|
|
479
479
|
$s as NiceWorkflowTaskInbox,
|
|
480
480
|
ei as NiceXPBar,
|
|
481
|
-
|
|
481
|
+
Er as PRIVACY_LEVEL_ORDER,
|
|
482
482
|
ai as PayPalConnector,
|
|
483
483
|
Ir as ProfilerOverlay,
|
|
484
484
|
si as QuickBooksConnector,
|
|
@@ -558,8 +558,8 @@ export {
|
|
|
558
558
|
Jp as createWebSocketLiveChartSource,
|
|
559
559
|
Po as createZustandAdapter,
|
|
560
560
|
Ym as cssToGradient,
|
|
561
|
-
|
|
562
|
-
|
|
561
|
+
Ri as defaultTypeMapping,
|
|
562
|
+
Ei as defaultViewRegistry,
|
|
563
563
|
Do as deprecateProp,
|
|
564
564
|
Ao as deprecateSymbol,
|
|
565
565
|
Ii as deserializeManifest,
|
|
@@ -586,8 +586,8 @@ export {
|
|
|
586
586
|
Yi as extractI18nKeys,
|
|
587
587
|
qi as extractTokensFromTheme,
|
|
588
588
|
ji as fetchFigmaTokens,
|
|
589
|
-
|
|
590
|
-
|
|
589
|
+
Ro as filterNiceThemePacksByTag,
|
|
590
|
+
Eo as forceGC,
|
|
591
591
|
Xi as formatDiffAsText,
|
|
592
592
|
Io as formatICU,
|
|
593
593
|
ko as formatShortcut,
|
|
@@ -679,12 +679,12 @@ export {
|
|
|
679
679
|
fn as preloadComponents,
|
|
680
680
|
yn as printPerformanceReport,
|
|
681
681
|
ah as randomPalette,
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
682
|
+
Rc as recipeTotalMinutes,
|
|
683
|
+
Rn as removeTheme,
|
|
684
|
+
Ec as requireA11y,
|
|
685
685
|
Ic as requireGridColumns,
|
|
686
686
|
kc as requireI18n,
|
|
687
|
-
|
|
687
|
+
En as resolveDisplayStyleConfig,
|
|
688
688
|
Mc as resolvePermissions,
|
|
689
689
|
In as resolveTracelessPolicy,
|
|
690
690
|
sh as rgbToHex,
|
|
@@ -753,8 +753,8 @@ export {
|
|
|
753
753
|
AN as themeLargeText,
|
|
754
754
|
fN as themeLavender,
|
|
755
755
|
yN as themeLegal,
|
|
756
|
-
|
|
757
|
-
|
|
756
|
+
RN as themeLime,
|
|
757
|
+
EN as themeMediterranean,
|
|
758
758
|
IN as themeMidnight,
|
|
759
759
|
kN as themeMinimalist,
|
|
760
760
|
MN as themeMonochrome,
|
|
@@ -807,8 +807,8 @@ export {
|
|
|
807
807
|
Al as themeVintage,
|
|
808
808
|
fl as themeViolet,
|
|
809
809
|
yl as themeWarmDark,
|
|
810
|
-
|
|
811
|
-
|
|
810
|
+
Rl as themeWarmGray,
|
|
811
|
+
El as themeWine,
|
|
812
812
|
Il as themeWinterFrost,
|
|
813
813
|
kl as themeZinc,
|
|
814
814
|
zc as toThemeDescriptor,
|
|
@@ -877,8 +877,8 @@ export {
|
|
|
877
877
|
Ad as useNiceIcon,
|
|
878
878
|
fd as useNiceLookupSource,
|
|
879
879
|
yd as useNiceRTL,
|
|
880
|
-
|
|
881
|
-
|
|
880
|
+
Rd as useNiceRecord,
|
|
881
|
+
Ed as useNiceTheme,
|
|
882
882
|
ep as useNiceTimeout,
|
|
883
883
|
ap as useNiceToast,
|
|
884
884
|
Id as useNiceTransition,
|
|
@@ -949,7 +949,7 @@ export {
|
|
|
949
949
|
At as validateRbacPolicy,
|
|
950
950
|
ft as validateViewDefinitionV2,
|
|
951
951
|
yt as validateViewForDeploy,
|
|
952
|
-
|
|
952
|
+
Rt as validateViewsBatch,
|
|
953
953
|
th as wcagLevel,
|
|
954
954
|
Cu as withCaching,
|
|
955
955
|
gu as withCalculatedColumns,
|
package/dist/lazy.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const a=require("react"),n=a.lazy(()=>Promise.resolve().then(()=>require("./devops-CkuTC7RJ.cjs")).then(e=>e.NiceGitGraph$1).then(e=>({default:e.NiceGitGraph}))),o=a.lazy(()=>Promise.resolve().then(()=>require("./devops-CkuTC7RJ.cjs")).then(e=>e.NiceBranchManager$1).then(e=>({default:e.NiceBranchManager}))),l=a.lazy(()=>Promise.resolve().then(()=>require("./devops-CkuTC7RJ.cjs")).then(e=>e.NiceGitDiffViewer$1).then(e=>({default:e.NiceGitDiffViewer}))),s=a.lazy(()=>Promise.resolve().then(()=>require("./devops-CkuTC7RJ.cjs")).then(e=>e.NiceGitBlame$1).then(e=>({default:e.NiceGitBlame}))),h=a.lazy(()=>Promise.resolve().then(()=>require("./devops-CkuTC7RJ.cjs")).then(e=>e.NiceGitConflictResolver$1).then(e=>({default:e.NiceGitConflictResolver}))),c=a.lazy(()=>Promise.resolve().then(()=>require("./devops-CkuTC7RJ.cjs")).then(e=>e.NicePipelineEditor$1).then(e=>({default:e.NicePipelineEditor}))),y=a.lazy(()=>Promise.resolve().then(()=>require("./devops-CkuTC7RJ.cjs")).then(e=>e.NicePipelineMonitor$1).then(e=>({default:e.NicePipelineMonitor}))),u=a.lazy(()=>Promise.resolve().then(()=>require("./devops-CkuTC7RJ.cjs")).then(e=>e.NiceGitHooks$1).then(e=>({default:e.NiceGitHooks}))),z=a.lazy(()=>Promise.resolve().then(()=>require("./devops-CkuTC7RJ.cjs")).then(e=>e.NiceMergeRequestBuilder$1).then(e=>({default:e.NiceMergeRequestBuilder}))),d=a.lazy(()=>Promise.resolve().then(()=>require("./no-code-Bb3QFKdm.cjs")).then(e=>e.NiceAPIFlow$1).then(e=>({default:e.NiceAPIFlow}))),f=a.lazy(()=>Promise.resolve().then(()=>require("./no-code-Bb3QFKdm.cjs")).then(e=>e.NiceCodeTemplate$1).then(e=>({default:e.NiceCodeTemplate}))),N=a.lazy(()=>Promise.resolve().then(()=>require("./no-code-Bb3QFKdm.cjs")).then(e=>e.NiceDataMapper$1).then(e=>({default:e.NiceDataMapper}))),L=a.lazy(()=>Promise.resolve().then(()=>require("./no-code-Bb3QFKdm.cjs")).then(e=>e.NiceEventOrchestrator$1).then(e=>({default:e.NiceEventOrchestrator}))),p=a.lazy(()=>Promise.resolve().then(()=>require("./no-code-Bb3QFKdm.cjs")).then(e=>e.NiceStateDesigner$1).then(e=>({default:e.NiceStateDesigner}))),v=a.lazy(()=>Promise.resolve().then(()=>require("./no-code-Bb3QFKdm.cjs")).then(e=>e.NiceTestBuilder$1).then(e=>({default:e.NiceTestBuilder}))),D=a.lazy(()=>Promise.resolve().then(()=>require("./data-branching-B_9C6-hE.cjs")).then(e=>e.NiceDataBranchManager$1).then(e=>({default:e.NiceDataBranchManager}))),P=a.lazy(()=>Promise.resolve().then(()=>require("./data-branching-B_9C6-hE.cjs")).then(e=>e.NiceDataDiffViewer$1).then(e=>({default:e.NiceDataDiffViewer}))),m=a.lazy(()=>Promise.resolve().then(()=>require("./data-branching-B_9C6-hE.cjs")).then(e=>e.NiceDataBranchGraph$1).then(e=>({default:e.NiceDataBranchGraph}))),q=a.lazy(()=>Promise.resolve().then(()=>require("./data-branching-B_9C6-hE.cjs")).then(e=>e.NiceDataMergeBuilder$1).then(e=>({default:e.NiceDataMergeBuilder}))),B=a.lazy(()=>Promise.resolve().then(()=>require("./data-branching-B_9C6-hE.cjs")).then(e=>e.NiceDataConflictResolver$1).then(e=>({default:e.NiceDataConflictResolver}))),M=a.lazy(()=>Promise.resolve().then(()=>require("./data-branching-B_9C6-hE.cjs")).then(e=>e.NiceDataSnapshot$1).then(e=>({default:e.NiceDataSnapshot}))),G=a.lazy(()=>Promise.resolve().then(()=>require("./charts-
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const a=require("react"),n=a.lazy(()=>Promise.resolve().then(()=>require("./devops-CkuTC7RJ.cjs")).then(e=>e.NiceGitGraph$1).then(e=>({default:e.NiceGitGraph}))),o=a.lazy(()=>Promise.resolve().then(()=>require("./devops-CkuTC7RJ.cjs")).then(e=>e.NiceBranchManager$1).then(e=>({default:e.NiceBranchManager}))),l=a.lazy(()=>Promise.resolve().then(()=>require("./devops-CkuTC7RJ.cjs")).then(e=>e.NiceGitDiffViewer$1).then(e=>({default:e.NiceGitDiffViewer}))),s=a.lazy(()=>Promise.resolve().then(()=>require("./devops-CkuTC7RJ.cjs")).then(e=>e.NiceGitBlame$1).then(e=>({default:e.NiceGitBlame}))),h=a.lazy(()=>Promise.resolve().then(()=>require("./devops-CkuTC7RJ.cjs")).then(e=>e.NiceGitConflictResolver$1).then(e=>({default:e.NiceGitConflictResolver}))),c=a.lazy(()=>Promise.resolve().then(()=>require("./devops-CkuTC7RJ.cjs")).then(e=>e.NicePipelineEditor$1).then(e=>({default:e.NicePipelineEditor}))),y=a.lazy(()=>Promise.resolve().then(()=>require("./devops-CkuTC7RJ.cjs")).then(e=>e.NicePipelineMonitor$1).then(e=>({default:e.NicePipelineMonitor}))),u=a.lazy(()=>Promise.resolve().then(()=>require("./devops-CkuTC7RJ.cjs")).then(e=>e.NiceGitHooks$1).then(e=>({default:e.NiceGitHooks}))),z=a.lazy(()=>Promise.resolve().then(()=>require("./devops-CkuTC7RJ.cjs")).then(e=>e.NiceMergeRequestBuilder$1).then(e=>({default:e.NiceMergeRequestBuilder}))),d=a.lazy(()=>Promise.resolve().then(()=>require("./no-code-Bb3QFKdm.cjs")).then(e=>e.NiceAPIFlow$1).then(e=>({default:e.NiceAPIFlow}))),f=a.lazy(()=>Promise.resolve().then(()=>require("./no-code-Bb3QFKdm.cjs")).then(e=>e.NiceCodeTemplate$1).then(e=>({default:e.NiceCodeTemplate}))),N=a.lazy(()=>Promise.resolve().then(()=>require("./no-code-Bb3QFKdm.cjs")).then(e=>e.NiceDataMapper$1).then(e=>({default:e.NiceDataMapper}))),L=a.lazy(()=>Promise.resolve().then(()=>require("./no-code-Bb3QFKdm.cjs")).then(e=>e.NiceEventOrchestrator$1).then(e=>({default:e.NiceEventOrchestrator}))),p=a.lazy(()=>Promise.resolve().then(()=>require("./no-code-Bb3QFKdm.cjs")).then(e=>e.NiceStateDesigner$1).then(e=>({default:e.NiceStateDesigner}))),v=a.lazy(()=>Promise.resolve().then(()=>require("./no-code-Bb3QFKdm.cjs")).then(e=>e.NiceTestBuilder$1).then(e=>({default:e.NiceTestBuilder}))),D=a.lazy(()=>Promise.resolve().then(()=>require("./data-branching-B_9C6-hE.cjs")).then(e=>e.NiceDataBranchManager$1).then(e=>({default:e.NiceDataBranchManager}))),P=a.lazy(()=>Promise.resolve().then(()=>require("./data-branching-B_9C6-hE.cjs")).then(e=>e.NiceDataDiffViewer$1).then(e=>({default:e.NiceDataDiffViewer}))),m=a.lazy(()=>Promise.resolve().then(()=>require("./data-branching-B_9C6-hE.cjs")).then(e=>e.NiceDataBranchGraph$1).then(e=>({default:e.NiceDataBranchGraph}))),q=a.lazy(()=>Promise.resolve().then(()=>require("./data-branching-B_9C6-hE.cjs")).then(e=>e.NiceDataMergeBuilder$1).then(e=>({default:e.NiceDataMergeBuilder}))),B=a.lazy(()=>Promise.resolve().then(()=>require("./data-branching-B_9C6-hE.cjs")).then(e=>e.NiceDataConflictResolver$1).then(e=>({default:e.NiceDataConflictResolver}))),M=a.lazy(()=>Promise.resolve().then(()=>require("./data-branching-B_9C6-hE.cjs")).then(e=>e.NiceDataSnapshot$1).then(e=>({default:e.NiceDataSnapshot}))),G=a.lazy(()=>Promise.resolve().then(()=>require("./charts-D_I1iwel.cjs")).then(e=>e.NiceChart$1).then(e=>({default:e.NiceChart}))),g=a.lazy(()=>Promise.resolve().then(()=>require("./charts-D_I1iwel.cjs")).then(e=>e.NiceTreeMap$1).then(e=>({default:e.NiceTreeMap}))),$=a.lazy(()=>Promise.resolve().then(()=>require("./charts-D_I1iwel.cjs")).then(e=>e.NiceSankey$1).then(e=>({default:e.NiceSankey}))),t=()=>{Promise.resolve().then(()=>require("./devops.cjs"))},r=()=>{Promise.resolve().then(()=>require("./no-code.cjs"))},i=()=>{Promise.resolve().then(()=>require("./data-branching.cjs"))},C=()=>{"requestIdleCallback"in window?requestIdleCallback(()=>{t(),r(),i()}):setTimeout(()=>{t(),r(),i()},2e3)};exports.LazyAPIFlow=d;exports.LazyBranchManager=o;exports.LazyChart=G;exports.LazyCodeTemplate=f;exports.LazyDataBranchGraph=m;exports.LazyDataBranchManager=D;exports.LazyDataConflictResolver=B;exports.LazyDataDiffViewer=P;exports.LazyDataMapper=N;exports.LazyDataMergeBuilder=q;exports.LazyDataSnapshot=M;exports.LazyEventOrchestrator=L;exports.LazyGitBlame=s;exports.LazyGitConflictResolver=h;exports.LazyGitDiffViewer=l;exports.LazyGitGraph=n;exports.LazyGitHooks=u;exports.LazyMergeRequestBuilder=z;exports.LazyPipelineEditor=c;exports.LazyPipelineMonitor=y;exports.LazySankey=$;exports.LazyStateDesigner=p;exports.LazyTestBuilder=v;exports.LazyTreemap=g;exports.preloadDataBranching=i;exports.preloadDevOps=t;exports.preloadHeavyModules=C;exports.preloadNoCode=r;
|
package/dist/lazy.mjs
CHANGED
|
@@ -48,11 +48,11 @@ const r = t(
|
|
|
48
48
|
), k = t(
|
|
49
49
|
() => import("./data-branching-BmCKIXgr.js").then((e) => e.k).then((e) => ({ default: e.NiceDataSnapshot }))
|
|
50
50
|
), v = t(
|
|
51
|
-
() => import("./charts-
|
|
51
|
+
() => import("./charts-C60va95_.js").then((e) => e.A).then((e) => ({ default: e.NiceChart }))
|
|
52
52
|
), w = t(
|
|
53
|
-
() => import("./charts-
|
|
53
|
+
() => import("./charts-C60va95_.js").then((e) => e.E).then((e) => ({ default: e.NiceTreeMap }))
|
|
54
54
|
), T = t(
|
|
55
|
-
() => import("./charts-
|
|
55
|
+
() => import("./charts-C60va95_.js").then((e) => e.B).then((e) => ({ default: e.NiceSankey }))
|
|
56
56
|
), a = () => {
|
|
57
57
|
import("./devops.mjs");
|
|
58
58
|
}, n = () => {
|