@rakeyshgidwani/roger-ui-bank-theme-stan-design 0.2.36 → 0.2.38

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.36",
3
+ "version": "0.2.38",
4
4
  "description": "Roger UI stan-design theme - Complete design system with components, styles, and utilities",
5
5
  "keywords": [
6
6
  "design-system",
@@ -89,6 +89,8 @@
89
89
  }
90
90
 
91
91
  /* Base Badge Component - Using Original Poker Project Styling */
92
+ @layer components {
93
+
92
94
  .badge {
93
95
  /* Layout */
94
96
  display: inline-flex;
@@ -426,3 +428,5 @@
426
428
  grid-template-columns: 1fr 1fr !important;
427
429
  }
428
430
  }
431
+
432
+ } /* End @layer components */
@@ -179,6 +179,8 @@
179
179
  }
180
180
 
181
181
  /* Base Button Component */
182
+ @layer components {
183
+
182
184
  .button {
183
185
  /* Layout */
184
186
  display: inline-flex;
@@ -772,3 +774,5 @@
772
774
  transition: none;
773
775
  }
774
776
  }
777
+
778
+ } /* End @layer components */
@@ -133,6 +133,8 @@
133
133
  }
134
134
 
135
135
  /* Base Card Component */
136
+ @layer components {
137
+
136
138
  .card {
137
139
  /* Base Styles */
138
140
  background-color: var(--card-background);
@@ -599,3 +601,5 @@
599
601
  box-shadow: var(--card-shadow-base);
600
602
  transform: none;
601
603
  }
604
+
605
+ } /* End @layer components */
@@ -37,6 +37,8 @@
37
37
  }
38
38
 
39
39
  /* Checkbox Base Styles */
40
+ @layer components {
41
+
40
42
  .checkbox {
41
43
  position: relative;
42
44
  display: inline-flex;
@@ -440,3 +442,5 @@
440
442
  background-color: var(--cs-colors-semantic-info);
441
443
  color: var(--cs-colors-text-on-primary);
442
444
  }
445
+
446
+ } /* End @layer components */
@@ -164,6 +164,8 @@
164
164
  }
165
165
 
166
166
  /* Input Base Styles */
167
+ @layer components {
168
+
167
169
  .input {
168
170
  position: relative;
169
171
  display: block;
@@ -885,3 +887,5 @@
885
887
  border-width: var(--input-border-width-normal);
886
888
  }
887
889
  }
890
+
891
+ } /* End @layer components */
@@ -56,6 +56,8 @@
56
56
  }
57
57
 
58
58
  /* Base Label Styles */
59
+ @layer components {
60
+
59
61
  .label {
60
62
  display: inline-block;
61
63
  font-family: var(--cs-fonts-primary-family), var(--cs-fonts-primary-fallbacks);
@@ -294,3 +296,5 @@
294
296
  background: var(--cs-print-background-color);
295
297
  }
296
298
  }
299
+
300
+ } /* End @layer components */
@@ -12,40 +12,18 @@
12
12
 
13
13
  @layer reset, base, themes, components, utilities, overrides;
14
14
 
15
- /* Reset layer - CSS reset and normalization */
16
- @layer reset {
17
- @import '../base/reset.css';
18
- }
19
-
20
- /* Base layer - foundational styles */
21
- @layer base {
22
- @import '../base/typography.css';
23
- @import '../base/variables.css';
24
- }
25
-
26
- /* Themes layer - theme-specific variables and styles */
27
- @layer themes {
28
- @import '../themes/index.css';
29
- }
30
-
31
- /* Components layer - all UI component styles */
32
- @layer components {
33
- @import '../components/base/index.css';
34
- @import '../components/navigation/index.css';
35
- @import '../components/data-display/index.css';
36
- @import '../components/feedback/index.css';
37
- @import '../components/overlay/index.css';
38
- }
39
-
40
- /* Utilities layer - utility classes and system styles */
41
- @layer utilities {
42
- @import '../utilities/index.css';
43
- }
44
-
45
- /* Overrides layer - highest priority application-specific overrides */
46
- @layer overrides {
47
- @import './overrides.css';
48
- }
15
+ /* Modern CSS layers syntax - imports with layer assignment */
16
+ @import '../base/reset.css' layer(reset);
17
+ @import '../base/typography.css' layer(base);
18
+ @import '../base/variables.css' layer(base);
19
+ @import '../themes/index.css' layer(themes);
20
+ @import '../components/base/index.css' layer(components);
21
+ @import '../components/navigation/index.css' layer(components);
22
+ @import '../components/data-display/index.css' layer(components);
23
+ @import '../components/feedback/index.css' layer(components);
24
+ @import '../components/overlay/index.css' layer(components);
25
+ @import '../utilities/index.css' layer(utilities);
26
+ @import './overrides.css' layer(overrides);
49
27
 
50
28
  /* Development validation tools (only in development) */
51
29
  /* @import './validation.css'; */