@akinon/ui-auto-complete 0.1.0 → 0.2.0

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,5 @@
1
+ import type { AutoCompleteProps as AntAutoCompleteProps } from 'antd';
2
+ import * as React from 'react';
3
+ export type AutoCompleteProps = AntAutoCompleteProps;
4
+ export declare const AutoComplete: ({ ...restAutoCompleteProps }: AutoCompleteProps) => React.JSX.Element;
5
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,IAAI,oBAAoB,EAAE,MAAM,MAAM,CAAC;AAEtE,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAG/B,MAAM,MAAM,iBAAiB,GAAG,oBAAoB,CAAC;AAErD,eAAO,MAAM,YAAY,iCAEtB,iBAAiB,sBAInB,CAAC"}
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ var __rest = (this && this.__rest) || function (s, e) {
3
+ var t = {};
4
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
5
+ t[p] = s[p];
6
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
7
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
8
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
9
+ t[p[i]] = s[p[i]];
10
+ }
11
+ return t;
12
+ };
13
+ Object.defineProperty(exports, "__esModule", { value: true });
14
+ exports.AutoComplete = void 0;
15
+ const antd_1 = require("antd");
16
+ const React = require("react");
17
+ const AutoComplete = (_a) => {
18
+ var restAutoCompleteProps = __rest(_a, []);
19
+ return (React.createElement(antd_1.AutoComplete, Object.assign({}, restAutoCompleteProps)));
20
+ };
21
+ exports.AutoComplete = AutoComplete;
@@ -0,0 +1,5 @@
1
+ import type { AutoCompleteProps as AntAutoCompleteProps } from 'antd';
2
+ import * as React from 'react';
3
+ export type AutoCompleteProps = AntAutoCompleteProps;
4
+ export declare const AutoComplete: ({ ...restAutoCompleteProps }: AutoCompleteProps) => React.JSX.Element;
5
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,IAAI,oBAAoB,EAAE,MAAM,MAAM,CAAC;AAEtE,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAG/B,MAAM,MAAM,iBAAiB,GAAG,oBAAoB,CAAC;AAErD,eAAO,MAAM,YAAY,iCAEtB,iBAAiB,sBAInB,CAAC"}
@@ -0,0 +1,17 @@
1
+ var __rest = (this && this.__rest) || function (s, e) {
2
+ var t = {};
3
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
4
+ t[p] = s[p];
5
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
6
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
7
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
8
+ t[p[i]] = s[p[i]];
9
+ }
10
+ return t;
11
+ };
12
+ import { AutoComplete as AntAutoComplete } from 'antd';
13
+ import * as React from 'react';
14
+ export const AutoComplete = (_a) => {
15
+ var restAutoCompleteProps = __rest(_a, []);
16
+ return (React.createElement(AntAutoComplete, Object.assign({}, restAutoCompleteProps)));
17
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@akinon/ui-auto-complete",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "main": "dist/esm/index.js",
@@ -16,9 +16,9 @@
16
16
  "copyfiles": "^2.4.1",
17
17
  "rimraf": "^5.0.5",
18
18
  "typescript": "^5.2.2",
19
- "@akinon/typescript-config": "0.0.0",
20
- "@akinon/vite-config": "0.2.0",
21
- "@akinon/eslint-config": "0.1.0"
19
+ "@akinon/vite-config": "0.3.0",
20
+ "@akinon/eslint-config": "0.1.0",
21
+ "@akinon/typescript-config": "0.1.0"
22
22
  },
23
23
  "peerDependencies": {
24
24
  "react": ">=18",