asma-core-ui 2.19.97 → 2.19.99

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 (28) hide show
  1. package/dist/asma-core-ui.es.js +16 -16
  2. package/dist/src/components/data-display/icons/earth-icon/EarthIcon.d.ts +3 -0
  3. package/dist/src/components/data-display/icons/earth-icon/index.d.ts +1 -0
  4. package/dist/src/components/data-display/icons/error-outline-icon/ErrorOutlineIcon.d.ts +3 -0
  5. package/dist/src/components/data-display/icons/error-outline-icon/index.d.ts +1 -0
  6. package/dist/src/components/data-display/icons/fast-check-outline-icon/FastCheckOutlineIcon.d.ts +3 -0
  7. package/dist/src/components/data-display/icons/fast-check-outline-icon/index.d.ts +1 -0
  8. package/dist/src/components/data-display/icons/index.d.ts +12 -0
  9. package/dist/src/components/data-display/icons/link-outline-icon/LinkOutlineIcon.d.ts +3 -0
  10. package/dist/src/components/data-display/icons/link-outline-icon/index.d.ts +1 -0
  11. package/dist/src/components/data-display/icons/list-settings-line-icon/ListSettingsLineIcon.d.ts +3 -0
  12. package/dist/src/components/data-display/icons/list-settings-line-icon/index.d.ts +1 -0
  13. package/dist/src/components/data-display/icons/list-status-icon/ListStatusIcon.d.ts +3 -0
  14. package/dist/src/components/data-display/icons/list-status-icon/index.d.ts +1 -0
  15. package/dist/src/components/data-display/icons/pencil-outline-icon/PencilOutlineIcon.d.ts +3 -0
  16. package/dist/src/components/data-display/icons/pencil-outline-icon/index.d.ts +1 -0
  17. package/dist/src/components/data-display/icons/replay-icon/ReplayIcon.d.ts +3 -0
  18. package/dist/src/components/data-display/icons/replay-icon/index.d.ts +1 -0
  19. package/dist/src/components/data-display/icons/settings-menu-horizontal-icon/SettingsMenuHorizontalIcon.d.ts +3 -0
  20. package/dist/src/components/data-display/icons/settings-menu-horizontal-icon/index.d.ts +1 -0
  21. package/dist/src/components/data-display/icons/text-box-check-outline-icon/TextBoxCheckOutlineIcon.d.ts +3 -0
  22. package/dist/src/components/data-display/icons/text-box-check-outline-icon/index.d.ts +1 -0
  23. package/dist/src/components/data-display/icons/unknown-document-outline-rounded-icon/UnknownDocumentOutlineRoundedIcon.d.ts +3 -0
  24. package/dist/src/components/data-display/icons/unknown-document-outline-rounded-icon/index.d.ts +1 -0
  25. package/dist/src/components/filter-menu/StyledFilterMenu.d.ts +1 -0
  26. package/dist/style.css +1 -1
  27. package/package.json +22 -22
  28. package/CHANGELOG.md +0 -699
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ import type { IIcon } from '../Icons.types';
3
+ export declare const EarthIcon: React.FC<IIcon>;
@@ -0,0 +1 @@
1
+ export * from './EarthIcon';
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import type { IIcon } from '../Icons.types';
3
+ export declare const ErrorOutlineIcon: React.FC<IIcon>;
@@ -0,0 +1 @@
1
+ export * from './ErrorOutlineIcon';
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ import type { IIcon } from '../Icons.types';
3
+ export declare const FastCheckOutlineIcon: React.FC<IIcon>;
@@ -0,0 +1 @@
1
+ export * from './FastCheckOutlineIcon';
@@ -52,3 +52,15 @@ export * from './delete-outline-icon';
52
52
  export * from './filter-icon';
53
53
  export * from './lock-icon';
54
54
  export * from './dvr-icon';
55
+ export * from './error-outline-icon';
56
+ export * from './replay-icon';
57
+ export * from './calendar-blank-outline-icon';
58
+ export * from './link-outline-icon';
59
+ export * from './fast-check-outline-icon';
60
+ export * from './unknown-document-outline-rounded-icon';
61
+ export * from './list-status-icon';
62
+ export * from './text-box-check-outline-icon';
63
+ export * from './list-settings-line-icon';
64
+ export * from './earth-icon';
65
+ export * from './settings-menu-horizontal-icon';
66
+ export * from './pencil-outline-icon';
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ import type { IIcon } from '../Icons.types';
3
+ export declare const LinkOutlineIcon: React.FC<IIcon>;
@@ -0,0 +1 @@
1
+ export * from './LinkOutlineIcon';
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ import type { IIcon } from '../Icons.types';
3
+ export declare const ListSettingsLineIcon: React.FC<IIcon>;
@@ -0,0 +1 @@
1
+ export * from './ListSettingsLineIcon';
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ import type { IIcon } from '../Icons.types';
3
+ export declare const ListStatusIcon: React.FC<IIcon>;
@@ -0,0 +1 @@
1
+ export * from './ListStatusIcon';
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ import type { IIcon } from '../Icons.types';
3
+ export declare const PencilOutlineIcon: React.FC<IIcon>;
@@ -0,0 +1 @@
1
+ export * from './PencilOutlineIcon';
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import type { IIcon } from '../Icons.types';
3
+ export declare const ReplayIcon: React.FC<IIcon>;
@@ -0,0 +1 @@
1
+ export * from './ReplayIcon';
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import type { IIcon } from '../Icons.types';
3
+ export declare const SettingsMenuHorizontalIcon: React.FC<IIcon>;
@@ -0,0 +1 @@
1
+ export * from './SettingsMenuHorizontalIcon';
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import type { IIcon } from '../Icons.types';
3
+ export declare const TextBoxCheckOutlineIcon: React.FC<IIcon>;
@@ -0,0 +1 @@
1
+ export * from './TextBoxCheckOutlineIcon';
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import type { IIcon } from '../Icons.types';
3
+ export declare const UnknownDocumentOutlineRoundedIcon: React.FC<IIcon>;
@@ -0,0 +1 @@
1
+ export * from './UnknownDocumentOutlineRoundedIcon';
@@ -9,6 +9,7 @@ type StyledFilterMenuProps = {
9
9
  filterIsActive: boolean;
10
10
  popoverContent: React.ReactNode;
11
11
  disabled?: boolean;
12
+ size?: 'small' | 'large' | 'medium';
12
13
  };
13
14
  export declare const StyledFilterMenu: React.FC<StyledFilterMenuProps>;
14
15
  export {};