asma-core-ui 2.19.96 → 2.19.98

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 (35) hide show
  1. package/dist/asma-core-ui.es.js +19 -19
  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/pickers/date-picker/components/{DefaultInput.d.ts → DatePickerInputIndex.d.ts} +1 -1
  26. package/dist/src/components/pickers/date-picker/components/{RangeInput.d.ts → DatePickerInputRange.d.ts} +1 -1
  27. package/dist/src/components/pickers/date-picker/components/DatePickerInputRangeCompact.d.ts +5 -0
  28. package/dist/src/components/pickers/date-picker/components/DatePickerInputSingle.d.ts +5 -0
  29. package/dist/src/components/pickers/date-picker/story/components/RangePickerCompactExample.d.ts +2 -0
  30. package/dist/src/components/pickers/date-picker/story/components/SinglePickerExample.d.ts +2 -0
  31. package/dist/src/components/pickers/date-picker/types.d.ts +18 -20
  32. package/dist/src/helpers/cn.d.ts +2 -0
  33. package/dist/style.css +1 -1
  34. package/package.json +2 -2
  35. package/dist/src/components/pickers/date-picker/story/components/DefaultPickerExample.d.ts +0 -2
@@ -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';
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
2
  import type { DatePickerProps } from '../types';
3
- export declare const DefaultInput: React.FC<DatePickerProps & {
3
+ export declare const DatePickerInputIndex: React.FC<DatePickerProps & {
4
4
  onClick: (e: React.MouseEvent<HTMLDivElement>) => void;
5
5
  }>;
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
2
  import type { DatePickerProps } from '../types';
3
- export declare const RangeInput: React.FC<DatePickerProps & {
3
+ export declare const DatePickerInputRange: React.FC<DatePickerProps & {
4
4
  onClick: (e: React.MouseEvent<HTMLDivElement>) => void;
5
5
  }>;
@@ -0,0 +1,5 @@
1
+ /// <reference types="react" />
2
+ import type { DatePickerProps } from '../types';
3
+ export declare const DatePickerInputRangeCompact: React.FC<DatePickerProps & {
4
+ onClick: (e: React.MouseEvent<HTMLDivElement>) => void;
5
+ }>;
@@ -0,0 +1,5 @@
1
+ /// <reference types="react" />
2
+ import type { DatePickerProps } from '../types';
3
+ export declare const DatePickerInputSingle: React.FC<DatePickerProps & {
4
+ onClick: (e: React.MouseEvent<HTMLDivElement>) => void;
5
+ }>;
@@ -0,0 +1,2 @@
1
+ /// <reference types="react" />
2
+ export declare const RangePickerCompactExample: React.FC;
@@ -0,0 +1,2 @@
1
+ /// <reference types="react" />
2
+ export declare const SinglePickerExample: React.FC;
@@ -10,37 +10,35 @@ type CommonDatePickerProps = {
10
10
  disabledDays?: Matcher | Matcher[];
11
11
  dataTest: string;
12
12
  } & CalendarProps;
13
- type CompactRangeProps = {
14
- mode: 'range';
15
- compact: true;
16
- placeholderFrom?: string;
17
- placeholderTo?: string;
18
- labelFrom?: string;
19
- labelTo?: string;
20
- allowClear?: never;
21
- placeholder?: never;
22
- };
23
- type DefaultRangeProps = {
24
- mode: 'range';
25
- compact?: false;
13
+ type DefaultSingleProps = {
14
+ mode: 'single';
15
+ compact?: never;
26
16
  placeholder?: string;
27
17
  placeholderFrom?: never;
28
18
  placeholderTo?: never;
19
+ label?: string;
29
20
  labelFrom?: never;
30
21
  labelTo?: never;
31
- onClearFrom?: () => void;
32
- onClearTo?: () => void;
33
22
  };
34
- type DefaultSingleProps = {
35
- mode: 'single';
36
- dateFormat?: string;
37
- placeholder?: string;
38
- label?: string;
23
+ type DefaultRangeProps = {
24
+ mode: 'range';
39
25
  compact?: never;
26
+ placeholder?: string;
40
27
  placeholderFrom?: never;
41
28
  placeholderTo?: never;
29
+ label?: string;
42
30
  labelFrom?: never;
43
31
  labelTo?: never;
44
32
  };
33
+ type CompactRangeProps = {
34
+ mode: 'range';
35
+ compact: true;
36
+ placeholder?: never;
37
+ placeholderFrom?: string;
38
+ placeholderTo?: string;
39
+ label?: never;
40
+ labelFrom?: string;
41
+ labelTo?: string;
42
+ };
45
43
  export type DatePickerProps = CommonDatePickerProps & (CompactRangeProps | DefaultRangeProps | DefaultSingleProps);
46
44
  export {};
@@ -0,0 +1,2 @@
1
+ import { type ClassValue } from 'clsx';
2
+ export declare function cn(...inputs: ClassValue[]): string;