@omniviewdev/vite-plugin 0.1.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.
Files changed (62) hide show
  1. package/LICENSE +661 -0
  2. package/dist/index.cjs +215 -0
  3. package/dist/index.d.cts +84 -0
  4. package/dist/index.d.ts +84 -0
  5. package/dist/index.js +177 -0
  6. package/package.json +50 -0
  7. package/shims/_dnd-kit__core.mjs +45 -0
  8. package/shims/_dnd-kit__modifiers.mjs +21 -0
  9. package/shims/_dnd-kit__sortable.mjs +26 -0
  10. package/shims/_dnd-kit__utilities.mjs +39 -0
  11. package/shims/_emotion__react.mjs +27 -0
  12. package/shims/_emotion__styled.mjs +14 -0
  13. package/shims/_monaco-editor__react.mjs +18 -0
  14. package/shims/_mui__icons-material.mjs +10787 -0
  15. package/shims/_mui__material.mjs +476 -0
  16. package/shims/_mui__material__Box.mjs +15 -0
  17. package/shims/_mui__material__CircularProgress.mjs +16 -0
  18. package/shims/_mui__material__CssBaseline.mjs +14 -0
  19. package/shims/_mui__material__Divider.mjs +16 -0
  20. package/shims/_mui__material__GlobalStyles.mjs +14 -0
  21. package/shims/_mui__material__Grid.mjs +16 -0
  22. package/shims/_mui__material__LinearProgress.mjs +16 -0
  23. package/shims/_mui__material__styles.mjs +60 -0
  24. package/shims/_mui__material__utils.mjs +33 -0
  25. package/shims/_mui__x-charts.mjs +257 -0
  26. package/shims/_omniviewdev__runtime.mjs +82 -0
  27. package/shims/_omniviewdev__runtime__api.mjs +30 -0
  28. package/shims/_omniviewdev__runtime__models.mjs +29 -0
  29. package/shims/_omniviewdev__runtime__runtime.mjs +67 -0
  30. package/shims/_omniviewdev__ui.mjs +46 -0
  31. package/shims/_omniviewdev__ui__buttons.mjs +25 -0
  32. package/shims/_omniviewdev__ui__cells.mjs +19 -0
  33. package/shims/_omniviewdev__ui__charts.mjs +33 -0
  34. package/shims/_omniviewdev__ui__domain.mjs +25 -0
  35. package/shims/_omniviewdev__ui__editors.mjs +22 -0
  36. package/shims/_omniviewdev__ui__feedback.mjs +29 -0
  37. package/shims/_omniviewdev__ui__inputs.mjs +30 -0
  38. package/shims/_omniviewdev__ui__layout.mjs +22 -0
  39. package/shims/_omniviewdev__ui__menus.mjs +19 -0
  40. package/shims/_omniviewdev__ui__navigation.mjs +22 -0
  41. package/shims/_omniviewdev__ui__overlays.mjs +24 -0
  42. package/shims/_omniviewdev__ui__sidebars.mjs +20 -0
  43. package/shims/_omniviewdev__ui__table.mjs +20 -0
  44. package/shims/_omniviewdev__ui__theme.mjs +31 -0
  45. package/shims/_omniviewdev__ui__types.mjs +23 -0
  46. package/shims/_omniviewdev__ui__typography.mjs +19 -0
  47. package/shims/_tanstack__react-query.mjs +68 -0
  48. package/shims/_tanstack__react-table.mjs +67 -0
  49. package/shims/_tanstack__react-virtual.mjs +30 -0
  50. package/shims/date-fns.mjs +264 -0
  51. package/shims/monaco-editor.mjs +14 -0
  52. package/shims/monaco-types.mjs +14 -0
  53. package/shims/monaco-yaml.mjs +15 -0
  54. package/shims/react-dom.mjs +22 -0
  55. package/shims/react-icons.mjs +19 -0
  56. package/shims/react-icons__lu.mjs +1555 -0
  57. package/shims/react-icons__si.mjs +3289 -0
  58. package/shims/react-router-dom.mjs +70 -0
  59. package/shims/react.mjs +50 -0
  60. package/shims/react__jsx-dev-runtime.mjs +16 -0
  61. package/shims/react__jsx-runtime.mjs +17 -0
  62. package/shims/yaml.mjs +43 -0
