@codemonster-ru/vueforge 0.68.0 → 0.69.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,32 @@
1
+ type Orientation = 'horizontal' | 'vertical';
2
+ type Variant = 'solid' | 'dashed' | 'dotted';
3
+ interface Props {
4
+ orientation?: Orientation;
5
+ variant?: Variant;
6
+ inset?: boolean;
7
+ label?: string;
8
+ ariaLabel?: string;
9
+ }
10
+ declare function __VLS_template(): {
11
+ attrs: Partial<{}>;
12
+ slots: {
13
+ default?(_: {}): any;
14
+ };
15
+ refs: {};
16
+ rootEl: HTMLDivElement;
17
+ };
18
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
19
+ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
20
+ label: string;
21
+ orientation: Orientation;
22
+ variant: Variant;
23
+ ariaLabel: string;
24
+ inset: boolean;
25
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
26
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
27
+ export default _default;
28
+ type __VLS_WithTemplateSlots<T, S> = T & {
29
+ new (): {
30
+ $slots: S;
31
+ };
32
+ };
@@ -503,6 +503,16 @@ export type BreadcrumbsTokens = {
503
503
  separatorColor?: string;
504
504
  disabledOpacity?: string;
505
505
  };
506
+ export type DividerTokens = {
507
+ color?: string;
508
+ textColor?: string;
509
+ thickness?: string;
510
+ minLength?: string;
511
+ gap?: string;
512
+ inset?: string;
513
+ labelPadding?: string;
514
+ labelFontSize?: string;
515
+ };
506
516
  export type MenuTokens = {
507
517
  iconGap?: string;
508
518
  submenuOffset?: string;
@@ -2061,6 +2071,7 @@ export type ThemeComponentTokens = {
2061
2071
  fileUpload?: FileUploadTokens;
2062
2072
  link?: LinkTokens;
2063
2073
  breadcrumbs?: BreadcrumbsTokens;
2074
+ divider?: DividerTokens;
2064
2075
  menu?: MenuTokens;
2065
2076
  modal?: ModalTokens;
2066
2077
  confirmDialog?: ConfirmDialogTokens;
@@ -0,0 +1,11 @@
1
+ declare const _default: {
2
+ color: string;
3
+ textColor: string;
4
+ thickness: string;
5
+ minLength: string;
6
+ gap: string;
7
+ inset: string;
8
+ labelPadding: string;
9
+ labelFontSize: string;
10
+ };
11
+ export default _default;
@@ -660,6 +660,16 @@ declare const _default: {
660
660
  separatorColor: string;
661
661
  disabledOpacity: string;
662
662
  };
663
+ divider: {
664
+ color: string;
665
+ textColor: string;
666
+ thickness: string;
667
+ minLength: string;
668
+ gap: string;
669
+ inset: string;
670
+ labelPadding: string;
671
+ labelFontSize: string;
672
+ };
663
673
  menu: {
664
674
  iconGap: string;
665
675
  submenuOffset: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codemonster-ru/vueforge",
3
- "version": "0.68.0",
3
+ "version": "0.69.0",
4
4
  "description": "Open source UI components for Vue.js.",
5
5
  "license": "MIT",
6
6
  "author": "Kirill Kolesnikov",