@central-design-system/components 3.0.0-beta.21 → 3.0.0-beta.22

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.
@@ -10,11 +10,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
10
10
  type: PropType<boolean>;
11
11
  default: boolean;
12
12
  };
13
- variant: {
14
- type: PropType<"default" | "important">;
15
- default: string;
16
- validator: (value: "default" | "important") => boolean;
17
- };
18
13
  /**
19
14
  * Число для счетчика
20
15
  */
@@ -22,6 +17,13 @@ declare const _sfc_main: import("vue").DefineComponent<{
22
17
  type: PropType<string | number | undefined>;
23
18
  default: undefined;
24
19
  };
20
+ /**
21
+ * Ограничение счетчика до 99+
22
+ */
23
+ limited: {
24
+ type: PropType<boolean>;
25
+ default: boolean;
26
+ };
25
27
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
26
28
  theme: {
27
29
  type: PropType<string>;
@@ -32,11 +34,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
32
34
  type: PropType<boolean>;
33
35
  default: boolean;
34
36
  };
35
- variant: {
36
- type: PropType<"default" | "important">;
37
- default: string;
38
- validator: (value: "default" | "important") => boolean;
39
- };
40
37
  /**
41
38
  * Число для счетчика
42
39
  */
@@ -44,10 +41,17 @@ declare const _sfc_main: import("vue").DefineComponent<{
44
41
  type: PropType<string | number | undefined>;
45
42
  default: undefined;
46
43
  };
44
+ /**
45
+ * Ограничение счетчика до 99+
46
+ */
47
+ limited: {
48
+ type: PropType<boolean>;
49
+ default: boolean;
50
+ };
47
51
  }>>, {
48
52
  invertColor: boolean;
49
53
  theme: string;
50
- variant: "default" | "important";
51
54
  count: string | number | undefined;
55
+ limited: boolean;
52
56
  }>;
53
57
  export default _sfc_main;
@@ -118,9 +118,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
118
118
  theme: string;
119
119
  modelValue: any;
120
120
  readonly: boolean;
121
- variant: "default" | "accordion";
122
121
  appearance: "transparent" | "primary" | "secondary";
123
122
  selectedClass: string;
124
123
  max: number;
124
+ variant: "default" | "accordion";
125
125
  }>;
126
126
  export default _sfc_main;
@@ -426,7 +426,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
426
426
  transition: NonNullable<string | boolean | (import("vue").TransitionProps & {
427
427
  component?: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | undefined;
428
428
  })>;
429
- variant: "default" | "important";
430
429
  attach: string | boolean | Element;
431
430
  contained: boolean;
432
431
  persistent: boolean;
@@ -455,6 +454,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
455
454
  maxWidth: string | number;
456
455
  minHeight: string | number;
457
456
  minWidth: string | number;
457
+ variant: "default" | "important";
458
458
  customIcon: "search" | "link" | "list" | "filters" | "add" | "administrator" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "insert" | "list-search" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube" | undefined;
459
459
  closable: boolean;
460
460
  closeLabel: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@central-design-system/components",
3
- "version": "3.0.0-beta.21",
3
+ "version": "3.0.0-beta.22",
4
4
  "description": "Central Design System on the Vue 3.0 and TypeScript",
5
5
  "author": "magersoft",
6
6
  "license": "ISC",