@semantic-components/ui 0.36.0 → 0.38.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.
Files changed (169) hide show
  1. package/fesm2022/semantic-components-ui.mjs +8211 -5152
  2. package/fesm2022/semantic-components-ui.mjs.map +1 -1
  3. package/index.d.ts +18 -3
  4. package/lib/components/aspect-ratio/aspect-ratio.d.ts +5 -13
  5. package/lib/components/badge/badge.d.ts +4 -4
  6. package/lib/components/button/button-base.d.ts +7 -5
  7. package/lib/components/button/index.d.ts +0 -1
  8. package/lib/components/calendar/calendar-header.d.ts +14 -0
  9. package/lib/components/calendar/calendar-utils.d.ts +6 -0
  10. package/lib/components/calendar/calendar.d.ts +32 -27
  11. package/lib/components/calendar/day-button.d.ts +9 -0
  12. package/lib/components/calendar/day-selector.d.ts +16 -0
  13. package/lib/components/calendar/month-selector.d.ts +12 -0
  14. package/lib/components/calendar/types.d.ts +6 -0
  15. package/lib/components/calendar/utils.d.ts +6 -0
  16. package/lib/components/calendar/year-selector.d.ts +10 -0
  17. package/lib/components/card/card-content.d.ts +3 -3
  18. package/lib/components/card/card-description.d.ts +3 -3
  19. package/lib/components/card/card-footer.d.ts +3 -3
  20. package/lib/components/card/card-header.d.ts +3 -3
  21. package/lib/components/card/card-title.d.ts +3 -3
  22. package/lib/components/card/card.d.ts +3 -3
  23. package/lib/components/carousel/carousel-next.d.ts +6 -6
  24. package/lib/components/carousel/carousel-previous.d.ts +6 -6
  25. package/lib/components/carousel/carousel.d.ts +9 -6
  26. package/lib/components/checkbox/checkbox-container.d.ts +7 -0
  27. package/lib/components/checkbox/checkbox-field.d.ts +13 -0
  28. package/lib/components/checkbox/checkbox.d.ts +3 -8
  29. package/lib/components/checkbox/checkbox2.d.ts +17 -0
  30. package/lib/components/checkbox/index.d.ts +3 -0
  31. package/lib/components/{progress → circular-progress}/circular-progress.d.ts +6 -10
  32. package/lib/components/circular-progress/index.d.ts +1 -0
  33. package/lib/components/clock-picker/clock-picker.d.ts +3 -3
  34. package/lib/components/code-highlighter/code-highlighter.d.ts +6 -7
  35. package/lib/components/code-highlighter/shiki.service.d.ts +4 -0
  36. package/lib/components/color-picker/color-picker.d.ts +18 -0
  37. package/lib/components/color-picker/index.d.ts +1 -0
  38. package/lib/components/combobox/combobox.d.ts +3 -3
  39. package/lib/components/comments/comment.d.ts +1 -1
  40. package/lib/components/comments/comments.d.ts +3 -3
  41. package/lib/components/date-picker/date-picker-toggle.d.ts +10 -0
  42. package/lib/components/date-picker/date-picker.d.ts +28 -20
  43. package/lib/components/date-picker/index.d.ts +1 -0
  44. package/lib/components/date-range-picker/date-range-picker.d.ts +47 -0
  45. package/lib/components/date-range-picker/index.d.ts +1 -0
  46. package/lib/components/dual-range-slider/dual-range-slider.d.ts +15 -0
  47. package/lib/components/dual-range-slider/index.d.ts +1 -0
  48. package/lib/components/editor/editor.d.ts +1 -1
  49. package/lib/components/editor/index.d.ts +27 -0
  50. package/lib/components/fieldset/description.d.ts +7 -0
  51. package/lib/components/fieldset/error-message.d.ts +5 -0
  52. package/lib/components/fieldset/field.d.ts +13 -0
  53. package/lib/components/fieldset/fieldset.d.ts +7 -0
  54. package/lib/components/fieldset/index.d.ts +5 -0
  55. package/lib/components/fieldset/legend.d.ts +7 -0
  56. package/lib/components/file-upload/file-upload.d.ts +28 -5
  57. package/lib/components/file-upload/index.d.ts +0 -2
  58. package/lib/components/full-calendar/full-calendar.d.ts +1 -1
  59. package/lib/components/input/input.d.ts +5 -1
  60. package/lib/components/input/plain-input.d.ts +1 -1
  61. package/lib/components/input-number/index.d.ts +3 -0
  62. package/lib/components/input-number/input-number-decrementer.d.ts +9 -0
  63. package/lib/components/input-number/input-number-incrementer.d.ts +9 -0
  64. package/lib/components/input-number/input-number.d.ts +11 -0
  65. package/lib/components/input-number-group/index.d.ts +1 -0
  66. package/lib/components/input-number-group/input-number-group.d.ts +11 -0
  67. package/lib/components/input-otp/input-otp-slot.d.ts +19 -11
  68. package/lib/components/input-otp/input-otp.d.ts +19 -21
  69. package/lib/components/input-password/input-password.d.ts +8 -8
  70. package/lib/components/label/label.d.ts +3 -1
  71. package/lib/components/link/link.d.ts +2 -1
  72. package/lib/components/multi-select/index.d.ts +1 -0
  73. package/lib/components/multi-select/multi-select.d.ts +41 -0
  74. package/lib/components/on-this-page/index.d.ts +1 -0
  75. package/lib/components/on-this-page/on-this-page.d.ts +31 -0
  76. package/lib/components/paginator/index.d.ts +10 -0
  77. package/lib/components/paginator/page-size-select.d.ts +7 -0
  78. package/lib/components/paginator/pagination-ellipsis.d.ts +7 -0
  79. package/lib/components/paginator/pagination-first.d.ts +11 -0
  80. package/lib/components/paginator/pagination-last.d.ts +10 -0
  81. package/lib/components/paginator/pagination-link.d.ts +14 -0
  82. package/lib/components/paginator/pagination-list.d.ts +7 -0
  83. package/lib/components/paginator/pagination-next.d.ts +11 -0
  84. package/lib/components/paginator/pagination-previous.d.ts +12 -0
  85. package/lib/components/paginator/paginator-container.d.ts +7 -0
  86. package/lib/components/paginator/paginator.d.ts +8 -18
  87. package/lib/components/paginator/paginator.service.d.ts +27 -0
  88. package/lib/components/progress/index.d.ts +0 -1
  89. package/lib/components/progress/progress.d.ts +1 -3
  90. package/lib/components/range-calendar/days-selector.d.ts +19 -0
  91. package/lib/components/range-calendar/index.d.ts +1 -0
  92. package/lib/components/range-calendar/range-calendar.d.ts +41 -0
  93. package/lib/components/range-calendar/types.d.ts +5 -0
  94. package/lib/components/range-slider/index.d.ts +1 -0
  95. package/lib/components/range-slider/range-slider.d.ts +10 -0
  96. package/lib/components/rating/index.d.ts +1 -0
  97. package/lib/components/rating/rating.d.ts +23 -0
  98. package/lib/components/scroll-area/hover-scrollbar.component.d.ts +14 -0
  99. package/lib/components/scroll-area/index.d.ts +1 -0
  100. package/lib/components/scroll-area/scroll-area.d.ts +4 -4
  101. package/lib/components/scroll-spy/index.d.ts +1 -0
  102. package/lib/components/scroll-spy/scroll-spy.d.ts +12 -0
  103. package/lib/components/scroll-to-top/index.d.ts +2 -0
  104. package/lib/components/scroll-to-top/scroll-to-top-button.d.ts +10 -0
  105. package/lib/components/scroll-to-top/scroll-to-top-button2.d.ts +11 -0
  106. package/lib/components/scroll-to-top/scroll-to-top.d.ts +18 -0
  107. package/lib/components/select/option.d.ts +1 -2
  108. package/lib/components/sheet/sheet-close.d.ts +5 -6
  109. package/lib/components/sheet/sheet-container.d.ts +4 -4
  110. package/lib/components/sheet/sheet-trigger.d.ts +5 -5
  111. package/lib/components/sheet/sheet.d.ts +6 -7
  112. package/lib/components/sidebar/index.d.ts +1 -0
  113. package/lib/components/sidebar/sidebar-content.d.ts +7 -0
  114. package/lib/components/sidebar/sidebar-mobile.d.ts +10 -9
  115. package/lib/components/sidebar/sidebar-toggler.d.ts +7 -5
  116. package/lib/components/sidebar/sidebar.d.ts +4 -0
  117. package/lib/components/slider/slider.d.ts +8 -9
  118. package/lib/components/stepper/index.d.ts +2 -0
  119. package/lib/components/stepper/step.d.ts +9 -0
  120. package/lib/components/stepper/stepper.d.ts +11 -0
  121. package/lib/components/switch/switch.d.ts +11 -21
  122. package/lib/components/table/index.d.ts +2 -2
  123. package/lib/components/table/table-header-group.d.ts +7 -0
  124. package/lib/components/table/table-header.d.ts +1 -1
  125. package/lib/components/table-of-contents/index.d.ts +1 -0
  126. package/lib/components/table-of-contents/table-of-contents.d.ts +21 -0
  127. package/lib/components/time-picker/time-picker2.d.ts +2 -2
  128. package/lib/components/toast/index.d.ts +5 -1
  129. package/lib/components/toast/toast-action.d.ts +3 -3
  130. package/lib/components/toast/toast-close.d.ts +5 -3
  131. package/lib/components/toast/toast-container.d.ts +10 -0
  132. package/lib/components/toast/toast-content.d.ts +3 -3
  133. package/lib/components/toast/toast-description.d.ts +3 -3
  134. package/lib/components/toast/toast-id.d.ts +2 -0
  135. package/lib/components/toast/toast-title.d.ts +3 -3
  136. package/lib/components/toast/toast.d.ts +16 -5
  137. package/lib/components/toast/toast.service.d.ts +9 -0
  138. package/lib/components/toast/toaster.d.ts +23 -5
  139. package/lib/components/toggle-switch/index.d.ts +1 -0
  140. package/lib/components/toggle-switch/toggle-switch.d.ts +7 -0
  141. package/lib/components/touch-area/index.d.ts +1 -0
  142. package/lib/components/touch-area/touch-area.d.ts +7 -0
  143. package/package.json +4 -4
  144. package/styles/shiki-styles.css +1 -1
  145. package/styles/typography-styles.css +304 -0
  146. package/lib/components/button/cursor.d.ts +0 -10
  147. package/lib/components/calendar/month-days.d.ts +0 -19
  148. package/lib/components/calendar/month-year-header.d.ts +0 -9
  149. package/lib/components/calendar/util.d.ts +0 -5
  150. package/lib/components/chat/chat.d.ts +0 -5
  151. package/lib/components/chat/index.d.ts +0 -1
  152. package/lib/components/date-picker/date-input.d.ts +0 -9
  153. package/lib/components/file-upload/drop-zone.d.ts +0 -11
  154. package/lib/components/file-upload/file-card.d.ts +0 -12
  155. package/lib/components/file-upload/file-preview.d.ts +0 -7
  156. package/lib/components/file-upload/file-uploader.d.ts +0 -16
  157. package/lib/components/file-upload/file.d.ts +0 -4
  158. package/lib/components/file-upload/image.d.ts +0 -7
  159. package/lib/components/file-upload/single-file-uploader.d.ts +0 -18
  160. package/lib/components/file-upload/utils.d.ts +0 -4
  161. package/lib/components/input-otp/input-otp-handler.d.ts +0 -7
  162. package/lib/components/paginator/page-item.d.ts +0 -10
  163. package/lib/components/rtl/index.d.ts +0 -1
  164. package/lib/components/rtl/rtl.d.ts +0 -9
  165. package/lib/components/table/table-head.d.ts +0 -7
  166. package/lib/components/tel-input/form-field-custom-control.component.d.ts +0 -9
  167. package/lib/components/tel-input/index.d.ts +0 -2
  168. package/lib/components/tel-input/tel-input.component.d.ts +0 -70
  169. package/lib/components/toast/toast-example.d.ts +0 -5
