@namba_one/ui-kit-2 1.0.286 → 1.0.288
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 +35 -8
- package/dist/index.es.js +179 -154
- package/dist/index.umd.js +22 -22
- package/dist/namba-one-uikit.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -132,7 +132,7 @@ parentElementRef: ({
|
|
|
132
132
|
$: ComponentInternalInstance;
|
|
133
133
|
$data: {};
|
|
134
134
|
$props: {
|
|
135
|
-
readonly tag?:
|
|
135
|
+
readonly tag?: tags_3[number] | undefined;
|
|
136
136
|
readonly href?: string | undefined;
|
|
137
137
|
readonly isLoading?: boolean | undefined;
|
|
138
138
|
readonly isDisabled?: boolean | undefined;
|
|
@@ -662,6 +662,8 @@ onSetStep?: ((value: number) => any) | undefined;
|
|
|
662
662
|
|
|
663
663
|
declare const __VLS_component_48: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
664
664
|
|
|
665
|
+
declare const __VLS_component_49: DefineComponent<PageHeaderTitleProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<PageHeaderTitleProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
666
|
+
|
|
665
667
|
declare const __VLS_component_5: DefineComponent<ButtonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
666
668
|
click: (e: Event) => any;
|
|
667
669
|
}, string, PublicProps, Readonly<ButtonProps> & Readonly<{
|
|
@@ -1221,7 +1223,7 @@ declare function __VLS_template_30(): {
|
|
|
1221
1223
|
$: ComponentInternalInstance;
|
|
1222
1224
|
$data: {};
|
|
1223
1225
|
$props: {
|
|
1224
|
-
readonly tag?:
|
|
1226
|
+
readonly tag?: tags_3[number] | undefined;
|
|
1225
1227
|
readonly href?: string | undefined;
|
|
1226
1228
|
readonly isLoading?: boolean | undefined;
|
|
1227
1229
|
readonly isDisabled?: boolean | undefined;
|
|
@@ -1838,6 +1840,15 @@ declare function __VLS_template_48(): {
|
|
|
1838
1840
|
rootEl: any;
|
|
1839
1841
|
};
|
|
1840
1842
|
|
|
1843
|
+
declare function __VLS_template_49(): {
|
|
1844
|
+
attrs: Partial<{}>;
|
|
1845
|
+
slots: {
|
|
1846
|
+
default?(_: {}): any;
|
|
1847
|
+
};
|
|
1848
|
+
refs: {};
|
|
1849
|
+
rootEl: any;
|
|
1850
|
+
};
|
|
1851
|
+
|
|
1841
1852
|
declare function __VLS_template_5(): {
|
|
1842
1853
|
attrs: Partial<{}>;
|
|
1843
1854
|
slots: {
|
|
@@ -1971,6 +1982,8 @@ declare type __VLS_TemplateResult_47 = ReturnType<typeof __VLS_template_47>;
|
|
|
1971
1982
|
|
|
1972
1983
|
declare type __VLS_TemplateResult_48 = ReturnType<typeof __VLS_template_48>;
|
|
1973
1984
|
|
|
1985
|
+
declare type __VLS_TemplateResult_49 = ReturnType<typeof __VLS_template_49>;
|
|
1986
|
+
|
|
1974
1987
|
declare type __VLS_TemplateResult_5 = ReturnType<typeof __VLS_template_5>;
|
|
1975
1988
|
|
|
1976
1989
|
declare type __VLS_TemplateResult_6 = ReturnType<typeof __VLS_template_6>;
|
|
@@ -2239,6 +2252,12 @@ declare type __VLS_WithTemplateSlots_48<T, S> = T & {
|
|
|
2239
2252
|
};
|
|
2240
2253
|
};
|
|
2241
2254
|
|
|
2255
|
+
declare type __VLS_WithTemplateSlots_49<T, S> = T & {
|
|
2256
|
+
new (): {
|
|
2257
|
+
$slots: S;
|
|
2258
|
+
};
|
|
2259
|
+
};
|
|
2260
|
+
|
|
2242
2261
|
declare type __VLS_WithTemplateSlots_5<T, S> = T & {
|
|
2243
2262
|
new (): {
|
|
2244
2263
|
$slots: S;
|
|
@@ -2330,7 +2349,7 @@ export declare type ButtonBaseEmits = {
|
|
|
2330
2349
|
};
|
|
2331
2350
|
|
|
2332
2351
|
export declare type ButtonBaseProps = {
|
|
2333
|
-
tag?: (typeof
|
|
2352
|
+
tag?: (typeof tags_3)[number];
|
|
2334
2353
|
href?: string;
|
|
2335
2354
|
isLoading?: boolean;
|
|
2336
2355
|
isDisabled?: boolean;
|
|
@@ -3411,7 +3430,7 @@ export declare type LinkEmits = {
|
|
|
3411
3430
|
};
|
|
3412
3431
|
|
|
3413
3432
|
export declare type LinkProps = {
|
|
3414
|
-
tag?: (typeof
|
|
3433
|
+
tag?: (typeof tags_4)[number];
|
|
3415
3434
|
href?: string;
|
|
3416
3435
|
view?: (typeof views_7)[number];
|
|
3417
3436
|
size?: (typeof sizes_6)[number];
|
|
@@ -4055,6 +4074,12 @@ declare function open_3(timeout?: number): void;
|
|
|
4055
4074
|
|
|
4056
4075
|
export declare const PageHeader: __VLS_WithTemplateSlots_46<typeof __VLS_component_46, __VLS_TemplateResult_46["slots"]>;
|
|
4057
4076
|
|
|
4077
|
+
export declare const PageHeaderTitle: __VLS_WithTemplateSlots_49<typeof __VLS_component_49, __VLS_TemplateResult_49["slots"]>;
|
|
4078
|
+
|
|
4079
|
+
export declare type PageHeaderTitleProps = {
|
|
4080
|
+
tag?: (typeof tags)[number];
|
|
4081
|
+
};
|
|
4082
|
+
|
|
4058
4083
|
export declare const PageInfoCell: __VLS_WithTemplateSlots_28<typeof __VLS_component_28, __VLS_TemplateResult_28["slots"]>;
|
|
4059
4084
|
|
|
4060
4085
|
export declare type PageInfoCellProps = {
|
|
@@ -4578,11 +4603,13 @@ export declare type TabsProps = {
|
|
|
4578
4603
|
}[];
|
|
4579
4604
|
};
|
|
4580
4605
|
|
|
4581
|
-
declare const tags: readonly ["
|
|
4606
|
+
export declare const tags: readonly ["h1", "h2", "h3", "h4", "h5", "h6"];
|
|
4582
4607
|
|
|
4583
|
-
declare const tags_2: readonly ["
|
|
4608
|
+
declare const tags_2: readonly ["span", "p", "div", "h1", "h2", "h3", "h4", "h5", "h6"];
|
|
4584
4609
|
|
|
4585
|
-
declare const tags_3: readonly ["a", "router-link", "
|
|
4610
|
+
declare const tags_3: readonly ["button", "a", "router-link", "div"];
|
|
4611
|
+
|
|
4612
|
+
declare const tags_4: readonly ["a", "router-link", "button"];
|
|
4586
4613
|
|
|
4587
4614
|
export declare const TheImage: __VLS_WithTemplateSlots_2<typeof __VLS_component_2, __VLS_TemplateResult_2["slots"]>;
|
|
4588
4615
|
|
|
@@ -4617,7 +4644,7 @@ export declare const ThemePickerSkeleton: DefineComponent< {}, {}, {}, {}, {}
|
|
|
4617
4644
|
export declare const TheText: __VLS_WithTemplateSlots_3<typeof __VLS_component_3, __VLS_TemplateResult_3["slots"]>;
|
|
4618
4645
|
|
|
4619
4646
|
export declare type TheTextProps = {
|
|
4620
|
-
tag?: (typeof
|
|
4647
|
+
tag?: (typeof tags_2)[number];
|
|
4621
4648
|
size?: (typeof sizes)[number];
|
|
4622
4649
|
align?: (typeof aligns)[number];
|
|
4623
4650
|
weight?: (typeof weights)[number];
|