@fewangsit/wangsvue-presets 1.0.84-alpha.0 → 1.0.84-alpha.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -17,31 +17,79 @@ declare namespace _default {
17
17
  state: any;
18
18
  }): {
19
19
  class: (string | {
20
+ 'rounded-xl py-1 px-3': boolean;
21
+ 'p-2 pb-1.5 pt-0.5 !h-6': boolean;
22
+ 'ml-1': boolean;
23
+ 'border-b-2'?: undefined;
24
+ 'border-primary-500'?: undefined;
25
+ 'border-grayscale-400'?: undefined;
26
+ 'text-grayscale-600'?: undefined;
27
+ 'text-primary-500'?: undefined;
28
+ 'bg-primary-50 text-primary-500'?: undefined;
29
+ 'bg-grayscale-200 text-grayscale-800'?: undefined;
30
+ 'bg-transparent '?: undefined;
31
+ 'focus-visible:border-primary-200 focus-visible:text-primary-400'?: undefined;
32
+ 'pointer-events-none'?: undefined;
33
+ 'opacity-60'?: undefined;
34
+ } | {
35
+ 'border-b-2': boolean;
36
+ 'rounded-xl py-1 px-3'?: undefined;
37
+ 'p-2 pb-1.5 pt-0.5 !h-6'?: undefined;
38
+ 'ml-1'?: undefined;
39
+ 'border-primary-500'?: undefined;
40
+ 'border-grayscale-400'?: undefined;
41
+ 'text-grayscale-600'?: undefined;
42
+ 'text-primary-500'?: undefined;
43
+ 'bg-primary-50 text-primary-500'?: undefined;
44
+ 'bg-grayscale-200 text-grayscale-800'?: undefined;
45
+ 'bg-transparent '?: undefined;
46
+ 'focus-visible:border-primary-200 focus-visible:text-primary-400'?: undefined;
47
+ 'pointer-events-none'?: undefined;
48
+ 'opacity-60'?: undefined;
49
+ } | {
50
+ 'border-primary-500': any;
51
+ 'border-grayscale-400': boolean;
52
+ 'text-grayscale-600': boolean;
53
+ 'text-primary-500': any;
54
+ 'bg-primary-50 text-primary-500': any;
55
+ 'bg-grayscale-200 text-grayscale-800': boolean;
20
56
  'bg-transparent ': boolean;
21
- 'text-grayscale-900': boolean;
22
- 'border-primary-400': boolean;
23
- 'border-primary-100': boolean;
24
- 'text-primary-500': boolean;
57
+ 'rounded-xl py-1 px-3'?: undefined;
58
+ 'p-2 pb-1.5 pt-0.5 !h-6'?: undefined;
59
+ 'ml-1'?: undefined;
60
+ 'border-b-2'?: undefined;
25
61
  'focus-visible:border-primary-200 focus-visible:text-primary-400'?: undefined;
26
62
  'pointer-events-none'?: undefined;
27
63
  'opacity-60'?: undefined;
28
64
  } | {
29
65
  'focus-visible:border-primary-200 focus-visible:text-primary-400': boolean;
30
- 'bg-transparent '?: undefined;
31
- 'text-grayscale-900'?: undefined;
32
- 'border-primary-400'?: undefined;
33
- 'border-primary-100'?: undefined;
66
+ 'rounded-xl py-1 px-3'?: undefined;
67
+ 'p-2 pb-1.5 pt-0.5 !h-6'?: undefined;
68
+ 'ml-1'?: undefined;
69
+ 'border-b-2'?: undefined;
70
+ 'border-primary-500'?: undefined;
71
+ 'border-grayscale-400'?: undefined;
72
+ 'text-grayscale-600'?: undefined;
34
73
  'text-primary-500'?: undefined;
74
+ 'bg-primary-50 text-primary-500'?: undefined;
75
+ 'bg-grayscale-200 text-grayscale-800'?: undefined;
76
+ 'bg-transparent '?: undefined;
35
77
  'pointer-events-none'?: undefined;
36
78
  'opacity-60'?: undefined;
37
79
  } | {
38
80
  'pointer-events-none': any;
39
81
  'opacity-60': any;
40
- 'bg-transparent '?: undefined;
41
- 'text-grayscale-900'?: undefined;
42
- 'border-primary-400'?: undefined;
43
- 'border-primary-100'?: undefined;
82
+ 'rounded-xl py-1 px-3'?: undefined;
83
+ 'p-2 pb-1.5 pt-0.5 !h-6'?: undefined;
84
+ 'ml-1'?: undefined;
85
+ 'border-b-2'?: undefined;
86
+ 'border-primary-500'?: undefined;
87
+ 'border-grayscale-400'?: undefined;
88
+ 'text-grayscale-600'?: undefined;
44
89
  'text-primary-500'?: undefined;
90
+ 'bg-primary-50 text-primary-500'?: undefined;
91
+ 'bg-grayscale-200 text-grayscale-800'?: undefined;
92
+ 'bg-transparent '?: undefined;
45
93
  'focus-visible:border-primary-200 focus-visible:text-primary-400'?: undefined;
46
94
  })[];
47
95
  };
