neko-ui 2.1.0 → 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.
@@ -0,0 +1,14 @@
1
+ declare function Table(_: TableProps): import("solid-js").JSX.Element;
2
+ /** API
3
+ * @since 2.1.0
4
+ */
5
+ export interface TableProps {
6
+ /** 自定义类名 */
7
+ class?: string;
8
+ /** 自定义类名 */
9
+ css?: string;
10
+ /** 加载中 */
11
+ loading?: boolean;
12
+ }
13
+ export type TableElement = CustomElement<TableProps>;
14
+ export default Table;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "neko-ui",
3
- "version": "2.1.0",
3
+ "version": "2.1.2",
4
4
  "description": "Web Components UI Libraries",
5
5
  "main": "lib/index.js",
6
6
  "scripts": {
@@ -36,7 +36,7 @@
36
36
  "@commitlint/config-conventional": "17.6.6",
37
37
  "@moneko/cli": "2.0.0-beta.5",
38
38
  "@moneko/common": "1.2.0",
39
- "@moneko/core": "3.0.0-beta.88",
39
+ "@moneko/core": "3.0.0-beta.101",
40
40
  "@moneko/css": "1.0.5",
41
41
  "@moneko/postcss": "1.0.30",
42
42
  "@moneko/solid-js": "1.1.8",