@aures5g/vue-component-library 0.42.0 → 0.43.0

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.
@@ -5,5 +5,7 @@ export declare const BUTTON_SEVERITY: {
5
5
  readonly SUCCESS: "success";
6
6
  readonly WARNING: "warning";
7
7
  readonly DANGER: "danger";
8
+ readonly FILLED: "filled";
9
+ readonly TRANPARENT: "transparent";
8
10
  };
9
11
  export type ButtonSeverities = (typeof BUTTON_SEVERITY)[keyof typeof BUTTON_SEVERITY];
@@ -5,6 +5,8 @@ export declare const BUTTON_TEXT = "text-primary px-md hover:bg-primary/[0.08] h
5
5
  export declare const BUTTON_SUCCESS = "bg-success text-on-success px-xl hover:shadow-1 h-[2.5rem]";
6
6
  export declare const BUTTON_WARNING = "bg-warning text-on-warning px-xl hover:shadow-1 h-[2.5rem]";
7
7
  export declare const BUTTON_DANGER = "bg-error text-on-error px-xl hover:shadow-1 h-[2.5rem]";
8
+ export declare const BUTTON_FILLED = "bg-on-primary px-xl hover:shadow-1 h-[2.5rem] hover:after:bg-on-surface-variant/[0.08]";
9
+ export declare const BUTTON_TRANSPARENT = "border border-on-primary/[0.16] text-on-primary px-xl hover:shadow-1 h-[2.5rem] hover:after:bg-on-primary/[0.08]";
8
10
  export declare const ACTION_BUTTON = "flex-row-reverse w-full gap-sm pr-lg";
9
11
  export declare const ACTION_BUTTON_LABEL = "grow truncate text-left";
10
12
  export declare const BASE_LABEL = "title-small";
@@ -17,3 +19,5 @@ export declare const BUTTON_ICON_ONLY_LARGE = "h-[2.5rem] text-[1.25rem] !p-0 w-
17
19
  export declare const BUTTON_ICON_ONLY_LABEL = "hidden";
18
20
  export declare const DEFAULT_DISABLED = "px-xl h-[2.5rem] !bg-on-surface/[0.08] text-on-surface/[0.38]";
19
21
  export declare const OUTLINED_DISABLED = "px-xl h-[2.5rem] border !border-on-surface/[0.12] !bg-transparent text-on-surface/[0.38]";
22
+ export declare const FILLED_DISABLED = "px-xl h-[2.5rem] bg-on-primary/[0.12] text-on-primary/[0.5] hover:after:hidden";
23
+ export declare const TRANSPARENT_DISABLED = "px-xl h-[2.5rem] border border-on-primary/[0.12] text-on-primary/[0.5] hover:after:hidden";