braid-ui 1.0.181 → 1.0.183

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.cts CHANGED
@@ -1703,6 +1703,7 @@ interface UserDetailViewProps {
1703
1703
  onCreateKeyNameChange: (value: string) => void;
1704
1704
  onConfirmCreateKey: () => void;
1705
1705
  isCreatingKey?: boolean;
1706
+ showCreateKeyButton: boolean;
1706
1707
  createdKeyDialogOpen: boolean;
1707
1708
  onCreatedKeyDialogOpenChange: (open: boolean) => void;
1708
1709
  createdKey: ApiKey | null;
@@ -1711,7 +1712,7 @@ interface UserDetailViewProps {
1711
1712
  onDisable: () => void;
1712
1713
  onDelete: () => void;
1713
1714
  }
1714
- declare const UserDetailView: ({ user, tenantHref, statusLabel, adminGroupOptions, developerGroupOptions, selectedGroup, onSelectGroup, auditEvents, actionLabelMap, apiKeys, onDeleteApiKey, createKeyNameDialogOpen, onCreateKeyNameDialogOpenChange, createKeyName, onCreateKeyNameChange, onConfirmCreateKey, isCreatingKey, createdKeyDialogOpen, onCreatedKeyDialogOpenChange, createdKey, onCreateKey, onCopyKey, onDisable, onDelete, }: UserDetailViewProps) => react_jsx_runtime.JSX.Element;
1715
+ declare const UserDetailView: ({ user, tenantHref, statusLabel, adminGroupOptions, developerGroupOptions, selectedGroup, onSelectGroup, auditEvents, actionLabelMap, apiKeys, onDeleteApiKey, createKeyNameDialogOpen, onCreateKeyNameDialogOpenChange, createKeyName, onCreateKeyNameChange, onConfirmCreateKey, isCreatingKey, createdKeyDialogOpen, onCreatedKeyDialogOpenChange, createdKey, onCreateKey, onCopyKey, onDisable, onDelete, showCreateKeyButton, }: UserDetailViewProps) => react_jsx_runtime.JSX.Element;
1715
1716
 
1716
1717
  interface SelectOption$1 {
1717
1718
  value: string;
@@ -2937,7 +2938,7 @@ interface StackProps {
2937
2938
  declare const Stack: React$1.ForwardRefExoticComponent<StackProps & React$1.RefAttributes<HTMLDivElement>>;
2938
2939
 
2939
2940
  interface StatusBadgeProps {
2940
- status: "ACTIVE" | "INACTIVE" | "PENDING" | "SUSPENDED" | "BLOCKED" | "PENDING_APPROVAL" | "POSTED" | "FAILED" | "CANCELLED" | "DELETED" | "NEEDS_OFAC" | "PENDING_UNBLOCK";
2941
+ status: "ACTIVE" | "INACTIVE" | "PENDING" | "SUSPENDED" | "BLOCKED" | "PENDING_APPROVAL" | "POSTED" | "FAILED" | "CANCELLED" | "DELETED" | "NEEDS_OFAC" | "PENDING_UNBLOCK" | "CLOSED";
2941
2942
  className?: string;
2942
2943
  /** Shows a subtle chevron to indicate the status is a clickable dropdown/select. */
2943
2944
  showDropdownIndicator?: boolean;
package/dist/index.d.ts CHANGED
@@ -1703,6 +1703,7 @@ interface UserDetailViewProps {
1703
1703
  onCreateKeyNameChange: (value: string) => void;
1704
1704
  onConfirmCreateKey: () => void;
1705
1705
  isCreatingKey?: boolean;
1706
+ showCreateKeyButton: boolean;
1706
1707
  createdKeyDialogOpen: boolean;
1707
1708
  onCreatedKeyDialogOpenChange: (open: boolean) => void;
1708
1709
  createdKey: ApiKey | null;
@@ -1711,7 +1712,7 @@ interface UserDetailViewProps {
1711
1712
  onDisable: () => void;
1712
1713
  onDelete: () => void;
1713
1714
  }
1714
- declare const UserDetailView: ({ user, tenantHref, statusLabel, adminGroupOptions, developerGroupOptions, selectedGroup, onSelectGroup, auditEvents, actionLabelMap, apiKeys, onDeleteApiKey, createKeyNameDialogOpen, onCreateKeyNameDialogOpenChange, createKeyName, onCreateKeyNameChange, onConfirmCreateKey, isCreatingKey, createdKeyDialogOpen, onCreatedKeyDialogOpenChange, createdKey, onCreateKey, onCopyKey, onDisable, onDelete, }: UserDetailViewProps) => react_jsx_runtime.JSX.Element;
1715
+ declare const UserDetailView: ({ user, tenantHref, statusLabel, adminGroupOptions, developerGroupOptions, selectedGroup, onSelectGroup, auditEvents, actionLabelMap, apiKeys, onDeleteApiKey, createKeyNameDialogOpen, onCreateKeyNameDialogOpenChange, createKeyName, onCreateKeyNameChange, onConfirmCreateKey, isCreatingKey, createdKeyDialogOpen, onCreatedKeyDialogOpenChange, createdKey, onCreateKey, onCopyKey, onDisable, onDelete, showCreateKeyButton, }: UserDetailViewProps) => react_jsx_runtime.JSX.Element;
1715
1716
 
1716
1717
  interface SelectOption$1 {
1717
1718
  value: string;
@@ -2937,7 +2938,7 @@ interface StackProps {
2937
2938
  declare const Stack: React$1.ForwardRefExoticComponent<StackProps & React$1.RefAttributes<HTMLDivElement>>;
2938
2939
 
2939
2940
  interface StatusBadgeProps {
2940
- status: "ACTIVE" | "INACTIVE" | "PENDING" | "SUSPENDED" | "BLOCKED" | "PENDING_APPROVAL" | "POSTED" | "FAILED" | "CANCELLED" | "DELETED" | "NEEDS_OFAC" | "PENDING_UNBLOCK";
2941
+ status: "ACTIVE" | "INACTIVE" | "PENDING" | "SUSPENDED" | "BLOCKED" | "PENDING_APPROVAL" | "POSTED" | "FAILED" | "CANCELLED" | "DELETED" | "NEEDS_OFAC" | "PENDING_UNBLOCK" | "CLOSED";
2941
2942
  className?: string;
2942
2943
  /** Shows a subtle chevron to indicate the status is a clickable dropdown/select. */
2943
2944
  showDropdownIndicator?: boolean;