@enki-tek/fms-web-components 0.1.1 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -4,6 +4,6 @@
4
4
  <div class="container-fluid" style="margin-top:80px;background-color: #EBECEF;">
5
5
  <div class="row">
6
6
  <slot name="sidebar-menu" />
7
- <slot name="page" />
7
+ <slot />
8
8
  </div>
9
9
  </div>
@@ -7,7 +7,7 @@ export default class Content extends SvelteComponentTyped<{
7
7
  [evt: string]: CustomEvent<any>;
8
8
  }, {
9
9
  'sidebar-menu': {};
10
- page: {};
10
+ default: {};
11
11
  }> {
12
12
  }
13
13
  export type ContentProps = typeof __propDef.props;
@@ -23,7 +23,7 @@ declare const __propDef: {
23
23
  };
24
24
  slots: {
25
25
  'sidebar-menu': {};
26
- page: {};
26
+ default: {};
27
27
  };
28
28
  };
29
29
  export {};
@@ -1,9 +1,9 @@
1
1
  <script>
2
- import { i18nInit } from '../i18n/i18n';
2
+ // import { i18nInit } from '../i18n/i18n';
3
3
  import ShiftLanguage from '../i18n/ShiftLanguage.svelte';
4
4
 
5
5
  import { _ } from 'svelte-i18n';
6
- i18nInit();
6
+ // i18nInit();
7
7
  </script>
8
8
 
9
9
  <footer class="main-footer p-10 d-flex flex-row align-items-center justify-content-between ">
@@ -5,7 +5,6 @@
5
5
  export let id;
6
6
  onMount(() => {
7
7
  const el = document.getElementById(id);
8
- console.log(el);
9
8
  Sortable.create(el, {
10
9
  animation: 150,
11
10
  ghostClass: 'blue-background-class'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@enki-tek/fms-web-components",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "devDependencies": {
5
5
  "@storybook/addon-essentials": "^7.6.14",
6
6
  "@storybook/addon-interactions": "^7.6.14",