@aures5g/vue-component-library 2.3.1 → 2.4.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/dist/src/components/chip/UIFilterChip.vue.d.ts +35 -0
- package/dist/src/components/chip/UIInputChip.vue.d.ts +36 -0
- package/dist/src/index.d.ts +3 -2
- package/dist/vue-component-library.css +1 -1
- package/dist/vue-component-library.js +2049 -2194
- package/dist/vue-component-library.umd.cjs +30 -83
- package/package.json +1 -1
- package/dist/src/components/chip/UIChip.vue.d.ts +0 -27
- package/dist/src/components/chip/uiChip.theme.d.ts +0 -16
package/package.json
CHANGED
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import { type ChipPassThroughOptions } from 'primevue/chip';
|
|
2
|
-
import { type PassThroughOptions } from 'primevue/passthrough';
|
|
3
|
-
import type { PassThrough } from '@primevue/core';
|
|
4
|
-
import { type ChipTypes } from './uiChip.const';
|
|
5
|
-
type __VLS_Props = {
|
|
6
|
-
pt?: PassThrough<ChipPassThroughOptions>;
|
|
7
|
-
ptOptions?: PassThroughOptions;
|
|
8
|
-
type?: ChipTypes;
|
|
9
|
-
removable?: boolean;
|
|
10
|
-
label?: string;
|
|
11
|
-
isSelected?: boolean;
|
|
12
|
-
value?: string;
|
|
13
|
-
isRounded?: boolean;
|
|
14
|
-
isDisabled?: boolean;
|
|
15
|
-
};
|
|
16
|
-
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
17
|
-
label: string;
|
|
18
|
-
type: ChipTypes;
|
|
19
|
-
value: string;
|
|
20
|
-
pt: object | ChipPassThroughOptions<any>;
|
|
21
|
-
ptOptions: PassThroughOptions;
|
|
22
|
-
isDisabled: boolean;
|
|
23
|
-
removable: boolean;
|
|
24
|
-
isSelected: boolean;
|
|
25
|
-
isRounded: boolean;
|
|
26
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
27
|
-
export default _default;
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
export declare const BASE = "flex items-center text-[1rem] w-fit border border-on-surface-variant text-on-surface-variant px-[0.75rem] py-[0.38rem] relative hover:after:size-full hover:after:absolute hover:after:left-0 hover:after:top-0";
|
|
2
|
-
export declare const DEFAULT = "rounded-[0.5rem] after:rounded-[0.5rem]";
|
|
3
|
-
export declare const ROUNDED = "rounded-[2rem] after:rounded-[2rem]";
|
|
4
|
-
export declare const FILTER_PADDING = "px-[1rem]";
|
|
5
|
-
export declare const FILTER_SELECTED = "border border-secondary-container hover:shadow-1";
|
|
6
|
-
export declare const UNSELCTED = "hover:after:bg-on-surface-variant/8";
|
|
7
|
-
export declare const SELECTED = "bg-secondary-container hover:after:bg-on-surface-variant/8";
|
|
8
|
-
export declare const HAS_ICON = "pl-[0.56rem]";
|
|
9
|
-
export declare const FILTER_ICON_STYLE = "text-primary";
|
|
10
|
-
export declare const FILTER_ICON_DISABLED_STYLE = "text-on-surface/38";
|
|
11
|
-
export declare const LABEL_STYLE = "text-[0.875rem] font-medium leading-[1.25rem]";
|
|
12
|
-
export declare const LABEL_REMOVABLE = "mr-[0.5rem]";
|
|
13
|
-
export declare const LABEL_WITH_ICON = "ml-[0.5rem]";
|
|
14
|
-
export declare const REMOVE_ICON = "cursor-pointer z-1";
|
|
15
|
-
export declare const UNSELECTED_DISABLED = "border border-on-surface-variant/12 text-on-surface/38";
|
|
16
|
-
export declare const SELECTED_DISABLED = "border border-on-surface-variant/0 text-on-surface/38 bg-on-surface-variant/12";
|