@phila/phila-ui-core 3.0.0-beta.3 → 3.0.0-beta.4

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.
@@ -0,0 +1,10 @@
1
+ /**
2
+ * Elevation tokens — transcribed from the Figma "Elevation Light/1" and "Elevation
3
+ * Light/2" effect styles. The Figma token sync pipeline does not export effects, so
4
+ * these are hand-maintained here; migrate into the generated pipeline if it ever
5
+ * learns to export effects.
6
+ */
7
+ :root {
8
+ --elevation-light-1: 0 1px 3px 1px rgba(0, 0, 0, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.3);
9
+ --elevation-light-2: 0 2px 6px 2px rgba(0, 0, 0, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.3);
10
+ }
@@ -39,5 +39,8 @@
39
39
  /* Layer 8: Other - Borders, breakpoints, component tokens */
40
40
  @import "./generated/other.css";
41
41
 
42
+ /* Elevation - hand-maintained (Figma sync does not export effects) */
43
+ @import "./elevation.css";
44
+
42
45
  /* Backwards Compatibility - Aliases for old variable names */
43
46
  @import "./legacy.css";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@phila/phila-ui-core",
3
- "version": "3.0.0-beta.3",
3
+ "version": "3.0.0-beta.4",
4
4
  "type": "module",
5
5
  "description": "Core utilities and styles for Phila UI library",
6
6
  "main": "./dist/index.js",