Comparing version 0.0.4 to 0.0.5
@@ -25,3 +25,3 @@ import { BaseElement } from "../../base-elements"; | ||
suggestionsshowall?: AttributeBool; | ||
suggestionsorientation?: string; | ||
suggestionsorientation?: "up" | "down"; | ||
fuzzy?: AttributeBool; | ||
@@ -45,5 +45,6 @@ onChange?: (e: InputChangeEvent) => void; | ||
declare class InputChangeEvent extends CustomEvent<{ | ||
value?: string; | ||
value: string; | ||
type: "select" | "submit"; | ||
}> { | ||
constructor(value?: string); | ||
constructor(type: "select" | "submit", value: string); | ||
} | ||
@@ -64,3 +65,3 @@ export type { InputChangeEvent }; | ||
accessor suggestionsShowAll: boolean; | ||
accessor suggestionsOrientation: string; | ||
accessor suggestionsOrientation: "up" | "down"; | ||
accessor fuzzy: boolean; | ||
@@ -67,0 +68,0 @@ accessor availableOptions: string[]; |
@@ -23,2 +23,3 @@ import { BaseElement } from "../../base-elements"; | ||
orientation?: "up" | "down"; | ||
value?: string; | ||
children?: any; | ||
@@ -35,2 +36,3 @@ onChange?: (e: CustomEvent<{ | ||
selected?: AttributeBool; | ||
children?: string; | ||
} | ||
@@ -37,0 +39,0 @@ interface IntrinsicElements { |
@@ -6,1 +6,2 @@ export * from "./components/input/input"; | ||
export type { CustomKeyboardEvent, CustomMouseEvent, CustomPointerEvent, } from "./utils/events"; | ||
export type { AttributeBool, InputType } from "./utils/types"; |
{ | ||
"name": "adwaveui", | ||
"version": "0.0.4", | ||
"version": "0.0.5", | ||
"main": "./dist/esm/index.js", | ||
@@ -60,5 +60,5 @@ "types": "./dist/types/index.d.ts", | ||
"devDependencies": { | ||
"@ncpa0cpl/nodepack": "^2.3.2", | ||
"@ncpa0cpl/nodepack": "^2.3.3", | ||
"csso": "^5.0.5", | ||
"esbuild": "^0.20.0", | ||
"esbuild": "^0.20.2", | ||
"git-hook-tasks": "git+https://github.com/ncpa0cpl/git-hook-tasks#0.0.1", | ||
@@ -69,6 +69,6 @@ "husky": "^8.0.3", | ||
"prettier-plugin-jsdoc": "^1.3.0", | ||
"typescript": "^5.3.3" | ||
"typescript": "^5.4.3" | ||
}, | ||
"dependencies": { | ||
"adwavecss": ">=0.0.12", | ||
"adwavecss": ">=0.0.13", | ||
"jsxte": "^3.3.1", | ||
@@ -75,0 +75,0 @@ "jsxte-wc": "^1.1.5" |
Sorry, the diff of this file is not supported yet
103098
2425
Updatedadwavecss@>=0.0.13