@codemonster-ru/vueforge 0.73.0 → 0.74.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 +34 -3312
- package/dist/index.css +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.ts.mjs +1376 -1342
- package/dist/index.ts.umd.js +4 -4
- package/dist/package/components/__tests__/section.test.d.ts +1 -0
- package/dist/package/components/section.vue.d.ts +29 -0
- package/dist/package/config/theme-core.d.ts +10 -0
- package/dist/package/themes/default/components/section.d.ts +10 -0
- package/dist/package/themes/default/index.d.ts +9 -0
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
type Background = 'transparent' | 'surface' | 'muted' | 'elevated';
|
|
2
|
+
interface Props {
|
|
3
|
+
as?: string;
|
|
4
|
+
paddingY?: string;
|
|
5
|
+
background?: Background;
|
|
6
|
+
bordered?: boolean;
|
|
7
|
+
}
|
|
8
|
+
declare function __VLS_template(): {
|
|
9
|
+
attrs: Partial<{}>;
|
|
10
|
+
slots: {
|
|
11
|
+
default?(_: {}): any;
|
|
12
|
+
};
|
|
13
|
+
refs: {};
|
|
14
|
+
rootEl: any;
|
|
15
|
+
};
|
|
16
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
17
|
+
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
18
|
+
as: string;
|
|
19
|
+
paddingY: string;
|
|
20
|
+
background: Background;
|
|
21
|
+
bordered: boolean;
|
|
22
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
23
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
24
|
+
export default _default;
|
|
25
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
26
|
+
new (): {
|
|
27
|
+
$slots: S;
|
|
28
|
+
};
|
|
29
|
+
};
|
|
@@ -42,6 +42,15 @@ export type ContainerTokens = {
|
|
|
42
42
|
paddingXSm?: string;
|
|
43
43
|
paddingXLg?: string;
|
|
44
44
|
};
|
|
45
|
+
export type SectionTokens = {
|
|
46
|
+
paddingY?: string;
|
|
47
|
+
paddingYSm?: string;
|
|
48
|
+
paddingYLg?: string;
|
|
49
|
+
backgroundColorSurface?: string;
|
|
50
|
+
backgroundColorMuted?: string;
|
|
51
|
+
backgroundColorElevated?: string;
|
|
52
|
+
borderColor?: string;
|
|
53
|
+
};
|
|
45
54
|
export type CheckboxTokens = {
|
|
46
55
|
size?: string;
|
|
47
56
|
gap?: string;
|
|
@@ -2131,6 +2140,7 @@ export type ThemeComponentTokens = {
|
|
|
2131
2140
|
buttonGroup?: ButtonGroupTokens;
|
|
2132
2141
|
card?: CardTokens;
|
|
2133
2142
|
container?: ContainerTokens;
|
|
2143
|
+
section?: SectionTokens;
|
|
2134
2144
|
checkbox?: CheckboxTokens;
|
|
2135
2145
|
radio?: RadioTokens;
|
|
2136
2146
|
tabs?: TabsTokens;
|
|
@@ -227,6 +227,15 @@ declare const _default: {
|
|
|
227
227
|
paddingXSm: string;
|
|
228
228
|
paddingXLg: string;
|
|
229
229
|
};
|
|
230
|
+
section: {
|
|
231
|
+
paddingY: string;
|
|
232
|
+
paddingYSm: string;
|
|
233
|
+
paddingYLg: string;
|
|
234
|
+
backgroundColorSurface: string;
|
|
235
|
+
backgroundColorMuted: string;
|
|
236
|
+
backgroundColorElevated: string;
|
|
237
|
+
borderColor: string;
|
|
238
|
+
};
|
|
230
239
|
input: {
|
|
231
240
|
gap: string;
|
|
232
241
|
fontSize: string;
|