@uniformdev/design-system 20.26.1 → 20.26.2
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/esm/index.js +447 -444
- package/dist/index.d.mts +6 -4
- package/dist/index.d.ts +6 -4
- package/dist/index.js +705 -702
- package/package.json +4 -4
package/dist/index.d.mts
CHANGED
|
@@ -2600,14 +2600,16 @@ type LimitsBarProps = {
|
|
|
2600
2600
|
current: number;
|
|
2601
2601
|
/** The maximum number of limits */
|
|
2602
2602
|
max: number;
|
|
2603
|
-
/**
|
|
2604
|
-
label
|
|
2603
|
+
/** @deprecated No longer used */
|
|
2604
|
+
label?: string;
|
|
2605
|
+
/** Optional popover content for info icon */
|
|
2606
|
+
popoverContent?: ReactNode;
|
|
2605
2607
|
};
|
|
2606
2608
|
/**
|
|
2607
2609
|
* Uniform Limits Bar Component
|
|
2608
|
-
* @example <LimitsBar current=
|
|
2610
|
+
* @example <LimitsBar current={3} max={5} />
|
|
2609
2611
|
*/
|
|
2610
|
-
declare const LimitsBar: ({ current, max,
|
|
2612
|
+
declare const LimitsBar: ({ current, max, popoverContent }: LimitsBarProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
2611
2613
|
|
|
2612
2614
|
type LinkListProps = React$1.HTMLAttributes<HTMLDivElement> & {
|
|
2613
2615
|
/** sets the title field */
|
package/dist/index.d.ts
CHANGED
|
@@ -2600,14 +2600,16 @@ type LimitsBarProps = {
|
|
|
2600
2600
|
current: number;
|
|
2601
2601
|
/** The maximum number of limits */
|
|
2602
2602
|
max: number;
|
|
2603
|
-
/**
|
|
2604
|
-
label
|
|
2603
|
+
/** @deprecated No longer used */
|
|
2604
|
+
label?: string;
|
|
2605
|
+
/** Optional popover content for info icon */
|
|
2606
|
+
popoverContent?: ReactNode;
|
|
2605
2607
|
};
|
|
2606
2608
|
/**
|
|
2607
2609
|
* Uniform Limits Bar Component
|
|
2608
|
-
* @example <LimitsBar current=
|
|
2610
|
+
* @example <LimitsBar current={3} max={5} />
|
|
2609
2611
|
*/
|
|
2610
|
-
declare const LimitsBar: ({ current, max,
|
|
2612
|
+
declare const LimitsBar: ({ current, max, popoverContent }: LimitsBarProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
2611
2613
|
|
|
2612
2614
|
type LinkListProps = React$1.HTMLAttributes<HTMLDivElement> & {
|
|
2613
2615
|
/** sets the title field */
|