@enki-tek/fms-web-components 0.0.32 → 0.0.33
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.
@@ -2,6 +2,7 @@
|
|
2
2
|
/** @typedef {typeof __propDef.events} TableRowEvents */
|
3
3
|
/** @typedef {typeof __propDef.slots} TableRowSlots */
|
4
4
|
export default class TableRow extends SvelteComponentTyped<{
|
5
|
+
[x: string]: any;
|
5
6
|
className?: string | undefined;
|
6
7
|
}, {
|
7
8
|
[evt: string]: CustomEvent<any>;
|
@@ -15,6 +16,7 @@ export type TableRowSlots = typeof __propDef.slots;
|
|
15
16
|
import { SvelteComponentTyped } from "svelte";
|
16
17
|
declare const __propDef: {
|
17
18
|
props: {
|
19
|
+
[x: string]: any;
|
18
20
|
className?: string | undefined;
|
19
21
|
};
|
20
22
|
events: {
|