@aures5g/vue-component-library 0.34.0 → 0.35.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aures5g/vue-component-library",
3
- "version": "0.34.0",
3
+ "version": "0.35.0",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist"
@@ -1,17 +0,0 @@
1
- import { type ButtonPassThroughOptions } from 'primevue/button';
2
- import { type PassThroughOptions } from 'primevue/passthrough';
3
- import type { PassThrough } from '@primevue/core';
4
- import { type RoundedButtonSeverities } from './uiButtonRounded.const';
5
- type __VLS_Props = {
6
- severity?: RoundedButtonSeverities;
7
- label?: string;
8
- pt?: PassThrough<ButtonPassThroughOptions>;
9
- ptOptions?: PassThroughOptions;
10
- };
11
- declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
12
- severity: RoundedButtonSeverities;
13
- label: string;
14
- pt: object | ButtonPassThroughOptions<any>;
15
- ptOptions: PassThroughOptions;
16
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
17
- export default _default;
@@ -1,6 +0,0 @@
1
- export declare const BUTTON_ROUNDED_SEVERITY: {
2
- readonly PRIMARY: "primary";
3
- readonly OUTLINED: "outlined";
4
- readonly TEXT: "text";
5
- };
6
- export type RoundedButtonSeverities = (typeof BUTTON_ROUNDED_SEVERITY)[keyof typeof BUTTON_ROUNDED_SEVERITY];
@@ -1,9 +0,0 @@
1
- export declare const BASE_BUTTON = "h-[40px] rounded-xl inline-flex items-center text-[16px] relative hover:after:size-full hover:after:absolute hover:after:left-0";
2
- export declare const BUTTON_PRIMARY = "bg-primary text-on-primary hover:after:bg-on-primary/[0.08] px-xl hover:shadow-1";
3
- export declare const BUTTON_OUTLINED = "border-secondary border-[1px] text-primary px-xl hover:bg-primary/[0.08]";
4
- export declare const BUTTON_TEXT = "text-primary px-md hover:bg-primary/[0.08]";
5
- export declare const BASE_LABEL = "title-small";
6
- export declare const BUTTON_LABEL_WITH_ICON = "pl-sm";
7
- export declare const BUTTON_LABEL_WITHOUT_ICON = "";
8
- export declare const BUTTON_SEVERITY_IS_NOT_TEXT = "pl-lg";
9
- export declare const BUTTON_SEVERITY_IS_TEXT = "pr-lg";