jamespot-react-core 1.1.93 → 1.1.95

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.
@@ -1,14 +1,16 @@
1
1
  /// <reference types="react" />
2
2
  import type { JRCAppColumnProps } from 'jamespot-react-components';
3
+ export declare type TwoColLayoutRoute = {
4
+ path: string;
5
+ key: string;
6
+ icon: string;
7
+ label: string;
8
+ group?: string;
9
+ };
10
+ export declare type TwoColLayoutRoutes = Record<string, TwoColLayoutRoute>;
3
11
  export declare type TwoColLayoutProps = {
4
12
  extensionRoute: string;
5
- routes: Record<string, {
6
- path: string;
7
- key: string;
8
- icon: string;
9
- label: string;
10
- group?: string;
11
- }>;
13
+ routes: TwoColLayoutRoutes;
12
14
  description: JRCAppColumnProps['description'];
13
15
  };
14
16
  export declare function TwoColLayout(props: TwoColLayoutProps): JSX.Element;
@@ -1,4 +1,4 @@
1
1
  export { ExtensionProviderProps } from './ExtensionProvider.component';
2
2
  export { IfAppIsActivatedProps } from './IfAppIsActivated.component';
3
3
  export { RTProviderProps } from './RTProvider.component';
4
- export { TwoColLayoutProps } from './TwoColLayout';
4
+ export { TwoColLayoutProps, TwoColLayoutRoutes, TwoColLayoutRoute } from './TwoColLayout';
@@ -17,6 +17,8 @@ export declare type DisplayInputComponentProps = {
17
17
  name: string;
18
18
  widget: Widget;
19
19
  mandatory: boolean;
20
+ width?: string;
21
+ margin?: string;
20
22
  };
21
23
  export declare type DisplayElementComponent<Object> = {
22
24
  render: React.FunctionComponent<RenderAttributeProps<Object>>;
@@ -67,6 +67,7 @@ declare const _default: {
67
67
  readonly InputRichText: "JRCInputRichText";
68
68
  readonly InputSelect: "JRCInputSelect";
69
69
  readonly InputText: "JRCInputText";
70
+ readonly InputTextIconButton: "JRCInputTextIconButton";
70
71
  readonly InputTextarea: "JRCInputTextarea";
71
72
  readonly InputTime: "JRCInputTime";
72
73
  readonly List: "JRCList";
@@ -80,6 +81,7 @@ declare const _default: {
80
81
  readonly SkeletonLine: "JRCSkeletonLine";
81
82
  readonly SkeletonSquare: "JRCSkeletonSquare";
82
83
  readonly Stepper: "JRCStepper";
84
+ readonly StepperPage: "JRCStepperPage";
83
85
  readonly StyledHref: "JRCStyledHref";
84
86
  readonly StyledInput: "StyledInput";
85
87
  readonly Tabs: "JRCTabs";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jamespot-react-core",
3
- "version": "1.1.93",
3
+ "version": "1.1.95",
4
4
  "description": "Jamespot React Core",
5
5
  "main": "./build/app.bundle.js",
6
6
  "types": "./build/App.d.ts",
@@ -65,8 +65,8 @@
65
65
  "@reduxjs/toolkit": "^1.9.0",
66
66
  "history": "^5.3.0",
67
67
  "jamespot-front-business": "^1.1.7",
68
- "jamespot-react-components": "^1.0.121",
69
- "jamespot-user-api": "^1.0.93",
68
+ "jamespot-react-components": "^1.0.123",
69
+ "jamespot-user-api": "^1.0.94",
70
70
  "react": "^17.0.2",
71
71
  "react-dom": "^17.0.2",
72
72
  "react-hook-form": "^7.25.0",