@l3mpire/ui 2.16.3 → 2.17.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/dist/index.d.mts +3 -5
- package/dist/index.d.ts +3 -5
- package/dist/index.js +134 -122
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +120 -108
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -716,16 +716,14 @@ type OperatorType = TextOperator | NumberOperator | DateOperator | EnumOperator
|
|
|
716
716
|
* (e.g. "Me", "My team", "Unassigned"). The value is a sentinel string that
|
|
717
717
|
* the consuming app resolves at query time (e.g. `__me__` → `currentUser.id`).
|
|
718
718
|
*
|
|
719
|
-
* The design system
|
|
720
|
-
*
|
|
721
|
-
* concern.
|
|
719
|
+
* The design system renders label + optional description inline with regular
|
|
720
|
+
* options. Resolving the sentinels is an app concern.
|
|
722
721
|
*/
|
|
723
722
|
interface DynamicOption {
|
|
724
723
|
/** Sentinel value stored on FilterCondition.value (e.g. "__me__"). */
|
|
725
724
|
value: string;
|
|
726
725
|
label: string;
|
|
727
726
|
description?: string;
|
|
728
|
-
icon?: _l3mpire_icons.IconDefinition;
|
|
729
727
|
}
|
|
730
728
|
interface PropertyDefinition {
|
|
731
729
|
id: string;
|
|
@@ -937,7 +935,7 @@ interface InteractiveFilterChipProps {
|
|
|
937
935
|
}
|
|
938
936
|
declare const InteractiveFilterChip: React.FC<InteractiveFilterChipProps>;
|
|
939
937
|
|
|
940
|
-
type FilterBarMode = "default" | "minimal";
|
|
938
|
+
type FilterBarMode = "default" | "minimal" | "icon";
|
|
941
939
|
/**
|
|
942
940
|
* Observes the container width and returns the appropriate FilterBar mode.
|
|
943
941
|
* - default: > breakpoint
|
package/dist/index.d.ts
CHANGED
|
@@ -716,16 +716,14 @@ type OperatorType = TextOperator | NumberOperator | DateOperator | EnumOperator
|
|
|
716
716
|
* (e.g. "Me", "My team", "Unassigned"). The value is a sentinel string that
|
|
717
717
|
* the consuming app resolves at query time (e.g. `__me__` → `currentUser.id`).
|
|
718
718
|
*
|
|
719
|
-
* The design system
|
|
720
|
-
*
|
|
721
|
-
* concern.
|
|
719
|
+
* The design system renders label + optional description inline with regular
|
|
720
|
+
* options. Resolving the sentinels is an app concern.
|
|
722
721
|
*/
|
|
723
722
|
interface DynamicOption {
|
|
724
723
|
/** Sentinel value stored on FilterCondition.value (e.g. "__me__"). */
|
|
725
724
|
value: string;
|
|
726
725
|
label: string;
|
|
727
726
|
description?: string;
|
|
728
|
-
icon?: _l3mpire_icons.IconDefinition;
|
|
729
727
|
}
|
|
730
728
|
interface PropertyDefinition {
|
|
731
729
|
id: string;
|
|
@@ -937,7 +935,7 @@ interface InteractiveFilterChipProps {
|
|
|
937
935
|
}
|
|
938
936
|
declare const InteractiveFilterChip: React.FC<InteractiveFilterChipProps>;
|
|
939
937
|
|
|
940
|
-
type FilterBarMode = "default" | "minimal";
|
|
938
|
+
type FilterBarMode = "default" | "minimal" | "icon";
|
|
941
939
|
/**
|
|
942
940
|
* Observes the container width and returns the appropriate FilterBar mode.
|
|
943
941
|
* - default: > breakpoint
|