@phila/phila-ui-core 3.0.0-beta.8 → 3.0.0-beta.9
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/dist/index.d.ts +7 -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
|
|
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
|
-
|
|
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
|
|