@namba_one/ui-kit-2 1.0.37 → 1.0.39
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/index.d.ts +11 -4
- package/dist/index.es.js +5385 -5390
- package/dist/index.umd.js +6 -6
- package/dist/namba-one-uikit.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -16,7 +16,6 @@ import { InjectionKey } from 'vue';
|
|
|
16
16
|
import { InputHTMLAttributes } from 'vue';
|
|
17
17
|
import { nextTick } from 'vue';
|
|
18
18
|
import { OnCleanup } from '@vue/reactivity';
|
|
19
|
-
import { Plugin as Plugin_2 } from 'vue';
|
|
20
19
|
import { PropType } from 'vue';
|
|
21
20
|
import { PublicProps } from 'vue';
|
|
22
21
|
import { Ref } from 'vue';
|
|
@@ -697,6 +696,17 @@ export declare type BannerOfferProps = {
|
|
|
697
696
|
|
|
698
697
|
export declare const BannerOfferSkeleton: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
699
698
|
|
|
699
|
+
export declare const Breadcrumbs: DefineComponent<BreadcrumbsProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<BreadcrumbsProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
700
|
+
|
|
701
|
+
export declare type BreadcrumbsProps = {
|
|
702
|
+
list: {
|
|
703
|
+
text: string;
|
|
704
|
+
href?: string;
|
|
705
|
+
}[];
|
|
706
|
+
color: Color;
|
|
707
|
+
tag: 'a' | 'router-link';
|
|
708
|
+
};
|
|
709
|
+
|
|
700
710
|
export declare const Button: __VLS_WithTemplateSlots_4<typeof __VLS_component_4, __VLS_TemplateResult_4["slots"]>;
|
|
701
711
|
|
|
702
712
|
export declare type ButtonBaseEmits = {
|
|
@@ -1184,9 +1194,6 @@ export declare type ModalConfirmationProps = {
|
|
|
1184
1194
|
isLoading?: boolean;
|
|
1185
1195
|
};
|
|
1186
1196
|
|
|
1187
|
-
declare const NambaOneUIKit: Plugin_2;
|
|
1188
|
-
export default NambaOneUIKit;
|
|
1189
|
-
|
|
1190
1197
|
declare const objectFits: readonly ["cover", "contain"];
|
|
1191
1198
|
|
|
1192
1199
|
declare function onApply(newValue: {
|