@sinco/react 1.2.3-rc.15 → 1.2.3-rc.17

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
@@ -8875,7 +8875,7 @@ var paletteADPRO = _objectSpread2({
8875
8875
  contrastText: "#545E73"
8876
8876
  }
8877
8877
  }, BasicPalette);
8878
- _objectSpread2({
8878
+ var paletteADC = _objectSpread2({
8879
8879
  primary: {
8880
8880
  50: "#F8FAFB",
8881
8881
  100: "#E6EFF0",
@@ -12241,10 +12241,14 @@ var ERPTheme = _objectSpread2({
12241
12241
  var ADPROTheme = _objectSpread2({
12242
12242
  palette: paletteADPRO
12243
12243
  }, BasicTheme);
12244
+ var ADCTheme = _objectSpread2({
12245
+ palette: paletteADC
12246
+ }, BasicTheme);
12244
12247
  // END Opcion 2
12245
12248
 
12246
12249
  var SincoTheme = createTheme(_objectSpread2({}, ERPTheme));
12247
12250
  var AdproSincoTheme = createTheme(_objectSpread2({}, ADPROTheme));
12251
+ var ADCSincoTheme = createTheme(_objectSpread2({}, ADCTheme));
12248
12252
 
12249
12253
  const reflow = node => node.scrollTop;
12250
12254
  function getTransitionProps(props, options) {
@@ -21901,4 +21905,4 @@ var useDynamicColor = function useDynamicColor(url) {
21901
21905
  };
21902
21906
  };
21903
21907
 
21904
- export { AdjuntarArchivo, AdproSincoTheme, CardRadio, DrawerComponent as Drawer, DrawerComponent, DynamicColor, EmptyStateComponent as EmptyState, EmptyStateComponent, FooterAction, Incognit, IncognitIcon, IncognitIconOutlined, IncognitOutlined, PageHeaderComponent as PageHeader, PageHeaderComponent, ProgressSinco, SincoTheme, ToastNotification, useDynamicColor };
21908
+ export { ADCSincoTheme, AdjuntarArchivo, AdproSincoTheme, CardRadio, DrawerComponent as Drawer, DrawerComponent, DynamicColor, EmptyStateComponent as EmptyState, EmptyStateComponent, FooterAction, Incognit, IncognitIcon, IncognitIconOutlined, IncognitOutlined, PageHeaderComponent as PageHeader, PageHeaderComponent, ProgressSinco, SincoTheme, ToastNotification, useDynamicColor };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sinco/react",
3
- "version": "1.2.3-rc.15",
3
+ "version": "1.2.3-rc.17",
4
4
  "description": "package for the configuration of mui react sinco",
5
5
  "private": false,
6
6
  "license": "MIT",
@@ -14,7 +14,7 @@ export interface CardRadioProps {
14
14
  onChange: (value: string | number) => void;
15
15
  value: string | number;
16
16
  checked?: boolean;
17
- sx: SxProps;
17
+ sx?: SxProps;
18
18
  }
19
19
  export declare const CardRadio: FC<CardRadioProps>;
20
20
  export {};
@@ -1,2 +1,3 @@
1
1
  export declare const SincoTheme: import("@mui/material/styles").Theme;
2
2
  export declare let AdproSincoTheme: import("@mui/material/styles").Theme;
3
+ export declare let ADCSincoTheme: import("@mui/material/styles").Theme;
@@ -1,3 +1,4 @@
1
1
  import { ThemeOptions } from "@mui/material/styles";
2
2
  export declare const ERPTheme: ThemeOptions;
3
3
  export declare const ADPROTheme: ThemeOptions;
4
+ export declare const ADCTheme: ThemeOptions;