nectiasw 0.0.108 → 0.0.110

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,5 +1,8 @@
1
1
  import { default as React } from 'react';
2
2
 
3
+ export type CheckboxIconProps = {
4
+ status?: boolean;
5
+ } & Pick<CheckboxProps, "left" | "top" | "right">;
3
6
  export type CheckboxProps = {
4
7
  id?: string;
5
8
  top?: string;
@@ -1,4 +1,4 @@
1
- import { CheckboxProps } from '.';
1
+ import { CheckboxIconProps } from '.';
2
2
 
3
3
  export declare const StyledCheckbox: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('styled-components').FastOmit<import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, Omit<import('react').DetailedHTMLProps<import('react').InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref"> & {
4
4
  ref?: ((instance: HTMLInputElement | null) => void | import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import('react').RefObject<HTMLInputElement> | null | undefined;
@@ -8,7 +8,7 @@ export declare const CheckboxIcon: import('styled-components/dist/types').IStyle
8
8
  titleId?: string;
9
9
  } & import('react').RefAttributes<SVGSVGElement>, "ref"> & {
10
10
  ref?: ((instance: SVGSVGElement | null) => void | import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import('react').RefObject<SVGSVGElement> | null | undefined;
11
- }, CheckboxProps>> & string & Omit<import('react').ForwardRefExoticComponent<Omit<import('react').SVGProps<SVGSVGElement>, "ref"> & {
11
+ }, CheckboxIconProps>> & string & Omit<import('react').ForwardRefExoticComponent<Omit<import('react').SVGProps<SVGSVGElement>, "ref"> & {
12
12
  title?: string;
13
13
  titleId?: string;
14
14
  } & import('react').RefAttributes<SVGSVGElement>>, keyof import('react').Component<any, {}, any>>;
@@ -17,7 +17,7 @@ export declare const CheckboxIconFilter: import('styled-components/dist/types').
17
17
  titleId?: string;
18
18
  } & import('react').RefAttributes<SVGSVGElement>, "ref"> & {
19
19
  ref?: ((instance: SVGSVGElement | null) => void | import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import('react').RefObject<SVGSVGElement> | null | undefined;
20
- }, CheckboxProps>> & string & Omit<import('react').ForwardRefExoticComponent<Omit<import('react').SVGProps<SVGSVGElement>, "ref"> & {
20
+ }, CheckboxIconProps>> & string & Omit<import('react').ForwardRefExoticComponent<Omit<import('react').SVGProps<SVGSVGElement>, "ref"> & {
21
21
  title?: string;
22
22
  titleId?: string;
23
23
  } & import('react').RefAttributes<SVGSVGElement>>, keyof import('react').Component<any, {}, any>>;
package/dist/index.d.ts CHANGED
@@ -87,7 +87,8 @@ export type { PermissionsProps, AuthorizationProps, AuthorizationFilterArgs, Aut
87
87
  export { checkSystems, authorization } from './providers/permissions/utils';
88
88
  export { SP_Permission, IN_Permission } from './providers/permissions/types';
89
89
  export { MicrofrontHost } from './providers/microfront';
90
- export type { Wrapper, UIArguments, MicrofrontProps, WrappedComponentProps, SignalLayoutConnection, CommonSignalConnection as CommonSignal, App, } from './providers/microfront/types';
90
+ export type { Wrapper, UIArguments, MicrofrontProps, WrappedComponentProps, SignalLayoutConnection, CommonSignalConnection as CommonSignal, } from './providers/microfront/types';
91
+ export { App } from './providers/microfront/types';
91
92
  export { Color } from './theme';
92
93
  export { Logger, LogColors, LogLevel } from './providers/logger';
93
94
  export { GrantSystem, Private } from './providers/private';