@xaui/native 0.0.12 → 0.0.13

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 (38) hide show
  1. package/README.md +8 -1
  2. package/dist/accordion/index.cjs +7 -2
  3. package/dist/accordion/index.js +7 -2
  4. package/dist/alert/index.cjs +25 -188
  5. package/dist/alert/index.js +1 -2
  6. package/dist/autocomplete/index.cjs +106 -403
  7. package/dist/autocomplete/index.js +1 -3
  8. package/dist/button/index.cjs +126 -4
  9. package/dist/button/index.d.cts +63 -1
  10. package/dist/button/index.d.ts +63 -1
  11. package/dist/button/index.js +117 -3
  12. package/dist/checkbox/index.cjs +5 -1
  13. package/dist/checkbox/index.js +5 -1
  14. package/dist/{chunk-OFYJYQ2M.js → chunk-2T6FKPJW.js} +1 -3
  15. package/dist/{chunk-LM23DOX3.js → chunk-7OFTYKK4.js} +13 -33
  16. package/dist/{chunk-63LRW4QD.js → chunk-MKHBEJLO.js} +8 -1
  17. package/dist/{chunk-RL47NQAU.js → chunk-NMZUPH3R.js} +7 -12
  18. package/dist/datepicker/index.cjs +115 -836
  19. package/dist/datepicker/index.js +1 -3
  20. package/dist/index.cjs +362 -1170
  21. package/dist/index.js +4 -6
  22. package/dist/indicator/index.cjs +8 -1
  23. package/dist/indicator/index.js +1 -1
  24. package/dist/menu/index.cjs +371 -0
  25. package/dist/menu/index.d.cts +107 -0
  26. package/dist/menu/index.d.ts +107 -0
  27. package/dist/menu/index.js +304 -0
  28. package/dist/select/index.cjs +40 -16
  29. package/dist/select/index.js +40 -16
  30. package/dist/view/index.cjs +12 -7
  31. package/dist/view/index.js +12 -7
  32. package/package.json +7 -6
  33. package/dist/chunk-CKGZOJVV.js +0 -815
  34. package/dist/chunk-SIXET7TJ.js +0 -172
  35. package/dist/icon/index.cjs +0 -1054
  36. package/dist/icon/index.d.cts +0 -42
  37. package/dist/icon/index.d.ts +0 -42
  38. package/dist/icon/index.js +0 -21
@@ -1,42 +0,0 @@
1
- import React from 'react';
2
- import { T as ThemeColor } from '../index-BOw6tbkc.cjs';
3
-
4
- type IconVariant = 'baseline' | 'filled' | 'duotone' | 'round-outlined' | 'square-outlined' | 'round-filled' | 'square-filled';
5
- type IconProps = {
6
- /**
7
- * Icon variant
8
- * @default 'outline'
9
- */
10
- variant?: IconVariant;
11
- /**
12
- * Icon size in pixels
13
- * @default 24
14
- */
15
- size?: number;
16
- /**
17
- * Icon color - can be a theme color or custom RGB string
18
- * @default 'default'
19
- */
20
- color?: ThemeColor | string;
21
- /**
22
- * Whether to animate the icon
23
- * @default false
24
- */
25
- isAnimated?: boolean;
26
- };
27
-
28
- declare const ArrowBackIcon: React.FC<IconProps>;
29
-
30
- declare const CalendarIcon: React.FC<IconProps>;
31
-
32
- declare const CheckmarkIcon: React.FC<IconProps>;
33
-
34
- declare const ChevronDownIcon: React.FC<IconProps>;
35
-
36
- declare const ChevronLeftIcon: React.FC<IconProps>;
37
-
38
- declare const ChevronRightIcon: React.FC<IconProps>;
39
-
40
- declare const CloseIcon: React.FC<IconProps>;
41
-
42
- export { ArrowBackIcon, CalendarIcon, CheckmarkIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, CloseIcon, type IconProps, type IconVariant };
@@ -1,42 +0,0 @@
1
- import React from 'react';
2
- import { T as ThemeColor } from '../index-BOw6tbkc.js';
3
-
4
- type IconVariant = 'baseline' | 'filled' | 'duotone' | 'round-outlined' | 'square-outlined' | 'round-filled' | 'square-filled';
5
- type IconProps = {
6
- /**
7
- * Icon variant
8
- * @default 'outline'
9
- */
10
- variant?: IconVariant;
11
- /**
12
- * Icon size in pixels
13
- * @default 24
14
- */
15
- size?: number;
16
- /**
17
- * Icon color - can be a theme color or custom RGB string
18
- * @default 'default'
19
- */
20
- color?: ThemeColor | string;
21
- /**
22
- * Whether to animate the icon
23
- * @default false
24
- */
25
- isAnimated?: boolean;
26
- };
27
-
28
- declare const ArrowBackIcon: React.FC<IconProps>;
29
-
30
- declare const CalendarIcon: React.FC<IconProps>;
31
-
32
- declare const CheckmarkIcon: React.FC<IconProps>;
33
-
34
- declare const ChevronDownIcon: React.FC<IconProps>;
35
-
36
- declare const ChevronLeftIcon: React.FC<IconProps>;
37
-
38
- declare const ChevronRightIcon: React.FC<IconProps>;
39
-
40
- declare const CloseIcon: React.FC<IconProps>;
41
-
42
- export { ArrowBackIcon, CalendarIcon, CheckmarkIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, CloseIcon, type IconProps, type IconVariant };
@@ -1,21 +0,0 @@
1
- import {
2
- ArrowBackIcon,
3
- CalendarIcon,
4
- CheckmarkIcon,
5
- ChevronDownIcon,
6
- ChevronLeftIcon,
7
- ChevronRightIcon
8
- } from "../chunk-CKGZOJVV.js";
9
- import {
10
- CloseIcon
11
- } from "../chunk-SIXET7TJ.js";
12
- import "../chunk-NBRASCX4.js";
13
- export {
14
- ArrowBackIcon,
15
- CalendarIcon,
16
- CheckmarkIcon,
17
- ChevronDownIcon,
18
- ChevronLeftIcon,
19
- ChevronRightIcon,
20
- CloseIcon
21
- };