neko-ui 2.1.1 → 2.1.2
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/lib/img/index.d.ts +4 -0
- package/lib/index.d.ts +3 -1
- package/lib/index.js +1 -1
- package/package.json +2 -2
package/lib/img/index.d.ts
CHANGED
package/lib/index.d.ts
CHANGED
|
@@ -52,6 +52,7 @@ declare const normal: {
|
|
|
52
52
|
};
|
|
53
53
|
export default normal;
|
|
54
54
|
/** 组件列表
|
|
55
|
+
* @author monako97
|
|
55
56
|
* @ignore optional
|
|
56
57
|
*/
|
|
57
58
|
interface CustomElementTags {
|
|
@@ -115,12 +116,13 @@ interface CustomElementTags {
|
|
|
115
116
|
'n-menu': MenuElement | MenuMultipleElement;
|
|
116
117
|
/** Cron表达式编辑器 */
|
|
117
118
|
'n-cron': CronElement;
|
|
118
|
-
/**
|
|
119
|
+
/** 日期选择器
|
|
119
120
|
* @since 2.1.0
|
|
120
121
|
*/
|
|
121
122
|
'n-data-picker': DatePickerElement;
|
|
122
123
|
/** 数据表格
|
|
123
124
|
* @since 2.2.0
|
|
125
|
+
* @author monako97 <poi.nyaa@qq.com>
|
|
124
126
|
*/
|
|
125
127
|
'n-table': TableElement;
|
|
126
128
|
}
|