@luminix/mui-cms 0.1.20 → 0.1.22
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/bundle/mui-cms.bundle.iife.js +16 -16
- package/dist/mui-cms.js +394 -396
- package/package.json +2 -2
- package/types/dist.d.ts +2 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@luminix/mui-cms",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.22",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "bundle/mui-cms.js",
|
|
6
6
|
"module": "dist/mui-cms.js",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"@emotion/styled": "^11.13.0",
|
|
20
20
|
"@fontsource/roboto": "^5.0.12",
|
|
21
21
|
"@luminix/core": "^0.3.8",
|
|
22
|
-
"@luminix/react": "^0.3.
|
|
22
|
+
"@luminix/react": "^0.3.23",
|
|
23
23
|
"@luminix/support": "^0.4.9",
|
|
24
24
|
"@mui/icons-material": "^5.16.5",
|
|
25
25
|
"@mui/material": "^5.16.5",
|
package/types/dist.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ import { default as DialogProvider } from './components/providers/DialogProvider
|
|
|
6
6
|
import { default as LayoutProvider } from './components/providers/LayoutProvider';
|
|
7
7
|
import { default as ModelProvider } from './components/providers/ModelProvider';
|
|
8
8
|
import { default as NotificationProvider } from './components/providers/NotificationProvider';
|
|
9
|
+
import { default as TableProvider } from './components/providers/TableProvider';
|
|
9
10
|
import { default as useActionEvent } from './hooks/useActionEvent';
|
|
10
11
|
import { default as useBackButton } from './hooks/useBackButton';
|
|
11
12
|
import { default as useCurrentModel } from './hooks/useCurrentModel';
|
|
@@ -25,4 +26,4 @@ import { default as useTable } from './hooks/useTable';
|
|
|
25
26
|
import { default as Cms } from './facades/Cms';
|
|
26
27
|
import { default as Icon } from './facades/Icon';
|
|
27
28
|
import { default as Filter } from './facades/Filter';
|
|
28
|
-
export { CmsServiceProvider, i18NextServiceProvider, LuminixCms, Link, Cms, Filter, Icon, useActionEvent, useBackButton, useCurrentModel, useDialog, useDisplaceNotifications, useHandleError, useHasSearch, useIsDesktopMode, useLayoutConfig, useMenu, useNotify, usePageTitle, useSearch, useSelection, useSetPageTitle, useTable, DialogProvider, LayoutProvider, ModelProvider, NotificationProvider, };
|
|
29
|
+
export { CmsServiceProvider, i18NextServiceProvider, LuminixCms, Link, Cms, Filter, Icon, useActionEvent, useBackButton, useCurrentModel, useDialog, useDisplaceNotifications, useHandleError, useHasSearch, useIsDesktopMode, useLayoutConfig, useMenu, useNotify, usePageTitle, useSearch, useSelection, useSetPageTitle, useTable, DialogProvider, LayoutProvider, ModelProvider, NotificationProvider, TableProvider, };
|