@@ -1,5 +1,9 @@
1
1
  import { Highlighter } from 'shiki';
2
2
  import * as i0 from "@angular/core";
3
+ export declare const defaultThemes: {
4
+ light: string;
5
+ dark: string;
6
+ };
3
7
  export declare class ShikiService {
4
8
  private highlighter;
5
9
  initializeHighlighter(): Promise<Highlighter>;
@@ -0,0 +1,18 @@
1
+ import { OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ScColorPicker implements OnInit {
4
+ initialColor: string;
5
+ readonly colorChange: import("@angular/core").OutputEmitterRef<string>;
6
+ red: number;
7
+ green: number;
8
+ blue: number;
9
+ selectedColor: string;
10
+ presetColors: string[];
11
+ ngOnInit(): void;
12
+ setInitialColor(): void;
13
+ updateColor(): void;
14
+ componentToHex(c: number): string;
15
+ selectPresetColor(color: string): void;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<ScColorPicker, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScColorPicker, "sc-color-picker", never, { "initialColor": { "alias": "initialColor"; "required": false; }; }, { "colorChange": "colorChange"; }, never, never, true, never>;
18
+ }
@@ -0,0 +1 @@
1
+ export * from './color-picker';
@@ -1,4 +1,4 @@
1
- import { EventEmitter, OnInit } from '@angular/core';
1
+ import { OnInit } from '@angular/core';
2
2
  import { FormControl } from '@angular/forms';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class ScCombobox implements OnInit {
@@ -10,8 +10,8 @@ export declare class ScCombobox implements OnInit {
10
10
  readonly optionTemplate: import("@angular/core").InputSignal<any>;
11
11
  readonly loading: import("@angular/core").InputSignal<boolean>;
12
12
  readonly labelKey: import("@angular/core").InputSignal<string>;
13
- optionSelected: EventEmitter<any>;
14
- search: EventEmitter<string>;
13
+ readonly optionSelected: import("@angular/core").OutputEmitterRef<any>;
14
+ readonly search: import("@angular/core").OutputEmitterRef<string>;
15
15
  searchControl: FormControl<string | null>;
16
16
  isOpen: boolean;
17
17
  activeIndex: number;
@@ -1,7 +1,7 @@
1
1
  import { ScCommentModel } from './comment-model';
2
2
  import * as i0 from "@angular/core";
3
3
  export declare class ScComment {
4
- comment: import("@angular/core").InputSignal<ScCommentModel>;
4
+ readonly comment: import("@angular/core").InputSignal<ScCommentModel>;
5
5
  likeComment(comment: ScCommentModel): void;
6
6
  toggleReplyForm(comment: ScCommentModel): void;
7
7
  static ɵfac: i0.ɵɵFactoryDeclaration<ScComment, never>;
@@ -3,9 +3,9 @@ import { ScCommentModel, ScUserModel } from './comment-model';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class ScComments {
5
5
  private readonly fb;
6
- comments: import("@angular/core").InputSignal<ScCommentModel[]>;
7
- currentUser: import("@angular/core").InputSignal<ScUserModel>;
8
- commentForm: FormGroup;
6
+ readonly comments: import("@angular/core").InputSignal<ScCommentModel[]>;
7
+ readonly currentUser: import("@angular/core").InputSignal<ScUserModel>;
8
+ protected readonly commentForm: FormGroup;
9
9
  constructor();
10
10
  onSubmit(): void;
11
11
  static ɵfac: i0.ɵɵFactoryDeclaration<ScComments, never>;
@@ -0,0 +1,10 @@
1
+ import { ScButtonBase } from '../button';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ScDatePickerToggle extends ScButtonBase {
4
+ readonly variantInput: import("@angular/core").InputSignal<"outline" | "link" | "primary" | "destructive" | "secondary" | "ghost" | null | undefined>;
5
+ protected readonly class: import("@angular/core").Signal<string>;
6
+ readonly toggled: import("@angular/core").OutputEmitterRef<void>;
7
+ protected toggle(): void;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<ScDatePickerToggle, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScDatePickerToggle, "button[sc-date-picker-toggle]", never, { "variantInput": { "alias": "variant"; "required": false; "isSignal": true; }; }, { "toggled": "toggled"; }, never, ["*"], true, never>;
10
+ }
@@ -1,30 +1,38 @@
1
- import { OutputEmitterRef } from '@angular/core';
1
+ import { ControlValueAccessor } from '@angular/forms';
2
+ import { Temporal } from '@js-temporal/polyfill';
2
3
  import * as i0 from "@angular/core";
3
- export declare class ScDatePicker {
4
- class: import("@angular/core").InputSignal<string>;
5
- classes: import("@angular/core").Signal<string>;
4
+ export declare class ScDatePicker implements ControlValueAccessor {
5
+ readonly classInput: import("@angular/core").InputSignal<string>;
6
+ protected readonly class: import("@angular/core").Signal<string>;
7
+ readonly value: import("@angular/core").ModelSignal<Temporal.PlainDate | undefined>;
8
+ readonly minDate: import("@angular/core").InputSignal<Temporal.PlainDate | undefined>;
9
+ readonly maxDate: import("@angular/core").InputSignal<Temporal.PlainDate | undefined>;
10
+ private readonly localeId;
6
11
  private readonly host;
7
- private readonly _injector;
8
- private readonly _dir;
9
- private readonly _overlay;
10
- private readonly _isOpen;
11
- private readonly _input;
12
- private _overlayRef;
13
- private _portal;
14
- /** Emits when the datepicker is opened. */
15
- readonly opened: OutputEmitterRef<void>;
16
- /** Emits when the datepicker is closed. */
17
- readonly closed: OutputEmitterRef<void>;
18
- /** Emits when the user selects a date. */
19
- readonly selected: OutputEmitterRef<string>;
12
+ private readonly dir;
13
+ private readonly overlay;
14
+ private readonly isOpen;
15
+ private overlayRef;
16
+ private portal;
17
+ private readonly scDatePickerToggle;
18
+ private readonly scInput;
19
+ constructor();
20
20
  /** Opens the datepicker. */
21
21
  open(): void;
22
22
  /** Closes the datepicker. */
23
23
  close(): void;
24
24
  /** Creates an overlay reference for the datepicker panel. */
25
- private _getOverlayRef;
25
+ private getOverlayRef;
26
26
  /** Selects a specific date value. */
27
- protected _selectValue(value: string): void;
27
+ protected selectValue(value: Temporal.PlainDate): void;
28
+ onChange: (value: Temporal.PlainDate) => void;
29
+ onTouched: () => void;
30
+ writeValue(value: Temporal.PlainDate): void;
31
+ registerOnChange(fn: (value: Temporal.PlainDate) => void): void;
32
+ registerOnTouched(fn: () => void): void;
33
+ readonly disabledInput: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
34
+ readonly disabled: import("@angular/core").WritableSignal<boolean>;
35
+ setDisabledState?(isDisabled: boolean): void;
28
36
  static ɵfac: i0.ɵɵFactoryDeclaration<ScDatePicker, never>;
29
- static ɵcmp: i0.ɵɵComponentDeclaration<ScDatePicker, "sc-date-picker", never, { "class": { "alias": "class"; "required": false; "isSignal": true; }; }, { "opened": "opened"; "closed": "closed"; "selected": "selected"; }, never, never, true, never>;
37
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScDatePicker, "sc-date-picker", never, { "classInput": { "alias": "class"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "minDate": { "alias": "minDate"; "required": false; "isSignal": true; }; "maxDate": { "alias": "maxDate"; "required": false; "isSignal": true; }; "disabledInput": { "alias": "disabled"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; }, ["scDatePickerToggle", "scInput"], ["*"], true, never>;
30
38
  }
@@ -1 +1,2 @@
1
1
  export * from './date-picker';
2
+ export * from './date-picker-toggle';
@@ -0,0 +1,47 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { Temporal } from '@js-temporal/polyfill';
3
+ import * as i0 from "@angular/core";
4
+ export declare class ScDateRangePicker implements OnInit {
5
+ startDate: Temporal.PlainDate;
6
+ endDate: Temporal.PlainDate;
7
+ minDate: Temporal.PlainDate | null;
8
+ maxDate: Temporal.PlainDate | null;
9
+ dateRangeSelected: EventEmitter<{
10
+ startDate: Temporal.PlainDate;
11
+ endDate: Temporal.PlainDate;
12
+ }>;
13
+ currentMonth: Temporal.PlainYearMonth;
14
+ calendarDays: Array<{
15
+ date: Temporal.PlainDate;
16
+ isCurrentMonth: boolean;
17
+ isToday: boolean;
18
+ isSelected: boolean;
19
+ isInRange: boolean;
20
+ isDisabled: boolean;
21
+ }>;
22
+ weekdays: string[];
23
+ months: string[];
24
+ years: number[];
25
+ selectedStartDate: Temporal.PlainDate | null;
26
+ selectedEndDate: Temporal.PlainDate | null;
27
+ isSelectingEndDate: boolean;
28
+ showCalendar: boolean;
29
+ today: Temporal.PlainDate;
30
+ constructor();
31
+ ngOnInit(): void;
32
+ toggleCalendar(): void;
33
+ generateCalendarDays(): void;
34
+ prevMonth(): void;
35
+ nextMonth(): void;
36
+ setMonth(month: number): void;
37
+ setYear(year: number): void;
38
+ selectDate(date: Temporal.PlainDate, isDisabled: boolean): void;
39
+ applyDateRange(): void;
40
+ cancelSelection(): void;
41
+ setLastWeek(): void;
42
+ setLastMonth(): void;
43
+ setLastThreeMonths(): void;
44
+ formatDate(date: Temporal.PlainDate | null): string;
45
+ static ɵfac: i0.ɵɵFactoryDeclaration<ScDateRangePicker, never>;
46
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScDateRangePicker, "sc-date-range-picker", never, { "startDate": { "alias": "startDate"; "required": false; }; "endDate": { "alias": "endDate"; "required": false; }; "minDate": { "alias": "minDate"; "required": false; }; "maxDate": { "alias": "maxDate"; "required": false; }; }, { "dateRangeSelected": "dateRangeSelected"; }, never, never, true, never>;
47
+ }
@@ -0,0 +1 @@
1
+ export * from './date-range-picker';
@@ -0,0 +1,15 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class ScDualRangeSlider {
3
+ readonly min: import("@angular/core").InputSignal<number>;
4
+ readonly max: import("@angular/core").InputSignal<number>;
5
+ minValue: number;
6
+ maxValue: number;
7
+ readonly minValueChange: import("@angular/core").OutputEmitterRef<number>;
8
+ readonly maxValueChange: import("@angular/core").OutputEmitterRef<number>;
9
+ get minPercentage(): number;
10
+ get maxPercentage(): number;
11
+ onMinChange(event: Event): void;
12
+ onMaxChange(event: Event): void;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<ScDualRangeSlider, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScDualRangeSlider, "sc-dual-range-slider", never, { "min": { "alias": "min"; "required": false; "isSignal": true; }; "max": { "alias": "max"; "required": false; "isSignal": true; }; "minValue": { "alias": "minValue"; "required": false; }; "maxValue": { "alias": "maxValue"; "required": false; }; }, { "minValueChange": "minValueChange"; "maxValueChange": "maxValueChange"; }, never, never, true, never>;
15
+ }
@@ -0,0 +1 @@
1
+ export * from './dual-range-slider';
@@ -24,5 +24,5 @@ export declare class ScEditor implements ControlValueAccessor {
24
24
  setDisabledState?(isDisabled: boolean): void;
25
25
  setHtmlContent(htmlContent: string): void;
26
26
  static ɵfac: i0.ɵɵFactoryDeclaration<ScEditor, never>;
27
- static ɵcmp: i0.ɵɵComponentDeclaration<ScEditor, "sc-editor", never, { "class": { "alias": "class"; "required": false; "isSignal": true; }; "editorClass": { "alias": "editorClass"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
27
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScEditor, "sc-editor", never, { "class": { "alias": "class"; "required": false; "isSignal": true; }; "editorClass": { "alias": "editorClass"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
28
28
  }
@@ -1 +1,28 @@
1
1
  export * from './editor';
2
+ export * from './actions/editor-blockquote';
3
+ export * from './actions/editor-bold';
4
+ export * from './actions/editor-bullet-list';
5
+ export * from './actions/editor-code';
6
+ export * from './actions/editor-highlight';
7
+ export * from './actions/editor-horizontal-rule';
8
+ export * from './actions/editor-italic';
9
+ export * from './actions/editor-ordered-list';
10
+ export * from './actions/editor-paragraph';
11
+ export * from './actions/editor-redo';
12
+ export * from './actions/editor-strike';
13
+ export * from './actions/editor-text-align-center';
14
+ export * from './actions/editor-text-align-left';
15
+ export * from './actions/editor-text-align-right';
16
+ export * from './actions/editor-underline';
17
+ export * from './actions/editor-undo';
18
+ export * from './actions/editor-unset-link';
19
+ export * from './editor-group';
20
+ export * from './editor-toolbar';
21
+ export * from './extensions/extension-color';
22
+ export * from './extensions/extension-font-family';
23
+ export * from './extensions/extension-heading';
24
+ export * from './extensions/extension-image';
25
+ export * from './extensions/extension-link';
26
+ export * from './extensions/extension-table';
27
+ export * from './extensions/extension-text-style';
28
+ export * from './extensions/extension-youtube';
@@ -0,0 +1,7 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class ScDescription {
3
+ readonly classInput: import("@angular/core").InputSignal<string>;
4
+ protected readonly class: import("@angular/core").Signal<string>;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<ScDescription, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScDescription, "p[sc-description]", never, { "classInput": { "alias": "class"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
7
+ }
@@ -0,0 +1,5 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class ScErrorMessage {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<ScErrorMessage, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScErrorMessage, "sc-error-message", never, {}, {}, never, never, true, never>;
5
+ }
@@ -0,0 +1,13 @@
1
+ import { ScInput } from '../input';
2
+ import { ScLabel } from '../label';
3
+ import * as i0 from "@angular/core";
4
+ export declare class ScField {
5
+ readonly classInput: import("@angular/core").InputSignal<string>;
6
+ protected readonly class: import("@angular/core").Signal<string>;
7
+ readonly id: import("@angular/core").WritableSignal<string>;
8
+ readonly scLabel: import("@angular/core").Signal<ScLabel | undefined>;
9
+ readonly scInput: import("@angular/core").Signal<ScInput | undefined>;
10
+ constructor();
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<ScField, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScField, "sc-field", never, { "classInput": { "alias": "class"; "required": false; "isSignal": true; }; }, {}, ["scLabel", "scInput"], ["*"], true, never>;
13
+ }
@@ -0,0 +1,7 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class ScFieldset {
3
+ readonly classInput: import("@angular/core").InputSignal<string>;
4
+ protected readonly class: import("@angular/core").Signal<string>;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<ScFieldset, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScFieldset, "fieldset[sc-fieldset]", never, { "classInput": { "alias": "class"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
7
+ }
@@ -0,0 +1,5 @@
1
+ export * from './description';
2
+ export * from './error-message';
3
+ export * from './field';
4
+ export * from './fieldset';
5
+ export * from './legend';
@@ -0,0 +1,7 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class ScLegend {
3
+ readonly classInput: import("@angular/core").InputSignal<string>;
4
+ protected readonly class: import("@angular/core").Signal<string>;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<ScLegend, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScLegend, "legend[sc-legend]", never, { "classInput": { "alias": "class"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
7
+ }
@@ -1,9 +1,32 @@
1
+ import { HttpClient } from '@angular/common/http';
2
+ import { EventEmitter } from '@angular/core';
1
3
  import * as i0 from "@angular/core";
2
4
  export declare class ScFileUpload {
3
- readonly class: import("@angular/core").InputSignal<string>;
4
- protected readonly _class: import("@angular/core").Signal<string>;
5
- selectedFile: import("@angular/core").WritableSignal<unknown>;
6
- handleFileChange(event: Event): void;
5
+ private readonly http;
6
+ readonly classInput: import("@angular/core").InputSignal<string>;
7
+ protected readonly class: import("@angular/core").Signal<string>;
8
+ acceptedFileTypes: string;
9
+ maxFileSize: number;
10
+ multiple: boolean;
11
+ uploadUrl: string;
12
+ uploadComplete: EventEmitter<any>;
13
+ files: File[];
14
+ isDragging: boolean;
15
+ uploadProgress: number;
16
+ isUploading: boolean;
17
+ uploadError: string | null;
18
+ uploadSuccess: boolean;
19
+ constructor(http: HttpClient);
20
+ onFileSelected(event: any): void;
21
+ onDragOver(event: DragEvent): void;
22
+ onDragLeave(event: DragEvent): void;
23
+ onDrop(event: DragEvent): void;
24
+ processFiles(fileList: FileList): void;
25
+ uploadFiles(): void;
26
+ removeFile(index: number): void;
27
+ resetStatus(): void;
28
+ clearFiles(): void;
29
+ formatFileSize(bytes: number): string;
7
30
  static ɵfac: i0.ɵɵFactoryDeclaration<ScFileUpload, never>;
8
- static ɵcmp: i0.ɵɵComponentDeclaration<ScFileUpload, "sc-file-upload", never, { "class": { "alias": "class"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
31
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScFileUpload, "sc-file-upload", never, { "classInput": { "alias": "class"; "required": false; "isSignal": true; }; "acceptedFileTypes": { "alias": "acceptedFileTypes"; "required": false; }; "maxFileSize": { "alias": "maxFileSize"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "uploadUrl": { "alias": "uploadUrl"; "required": false; }; }, { "uploadComplete": "uploadComplete"; }, never, never, true, never>;
9
32
  }
@@ -1,3 +1 @@
1
1
  export * from './file-upload';
2
- export * from './file-uploader';
3
- export * from './single-file-uploader';
@@ -6,7 +6,7 @@ export declare class ScFullCalendar implements OnInit {
6
6
  currentDate: Date;
7
7
  currentMonth: number;
8
8
  currentYear: number;
9
- currentView: 'month' | 'week' | 'day';
9
+ readonly currentView: import("@angular/core").WritableSignal<"day" | "month" | "week">;
10
10
  daysInMonth: number[];
11
11
  weekdays: string[];
12
12
  events: {
@@ -5,6 +5,10 @@ export declare class ScInput {
5
5
  readonly classInput: import("@angular/core").InputSignal<string>;
6
6
  protected readonly class: import("@angular/core").Signal<string>;
7
7
  readonly value: import("@angular/core").ModelSignal<string>;
8
+ readonly idInput: import("@angular/core").InputSignal<string>;
9
+ readonly id: import("@angular/core").WritableSignal<string>;
10
+ private readonly host;
11
+ get nativeElement(): any;
8
12
  static ɵfac: i0.ɵɵFactoryDeclaration<ScInput, never>;
9
- static ɵcmp: i0.ɵɵComponentDeclaration<ScInput, "input[sc-input]", never, { "classInput": { "alias": "class"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; }, never, ["*"], true, [{ directive: typeof i1.ScPlainInput; inputs: { "value": "value"; }; outputs: { "valueChange": "valueChange"; }; }]>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScInput, "input[sc-input]", never, { "classInput": { "alias": "class"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "idInput": { "alias": "id"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; }, never, ["*"], true, [{ directive: typeof i1.ScPlainInput; inputs: { "value": "value"; }; outputs: { "valueChange": "valueChange"; }; }]>;
10
14
  }
@@ -4,5 +4,5 @@ export declare class ScPlainInput {
4
4
  readonly value: import("@angular/core").ModelSignal<string>;
5
5
  handleInput(): void;
6
6
  static ɵfac: i0.ɵɵFactoryDeclaration<ScPlainInput, never>;
7
- static ɵdir: i0.ɵɵDirectiveDeclaration<ScPlainInput, "input[sc-plain-input]", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; }, never, never, true, never>;
7
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ScPlainInput, never, never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; }, never, never, true, never>;
8
8
  }
@@ -0,0 +1,3 @@
1
+ export * from './input-number';
2
+ export * from './input-number-incrementer';
3
+ export * from './input-number-decrementer';
@@ -0,0 +1,9 @@
1
+ import { ScButtonBase } from '../button';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ScInputNumberDecrementer extends ScButtonBase {
4
+ readonly decremented: import("@angular/core").OutputEmitterRef<void>;
5
+ protected readonly class: import("@angular/core").Signal<string>;
6
+ protected handleClick(): void;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<ScInputNumberDecrementer, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScInputNumberDecrementer, "button[sc-input-number-decrementer]", never, {}, { "decremented": "decremented"; }, never, ["*"], true, never>;
9
+ }
@@ -0,0 +1,9 @@
1
+ import { ScButtonBase } from '../button';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ScInputNumberIncrementer extends ScButtonBase {
4
+ readonly incremented: import("@angular/core").OutputEmitterRef<void>;
5
+ protected readonly class: import("@angular/core").Signal<string>;
6
+ protected handleClick(): void;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<ScInputNumberIncrementer, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScInputNumberIncrementer, "button[sc-input-number-incrementer]", never, {}, { "incremented": "incremented"; }, never, ["*"], true, never>;
9
+ }
@@ -0,0 +1,11 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class ScInputNumber {
3
+ private readonly hostRef;
4
+ readonly classInput: import("@angular/core").InputSignal<string>;
5
+ protected readonly class: import("@angular/core").Signal<string>;
6
+ readonly value: import("@angular/core").ModelSignal<number>;
7
+ readonly type: import("@angular/core").InputSignal<"number">;
8
+ handleInput(): void;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<ScInputNumber, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScInputNumber, "input[sc-input-number]", never, { "classInput": { "alias": "class"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; }, never, ["*"], true, never>;
11
+ }
@@ -0,0 +1 @@
1
+ export * from './input-number-group';
@@ -0,0 +1,11 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class ScInputNumberGroup {
3
+ readonly classInput: import("@angular/core").InputSignal<string>;
4
+ protected readonly class: import("@angular/core").Signal<string>;
5
+ private readonly scInputNumberIncrementer;
6
+ private readonly scInputNumberDecrementer;
7
+ private readonly scInputNumber;
8
+ constructor();
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<ScInputNumberGroup, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScInputNumberGroup, "div[sc-input-number-group]", never, { "classInput": { "alias": "class"; "required": false; "isSignal": true; }; }, {}, ["scInputNumberIncrementer", "scInputNumberDecrementer", "scInputNumber"], ["*"], true, never>;
11
+ }
@@ -1,17 +1,25 @@
1
- import { FormControl } from '@angular/forms';
2
- import { InputOtpHandler } from './input-otp-handler';
1
+ import { ElementRef } from '@angular/core';
3
2
  import * as i0 from "@angular/core";
4
3
  export declare class ScInputOTPSlot {
5
- inputOtpHandler: InputOtpHandler;
6
4
  readonly classInput: import("@angular/core").InputSignal<string>;
7
5
  protected readonly class: import("@angular/core").Signal<string>;
8
- formControl: import("@angular/core").WritableSignal<FormControl<any> | null>;
9
- index: number;
10
- isActive: import("@angular/core").WritableSignal<boolean>;
11
- readonly input: import("@angular/core").Signal<HTMLInputElement>;
12
- protected handleKeydown(event: KeyboardEvent): void;
13
- private autoFocusNext;
14
- private autoFocusPrev;
6
+ protected readonly showFakeCaret: import("@angular/core").Signal<boolean>;
7
+ protected readonly isActive: import("@angular/core").WritableSignal<boolean>;
8
+ readonly disabled: import("@angular/core").WritableSignal<boolean>;
9
+ readonly inputRef: import("@angular/core").Signal<ElementRef<HTMLInputElement>>;
10
+ readonly focus: import("@angular/core").OutputEmitterRef<string>;
11
+ readonly blur: import("@angular/core").OutputEmitterRef<void>;
12
+ readonly backspace: import("@angular/core").OutputEmitterRef<void>;
13
+ readonly arrowLeft: import("@angular/core").OutputEmitterRef<void>;
14
+ readonly arrowRight: import("@angular/core").OutputEmitterRef<void>;
15
+ readonly paste: import("@angular/core").OutputEmitterRef<string>;
16
+ readonly value: import("@angular/core").ModelSignal<string>;
17
+ protected onInput(event: Event): void;
18
+ protected onKeyDown(event: KeyboardEvent): void;
19
+ protected onPaste(event: ClipboardEvent): void;
20
+ protected onFocus(): void;
21
+ protected onBlur(): void;
22
+ setActive(active?: boolean): void;
15
23
  static ɵfac: i0.ɵɵFactoryDeclaration<ScInputOTPSlot, never>;
16
- static ɵcmp: i0.ɵɵComponentDeclaration<ScInputOTPSlot, "sc-input-otp-slot", never, { "classInput": { "alias": "class"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
24
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScInputOTPSlot, "sc-input-otp-slot", never, { "classInput": { "alias": "class"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; }, { "focus": "focus"; "blur": "blur"; "backspace": "backspace"; "arrowLeft": "arrowLeft"; "arrowRight": "arrowRight"; "paste": "paste"; "value": "valueChange"; }, never, never, true, never>;
17
25
  }
@@ -1,35 +1,33 @@
1
- import { OnDestroy } from '@angular/core';
2
- import { ControlValueAccessor, FormArray, FormGroup } from '@angular/forms';
3
- import { Subject } from 'rxjs';
1
+ import { AfterContentInit } from '@angular/core';
2
+ import { AbstractControl, ControlValueAccessor, ValidationErrors } from '@angular/forms';
4
3
  import { ScInputOTPSlot } from './input-otp-slot';
5
4
  import * as i0 from "@angular/core";
6
- export declare class ScInputOtp implements ControlValueAccessor, OnDestroy {
7
- private readonly inputOtpHandler;
8
- private readonly focusMonitor;
5
+ export declare class ScInputOtp implements AfterContentInit, ControlValueAccessor {
6
+ readonly disabledInput: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
7
+ protected readonly disabled: import("@angular/core").WritableSignal<boolean>;
9
8
  private readonly changeDetectorRef;
10
9
  readonly classInput: import("@angular/core").InputSignal<string>;
11
10
  protected readonly class: import("@angular/core").Signal<string>;
12
- readonly required: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
13
- readonly formGroup: FormGroup<{
14
- inputs: FormArray<never>;
15
- }>;
16
- get inputs(): FormArray;
17
11
  readonly slots: import("@angular/core").Signal<readonly ScInputOTPSlot[]>;
12
+ readonly currentIndex: import("@angular/core").WritableSignal<number>;
13
+ readonly value: import("@angular/core").ModelSignal<string>;
14
+ type: import("@angular/core").InputSignal<"numeric" | "alphanumeric">;
18
15
  constructor();
19
- private _updateValue;
20
- readonly _value: import("@angular/core").ModelSignal<string | null>;
21
- readonly disabledByInput: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
22
- private readonly disabledByCva;
23
- private readonly _disabled;
16
+ ngAfterContentInit(): void;
17
+ private setupDigitComponents;
18
+ setCurrentPosition(position: number): void;
19
+ private findFirstSlotToHighlight;
20
+ private handleMultiDigitPaste;
21
+ private updateOtpValue;
22
+ validate(control: AbstractControl): ValidationErrors | null;
23
+ clear(): void;
24
+ setValue(value: string): void;
25
+ writeValue(value: string): void;
24
26
  onChange: (_: any) => void;
25
27
  onTouched: () => void;
26
- writeValue(tel: string | null): void;
27
28
  registerOnChange(fn: any): void;
28
29
  registerOnTouched(fn: any): void;
29
30
  setDisabledState(isDisabled: boolean): void;
30
- private readonly _elementRef;
31
- readonly stateChanges: Subject<void>;
32
- ngOnDestroy(): void;
33
31
  static ɵfac: i0.ɵɵFactoryDeclaration<ScInputOtp, never>;
34
- static ɵcmp: i0.ɵɵComponentDeclaration<ScInputOtp, "sc-input-otp", never, { "classInput": { "alias": "class"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "_value": { "alias": "value"; "required": false; "isSignal": true; }; "disabledByInput": { "alias": "disabled"; "required": false; "isSignal": true; }; }, { "_value": "valueChange"; }, ["slots"], ["*"], true, never>;
32
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScInputOtp, "sc-input-otp", never, { "disabledInput": { "alias": "disabled"; "required": false; "isSignal": true; }; "classInput": { "alias": "class"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; }, ["slots"], ["*"], true, never>;
35
33
  }
@@ -6,23 +6,23 @@ export declare class ScInputPassword implements OnInit {
6
6
  readonly classInput: import("@angular/core").InputSignal<string>;
7
7
  protected readonly class: import("@angular/core").Signal<string>;
8
8
  protected control: FormControl<any>;
9
- private destroyRef;
9
+ private readonly destroyRef;
10
10
  ngOnInit(): void;
11
11
  readonly password: import("@angular/core").WritableSignal<string>;
12
12
  readonly isVisible: import("@angular/core").WritableSignal<boolean>;
13
- requirements: {
13
+ readonly requirements: {
14
14
  regex: RegExp;
15
15
  text: string;
16
16
  }[];
17
- strength: import("@angular/core").Signal<{
17
+ readonly strength: import("@angular/core").Signal<{
18
18
  met: boolean;
19
19
  text: string;
20
20
  }[]>;
21
- strengthScore: import("@angular/core").Signal<number>;
22
- protected readonly indicatorClass: import("@angular/core").Signal<string>;
23
- strengthColor: import("@angular/core").Signal<"bg-border" | "bg-red-500" | "bg-orange-500" | "bg-amber-500" | "bg-emerald-500">;
24
- strengthText: import("@angular/core").Signal<"Enter a password" | "Weak password" | "Medium password" | "Strong password">;
25
- toggleVisibility(): void;
21
+ readonly strengthScore: import("@angular/core").Signal<number>;
22
+ protected readonly progressClass: import("@angular/core").Signal<string>;
23
+ readonly strengthColor: import("@angular/core").Signal<"[&>[data-slot=indicator]]:bg-border" | "[&>[data-slot=indicator]]:bg-red-500" | "[&>[data-slot=indicator]]:bg-orange-500" | "[&>[data-slot=indicator]]:bg-amber-500" | "[&>[data-slot=indicator]]:bg-emerald-500">;
24
+ readonly strengthText: import("@angular/core").Signal<"Enter a password" | "Weak password" | "Medium password" | "Strong password">;
25
+ protected toggleVisibility(): void;
26
26
  static ɵfac: i0.ɵɵFactoryDeclaration<ScInputPassword, never>;
27
27
  static ɵcmp: i0.ɵɵComponentDeclaration<ScInputPassword, "sc-input-password", never, { "classInput": { "alias": "class"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
28
28
  }
@@ -2,6 +2,8 @@ import * as i0 from "@angular/core";
2
2
  export declare class ScLabel {
3
3
  readonly classInput: import("@angular/core").InputSignal<string>;
4
4
  protected readonly class: import("@angular/core").Signal<string>;
5
+ readonly forInput: import("@angular/core").InputSignal<string>;
6
+ readonly for: import("@angular/core").WritableSignal<string>;
5
7
  static ɵfac: i0.ɵɵFactoryDeclaration<ScLabel, never>;
6
- static ɵcmp: i0.ɵɵComponentDeclaration<ScLabel, "label[sc-label]", never, { "classInput": { "alias": "class"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScLabel, "label[sc-label]", never, { "classInput": { "alias": "class"; "required": false; "isSignal": true; }; "forInput": { "alias": "for"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
7
9
  }
@@ -1,7 +1,8 @@
1
1
  import { ScButtonBase } from '../button';
2
2
  import * as i0 from "@angular/core";
3
3
  export declare class ScLink extends ScButtonBase {
4
+ readonly variantInput: import("@angular/core").InputSignal<"outline" | "link" | "primary" | "destructive" | "secondary" | "ghost" | null | undefined>;
4
5
  protected readonly tabindex: import("@angular/core").Signal<0 | -1>;
5
6
  static ɵfac: i0.ɵɵFactoryDeclaration<ScLink, never>;
6
- static ɵcmp: i0.ɵɵComponentDeclaration<ScLink, "a[sc-link]", never, {}, {}, never, ["*"], true, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScLink, "a[sc-link]", never, { "variantInput": { "alias": "variantInput"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
7
8
  }
@@ -0,0 +1 @@
1
+ export * from './multi-select';