@central-design-system/components 3.0.0-alpha.6 → 3.0.0-alpha.7

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.
@@ -202,6 +202,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
202
202
  validationRef: import("vue").Ref<import("vue").DefineComponent<{
203
203
  'onClick:prepend': PropType<(...args: any[]) => any>;
204
204
  'onClick:append': PropType<(...args: any[]) => any>;
205
+ size: {
206
+ type: PropType<"xs" | "sm" | "md" | "lg" | "xl">;
207
+ default: string;
208
+ available: readonly ["xs", "sm", "md", "lg", "xl"];
209
+ validator: (value: "xs" | "sm" | "md" | "lg" | "xl") => boolean;
210
+ };
205
211
  readonly: {
206
212
  type: PropType<boolean>;
207
213
  default: boolean;
@@ -299,15 +305,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
299
305
  hasPrepend: import("vue").ComputedRef<boolean>;
300
306
  hasAppend: import("vue").ComputedRef<boolean>;
301
307
  hasDefault: import("vue").ComputedRef<boolean>;
302
- hasMessages: import("vue").ComputedRef<number | boolean>; /**
303
- * Событие клика по иконке перед значением поля
304
- */
308
+ hasMessages: import("vue").ComputedRef<number | boolean>;
305
309
  slotProps: import("vue").ComputedRef<import("../../composable").IInputSlot>;
306
310
  messagesId: import("vue").ComputedRef<string>;
307
311
  messages: import("vue").ComputedRef<string | string[]>;
308
312
  isValid: import("vue").ComputedRef<boolean | null>;
309
313
  validationClasses: import("vue").ComputedRef<Record<string, boolean>>;
310
314
  focusClasses: import("vue").ComputedRef<Record<string, boolean>>;
315
+ sizeClasses: import("vue").ComputedRef<string>;
311
316
  reset: () => void;
312
317
  resetValidation: () => void;
313
318
  validate: () => Promise<string[]>;
@@ -318,6 +323,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
318
323
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
319
324
  'onClick:prepend': PropType<(...args: any[]) => any>;
320
325
  'onClick:append': PropType<(...args: any[]) => any>;
326
+ size: {
327
+ type: PropType<"xs" | "sm" | "md" | "lg" | "xl">;
328
+ default: string;
329
+ available: readonly ["xs", "sm", "md", "lg", "xl"];
330
+ validator: (value: "xs" | "sm" | "md" | "lg" | "xl") => boolean;
331
+ };
321
332
  readonly: {
322
333
  type: PropType<boolean>;
323
334
  default: boolean;
@@ -417,6 +428,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
417
428
  description: string;
418
429
  disabled: boolean;
419
430
  value: any;
431
+ size: "xs" | "sm" | "md" | "lg" | "xl";
420
432
  error: boolean;
421
433
  prependIcon: "link" | "filters" | "search" | "add" | "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" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "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" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube";
422
434
  appendIcon: "link" | "filters" | "search" | "add" | "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" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "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" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube";
@@ -1,5 +1,11 @@
1
1
  export declare const componentName = "CdsTextInput";
2
2
  declare const _sfc_main: import("vue").DefineComponent<{
3
+ size: {
4
+ type: import("vue").PropType<"xs" | "sm" | "md" | "lg" | "xl">;
5
+ default: string;
6
+ available: readonly ["xs", "sm", "md", "lg", "xl"];
7
+ validator: (value: "xs" | "sm" | "md" | "lg" | "xl") => boolean;
8
+ };
3
9
  loading: {
4
10
  type: import("vue").PropType<boolean>;
5
11
  default: boolean;
@@ -17,6 +23,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
17
23
  default: boolean;
18
24
  };
19
25
  'onClick:prepend': {
26
+ /**
27
+ * Событие очистки поля ввода
28
+ */
20
29
  type: import("vue").PropType<(...args: any[]) => any>;
21
30
  default: undefined;
22
31
  };
@@ -39,7 +48,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
39
48
  default: boolean;
40
49
  };
41
50
  errorMessages: {
42
- type: import("vue").PropType<string | string[]>;
51
+ type: import("vue").PropType<string | string[]>; /**
52
+ * Событие клика по иконке внутри элемента после значения поля
53
+ */
43
54
  default: () => never[];
44
55
  };
45
56
  maxErrors: {
@@ -89,7 +100,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
89
100
  default: null;
90
101
  };
91
102
  messages: {
92
- type: import("vue").PropType<string | string[]>;
103
+ type: import("vue").PropType<string | string[]>; /**
104
+ * Событие клика по иконке перед значением поля
105
+ */
93
106
  default: () => never[];
94
107
  };
95
108
  persistentMessages: {
@@ -114,7 +127,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
114
127
  };
115
128
  prependInnerIcon: {
116
129
  type: import("vue").PropType<"link" | "filters" | "search" | "add" | "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" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "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" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
117
- default: undefined;
130
+ default: undefined; /**
131
+ * Событие клика по полю ввода
132
+ */
118
133
  validator: (value: "link" | "filters" | "search" | "add" | "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" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "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" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
119
134
  };
120
135
  appendInnerIcon: {
@@ -161,6 +176,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
161
176
  validationRef: import("vue").Ref<import("vue").DefineComponent<{
162
177
  'onClick:prepend': import("vue").PropType<(...args: any[]) => any>;
163
178
  'onClick:append': import("vue").PropType<(...args: any[]) => any>;
179
+ size: {
180
+ type: import("vue").PropType<"xs" | "sm" | "md" | "lg" | "xl">;
181
+ default: string;
182
+ available: readonly ["xs", "sm", "md", "lg", "xl"];
183
+ validator: (value: "xs" | "sm" | "md" | "lg" | "xl") => boolean;
184
+ };
164
185
  readonly: {
165
186
  type: import("vue").PropType<boolean>;
166
187
  default: boolean;
@@ -178,7 +199,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
178
199
  default: boolean;
179
200
  };
180
201
  errorMessages: {
181
- type: import("vue").PropType<string | string[]>;
202
+ type: import("vue").PropType<string | string[]>; /**
203
+ * Событие клика по иконке внутри элемента после значения поля
204
+ */
182
205
  default: () => never[];
183
206
  };
184
207
  maxErrors: {
@@ -238,7 +261,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
238
261
  default: null;
239
262
  };
240
263
  messages: {
241
- type: import("vue").PropType<string | string[]>;
264
+ type: import("vue").PropType<string | string[]>; /**
265
+ * Событие клика по иконке перед значением поля
266
+ */
242
267
  default: () => never[];
243
268
  };
244
269
  persistentMessages: {
@@ -257,6 +282,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
257
282
  isValid: import("vue").ComputedRef<boolean | null>;
258
283
  validationClasses: import("vue").ComputedRef<Record<string, boolean>>;
259
284
  focusClasses: import("vue").ComputedRef<Record<string, boolean>>;
285
+ sizeClasses: import("vue").ComputedRef<string>;
260
286
  reset: () => void;
261
287
  resetValidation: () => void;
262
288
  validate: () => Promise<string[]>;
@@ -267,6 +293,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
267
293
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
268
294
  'onClick:prepend': import("vue").PropType<(...args: any[]) => any>;
269
295
  'onClick:append': import("vue").PropType<(...args: any[]) => any>;
296
+ size: {
297
+ type: import("vue").PropType<"xs" | "sm" | "md" | "lg" | "xl">;
298
+ default: string;
299
+ available: readonly ["xs", "sm", "md", "lg", "xl"];
300
+ validator: (value: "xs" | "sm" | "md" | "lg" | "xl") => boolean;
301
+ };
270
302
  readonly: {
271
303
  type: import("vue").PropType<boolean>;
272
304
  default: boolean;
@@ -284,7 +316,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
284
316
  default: boolean;
285
317
  };
286
318
  errorMessages: {
287
- type: import("vue").PropType<string | string[]>;
319
+ type: import("vue").PropType<string | string[]>; /**
320
+ * Событие клика по иконке внутри элемента после значения поля
321
+ */
288
322
  default: () => never[];
289
323
  };
290
324
  maxErrors: {
@@ -344,7 +378,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
344
378
  default: null;
345
379
  };
346
380
  messages: {
347
- type: import("vue").PropType<string | string[]>;
381
+ type: import("vue").PropType<string | string[]>; /**
382
+ * Событие клика по иконке перед значением поля
383
+ */
348
384
  default: () => never[];
349
385
  };
350
386
  persistentMessages: {
@@ -358,6 +394,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
358
394
  description: string;
359
395
  disabled: boolean;
360
396
  value: any;
397
+ size: "xs" | "sm" | "md" | "lg" | "xl";
361
398
  error: boolean;
362
399
  prependIcon: "link" | "filters" | "search" | "add" | "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" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "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" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube";
363
400
  appendIcon: "link" | "filters" | "search" | "add" | "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" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "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" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube";
@@ -382,6 +419,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
382
419
  readonly type?: "number" | "text" | "password" | "email" | "tel" | "url" | undefined;
383
420
  readonly disabled?: boolean | undefined;
384
421
  readonly value?: any;
422
+ readonly size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
385
423
  readonly error?: boolean | undefined;
386
424
  readonly readonly?: boolean | undefined;
387
425
  readonly loading?: boolean | undefined;
@@ -487,6 +525,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
487
525
  */
488
526
  'mousedown:control': (event: MouseEvent) => true;
489
527
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
528
+ size: {
529
+ type: import("vue").PropType<"xs" | "sm" | "md" | "lg" | "xl">;
530
+ default: string;
531
+ available: readonly ["xs", "sm", "md", "lg", "xl"];
532
+ validator: (value: "xs" | "sm" | "md" | "lg" | "xl") => boolean;
533
+ };
490
534
  loading: {
491
535
  type: import("vue").PropType<boolean>;
492
536
  default: boolean;
@@ -504,6 +548,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
504
548
  default: boolean;
505
549
  };
506
550
  'onClick:prepend': {
551
+ /**
552
+ * Событие очистки поля ввода
553
+ */
507
554
  type: import("vue").PropType<(...args: any[]) => any>;
508
555
  default: undefined;
509
556
  };
@@ -526,7 +573,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
526
573
  default: boolean;
527
574
  };
528
575
  errorMessages: {
529
- type: import("vue").PropType<string | string[]>;
576
+ type: import("vue").PropType<string | string[]>; /**
577
+ * Событие клика по иконке внутри элемента после значения поля
578
+ */
530
579
  default: () => never[];
531
580
  };
532
581
  maxErrors: {
@@ -576,7 +625,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
576
625
  default: null;
577
626
  };
578
627
  messages: {
579
- type: import("vue").PropType<string | string[]>;
628
+ type: import("vue").PropType<string | string[]>; /**
629
+ * Событие клика по иконке перед значением поля
630
+ */
580
631
  default: () => never[];
581
632
  };
582
633
  persistentMessages: {
@@ -601,7 +652,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
601
652
  };
602
653
  prependInnerIcon: {
603
654
  type: import("vue").PropType<"link" | "filters" | "search" | "add" | "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" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "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" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
604
- default: undefined;
655
+ default: undefined; /**
656
+ * Событие клика по полю ввода
657
+ */
605
658
  validator: (value: "link" | "filters" | "search" | "add" | "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" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "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" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
606
659
  };
607
660
  appendInnerIcon: {
@@ -654,6 +707,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
654
707
  description: string;
655
708
  disabled: boolean;
656
709
  value: any;
710
+ size: "xs" | "sm" | "md" | "lg" | "xl";
657
711
  error: boolean;
658
712
  prependIcon: "link" | "filters" | "search" | "add" | "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" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "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" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube";
659
713
  appendIcon: "link" | "filters" | "search" | "add" | "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" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "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" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@central-design-system/components",
3
- "version": "3.0.0-alpha.6",
3
+ "version": "3.0.0-alpha.7",
4
4
  "description": "Central Design System on the Vue 3.0 and TypeScript",
5
5
  "author": "magersoft",
6
6
  "license": "ISC",
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Automatically generated by CDS CLI
3
- * Generated on 6/1/2023, 2:19:29 PM
3
+ * Generated on 6/2/2023, 9:34:06 AM
4
4
  **/
5
5
 
6
6
  /**
@@ -14,6 +14,7 @@
14
14
  position: relative;
15
15
  list-style-type: none;
16
16
  border: 0;
17
+ text-align: left;
17
18
  counter-increment: listitem;
18
19
  margin: 0 0 $cds-spacing-xxs $cds-spacing-xs;
19
20
  padding: 0 0 0 $cds-spacing-xs;