@sesamehr/react-design-system 1.6.0 → 2.0.0-beta.1

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": "@sesamehr/react-design-system",
3
- "version": "1.6.0",
3
+ "version": "2.0.0-beta.1",
4
4
  "description": "Sesame HR React design system — components and design tokens",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -125,7 +125,12 @@
125
125
  --sidebar-ring: var(--color-brand-500);
126
126
  }
127
127
 
128
- @theme inline {
128
+ /* `static` as well as `inline`, because the two answer different questions.
129
+ `inline` is about utilities: `bg-brand` compiles to the underlying value
130
+ rather than another hop through `var(--color-brand)`. `static` is about
131
+ emission: without it Tailwind only declares the variables some generated
132
+ utility happens to mention. Kept in step with the Vue package's copy. */
133
+ @theme static inline {
129
134
  --color-font-primary: var(--font-primary);
130
135
  --color-font-secondary: var(--font-secondary);
131
136
  --color-font-tertiary: var(--font-tertiary);