@phila/phila-ui-core 2.3.1-beta.0 → 2.3.2-beta.0

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/README.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # @phila/phila-ui-core
2
2
 
3
+ <!-- status-badge-start -->
4
+
5
+ ### Component Status
6
+
7
+ | Component | Status |
8
+ | ---------- | ----------------------------------------------------------- |
9
+ | Icon | ![Stable](https://img.shields.io/badge/-Stable-brightgreen) |
10
+ | Typography | ![Stable](https://img.shields.io/badge/-Stable-brightgreen) |
11
+
12
+ <!-- status-badge-end -->
13
+
3
14
  Core utilities and styles for the Phila UI library. This package provides shared TypeScript utilities and design tokens used in the Phila UI components.
4
15
 
5
16
  ## Features
package/dist/index.d.ts CHANGED
@@ -306,7 +306,7 @@ export declare function useCollapse(props?: UseCollapseProps): {
306
306
  onMouseEnter: () => void;
307
307
  onMouseLeave: () => void;
308
308
  focusChange: (e: FocusEvent) => void;
309
- onClickToggle: (event: Event) => void;
309
+ onClickToggle: (event?: Event) => void;
310
310
  onClickOpen: (event?: Event) => void;
311
311
  };
312
312
 
@@ -24,3 +24,11 @@
24
24
  --Schemes-On-Surface: #ecfdff;
25
25
  background-color: var(--Schemes-Secondary);
26
26
  }
27
+
28
+ .has-background-error {
29
+ background-color: var(--Schemes-Error-Container);
30
+ }
31
+
32
+ .has-text-error {
33
+ color: var(--Schemes-Error) !important;
34
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@phila/phila-ui-core",
3
- "version": "2.3.1-beta.0",
3
+ "version": "2.3.2-beta.0",
4
4
  "type": "module",
5
5
  "description": "Core utilities and styles for Phila UI library",
6
6
  "main": "./dist/index.js",