@phila/phila-ui-core 3.0.0-beta.8 → 3.0.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.
Files changed (2) hide show
  1. package/dist/index.d.ts +7 -2
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -252,10 +252,12 @@ declare type DecorativeIconProps = {
252
252
 
253
253
  export declare const ErrorList: DefineComponent<ExtractPropTypes<__VLS_TypePropsToRuntimeProps<ValidationProps>>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_TypePropsToRuntimeProps<ValidationProps>>> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
254
254
 
255
- /** value is string to satisfy RadioGroup (string-only) and CheckboxGroup. */
255
+ /** value is string to satisfy RadioGroup and CheckboxGroup option keys. */
256
256
  export declare interface FilterChoice {
257
257
  text: string;
258
258
  value: string;
259
+ /** Optional help text shown via an info-icon tooltip after the option label. */
260
+ tooltip?: string;
259
261
  }
260
262
 
261
263
  export declare interface FilterDefinition {
@@ -270,9 +272,12 @@ export declare interface FilterDefinition {
270
272
  iconColor?: string;
271
273
  /** Leave this filter's selections out of the active-selection count (e.g. Sort). */
272
274
  excludeFromCount?: boolean;
275
+ /** Dropdown only: show Reset/Apply buttons (draft + commit). Default false = live apply. */
276
+ showActions?: boolean;
273
277
  }
274
278
 
275
- export declare type FilterValues = Record<string, string | string[] | boolean>;
279
+ /** Toggle chip boolean; checkbox/radio group a full map of choice value → selected. */
280
+ export declare type FilterValues = Record<string, boolean | Record<string, boolean>>;
276
281
 
277
282
  export declare const FocusTrap: __VLS_WithTemplateSlots_5<typeof __VLS_component_5, ReturnType<typeof __VLS_template_5>>;
278
283
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@phila/phila-ui-core",
3
- "version": "3.0.0-beta.8",
3
+ "version": "3.0.0",
4
4
  "type": "module",
5
5
  "description": "Core utilities and styles for Phila UI library",
6
6
  "main": "./dist/index.js",