reneco-hierarchized-picker 0.4.3-beta.6 → 0.4.3-beta.7

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.
@@ -1 +1 @@
1
- import{p as e,b as a}from"./p-9bcf4c87.js";export{s as setNonce}from"./p-9bcf4c87.js";(()=>{const a=import.meta.url,r={};return""!==a&&(r.resourcesUrl=new URL(".",a).href),e(r)})().then((e=>a([["p-fcded1cc",[[0,"reneco-hierarchized-picker",{options:[1],valueChangeCallback:[16],disabled:[4],newoptions:[1],newfilter:[1],activatedDragAndDrop:[4,"activated-drag-and-drop"],isDisabled:[32],componentID:[32],rawData:[32],pickerClass:[32],displayedValue:[32],value:[32],shownTree:[32],searchResultData:[32],hasFocus:[32],errorToLog:[32],getValue:[64],refreshPicker:[64],setOptions:[64],getSearchResult:[64],filterTree:[64],clearPicker:[64],showSelectedNodes:[64]}],[0,"search-input",{placeholder:[1],setFocus:[64]}]]]],e)));
1
+ import{p as e,b as a}from"./p-9bcf4c87.js";export{s as setNonce}from"./p-9bcf4c87.js";(()=>{const a=import.meta.url,r={};return""!==a&&(r.resourcesUrl=new URL(".",a).href),e(r)})().then((e=>a([["p-aaf08286",[[0,"reneco-hierarchized-picker",{options:[1],valueChangeCallback:[16],disabled:[4],newoptions:[1],newfilter:[1],activatedDragAndDrop:[4,"activated-drag-and-drop"],isDisabled:[32],componentID:[32],rawData:[32],pickerClass:[32],displayedValue:[32],value:[32],shownTree:[32],searchResultData:[32],hasFocus:[32],errorToLog:[32],getValue:[64],refreshPicker:[64],setOptions:[64],getSearchResult:[64],filterTree:[64],clearPicker:[64],showSelectedNodes:[64]}],[0,"search-input",{placeholder:[1],setFocus:[64]}]]]],e)));
@@ -70,6 +70,10 @@ export declare class HierarchizedPickerComponent {
70
70
  * This event is emitted when the component's value is modified, providing the new value of the component
71
71
  */
72
72
  searchResult: EventEmitter<any>;
73
+ /**
74
+ * This event is emitted when the user navigates in the tree
75
+ */
76
+ navigateInTree: EventEmitter<any>;
73
77
  /**
74
78
  * This method returns the current component's value
75
79
  */
@@ -106,6 +106,10 @@ declare namespace LocalJSX {
106
106
  * This event can only be emitted when the component is in tree mode and the drag and drop feature enabled It will fire when a node is dropped inside of the tree and provides the node after, before or in which the node is dropped along with it's ID
107
107
  */
108
108
  "onItemDropped"?: (event: RenecoHierarchizedPickerCustomEvent<any>) => void;
109
+ /**
110
+ * This event is emitted when the user navigates in the tree
111
+ */
112
+ "onNavigateInTree"?: (event: RenecoHierarchizedPickerCustomEvent<any>) => void;
109
113
  /**
110
114
  * This event is emitted when the component's value is modified, providing the new value of the component
111
115
  */
@@ -1,2 +1,3 @@
1
1
  import { HierarchizedPickerComponent } from "../../components/hierarchized-picker/hierarchized-picker";
2
- export declare function setupKeyboardNavigation(component: HierarchizedPickerComponent): void;
2
+ import { EventEmitter } from '../../stencil-public-runtime';
3
+ export declare function setupKeyboardNavigation(component: HierarchizedPickerComponent, navigateInTree: EventEmitter<any>): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "reneco-hierarchized-picker",
3
- "version": "0.4.3-beta.6",
3
+ "version": "0.4.3-beta.7",
4
4
  "description": "Stencil Component Starter",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/custom-elements/index.js",