@sinco/react 1.1.2-rc.79 → 1.1.2-rc.80

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/index.esm.js CHANGED
@@ -8560,8 +8560,7 @@ var components = {
8560
8560
  fontSize: 13,
8561
8561
  fontStyle: "normal",
8562
8562
  fontWeight: 400,
8563
- letterSpacing: "0.15px",
8564
- lineHeight: 19
8563
+ letterSpacing: "0.15px"
8565
8564
  },
8566
8565
  standard: {
8567
8566
  "&.MuiInputLabel-standard.MuiInputLabel-sizeSmall:not(.MuiInputLabel-shrink)": {
@@ -13376,6 +13375,7 @@ var FooterAction = function FooterAction(_ref) {
13376
13375
  var leftContent = _ref.leftContent,
13377
13376
  rightContent = _ref.rightContent,
13378
13377
  labelChangeCounter = _ref.labelChangeCounter;
13378
+ _ref.children;
13379
13379
  return React__default.createElement(AppBar$1, {
13380
13380
  position: "fixed",
13381
13381
  color: "inherit",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sinco/react",
3
- "version": "1.1.2-rc.79",
3
+ "version": "1.1.2-rc.80",
4
4
  "description": "package for the configuration of mui react sinco",
5
5
  "private": false,
6
6
  "license": "MIT",
@@ -5,5 +5,5 @@ interface FooterActionsProperties {
5
5
  leftContent?: React.ReactNode;
6
6
  rightContent?: React.ReactNode;
7
7
  }
8
- export declare const FooterAction: ({ leftContent, rightContent, labelChangeCounter, }: FooterActionsProperties) => React.JSX.Element;
8
+ export declare const FooterAction: ({ leftContent, rightContent, labelChangeCounter, children, }: FooterActionsProperties) => React.JSX.Element;
9
9
  export {};