@fewangsit/wangsvue-presets 1.0.85-alpha.1 → 1.0.85-alpha.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -10,7 +10,7 @@ exports.default = {
10
10
  ],
11
11
  },
12
12
  paginatorwrapper: {
13
- class: 'mt-[11px]',
13
+ class: 'mt-1.5',
14
14
  },
15
15
  pages: {
16
16
  class: 'flex gap-0.5',
@@ -1296,6 +1296,10 @@
1296
1296
  margin-top: 0.25rem;
1297
1297
  }
1298
1298
 
1299
+ .mt-1\.5{
1300
+ margin-top: 0.375rem;
1301
+ }
1302
+
1299
1303
  .mt-2{
1300
1304
  margin-top: 0.5rem;
1301
1305
  }
@@ -1312,10 +1316,6 @@
1312
1316
  margin-top: -0.5rem;
1313
1317
  }
1314
1318
 
1315
- .mt-\[11px\]{
1316
- margin-top: 11px;
1317
- }
1318
-
1319
1319
  .box-border{
1320
1320
  box-sizing: border-box;
1321
1321
  }
@@ -3562,6 +3562,10 @@
3562
3562
  line-height: 1rem;
3563
3563
  }
3564
3564
 
3565
+ .\!font-bold{
3566
+ font-weight: 700 !important;
3567
+ }
3568
+
3565
3569
  .\!font-medium{
3566
3570
  font-weight: 500 !important;
3567
3571
  }
@@ -4444,7 +4448,7 @@ h4,
4444
4448
  p,
4445
4449
  .p{
4446
4450
  font-size: 0.75rem !important;
4447
- font-weight: 400 !important;
4451
+ font-weight: 500 !important;
4448
4452
  line-height: 1rem;
4449
4453
  }
4450
4454
 
@@ -36,7 +36,6 @@ exports.default = {
36
36
  },
37
37
  content: function (_a) {
38
38
  var context = _a.context, props = _a.props;
39
- console.log(context);
40
39
  return {
41
40
  class: [
42
41
  // Flex and Alignment
@@ -2,7 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.default = {
4
4
  root: {
5
- 'class': ['!mt-0 text-danger-500 text-xs font-light'],
5
+ 'class': ['!mt-0 text-danger-500 text-xs font-light tracking-[0.02em]'],
6
6
  'data-wv-name': 'validatormessage',
7
7
  'data-wv-section': 'root',
8
8
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fewangsit/wangsvue-presets",
3
- "version": "1.0.85-alpha.1",
3
+ "version": "1.0.85-alpha.3",
4
4
  "author": "Wangsit FE Developer",
5
5
  "description": "Wangsit VueJS Component Library Presets",
6
6
  "main": "index.js",
@@ -7,7 +7,7 @@ exports.default = {
7
7
  },
8
8
  tablewrapper: {
9
9
  'class': [
10
- 'overflow-auto relative scrollbar-w-thin',
10
+ 'overflow-auto relative scrollbar-w-thin pb-1',
11
11
  'rounded-lg rounded-br-none rounded-bl-none',
12
12
  ],
13
13
  'data-wv-section': 'tablewrapper',
@@ -7,8 +7,11 @@ declare namespace _default {
7
7
  let header: {
8
8
  'data-wv-section': string;
9
9
  };
10
- let headericon: {
11
- class: string;
10
+ function headericon({ props }: {
11
+ props: any;
12
+ }): {
13
+ class: string[];
14
+ icon: string;
12
15
  'data-wv-section': string;
13
16
  };
14
17
  function headertitle(severity: any): {
@@ -11,7 +11,14 @@ exports.default = {
11
11
  header: {
12
12
  'data-wv-section': 'dialog-confirm-header',
13
13
  },
14
- headericon: { 'class': 'text-2xl', 'data-wv-section': 'headericon' },
14
+ headericon: function (_a) {
15
+ var props = _a.props;
16
+ return ({
17
+ 'class': ['text-2xl'],
18
+ 'icon': props.severity === 'danger' ? 'error-fill' : 'checkbox-circle',
19
+ 'data-wv-section': 'headericon',
20
+ });
21
+ },
15
22
  headertitle: function (severity) { return ({
16
23
  'class': [
17
24
  'text-base leading-none font-semibold',