@codemonster-ru/vueforge 0.71.0 → 0.72.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 +57 -1
- package/dist/index.css +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.ts.mjs +2341 -2249
- package/dist/index.ts.umd.js +4 -4
- package/dist/package/components/__tests__/page-header.test.d.ts +1 -0
- package/dist/package/components/page-header.vue.d.ts +34 -0
- package/dist/package/config/theme-core.d.ts +29 -0
- package/dist/package/themes/default/components/page-header.d.ts +29 -0
- package/dist/package/themes/default/index.d.ts +28 -0
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
type Size = 'small' | 'normal' | 'large';
|
|
2
|
+
interface Props {
|
|
3
|
+
title?: string;
|
|
4
|
+
subtitle?: string;
|
|
5
|
+
size?: Size;
|
|
6
|
+
divider?: boolean;
|
|
7
|
+
}
|
|
8
|
+
declare function __VLS_template(): {
|
|
9
|
+
attrs: Partial<{}>;
|
|
10
|
+
slots: {
|
|
11
|
+
breadcrumbs?(_: {}): any;
|
|
12
|
+
title?(_: {}): any;
|
|
13
|
+
subtitle?(_: {}): any;
|
|
14
|
+
meta?(_: {}): any;
|
|
15
|
+
default?(_: {}): any;
|
|
16
|
+
actions?(_: {}): any;
|
|
17
|
+
};
|
|
18
|
+
refs: {};
|
|
19
|
+
rootEl: HTMLElement;
|
|
20
|
+
};
|
|
21
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
22
|
+
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
23
|
+
title: string;
|
|
24
|
+
size: Size;
|
|
25
|
+
subtitle: string;
|
|
26
|
+
divider: boolean;
|
|
27
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLElement>;
|
|
28
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
29
|
+
export default _default;
|
|
30
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
31
|
+
new (): {
|
|
32
|
+
$slots: S;
|
|
33
|
+
};
|
|
34
|
+
};
|
|
@@ -518,6 +518,34 @@ export type DividerTokens = {
|
|
|
518
518
|
labelPadding?: string;
|
|
519
519
|
labelFontSize?: string;
|
|
520
520
|
};
|
|
521
|
+
export type PageHeaderTokens = {
|
|
522
|
+
gap?: string;
|
|
523
|
+
contentGap?: string;
|
|
524
|
+
breadcrumbGap?: string;
|
|
525
|
+
actionsGap?: string;
|
|
526
|
+
metaGap?: string;
|
|
527
|
+
padding?: string;
|
|
528
|
+
borderRadius?: string;
|
|
529
|
+
borderColor?: string;
|
|
530
|
+
backgroundColor?: string;
|
|
531
|
+
textColor?: string;
|
|
532
|
+
dividerColor?: string;
|
|
533
|
+
titleFontSize?: string;
|
|
534
|
+
titleLineHeight?: string;
|
|
535
|
+
titleFontWeight?: string;
|
|
536
|
+
subtitleFontSize?: string;
|
|
537
|
+
subtitleColor?: string;
|
|
538
|
+
small?: {
|
|
539
|
+
padding?: string;
|
|
540
|
+
titleFontSize?: string;
|
|
541
|
+
subtitleFontSize?: string;
|
|
542
|
+
};
|
|
543
|
+
large?: {
|
|
544
|
+
padding?: string;
|
|
545
|
+
titleFontSize?: string;
|
|
546
|
+
subtitleFontSize?: string;
|
|
547
|
+
};
|
|
548
|
+
};
|
|
521
549
|
export type MenuTokens = {
|
|
522
550
|
iconGap?: string;
|
|
523
551
|
submenuOffset?: string;
|
|
@@ -2114,6 +2142,7 @@ export type ThemeComponentTokens = {
|
|
|
2114
2142
|
link?: LinkTokens;
|
|
2115
2143
|
breadcrumbs?: BreadcrumbsTokens;
|
|
2116
2144
|
divider?: DividerTokens;
|
|
2145
|
+
pageHeader?: PageHeaderTokens;
|
|
2117
2146
|
menu?: MenuTokens;
|
|
2118
2147
|
modal?: ModalTokens;
|
|
2119
2148
|
confirmDialog?: ConfirmDialogTokens;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
gap: string;
|
|
3
|
+
contentGap: string;
|
|
4
|
+
breadcrumbGap: string;
|
|
5
|
+
actionsGap: string;
|
|
6
|
+
metaGap: string;
|
|
7
|
+
padding: string;
|
|
8
|
+
borderRadius: string;
|
|
9
|
+
borderColor: string;
|
|
10
|
+
backgroundColor: string;
|
|
11
|
+
textColor: string;
|
|
12
|
+
dividerColor: string;
|
|
13
|
+
titleFontSize: string;
|
|
14
|
+
titleLineHeight: string;
|
|
15
|
+
titleFontWeight: string;
|
|
16
|
+
subtitleFontSize: string;
|
|
17
|
+
subtitleColor: string;
|
|
18
|
+
small: {
|
|
19
|
+
padding: string;
|
|
20
|
+
titleFontSize: string;
|
|
21
|
+
subtitleFontSize: string;
|
|
22
|
+
};
|
|
23
|
+
large: {
|
|
24
|
+
padding: string;
|
|
25
|
+
titleFontSize: string;
|
|
26
|
+
subtitleFontSize: string;
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
export default _default;
|
|
@@ -675,6 +675,34 @@ declare const _default: {
|
|
|
675
675
|
labelPadding: string;
|
|
676
676
|
labelFontSize: string;
|
|
677
677
|
};
|
|
678
|
+
pageHeader: {
|
|
679
|
+
gap: string;
|
|
680
|
+
contentGap: string;
|
|
681
|
+
breadcrumbGap: string;
|
|
682
|
+
actionsGap: string;
|
|
683
|
+
metaGap: string;
|
|
684
|
+
padding: string;
|
|
685
|
+
borderRadius: string;
|
|
686
|
+
borderColor: string;
|
|
687
|
+
backgroundColor: string;
|
|
688
|
+
textColor: string;
|
|
689
|
+
dividerColor: string;
|
|
690
|
+
titleFontSize: string;
|
|
691
|
+
titleLineHeight: string;
|
|
692
|
+
titleFontWeight: string;
|
|
693
|
+
subtitleFontSize: string;
|
|
694
|
+
subtitleColor: string;
|
|
695
|
+
small: {
|
|
696
|
+
padding: string;
|
|
697
|
+
titleFontSize: string;
|
|
698
|
+
subtitleFontSize: string;
|
|
699
|
+
};
|
|
700
|
+
large: {
|
|
701
|
+
padding: string;
|
|
702
|
+
titleFontSize: string;
|
|
703
|
+
subtitleFontSize: string;
|
|
704
|
+
};
|
|
705
|
+
};
|
|
678
706
|
menu: {
|
|
679
707
|
iconGap: string;
|
|
680
708
|
submenuOffset: string;
|