@sd-angular/core 19.0.0-beta.70 → 19.0.0-beta.71

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 (29) hide show
  1. package/assets/scss/ckeditor5.scss +1 -2
  2. package/components/modal/index.d.ts +1 -1
  3. package/components/modal/src/modal.component.d.ts +24 -0
  4. package/fesm2022/sd-angular-core-components-document-builder.mjs +1 -1
  5. package/fesm2022/sd-angular-core-components-document-builder.mjs.map +1 -1
  6. package/fesm2022/sd-angular-core-components-import-excel.mjs +1 -1
  7. package/fesm2022/sd-angular-core-components-import-excel.mjs.map +1 -1
  8. package/fesm2022/sd-angular-core-components-modal.mjs +57 -91
  9. package/fesm2022/sd-angular-core-components-modal.mjs.map +1 -1
  10. package/fesm2022/sd-angular-core-components-preview.mjs +1 -1
  11. package/fesm2022/sd-angular-core-components-preview.mjs.map +1 -1
  12. package/fesm2022/sd-angular-core-components-side-drawer.mjs +2 -2
  13. package/fesm2022/sd-angular-core-components-side-drawer.mjs.map +1 -1
  14. package/fesm2022/sd-angular-core-components-table.mjs +4 -4
  15. package/fesm2022/sd-angular-core-components-table.mjs.map +1 -1
  16. package/fesm2022/sd-angular-core-components-upload-file.mjs +1 -1
  17. package/fesm2022/sd-angular-core-components-upload-file.mjs.map +1 -1
  18. package/fesm2022/sd-angular-core-components-workflow.mjs +11 -11
  19. package/fesm2022/sd-angular-core-components-workflow.mjs.map +1 -1
  20. package/fesm2022/sd-angular-core-forms-chip-calendar.mjs +158 -197
  21. package/fesm2022/sd-angular-core-forms-chip-calendar.mjs.map +1 -1
  22. package/fesm2022/sd-angular-core-forms-chip.mjs +173 -203
  23. package/fesm2022/sd-angular-core-forms-chip.mjs.map +1 -1
  24. package/forms/chip/src/chip.component.d.ts +35 -44
  25. package/forms/chip-calendar/src/chip-calendar.component.d.ts +35 -42
  26. package/package.json +68 -68
  27. package/sd-angular-core-19.0.0-beta.71.tgz +0 -0
  28. package/components/modal/src/modal/modal.component.d.ts +0 -31
  29. package/sd-angular-core-19.0.0-beta.70.tgz +0 -0
@@ -1,5 +1,5 @@
1
1
  // Import the core styles.
2
- @import '@ckeditor/ckeditor5-theme-lark/dist/index.css';
2
+ @import '@ckeditor/ckeditor5-ui/dist/index.css';
3
3
  @import '@ckeditor/ckeditor5-clipboard/dist/index.css';
4
4
  @import '@ckeditor/ckeditor5-core/dist/index.css';
5
5
  @import '@ckeditor/ckeditor5-engine/dist/index.css';
@@ -7,7 +7,6 @@
7
7
  @import '@ckeditor/ckeditor5-paragraph/dist/index.css';
8
8
  @import '@ckeditor/ckeditor5-select-all/dist/index.css';
9
9
  @import '@ckeditor/ckeditor5-typing/dist/index.css';
10
- @import '@ckeditor/ckeditor5-ui/dist/index.css';
11
10
  @import '@ckeditor/ckeditor5-undo/dist/index.css';
12
11
  @import '@ckeditor/ckeditor5-upload/dist/index.css';
13
12
  @import '@ckeditor/ckeditor5-utils/dist/index.css';
@@ -1 +1 @@
1
- export * from './src/modal/modal.component';
1
+ export * from './src/modal.component';
@@ -0,0 +1,24 @@
1
+ import { ElementRef, TemplateRef } from '@angular/core';
2
+ import { SdColor } from '@sd-angular/core/utilities/models';
3
+ import * as i0 from "@angular/core";
4
+ export declare class SdModal {
5
+ #private;
6
+ static index: import("@angular/core").WritableSignal<number>;
7
+ templateRef: import("@angular/core").Signal<TemplateRef<any>>;
8
+ modal: import("@angular/core").Signal<ElementRef<any> | undefined>;
9
+ title: import("@angular/core").InputSignalWithTransform<string, string | null | undefined>;
10
+ color: import("@angular/core").InputSignalWithTransform<SdColor, SdColor | null | undefined>;
11
+ width: import("@angular/core").InputSignalWithTransform<string, string | null | undefined>;
12
+ height: import("@angular/core").InputSignalWithTransform<string, string | null | undefined>;
13
+ view: import("@angular/core").InputSignalWithTransform<"dialog" | "bottom-sheet" | undefined, "dialog" | "bottom-sheet" | null | undefined>;
14
+ modalClass: import("@angular/core").InputSignalWithTransform<string | Record<string, boolean> | string[], string | Record<string, boolean> | string[] | null | undefined>;
15
+ lazyLoadContent: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
16
+ sdClosed: import("@angular/core").OutputEmitterRef<void>;
17
+ isOpened: import("@angular/core").WritableSignal<boolean>;
18
+ alreadyOpened: import("@angular/core").WritableSignal<boolean>;
19
+ constructor();
20
+ open: () => void;
21
+ close: () => void;
22
+ static ɵfac: i0.ɵɵFactoryDeclaration<SdModal, never>;
23
+ static ɵcmp: i0.ɵɵComponentDeclaration<SdModal, "sd-modal", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "height": { "alias": "height"; "required": false; "isSignal": true; }; "view": { "alias": "view"; "required": false; "isSignal": true; }; "modalClass": { "alias": "modalClass"; "required": false; "isSignal": true; }; "lazyLoadContent": { "alias": "lazyLoadContent"; "required": false; "isSignal": true; }; }, { "sdClosed": "sdClosed"; }, never, ["[sdHeaderLeft]", "[sdHeaderRight]", "[sdHeader]", "*", "[sdFooterLeft]", "[sdFooterRight]", "[sdFooter]"], true, never>;
24
+ }
@@ -3333,7 +3333,7 @@ class PasteHandler extends Plugin {
3333
3333
  const normalizers = [];
3334
3334
  const hasMultiLevelListPlugin = this.editor.plugins.has('MultiLevelListEditing');
3335
3335
  const hasTablePropertiesPlugin = this.editor.plugins.has('TablePropertiesEditing');
3336
- const hasExtendedTableBlockAlignment = !!this.editor.config.get('experimentalFlags.useExtendedTableBlockAlignment');
3336
+ const hasExtendedTableBlockAlignment = true; // In CKEditor 5 v48, extended table block alignment is stable and enabled by default.
3337
3337
  normalizers.push(new PasteFromOfficeMSWordNormalizer(viewDocument, hasMultiLevelListPlugin, hasTablePropertiesPlugin, hasExtendedTableBlockAlignment));
3338
3338
  normalizers.push(new GoogleDocsNormalizer(viewDocument));
3339
3339
  normalizers.push(new GoogleSheetsNormalizer(viewDocument));