tide-design-system 2.1.13 → 2.1.14
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/style.css +1 -1
- package/dist/tide-design-system.cjs +2 -2
- package/dist/tide-design-system.esm.d.ts +48 -6
- package/dist/tide-design-system.esm.js +2043 -944
- package/index.ts +2 -0
- package/package.json +1 -1
- package/src/components/TideInputCheckbox.vue +1 -1
- package/src/components/TideInputSelect.vue +7 -1
- package/src/components/TideInputText.vue +1 -1
- package/src/components/TideInputTextarea.vue +1 -1
|
@@ -55,6 +55,8 @@ declare type __VLS_NonUndefinedable_3<T> = T extends undefined ? never : T;
|
|
|
55
55
|
|
|
56
56
|
declare type __VLS_NonUndefinedable_30<T> = T extends undefined ? never : T;
|
|
57
57
|
|
|
58
|
+
declare type __VLS_NonUndefinedable_31<T> = T extends undefined ? never : T;
|
|
59
|
+
|
|
58
60
|
declare type __VLS_NonUndefinedable_4<T> = T extends undefined ? never : T;
|
|
59
61
|
|
|
60
62
|
declare type __VLS_NonUndefinedable_5<T> = T extends undefined ? never : T;
|
|
@@ -151,6 +153,10 @@ declare type __VLS_PrettifyLocal_28<T> = {
|
|
|
151
153
|
[K in keyof T]: T[K];
|
|
152
154
|
} & {};
|
|
153
155
|
|
|
156
|
+
declare type __VLS_PrettifyLocal_29<T> = {
|
|
157
|
+
[K in keyof T]: T[K];
|
|
158
|
+
} & {};
|
|
159
|
+
|
|
154
160
|
declare type __VLS_PrettifyLocal_3<T> = {
|
|
155
161
|
[K in keyof T]: T[K];
|
|
156
162
|
} & {};
|
|
@@ -395,6 +401,15 @@ declare type __VLS_TypePropsToOption_30<T> = {
|
|
|
395
401
|
};
|
|
396
402
|
};
|
|
397
403
|
|
|
404
|
+
declare type __VLS_TypePropsToOption_31<T> = {
|
|
405
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
406
|
+
type: PropType<__VLS_NonUndefinedable_31<T[K]>>;
|
|
407
|
+
} : {
|
|
408
|
+
type: PropType<T[K]>;
|
|
409
|
+
required: true;
|
|
410
|
+
};
|
|
411
|
+
};
|
|
412
|
+
|
|
398
413
|
declare type __VLS_TypePropsToOption_4<T> = {
|
|
399
414
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
400
415
|
type: PropType<__VLS_NonUndefinedable_4<T[K]>>;
|
|
@@ -575,6 +590,12 @@ declare type __VLS_WithDefaults_28<P, D> = {
|
|
|
575
590
|
}> : P[K];
|
|
576
591
|
};
|
|
577
592
|
|
|
593
|
+
declare type __VLS_WithDefaults_29<P, D> = {
|
|
594
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal_29<P[K] & {
|
|
595
|
+
default: D[K];
|
|
596
|
+
}> : P[K];
|
|
597
|
+
};
|
|
598
|
+
|
|
578
599
|
declare type __VLS_WithDefaults_3<P, D> = {
|
|
579
600
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal_3<P[K] & {
|
|
580
601
|
default: D[K];
|
|
@@ -659,6 +680,12 @@ declare type __VLS_WithTemplateSlots_7<T, S> = T & {
|
|
|
659
680
|
};
|
|
660
681
|
};
|
|
661
682
|
|
|
683
|
+
declare type __VLS_WithTemplateSlots_8<T, S> = T & {
|
|
684
|
+
new (): {
|
|
685
|
+
$slots: S;
|
|
686
|
+
};
|
|
687
|
+
};
|
|
688
|
+
|
|
662
689
|
export declare const ALERT: {
|
|
663
690
|
readonly ERROR: "error";
|
|
664
691
|
readonly INFO: "info";
|
|
@@ -1668,8 +1695,8 @@ declare type Props_28 = {
|
|
|
1668
1695
|
};
|
|
1669
1696
|
|
|
1670
1697
|
declare type Props_29 = {
|
|
1671
|
-
|
|
1672
|
-
|
|
1698
|
+
anchorId: string;
|
|
1699
|
+
offset?: number;
|
|
1673
1700
|
};
|
|
1674
1701
|
|
|
1675
1702
|
declare type Props_3 = {
|
|
@@ -1680,6 +1707,11 @@ declare type Props_3 = {
|
|
|
1680
1707
|
};
|
|
1681
1708
|
|
|
1682
1709
|
declare type Props_30 = {
|
|
1710
|
+
heading?: string;
|
|
1711
|
+
links: Link[];
|
|
1712
|
+
};
|
|
1713
|
+
|
|
1714
|
+
declare type Props_31 = {
|
|
1683
1715
|
disabled?: boolean;
|
|
1684
1716
|
isActive?: boolean;
|
|
1685
1717
|
};
|
|
@@ -2426,20 +2458,30 @@ pageCurrent: number;
|
|
|
2426
2458
|
pageTotal: number;
|
|
2427
2459
|
}, {}>;
|
|
2428
2460
|
|
|
2429
|
-
export declare const
|
|
2430
|
-
|
|
2461
|
+
export declare const TidePopover: __VLS_WithTemplateSlots_8<DefineComponent<__VLS_WithDefaults_27<__VLS_TypePropsToOption_29<Props_29>, {
|
|
2462
|
+
offset: number;
|
|
2431
2463
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_27<__VLS_TypePropsToOption_29<Props_29>, {
|
|
2464
|
+
offset: number;
|
|
2465
|
+
}>>>, {
|
|
2466
|
+
offset: number;
|
|
2467
|
+
}, {}>, {
|
|
2468
|
+
default?(_: {}): any;
|
|
2469
|
+
}>;
|
|
2470
|
+
|
|
2471
|
+
export declare const TideSeoLinks: DefineComponent<__VLS_WithDefaults_28<__VLS_TypePropsToOption_30<Props_30>, {
|
|
2472
|
+
heading: string;
|
|
2473
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_28<__VLS_TypePropsToOption_30<Props_30>, {
|
|
2432
2474
|
heading: string;
|
|
2433
2475
|
}>>>, {
|
|
2434
2476
|
heading: string;
|
|
2435
2477
|
}, {}>;
|
|
2436
2478
|
|
|
2437
|
-
export declare const TideSwitch: DefineComponent<
|
|
2479
|
+
export declare const TideSwitch: DefineComponent<__VLS_WithDefaults_29<__VLS_TypePropsToOption_31<Props_31>, {
|
|
2438
2480
|
disabled: boolean;
|
|
2439
2481
|
isActive: boolean;
|
|
2440
2482
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2441
2483
|
change: (...args: any[]) => void;
|
|
2442
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2484
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_29<__VLS_TypePropsToOption_31<Props_31>, {
|
|
2443
2485
|
disabled: boolean;
|
|
2444
2486
|
isActive: boolean;
|
|
2445
2487
|
}>>> & {
|