@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.
@@ -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;
@@ -0,0 +1,7 @@
1
+ declare const _default: {
2
+ gap: string;
3
+ alignItems: string;
4
+ justifyContent: string;
5
+ wrap: string;
6
+ };
7
+ export default _default;
@@ -254,6 +254,12 @@ declare const _default: {
254
254
  justifyContent: string;
255
255
  wrap: string;
256
256
  };
257
+ inline: {
258
+ gap: string;
259
+ alignItems: string;
260
+ justifyContent: string;
261
+ wrap: string;
262
+ };
257
263
  input: {
258
264
  gap: string;
259
265
  fontSize: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codemonster-ru/vueforge",
3
- "version": "0.76.0",
3
+ "version": "0.77.0",
4
4
  "description": "Open source UI components for Vue.js.",
5
5
  "license": "MIT",
6
6
  "author": "Kirill Kolesnikov",