react-luminus-components 1.2.25 → 1.2.26

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.
@@ -25,6 +25,8 @@ export type { default as HookFormInputProps } from './prop-types/HookFormInputPr
25
25
  export type { default as ContainerProps } from './prop-types/ContainerProps';
26
26
  export type { default as NameIdStringModel } from './types/NameIdStringModel';
27
27
  export type { default as NameIdIntModel } from './types/NameIdIntModel';
28
+ export type { default as NameIdStringOptionalModel } from './types/NameIdStringOptionalModel';
29
+ export type { default as NameIdIntOptionalModel } from './types/NameIdIntOptionalModel';
28
30
  export type { default as PhotoLibraryItemModel } from './types/PhotoLibraryItemModel';
29
31
  export type { default as PhotoAction } from './types/PhotoAction';
30
32
  export type { default as EmployeeIndexModel } from './types/EmployeeIndexModel';
@@ -0,0 +1,5 @@
1
+ type NameIdIntOptionalModel = {
2
+ id: number | null;
3
+ name: string | null;
4
+ };
5
+ export default NameIdIntOptionalModel;
@@ -0,0 +1,5 @@
1
+ type NameIdStringOptionalModel = {
2
+ id: string | null;
3
+ name: string | null;
4
+ };
5
+ export default NameIdStringOptionalModel;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-luminus-components",
3
- "version": "1.2.25",
3
+ "version": "1.2.26",
4
4
  "description": "Library of React Components reusable in Luminus projects (Fleetman, CAFM)",
5
5
  "type": "module",
6
6
  "repository": {