@phila/phila-ui-search 1.0.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,4 @@
1
+ import { SearchProps } from './index';
2
+ declare const _default: import('vue').DefineComponent<SearchProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<SearchProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
3
+ export default _default;
4
+ //# sourceMappingURL=Search.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Search.vue.d.ts","sourceRoot":"","sources":["../../../src/Search.vue"],"names":[],"mappings":"AAyEA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;;AAwG3C,wBAQG"}
@@ -0,0 +1,5 @@
1
+ import { BaseProps } from '@phila/phila-ui-core';
2
+ export { default as Search } from './Search.vue';
3
+ export interface SearchProps extends /* @vue-ignore */ BaseProps {
4
+ }
5
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAC;AACtD,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,cAAc,CAAC;AAIjD,MAAM,WAAW,WAAY,SAAQ,iBAAiB,CAAC,SAAS;CAE/D"}
package/package.json ADDED
@@ -0,0 +1,53 @@
1
+ {
2
+ "name": "@phila/phila-ui-search",
3
+ "version": "1.0.0",
4
+ "type": "module",
5
+ "description": "a search bar",
6
+ "main": "./dist/index.js",
7
+ "module": "./dist/index.mjs",
8
+ "types": "./dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/index.mjs",
13
+ "require": "./dist/index.js"
14
+ }
15
+ },
16
+ "files": [
17
+ "dist"
18
+ ],
19
+ "keywords": [
20
+ "ui",
21
+ "search",
22
+ "vue",
23
+ "component"
24
+ ],
25
+ "author": "",
26
+ "license": "MIT",
27
+ "peerDependencies": {
28
+ "vue": "^3.0.0",
29
+ "@phila/phila-ui-core": "2.0.0"
30
+ },
31
+ "dependencies": {
32
+ "@phila/phila-ui-text-field": "1.0.0"
33
+ },
34
+ "devDependencies": {
35
+ "@types/node": "^24.0.0",
36
+ "@vitejs/plugin-vue": "^6.0.1",
37
+ "eslint": "^9.0.0",
38
+ "typescript": "^5.8.3",
39
+ "vite": "^7.0.6",
40
+ "vite-plugin-dts": "^4.5.4",
41
+ "vite-plugin-lib-inject-css": "^2.2.2"
42
+ },
43
+ "scripts": {
44
+ "build": "vite build",
45
+ "dev": "vite build --watch",
46
+ "lint": "eslint src --ext .ts,.tsx,.vue",
47
+ "lint:fix": "eslint src --ext .ts,.tsx,.vue --fix",
48
+ "type-check": "tsc --noEmit",
49
+ "clean": "rm -rf dist",
50
+ "format": "prettier --write .",
51
+ "format:check": "prettier --check ."
52
+ }
53
+ }