@up42/up-components 5.5.0 → 5.5.1
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/cjs/index.js +2 -2
- package/dist/cjs/types/components/FeatureCard/Connector.d.ts +2 -0
- package/dist/cjs/types/components/FeatureCard/FeatureCard.d.ts +12 -2
- package/dist/esm/index.js +2 -2
- package/dist/esm/types/components/FeatureCard/Connector.d.ts +2 -0
- package/dist/esm/types/components/FeatureCard/FeatureCard.d.ts +12 -2
- package/dist/index.d.ts +12 -2
- package/package.json +1 -1
- package/dist/cjs/types/components/Popover/Connector.d.ts +0 -4
- package/dist/esm/types/components/Popover/Connector.d.ts +0 -4
- /package/dist/cjs/types/components/{Popover → FeatureCard}/Connector.test.d.ts +0 -0
- /package/dist/esm/types/components/{Popover → FeatureCard}/Connector.test.d.ts +0 -0
|
@@ -26,7 +26,12 @@ export type FeatureCardProps = CardProps & {
|
|
|
26
26
|
/**
|
|
27
27
|
* Applies the active state to the card from the parent.
|
|
28
28
|
*/
|
|
29
|
-
|
|
29
|
+
active?: boolean;
|
|
30
|
+
/**
|
|
31
|
+
* Whether to show the connector (the visual line that connects the card to the Popover).
|
|
32
|
+
* @default false
|
|
33
|
+
*/
|
|
34
|
+
showConnector?: boolean;
|
|
30
35
|
};
|
|
31
36
|
/**
|
|
32
37
|
* Documentation: https://up-components.up42.com/?path=/docs/data-entry-featurecard--docs
|
|
@@ -60,5 +65,10 @@ export declare const FeatureCard: React.ForwardRefExoticComponent<Omit<import("@
|
|
|
60
65
|
/**
|
|
61
66
|
* Applies the active state to the card from the parent.
|
|
62
67
|
*/
|
|
63
|
-
|
|
68
|
+
active?: boolean | undefined;
|
|
69
|
+
/**
|
|
70
|
+
* Whether to show the connector (the visual line that connects the card to the Popover).
|
|
71
|
+
* @default false
|
|
72
|
+
*/
|
|
73
|
+
showConnector?: boolean | undefined;
|
|
64
74
|
}, "ref"> & React.RefAttributes<unknown>>;
|