@mescius/wijmo.react.nav 5.20241.10-nightly.d20240611.t020403 → 5.20241.10-nightly.d20240613.t051638
Sign up to get free protection for your applications and to get access to all the features.
- package/es2015-commonjs.js +1 -1
- package/es2015-esm.js +1 -1
- package/es5-esm.js +1 -1
- package/index.d.ts +22 -12
- package/index.js +1 -1
- package/package.json +4 -4
package/es2015-commonjs.js
CHANGED
package/es2015-esm.js
CHANGED
package/es5-esm.js
CHANGED
package/index.d.ts
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
/*!
|
2
2
|
*
|
3
|
-
* Wijmo Library 5.20241.10-nightly.
|
3
|
+
* Wijmo Library 5.20241.10-nightly.d20240613.t051638
|
4
4
|
* https://developer.mescius.com/wijmo
|
5
5
|
*
|
6
6
|
* Copyright(c) MESCIUS inc. All rights reserved.
|
@@ -18,11 +18,11 @@
|
|
18
18
|
*
|
19
19
|
*/
|
20
20
|
export declare var ___keepComment: any;
|
21
|
-
import { ControlBaseEvents,
|
21
|
+
import { ControlBaseEvents, ControlBaseInputs, WjRef, BaseInputs } from '@mescius/wijmo.react.base';
|
22
22
|
import * as React from 'react';
|
23
23
|
import * as wjcCore from '@mescius/wijmo';
|
24
24
|
import * as wjcNav from '@mescius/wijmo.nav';
|
25
|
-
export declare type
|
25
|
+
export declare type TreeViewInputs = ControlBaseInputs & {
|
26
26
|
allowDragging?: boolean;
|
27
27
|
autoCollapse?: boolean;
|
28
28
|
checkOnClick?: boolean;
|
@@ -69,6 +69,8 @@ export declare const TreeViewMeta: {
|
|
69
69
|
inputs: string[];
|
70
70
|
events: string[];
|
71
71
|
};
|
72
|
+
export declare type TreeViewProps = TreeViewInputs & TreeViewEvents<wjcNav.TreeView>;
|
73
|
+
export declare type TreeViewRef = WjRef<wjcNav.TreeView>;
|
72
74
|
/**
|
73
75
|
* React component for the {@link wijmo.nav.TreeView} control.
|
74
76
|
*
|
@@ -78,8 +80,8 @@ export declare const TreeViewMeta: {
|
|
78
80
|
* You can use this event to perform further initialization in addition to setting properties in JSX.
|
79
81
|
* The signature of the handler function is the same as any other Wijmo event handlers.
|
80
82
|
*/
|
81
|
-
export declare const TreeView: React.ForwardRefExoticComponent<
|
82
|
-
export declare type
|
83
|
+
export declare const TreeView: React.ForwardRefExoticComponent<TreeViewProps>;
|
84
|
+
export declare type TabPanelInputs = ControlBaseInputs & {
|
83
85
|
autoSwitch?: boolean;
|
84
86
|
isAnimated?: boolean;
|
85
87
|
selectedIndex?: number;
|
@@ -92,6 +94,8 @@ export declare const TabPanelMeta: {
|
|
92
94
|
inputs: string[];
|
93
95
|
events: string[];
|
94
96
|
};
|
97
|
+
export declare type TabPanelProps = TabPanelInputs & TabPanelEvents<wjcNav.TabPanel>;
|
98
|
+
export declare type TabPanelRef = WjRef<wjcNav.TabPanel>;
|
95
99
|
/**
|
96
100
|
* React component for the {@link wijmo.nav.TabPanel} control.
|
97
101
|
*
|
@@ -104,8 +108,8 @@ export declare const TabPanelMeta: {
|
|
104
108
|
* You can use this event to perform further initialization in addition to setting properties in JSX.
|
105
109
|
* The signature of the handler function is the same as any other Wijmo event handlers.
|
106
110
|
*/
|
107
|
-
export declare const TabPanel: React.ForwardRefExoticComponent<
|
108
|
-
export declare type
|
111
|
+
export declare const TabPanel: React.ForwardRefExoticComponent<TabPanelProps>;
|
112
|
+
export declare type TabInputs = BaseInputs & {
|
109
113
|
isDisabled?: boolean;
|
110
114
|
isVisible?: boolean;
|
111
115
|
children?: any;
|
@@ -115,6 +119,8 @@ export declare const TabMeta: {
|
|
115
119
|
inputs: string[];
|
116
120
|
events: any[];
|
117
121
|
};
|
122
|
+
export declare type TabProps = TabInputs & TabEvents<wjcNav.Tab>;
|
123
|
+
export declare type TabRef = WjRef<wjcNav.Tab>;
|
118
124
|
/**
|
119
125
|
* React component for the {@link wijmo.nav.Tab} class.
|
120
126
|
*
|
@@ -127,8 +133,8 @@ export declare const TabMeta: {
|
|
127
133
|
* You can use this event to perform further initialization in addition to setting properties in JSX.
|
128
134
|
* The signature of the handler function is the same as any other Wijmo event handlers.
|
129
135
|
*/
|
130
|
-
export declare const Tab: React.ForwardRefExoticComponent<
|
131
|
-
export declare type
|
136
|
+
export declare const Tab: React.ForwardRefExoticComponent<TabProps>;
|
137
|
+
export declare type AccordionInputs = ControlBaseInputs & {
|
132
138
|
allowCollapseAll?: boolean;
|
133
139
|
allowExpandMany?: boolean;
|
134
140
|
autoSwitch?: boolean;
|
@@ -144,6 +150,8 @@ export declare const AccordionMeta: {
|
|
144
150
|
inputs: string[];
|
145
151
|
events: string[];
|
146
152
|
};
|
153
|
+
export declare type AccordionProps = AccordionInputs & AccordionEvents<wjcNav.Accordion>;
|
154
|
+
export declare type AccordionRef = WjRef<wjcNav.Accordion>;
|
147
155
|
/**
|
148
156
|
* React component for the {@link wijmo.nav.Accordion} control.
|
149
157
|
*
|
@@ -156,8 +164,8 @@ export declare const AccordionMeta: {
|
|
156
164
|
* You can use this event to perform further initialization in addition to setting properties in JSX.
|
157
165
|
* The signature of the handler function is the same as any other Wijmo event handlers.
|
158
166
|
*/
|
159
|
-
export declare const Accordion: React.ForwardRefExoticComponent<
|
160
|
-
export declare type
|
167
|
+
export declare const Accordion: React.ForwardRefExoticComponent<AccordionProps>;
|
168
|
+
export declare type AccordionPaneInputs = BaseInputs & {
|
161
169
|
isCollapsed?: boolean;
|
162
170
|
isDisabled?: boolean;
|
163
171
|
isVisible?: boolean;
|
@@ -168,6 +176,8 @@ export declare const AccordionPaneMeta: {
|
|
168
176
|
inputs: string[];
|
169
177
|
events: any[];
|
170
178
|
};
|
179
|
+
export declare type AccordionPaneProps = AccordionPaneInputs & AccordionPaneEvents<wjcNav.AccordionPane>;
|
180
|
+
export declare type AccordionPaneRef = WjRef<wjcNav.AccordionPane>;
|
171
181
|
/**
|
172
182
|
* React component for the {@link wijmo.nav.AccordionPane} class.
|
173
183
|
*
|
@@ -180,4 +190,4 @@ export declare const AccordionPaneMeta: {
|
|
180
190
|
* You can use this event to perform further initialization in addition to setting properties in JSX.
|
181
191
|
* The signature of the handler function is the same as any other Wijmo event handlers.
|
182
192
|
*/
|
183
|
-
export declare const AccordionPane: React.ForwardRefExoticComponent<
|
193
|
+
export declare const AccordionPane: React.ForwardRefExoticComponent<AccordionPaneProps>;
|
package/index.js
CHANGED
package/package.json
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
{
|
2
2
|
"name": "@mescius/wijmo.react.nav",
|
3
|
-
"version": "5.20241.10-nightly.
|
3
|
+
"version": "5.20241.10-nightly.d20240613.t051638",
|
4
4
|
"description": "UI library for pure JS, Angular, React, Vue and more...",
|
5
5
|
"author": "MESCIUS inc",
|
6
6
|
"license": "Commercial",
|
7
7
|
"main": "./index.js",
|
8
8
|
"types": "./index.d.ts",
|
9
9
|
"dependencies": {
|
10
|
-
"@mescius/wijmo": "5.20241.10-nightly.
|
11
|
-
"@mescius/wijmo.nav": "5.20241.10-nightly.
|
12
|
-
"@mescius/wijmo.react.base": "5.20241.10-nightly.
|
10
|
+
"@mescius/wijmo": "5.20241.10-nightly.d20240613.t051638",
|
11
|
+
"@mescius/wijmo.nav": "5.20241.10-nightly.d20240613.t051638",
|
12
|
+
"@mescius/wijmo.react.base": "5.20241.10-nightly.d20240613.t051638"
|
13
13
|
},
|
14
14
|
"homepage": "https://developer.mescius.com/wijmo",
|
15
15
|
"bugs": {
|