dap-design-system 0.11.1 → 0.11.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/dds.d.ts CHANGED
@@ -553,7 +553,7 @@ declare type ButtonSize = Extract<Size, 'lg' | 'md' | 'sm'>;
553
553
 
554
554
  declare type ButtonSize_2 = Extract<Size, 'lg' | 'md' | 'sm'>;
555
555
 
556
- declare type ButtonVariant = 'primary' | 'secondary' | 'subtle' | 'clean';
556
+ declare type ButtonVariant = 'primary' | 'outline' | 'subtle' | 'clean';
557
557
 
558
558
  declare type ButtonVariant_2 = 'neutral' | 'brand' | 'inverted' | 'inverted-brand';
559
559
 
@@ -848,7 +848,7 @@ export declare class DapDSBreadcrumbItem extends DdsElement {
848
848
  * @summary A button is a clickable element that can be used to trigger an action.
849
849
  * @title - Button
850
850
  *
851
- * @attribute {'primary' | 'secondary' | 'subtle' | 'clean'} variant - The type of the button. Default is `primary`. Can be `primary`, `secondary`, `subtle`, or `clean`.
851
+ * @attribute {'primary' | 'outline' | 'subtle' | 'clean'} variant - The type of the button. Default is `primary`. Can be `primary`, `outline`, `subtle`, or `clean`.
852
852
  * @attribute {'lg' | 'md' | 'sm'} size - The size of the button. Default is `md`. Can be `lg`, `md`, or `sm`.
853
853
  * @attribute {boolean} loading - Whether the button is in a loading state.
854
854
  * @attribute {boolean} danger - Whether the button is a danger button.