@sinco/react 1.0.15-rc.41 → 1.0.15-rc.43

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sinco/react",
3
- "version": "1.0.15-rc.41",
3
+ "version": "1.0.15-rc.43",
4
4
  "description": "package for the configuration of mui react sinco",
5
5
  "private": false,
6
6
  "license": "MIT",
@@ -8,14 +8,6 @@
8
8
  "type": "git",
9
9
  "url": "https://github.com/SincosoftSAS/DesignSystem.git"
10
10
  },
11
- "peerDependencies": {
12
- "react": "^18.2.0",
13
- "@emotion/react": "^11.11.0",
14
- "@emotion/styled": "^11.11.0",
15
- "@mui/icons-material": "^5.14.3",
16
- "@mui/material": "^5.14.13",
17
- "@mui/x-data-grid": "^6.6.0"
18
- },
19
11
  "sideEffects": false,
20
12
  "module": "./index.js",
21
13
  "main": "./index.js",
@@ -1,5 +1,5 @@
1
1
  import React from "react";
2
- export interface PageheaderProperties {
2
+ interface PageheaderProperties {
3
3
  title: string | React.ReactNode;
4
4
  subtitle?: string | React.ReactNode;
5
5
  actions?: React.ReactNode;
@@ -7,3 +7,4 @@ export interface PageheaderProperties {
7
7
  fixed?: boolean;
8
8
  }
9
9
  export declare const PageHeaderComponent: ({ title, subtitle, actions, buttonBack, fixed, }: PageheaderProperties) => JSX.Element;
10
+ export {};