@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.
@@ -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;
@@ -0,0 +1,10 @@
1
+ declare const _default: {
2
+ paddingY: string;
3
+ paddingYSm: string;
4
+ paddingYLg: string;
5
+ backgroundColorSurface: string;
6
+ backgroundColorMuted: string;
7
+ backgroundColorElevated: string;
8
+ borderColor: string;
9
+ };
10
+ export default _default;
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codemonster-ru/vueforge",
3
- "version": "0.73.0",
3
+ "version": "0.74.0",
4
4
  "description": "Open source UI components for Vue.js.",
5
5
  "license": "MIT",
6
6
  "author": "Kirill Kolesnikov",