@codemonster-ru/vueforge 0.68.0 → 0.69.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/README.md +39 -1
- package/dist/index.css +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.ts.mjs +1278 -1236
- package/dist/index.ts.umd.js +4 -4
- package/dist/package/components/__tests__/divider.test.d.ts +1 -0
- package/dist/package/components/divider.vue.d.ts +32 -0
- package/dist/package/config/theme-core.d.ts +11 -0
- package/dist/package/themes/default/components/divider.d.ts +11 -0
- package/dist/package/themes/default/index.d.ts +10 -0
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
type Orientation = 'horizontal' | 'vertical';
|
|
2
|
+
type Variant = 'solid' | 'dashed' | 'dotted';
|
|
3
|
+
interface Props {
|
|
4
|
+
orientation?: Orientation;
|
|
5
|
+
variant?: Variant;
|
|
6
|
+
inset?: boolean;
|
|
7
|
+
label?: string;
|
|
8
|
+
ariaLabel?: string;
|
|
9
|
+
}
|
|
10
|
+
declare function __VLS_template(): {
|
|
11
|
+
attrs: Partial<{}>;
|
|
12
|
+
slots: {
|
|
13
|
+
default?(_: {}): any;
|
|
14
|
+
};
|
|
15
|
+
refs: {};
|
|
16
|
+
rootEl: HTMLDivElement;
|
|
17
|
+
};
|
|
18
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
19
|
+
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
20
|
+
label: string;
|
|
21
|
+
orientation: Orientation;
|
|
22
|
+
variant: Variant;
|
|
23
|
+
ariaLabel: string;
|
|
24
|
+
inset: boolean;
|
|
25
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
26
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
27
|
+
export default _default;
|
|
28
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
29
|
+
new (): {
|
|
30
|
+
$slots: S;
|
|
31
|
+
};
|
|
32
|
+
};
|
|
@@ -503,6 +503,16 @@ export type BreadcrumbsTokens = {
|
|
|
503
503
|
separatorColor?: string;
|
|
504
504
|
disabledOpacity?: string;
|
|
505
505
|
};
|
|
506
|
+
export type DividerTokens = {
|
|
507
|
+
color?: string;
|
|
508
|
+
textColor?: string;
|
|
509
|
+
thickness?: string;
|
|
510
|
+
minLength?: string;
|
|
511
|
+
gap?: string;
|
|
512
|
+
inset?: string;
|
|
513
|
+
labelPadding?: string;
|
|
514
|
+
labelFontSize?: string;
|
|
515
|
+
};
|
|
506
516
|
export type MenuTokens = {
|
|
507
517
|
iconGap?: string;
|
|
508
518
|
submenuOffset?: string;
|
|
@@ -2061,6 +2071,7 @@ export type ThemeComponentTokens = {
|
|
|
2061
2071
|
fileUpload?: FileUploadTokens;
|
|
2062
2072
|
link?: LinkTokens;
|
|
2063
2073
|
breadcrumbs?: BreadcrumbsTokens;
|
|
2074
|
+
divider?: DividerTokens;
|
|
2064
2075
|
menu?: MenuTokens;
|
|
2065
2076
|
modal?: ModalTokens;
|
|
2066
2077
|
confirmDialog?: ConfirmDialogTokens;
|
|
@@ -660,6 +660,16 @@ declare const _default: {
|
|
|
660
660
|
separatorColor: string;
|
|
661
661
|
disabledOpacity: string;
|
|
662
662
|
};
|
|
663
|
+
divider: {
|
|
664
|
+
color: string;
|
|
665
|
+
textColor: string;
|
|
666
|
+
thickness: string;
|
|
667
|
+
minLength: string;
|
|
668
|
+
gap: string;
|
|
669
|
+
inset: string;
|
|
670
|
+
labelPadding: string;
|
|
671
|
+
labelFontSize: string;
|
|
672
|
+
};
|
|
663
673
|
menu: {
|
|
664
674
|
iconGap: string;
|
|
665
675
|
submenuOffset: string;
|