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.
@@ -1,6 +1,10 @@
1
1
  export interface ImgProps {
2
2
  /** 图片地址 */
3
3
  src?: string;
4
+ /** 查看大图的地址, 默认使用 `src`
5
+ * @since 2.1.2
6
+ */
7
+ srcFull?: string;
4
8
  /** 图片 alt */
5
9
  alt?: string;
6
10
  /** 大图查看 */
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
  }