@semantic-components/ui 0.12.0 → 0.14.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 (99) hide show
  1. package/fesm2022/semantic-components-ui.mjs +9073 -7753
  2. package/fesm2022/semantic-components-ui.mjs.map +1 -1
  3. package/index.d.ts +9 -1
  4. package/lib/components/autocomplete/autocomplete-item.d.ts +2 -2
  5. package/lib/components/button/button.d.ts +6 -5
  6. package/lib/components/calendar/calendar.d.ts +1 -1
  7. package/lib/components/checkbox/checkbox.d.ts +1 -1
  8. package/lib/components/cookie-consent/cookie-consent.d.ts +10 -0
  9. package/lib/components/cookie-consent/index.d.ts +1 -0
  10. package/lib/components/editor/actions/editor-blockquote.d.ts +11 -0
  11. package/lib/components/editor/actions/editor-bold.d.ts +11 -0
  12. package/lib/components/editor/actions/editor-bullet-list.d.ts +12 -0
  13. package/lib/components/editor/actions/editor-code.d.ts +12 -0
  14. package/lib/components/editor/actions/editor-highlight.d.ts +12 -0
  15. package/lib/components/editor/actions/editor-horizontal-rule.d.ts +12 -0
  16. package/lib/components/editor/actions/editor-italic.d.ts +12 -0
  17. package/lib/components/editor/actions/editor-ordered-list.d.ts +12 -0
  18. package/lib/components/editor/actions/editor-paragraph.d.ts +8 -0
  19. package/lib/components/editor/actions/editor-redo.d.ts +12 -0
  20. package/lib/components/editor/actions/editor-strike.d.ts +12 -0
  21. package/lib/components/editor/actions/editor-text-align-center.d.ts +12 -0
  22. package/lib/components/editor/actions/editor-text-align-left.d.ts +12 -0
  23. package/lib/components/editor/actions/editor-text-align-right.d.ts +12 -0
  24. package/lib/components/editor/actions/editor-underline.d.ts +12 -0
  25. package/lib/components/editor/actions/editor-undo.d.ts +12 -0
  26. package/lib/components/editor/actions/editor-unset-link.d.ts +14 -0
  27. package/lib/components/editor/editor-group.d.ts +7 -0
  28. package/lib/components/editor/editor-toolbar.d.ts +7 -0
  29. package/lib/components/editor/extensions/extension-image.d.ts +1 -0
  30. package/lib/components/editor/extensions/extension-link.d.ts +0 -1
  31. package/lib/components/editor/extensions/extensions.d.ts +10 -3
  32. package/lib/components/file-upload/drop-zone.d.ts +11 -0
  33. package/lib/components/file-upload/file-card.d.ts +12 -0
  34. package/lib/components/file-upload/file-preview.d.ts +7 -0
  35. package/lib/components/file-upload/file-upload.d.ts +9 -0
  36. package/lib/components/file-upload/file-uploader.d.ts +16 -0
  37. package/lib/components/file-upload/file.d.ts +4 -0
  38. package/lib/components/file-upload/image.d.ts +7 -0
  39. package/lib/components/file-upload/index.d.ts +3 -0
  40. package/lib/components/file-upload/single-file-uploader.d.ts +18 -0
  41. package/lib/components/file-upload/utils.d.ts +4 -0
  42. package/lib/components/input/input.d.ts +3 -3
  43. package/lib/components/input-otp/input-otp.d.ts +1 -1
  44. package/lib/components/menu/menu-checkbox-item.d.ts +1 -1
  45. package/lib/components/menu/menu-group.d.ts +2 -2
  46. package/lib/components/page/index.d.ts +4 -0
  47. package/lib/components/page/page-description.d.ts +7 -0
  48. package/lib/components/page/page-subtitle.d.ts +7 -0
  49. package/lib/components/page/page-title.d.ts +7 -0
  50. package/lib/components/page/section.d.ts +5 -0
  51. package/lib/components/popover/popover-trigger-for.d.ts +3 -3
  52. package/lib/components/radio-group/radio-item.d.ts +15 -17
  53. package/lib/components/re-captcha/index.d.ts +2 -0
  54. package/lib/components/re-captcha/re-captcha-v2.d.ts +26 -0
  55. package/lib/components/re-captcha/re-captcha-v3.d.ts +13 -0
  56. package/lib/components/scroll-area/scroll-area.d.ts +4 -6
  57. package/lib/components/select/option.d.ts +23 -3
  58. package/lib/components/select/select-state.d.ts +7 -0
  59. package/lib/components/select/select.d.ts +22 -7
  60. package/lib/components/separator/index.d.ts +1 -0
  61. package/lib/components/separator/separator.d.ts +8 -0
  62. package/lib/components/slider/slider.d.ts +1 -1
  63. package/lib/components/tab-group/index.d.ts +4 -0
  64. package/lib/components/tab-group/tab-content.d.ts +7 -0
  65. package/lib/components/tab-group/tab-group.d.ts +11 -0
  66. package/lib/components/tab-group/tab-item.d.ts +5 -0
  67. package/lib/components/tab-group/tab-label.d.ts +7 -0
  68. package/lib/components/tel-input/tel-input.component.d.ts +1 -1
  69. package/lib/components/time-picker/time-picker.d.ts +5 -1
  70. package/lib/components/toggle-group/index.d.ts +2 -0
  71. package/lib/components/toggle-group/toggle-group-item.d.ts +5 -0
  72. package/lib/components/toggle-group/toggle-group.d.ts +8 -0
  73. package/lib/components/typography/blockquote.d.ts +5 -0
  74. package/lib/components/typography/heading.d.ts +4 -4
  75. package/lib/components/typography/index.d.ts +1 -0
  76. package/lib/utils/index.d.ts +0 -1
  77. package/lib/utils/settings.d.ts +1 -0
  78. package/package.json +5 -6
  79. package/lib/components/editor/extensions/extension-blockquote.d.ts +0 -12
  80. package/lib/components/editor/extensions/extension-bold.d.ts +0 -12
  81. package/lib/components/editor/extensions/extension-bullet-list.d.ts +0 -12
  82. package/lib/components/editor/extensions/extension-code.d.ts +0 -12
  83. package/lib/components/editor/extensions/extension-highlight.d.ts +0 -12
  84. package/lib/components/editor/extensions/extension-history.d.ts +0 -14
  85. package/lib/components/editor/extensions/extension-horizontal-rule.d.ts +0 -12
  86. package/lib/components/editor/extensions/extension-italic.d.ts +0 -12
  87. package/lib/components/editor/extensions/extension-ordered-list.d.ts +0 -12
  88. package/lib/components/editor/extensions/extension-paragraph.d.ts +0 -8
  89. package/lib/components/editor/extensions/extension-strike.d.ts +0 -12
  90. package/lib/components/editor/extensions/extension-text-align.d.ts +0 -16
  91. package/lib/components/editor/extensions/extension-underline.d.ts +0 -12
  92. package/lib/components/editor/toolbar/extensions-group.d.ts +0 -5
  93. package/lib/components/editor/toolbar/extensions-separator.d.ts +0 -7
  94. package/lib/components/select/listbox-option.d.ts +0 -8
  95. package/lib/components/select/listbox.d.ts +0 -7
  96. package/lib/utils/css.d.ts +0 -2
  97. /package/lib/components/{menubar → menu-bar}/index.d.ts +0 -0
  98. /package/lib/components/{menubar → menu-bar}/menu-bar-item.d.ts +0 -0
  99. /package/lib/components/{menubar → menu-bar}/menu-bar.d.ts +0 -0
