@xaui/native 0.0.11 → 0.0.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.
- package/dist/autocomplete/index.cjs +151 -133
- package/dist/autocomplete/index.js +2 -2
- package/dist/{chunk-RE3CO277.js → chunk-CKGZOJVV.js} +423 -52
- package/dist/chunk-LM23DOX3.js +1647 -0
- package/dist/{chunk-W7JJVPK5.js → chunk-RL47NQAU.js} +3 -3
- package/dist/datepicker/index.cjs +2429 -0
- package/dist/datepicker/index.d.cts +45 -0
- package/dist/datepicker/index.d.ts +45 -0
- package/dist/datepicker/index.js +9 -0
- package/dist/icon/index.cjs +439 -65
- package/dist/icon/index.d.cts +7 -1
- package/dist/icon/index.d.ts +7 -1
- package/dist/icon/index.js +8 -2
- package/dist/index.cjs +2818 -670
- package/dist/index.d.cts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +6 -2
- package/package.json +8 -1
package/dist/icon/index.d.cts
CHANGED
|
@@ -27,10 +27,16 @@ type IconProps = {
|
|
|
27
27
|
|
|
28
28
|
declare const ArrowBackIcon: React.FC<IconProps>;
|
|
29
29
|
|
|
30
|
+
declare const CalendarIcon: React.FC<IconProps>;
|
|
31
|
+
|
|
30
32
|
declare const CheckmarkIcon: React.FC<IconProps>;
|
|
31
33
|
|
|
32
34
|
declare const ChevronDownIcon: React.FC<IconProps>;
|
|
33
35
|
|
|
36
|
+
declare const ChevronLeftIcon: React.FC<IconProps>;
|
|
37
|
+
|
|
38
|
+
declare const ChevronRightIcon: React.FC<IconProps>;
|
|
39
|
+
|
|
34
40
|
declare const CloseIcon: React.FC<IconProps>;
|
|
35
41
|
|
|
36
|
-
export { ArrowBackIcon, CheckmarkIcon, ChevronDownIcon, CloseIcon, type IconProps, type IconVariant };
|
|
42
|
+
export { ArrowBackIcon, CalendarIcon, CheckmarkIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, CloseIcon, type IconProps, type IconVariant };
|
package/dist/icon/index.d.ts
CHANGED
|
@@ -27,10 +27,16 @@ type IconProps = {
|
|
|
27
27
|
|
|
28
28
|
declare const ArrowBackIcon: React.FC<IconProps>;
|
|
29
29
|
|
|
30
|
+
declare const CalendarIcon: React.FC<IconProps>;
|
|
31
|
+
|
|
30
32
|
declare const CheckmarkIcon: React.FC<IconProps>;
|
|
31
33
|
|
|
32
34
|
declare const ChevronDownIcon: React.FC<IconProps>;
|
|
33
35
|
|
|
36
|
+
declare const ChevronLeftIcon: React.FC<IconProps>;
|
|
37
|
+
|
|
38
|
+
declare const ChevronRightIcon: React.FC<IconProps>;
|
|
39
|
+
|
|
34
40
|
declare const CloseIcon: React.FC<IconProps>;
|
|
35
41
|
|
|
36
|
-
export { ArrowBackIcon, CheckmarkIcon, ChevronDownIcon, CloseIcon, type IconProps, type IconVariant };
|
|
42
|
+
export { ArrowBackIcon, CalendarIcon, CheckmarkIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, CloseIcon, type IconProps, type IconVariant };
|
package/dist/icon/index.js
CHANGED
|
@@ -1,15 +1,21 @@
|
|
|
1
1
|
import {
|
|
2
2
|
ArrowBackIcon,
|
|
3
|
+
CalendarIcon,
|
|
3
4
|
CheckmarkIcon,
|
|
4
|
-
ChevronDownIcon
|
|
5
|
-
|
|
5
|
+
ChevronDownIcon,
|
|
6
|
+
ChevronLeftIcon,
|
|
7
|
+
ChevronRightIcon
|
|
8
|
+
} from "../chunk-CKGZOJVV.js";
|
|
6
9
|
import {
|
|
7
10
|
CloseIcon
|
|
8
11
|
} from "../chunk-SIXET7TJ.js";
|
|
9
12
|
import "../chunk-NBRASCX4.js";
|
|
10
13
|
export {
|
|
11
14
|
ArrowBackIcon,
|
|
15
|
+
CalendarIcon,
|
|
12
16
|
CheckmarkIcon,
|
|
13
17
|
ChevronDownIcon,
|
|
18
|
+
ChevronLeftIcon,
|
|
19
|
+
ChevronRightIcon,
|
|
14
20
|
CloseIcon
|
|
15
21
|
};
|