@mmb-digital/design-system-web 0.1.11 → 0.1.12

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,2 +1,3 @@
1
1
  export * from './formattedMessage/index';
2
2
  export * from './formattedHtmlMessage/index';
3
+ export * from './isMessageDisplayable';
@@ -0,0 +1 @@
1
+ export { useIsMessageDisplayable } from './useIsMessageDisplayable';
@@ -1,11 +1,13 @@
1
1
  import { ColorScheme } from '@/util/colorScheme';
2
2
  export declare enum IconSystemType {
3
3
  arrowDown = "arrowDown",
4
+ arrowLeft = "arrowLeft",
4
5
  arrowRight = "arrowRight",
5
6
  arrowUp = "arrowUp",
6
7
  arrowUpRight = "arrowUpRight",
7
8
  checkmark = "checkmark",
8
9
  chevronDown = "chevronDown",
10
+ chevronLeft = "chevronLeft",
9
11
  chevronRight = "chevronRight",
10
12
  chevronUp = "chevronUp",
11
13
  close = "close",
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconSystemSvgProps } from '@/components/icon/system/svg/iconSystemSvg.types';
3
+ declare const IconSystemArrowLeftBig: React.FC<IconSystemSvgProps>;
4
+ export default IconSystemArrowLeftBig;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconSystemSvgProps } from '@/components/icon/system/svg/iconSystemSvg.types';
3
+ declare const IconSystemArrowLeftSmall: React.FC<IconSystemSvgProps>;
4
+ export default IconSystemArrowLeftSmall;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconSystemSvgProps } from '@/components/icon/system/svg/iconSystemSvg.types';
3
+ declare const IconSystemChevronLeftBig: React.FC<IconSystemSvgProps>;
4
+ export default IconSystemChevronLeftBig;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconSystemSvgProps } from '@/components/icon/system/svg/iconSystemSvg.types';
3
+ declare const IconSystemChevronLeftSmall: React.FC<IconSystemSvgProps>;
4
+ export default IconSystemChevronLeftSmall;