@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.
- package/README.md +8 -1
- package/dist/accordion/index.cjs +7 -2
- package/dist/accordion/index.js +7 -2
- package/dist/alert/index.cjs +25 -188
- package/dist/alert/index.js +1 -2
- package/dist/autocomplete/index.cjs +106 -403
- package/dist/autocomplete/index.js +1 -3
- package/dist/button/index.cjs +126 -4
- package/dist/button/index.d.cts +63 -1
- package/dist/button/index.d.ts +63 -1
- package/dist/button/index.js +117 -3
- package/dist/checkbox/index.cjs +5 -1
- package/dist/checkbox/index.js +5 -1
- package/dist/{chunk-OFYJYQ2M.js → chunk-2T6FKPJW.js} +1 -3
- package/dist/{chunk-LM23DOX3.js → chunk-7OFTYKK4.js} +13 -33
- package/dist/{chunk-63LRW4QD.js → chunk-MKHBEJLO.js} +8 -1
- package/dist/{chunk-RL47NQAU.js → chunk-NMZUPH3R.js} +7 -12
- package/dist/datepicker/index.cjs +115 -836
- package/dist/datepicker/index.js +1 -3
- package/dist/index.cjs +362 -1170
- package/dist/index.js +4 -6
- package/dist/indicator/index.cjs +8 -1
- package/dist/indicator/index.js +1 -1
- package/dist/menu/index.cjs +371 -0
- package/dist/menu/index.d.cts +107 -0
- package/dist/menu/index.d.ts +107 -0
- package/dist/menu/index.js +304 -0
- package/dist/select/index.cjs +40 -16
- package/dist/select/index.js +40 -16
- package/dist/view/index.cjs +12 -7
- package/dist/view/index.js +12 -7
- package/package.json +7 -6
- package/dist/chunk-CKGZOJVV.js +0 -815
- package/dist/chunk-SIXET7TJ.js +0 -172
- package/dist/icon/index.cjs +0 -1054
- package/dist/icon/index.d.cts +0 -42
- package/dist/icon/index.d.ts +0 -42
- package/dist/icon/index.js +0 -21
package/dist/icon/index.d.cts
DELETED
|
@@ -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 };
|
package/dist/icon/index.d.ts
DELETED
|
@@ -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 };
|
package/dist/icon/index.js
DELETED
|
@@ -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
|
-
};
|