25 lines
267 B
Svelte
25 lines
267 B
Svelte
|
<script>
|
||
|
|
||
|
import {
|
||
|
keys,
|
||
|
map,
|
||
|
} from "lodash/fp";
|
||
|
import {
|
||
|
pipe
|
||
|
} from "../common/core";
|
||
|
|
||
|
export let propsDefinition;
|
||
|
export let props;
|
||
|
|
||
|
let fields = pipe(propsDefinition,[
|
||
|
keys,
|
||
|
map(k => propsDefinition[k])
|
||
|
]);
|
||
|
|
||
|
</script>
|
||
|
|
||
|
|
||
|
|
||
|
<style>
|
||
|
|
||
|
</style>
|