package/index.d.ts CHANGED
@@ -16,12 +16,14 @@ export * from './lib/components/progress';
16
16
  export * from './lib/components/sheet';
17
17
  export * from './lib/components/breadcrumb';
18
18
  export * from './lib/components/toggle';
19
+ export * from './lib/components/toggle-group';
19
20
  export * from './lib/components/dialog';
20
21
  export * from './lib/components/alert';
21
22
  export * from './lib/components/alert-dialog';
22
23
  export * from './lib/components/badge';
23
24
  export * from './lib/components/scroll-area';
24
25
  export * from './lib/components/tabs';
26
+ export * from './lib/components/tab-group';
25
27
  export * from './lib/components/card';
26
28
  export * from './lib/components/toast';
27
29
  export * from './lib/components/slider';
@@ -41,9 +43,15 @@ export * from './lib/components/data-table';
41
43
  export * from './lib/components/popover';
42
44
  export * from './lib/components/context-menu';
43
45
  export * from './lib/components/menu';
44
- export * from './lib/components/menubar';
46
+ export * from './lib/components/menu-bar';
45
47
  export * from './lib/components/command';
46
48
  export * from './lib/components/collapsible';
47
49
  export * from './lib/components/sidebar';
48
50
  export * from './lib/components/autocomplete';
