@enki-tek/fms-web-components 0.0.55 → 0.0.57

Sign up to get free protection for your applications and to get access to all the features.
@@ -44,6 +44,9 @@
44
44
  border-radius: 50%;
45
45
  color: #3AC82E;
46
46
  padding: 8px 9px;
47
+ height: 45px;
48
+ width: 45px;
49
+ font-weight: bold;
47
50
  }
48
51
  :global(.headerIcons i) {
49
52
  padding: 0 4px;
@@ -19,6 +19,9 @@
19
19
  border-radius: 50%;
20
20
  color: $secondary;
21
21
  padding: 8px 9px;
22
+ height:45px;
23
+ width:45px;
24
+ font-weight:bold;
22
25
  }
23
26
 
24
27
  :global(.headerIcons i) {
@@ -46,6 +46,9 @@
46
46
  border-radius: 50%;
47
47
  color: #3AC82E;
48
48
  padding: 8px 9px;
49
+ height: 45px;
50
+ width: 45px;
51
+ font-weight: bold;
49
52
  }
50
53
  :global(.headerIcons i) {
51
54
  padding: 0 4px;
@@ -9,7 +9,7 @@
9
9
  </script>
10
10
 
11
11
  <NavItem class='me-3' {...$$restProps}>
12
- <NavLink href={link} class='headerIcons' on:click><Icon name={iconName}></Icon></NavLink>
12
+ <NavLink href={link} class='headerIcons' on:click><Icon name={iconName}></Icon><slot></slot></NavLink>
13
13
  </NavItem>
14
14
 
15
15
  <style>@import url(https://fonts.googleapis.com/icon?family=Material+Icons);
@@ -35,6 +35,9 @@
35
35
  border-radius: 50%;
36
36
  color: #3AC82E;
37
37
  padding: 8px 9px;
38
+ height: 45px;
39
+ width: 45px;
40
+ font-weight: bold;
38
41
  }
39
42
  :global(.headerIcons i) {
40
43
  padding: 0 4px;
@@ -9,7 +9,9 @@ export default class HeaderItem extends SvelteComponentTyped<{
9
9
  click: MouseEvent;
10
10
  } & {
11
11
  [evt: string]: CustomEvent<any>;
12
- }, {}> {
12
+ }, {
13
+ default: {};
14
+ }> {
13
15
  }
14
16
  export type HeaderItemProps = typeof __propDef.props;
15
17
  export type HeaderItemEvents = typeof __propDef.events;
@@ -26,6 +28,8 @@ declare const __propDef: {
26
28
  } & {
27
29
  [evt: string]: CustomEvent<any>;
28
30
  };
29
- slots: {};
31
+ slots: {
32
+ default: {};
33
+ };
30
34
  };
31
35
  export {};
@@ -43,6 +43,9 @@
43
43
  border-radius: 50%;
44
44
  color: #3AC82E;
45
45
  padding: 8px 9px;
46
+ height: 45px;
47
+ width: 45px;
48
+ font-weight: bold;
46
49
  }
47
50
  :global(.headerIcons i) {
48
51
  padding: 0 4px;
@@ -1,7 +1,7 @@
1
1
  <script>
2
2
  import {Icon} from 'sveltestrap'
3
3
 
4
- export let iconName = 'bell'
4
+ export let iconName = " ";
5
5
  export let className="";
6
6
  </script>
7
7
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@enki-tek/fms-web-components",
3
- "version": "0.0.55",
3
+ "version": "0.0.57",
4
4
  "devDependencies": {
5
5
  "@storybook/addon-essentials": "^7.6.14",
6
6
  "@storybook/addon-interactions": "^7.6.14",