@finmars/ui 1.0.78 → 1.0.80

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,6 +1,13 @@
1
1
  import { FmFilter } from '../../../../types';
2
2
  import { FmtFilterToolbarProps } from './types';
3
- declare const _default: import('vue').DefineComponent<FmtFilterToolbarProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
3
+ declare function editFilter({ element }: {
4
+ event?: MouseEvent;
5
+ element: HTMLElement;
6
+ }, filter: FmFilter): void;
7
+ declare const _default: import('vue').DefineComponent<FmtFilterToolbarProps, {
8
+ filterAddBtn: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
9
+ editFilter: typeof editFilter;
10
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
4
11
  "update:modelValue": (value: FmFilter[]) => any;
5
12
  "update:suggested": (value: string) => any;
6
13
  }, string, import('vue').PublicProps, Readonly<FmtFilterToolbarProps> & Readonly<{
@@ -8,6 +15,7 @@ declare const _default: import('vue').DefineComponent<FmtFilterToolbarProps, {},
8
15
  "onUpdate:suggested"?: ((value: string) => any) | undefined;
9
16
  }>, {
10
17
  value: FmFilter[];
18
+ id: string;
11
19
  attributes: import('./types').FmFilterAttribute[];
12
20
  suggestedAttrs: string[];
13
21
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
@@ -11,6 +11,7 @@ export interface FmFilterAttributes {
11
11
  attributes: FmFilterAttribute[];
12
12
  }
13
13
  export interface FmtFilterToolbarProps {
14
+ id?: string;
14
15
  value: FmFilter[];
15
16
  attributes: FmFilterAttribute[];
16
17
  suggestedAttrs: string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finmars/ui",
3
- "version": "1.0.78",
3
+ "version": "1.0.80",
4
4
  "description": "Finmars UI library for Vue 3 applications.",
5
5
  "scripts": {
6
6
  "dev": "vite dev --config vite.config.dev.js",