@m4l/components 9.2.19 β†’ 9.2.20

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.
@@ -53,8 +53,7 @@ const checkBoxStyles = {
53
53
  }
54
54
  },
55
55
  "&.Mui-focusVisible, &:focus-visible": {
56
- outline: `1px solid ${theme.vars.palette["primary"].focusVisible}`,
57
- outlineOffset: 2
56
+ outline: `1px solid ${theme.vars.palette["primary"].focusVisible}`
58
57
  },
59
58
  // Historia Disabled para CheckBox πŸ˜Άβ€πŸŒ«οΈ
60
59
  ...ownerState.disabled && {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@m4l/components",
3
- "version": "9.2.19",
3
+ "version": "9.2.20",
4
4
  "license": "UNLICENSED",
5
5
  "lint-staged": {
6
6
  "*.{js,ts,tsx}": "eslint --fix --max-warnings 0 --no-warn-ignored"
@@ -1,4 +1,3 @@
1
- import { Formatters } from '@m4l/graphics';
2
1
  import { HostToolsType, Toaster } from '@m4l/core';
3
2
  import { BaseDataForTesting } from './types';
4
3
  export declare const moduleIdForTesting = "testing";
@@ -66,4 +65,3 @@ export declare const environmentDataForTesting: {
66
65
  export declare const baseDataForTesting: BaseDataForTesting;
67
66
  export declare const mock_toaster: Toaster;
68
67
  export declare const hostToolsDataForTesting: HostToolsType;
69
- export declare const formatterValues: Formatters;
package/test/mocks.d.ts CHANGED
@@ -1,3 +1,4 @@
1
+ import { Formatters } from '@m4l/graphics';
1
2
  import * as core from '@m4l/core';
2
3
  import * as graphics from '@m4l/graphics';
3
4
  export declare const mock_addFlag: import('vitest').Mock<(...args: any[]) => any>;
@@ -14,6 +15,7 @@ export declare const mock_useEnvironment: {
14
15
  environment_assets: string;
15
16
  domain_token: string;
16
17
  };
18
+ export declare const formatterValues: Formatters;
17
19
  export declare const mockedGraphics: {
18
20
  useFormatter: import('vitest').MockInstance<() => graphics.Formatters>;
19
21
  };