@dao-style/core 1.11.2-beta.5 → 1.11.2-beta.6

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.
@@ -16,6 +16,9 @@ export declare const filterClassNameMap: {
16
16
  readonly label: "dao-toolbar__filter-label";
17
17
  readonly widget: "dao-toolbar__filter-widget";
18
18
  };
19
+ export declare const actionsClassNameMap: {
20
+ readonly action: "dao-toolbar__actions-action";
21
+ };
19
22
  export declare const toolbarProps: {
20
23
  search: {
21
24
  type: PropType<SearchModelType>;
@@ -1,4 +1,4 @@
1
- import { ToolbarProps, filterClassNameMap } from './toolbar-props';
1
+ import { ToolbarProps, filterClassNameMap, actionsClassNameMap } from './toolbar-props';
2
2
  import { ParamsSlotFn, SlotFn } from '../../utils/types';
3
3
  declare const _default: {
4
4
  new (...args: any[]): {
@@ -125,6 +125,9 @@ declare const _default: {
125
125
  readonly label: "dao-toolbar__filter-label";
126
126
  readonly widget: "dao-toolbar__filter-widget";
127
127
  };
128
+ actionsClassNameMap: {
129
+ readonly action: "dao-toolbar__actions-action";
130
+ };
128
131
  getValueLabel: (key: string, value: import("./types").SearchValue) => import("./types").SearchValue;
129
132
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("search" | "update:search" | "refresh")[], string, {
130
133
  search: import("./toolbar-props").SearchModelType;
@@ -212,6 +215,9 @@ declare const _default: {
212
215
  readonly label: "dao-toolbar__filter-label";
213
216
  readonly widget: "dao-toolbar__filter-widget";
214
217
  };
218
+ actionsClassNameMap: {
219
+ readonly action: "dao-toolbar__actions-action";
220
+ };
215
221
  getValueLabel: (key: string, value: import("./types").SearchValue) => import("./types").SearchValue;
216
222
  }> & {} & import("vue").ComponentCustomProperties & {};
217
223
  __isFragment?: undefined;
@@ -273,6 +279,9 @@ declare const _default: {
273
279
  readonly label: "dao-toolbar__filter-label";
274
280
  readonly widget: "dao-toolbar__filter-widget";
275
281
  };
282
+ actionsClassNameMap: {
283
+ readonly action: "dao-toolbar__actions-action";
284
+ };
276
285
  getValueLabel: (key: string, value: import("./types").SearchValue) => import("./types").SearchValue;
277
286
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("search" | "update:search" | "refresh")[], "search" | "update:search" | "refresh", {
278
287
  search: import("./toolbar-props").SearchModelType;
@@ -288,7 +297,9 @@ declare const _default: {
288
297
  $props: Partial<ToolbarProps>;
289
298
  $slots: {
290
299
  search: SlotFn;
291
- 'prepend-refresh': SlotFn;
300
+ 'prepend-refresh': ParamsSlotFn<{
301
+ classNames: typeof actionsClassNameMap;
302
+ }>;
292
303
  action: SlotFn;
293
304
  filter: ParamsSlotFn<{
294
305
  classNames: typeof filterClassNameMap;
@@ -51,6 +51,9 @@ declare const _default: import("vue").DefineComponent<{
51
51
  readonly label: "dao-toolbar__filter-label";
52
52
  readonly widget: "dao-toolbar__filter-widget";
53
53
  };
54
+ actionsClassNameMap: {
55
+ readonly action: "dao-toolbar__actions-action";
56
+ };
54
57
  getValueLabel: (key: string, value: SearchValue) => SearchValue;
55
58
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("search" | "update:search" | "refresh")[], "search" | "update:search" | "refresh", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
56
59
  search: {