@texturehq/edges 1.31.0 → 1.31.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/generated/tailwind-tokens-light.css +140 -0
- package/dist/index.cjs +9 -9
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +6 -1
- package/dist/index.d.ts +6 -1
- package/dist/index.js +9 -9
- package/dist/index.js.map +1 -1
- package/dist/styles.css +306 -39
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -3894,6 +3894,11 @@ interface DeviceMetaDisplayProps {
|
|
|
3894
3894
|
isLoading?: boolean;
|
|
3895
3895
|
/** Additional classes */
|
|
3896
3896
|
className?: string;
|
|
3897
|
+
/**
|
|
3898
|
+
* Entity identifier for PII masking (e.g., "device:device_abc123")
|
|
3899
|
+
* When provided, adds data-pii-* attributes for the Curtain extension
|
|
3900
|
+
*/
|
|
3901
|
+
piiEntity?: string;
|
|
3897
3902
|
}
|
|
3898
3903
|
/**
|
|
3899
3904
|
* DeviceMetaDisplay
|
|
@@ -3931,7 +3936,7 @@ interface DeviceMetaDisplayProps {
|
|
|
3931
3936
|
* />
|
|
3932
3937
|
* ```
|
|
3933
3938
|
*/
|
|
3934
|
-
declare function DeviceMetaDisplay({ manufacturer, model, deviceType, deviceTypeIconName, logoUrl, layout, size, href, LinkComponent, linkVariant, showDeviceTypeIcon, showLogo, emphasis, isLoading, className, }: DeviceMetaDisplayProps): react_jsx_runtime.JSX.Element;
|
|
3939
|
+
declare function DeviceMetaDisplay({ manufacturer, model, deviceType, deviceTypeIconName, logoUrl, layout, size, href, LinkComponent, linkVariant, showDeviceTypeIcon, showLogo, emphasis, isLoading, className, piiEntity, }: DeviceMetaDisplayProps): react_jsx_runtime.JSX.Element;
|
|
3935
3940
|
|
|
3936
3941
|
interface DeviceStateBadgeProps extends Omit<BadgeProps, "variant" | "children"> {
|
|
3937
3942
|
/** The device state to display */
|
package/dist/index.d.ts
CHANGED
|
@@ -3894,6 +3894,11 @@ interface DeviceMetaDisplayProps {
|
|
|
3894
3894
|
isLoading?: boolean;
|
|
3895
3895
|
/** Additional classes */
|
|
3896
3896
|
className?: string;
|
|
3897
|
+
/**
|
|
3898
|
+
* Entity identifier for PII masking (e.g., "device:device_abc123")
|
|
3899
|
+
* When provided, adds data-pii-* attributes for the Curtain extension
|
|
3900
|
+
*/
|
|
3901
|
+
piiEntity?: string;
|
|
3897
3902
|
}
|
|
3898
3903
|
/**
|
|
3899
3904
|
* DeviceMetaDisplay
|
|
@@ -3931,7 +3936,7 @@ interface DeviceMetaDisplayProps {
|
|
|
3931
3936
|
* />
|
|
3932
3937
|
* ```
|
|
3933
3938
|
*/
|
|
3934
|
-
declare function DeviceMetaDisplay({ manufacturer, model, deviceType, deviceTypeIconName, logoUrl, layout, size, href, LinkComponent, linkVariant, showDeviceTypeIcon, showLogo, emphasis, isLoading, className, }: DeviceMetaDisplayProps): react_jsx_runtime.JSX.Element;
|
|
3939
|
+
declare function DeviceMetaDisplay({ manufacturer, model, deviceType, deviceTypeIconName, logoUrl, layout, size, href, LinkComponent, linkVariant, showDeviceTypeIcon, showLogo, emphasis, isLoading, className, piiEntity, }: DeviceMetaDisplayProps): react_jsx_runtime.JSX.Element;
|
|
3935
3940
|
|
|
3936
3941
|
interface DeviceStateBadgeProps extends Omit<BadgeProps, "variant" | "children"> {
|
|
3937
3942
|
/** The device state to display */
|