@pushwoosh/kit-icons 1.4.2 → 1.4.4

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.
Files changed (41) hide show
  1. package/dist/bullet-icon/assets/index.d.ts +13 -11
  2. package/dist/bullet-icon/bullet-icon.types.d.ts +1 -0
  3. package/dist/check-round-icon/assets/index.d.ts +16 -0
  4. package/dist/check-round-icon/check-round-icon.types.d.ts +1 -0
  5. package/dist/device-icon/assets/index.d.ts +1 -1
  6. package/dist/docs-icon/assets/index.d.ts +0 -5
  7. package/dist/docs-icon/docs-icon.types.d.ts +2 -2
  8. package/dist/double-chevron-icon/assets/index.d.ts +19 -0
  9. package/dist/double-chevron-icon/double-chevron-icon.component.d.ts +3 -0
  10. package/dist/double-chevron-icon/double-chevron-icon.types.d.ts +6 -0
  11. package/dist/double-chevron-icon/index.d.ts +2 -0
  12. package/dist/drag-icon/assets/index.d.ts +1 -1
  13. package/dist/dropdown-icon/assets/index.d.ts +12 -4
  14. package/dist/dropdown-icon/dropdown-icon.types.d.ts +1 -0
  15. package/dist/funnel-icon/assets/index.d.ts +3 -3
  16. package/dist/help-round-icon/assets/index.d.ts +1 -1
  17. package/dist/image-icon/assets/index.d.ts +2 -2
  18. package/dist/index.js +1 -1
  19. package/dist/index.js.map +1 -1
  20. package/dist/industry-icon/assets/index.d.ts +1 -1
  21. package/dist/info-round-icon/assets/index.d.ts +1 -1
  22. package/dist/journey-icon/assets/index.d.ts +2 -2
  23. package/dist/kebab-icon/assets/index.d.ts +1 -1
  24. package/dist/limit-icon/assets/index.d.ts +3 -3
  25. package/dist/menu-icon/assets/index.d.ts +1 -1
  26. package/dist/more-icon/assets/index.d.ts +1 -1
  27. package/dist/notes-list-icon/assets/index.d.ts +6 -0
  28. package/dist/notes-list-icon/index.d.ts +2 -0
  29. package/dist/notes-list-icon/notes-list-icon.component.d.ts +3 -0
  30. package/dist/notes-list-icon/notes-list-icon.types.d.ts +6 -0
  31. package/dist/notification-icon/assets/index.d.ts +14 -6
  32. package/dist/notification-icon/notification-icon.types.d.ts +1 -1
  33. package/dist/platform-logo-icon/assets/index.d.ts +2 -2
  34. package/dist/platform-logo-icon/platform-logo-icon.types.d.ts +1 -1
  35. package/dist/play-round-icon/assets/index.d.ts +2 -2
  36. package/dist/push-icon/assets/index.d.ts +1 -1
  37. package/dist/tag-icon/assets/index.d.ts +2 -2
  38. package/dist/tiles-icon/assets/index.d.ts +2 -2
  39. package/dist/time-icon/assets/index.d.ts +1 -1
  40. package/dist/trophy-icon/assets/index.d.ts +2 -2
  41. package/package.json +1 -1