@@ -0,0 +1,22 @@
1
+ // Auto-generated shim for '@omniviewdev/ui/editors'
2
+ // DO NOT EDIT -- regenerate with: pnpm --filter @omniviewdev/vite-plugin generate-shims
3
+
4
+ const mod = window.__OMNIVIEW_SHARED__['@omniviewdev/ui/editors'];
5
+
6
+ if (!mod) {
7
+ throw new Error(
8
+ '[omniview] Shared dependency "@omniviewdev/ui/editors" is not available on window.__OMNIVIEW_SHARED__. ' +
9
+ 'Ensure the Omniview host app is running and shared deps are exported before loading this plugin.'
10
+ );
11
+ }
12
+
13
+ export const CodeEditor = mod.CodeEditor;
14
+ export const DiffViewer = mod.DiffViewer;
15
+ export const Terminal = mod.Terminal;
16
+ export const CommandPalette = mod.CommandPalette;
17
+ export const MarkdownPreview = mod.MarkdownPreview;
18
+ export const registerOmniviewThemes = mod.registerOmniviewThemes;
19
+ export const omniviewDark = mod.omniviewDark;
20
+ export const omniviewLight = mod.omniviewLight;
21
+
22
+ export default mod.default !== undefined ? mod.default : mod;
@@ -0,0 +1,29 @@
1
+ // Auto-generated shim for '@omniviewdev/ui/feedback'
2
+ // DO NOT EDIT -- regenerate with: pnpm --filter @omniviewdev/vite-plugin generate-shims
3
+
4
+ const mod = window.__OMNIVIEW_SHARED__['@omniviewdev/ui/feedback'];
5
+
6
+ if (!mod) {
7
+ throw new Error(
8
+ '[omniview] Shared dependency "@omniviewdev/ui/feedback" is not available on window.__OMNIVIEW_SHARED__. ' +
9
+ 'Ensure the Omniview host app is running and shared deps are exported before loading this plugin.'
10
+ );
11
+ }
12
+
13
+ export const Alert = mod.Alert;
14
+ export const ConnectionIndicator = mod.ConnectionIndicator;
15
+ export const EmptyState = mod.EmptyState;
16
+ export const ErrorState = mod.ErrorState;
17
+ export const IDEStatusFooter = mod.IDEStatusFooter;
18
+ export const NotificationStackProvider = mod.NotificationStackProvider;
19
+ export const ProgressBar = mod.ProgressBar;
20
+ export const ProgressRing = mod.ProgressRing;
21
+ export const RunButton = mod.RunButton;
22
+ export const Skeleton = mod.Skeleton;
23
+ export const StatusBar = mod.StatusBar;
24
+ export const StatusBarItem = mod.StatusBarItem;
25
+ export const StatusDot = mod.StatusDot;
26
+ export const StatusPill = mod.StatusPill;
27
+ export const useNotificationStack = mod.useNotificationStack;
28
+
29
+ export default mod.default !== undefined ? mod.default : mod;
@@ -0,0 +1,30 @@
1
+ // Auto-generated shim for '@omniviewdev/ui/inputs'
2
+ // DO NOT EDIT -- regenerate with: pnpm --filter @omniviewdev/vite-plugin generate-shims
3
+
4
+ const mod = window.__OMNIVIEW_SHARED__['@omniviewdev/ui/inputs'];
5
+
6
+ if (!mod) {
7
+ throw new Error(
8
+ '[omniview] Shared dependency "@omniviewdev/ui/inputs" is not available on window.__OMNIVIEW_SHARED__. ' +
9
+ 'Ensure the Omniview host app is running and shared deps are exported before loading this plugin.'
10
+ );
11
+ }
12
+
13
+ export const Autocomplete = mod.Autocomplete;
14
+ export const Checkbox = mod.Checkbox;
15
+ export const ColorPicker = mod.ColorPicker;
16
+ export const DebouncedInput = mod.DebouncedInput;
17
+ export const FormField = mod.FormField;
18
+ export const FormSection = mod.FormSection;
19
+ export const KeyValueEditor = mod.KeyValueEditor;
20
+ export const RadioGroup = mod.RadioGroup;
21
+ export const SearchInput = mod.SearchInput;
22
+ export const Select = mod.Select;
23
+ export const Slider = mod.Slider;
24
+ export const Switch = mod.Switch;
25
+ export const TagInput = mod.TagInput;
26
+ export const TextArea = mod.TextArea;
27
+ export const TextField = mod.TextField;
28
+ export const TimeRangePicker = mod.TimeRangePicker;
29
+
30
+ export default mod.default !== undefined ? mod.default : mod;
@@ -0,0 +1,22 @@
1
+ // Auto-generated shim for '@omniviewdev/ui/layout'
2
+ // DO NOT EDIT -- regenerate with: pnpm --filter @omniviewdev/vite-plugin generate-shims
3
+
4
+ const mod = window.__OMNIVIEW_SHARED__['@omniviewdev/ui/layout'];
5
+
6
+ if (!mod) {
7
+ throw new Error(
8
+ '[omniview] Shared dependency "@omniviewdev/ui/layout" is not available on window.__OMNIVIEW_SHARED__. ' +
9
+ 'Ensure the Omniview host app is running and shared deps are exported before loading this plugin.'
10
+ );
11
+ }
12
+
13
+ export const AppShell = mod.AppShell;
14
+ export const DockLayout = mod.DockLayout;
15
+ export const Inline = mod.Inline;
16
+ export const Panel = mod.Panel;
17
+ export const ResizableSplitPane = mod.ResizableSplitPane;
18
+ export const Spacer = mod.Spacer;
19
+ export const Stack = mod.Stack;
20
+ export const useResizablePanel = mod.useResizablePanel;
21
+
22
+ export default mod.default !== undefined ? mod.default : mod;
@@ -0,0 +1,19 @@
1
+ // Auto-generated shim for '@omniviewdev/ui/menus'
2
+ // DO NOT EDIT -- regenerate with: pnpm --filter @omniviewdev/vite-plugin generate-shims
3
+
4
+ const mod = window.__OMNIVIEW_SHARED__['@omniviewdev/ui/menus'];
5
+
6
+ if (!mod) {
7
+ throw new Error(
8
+ '[omniview] Shared dependency "@omniviewdev/ui/menus" is not available on window.__OMNIVIEW_SHARED__. ' +
9
+ 'Ensure the Omniview host app is running and shared deps are exported before loading this plugin.'
10
+ );
11
+ }
12
+
13
+ export const ContextMenu = mod.ContextMenu;
14
+ export const DropdownMenu = mod.DropdownMenu;
15
+ export const MenuBar = mod.MenuBar;
16
+ export const NestedMenuItem = mod.NestedMenuItem;
17
+ export const SplitButton = mod.SplitButton;
18
+
19
+ export default mod.default !== undefined ? mod.default : mod;
@@ -0,0 +1,22 @@
1
+ // Auto-generated shim for '@omniviewdev/ui/navigation'
2
+ // DO NOT EDIT -- regenerate with: pnpm --filter @omniviewdev/vite-plugin generate-shims
3
+
4
+ const mod = window.__OMNIVIEW_SHARED__['@omniviewdev/ui/navigation'];
5
+
6
+ if (!mod) {
7
+ throw new Error(
8
+ '[omniview] Shared dependency "@omniviewdev/ui/navigation" is not available on window.__OMNIVIEW_SHARED__. ' +
9
+ 'Ensure the Omniview host app is running and shared deps are exported before loading this plugin.'
10
+ );
11
+ }
12
+
13
+ export const Breadcrumbs = mod.Breadcrumbs;
14
+ export const DraggableTabs = mod.DraggableTabs;
15
+ export const Pagination = mod.Pagination;
16
+ export const PersistentTabPanel = mod.PersistentTabPanel;
17
+ export const Stepper = mod.Stepper;
18
+ export const TabPanel = mod.TabPanel;
19
+ export const Tabs = mod.Tabs;
20
+ export const TreeView = mod.TreeView;
21
+
22
+ export default mod.default !== undefined ? mod.default : mod;
@@ -0,0 +1,24 @@
1
+ // Auto-generated shim for '@omniviewdev/ui/overlays'
2
+ // DO NOT EDIT -- regenerate with: pnpm --filter @omniviewdev/vite-plugin generate-shims
3
+
4
+ const mod = window.__OMNIVIEW_SHARED__['@omniviewdev/ui/overlays'];
5
+
6
+ if (!mod) {
7
+ throw new Error(
8
+ '[omniview] Shared dependency "@omniviewdev/ui/overlays" is not available on window.__OMNIVIEW_SHARED__. ' +
9
+ 'Ensure the Omniview host app is running and shared deps are exported before loading this plugin.'
10
+ );
11
+ }
12
+
13
+ export const Dialog = mod.Dialog;
14
+ export const Drawer = mod.Drawer;
15
+ export const ErrorOverlay = mod.ErrorOverlay;
16
+ export const Modal = mod.Modal;
17
+ export const NotificationCenter = mod.NotificationCenter;
18
+ export const Popover = mod.Popover;
19
+ export const Spotlight = mod.Spotlight;
20
+ export const ToastProvider = mod.ToastProvider;
21
+ export const Tooltip = mod.Tooltip;
22
+ export const useToast = mod.useToast;
23
+
24
+ export default mod.default !== undefined ? mod.default : mod;
@@ -0,0 +1,20 @@
1
+ // Auto-generated shim for '@omniviewdev/ui/sidebars'
2
+ // DO NOT EDIT -- regenerate with: pnpm --filter @omniviewdev/vite-plugin generate-shims
3
+
4
+ const mod = window.__OMNIVIEW_SHARED__['@omniviewdev/ui/sidebars'];
5
+
6
+ if (!mod) {
7
+ throw new Error(
8
+ '[omniview] Shared dependency "@omniviewdev/ui/sidebars" is not available on window.__OMNIVIEW_SHARED__. ' +
9
+ 'Ensure the Omniview host app is running and shared deps are exported before loading this plugin.'
10
+ );
11
+ }
12
+
13
+ export const ActivityBar = mod.ActivityBar;
14
+ export const NavMenu = mod.NavMenu;
15
+ export const PropertyGrid = mod.PropertyGrid;
16
+ export const SidebarGroup = mod.SidebarGroup;
17
+ export const SidebarPanel = mod.SidebarPanel;
18
+ export const SidebarTreeItem = mod.SidebarTreeItem;
19
+
20
+ export default mod.default !== undefined ? mod.default : mod;
@@ -0,0 +1,20 @@
1
+ // Auto-generated shim for '@omniviewdev/ui/table'
2
+ // DO NOT EDIT -- regenerate with: pnpm --filter @omniviewdev/vite-plugin generate-shims
3
+
4
+ const mod = window.__OMNIVIEW_SHARED__['@omniviewdev/ui/table'];
5
+
6
+ if (!mod) {
7
+ throw new Error(
8
+ '[omniview] Shared dependency "@omniviewdev/ui/table" is not available on window.__OMNIVIEW_SHARED__. ' +
9
+ 'Ensure the Omniview host app is running and shared deps are exported before loading this plugin.'
10
+ );
11
+ }
12
+
13
+ export const ColumnFilter = mod.ColumnFilter;
14
+ export const DataTable = mod.DataTable;
15
+ export const IDETable = mod.IDETable;
16
+ export const TableEmptyState = mod.TableEmptyState;
17
+ export const TableSkeleton = mod.TableSkeleton;
18
+ export const TableToolbar = mod.TableToolbar;
19
+
20
+ export default mod.default !== undefined ? mod.default : mod;
@@ -0,0 +1,31 @@
1
+ // Auto-generated shim for '@omniviewdev/ui/theme'
2
+ // DO NOT EDIT -- regenerate with: pnpm --filter @omniviewdev/vite-plugin generate-shims
3
+
4
+ const mod = window.__OMNIVIEW_SHARED__['@omniviewdev/ui/theme'];
5
+
6
+ if (!mod) {
7
+ throw new Error(
8
+ '[omniview] Shared dependency "@omniviewdev/ui/theme" is not available on window.__OMNIVIEW_SHARED__. ' +
9
+ 'Ensure the Omniview host app is running and shared deps are exported before loading this plugin.'
10
+ );
11
+ }
12
+
13
+ export const AppTheme = mod.AppTheme;
14
+ export const applyTheme = mod.applyTheme;
15
+ export const brand = mod.brand;
16
+ export const customShadows = mod.customShadows;
17
+ export const dataDisplayCustomizations = mod.dataDisplayCustomizations;
18
+ export const feedbackCustomizations = mod.feedbackCustomizations;
19
+ export const getDesignTokens = mod.getDesignTokens;
20
+ export const gray = mod.gray;
21
+ export const green = mod.green;
22
+ export const inputsCustomizations = mod.inputsCustomizations;
23
+ export const navigationCustomizations = mod.navigationCustomizations;
24
+ export const orange = mod.orange;
25
+ export const purple = mod.purple;
26
+ export const red = mod.red;
27
+ export const resetTheme = mod.resetTheme;
28
+ export const shape = mod.shape;
29
+ export const typography = mod.typography;
30
+
31
+ export default mod.default !== undefined ? mod.default : mod;
@@ -0,0 +1,23 @@
1
+ // Auto-generated shim for '@omniviewdev/ui/types'
2
+ // DO NOT EDIT -- regenerate with: pnpm --filter @omniviewdev/vite-plugin generate-shims
3
+
4
+ const mod = window.__OMNIVIEW_SHARED__['@omniviewdev/ui/types'];
5
+
6
+ if (!mod) {
7
+ throw new Error(
8
+ '[omniview] Shared dependency "@omniviewdev/ui/types" is not available on window.__OMNIVIEW_SHARED__. ' +
9
+ 'Ensure the Omniview host app is running and shared deps are exported before loading this plugin.'
10
+ );
11
+ }
12
+
13
+ export const INPUT_HEIGHTS = mod.INPUT_HEIGHTS;
14
+ export const sizeOverrideSx = mod.sizeOverrideSx;
15
+ export const statusToColor = mod.statusToColor;
16
+ export const toBorderRadius = mod.toBorderRadius;
17
+ export const toCssColor = mod.toCssColor;
18
+ export const toMuiColor = mod.toMuiColor;
19
+ export const toMuiInputSize = mod.toMuiInputSize;
20
+ export const toMuiSize = mod.toMuiSize;
21
+ export const toMuiVariant = mod.toMuiVariant;
22
+
23
+ export default mod.default !== undefined ? mod.default : mod;
@@ -0,0 +1,19 @@
1
+ // Auto-generated shim for '@omniviewdev/ui/typography'
2
+ // DO NOT EDIT -- regenerate with: pnpm --filter @omniviewdev/vite-plugin generate-shims
3
+
4
+ const mod = window.__OMNIVIEW_SHARED__['@omniviewdev/ui/typography'];
5
+
6
+ if (!mod) {
7
+ throw new Error(
8
+ '[omniview] Shared dependency "@omniviewdev/ui/typography" is not available on window.__OMNIVIEW_SHARED__. ' +
9
+ 'Ensure the Omniview host app is running and shared deps are exported before loading this plugin.'
10
+ );
11
+ }
12
+
13
+ export const CodeBlock = mod.CodeBlock;
14
+ export const CodeInline = mod.CodeInline;
15
+ export const Heading = mod.Heading;
16
+ export const Link = mod.Link;
17
+ export const Text = mod.Text;
18
+
19
+ export default mod.default !== undefined ? mod.default : mod;
@@ -0,0 +1,68 @@
1
+ // Auto-generated shim for '@tanstack/react-query'
2
+ // DO NOT EDIT -- regenerate with: pnpm --filter @omniviewdev/vite-plugin generate-shims
3
+
4
+ const mod = window.__OMNIVIEW_SHARED__['@tanstack/react-query'];
5
+
6
+ if (!mod) {
7
+ throw new Error(
8
+ '[omniview] Shared dependency "@tanstack/react-query" is not available on window.__OMNIVIEW_SHARED__. ' +
9
+ 'Ensure the Omniview host app is running and shared deps are exported before loading this plugin.'
10
+ );
11
+ }
12
+
13
+ export const CancelledError = mod.CancelledError;
14
+ export const HydrationBoundary = mod.HydrationBoundary;
15
+ export const InfiniteQueryObserver = mod.InfiniteQueryObserver;
16
+ export const IsRestoringProvider = mod.IsRestoringProvider;
17
+ export const Mutation = mod.Mutation;
18
+ export const MutationCache = mod.MutationCache;
19
+ export const MutationObserver = mod.MutationObserver;
20
+ export const QueriesObserver = mod.QueriesObserver;
21
+ export const Query = mod.Query;
22
+ export const QueryCache = mod.QueryCache;
23
+ export const QueryClient = mod.QueryClient;
24
+ export const QueryClientContext = mod.QueryClientContext;
25
+ export const QueryClientProvider = mod.QueryClientProvider;
26
+ export const QueryErrorResetBoundary = mod.QueryErrorResetBoundary;
27
+ export const QueryObserver = mod.QueryObserver;
28
+ export const dataTagErrorSymbol = mod.dataTagErrorSymbol;
29
+ export const dataTagSymbol = mod.dataTagSymbol;
30
+ export const defaultScheduler = mod.defaultScheduler;
31
+ export const defaultShouldDehydrateMutation = mod.defaultShouldDehydrateMutation;
32
+ export const defaultShouldDehydrateQuery = mod.defaultShouldDehydrateQuery;
33
+ export const dehydrate = mod.dehydrate;
34
+ export const experimental_streamedQuery = mod.experimental_streamedQuery;
35
+ export const focusManager = mod.focusManager;
36
+ export const hashKey = mod.hashKey;
37
+ export const hydrate = mod.hydrate;
38
+ export const infiniteQueryOptions = mod.infiniteQueryOptions;
39
+ export const isCancelledError = mod.isCancelledError;
40
+ export const isServer = mod.isServer;
41
+ export const keepPreviousData = mod.keepPreviousData;
42
+ export const matchMutation = mod.matchMutation;
43
+ export const matchQuery = mod.matchQuery;
44
+ export const noop = mod.noop;
45
+ export const notifyManager = mod.notifyManager;
46
+ export const onlineManager = mod.onlineManager;
47
+ export const queryOptions = mod.queryOptions;
48
+ export const replaceEqualDeep = mod.replaceEqualDeep;
49
+ export const shouldThrowError = mod.shouldThrowError;
50
+ export const skipToken = mod.skipToken;
51
+ export const unsetMarker = mod.unsetMarker;
52
+ export const useInfiniteQuery = mod.useInfiniteQuery;
53
+ export const useIsFetching = mod.useIsFetching;
54
+ export const useIsMutating = mod.useIsMutating;
55
+ export const useIsRestoring = mod.useIsRestoring;
56
+ export const useMutation = mod.useMutation;
57
+ export const useMutationState = mod.useMutationState;
58
+ export const usePrefetchInfiniteQuery = mod.usePrefetchInfiniteQuery;
59
+ export const usePrefetchQuery = mod.usePrefetchQuery;
60
+ export const useQueries = mod.useQueries;
61
+ export const useQuery = mod.useQuery;
62
+ export const useQueryClient = mod.useQueryClient;
63
+ export const useQueryErrorResetBoundary = mod.useQueryErrorResetBoundary;
64
+ export const useSuspenseInfiniteQuery = mod.useSuspenseInfiniteQuery;
65
+ export const useSuspenseQueries = mod.useSuspenseQueries;
66
+ export const useSuspenseQuery = mod.useSuspenseQuery;
67
+
68
+ export default mod.default !== undefined ? mod.default : mod;
@@ -0,0 +1,67 @@
1
+ // Auto-generated shim for '@tanstack/react-table'
2
+ // DO NOT EDIT -- regenerate with: pnpm --filter @omniviewdev/vite-plugin generate-shims
3
+
4
+ const mod = window.__OMNIVIEW_SHARED__['@tanstack/react-table'];
5
+
6
+ if (!mod) {
7
+ throw new Error(
8
+ '[omniview] Shared dependency "@tanstack/react-table" is not available on window.__OMNIVIEW_SHARED__. ' +
9
+ 'Ensure the Omniview host app is running and shared deps are exported before loading this plugin.'
10
+ );
11
+ }
12
+
13
+ export const ColumnFaceting = mod.ColumnFaceting;
14
+ export const ColumnFiltering = mod.ColumnFiltering;
15
+ export const ColumnGrouping = mod.ColumnGrouping;
16
+ export const ColumnOrdering = mod.ColumnOrdering;
17
+ export const ColumnPinning = mod.ColumnPinning;
18
+ export const ColumnSizing = mod.ColumnSizing;
19
+ export const ColumnVisibility = mod.ColumnVisibility;
20
+ export const GlobalFaceting = mod.GlobalFaceting;
21
+ export const GlobalFiltering = mod.GlobalFiltering;
22
+ export const Headers = mod.Headers;
23
+ export const RowExpanding = mod.RowExpanding;
24
+ export const RowPagination = mod.RowPagination;
25
+ export const RowPinning = mod.RowPinning;
26
+ export const RowSelection = mod.RowSelection;
27
+ export const RowSorting = mod.RowSorting;
28
+ export const _getVisibleLeafColumns = mod._getVisibleLeafColumns;
29
+ export const aggregationFns = mod.aggregationFns;
30
+ export const buildHeaderGroups = mod.buildHeaderGroups;
31
+ export const createCell = mod.createCell;
32
+ export const createColumn = mod.createColumn;
33
+ export const createColumnHelper = mod.createColumnHelper;
34
+ export const createRow = mod.createRow;
35
+ export const createTable = mod.createTable;
36
+ export const defaultColumnSizing = mod.defaultColumnSizing;
37
+ export const expandRows = mod.expandRows;
38
+ export const filterFns = mod.filterFns;
39
+ export const flattenBy = mod.flattenBy;
40
+ export const flexRender = mod.flexRender;
41
+ export const functionalUpdate = mod.functionalUpdate;
42
+ export const getCoreRowModel = mod.getCoreRowModel;
43
+ export const getExpandedRowModel = mod.getExpandedRowModel;
44
+ export const getFacetedMinMaxValues = mod.getFacetedMinMaxValues;
45
+ export const getFacetedRowModel = mod.getFacetedRowModel;
46
+ export const getFacetedUniqueValues = mod.getFacetedUniqueValues;
47
+ export const getFilteredRowModel = mod.getFilteredRowModel;
48
+ export const getGroupedRowModel = mod.getGroupedRowModel;
49
+ export const getMemoOptions = mod.getMemoOptions;
50
+ export const getPaginationRowModel = mod.getPaginationRowModel;
51
+ export const getSortedRowModel = mod.getSortedRowModel;
52
+ export const isFunction = mod.isFunction;
53
+ export const isNumberArray = mod.isNumberArray;
54
+ export const isRowSelected = mod.isRowSelected;
55
+ export const isSubRowSelected = mod.isSubRowSelected;
56
+ export const makeStateUpdater = mod.makeStateUpdater;
57
+ export const memo = mod.memo;
58
+ export const noop = mod.noop;
59
+ export const orderColumns = mod.orderColumns;
60
+ export const passiveEventSupported = mod.passiveEventSupported;
61
+ export const reSplitAlphaNumeric = mod.reSplitAlphaNumeric;
62
+ export const selectRowsFn = mod.selectRowsFn;
63
+ export const shouldAutoRemoveFilter = mod.shouldAutoRemoveFilter;
64
+ export const sortingFns = mod.sortingFns;
65
+ export const useReactTable = mod.useReactTable;
66
+
67
+ export default mod.default !== undefined ? mod.default : mod;
@@ -0,0 +1,30 @@
1
+ // Auto-generated shim for '@tanstack/react-virtual'
2
+ // DO NOT EDIT -- regenerate with: pnpm --filter @omniviewdev/vite-plugin generate-shims
3
+
4
+ const mod = window.__OMNIVIEW_SHARED__['@tanstack/react-virtual'];
5
+
6
+ if (!mod) {
7
+ throw new Error(
8
+ '[omniview] Shared dependency "@tanstack/react-virtual" is not available on window.__OMNIVIEW_SHARED__. ' +
9
+ 'Ensure the Omniview host app is running and shared deps are exported before loading this plugin.'
10
+ );
11
+ }
12
+
13
+ export const Virtualizer = mod.Virtualizer;
14
+ export const approxEqual = mod.approxEqual;
15
+ export const debounce = mod.debounce;
16
+ export const defaultKeyExtractor = mod.defaultKeyExtractor;
17
+ export const defaultRangeExtractor = mod.defaultRangeExtractor;
18
+ export const elementScroll = mod.elementScroll;
19
+ export const measureElement = mod.measureElement;
20
+ export const memo = mod.memo;
21
+ export const notUndefined = mod.notUndefined;
22
+ export const observeElementOffset = mod.observeElementOffset;
23
+ export const observeElementRect = mod.observeElementRect;
24
+ export const observeWindowOffset = mod.observeWindowOffset;
25
+ export const observeWindowRect = mod.observeWindowRect;
26
+ export const useVirtualizer = mod.useVirtualizer;
27
+ export const useWindowVirtualizer = mod.useWindowVirtualizer;
28
+ export const windowScroll = mod.windowScroll;
29
+
30
+ export default mod.default !== undefined ? mod.default : mod;