@elliemae/ds-icons 3.46.4 → 3.46.6

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,38 +1,15 @@
1
1
  import { type Theme, type FlattenInterpolation } from '@elliemae/ds-system';
2
2
  import type { SvgIconT } from './react-desc-prop-types.js';
3
- interface StyledWrapperPropsT {
4
- size: SvgIconT.SizeType | undefined;
5
- svgColor?: string | undefined;
6
- width: string | number | undefined;
7
- height: string | number | undefined;
8
- }
9
- export declare const xxlSizes: FlattenInterpolation<import("styled-components").ThemedStyledProps<{
10
- theme: Theme;
11
- }, import("@xstyled/system").Theme>>;
12
- export declare const xlSizes: FlattenInterpolation<import("styled-components").ThemedStyledProps<{
13
- theme: Theme;
14
- }, import("@xstyled/system").Theme>>;
15
- export declare const lSizes: FlattenInterpolation<import("styled-components").ThemedStyledProps<{
16
- theme: Theme;
17
- }, import("@xstyled/system").Theme>>;
18
- export declare const mSizes: FlattenInterpolation<import("styled-components").ThemedStyledProps<{
19
- theme: Theme;
20
- }, import("@xstyled/system").Theme>>;
21
- export declare const sSizes: FlattenInterpolation<import("styled-components").ThemedStyledProps<{
22
- theme: Theme;
23
- }, import("@xstyled/system").Theme>>;
24
- export declare const xsSizes: FlattenInterpolation<import("styled-components").ThemedStyledProps<{
25
- theme: Theme;
26
- }, import("@xstyled/system").Theme>>;
27
- export declare const xxsSizes: FlattenInterpolation<import("styled-components").ThemedStyledProps<{
28
- theme: Theme;
29
- }, import("@xstyled/system").Theme>>;
30
- export declare const standarSizes: FlattenInterpolation<import("styled-components").ThemedStyledProps<{
31
- theme: Theme;
32
- }, import("@xstyled/system").Theme>>;
3
+ export declare const xxlSizes: FlattenInterpolation<import("styled-components").ThemeProps<import("@xstyled/system").Theme>>;
4
+ export declare const xlSizes: FlattenInterpolation<import("styled-components").ThemeProps<import("@xstyled/system").Theme>>;
5
+ export declare const lSizes: FlattenInterpolation<import("styled-components").ThemeProps<import("@xstyled/system").Theme>>;
6
+ export declare const mSizes: FlattenInterpolation<import("styled-components").ThemeProps<import("@xstyled/system").Theme>>;
7
+ export declare const sSizes: FlattenInterpolation<import("styled-components").ThemeProps<import("@xstyled/system").Theme>>;
8
+ export declare const xsSizes: FlattenInterpolation<import("styled-components").ThemeProps<import("@xstyled/system").Theme>>;
9
+ export declare const xxsSizes: FlattenInterpolation<import("styled-components").ThemeProps<import("@xstyled/system").Theme>>;
10
+ export declare const standarSizes: FlattenInterpolation<import("styled-components").ThemeProps<import("@xstyled/system").Theme>>;
33
11
  export declare const getSize: (size: SvgIconT.SizeType | undefined) => FlattenInterpolation<{
34
12
  theme: Theme;
35
13
  }>;
36
- export declare const StyledSvg: import("styled-components").StyledComponent<"svg", Theme, StyledWrapperPropsT & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"svg">, never>;
37
- export declare const StyledWrapper: import("styled-components").StyledComponent<"span", Theme, StyledWrapperPropsT & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"span">, never>;
38
- export {};
14
+ export declare const StyledSvg: any;
15
+ export declare const StyledWrapper: any;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/ds-icons",
3
- "version": "3.46.4",
3
+ "version": "3.46.6",
4
4
  "license": "MIT",
5
5
  "description": "ICE MT - Dimsum - Icons",
6
6
  "files": [
@@ -1573,14 +1573,14 @@
1573
1573
  },
1574
1574
  "dependencies": {
1575
1575
  "@xstyled/system": "~3.7.3",
1576
- "@elliemae/ds-classnames": "3.46.4",
1577
- "@elliemae/ds-props-helpers": "3.46.4",
1578
- "@elliemae/ds-system": "3.46.4"
1576
+ "@elliemae/ds-classnames": "3.46.6",
1577
+ "@elliemae/ds-props-helpers": "3.46.6",
1578
+ "@elliemae/ds-system": "3.46.6"
1579
1579
  },
1580
1580
  "devDependencies": {
1581
1581
  "@elliemae/pui-cli": "9.0.0-next.50",
1582
1582
  "styled-components": "~5.3.9",
1583
- "@elliemae/ds-monorepo-devops": "3.46.4"
1583
+ "@elliemae/ds-monorepo-devops": "3.46.6"
1584
1584
  },
1585
1585
  "peerDependencies": {
1586
1586
  "lodash": "^4.17.21",
@@ -1,29 +0,0 @@
1
- /// <reference types="react" />
2
- import type { GlobalAttributesT, XstyledProps, ValidationMap } from '@elliemae/ds-props-helpers';
3
- export declare namespace SvgIconT {
4
- type SizeType = 'xxs' | 'xs' | 's' | 'm' | 'l' | 'xl' | 'xxl';
5
- type ColorType = ['neutral', '900' | '600' | '500' | '400' | '0'] | ['danger', '900'] | ['warning', '600' | '900'] | ['success', '900'] | ['brand-primary', '600' | '700' | '800'];
6
- interface DefaultProps {
7
- component: React.ComponentType | keyof JSX.IntrinsicElements;
8
- containerProps: object;
9
- }
10
- interface OptionalProps {
11
- children?: React.ReactNode;
12
- viewBox?: string;
13
- size?: SizeType;
14
- color?: ColorType;
15
- paths?: string[];
16
- fill?: string;
17
- innerRef?: React.MutableRefObject<HTMLElement | null> | ((_ref: HTMLElement) => void);
18
- width?: number | string;
19
- height?: number | string;
20
- className?: string;
21
- style?: React.CSSProperties;
22
- }
23
- interface RequiredProps {
24
- }
25
- interface Props extends Partial<DefaultProps>, RequiredProps, OptionalProps, Omit<GlobalAttributesT<HTMLSpanElement>, keyof DefaultProps | keyof OptionalProps>, Omit<XstyledProps, keyof DefaultProps | keyof OptionalProps> {
26
- }
27
- }
28
- export declare const defaultProps: SvgIconT.DefaultProps;
29
- export declare const propTypes: ValidationMap<unknown>;