@enki-tek/fms-web-components 0.1.44 → 0.1.45
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.
@@ -33,10 +33,9 @@
|
|
33
33
|
<div bind:this={element}>
|
34
34
|
<div {...$$restProps} class="card">
|
35
35
|
<Row>
|
36
|
-
<Col md="
|
36
|
+
<Col md="10">
|
37
37
|
<div class="title fw-normal">{title}</div>
|
38
38
|
</Col>
|
39
|
-
<slot name="title-control" />
|
40
39
|
{#if resizable}
|
41
40
|
<Col md="2">
|
42
41
|
<div class="float-end">
|
@@ -11,7 +11,6 @@ export default class WidgetCard extends SvelteComponentTyped<{
|
|
11
11
|
}, {
|
12
12
|
[evt: string]: CustomEvent<any>;
|
13
13
|
}, {
|
14
|
-
'title-control': {};
|
15
14
|
default: {};
|
16
15
|
}> {
|
17
16
|
}
|
@@ -32,7 +31,6 @@ declare const __propDef: {
|
|
32
31
|
[evt: string]: CustomEvent<any>;
|
33
32
|
};
|
34
33
|
slots: {
|
35
|
-
'title-control': {};
|
36
34
|
default: {};
|
37
35
|
};
|
38
36
|
};
|