@rakeyshgidwani/roger-ui-bank-theme-stan-design 0.2.39 → 0.2.41

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rakeyshgidwani/roger-ui-bank-theme-stan-design",
3
- "version": "0.2.39",
3
+ "version": "0.2.41",
4
4
  "description": "Roger UI stan-design theme - Complete design system with components, styles, and utilities",
5
5
  "keywords": [
6
6
  "design-system",
@@ -2,46 +2,52 @@
2
2
  /* Custom utility classes for design system integration */
3
3
 
4
4
  @layer utilities {
5
- /* Custom Focus Ring Utilities */
5
+ /* Custom Focus Ring Utilities - using Tailwind color mapping */
6
6
  .focus\:ring-cs-primary {
7
- --tw-ring-color: var(--cs-colors-primary);
7
+ --tw-ring-opacity: 1;
8
+ --tw-ring-color: var(--primary);
8
9
  }
9
10
 
10
11
  .focus\:ring-cs-secondary {
12
+ --tw-ring-opacity: 1;
11
13
  --tw-ring-color: var(--cs-colors-secondary-500);
12
14
  }
13
15
 
14
16
  .focus\:ring-cs-info {
15
- --tw-ring-color: var(--cs-colors-semantic-info);
17
+ --tw-ring-opacity: 1;
18
+ --tw-ring-color: var(--info);
16
19
  }
17
20
 
18
21
  .focus\:ring-cs-success {
19
- --tw-ring-color: var(--cs-colors-semantic-success);
22
+ --tw-ring-opacity: 1;
23
+ --tw-ring-color: var(--success);
20
24
  }
21
25
 
22
26
  .focus\:ring-cs-warning {
23
- --tw-ring-color: var(--cs-colors-semantic-warning);
27
+ --tw-ring-opacity: 1;
28
+ --tw-ring-color: var(--warning);
24
29
  }
25
30
 
26
31
  .focus\:ring-cs-error {
27
- --tw-ring-color: var(--cs-colors-semantic-error);
32
+ --tw-ring-opacity: 1;
33
+ --tw-ring-color: var(--error);
28
34
  }
29
35
 
30
36
  /* Custom Border Color Utilities */
31
37
  .focus\:border-cs-primary {
32
38
  --tw-border-opacity: 1;
33
- border-color: rgb(var(--cs-colors-primary-500-rgb) / var(--tw-border-opacity));
39
+ border-color: var(--primary);
34
40
  }
35
41
 
36
42
  .focus\:border-cs-secondary {
37
43
  --tw-border-opacity: 1;
38
- border-color: rgb(var(--cs-colors-secondary-500-rgb) / var(--tw-border-opacity));
44
+ border-color: var(--cs-colors-secondary-500);
39
45
  }
40
46
 
41
47
  /* Custom Background Color Utilities */
42
48
  .bg-cs-primary {
43
49
  --tw-bg-opacity: 1;
44
- background-color: var(--cs-colors-primary);
50
+ background-color: var(--primary);
45
51
  }
46
52
 
47
53
  .bg-cs-secondary {
@@ -51,35 +57,45 @@
51
57
 
52
58
  .bg-cs-surface-bg {
53
59
  --tw-bg-opacity: 1;
54
- background-color: var(--cs-colors-surface-background);
60
+ background-color: var(--surface-bg);
55
61
  }
56
62
 
57
63
  /* Custom Text Color Utilities */
58
64
  .text-cs-text-primary {
59
65
  --tw-text-opacity: 1;
60
- color: var(--cs-colors-text-primary);
66
+ color: var(--text-primary);
61
67
  }
62
68
 
63
69
  .text-cs-text-secondary {
64
70
  --tw-text-opacity: 1;
65
- color: var(--cs-colors-text-secondary);
71
+ color: var(--text-secondary);
66
72
  }
67
73
 
68
74
  /* Custom Border Utilities */
69
75
  .border-cs-border {
70
76
  --tw-border-opacity: 1;
71
- border-color: var(--cs-colors-border);
77
+ border-color: var(--border-color);
72
78
  }
73
79
 
74
80
  /* Custom Hover State Utilities */
75
81
  .hover\:bg-cs-secondary-hover:hover {
76
82
  --tw-bg-opacity: 1;
77
- background-color: var(--cs-colors-secondary-400);
83
+ background-color: var(--hover-bg);
78
84
  }
79
85
 
80
86
  .hover\:bg-cs-primary-hover:hover {
81
87
  --tw-bg-opacity: 1;
82
- background-color: var(--cs-colors-primary-hover);
88
+ background-color: var(--primary-hover);
89
+ }
90
+
91
+ .hover\:bg-cs-hover-bg:hover {
92
+ --tw-bg-opacity: 1;
93
+ background-color: var(--hover-bg);
94
+ }
95
+
96
+ .hover\:border-cs-primary:hover {
97
+ --tw-border-opacity: 1;
98
+ border-color: var(--primary);
83
99
  }
84
100
 
85
101
  /* Custom Active State Utilities */