49
51
  export * from './lib/components/time-picker';
52
+ export * from './lib/components/separator';
53
+ export * from './lib/components/file-upload';
54
+ export * from './lib/components/page';
55
+ export * from './lib/components/typography';
56
+ export * from './lib/components/cookie-consent';
57
+ export * from './lib/components/re-captcha';
@@ -8,8 +8,8 @@ export declare class ScAutocompleteItem implements Highlightable {
8
8
  item: import("@angular/core").InputSignal<ScAutocompleteModel>;
9
9
  selectedItem: import("@angular/core").InputSignal<ScAutocompleteModel | undefined>;
10
10
  isSelected: import("@angular/core").Signal<boolean>;
11
- private _isActive;
12
- disabled?: boolean | undefined;
11
+ private readonly _isActive;
12
+ disabled: boolean | undefined;
13
13
  getLabel?(): string;
14
14
  setActiveStyles(): void;
15
15
  setInactiveStyles(): void;
@@ -6,10 +6,11 @@ export declare const buttonVariants: (props?: ({
6
6
  } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
7
7
  export type ButtonVariants = VariantProps<typeof buttonVariants>;
8
8
  export declare class ScButton {
9
- variant: import("@angular/core").InputSignal<"outline" | "link" | "primary" | "destructive" | "secondary" | "ghost" | null | undefined>;
10
- size: import("@angular/core").InputSignal<"default" | "sm" | "lg" | "icon" | null | undefined>;
11
- class: import("@angular/core").InputSignal<string>;
12
- classes: import("@angular/core").Signal<string>;
9
+ readonly variant: import("@angular/core").InputSignal<"outline" | "link" | "primary" | "destructive" | "secondary" | "ghost" | null | undefined>;
10
+ readonly size: import("@angular/core").InputSignal<"default" | "sm" | "lg" | "icon" | null | undefined>;
11
+ readonly classInput: import("@angular/core").InputSignal<string>;
12
+ protected readonly class: import("@angular/core").Signal<string>;
13
+ readonly disabled: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
13
14
  static ɵfac: i0.ɵɵFactoryDeclaration<ScButton, never>;
14
- static ɵcmp: i0.ɵɵComponentDeclaration<ScButton, "button[sc-button], a[sc-button]", never, { "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "class": { "alias": "class"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScButton, "button[sc-button], a[sc-button]", never, { "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "classInput": { "alias": "class"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
15
16
  }
@@ -21,7 +21,7 @@ export declare class ScCalendar implements OnInit, ControlValueAccessor {
21
21
  writeValue(value: string): void;
22
22
  registerOnChange(fn: (value: string) => void): void;
23
23
  registerOnTouched(fn: () => void): void;
24
- private readonly _disabledByCva;
24
+ private readonly disabledByCva;
25
25
  setDisabledState?(isDisabled: boolean): void;
26
26
  ngOnInit(): void;
27
27
  private setLocaleDayNames;
@@ -15,7 +15,7 @@ export declare class ScCheckbox implements ControlValueAccessor {
15
15
  disabled: import("@angular/core").ModelSignal<BooleanInput>;
16
16
  change: import("@angular/core").OutputEmitterRef<boolean>;
17
17
  state: import("@angular/core").Signal<"checked" | "unchecked">;
18
- private host;
18
+ private readonly host;
19
19
  constructor();
20
20
  toggle(): void;
21
21
  writeValue(value: boolean): void;
@@ -0,0 +1,10 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class ScCookieConsent {
3
+ open: import("@angular/core").WritableSignal<boolean>;
4
+ hidden: import("@angular/core").WritableSignal<boolean>;
5
+ class: import("@angular/core").WritableSignal<string>;
6
+ accept(): void;
7
+ decline(): void;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<ScCookieConsent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScCookieConsent, "sc-cookie-consent", never, {}, {}, never, never, true, never>;
10
+ }
@@ -0,0 +1 @@
1
+ export * from './cookie-consent';
@@ -0,0 +1,11 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class ScEditorBlockquote {
3
+ readonly ariaLabel: import("@angular/core").InputSignal<string>;
4
+ private readonly parent;
5
+ private readonly extensions;
6
+ constructor();
7
+ private get editor();
8
+ protected toggleBlockquote(): void;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<ScEditorBlockquote, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScEditorBlockquote, "sc-editor-blockquote", never, { "ariaLabel": { "alias": "aria-label"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
11
+ }
@@ -0,0 +1,11 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class ScEditorBold {
3
+ readonly ariaLabel: import("@angular/core").InputSignal<string>;
4
+ private readonly parent;
5
+ private readonly extensions;
6
+ constructor();
7
+ private get editor();
8
+ protected toggleBold(): void;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<ScEditorBold, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScEditorBold, "sc-editor-bold", never, { "ariaLabel": { "alias": "aria-label"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
11
+ }
@@ -0,0 +1,12 @@
1
+ import { ScExtensions } from '../extensions/extensions';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ScEditorBulletList {
4
+ ariaLabel: string;
5
+ private readonly parent;
6
+ extensions: ScExtensions;
7
+ constructor();
8
+ get editor(): import("@tiptap/core").Editor;
9
+ toggleBulletList(): void;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<ScEditorBulletList, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScEditorBulletList, "sc-editor-bullet-list", never, {}, {}, never, never, true, never>;
12
+ }
@@ -0,0 +1,12 @@
1
+ import { ScExtensions } from '../extensions/extensions';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ScEditorCode {
4
+ ariaLabel: string;
5
+ private readonly parent;
6
+ extensions: ScExtensions;
7
+ constructor();
8
+ get editor(): import("@tiptap/core").Editor;
9
+ toggleCode(): void;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<ScEditorCode, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScEditorCode, "sc-editor-code", never, {}, {}, never, never, true, never>;
12
+ }
@@ -0,0 +1,12 @@
1
+ import { ScExtensions } from '../extensions/extensions';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ScEditorHighlight {
4
+ ariaLabel: string;
5
+ private readonly parent;
6
+ extensions: ScExtensions;
7
+ constructor();
8
+ get editor(): import("@tiptap/core").Editor;
9
+ toggleHighlight(): void;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<ScEditorHighlight, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScEditorHighlight, "sc-editor-highlight", never, {}, {}, never, never, true, never>;
12
+ }
@@ -0,0 +1,12 @@
1
+ import { ScExtensions } from '../extensions/extensions';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ScEditorHorizontalRule {
4
+ ariaLabel: string;
5
+ private readonly parent;
6
+ extensions: ScExtensions;
7
+ constructor();
8
+ get editor(): import("@tiptap/core").Editor;
9
+ setHorizontalRule(): void;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<ScEditorHorizontalRule, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScEditorHorizontalRule, "sc-editor-horizontal-rule", never, {}, {}, never, never, true, never>;
12
+ }
@@ -0,0 +1,12 @@
1
+ import { ScExtensions } from '../extensions/extensions';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ScEditorItalic {
4
+ ariaLabel: string;
5
+ private readonly parent;
6
+ extensions: ScExtensions;
7
+ constructor();
8
+ get editor(): import("@tiptap/core").Editor;
9
+ toggleItalic(): void;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<ScEditorItalic, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScEditorItalic, "sc-editor-italic", never, {}, {}, never, never, true, never>;
12
+ }
@@ -0,0 +1,12 @@
1
+ import { ScExtensions } from '../extensions/extensions';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ScEditorOrderedList {
4
+ ariaLabel: string;
5
+ private readonly parent;
6
+ extensions: ScExtensions;
7
+ constructor();
8
+ get editor(): import("@tiptap/core").Editor;
9
+ toggleOrderedList(): void;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<ScEditorOrderedList, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScEditorOrderedList, "sc-editor-ordered-list", never, {}, {}, never, never, true, never>;
12
+ }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class ScEditorParagraph {
3
+ private readonly parent;
4
+ get editor(): import("@tiptap/core").Editor;
5
+ setParagraph(): void;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<ScEditorParagraph, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScEditorParagraph, "sc-editor-paragraph", never, {}, {}, never, never, true, never>;
8
+ }
@@ -0,0 +1,12 @@
1
+ import { ScExtensions } from '../extensions/extensions';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ScEditorRedo {
4
+ ariaLabel: string;
5
+ private readonly parent;
6
+ extensions: ScExtensions;
7
+ constructor();
8
+ get editor(): import("@tiptap/core").Editor;
9
+ redo(): void;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<ScEditorRedo, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScEditorRedo, "sc-editor-redo", never, {}, {}, never, never, true, never>;
12
+ }
@@ -0,0 +1,12 @@
1
+ import { ScExtensions } from '../extensions/extensions';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ScEditorStrike {
4
+ ariaLabel: string;
5
+ private readonly parent;
6
+ extensions: ScExtensions;
7
+ constructor();
8
+ get editor(): import("@tiptap/core").Editor;
9
+ toggleStrike(): void;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<ScEditorStrike, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScEditorStrike, "sc-editor-strike", never, {}, {}, never, never, true, never>;
12
+ }
@@ -0,0 +1,12 @@
1
+ import { ScExtensions } from '../extensions/extensions';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ScEditorTextAlignCenter {
4
+ ariaLabel: string;
5
+ private readonly parent;
6
+ extensions: ScExtensions;
7
+ constructor();
8
+ get editor(): import("@tiptap/core").Editor;
9
+ setCenterAlign(): void;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<ScEditorTextAlignCenter, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScEditorTextAlignCenter, "sc-editor-text-align-center", never, {}, {}, never, never, true, never>;
12
+ }
@@ -0,0 +1,12 @@
1
+ import { ScExtensions } from '../extensions/extensions';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ScEditorTextAlignLeft {
4
+ ariaLabel: string;
5
+ private readonly parent;
6
+ extensions: ScExtensions;
7
+ constructor();
8
+ get editor(): import("@tiptap/core").Editor;
9
+ setLeftAlign(): void;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<ScEditorTextAlignLeft, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScEditorTextAlignLeft, "sc-editor-text-align-left", never, {}, {}, never, never, true, never>;
12
+ }
@@ -0,0 +1,12 @@
1
+ import { ScExtensions } from '../extensions/extensions';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ScEditorTextAlignRight {
4
+ ariaLabel: string;
5
+ private readonly parent;
6
+ extensions: ScExtensions;
7
+ constructor();
8
+ get editor(): import("@tiptap/core").Editor;
9
+ setRightAlign(): void;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<ScEditorTextAlignRight, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScEditorTextAlignRight, "sc-editor-text-align-right", never, {}, {}, never, never, true, never>;
12
+ }
@@ -0,0 +1,12 @@
1
+ import { ScExtensions } from '../extensions/extensions';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ScEditorUnderline {
4
+ ariaLabel: string;
5
+ private readonly parent;
6
+ extensions: ScExtensions;
7
+ constructor();
8
+ get editor(): import("@tiptap/core").Editor;
9
+ toggleUnderline(): void;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<ScEditorUnderline, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScEditorUnderline, "sc-editor-underline", never, {}, {}, never, never, true, never>;
12
+ }
@@ -0,0 +1,12 @@
1
+ import { ScExtensions } from '../extensions/extensions';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ScEditorUndo {
4
+ ariaLabel: string;
5
+ private readonly parent;
6
+ extensions: ScExtensions;
7
+ constructor();
8
+ get editor(): import("@tiptap/core").Editor;
9
+ undo(): void;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<ScEditorUndo, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScEditorUndo, "sc-editor-undo", never, {}, {}, never, never, true, never>;
12
+ }
@@ -0,0 +1,14 @@
1
+ import { Dialog } from '@angular/cdk/dialog';
2
+ import { ScExtensions } from '../extensions/extensions';
3
+ import * as i0 from "@angular/core";
4
+ export declare class ScEditorUnsetLink {
5
+ ariaLabel: string;
6
+ private readonly parent;
7
+ dialog: Dialog;
8
+ extensions: ScExtensions;
9
+ constructor();
10
+ get editor(): import("@tiptap/core").Editor;
11
+ unsetLink(): void;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<ScEditorUnsetLink, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScEditorUnsetLink, "sc-editor-unset-link", never, {}, {}, never, never, true, never>;
14
+ }
@@ -0,0 +1,7 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class ScEditorGroup {
3
+ class: import("@angular/core").InputSignal<string>;
4
+ _class: import("@angular/core").Signal<string>;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<ScEditorGroup, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScEditorGroup, "sc-editor-group", never, { "class": { "alias": "class"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
7
+ }
@@ -0,0 +1,7 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class ScEditorToolbar {
3
+ class: import("@angular/core").InputSignal<string>;
4
+ _class: import("@angular/core").Signal<string>;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<ScEditorToolbar, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScEditorToolbar, "sc-editor-toolbar", never, { "class": { "alias": "class"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
7
+ }
@@ -3,6 +3,7 @@ import { ImageData } from '../toolbar/add-image-dialog';
3
3
  import { ScExtensions } from './extensions';
4
4
  import * as i0 from "@angular/core";
5
5
  export declare class ScExtensionImage {
6
+ ariaLabel: string;
6
7
  private readonly parent;
7
8
  dialog: Dialog;
8
9
  extensions: ScExtensions;
@@ -8,7 +8,6 @@ export declare class ScExtensionLink {
8
8
  constructor();
9
9
  get editor(): import("@tiptap/core").Editor;
10
10
  openDialog(): void;
11
- removeLink(): void;
12
11
  static ɵfac: i0.ɵɵFactoryDeclaration<ScExtensionLink, never>;
13
12
  static ɵcmp: i0.ɵɵComponentDeclaration<ScExtensionLink, "sc-extension-link", never, {}, {}, never, never, true, never>;
14
13
  }
@@ -1,10 +1,18 @@
1
1
  import * as i0 from "@angular/core";
2
2
  export declare class ScExtensions {
3
+ undo: import("@angular/core").WritableSignal<boolean>;
4
+ redo: import("@angular/core").WritableSignal<boolean>;
5
+ history: import("@angular/core").Signal<boolean>;
6
+ setLink: import("@angular/core").WritableSignal<boolean>;
7
+ unsetLink: import("@angular/core").WritableSignal<boolean>;
8
+ link: import("@angular/core").Signal<boolean>;
9
+ textAlignRight: import("@angular/core").WritableSignal<boolean>;
10
+ textAlignLeft: import("@angular/core").WritableSignal<boolean>;
11
+ textAlignCenter: import("@angular/core").WritableSignal<boolean>;
12
+ textAlign: import("@angular/core").Signal<boolean>;
3
13
  highlight: import("@angular/core").WritableSignal<boolean>;
4
14
  color: import("@angular/core").WritableSignal<boolean>;
5
15
  underline: import("@angular/core").WritableSignal<boolean>;
6
- link: import("@angular/core").WritableSignal<boolean>;
7
- textAlign: import("@angular/core").WritableSignal<boolean>;
8
16
  fontFamily: import("@angular/core").WritableSignal<boolean>;
9
17
  bold: import("@angular/core").WritableSignal<boolean>;
10
18
  youtube: import("@angular/core").WritableSignal<boolean>;
@@ -17,7 +25,6 @@ export declare class ScExtensions {
17
25
  orderedList: import("@angular/core").WritableSignal<boolean>;
18
26
  horizontalRule: import("@angular/core").WritableSignal<boolean>;
19
27
  textStyle: import("@angular/core").WritableSignal<boolean>;
20
- history: import("@angular/core").WritableSignal<boolean>;
21
28
  table: import("@angular/core").WritableSignal<boolean>;
22
29
  static ɵfac: i0.ɵɵFactoryDeclaration<ScExtensions, never>;
23
30
  static ɵprov: i0.ɵɵInjectableDeclaration<ScExtensions>;
@@ -0,0 +1,11 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class ScDropZone {
3
+ readonly isDragActive: import("@angular/core").WritableSignal<boolean>;
4
+ readonly isDisabled: import("@angular/core").InputSignal<boolean>;
5
+ readonly class: import("@angular/core").InputSignal<string>;
6
+ protected readonly _class: import("@angular/core").Signal<string>;
7
+ handleDragOver(event: DragEvent): void;
8
+ handleDragLeave(event: DragEvent): void;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<ScDropZone, never>;
10
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ScDropZone, "[scDropZone]", ["scDropZone"], { "isDisabled": { "alias": "isDisabled"; "required": false; "isSignal": true; }; "class": { "alias": "class"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
11
+ }
@@ -0,0 +1,12 @@
1
+ import { ScFile } from './file';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ScFileCard {
4
+ index: import("@angular/core").InputSignal<number>;
5
+ file: import("@angular/core").InputSignal<ScFile>;
6
+ progress: import("@angular/core").InputSignal<number | undefined>;
7
+ removed: import("@angular/core").OutputEmitterRef<number>;
8
+ formatedSize: import("@angular/core").Signal<string>;
9
+ remove(): void;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<ScFileCard, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScFileCard, "sc-file-card", never, { "index": { "alias": "index"; "required": true; "isSignal": true; }; "file": { "alias": "file"; "required": true; "isSignal": true; }; "progress": { "alias": "progress"; "required": false; "isSignal": true; }; }, { "removed": "removed"; }, never, never, true, never>;
12
+ }
@@ -0,0 +1,7 @@
1
+ import { ScFile } from './file';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ScFilePreview {
4
+ file: import("@angular/core").InputSignal<ScFile>;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<ScFilePreview, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScFilePreview, "sc-file-preview", never, { "file": { "alias": "file"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
7
+ }
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ 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;
7
+ 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>;
9
+ }
@@ -0,0 +1,16 @@
1
+ import { ScFile } from './file';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ScFileUploader {
4
+ readonly class: import("@angular/core").InputSignal<string>;
5
+ protected readonly _class: import("@angular/core").Signal<string>;
6
+ maxSize: import("@angular/core").InputSignal<number>;
7
+ maxFiles: import("@angular/core").InputSignal<number>;
8
+ files: import("@angular/core").WritableSignal<ScFile[]>;
9
+ multiple: import("@angular/core").Signal<boolean>;
10
+ progresses: import("@angular/core").InputSignal<Record<string, number> | undefined>;
11
+ uploadInfo(): string;
12
+ onRemove(index: number): void;
13
+ handleFileChange(event: Event): void;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<ScFileUploader, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScFileUploader, "sc-file-uploader", never, { "class": { "alias": "class"; "required": false; "isSignal": true; }; "maxSize": { "alias": "maxSize"; "required": false; "isSignal": true; }; "maxFiles": { "alias": "maxFiles"; "required": false; "isSignal": true; }; "progresses": { "alias": "progresses"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
16
+ }
@@ -0,0 +1,4 @@
1
+ export interface ScFile {
2
+ file: File;
3
+ preview: string | ArrayBuffer | null;
4
+ }
@@ -0,0 +1,7 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class ScImage {
3
+ readonly class: import("@angular/core").InputSignal<string>;
4
+ protected readonly _class: import("@angular/core").Signal<string>;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<ScImage, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScImage, "img[sc-image]", never, { "class": { "alias": "class"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
7
+ }
@@ -0,0 +1,3 @@
1
+ export * from './file-upload';
2
+ export * from './file-uploader';
3
+ export * from './single-file-uploader';
@@ -0,0 +1,18 @@
1
+ import { DataService } from '@semantic-components/supabase';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ScSingleFileUploader {
4
+ dataService: DataService;
5
+ readonly class: import("@angular/core").InputSignal<string>;
6
+ protected readonly _class: import("@angular/core").Signal<string>;
7
+ file: import("@angular/core").WritableSignal<File | null | undefined>;
8
+ fileUrl: import("@angular/core").Signal<string | null | undefined>;
9
+ status: import("@angular/core").WritableSignal<"error" | "init" | "uploading" | "success">;
10
+ uploadProgress: import("@angular/core").WritableSignal<number>;
11
+ maxSize: import("@angular/core").InputSignal<number>;
12
+ uploadInfo(): string;
13
+ handleFileChange(event: Event): void;
14
+ removeFile(): void;
15
+ uploadFile(): void;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<ScSingleFileUploader, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScSingleFileUploader, "sc-single-file-uploader", never, { "class": { "alias": "class"; "required": false; "isSignal": true; }; "maxSize": { "alias": "maxSize"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
18
+ }
@@ -0,0 +1,4 @@
1
+ export declare function formatBytes(bytes: number, opts?: {
2
+ decimals?: number;
3
+ sizeType?: 'accurate' | 'normal';
4
+ }): string;
@@ -1,8 +1,8 @@
1
1
  import * as i0 from "@angular/core";
2
2
  export declare const scInputStyles: import("@angular/core").WritableSignal<string>;
3
3
  export declare class ScInput {
4
- class: import("@angular/core").InputSignal<string>;
5
- classes: import("@angular/core").Signal<string>;
4
+ readonly classInput: import("@angular/core").InputSignal<string>;
5
+ protected readonly class: import("@angular/core").Signal<string>;
6
6
  static ɵfac: i0.ɵɵFactoryDeclaration<ScInput, never>;
7
- static ɵcmp: i0.ɵɵComponentDeclaration<ScInput, "input[sc-input]", never, { "class": { "alias": "class"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScInput, "input[sc-input]", never, { "classInput": { "alias": "class"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
8
8
  }
@@ -20,7 +20,7 @@ export declare class ScInputOtp implements ControlValueAccessor, OnDestroy {
20
20
  private _updateValue;
21
21
  readonly _value: import("@angular/core").ModelSignal<string | null>;
22
22
  readonly _disabledByInput: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
23
- private readonly _disabledByCva;
23
+ private readonly disabledByCva;
24
24
  private readonly _disabled;
25
25
  onChange: (_: any) => void;
26
26
  onTouched: () => void;
@@ -1,7 +1,7 @@
1
1
  import * as i0 from "@angular/core";
2
2
  import * as i1 from "@angular/cdk/menu";
3
3
  export declare class ScMenuCheckboxItem {
4
- private _cdkMenuItemCheckbox;
4
+ private readonly _cdkMenuItemCheckbox;
5
5
  class: import("@angular/core").InputSignal<string>;
6
6
  classes: import("@angular/core").Signal<string>;
7
7
  readonly disabled: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
@@ -1,7 +1,7 @@
1
1
  import * as i0 from "@angular/core";
2
2
  export declare class ScMenuGroup {
3
- class: import("@angular/core").InputSignal<string>;
4
- classes: import("@angular/core").Signal<string>;
3
+ readonly class: import("@angular/core").InputSignal<string>;
4
+ protected readonly _class: import("@angular/core").Signal<string>;
5
5
  static ɵfac: i0.ɵɵFactoryDeclaration<ScMenuGroup, never>;
6
6
  static ɵcmp: i0.ɵɵComponentDeclaration<ScMenuGroup, "sc-menu-group", never, { "class": { "alias": "class"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
7
7
  }
@@ -0,0 +1,4 @@
1
+ export * from './page-title';
2
+ export * from './page-subtitle';
3
+ export * from './page-description';
4
+ export * from './section';
@@ -0,0 +1,7 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class ScPageDescription {
3
+ readonly classInput: import("@angular/core").InputSignal<string>;
4
+ protected readonly class: import("@angular/core").Signal<string>;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<ScPageDescription, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScPageDescription, "p[sc-page-description]", never, { "classInput": { "alias": "class"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
7
+ }
@@ -0,0 +1,7 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class ScPageSubtitle {
3
+ readonly classInput: import("@angular/core").InputSignal<string>;
4
+ protected readonly class: import("@angular/core").Signal<string>;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<ScPageSubtitle, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScPageSubtitle, "h2[sc-page-subtitle]", never, { "classInput": { "alias": "class"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
7
+ }
@@ -0,0 +1,7 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class ScPageTitle {
3
+ readonly classInput: import("@angular/core").InputSignal<string>;
4
+ protected readonly class: import("@angular/core").Signal<string>;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<ScPageTitle, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScPageTitle, "h1[sc-page-title]", 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 Section {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<Section, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<Section, "sc-section", never, {}, {}, never, never, true, never>;
5
+ }
@@ -1,9 +1,9 @@
1
1
  import { OnDestroy, TemplateRef } from '@angular/core';
2
2
  import * as i0 from "@angular/core";
3
3
  export declare class ScPopoverTriggerFor implements OnDestroy {
4
- private element;
5
- private overlay;
6
- private viewContainer;
4
+ private readonly element;
5
+ private readonly overlay;
6
+ private readonly viewContainer;
7
7
  readonly scPopoverTriggerFor: import("@angular/core").InputSignal<TemplateRef<unknown>>;
8
8
  private overlayRef;
9
9
  open(): void;