@@ -1,14 +1,16 @@
1
1
  export declare const AssetMap: {
2
- circle: {
3
- filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
4
- lined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
5
- };
6
- square: {
7
- filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
8
- lined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
9
- };
10
- triangle: {
11
- filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
12
- lined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
2
+ small: {
3
+ circle: {
4
+ filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
5
+ lined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
6
+ };
7
+ square: {
8
+ filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
9
+ lined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
10
+ };
11
+ triangle: {
12
+ filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
13
+ lined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
14
+ };
13
15
  };
14
16
  };
@@ -1,6 +1,7 @@
1
1
  import React from 'react';
2
2
  export declare type BulletIconProps = Omit<JSX.IntrinsicElements['div'], 'ref'> & {
3
3
  readonly boxRef?: React.Ref<HTMLDivElement>;
4
+ readonly size: 'small';
4
5
  readonly type: 'circle' | 'square' | 'triangle';
5
6
  readonly view: 'filled' | 'lined';
6
7
  };
@@ -1,9 +1,25 @@
1
1
  export declare const AssetMap: {
2
2
  medium: {
3
+ blank: {
4
+ filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
5
+ lined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
6
+ };
7
+ fill: {
8
+ filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
9
+ lined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
10
+ };
3
11
  filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
4
12
  lined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
5
13
  };
6
14
  small: {
15
+ blank: {
16
+ filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
17
+ lined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
18
+ };
19
+ fill: {
20
+ filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
21
+ lined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
22
+ };
7
23
  filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
8
24
  lined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
9
25
  };
@@ -2,5 +2,6 @@ import React from 'react';
2
2
  export declare type CheckRoundIconProps = Omit<JSX.IntrinsicElements['div'], 'ref'> & {
3
3
  readonly boxRef?: React.Ref<HTMLDivElement>;
4
4
  readonly size: 'medium' | 'small';
5
+ readonly type: 'blank' | 'fill';
5
6
  readonly view: 'filled' | 'lined';
6
7
  };
@@ -5,7 +5,7 @@ export declare const AssetMap: {
5
5
  lined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
6
6
  };
7
7
  mobile: {
8
- filled: null;
8
+ filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
9
9
  lined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
10
10
  };
11
11
  other: {
@@ -1,10 +1,5 @@
1
1
  export declare const AssetMap: {
2
2
  medium: {
3
- filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
4
3
  lined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
5
4
  };
6
- small: {
7
- filled: null;
8
- lined: null;
9
- };
10
5
  };
@@ -1,6 +1,6 @@
1
1
  import React from 'react';
2
2
  export declare type DocsIconProps = Omit<JSX.IntrinsicElements['div'], 'ref'> & {
3
3
  readonly boxRef?: React.Ref<HTMLDivElement>;
4
- readonly size: 'medium' | 'small';
5
- readonly view: 'filled' | 'lined';
4
+ readonly size: 'medium';
5
+ readonly view: 'lined';
6
6
  };
@@ -0,0 +1,19 @@
1
+ /// <reference types="react" />
2
+ export declare const AssetMap: {
3
+ down: {
4
+ medium: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
5
+ small: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
6
+ };
7
+ left: {
8
+ medium: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
9
+ small: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
10
+ };
11
+ right: {
12
+ medium: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
13
+ small: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
14
+ };
15
+ up: {
16
+ medium: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
17
+ small: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
18
+ };
19
+ };
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ import { DoubleChevronIconProps } from './double-chevron-icon.types';
3
+ export declare function DoubleChevronIcon(props: DoubleChevronIconProps): JSX.Element | null;
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ export declare type DoubleChevronIconProps = Omit<JSX.IntrinsicElements['div'], 'ref'> & {
3
+ readonly boxRef?: React.Ref<HTMLDivElement>;
4
+ readonly direction: 'down' | 'left' | 'right' | 'up';
5
+ readonly size: 'medium' | 'small';
6
+ };
@@ -0,0 +1,2 @@
1
+ export * from './double-chevron-icon.component';
2
+ export * from './double-chevron-icon.types';
@@ -1,4 +1,4 @@
1
1
  export declare const AssetMap: {
2
2
  medium: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
3
- small: null;
3
+ small: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
4
4
  };
@@ -1,6 +1,14 @@
1
1
  export declare const AssetMap: {
2
- down: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
3
- left: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
4
- right: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
5
- up: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
2
+ down: {
3
+ small: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
4
+ };
5
+ left: {
6
+ small: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
7
+ };
8
+ right: {
9
+ small: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
10
+ };
11
+ up: {
12
+ small: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
13
+ };
6
14
  };
@@ -2,4 +2,5 @@ import React from 'react';
2
2
  export declare type DropdownIconProps = Omit<JSX.IntrinsicElements['div'], 'ref'> & {
3
3
  readonly boxRef?: React.Ref<HTMLDivElement>;
4
4
  readonly direction: 'down' | 'left' | 'right' | 'up';
5
+ readonly size: 'small';
5
6
  };
@@ -1,10 +1,10 @@
1
1
  export declare const AssetMap: {
2
2
  medium: {
3
- filled: null;
3
+ filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
4
4
  lined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
5
5
  };
6
6
  small: {
7
- filled: null;
8
- lined: null;
7
+ filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
8
+ lined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
9
9
  };
10
10
  };
@@ -1,7 +1,7 @@
1
1
  export declare const AssetMap: {
2
2
  medium: {
3
3
  filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
4
- lined: null;
4
+ lined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
5
5
  };
6
6
  small: {
7
7
  filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
@@ -1,10 +1,10 @@
1
1
  export declare const AssetMap: {
2
2
  medium: {
3
- filled: null;
3
+ filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
4
4
  lined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
5
5
  };
6
6
  small: {
7
- filled: null;
7
+ filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
8
8
  lined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
9
9
  };
10
10
  };