@aures5g/vue-component-library 0.32.0 → 0.34.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.
@@ -0,0 +1,21 @@
1
+ import { type PassThroughOptions } from 'primevue/passthrough';
2
+ import type { PassThrough } from '@primevue/core';
3
+ import { type ToggleSwitchPassThroughOptions } from 'primevue/toggleswitch';
4
+ type __VLS_Props = {
5
+ pt?: PassThrough<ToggleSwitchPassThroughOptions>;
6
+ ptOptions?: PassThroughOptions;
7
+ isDisabled?: boolean;
8
+ };
9
+ type __VLS_PublicProps = {
10
+ modelValue?: boolean;
11
+ } & __VLS_Props;
12
+ declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
13
+ "update:modelValue": (value: boolean) => any;
14
+ }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
15
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
16
+ }>, {
17
+ pt: object | ToggleSwitchPassThroughOptions;
18
+ ptOptions: PassThroughOptions;
19
+ isDisabled: boolean;
20
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
21
+ export default _default;
@@ -0,0 +1,11 @@
1
+ export declare const BASE = "relative h-[2rem] w-[3.25rem] rounded-[625rem] border-2";
2
+ export declare const INPUT_STYLE = "absolute appearence-none opacity-0 size-full";
3
+ export declare const SLIDER = "size-full rounded-[625rem] flex items-center px-[0.125rem]";
4
+ export declare const SLIDER_UNCHECKED = "bg-surface-container-highest";
5
+ export declare const SLIDER_CHECKED = "bg-primary justify-end";
6
+ export declare const SLIDER_UNCHECKED_DISABLED = "!bg-opacity-[0.38]";
7
+ export declare const SLIDER_CHECKED_DISABLED = "!bg-on-surface/[0.12]";
8
+ export declare const HANDLE = "size-[1.5rem] rounded-full flex justify-center items-center";
9
+ export declare const HANDLE_UNCHECKED = "bg-outline text-on-primary";
10
+ export declare const HANDLE_CHECKED = "bg-on-primary text-on-primary-container";
11
+ export declare const HANDLE_UNCHECKED_DISABLED = "bg-on-surface/[0.38] text-surface-container-highest/[0.38]";
@@ -1,7 +1,7 @@
1
- export declare const BASE = "relative rounded-[0.25rem] p-[0.25rem] w-fit h-[3.5rem] box-border flex items-center";
1
+ export declare const BASE = "relative rounded-[0.25rem] p-[0.25rem] w-fit h-[2.5rem] box-border flex items-center";
2
2
  export declare const INPUT_STYLE = "text-[1rem] text-on-surface border-none peer focus:outline-none leading-[1.5rem] mr-[0.75rem] placeholder:invisible";
3
3
  export declare const INPUT_DISABLED = "cursor-default bg-[transparent]";
4
- export declare const LABEL = "absolute peer-placeholder-shown:text-[1rem] text-[0.75rem] peer-placeholder-shown:leading-[1.5rem] leading-[1rem] peer-placeholder-shown:top-[1rem] -top-[0.625rem] peer-focus:-top-[0.625rem] peer-focus:leading-[1rem] text-on-surface-variant peer-placeholder-shown:px-0 peer-focus:px-[0.25rem] px-[0.25rem] bg-on-primary peer-focus:text-[0.75rem] peer-placeholder-shown:left-[1rem] left-[0.75rem] peer-focus:left-[0.75rem] transition-all";
4
+ export declare const LABEL = "absolute peer-placeholder-shown:text-[1rem] text-[0.75rem] peer-placeholder-shown:leading-[0.5rem] leading-[1rem] peer-placeholder-shown:top-[1rem] -top-[0.625rem] peer-focus:-top-[0.625rem] peer-focus:leading-[1rem] text-on-surface-variant peer-placeholder-shown:px-0 peer-focus:px-[0.25rem] px-[0.25rem] bg-on-primary peer-focus:text-[0.75rem] peer-placeholder-shown:left-[1rem] left-[0.75rem] peer-focus:left-[0.75rem] transition-all";
5
5
  export declare const LABEL_SEARCH_ICON = "peer-placeholder-shown:left-[3rem]";
6
6
  export declare const INVALID_TEXT = "!text-error";
7
7
  export declare const DISABLED_TEXT = "!text-on-surface/[0.38] cursor-default";
@@ -22,4 +22,5 @@ import UIContextPanel from './components/contextPanel/UIContextPanel.vue';
22
22
  import UIToolbar from './components/toolbar/UIToolbar.vue';
23
23
  import UILanguagePicker from './components/languagePicker/UILanguagePicker.vue';
24
24
  import UIDivider from './components/divider/UIDivider.vue';
25
- export { ACBSPlugin, useACBSConfig, UIButton, UIMenu, UITag, UIBadge, UICopy, UITabView, UITabPanel, UIIconButton, UIButtonRounded, UIToggleButton, UIRadioButton, UICheckbox, UIChip, UITextField, UIRichTooltip, UISnackbar, UIListItem, UIList, UIContextPanel, UIToolbar, UILanguagePicker, UIDivider, };
25
+ import UISwitch from './components/switch/UISwitch.vue';
26
+ export { ACBSPlugin, useACBSConfig, UIButton, UIMenu, UITag, UIBadge, UICopy, UITabView, UITabPanel, UIIconButton, UIButtonRounded, UIToggleButton, UIRadioButton, UICheckbox, UIChip, UITextField, UIRichTooltip, UISnackbar, UIListItem, UIList, UIContextPanel, UIToolbar, UILanguagePicker, UIDivider, UISwitch, };