@weni/unnnic-system 3.8.2-alpha.2 → 3.9.1-alpha.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/CHANGELOG.md +8 -0
- package/dist/components/MultiSelect/MultiSelect.vue.d.ts +6 -0
- package/dist/components/PageHeader/PageHeader.vue.d.ts +28 -0
- package/dist/components/PageHeader/PageHeader.vue.d.ts.map +1 -0
- package/dist/components/PageHeader/index.d.ts +3 -0
- package/dist/components/PageHeader/index.d.ts.map +1 -0
- package/dist/components/PageHeader/types.d.ts +9 -0
- package/dist/components/PageHeader/types.d.ts.map +1 -0
- package/dist/components/Radio/Radio.vue.d.ts +2 -0
- package/dist/components/Radio/Radio.vue.d.ts.map +1 -1
- package/dist/components/Tag/DefaultTag.vue.d.ts.map +1 -1
- package/dist/components/TextArea/TextArea.vue.d.ts +9 -0
- package/dist/components/TextArea/TextArea.vue.d.ts.map +1 -1
- package/dist/components/index.d.ts +312 -0
- package/dist/components/index.d.ts.map +1 -1
- package/dist/components/ui/dialog/DialogHeader.vue.d.ts.map +1 -1
- package/dist/components/ui/tabs/Tabs.vue.d.ts +24 -0
- package/dist/components/ui/tabs/Tabs.vue.d.ts.map +1 -0
- package/dist/components/ui/tabs/TabsContent.vue.d.ts +23 -0
- package/dist/components/ui/tabs/TabsContent.vue.d.ts.map +1 -0
- package/dist/components/ui/tabs/TabsList.vue.d.ts +23 -0
- package/dist/components/ui/tabs/TabsList.vue.d.ts.map +1 -0
- package/dist/components/ui/tabs/TabsTrigger.vue.d.ts +23 -0
- package/dist/components/ui/tabs/TabsTrigger.vue.d.ts.map +1 -0
- package/dist/components/ui/tabs/index.d.ts +5 -0
- package/dist/components/ui/tabs/index.d.ts.map +1 -0
- package/dist/{es-4f3d094b.mjs → es-ed9b7d22.mjs} +1 -1
- package/dist/{index-43281ff3.mjs → index-bbfce723.mjs} +9572 -8837
- package/dist/{pt-br-8a34ccb7.mjs → pt-br-8c45d7e7.mjs} +1 -1
- package/dist/style.css +1 -1
- package/dist/unnnic.mjs +165 -153
- package/dist/unnnic.umd.js +39 -36
- package/package.json +1 -1
- package/src/components/Alert/__tests__/__snapshots__/Alert.spec.js.snap +11 -7
- package/src/components/Alert/__tests__/__snapshots__/Version1dot1.spec.js.snap +1 -1
- package/src/components/AvatarIcon/__tests__/__snapshots__/AvatarIcon.spec.js.snap +1 -1
- package/src/components/Collapse/__tests__/__snapshots__/Collapse.spec.js.snap +1 -3
- package/src/components/Drawer/__tests__/__snapshots__/Drawer.spec.js.snap +3 -3
- package/src/components/Input/__test__/__snapshots__/Input.spec.js.snap +14 -5
- package/src/components/Input/__test__/__snapshots__/TextInput.spec.js.snap +1 -1
- package/src/components/Label/__tests__/__snapshots__/Label.spec.js.snap +1 -1
- package/src/components/PageHeader/PageHeader.vue +154 -0
- package/src/components/PageHeader/index.ts +2 -0
- package/src/components/PageHeader/types.ts +10 -0
- package/src/components/Radio/Radio.vue +23 -2
- package/src/components/Radio/__test__/__snapshots__/Radio.spec.js.snap +3 -3
- package/src/components/Switch/__tests__/__snapshots__/Switch.spec.js.snap +5 -6
- package/src/components/Tab/__test__/__snapshots__/Tab.spec.js.snap +1 -1
- package/src/components/Tag/DefaultTag.vue +5 -0
- package/src/components/TextArea/TextArea.vue +6 -0
- package/src/components/TextArea/__test__/__snapshots__/TextArea.spec.js.snap +11 -3
- package/src/components/Toast/Toast.vue +4 -4
- package/src/components/Toast/__tests__/Toast.spec.js +9 -2
- package/src/components/index.ts +22 -0
- package/src/components/ui/dialog/DialogHeader.vue +1 -0
- package/src/components/ui/tabs/Tabs.vue +19 -0
- package/src/components/ui/tabs/TabsContent.vue +22 -0
- package/src/components/ui/tabs/TabsList.vue +34 -0
- package/src/components/ui/tabs/TabsTrigger.vue +79 -0
- package/src/components/ui/tabs/index.ts +4 -0
- package/src/stories/PageHeader.stories.js +330 -0
- package/src/stories/Radio.stories.js +28 -1
- package/src/stories/Tabs.stories.js +125 -0
- package/src/stories/TextArea.stories.js +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
# 3.9.0 (2025-11-07)
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- **Tabs Component**:
|
|
13
|
+
- Add and register Tabs, TabsList, TabsContent, and TabsTrigger components in the main index;
|
|
14
|
+
- Add Tabs stories.
|
|
15
|
+
|
|
8
16
|
# 3.8.1 (2025-11-06)
|
|
9
17
|
|
|
10
18
|
### Fixed
|
|
@@ -99,12 +99,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
99
99
|
label: string;
|
|
100
100
|
disabled: boolean;
|
|
101
101
|
modelValue: string | number;
|
|
102
|
+
helper: string;
|
|
102
103
|
$props: {
|
|
103
104
|
readonly name?: string | undefined;
|
|
104
105
|
readonly value?: string | number | undefined;
|
|
105
106
|
readonly label?: string | undefined;
|
|
106
107
|
readonly disabled?: boolean | undefined;
|
|
107
108
|
readonly modelValue?: string | number | undefined;
|
|
109
|
+
readonly helper?: string | undefined;
|
|
108
110
|
};
|
|
109
111
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLElement, import('vue').ComponentProvideOptions, {
|
|
110
112
|
P: {};
|
|
@@ -120,12 +122,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
120
122
|
label: string;
|
|
121
123
|
disabled: boolean;
|
|
122
124
|
modelValue: string | number;
|
|
125
|
+
helper: string;
|
|
123
126
|
$props: {
|
|
124
127
|
readonly name?: string | undefined;
|
|
125
128
|
readonly value?: string | number | undefined;
|
|
126
129
|
readonly label?: string | undefined;
|
|
127
130
|
readonly disabled?: boolean | undefined;
|
|
128
131
|
readonly modelValue?: string | number | undefined;
|
|
132
|
+
readonly helper?: string | undefined;
|
|
129
133
|
};
|
|
130
134
|
}, {}, {}, {}, {}>;
|
|
131
135
|
__isFragment?: never;
|
|
@@ -138,12 +142,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
138
142
|
label: string;
|
|
139
143
|
disabled: boolean;
|
|
140
144
|
modelValue: string | number;
|
|
145
|
+
helper: string;
|
|
141
146
|
$props: {
|
|
142
147
|
readonly name?: string | undefined;
|
|
143
148
|
readonly value?: string | number | undefined;
|
|
144
149
|
readonly label?: string | undefined;
|
|
145
150
|
readonly disabled?: boolean | undefined;
|
|
146
151
|
readonly modelValue?: string | number | undefined;
|
|
152
|
+
readonly helper?: string | undefined;
|
|
147
153
|
};
|
|
148
154
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
149
155
|
$slots: {
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { PageHeaderProps } from './types';
|
|
2
|
+
declare function __VLS_template(): {
|
|
3
|
+
attrs: Partial<{}>;
|
|
4
|
+
slots: {
|
|
5
|
+
tag?(_: {}): any;
|
|
6
|
+
actions?(_: {}): any;
|
|
7
|
+
tabs?(_: {}): any;
|
|
8
|
+
};
|
|
9
|
+
refs: {};
|
|
10
|
+
rootEl: HTMLElement;
|
|
11
|
+
};
|
|
12
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
13
|
+
declare const __VLS_component: import('vue').DefineComponent<PageHeaderProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
14
|
+
back: () => any;
|
|
15
|
+
}, string, import('vue').PublicProps, Readonly<PageHeaderProps> & Readonly<{
|
|
16
|
+
onBack?: (() => any) | undefined;
|
|
17
|
+
}>, {
|
|
18
|
+
description: string;
|
|
19
|
+
hasBackButton: boolean;
|
|
20
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLElement>;
|
|
21
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
22
|
+
export default _default;
|
|
23
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
24
|
+
new (): {
|
|
25
|
+
$slots: S;
|
|
26
|
+
};
|
|
27
|
+
};
|
|
28
|
+
//# sourceMappingURL=PageHeader.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PageHeader.vue.d.ts","sourceRoot":"","sources":["../../../src/components/PageHeader/PageHeader.vue"],"names":[],"mappings":"AAsDA;AAgKA,OAAO,KAAK,EAAE,eAAe,EAAmB,MAAM,SAAS,CAAC;AAyBhE,iBAAS,cAAc;WA2FT,OAAO,IAA6B;;qBAZzB,GAAG;yBACC,GAAG;sBACN,GAAG;;;;EAe5B;AAcD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;qFASnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/PageHeader/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,kBAAkB,CAAC;AAC3C,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,kBAAkB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/PageHeader/types.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,eAAe;IAC9B,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB,aAAa,CAAC,EAAE,OAAO,CAAC;CACzB;AAED,MAAM,WAAW,eAAe;IAC9B,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC;CACvB"}
|
|
@@ -10,12 +10,14 @@ declare const __VLS_component: import('vue').DefineComponent<{}, {
|
|
|
10
10
|
label: string;
|
|
11
11
|
disabled: boolean;
|
|
12
12
|
modelValue: string | number;
|
|
13
|
+
helper: string;
|
|
13
14
|
$props: {
|
|
14
15
|
readonly name?: string | undefined;
|
|
15
16
|
readonly value?: string | number | undefined;
|
|
16
17
|
readonly label?: string | undefined;
|
|
17
18
|
readonly disabled?: boolean | undefined;
|
|
18
19
|
readonly modelValue?: string | number | undefined;
|
|
20
|
+
readonly helper?: string | undefined;
|
|
19
21
|
};
|
|
20
22
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLElement>;
|
|
21
23
|
type __VLS_TemplateResult = {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Radio.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Radio/Radio.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Radio.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Radio/Radio.vue"],"names":[],"mappings":"AAsCA;wBAsTqB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;;6BAEtE,CAAC,EAAE,CAAC;;;AAZjC;;;;;;;;;;;;;;;;mPASG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DefaultTag.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Tag/DefaultTag.vue"],"names":[],"mappings":"AAeA;
|
|
1
|
+
{"version":3,"file":"DefaultTag.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Tag/DefaultTag.vue"],"names":[],"mappings":"AAeA;AAgGA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,SAAS,CAAC;;;;;;;AAuG/C,wBAQG"}
|
|
@@ -33,6 +33,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
33
33
|
default: string;
|
|
34
34
|
validator(value: unknown): boolean;
|
|
35
35
|
};
|
|
36
|
+
tooltip: {
|
|
37
|
+
type: StringConstructor;
|
|
38
|
+
default: string;
|
|
39
|
+
};
|
|
36
40
|
errors: {
|
|
37
41
|
type: ArrayConstructor;
|
|
38
42
|
default: () => never[];
|
|
@@ -76,6 +80,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
76
80
|
default: string;
|
|
77
81
|
validator(value: unknown): boolean;
|
|
78
82
|
};
|
|
83
|
+
tooltip: {
|
|
84
|
+
type: StringConstructor;
|
|
85
|
+
default: string;
|
|
86
|
+
};
|
|
79
87
|
errors: {
|
|
80
88
|
type: ArrayConstructor;
|
|
81
89
|
default: () => never[];
|
|
@@ -86,6 +94,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
86
94
|
resize: string;
|
|
87
95
|
type: string;
|
|
88
96
|
size: string;
|
|
97
|
+
tooltip: string;
|
|
89
98
|
message: string;
|
|
90
99
|
disabled: boolean;
|
|
91
100
|
errors: unknown[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TextArea.vue.d.ts","sourceRoot":"","sources":["../../../src/components/TextArea/TextArea.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"TextArea.vue.d.ts","sourceRoot":"","sources":["../../../src/components/TextArea/TextArea.vue"],"names":[],"mappings":"AA+BA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8BAkK8B,sBAAsB"}
|
|
@@ -3812,12 +3812,14 @@ export declare const unnnicRadio: {
|
|
|
3812
3812
|
label: string;
|
|
3813
3813
|
disabled: boolean;
|
|
3814
3814
|
modelValue: string | number;
|
|
3815
|
+
helper: string;
|
|
3815
3816
|
$props: {
|
|
3816
3817
|
readonly name?: string | undefined;
|
|
3817
3818
|
readonly value?: string | number | undefined;
|
|
3818
3819
|
readonly label?: string | undefined;
|
|
3819
3820
|
readonly disabled?: boolean | undefined;
|
|
3820
3821
|
readonly modelValue?: string | number | undefined;
|
|
3822
|
+
readonly helper?: string | undefined;
|
|
3821
3823
|
};
|
|
3822
3824
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLElement, import('vue').ComponentProvideOptions, {
|
|
3823
3825
|
P: {};
|
|
@@ -3833,12 +3835,14 @@ export declare const unnnicRadio: {
|
|
|
3833
3835
|
label: string;
|
|
3834
3836
|
disabled: boolean;
|
|
3835
3837
|
modelValue: string | number;
|
|
3838
|
+
helper: string;
|
|
3836
3839
|
$props: {
|
|
3837
3840
|
readonly name?: string | undefined;
|
|
3838
3841
|
readonly value?: string | number | undefined;
|
|
3839
3842
|
readonly label?: string | undefined;
|
|
3840
3843
|
readonly disabled?: boolean | undefined;
|
|
3841
3844
|
readonly modelValue?: string | number | undefined;
|
|
3845
|
+
readonly helper?: string | undefined;
|
|
3842
3846
|
};
|
|
3843
3847
|
}, {}, {}, {}, {}>;
|
|
3844
3848
|
__isFragment?: never;
|
|
@@ -3851,12 +3855,14 @@ export declare const unnnicRadio: {
|
|
|
3851
3855
|
label: string;
|
|
3852
3856
|
disabled: boolean;
|
|
3853
3857
|
modelValue: string | number;
|
|
3858
|
+
helper: string;
|
|
3854
3859
|
$props: {
|
|
3855
3860
|
readonly name?: string | undefined;
|
|
3856
3861
|
readonly value?: string | number | undefined;
|
|
3857
3862
|
readonly label?: string | undefined;
|
|
3858
3863
|
readonly disabled?: boolean | undefined;
|
|
3859
3864
|
readonly modelValue?: string | number | undefined;
|
|
3865
|
+
readonly helper?: string | undefined;
|
|
3860
3866
|
};
|
|
3861
3867
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
3862
3868
|
$slots: {
|
|
@@ -8667,6 +8673,10 @@ export declare const unnnicTextArea: import('vue').DefineComponent<import('vue')
|
|
|
8667
8673
|
default: string;
|
|
8668
8674
|
validator(value: unknown): boolean;
|
|
8669
8675
|
};
|
|
8676
|
+
tooltip: {
|
|
8677
|
+
type: StringConstructor;
|
|
8678
|
+
default: string;
|
|
8679
|
+
};
|
|
8670
8680
|
errors: {
|
|
8671
8681
|
type: ArrayConstructor;
|
|
8672
8682
|
default: () => never[];
|
|
@@ -8710,6 +8720,10 @@ export declare const unnnicTextArea: import('vue').DefineComponent<import('vue')
|
|
|
8710
8720
|
default: string;
|
|
8711
8721
|
validator(value: unknown): boolean;
|
|
8712
8722
|
};
|
|
8723
|
+
tooltip: {
|
|
8724
|
+
type: StringConstructor;
|
|
8725
|
+
default: string;
|
|
8726
|
+
};
|
|
8713
8727
|
errors: {
|
|
8714
8728
|
type: ArrayConstructor;
|
|
8715
8729
|
default: () => never[];
|
|
@@ -8720,6 +8734,7 @@ export declare const unnnicTextArea: import('vue').DefineComponent<import('vue')
|
|
|
8720
8734
|
resize: string;
|
|
8721
8735
|
type: string;
|
|
8722
8736
|
size: string;
|
|
8737
|
+
tooltip: string;
|
|
8723
8738
|
message: string;
|
|
8724
8739
|
disabled: boolean;
|
|
8725
8740
|
errors: unknown[];
|
|
@@ -11266,6 +11281,20 @@ export declare const unnnicChip: import('vue').DefineComponent<import('./Chip/ty
|
|
|
11266
11281
|
}, string, import('vue').PublicProps, Readonly<import('./Chip/types').ChipProps> & Readonly<{
|
|
11267
11282
|
onClick?: ((event: Event) => any) | undefined;
|
|
11268
11283
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLElement>;
|
|
11284
|
+
export declare const unnnicToast: import('vue').DefineComponent<import('./Toast/types').ToastProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
11285
|
+
close: () => any;
|
|
11286
|
+
destroy: () => any;
|
|
11287
|
+
}, string, import('vue').PublicProps, Readonly<import('./Toast/types').ToastProps> & Readonly<{
|
|
11288
|
+
onClose?: (() => any) | undefined;
|
|
11289
|
+
onDestroy?: (() => any) | undefined;
|
|
11290
|
+
}>, {
|
|
11291
|
+
type: import('./Toast/types').ToastType;
|
|
11292
|
+
description: string;
|
|
11293
|
+
button: import('./Toast/types').ToastButton;
|
|
11294
|
+
title: string;
|
|
11295
|
+
timeout: number;
|
|
11296
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
11297
|
+
export declare const unnnicToastManager: import('./Toast/types').ToastCall;
|
|
11269
11298
|
export declare const unnnicPopover: {
|
|
11270
11299
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('reka-ui').PopoverRootProps> & Readonly<{
|
|
11271
11300
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
@@ -11580,6 +11609,140 @@ export declare const unnnicDialogClose: {
|
|
|
11580
11609
|
default?(_: {}): any;
|
|
11581
11610
|
};
|
|
11582
11611
|
});
|
|
11612
|
+
export declare const unnnicTabs: {
|
|
11613
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('reka-ui').TabsRootProps<string | number>> & Readonly<{
|
|
11614
|
+
"onUpdate:modelValue"?: ((payload: string | number) => any) | undefined;
|
|
11615
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
11616
|
+
"update:modelValue": (payload: string | number) => any;
|
|
11617
|
+
}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
11618
|
+
P: {};
|
|
11619
|
+
B: {};
|
|
11620
|
+
D: {};
|
|
11621
|
+
C: {};
|
|
11622
|
+
M: {};
|
|
11623
|
+
Defaults: {};
|
|
11624
|
+
}, Readonly<import('reka-ui').TabsRootProps<string | number>> & Readonly<{
|
|
11625
|
+
"onUpdate:modelValue"?: ((payload: string | number) => any) | undefined;
|
|
11626
|
+
}>, {}, {}, {}, {}, {}>;
|
|
11627
|
+
__isFragment?: never;
|
|
11628
|
+
__isTeleport?: never;
|
|
11629
|
+
__isSuspense?: never;
|
|
11630
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('reka-ui').TabsRootProps<string | number>> & Readonly<{
|
|
11631
|
+
"onUpdate:modelValue"?: ((payload: string | number) => any) | undefined;
|
|
11632
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
11633
|
+
"update:modelValue": (payload: string | number) => any;
|
|
11634
|
+
}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
11635
|
+
$slots: {
|
|
11636
|
+
default?(_: {}): any;
|
|
11637
|
+
};
|
|
11638
|
+
});
|
|
11639
|
+
export declare const unnnicTabsList: {
|
|
11640
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('reka-ui').TabsListProps & {
|
|
11641
|
+
class?: import('vue').HTMLAttributes["class"];
|
|
11642
|
+
}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
11643
|
+
P: {};
|
|
11644
|
+
B: {};
|
|
11645
|
+
D: {};
|
|
11646
|
+
C: {};
|
|
11647
|
+
M: {};
|
|
11648
|
+
Defaults: {};
|
|
11649
|
+
}, Readonly<import('reka-ui').TabsListProps & {
|
|
11650
|
+
class?: import('vue').HTMLAttributes["class"];
|
|
11651
|
+
}> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
11652
|
+
__isFragment?: never;
|
|
11653
|
+
__isTeleport?: never;
|
|
11654
|
+
__isSuspense?: never;
|
|
11655
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('reka-ui').TabsListProps & {
|
|
11656
|
+
class?: import('vue').HTMLAttributes["class"];
|
|
11657
|
+
}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
11658
|
+
$slots: {
|
|
11659
|
+
default?(_: {}): any;
|
|
11660
|
+
};
|
|
11661
|
+
});
|
|
11662
|
+
export declare const unnnicTabsTrigger: {
|
|
11663
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('reka-ui').TabsTriggerProps & {
|
|
11664
|
+
class?: import('vue').HTMLAttributes["class"];
|
|
11665
|
+
}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
11666
|
+
P: {};
|
|
11667
|
+
B: {};
|
|
11668
|
+
D: {};
|
|
11669
|
+
C: {};
|
|
11670
|
+
M: {};
|
|
11671
|
+
Defaults: {};
|
|
11672
|
+
}, Readonly<import('reka-ui').TabsTriggerProps & {
|
|
11673
|
+
class?: import('vue').HTMLAttributes["class"];
|
|
11674
|
+
}> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
11675
|
+
__isFragment?: never;
|
|
11676
|
+
__isTeleport?: never;
|
|
11677
|
+
__isSuspense?: never;
|
|
11678
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('reka-ui').TabsTriggerProps & {
|
|
11679
|
+
class?: import('vue').HTMLAttributes["class"];
|
|
11680
|
+
}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
11681
|
+
$slots: {
|
|
11682
|
+
default?(_: {}): any;
|
|
11683
|
+
};
|
|
11684
|
+
});
|
|
11685
|
+
export declare const unnnicTabsContent: {
|
|
11686
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('reka-ui').TabsContentProps & {
|
|
11687
|
+
class?: import('vue').HTMLAttributes["class"];
|
|
11688
|
+
}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
11689
|
+
P: {};
|
|
11690
|
+
B: {};
|
|
11691
|
+
D: {};
|
|
11692
|
+
C: {};
|
|
11693
|
+
M: {};
|
|
11694
|
+
Defaults: {};
|
|
11695
|
+
}, Readonly<import('reka-ui').TabsContentProps & {
|
|
11696
|
+
class?: import('vue').HTMLAttributes["class"];
|
|
11697
|
+
}> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
11698
|
+
__isFragment?: never;
|
|
11699
|
+
__isTeleport?: never;
|
|
11700
|
+
__isSuspense?: never;
|
|
11701
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('reka-ui').TabsContentProps & {
|
|
11702
|
+
class?: import('vue').HTMLAttributes["class"];
|
|
11703
|
+
}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
11704
|
+
$slots: {
|
|
11705
|
+
default?(_: {}): any;
|
|
11706
|
+
};
|
|
11707
|
+
});
|
|
11708
|
+
export declare const unnnicPageHeader: {
|
|
11709
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('./PageHeader/types').PageHeaderProps> & Readonly<{
|
|
11710
|
+
onBack?: (() => any) | undefined;
|
|
11711
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
11712
|
+
back: () => any;
|
|
11713
|
+
}, import('vue').PublicProps, {
|
|
11714
|
+
description: string;
|
|
11715
|
+
hasBackButton: boolean;
|
|
11716
|
+
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLElement, import('vue').ComponentProvideOptions, {
|
|
11717
|
+
P: {};
|
|
11718
|
+
B: {};
|
|
11719
|
+
D: {};
|
|
11720
|
+
C: {};
|
|
11721
|
+
M: {};
|
|
11722
|
+
Defaults: {};
|
|
11723
|
+
}, Readonly<import('./PageHeader/types').PageHeaderProps> & Readonly<{
|
|
11724
|
+
onBack?: (() => any) | undefined;
|
|
11725
|
+
}>, {}, {}, {}, {}, {
|
|
11726
|
+
description: string;
|
|
11727
|
+
hasBackButton: boolean;
|
|
11728
|
+
}>;
|
|
11729
|
+
__isFragment?: never;
|
|
11730
|
+
__isTeleport?: never;
|
|
11731
|
+
__isSuspense?: never;
|
|
11732
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('./PageHeader/types').PageHeaderProps> & Readonly<{
|
|
11733
|
+
onBack?: (() => any) | undefined;
|
|
11734
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
11735
|
+
back: () => any;
|
|
11736
|
+
}, string, {
|
|
11737
|
+
description: string;
|
|
11738
|
+
hasBackButton: boolean;
|
|
11739
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
11740
|
+
$slots: {
|
|
11741
|
+
tag?(_: {}): any;
|
|
11742
|
+
actions?(_: {}): any;
|
|
11743
|
+
tabs?(_: {}): any;
|
|
11744
|
+
};
|
|
11745
|
+
});
|
|
11583
11746
|
export declare const UnnnicFontSize = 16;
|
|
11584
11747
|
export declare const UnnnicInput: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
11585
11748
|
placeholder: {
|
|
@@ -15311,12 +15474,14 @@ export declare const UnnnicRadio: {
|
|
|
15311
15474
|
label: string;
|
|
15312
15475
|
disabled: boolean;
|
|
15313
15476
|
modelValue: string | number;
|
|
15477
|
+
helper: string;
|
|
15314
15478
|
$props: {
|
|
15315
15479
|
readonly name?: string | undefined;
|
|
15316
15480
|
readonly value?: string | number | undefined;
|
|
15317
15481
|
readonly label?: string | undefined;
|
|
15318
15482
|
readonly disabled?: boolean | undefined;
|
|
15319
15483
|
readonly modelValue?: string | number | undefined;
|
|
15484
|
+
readonly helper?: string | undefined;
|
|
15320
15485
|
};
|
|
15321
15486
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLElement, import('vue').ComponentProvideOptions, {
|
|
15322
15487
|
P: {};
|
|
@@ -15332,12 +15497,14 @@ export declare const UnnnicRadio: {
|
|
|
15332
15497
|
label: string;
|
|
15333
15498
|
disabled: boolean;
|
|
15334
15499
|
modelValue: string | number;
|
|
15500
|
+
helper: string;
|
|
15335
15501
|
$props: {
|
|
15336
15502
|
readonly name?: string | undefined;
|
|
15337
15503
|
readonly value?: string | number | undefined;
|
|
15338
15504
|
readonly label?: string | undefined;
|
|
15339
15505
|
readonly disabled?: boolean | undefined;
|
|
15340
15506
|
readonly modelValue?: string | number | undefined;
|
|
15507
|
+
readonly helper?: string | undefined;
|
|
15341
15508
|
};
|
|
15342
15509
|
}, {}, {}, {}, {}>;
|
|
15343
15510
|
__isFragment?: never;
|
|
@@ -15350,12 +15517,14 @@ export declare const UnnnicRadio: {
|
|
|
15350
15517
|
label: string;
|
|
15351
15518
|
disabled: boolean;
|
|
15352
15519
|
modelValue: string | number;
|
|
15520
|
+
helper: string;
|
|
15353
15521
|
$props: {
|
|
15354
15522
|
readonly name?: string | undefined;
|
|
15355
15523
|
readonly value?: string | number | undefined;
|
|
15356
15524
|
readonly label?: string | undefined;
|
|
15357
15525
|
readonly disabled?: boolean | undefined;
|
|
15358
15526
|
readonly modelValue?: string | number | undefined;
|
|
15527
|
+
readonly helper?: string | undefined;
|
|
15359
15528
|
};
|
|
15360
15529
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
15361
15530
|
$slots: {
|
|
@@ -20166,6 +20335,10 @@ export declare const UnnnicTextArea: import('vue').DefineComponent<import('vue')
|
|
|
20166
20335
|
default: string;
|
|
20167
20336
|
validator(value: unknown): boolean;
|
|
20168
20337
|
};
|
|
20338
|
+
tooltip: {
|
|
20339
|
+
type: StringConstructor;
|
|
20340
|
+
default: string;
|
|
20341
|
+
};
|
|
20169
20342
|
errors: {
|
|
20170
20343
|
type: ArrayConstructor;
|
|
20171
20344
|
default: () => never[];
|
|
@@ -20209,6 +20382,10 @@ export declare const UnnnicTextArea: import('vue').DefineComponent<import('vue')
|
|
|
20209
20382
|
default: string;
|
|
20210
20383
|
validator(value: unknown): boolean;
|
|
20211
20384
|
};
|
|
20385
|
+
tooltip: {
|
|
20386
|
+
type: StringConstructor;
|
|
20387
|
+
default: string;
|
|
20388
|
+
};
|
|
20212
20389
|
errors: {
|
|
20213
20390
|
type: ArrayConstructor;
|
|
20214
20391
|
default: () => never[];
|
|
@@ -20219,6 +20396,7 @@ export declare const UnnnicTextArea: import('vue').DefineComponent<import('vue')
|
|
|
20219
20396
|
resize: string;
|
|
20220
20397
|
type: string;
|
|
20221
20398
|
size: string;
|
|
20399
|
+
tooltip: string;
|
|
20222
20400
|
message: string;
|
|
20223
20401
|
disabled: boolean;
|
|
20224
20402
|
errors: unknown[];
|
|
@@ -23093,5 +23271,139 @@ export declare const UnnnicDialogClose: {
|
|
|
23093
23271
|
default?(_: {}): any;
|
|
23094
23272
|
};
|
|
23095
23273
|
});
|
|
23274
|
+
export declare const UnnnicTabs: {
|
|
23275
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('reka-ui').TabsRootProps<string | number>> & Readonly<{
|
|
23276
|
+
"onUpdate:modelValue"?: ((payload: string | number) => any) | undefined;
|
|
23277
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
23278
|
+
"update:modelValue": (payload: string | number) => any;
|
|
23279
|
+
}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
23280
|
+
P: {};
|
|
23281
|
+
B: {};
|
|
23282
|
+
D: {};
|
|
23283
|
+
C: {};
|
|
23284
|
+
M: {};
|
|
23285
|
+
Defaults: {};
|
|
23286
|
+
}, Readonly<import('reka-ui').TabsRootProps<string | number>> & Readonly<{
|
|
23287
|
+
"onUpdate:modelValue"?: ((payload: string | number) => any) | undefined;
|
|
23288
|
+
}>, {}, {}, {}, {}, {}>;
|
|
23289
|
+
__isFragment?: never;
|
|
23290
|
+
__isTeleport?: never;
|
|
23291
|
+
__isSuspense?: never;
|
|
23292
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('reka-ui').TabsRootProps<string | number>> & Readonly<{
|
|
23293
|
+
"onUpdate:modelValue"?: ((payload: string | number) => any) | undefined;
|
|
23294
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
23295
|
+
"update:modelValue": (payload: string | number) => any;
|
|
23296
|
+
}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
23297
|
+
$slots: {
|
|
23298
|
+
default?(_: {}): any;
|
|
23299
|
+
};
|
|
23300
|
+
});
|
|
23301
|
+
export declare const UnnnicTabsList: {
|
|
23302
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('reka-ui').TabsListProps & {
|
|
23303
|
+
class?: import('vue').HTMLAttributes["class"];
|
|
23304
|
+
}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
23305
|
+
P: {};
|
|
23306
|
+
B: {};
|
|
23307
|
+
D: {};
|
|
23308
|
+
C: {};
|
|
23309
|
+
M: {};
|
|
23310
|
+
Defaults: {};
|
|
23311
|
+
}, Readonly<import('reka-ui').TabsListProps & {
|
|
23312
|
+
class?: import('vue').HTMLAttributes["class"];
|
|
23313
|
+
}> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
23314
|
+
__isFragment?: never;
|
|
23315
|
+
__isTeleport?: never;
|
|
23316
|
+
__isSuspense?: never;
|
|
23317
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('reka-ui').TabsListProps & {
|
|
23318
|
+
class?: import('vue').HTMLAttributes["class"];
|
|
23319
|
+
}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
23320
|
+
$slots: {
|
|
23321
|
+
default?(_: {}): any;
|
|
23322
|
+
};
|
|
23323
|
+
});
|
|
23324
|
+
export declare const UnnnicTabsTrigger: {
|
|
23325
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('reka-ui').TabsTriggerProps & {
|
|
23326
|
+
class?: import('vue').HTMLAttributes["class"];
|
|
23327
|
+
}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
23328
|
+
P: {};
|
|
23329
|
+
B: {};
|
|
23330
|
+
D: {};
|
|
23331
|
+
C: {};
|
|
23332
|
+
M: {};
|
|
23333
|
+
Defaults: {};
|
|
23334
|
+
}, Readonly<import('reka-ui').TabsTriggerProps & {
|
|
23335
|
+
class?: import('vue').HTMLAttributes["class"];
|
|
23336
|
+
}> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
23337
|
+
__isFragment?: never;
|
|
23338
|
+
__isTeleport?: never;
|
|
23339
|
+
__isSuspense?: never;
|
|
23340
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('reka-ui').TabsTriggerProps & {
|
|
23341
|
+
class?: import('vue').HTMLAttributes["class"];
|
|
23342
|
+
}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
23343
|
+
$slots: {
|
|
23344
|
+
default?(_: {}): any;
|
|
23345
|
+
};
|
|
23346
|
+
});
|
|
23347
|
+
export declare const UnnnicTabsContent: {
|
|
23348
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('reka-ui').TabsContentProps & {
|
|
23349
|
+
class?: import('vue').HTMLAttributes["class"];
|
|
23350
|
+
}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
23351
|
+
P: {};
|
|
23352
|
+
B: {};
|
|
23353
|
+
D: {};
|
|
23354
|
+
C: {};
|
|
23355
|
+
M: {};
|
|
23356
|
+
Defaults: {};
|
|
23357
|
+
}, Readonly<import('reka-ui').TabsContentProps & {
|
|
23358
|
+
class?: import('vue').HTMLAttributes["class"];
|
|
23359
|
+
}> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
23360
|
+
__isFragment?: never;
|
|
23361
|
+
__isTeleport?: never;
|
|
23362
|
+
__isSuspense?: never;
|
|
23363
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('reka-ui').TabsContentProps & {
|
|
23364
|
+
class?: import('vue').HTMLAttributes["class"];
|
|
23365
|
+
}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
23366
|
+
$slots: {
|
|
23367
|
+
default?(_: {}): any;
|
|
23368
|
+
};
|
|
23369
|
+
});
|
|
23370
|
+
export declare const UnnnicPageHeader: {
|
|
23371
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('./PageHeader/types').PageHeaderProps> & Readonly<{
|
|
23372
|
+
onBack?: (() => any) | undefined;
|
|
23373
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
23374
|
+
back: () => any;
|
|
23375
|
+
}, import('vue').PublicProps, {
|
|
23376
|
+
description: string;
|
|
23377
|
+
hasBackButton: boolean;
|
|
23378
|
+
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLElement, import('vue').ComponentProvideOptions, {
|
|
23379
|
+
P: {};
|
|
23380
|
+
B: {};
|
|
23381
|
+
D: {};
|
|
23382
|
+
C: {};
|
|
23383
|
+
M: {};
|
|
23384
|
+
Defaults: {};
|
|
23385
|
+
}, Readonly<import('./PageHeader/types').PageHeaderProps> & Readonly<{
|
|
23386
|
+
onBack?: (() => any) | undefined;
|
|
23387
|
+
}>, {}, {}, {}, {}, {
|
|
23388
|
+
description: string;
|
|
23389
|
+
hasBackButton: boolean;
|
|
23390
|
+
}>;
|
|
23391
|
+
__isFragment?: never;
|
|
23392
|
+
__isTeleport?: never;
|
|
23393
|
+
__isSuspense?: never;
|
|
23394
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('./PageHeader/types').PageHeaderProps> & Readonly<{
|
|
23395
|
+
onBack?: (() => any) | undefined;
|
|
23396
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
23397
|
+
back: () => any;
|
|
23398
|
+
}, string, {
|
|
23399
|
+
description: string;
|
|
23400
|
+
hasBackButton: boolean;
|
|
23401
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
23402
|
+
$slots: {
|
|
23403
|
+
tag?(_: {}): any;
|
|
23404
|
+
actions?(_: {}): any;
|
|
23405
|
+
tabs?(_: {}): any;
|
|
23406
|
+
};
|
|
23407
|
+
});
|
|
23096
23408
|
export {};
|
|
23097
23409
|
//# sourceMappingURL=index.d.ts.map
|