@m4l/components 0.0.52 → 0.0.53
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.
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import "react";
|
|
2
|
+
import "@m4l/core";
|
|
3
|
+
import "@mui/material";
|
|
4
|
+
import "react/jsx-runtime";
|
|
5
|
+
function getFormattersComponentsDictionary() {
|
|
6
|
+
return ["formatters"];
|
|
7
|
+
}
|
|
8
|
+
const defaultFormattersDictionary = {
|
|
9
|
+
pager: {
|
|
10
|
+
boolean_yes: "Yes",
|
|
11
|
+
boolean_no: "No",
|
|
12
|
+
boolean_true: "True",
|
|
13
|
+
boolean_false: "False"
|
|
14
|
+
}
|
|
15
|
+
};
|
|
16
|
+
export { defaultFormattersDictionary as d, getFormattersComponentsDictionary as g };
|
|
@@ -3,6 +3,7 @@ export * from '../components/hook-form';
|
|
|
3
3
|
export * from '../components/mui_extended';
|
|
4
4
|
export * from '../components/CompanyLogo';
|
|
5
5
|
export * from './formatters';
|
|
6
|
+
export * from './formatters/dicctionary';
|
|
6
7
|
export { DataGrid } from '../components/DataGrid';
|
|
7
8
|
export type { Column } from 'react-data-grid';
|
|
8
9
|
export type { RowKey } from '../components/DataGrid/types';
|
package/dist/index.js
CHANGED
|
@@ -28,6 +28,7 @@ export { T as Typography } from "./components/mui_extended/Typography/index.js";
|
|
|
28
28
|
export { C as CompanyLogo } from "./components/CompanyLogo/index.js";
|
|
29
29
|
export { B as BooleanFormatter } from "./components/formatters/BooleanFormatter/index.js";
|
|
30
30
|
export { D as DateFormatter } from "./components/formatters/DateFormatter/index.js";
|
|
31
|
+
export { d as defaultFormattersDictionary, g as getFormattersComponentsDictionary } from "./components/formatters/index.js";
|
|
31
32
|
export { D as DataGrid, g as getGridComponentsDictionary } from "./components/DataGrid/index.js";
|
|
32
33
|
export { D as DynamicFilter, d as defaultDynamicFilterDictionary, g as getDynamicFilterComponentsDictionary } from "./components/DynamicFilter/index.js";
|
|
33
34
|
export { A as ActionCancel } from "./components/CommonActions/components/ActionCancel/index.js";
|
package/dist/vendor.js
CHANGED
|
@@ -60,6 +60,7 @@ import "./components/mui_extended/LinkWithRoute/index.js";
|
|
|
60
60
|
import "./components/mui_extended/Typography/index.js";
|
|
61
61
|
import "./components/formatters/BooleanFormatter/index.js";
|
|
62
62
|
import "./components/formatters/DateFormatter/index.js";
|
|
63
|
+
import "./components/formatters/index.js";
|
|
63
64
|
import "./components/CommonActions/components/ActionCancel/index.js";
|
|
64
65
|
import "./components/CommonActions/components/ActionIntro/index.js";
|
|
65
66
|
import "./components/CommonActions/components/ActionFormCancel/index.js";
|