New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

virtual-keyboard-angular

Package Overview
Dependencies
Maintainers
1
Versions
65
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

virtual-keyboard-angular - npm Package Compare versions

Comparing version 0.0.29 to 0.0.30

26

lib/extenders/search-result/search-result.component.d.ts
import { ElementRef } from '@angular/core';
import { KeyboardLayout, VirtualKeyboardEventsService, SearchResultService, SearchResultItem, Position } from "../../../public-api";
import * as i0 from "@angular/core";
export declare class SearchResultComponent {
export declare class SearchResultComponent<T> {
private keyboardEventsService;

@@ -13,3 +13,3 @@ private searchResultService;

acceptWithIDCallBack: (vk_id: string, text: string) => any | void;
items: SearchResultItem[] | undefined;
items: SearchResultItem<T>[] | undefined;
div_search_result: ElementRef<HTMLDivElement>;

@@ -19,23 +19,9 @@ keyboardPosition: Position;

search_key_value: string | undefined;
constructor(keyboardEventsService: VirtualKeyboardEventsService, searchResultService: SearchResultService);
constructor(keyboardEventsService: VirtualKeyboardEventsService, searchResultService: SearchResultService<T>);
ngAfterViewInit(): void;
ngOnInit(): void;
onDocumentClick(event: Event): void;
onSelectItemClick(item: SearchResultItem): void;
/**
* This method responsible to calculate the virtual keyboard location.
* For example: If We click on the input text element We wont to display the search result below to input text
* I don't know why when We adding the Search result component it show not correct.
*/
calculationPosition(): void;
/**
* This method responsible to return the virtual keyboard width
*/
getVK_Width(): number;
/**
* This method responsible to return the virtual keyboard height
*/
getVK_Height(): number;
static ɵfac: i0.ɵɵFactoryDeclaration<SearchResultComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<SearchResultComponent, "vk-search-result", never, { "keyboardLayout": { "alias": "keyboardLayout"; "required": false; }; "language": { "alias": "language"; "required": false; }; "vk_id": { "alias": "vk_id"; "required": false; }; "validateCallBack": { "alias": "validateCallBack"; "required": false; }; "acceptCallBack": { "alias": "acceptCallBack"; "required": false; }; "acceptWithIDCallBack": { "alias": "acceptWithIDCallBack"; "required": false; }; "items": { "alias": "items"; "required": false; }; }, {}, never, never, false, never>;
onSelectItemClick(item: SearchResultItem<T>): void;
static ɵfac: i0.ɵɵFactoryDeclaration<SearchResultComponent<any>, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<SearchResultComponent<any>, "vk-search-result", never, { "keyboardLayout": { "alias": "keyboardLayout"; "required": false; }; "language": { "alias": "language"; "required": false; }; "vk_id": { "alias": "vk_id"; "required": false; }; "validateCallBack": { "alias": "validateCallBack"; "required": false; }; "acceptCallBack": { "alias": "acceptCallBack"; "required": false; }; "acceptWithIDCallBack": { "alias": "acceptWithIDCallBack"; "required": false; }; "items": { "alias": "items"; "required": false; }; }, {}, never, never, false, never>;
}
import { SearchResultItem, SearchResultComponent } from '../../../public-api';
import * as i0 from "@angular/core";
export declare class SearchResultService {
export declare class SearchResultService<T> {
private selectItemEventSubject;

@@ -8,10 +8,10 @@ private displayResultEventSubject;

constructor();
updateResultEvent(event: SearchResultItem[]): void;
getUpdateResultEvent(): import("rxjs").Observable<SearchResultItem[] | null>;
selectItemEvent(event: SearchResultItem): void;
getSelectItemEvent(): import("rxjs").Observable<SearchResultItem | null>;
displaySearchResultEvent(event: SearchResultComponent): void;
getDisplaySearchResultEvent(): import("rxjs").Observable<SearchResultComponent | null>;
static ɵfac: i0.ɵɵFactoryDeclaration<SearchResultService, never>;
static ɵprov: i0.ɵɵInjectableDeclaration<SearchResultService>;
updateResultEvent(event: SearchResultItem<T>[]): void;
getUpdateResultEvent(): import("rxjs").Observable<SearchResultItem<T>[] | null>;
selectItemEvent(event: SearchResultItem<T>): void;
getSelectItemEvent(): import("rxjs").Observable<SearchResultItem<T> | null>;
displaySearchResultEvent(event: SearchResultComponent<T>): void;
getDisplaySearchResultEvent(): import("rxjs").Observable<SearchResultComponent<T> | null>;
static ɵfac: i0.ɵɵFactoryDeclaration<SearchResultService<any>, never>;
static ɵprov: i0.ɵɵInjectableDeclaration<SearchResultService<any>>;
}

@@ -1,4 +0,5 @@

export interface SearchResultItem {
export interface SearchResultItem<T> {
index?: number;
text: string;
item: T;
}
{
"name": "virtual-keyboard-angular",
"version": "0.0.29",
"version": "0.0.30",
"peerDependencies": {

@@ -5,0 +5,0 @@ "@angular/common": "^16.0.0",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc