grav-svelte 0.1.246 → 0.1.248

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.
@@ -270,6 +270,7 @@
270
270
  </button>
271
271
  </Tooltip>
272
272
  {/if}
273
+ <slot name="headerActions" />
273
274
  </div>
274
275
  <!-- Show Filters Button -->
275
276
  <div class="filter-group" role="group"></div>
@@ -29,7 +29,9 @@ declare const __propDef: {
29
29
  } & {
30
30
  [evt: string]: CustomEvent<any>;
31
31
  };
32
- slots: {};
32
+ slots: {
33
+ headerActions: {};
34
+ };
33
35
  };
34
36
  export type CrudFiltersProps = typeof __propDef.props;
35
37
  export type CrudFiltersEvents = typeof __propDef.events;
@@ -163,7 +163,9 @@
163
163
  {tooltipFiltrar}
164
164
  {labelFiltrar}
165
165
  {labelMostrando}
166
- />
166
+ >
167
+ <slot name="headerActions" slot="headerActions" />
168
+ </CrudFilters>
167
169
  </div>
168
170
  <div class="crud-table-container crud-anim-item crud-anim-table">
169
171
  <CrudTable
@@ -48,7 +48,11 @@ declare const __propDef: {
48
48
  events: {
49
49
  [evt: string]: CustomEvent<any>;
50
50
  };
51
- slots: {};
51
+ slots: {
52
+ headerActions: {
53
+ slot: string;
54
+ };
55
+ };
52
56
  };
53
57
  export type CrudWrapperProps = typeof __propDef.props;
54
58
  export type CrudWrapperEvents = typeof __propDef.events;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "grav-svelte",
3
- "version": "0.1.246",
3
+ "version": "0.1.248",
4
4
  "description": "A collection of Svelte components",
5
5
  "license": "MIT",
6
6
  "scripts": {