@codemonster-ru/vueforge 0.76.0 → 0.77.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 +1 -1
- package/dist/index.css +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.ts.mjs +629 -593
- package/dist/index.ts.umd.js +4 -4
- package/dist/package/components/__tests__/inline.test.d.ts +1 -0
- package/dist/package/components/inline.vue.d.ts +33 -0
- package/dist/package/config/theme-core.d.ts +7 -0
- package/dist/package/themes/default/components/inline.d.ts +7 -0
- package/dist/package/themes/default/index.d.ts +6 -0
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
type Align = 'start' | 'center' | 'end' | 'stretch';
|
|
2
|
+
type Justify = 'start' | 'center' | 'end' | 'space-between' | 'space-around' | 'space-evenly';
|
|
3
|
+
type Wrap = 'nowrap' | 'wrap' | 'wrap-reverse';
|
|
4
|
+
interface Props {
|
|
5
|
+
as?: string;
|
|
6
|
+
gap?: string;
|
|
7
|
+
align?: Align;
|
|
8
|
+
justify?: Justify;
|
|
9
|
+
wrap?: Wrap;
|
|
10
|
+
}
|
|
11
|
+
declare function __VLS_template(): {
|
|
12
|
+
attrs: Partial<{}>;
|
|
13
|
+
slots: {
|
|
14
|
+
default?(_: {}): any;
|
|
15
|
+
};
|
|
16
|
+
refs: {};
|
|
17
|
+
rootEl: any;
|
|
18
|
+
};
|
|
19
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
20
|
+
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
21
|
+
as: string;
|
|
22
|
+
gap: string;
|
|
23
|
+
align: Align;
|
|
24
|
+
justify: Justify;
|
|
25
|
+
wrap: Wrap;
|
|
26
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
27
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
28
|
+
export default _default;
|
|
29
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
30
|
+
new (): {
|
|
31
|
+
$slots: S;
|
|
32
|
+
};
|
|
33
|
+
};
|
|
@@ -69,6 +69,12 @@ export type StackTokens = {
|
|
|
69
69
|
justifyContent?: string;
|
|
70
70
|
wrap?: string;
|
|
71
71
|
};
|
|
72
|
+
export type InlineTokens = {
|
|
73
|
+
gap?: string;
|
|
74
|
+
alignItems?: string;
|
|
75
|
+
justifyContent?: string;
|
|
76
|
+
wrap?: string;
|
|
77
|
+
};
|
|
72
78
|
export type CheckboxTokens = {
|
|
73
79
|
size?: string;
|
|
74
80
|
gap?: string;
|
|
@@ -2161,6 +2167,7 @@ export type ThemeComponentTokens = {
|
|
|
2161
2167
|
section?: SectionTokens;
|
|
2162
2168
|
grid?: GridTokens;
|
|
2163
2169
|
stack?: StackTokens;
|
|
2170
|
+
inline?: InlineTokens;
|
|
2164
2171
|
checkbox?: CheckboxTokens;
|
|
2165
2172
|
radio?: RadioTokens;
|
|
2166
2173
|
tabs?: TabsTokens;
|