@@ -9,7 +9,6 @@ exports.default = {
9
9
  class: [
10
10
  // Flexbox
11
11
  'flex flex-1',
12
- // Size
13
12
  // Spacing
14
13
  'list-none',
15
14
  'p-0 m-0',
@@ -27,28 +26,34 @@ exports.default = {
27
26
  class: [
28
27
  'relative',
29
28
  // Font
30
- 'font-normal',
31
- 'text-xs',
29
+ 'font-medium',
30
+ 'text-xs leading-4 tracking-[0.02em]',
32
31
  // Flexbox and Alignment
33
32
  'flex items-center',
34
33
  // Spacing
35
- 'p-2 pb-1.5 pt-0.5 !h-6',
34
+ {
35
+ 'rounded-xl py-1 px-3': context.type === 'pill',
36
+ 'p-2 pb-1.5 pt-0.5 !h-6': context.type !== 'pill',
37
+ 'ml-1': context.type === 'pill' && context.index !== 0,
38
+ },
36
39
  // Shape
37
- 'border-b-2',
40
+ {
41
+ 'border-b-2': context.type !== 'pill',
42
+ },
38
43
  // Colors and Conditions
39
44
  {
40
- 'bg-transparent ': state.d_activeIndex !== context.index,
41
- 'text-grayscale-900': state.d_activeIndex !== context.index,
42
- 'border-primary-400': state.d_activeIndex === context.index,
43
- 'border-primary-100': state.d_activeIndex !== context.index,
44
- 'text-primary-500': state.d_activeIndex === context.index,
45
+ 'border-primary-500': state.active,
46
+ 'border-grayscale-400': !state.active,
47
+ 'text-grayscale-600': !state.active,
48
+ 'text-primary-500': state.active,
49
+ 'bg-primary-50 text-primary-500': context.type === 'pill' && state.active,
50
+ 'bg-grayscale-200 text-grayscale-800': context.type === 'pill' && !state.active,
51
+ 'bg-transparent ': context.type !== 'pill' && !state.active,
45
52
  },
46
53
  // States
47
- 'hover:bg-primary-50',
48
54
  'focus-visible:outline-none focus-visible:outline-offset-0',
49
- 'focus-visible:bg-primary-50',
50
55
  {
51
- 'focus-visible:border-primary-200 focus-visible:text-primary-400': state.d_activeIndex !== context.index,
56
+ 'focus-visible:border-primary-200 focus-visible:text-primary-400': !state.active,
52
57
  },
53
58
  // Disabled States
54
59
  {
@@ -3,18 +3,22 @@ declare namespace _default {
3
3
  let _class: string[];
4
4
  export { _class as class };
5
5
  }
6
- export namespace wrapper {
6
+ export namespace loadingOverlay {
7
7
  let _class_1: string[];
8
8
  export { _class_1 as class };
9
9
  }
10
- export namespace container {
10
+ export namespace wrapper {
11
11
  let _class_2: string[];
12
12
  export { _class_2 as class };
13
13
  }
14
- export namespace node {
14
+ export namespace container {
15
15
  let _class_3: string[];
16
16
  export { _class_3 as class };
17
17
  }
18
+ export namespace node {
19
+ let _class_4: string[];
20
+ export { _class_4 as class };
21
+ }
18
22
  export function content({ context, props }: {
19
23
  context: any;
20
24
  props: any;
@@ -22,15 +26,33 @@ declare namespace _default {
22
26
  class: (string | {
23
27
  'bg-primary-50 !text-primary-500 [&_*]:text-primary-500': any;
24
28
  'hover:bg-primary-50'?: undefined;
29
+ '!pointer-events-none !opacity-60 !cursor-default'?: undefined;
25
30
  'cursor-pointer select-none'?: undefined;
31
+ 'cursor-pointer'?: undefined;
26
32
  } | {
27
33
  'hover:bg-primary-50': boolean;
28
34
  'bg-primary-50 !text-primary-500 [&_*]:text-primary-500'?: undefined;
35
+ '!pointer-events-none !opacity-60 !cursor-default'?: undefined;
29
36
  'cursor-pointer select-none'?: undefined;
37
+ 'cursor-pointer'?: undefined;
38
+ } | {
39
+ '!pointer-events-none !opacity-60 !cursor-default': any;
40
+ 'bg-primary-50 !text-primary-500 [&_*]:text-primary-500'?: undefined;
41
+ 'hover:bg-primary-50'?: undefined;
42
+ 'cursor-pointer select-none'?: undefined;
43
+ 'cursor-pointer'?: undefined;
30
44
  } | {
31
45
  'cursor-pointer select-none': boolean;
32
46
  'bg-primary-50 !text-primary-500 [&_*]:text-primary-500'?: undefined;
33
47
  'hover:bg-primary-50'?: undefined;
48
+ '!pointer-events-none !opacity-60 !cursor-default'?: undefined;
49
+ 'cursor-pointer'?: undefined;
50
+ } | {
51
+ 'cursor-pointer': boolean;
52
+ 'bg-primary-50 !text-primary-500 [&_*]:text-primary-500'?: undefined;
53
+ 'hover:bg-primary-50'?: undefined;
54
+ '!pointer-events-none !opacity-60 !cursor-default'?: undefined;
55
+ 'cursor-pointer select-none'?: undefined;
34
56
  })[];
35
57
  };
36
58
  export function toggler({ context }: {
@@ -39,15 +61,16 @@ declare namespace _default {
39
61
  class: (string | {
40
62
  invisible: any;
41
63
  })[];
64
+ 'data-wv-section': string;
42
65
  };
43
66
  export namespace togglericon {
44
- let _class_4: string[];
45
- export { _class_4 as class };
67
+ let _class_5: string[];
68
+ export { _class_5 as class };
46
69
  }
47
70
  export namespace nodeCheckbox {
48
71
  export namespace root_1 {
49
- let _class_5: string[];
50
- export { _class_5 as class };
72
+ let _class_6: string[];
73
+ export { _class_6 as class };
51
74
  }
52
75
  export { root_1 as root };
53
76
  export function box({ props, context }: {
@@ -75,39 +98,39 @@ declare namespace _default {
75
98
  })[];
76
99
  };
77
100
  export namespace input {
78
- let _class_6: string[];
79
- export { _class_6 as class };
80
- }
81
- export namespace icon {
82
101
  let _class_7: string[];
83
102
  export { _class_7 as class };
84
103
  }
104
+ export namespace icon {
105
+ let _class_8: string[];
106
+ export { _class_8 as class };
107
+ }
85
108
  }
86
109
  export namespace nodeicon {
87
- let _class_8: string[];
88
- export { _class_8 as class };
89
- }
90
- export namespace subgroup {
91
110
  let _class_9: string[];
92
111
  export { _class_9 as class };
93
112
  }
94
- export namespace filtercontainer {
113
+ export namespace subgroup {
95
114
  let _class_10: string[];
96
115
  export { _class_10 as class };
97
116
  }
98
- export namespace input_1 {
117
+ export namespace filtercontainer {
99
118
  let _class_11: string[];
100
119
  export { _class_11 as class };
101
120
  }
102
- export { input_1 as input };
103
- export namespace loadingicon {
121
+ export namespace input_1 {
104
122
  let _class_12: string[];
105
123
  export { _class_12 as class };
106
124
  }
107
- export namespace searchicon {
125
+ export { input_1 as input };
126
+ export namespace loadingicon {
108
127
  let _class_13: string[];
109
128
  export { _class_13 as class };
110
129
  }
130
+ export namespace searchicon {
131
+ let _class_14: string[];
132
+ export { _class_14 as class };
133
+ }
111
134
  export function label({ props }: {
112
135
  props: any;
113
136
  }): {
@@ -5,12 +5,16 @@ exports.default = {
5
5
  class: [
6
6
  'relative',
7
7
  // Space
8
+ 'w-full h-full',
8
9
  // Shape
9
10
  'rounded-md',
10
11
  'min-h-8',
11
12
  // Color
12
13
  ],
13
14
  },
15
+ loadingOverlay: {
16
+ class: ['flex justify-center items-center absolute z-1 h-full w-full'],
17
+ },
14
18
  wrapper: {
15
19
  class: ['overflow-auto'],
16
20
  },
@@ -24,14 +28,16 @@ exports.default = {
24
28
  },
25
29
  node: {
26
30
  class: [
27
- 'p-[2px]',
31
+ 'p-0',
32
+ 'pl-1',
28
33
  'rounded-md',
29
34
  'focus:outline-none focus:outline-offset-0',
30
35
  ],
31
36
  },
32
37
  content: function (_a) {
33
38
  var context = _a.context, props = _a.props;
34
- return ({
39
+ console.log(context);
40
+ return {
35
41
  class: [
36
42
  // Flex and Alignment
37
43
  'flex items-center',
@@ -46,22 +52,27 @@ exports.default = {
46
52
  },
47
53
  // States
48
54
  {
49
- 'hover:bg-primary-50': props.selectionMode == 'single' || props.selectionMode == 'multiple',
55
+ 'hover:bg-primary-50': props.selectionMode == 'single' ||
56
+ props.selectionMode == 'multiple',
57
+ },
58
+ {
59
+ '!pointer-events-none !opacity-60 !cursor-default': context.disabled,
50
60
  },
51
61
  // Transition
52
62
  'transition-shadow duration-200',
53
63
  {
54
- 'cursor-pointer select-none': props.selectionMode == 'single' || props.selectionMode == 'multiple',
64
+ 'cursor-pointer select-none': props.selectionMode == 'single' ||
65
+ props.selectionMode == 'multiple',
55
66
  },
56
67
  // Miscelanous
57
- 'cursor-pointer',
68
+ { 'cursor-pointer': !context.disabled },
58
69
  ],
59
- });
70
+ };
60
71
  },
61
72
  toggler: function (_a) {
62
73
  var context = _a.context;
63
74
  return ({
64
- class: [
75
+ 'class': [
65
76
  // Flex and Alignment
66
77
  'inline-flex items-center justify-center',
67
78
  'shrink-0',
@@ -84,6 +95,7 @@ exports.default = {
84
95
  // Misc
85
96
  'cursor-pointer select-none',
86
97
  ],
98
+ 'data-wv-section': 'tree-node-toggler',
87
99
  });
88
100
  },
89
101
  togglericon: {
@@ -103,7 +103,7 @@ exports.default = {
103
103
  },
104
104
  node: {
105
105
  class: [
106
- 'p-[2px]',
106
+ 'p-0',
107
107
  'rounded-md',
108
108
  'focus:outline-none focus:outline-offset-0 focus:ring-2 focus:ring-inset focus:ring-primary-500',
109
109
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fewangsit/wangsvue-presets",
3
- "version": "1.0.84-alpha.0",
3
+ "version": "1.0.84-alpha.2",
4
4
  "author": "Wangsit FE Developer",
5
5
  "description": "Wangsit VueJS Component Library Presets",
6
6
  "main": "index.js",
@@ -7,6 +7,10 @@
7
7
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M11 11V5h2v6h6v2h-6v6h-2v-6H5v-2z'/%3E%3C/svg%3E");
8
8
  }
9
9
 
10
+ .ic-minus {
11
+ --svg: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBmaWxsPSJjdXJyZW50Q29sb3IiIGQ9Ik01IDExdjJoMTR2LTJ6Ii8+PC9zdmc+');
12
+ }
13
+
10
14
  .ic-arrow-up-s {
11
15
  /* ri--arrow-up-s-line */
12
16
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='m12 10.828l-4.95 4.95l-1.414-1.414L12 8l6.364 6.364l-1.414 1.414z'/%3E%3C/svg%3E");
@@ -898,6 +902,10 @@
898
902
  mask-size: 100% 100%;
899
903
  }
900
904
 
905
+ .\!pointer-events-none{
906
+ pointer-events: none !important;
907
+ }
908
+
901
909
  .pointer-events-none{
902
910
  pointer-events: none;
903
911
  }
@@ -1362,6 +1370,10 @@
1362
1370
  height: 1.5rem !important;
1363
1371
  }
1364
1372
 
1373
+ .\!h-\[10px\]{
1374
+ height: 10px !important;
1375
+ }
1376
+
1365
1377
  .\!h-\[11px\]{
1366
1378
  height: 11px !important;
1367
1379
  }
@@ -1443,6 +1455,10 @@
1443
1455
  height: 2rem;
1444
1456
  }
1445
1457
 
1458
+ .h-\[10px\]{
1459
+ height: 10px;
1460
+ }
1461
+
1446
1462
  .h-\[18px\]{
1447
1463
  height: 18px;
1448
1464
  }
@@ -1573,6 +1589,10 @@
1573
1589
  width: 1.5rem !important;
1574
1590
  }
1575
1591
 
1592
+ .\!w-\[10px\]{
1593
+ width: 10px !important;
1594
+ }
1595
+
1576
1596
  .\!w-\[11px\]{
1577
1597
  width: 11px !important;
1578
1598
  }
@@ -1669,6 +1689,10 @@
1669
1689
  width: 1%;
1670
1690
  }
1671
1691
 
1692
+ .w-\[10px\]{
1693
+ width: 10px;
1694
+ }
1695
+
1672
1696
  .w-\[18px\]{
1673
1697
  width: 18px;
1674
1698
  }
@@ -2438,6 +2462,10 @@
2438
2462
  border-radius: 0.125rem;
2439
2463
  }
2440
2464
 
2465
+ .rounded-xl{
2466
+ border-radius: 0.75rem;
2467
+ }
2468
+
2441
2469
  .rounded-b-lg{
2442
2470
  border-bottom-right-radius: 0.5rem;
2443
2471
  border-bottom-left-radius: 0.5rem;
@@ -2679,6 +2707,11 @@
2679
2707
  border-color: rgb(243 244 246 / var(--tw-border-opacity));
2680
2708
  }
2681
2709
 
2710
+ .border-grayscale-400{
2711
+ --tw-border-opacity: 1;
2712
+ border-color: rgb(203 204 205 / var(--tw-border-opacity));
2713
+ }
2714
+
2682
2715
  .border-grayscale-900{
2683
2716
  --tw-border-opacity: 1;
2684
2717
  border-color: rgb(38 38 39 / var(--tw-border-opacity));
@@ -2776,6 +2809,11 @@
2776
2809
  background-color: rgb(59 130 246 / var(--tw-bg-opacity));
2777
2810
  }
2778
2811
 
2812
+ .bg-danger-100{
2813
+ --tw-bg-opacity: 1;
2814
+ background-color: rgb(231 195 182 / var(--tw-bg-opacity));
2815
+ }
2816
+
2779
2817
  .bg-danger-200{
2780
2818
  --tw-bg-opacity: 1;
2781
2819
  background-color: rgb(219 165 146 / var(--tw-bg-opacity));
@@ -2824,6 +2862,16 @@
2824
2862
  background-color: rgb(107 114 128 / var(--tw-bg-opacity));
2825
2863
  }
2826
2864
 
2865
+ .bg-grayscale-200{
2866
+ --tw-bg-opacity: 1;
2867
+ background-color: rgb(229 230 230 / var(--tw-bg-opacity));
2868
+ }
2869
+
2870
+ .bg-grayscale-300{
2871
+ --tw-bg-opacity: 1;
2872
+ background-color: rgb(216 217 217 / var(--tw-bg-opacity));
2873
+ }
2874
+
2827
2875
  .bg-grayscale-50{
2828
2876
  --tw-bg-opacity: 1;
2829
2877
  background-color: rgb(247 247 247 / var(--tw-bg-opacity));
@@ -2919,6 +2967,10 @@
2919
2967
  background-color: rgb(159 124 60 / var(--tw-bg-opacity));
2920
2968
  }
2921
2969
 
2970
+ .bg-primary-500\/20{
2971
+ background-color: rgb(159 124 60 / 0.2);
2972
+ }
2973
+
2922
2974
  .bg-primary-600{
2923
2975
  --tw-bg-opacity: 1;
2924
2976
  background-color: rgb(133 103 50 / var(--tw-bg-opacity));
@@ -3074,10 +3126,19 @@
3074
3126
  padding: 2px;
3075
3127
  }
3076
3128
 
3129
+ .p-\[5px\]{
3130
+ padding: 5px;
3131
+ }
3132
+
3077
3133
  .p-\[7px\]{
3078
3134
  padding: 7px;
3079
3135
  }
3080
3136
 
3137
+ .\!px-0{
3138
+ padding-left: 0px !important;
3139
+ padding-right: 0px !important;
3140
+ }
3141
+
3081
3142
  .\!px-1\.5{
3082
3143
  padding-left: 0.375rem !important;
3083
3144
  padding-right: 0.375rem !important;
@@ -3093,6 +3154,11 @@
3093
3154
  padding-right: 1.5rem !important;
3094
3155
  }
3095
3156
 
3157
+ .\!py-0{
3158
+ padding-top: 0px !important;
3159
+ padding-bottom: 0px !important;
3160
+ }
3161
+
3096
3162
  .\!py-1{
3097
3163
  padding-top: 0.25rem !important;
3098
3164
  padding-bottom: 0.25rem !important;
@@ -3430,6 +3496,10 @@
3430
3496
  font-size: 14px;
3431
3497
  }
3432
3498
 
3499
+ .text-\[9px\]{
3500
+ font-size: 9px;
3501
+ }
3502
+
3433
3503
  .text-base{
3434
3504
  font-size: 1rem;
3435
3505
  line-height: 1.5rem;
@@ -3491,6 +3561,10 @@
3491
3561
  line-height: 1.25rem !important;
3492
3562
  }
3493
3563
 
3564
+ .leading-3{
3565
+ line-height: .75rem;
3566
+ }
3567
+
3494
3568
  .leading-4{
3495
3569
  line-height: 1rem;
3496
3570
  }
@@ -3650,6 +3724,11 @@
3650
3724
  color: rgb(183 75 36 / var(--tw-text-opacity));
3651
3725
  }
3652
3726
 
3727
+ .text-danger-600{
3728
+ --tw-text-opacity: 1;
3729
+ color: rgb(153 63 30 / var(--tw-text-opacity));
3730
+ }
3731
+
3653
3732
  .text-danger-700{
3654
3733
  --tw-text-opacity: 1;
3655
3734
  color: rgb(122 50 24 / var(--tw-text-opacity));
@@ -3685,6 +3764,11 @@
3685
3764
  color: rgb(16 15 21 / var(--tw-text-opacity));
3686
3765
  }
3687
3766
 
3767
+ .text-grayscale-600{
3768
+ --tw-text-opacity: 1;
3769
+ color: rgb(151 153 155 / var(--tw-text-opacity));
3770
+ }
3771
+
3688
3772
  .text-grayscale-800{
3689
3773
  --tw-text-opacity: 1;
3690
3774
  color: rgb(75 77 78 / var(--tw-text-opacity));
@@ -3785,6 +3869,14 @@
3785
3869
  text-decoration-line: none;
3786
3870
  }
3787
3871
 
3872
+ .caret-primary-700{
3873
+ caret-color: #785930;
3874
+ }
3875
+
3876
+ .\!opacity-60{
3877
+ opacity: 0.6 !important;
3878
+ }
3879
+
3788
3880
  .opacity-0{
3789
3881
  opacity: 0;
3790
3882
  }
@@ -3979,6 +4071,11 @@
3979
4071
  --tw-ring-color: rgb(108 104 141 / var(--tw-ring-opacity));
3980
4072
  }
3981
4073
 
4074
+ .ring-general-500{
4075
+ --tw-ring-opacity: 1;
4076
+ --tw-ring-color: rgb(78 75 102 / var(--tw-ring-opacity));
4077
+ }
4078
+
3982
4079
  .ring-gray-500{
3983
4080
  --tw-ring-opacity: 1;
3984
4081
  --tw-ring-color: rgb(107 114 128 / var(--tw-ring-opacity));
@@ -4768,6 +4865,11 @@ h6,
4768
4865
  --tw-ring-color: rgb(189 165 82 / var(--tw-ring-opacity));
4769
4866
  }
4770
4867
 
4868
+ .focus-within\:ring-primary-500:focus-within{
4869
+ --tw-ring-opacity: 1;
4870
+ --tw-ring-color: rgb(159 124 60 / var(--tw-ring-opacity));
4871
+ }
4872
+
4771
4873
  .hover\:mx-6:hover{
4772
4874
  margin-left: 1.5rem;
4773
4875
  margin-right: 1.5rem;
@@ -4815,6 +4917,10 @@ h6,
4815
4917
  background-color: rgb(248 247 238 / var(--tw-bg-opacity)) !important;
4816
4918
  }
4817
4919
 
4920
+ .hover\:\!bg-primary-500\/90:hover{
4921
+ background-color: rgb(159 124 60 / 0.9) !important;
4922
+ }
4923
+
4818
4924
  .hover\:\!bg-success-500\/90:hover{
4819
4925
  background-color: rgb(0 147 132 / 0.9) !important;
4820
4926
  }
@@ -4859,6 +4965,11 @@ h6,
4859
4965
  background-color: rgb(75 85 99 / var(--tw-bg-opacity));
4860
4966
  }
4861
4967
 
4968
+ .hover\:bg-grayscale-300:hover{
4969
+ --tw-bg-opacity: 1;
4970
+ background-color: rgb(216 217 217 / var(--tw-bg-opacity));
4971
+ }
4972
+
4862
4973
  .hover\:bg-grayscale-50:hover{
4863
4974
  --tw-bg-opacity: 1;
4864
4975
  background-color: rgb(247 247 247 / var(--tw-bg-opacity));
@@ -4935,6 +5046,14 @@ h6,
4935
5046
  background-color: rgb(159 124 60 / var(--tw-bg-opacity));
4936
5047
  }
4937
5048
 
5049
+ .hover\:bg-primary-500\/20:hover{
5050
+ background-color: rgb(159 124 60 / 0.2);
5051
+ }
5052
+
5053
+ .hover\:bg-primary-500\/\[8\%\]:hover{
5054
+ background-color: rgb(159 124 60 / 8%);
5055
+ }
5056
+
4938
5057
  .hover\:bg-primary-600:hover{
4939
5058
  --tw-bg-opacity: 1;
4940
5059
  background-color: rgb(133 103 50 / var(--tw-bg-opacity));
@@ -5307,6 +5426,14 @@ h6,
5307
5426
  background-color: rgb(189 165 82 / 12%);
5308
5427
  }
5309
5428
 
5429
+ .active\:bg-primary-500\/90:active{
5430
+ background-color: rgb(159 124 60 / 0.9);
5431
+ }
5432
+
5433
+ .active\:bg-primary-500\/\[12\%\]:active{
5434
+ background-color: rgb(159 124 60 / 12%);
5435
+ }
5436
+
5310
5437
  .active\:bg-success-500\/90:active{
5311
5438
  background-color: rgb(0 147 132 / 0.9);
5312
5439
  }
@@ -5708,10 +5835,18 @@ h6,
5708
5835
  background-color: transparent !important;
5709
5836
  }
5710
5837
 
5838
+ .\[\&_i\]\:h-4 i{
5839
+ height: 1rem;
5840
+ }
5841
+
5711
5842
  .\[\&_i\]\:h-5 i{
5712
5843
  height: 1.25rem;
5713
5844
  }
5714
5845
 
5846
+ .\[\&_i\]\:w-4 i{
5847
+ width: 1rem;
5848
+ }
5849
+
5715
5850
  .\[\&_i\]\:w-5 i{
5716
5851
  width: 1.25rem;
5717
5852
  }