@enki-tek/fms-web-components 0.1.44 → 0.1.46

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.
@@ -6,7 +6,7 @@ const DEFAULT_PAGE_COUNT = 5;
6
6
  export let noOfItems = 300;
7
7
  export let itemPerPage = 30;
8
8
  export let currentPage = 1;
9
- export let size = "lg";
9
+ export let size = "md";
10
10
  let pageCount = Math.ceil(noOfItems / itemPerPage);
11
11
  let pagesToShow = pageCount > DEFAULT_PAGE_COUNT ? DEFAULT_PAGE_COUNT : pageCount;
12
12
  let pageNumbers = [];
@@ -19,7 +19,7 @@
19
19
  border: 0px solid transparent;
20
20
  border-top-left-radius: .25rem;
21
21
  border-top-right-radius: .25rem;
22
- text-transform: capitalize;
22
+ text-transform: none;
23
23
  font-size: 14px;
24
24
  font-style: normal;
25
25
  font-weight: 500;
@@ -42,7 +42,7 @@ export let tabs = [
42
42
  border: 0px solid transparent;
43
43
  border-top-left-radius: 0.25rem;
44
44
  border-top-right-radius: 0.25rem;
45
- text-transform: capitalize;
45
+ text-transform: none;
46
46
  font-size: 14px;
47
47
  font-style: normal;
48
48
  font-weight: 500;
@@ -159,6 +159,7 @@
159
159
  background-color: #f8f8f8;
160
160
  border-radius: 0.2rem;
161
161
  height: fit-content;
162
+ font-weight: 500 !important;
162
163
  }
163
164
  .warning-icon {
164
165
  color: orange;
@@ -133,6 +133,7 @@
133
133
  background-color: #f8f8f8;
134
134
  border-radius: 0.2rem;
135
135
  height: fit-content;
136
+ font-weight: 500 !important;
136
137
  }
137
138
  .warning-icon {
138
139
  color: orange;
@@ -142,6 +142,7 @@
142
142
  background-color: #f8f8f8;
143
143
  border-radius: calc((.2*$rem));
144
144
  height: fit-content;
145
+ font-weight:500 !important;
145
146
  }
146
147
 
147
148
  .warning-icon {
@@ -152,6 +152,7 @@
152
152
  background-color: #f8f8f8;
153
153
  border-radius: 0.2rem;
154
154
  height: fit-content;
155
+ font-weight: 500 !important;
155
156
  }
156
157
  .warning-icon {
157
158
  color: orange;
@@ -162,6 +162,7 @@
162
162
  background-color: #f8f8f8;
163
163
  border-radius: 0.2rem;
164
164
  height: fit-content;
165
+ font-weight: 500 !important;
165
166
  }
166
167
  .warning-icon {
167
168
  color: orange;
@@ -33,10 +33,9 @@
33
33
  <div bind:this={element}>
34
34
  <div {...$$restProps} class="card">
35
35
  <Row>
36
- <Col md="8">
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">
@@ -182,6 +181,7 @@
182
181
  background-color: #f8f8f8;
183
182
  border-radius: 0.2rem;
184
183
  height: fit-content;
184
+ font-weight: 500 !important;
185
185
  }
186
186
  .warning-icon {
187
187
  color: orange;
@@ -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
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@enki-tek/fms-web-components",
3
- "version": "0.1.44",
3
+ "version": "0.1.46",
4
4
  "devDependencies": {
5
5
  "@storybook/addon-essentials": "^7.6.14",
6
6
  "@storybook/addon-interactions": "^7.6.14",