@codemonster-ru/vueforge 0.75.0 → 0.76.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 {};
@@ -34,6 +34,7 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
34
34
  }>, {
35
35
  disabled: boolean;
36
36
  size: FilterSize;
37
+ wrap: boolean;
37
38
  variant: FilterVariant;
38
39
  modelValue: FilterModel;
39
40
  clearable: boolean;
@@ -44,6 +45,5 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
44
45
  clearLabel: string;
45
46
  allowEmpty: boolean;
46
47
  clearText: string;
47
- wrap: boolean;
48
48
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
49
49
  export default _default;
@@ -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
+ };
@@ -63,6 +63,12 @@ export type GridTokens = {
63
63
  breakpointLg?: string;
64
64
  breakpointXl?: string;
65
65
  };
66
+ export type StackTokens = {
67
+ gap?: string;
68
+ alignItems?: string;
69
+ justifyContent?: string;
70
+ wrap?: string;
71
+ };
66
72
  export type CheckboxTokens = {
67
73
  size?: string;
68
74
  gap?: string;
@@ -2154,6 +2160,7 @@ export type ThemeComponentTokens = {
2154
2160
  container?: ContainerTokens;
2155
2161
  section?: SectionTokens;
2156
2162
  grid?: GridTokens;
2163
+ stack?: StackTokens;
2157
2164
  checkbox?: CheckboxTokens;
2158
2165
  radio?: RadioTokens;
2159
2166
  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;
@@ -248,6 +248,12 @@ declare const _default: {
248
248
  backgroundColorElevated: string;
249
249
  borderColor: string;
250
250
  };
251
+ stack: {
252
+ gap: string;
253
+ alignItems: string;
254
+ justifyContent: string;
255
+ wrap: string;
256
+ };
251
257
  input: {
252
258
  gap: string;
253
259
  fontSize: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codemonster-ru/vueforge",
3
- "version": "0.75.0",
3
+ "version": "0.76.0",
4
4
  "description": "Open source UI components for Vue.js.",
5
5
  "license": "MIT",
6
6
  "author": "Kirill Kolesnikov",