@aures5g/vue-component-library 0.37.0 → 0.38.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,36 @@
1
+ import { STRIP_SEVERITY, CUSTOMER_STATUS } from './uiInfoStrip.const';
2
+ type __VLS_Props = {
3
+ severity?: (typeof STRIP_SEVERITY)[keyof typeof STRIP_SEVERITY];
4
+ status?: (typeof CUSTOMER_STATUS)[keyof typeof CUSTOMER_STATUS];
5
+ title: string;
6
+ };
7
+ declare function __VLS_template(): {
8
+ attrs: Partial<{}>;
9
+ slots: {
10
+ "leading-icon"?(_: {}): any;
11
+ "severity-swap"?(_: {}): any;
12
+ "primary-content"?(_: {}): any;
13
+ "secondary-boxes"?(_: {}): any;
14
+ "primary-action"?(_: {}): any;
15
+ "secondary-action"?(_: {}): any;
16
+ };
17
+ refs: {
18
+ title: HTMLSpanElement;
19
+ };
20
+ rootEl: HTMLDivElement;
21
+ };
22
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
23
+ declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
24
+ severity: (typeof STRIP_SEVERITY)[keyof typeof STRIP_SEVERITY];
25
+ title: string;
26
+ status: (typeof CUSTOMER_STATUS)[keyof typeof CUSTOMER_STATUS];
27
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {
28
+ title: HTMLSpanElement;
29
+ }, HTMLDivElement>;
30
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
31
+ export default _default;
32
+ type __VLS_WithTemplateSlots<T, S> = T & {
33
+ new (): {
34
+ $slots: S;
35
+ };
36
+ };
@@ -0,0 +1,22 @@
1
+ import type { Icon } from '@/types/fa';
2
+ type __VLS_Props = {
3
+ headline: string;
4
+ icon?: Icon;
5
+ };
6
+ declare function __VLS_template(): {
7
+ attrs: Partial<{}>;
8
+ slots: {
9
+ default?(_: {}): any;
10
+ };
11
+ refs: {};
12
+ rootEl: HTMLDivElement;
13
+ };
14
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
15
+ declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLDivElement>;
16
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
17
+ export default _default;
18
+ type __VLS_WithTemplateSlots<T, S> = T & {
19
+ new (): {
20
+ $slots: S;
21
+ };
22
+ };
@@ -0,0 +1,9 @@
1
+ export declare const STRIP_SEVERITY: {
2
+ readonly DEFAULT: "default";
3
+ readonly B2C: "b2c";
4
+ readonly B2B: "b2b";
5
+ };
6
+ export declare const CUSTOMER_STATUS: {
7
+ readonly ENEMY: "enemy";
8
+ readonly VIP: "vip";
9
+ };
@@ -0,0 +1,12 @@
1
+ export declare const BASE = "flex text-on-primary rounded-[1rem] overflow-hidden w-full";
2
+ export declare const DEFAULT_FIRST_BOX = "bg-[#0075E6]";
3
+ export declare const ENEMY_FIRST_BOX = "bg-[#DE334A] border-error";
4
+ export declare const VIP_FIRST_BOX = "bg-[#3F4753] border-[#A48111]";
5
+ export declare const HEADER_WRAPPER = "w-full flex justify-between items-center gap-[1rem]";
6
+ export declare const TAGS_WRAPPER = "flex gap-[0.25rem] items-center";
7
+ export declare const ENEMY_TAG = "text-on-primary !bg-error";
8
+ export declare const VIP_TAG = "text-on-primary !bg-[#A48111]";
9
+ export declare const B2B_TAG = "text-on-primary !bg-success";
10
+ export declare const B2C_TAG = "text-on-primary !bg-tertiary";
11
+ export declare const SECONDARY_BOXES_WRAPPER = "grow flex pt-[0.5rem] pb-[1rem] px-[1rem] bg-inherit";
12
+ export declare const ACTION_WRAPPER = "bg-on-primary/[0.08] py-[1.5rem] px-[1rem] flex flex-col justify-start items-center gap-[1.5rem]";
@@ -0,0 +1,3 @@
1
+ export declare const BASE = "p-[1rem] bg-inherit relative text-on-primary border border-on-primary/[0.16] mt-[1rem] rounded-[0.25rem]";
2
+ export declare const HEADLINE_BOX = "flex gap-[0.5rem] items-center bg-inherit absolute top-[-0.75rem] left-[0.5rem] px-[0.5rem]";
3
+ export declare const HEADLINE = "text-[1rem] font-medium leading-[1.5rem]";
@@ -23,4 +23,6 @@ import UILanguagePicker from './components/languagePicker/UILanguagePicker.vue';
23
23
  import UIDivider from './components/divider/UIDivider.vue';
24
24
  import UISwitch from './components/switch/UISwitch.vue';
25
25
  import UIDropdown from './components/dropdown/UIDropdown.vue';
26
- export { ACBSPlugin, useACBSConfig, UIButton, UIMenu, UITag, UIBadge, UICopy, UITabView, UITabPanel, UIIconButton, UIToggleButton, UIRadioButton, UICheckbox, UIChip, UITextField, UIRichTooltip, UISnackbar, UIListItem, UIList, UIContextPanel, UIToolbar, UILanguagePicker, UIDivider, UISwitch, UIDropdown, };
26
+ import UIInfoStrip from './components/infoStrip/UIInfoStrip.vue';
27
+ import UIInfoStripSecondaryBox from './components/infoStrip/UIInfoStripSecondaryBox.vue';
28
+ export { ACBSPlugin, useACBSConfig, UIButton, UIMenu, UITag, UIBadge, UICopy, UITabView, UITabPanel, UIIconButton, UIToggleButton, UIRadioButton, UICheckbox, UIChip, UITextField, UIRichTooltip, UISnackbar, UIListItem, UIList, UIContextPanel, UIToolbar, UILanguagePicker, UIDivider, UISwitch, UIDropdown, UIInfoStrip, UIInfoStripSecondaryBox, };