@progress/kendo-angular-editor 16.5.0 → 16.6.0-develop.10
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.
- package/NOTICE.txt +12 -19
- package/dialogs/colorpicker-dialog.component.d.ts +2 -2
- package/dialogs/file-link-dialog.component.d.ts +2 -2
- package/dialogs/font-family-dialog.component.d.ts +1 -1
- package/dialogs/font-size-dialog.component.d.ts +1 -1
- package/dialogs/format-dialog.component.d.ts +1 -1
- package/dialogs/image-dialog.component.d.ts +2 -2
- package/dialogs/insert-table-dialog.component.d.ts +1 -1
- package/dialogs/source-dialog.component.d.ts +1 -1
- package/directives.d.ts +51 -0
- package/editor.component.d.ts +7 -7
- package/editor.module.d.ts +14 -36
- package/esm2020/dialogs/colorpicker-dialog.component.mjs +7 -6
- package/esm2020/dialogs/file-link-dialog.component.mjs +12 -11
- package/esm2020/dialogs/font-family-dialog.component.mjs +7 -6
- package/esm2020/dialogs/font-size-dialog.component.mjs +7 -6
- package/esm2020/dialogs/format-dialog.component.mjs +7 -6
- package/esm2020/dialogs/image-dialog.component.mjs +11 -10
- package/esm2020/dialogs/insert-table-dialog.component.mjs +8 -6
- package/esm2020/dialogs/source-dialog.component.mjs +7 -6
- package/esm2020/directives.mjs +95 -0
- package/esm2020/editor.component.mjs +30 -30
- package/esm2020/editor.module.mjs +55 -348
- package/esm2020/index.mjs +1 -0
- package/esm2020/localization/custom-messages.component.mjs +3 -2
- package/esm2020/localization/localized-messages.directive.mjs +3 -2
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/tools/alignment/editor-align-center-button.directive.mjs +3 -2
- package/esm2020/tools/alignment/editor-align-justify-button.directive.mjs +3 -2
- package/esm2020/tools/alignment/editor-align-left-button.directive.mjs +3 -2
- package/esm2020/tools/alignment/editor-align-right-button.directive.mjs +3 -2
- package/esm2020/tools/blockquote/editor-blockquote-button.directive.mjs +3 -2
- package/esm2020/tools/colorpicker/editor-back-color.directive.mjs +3 -2
- package/esm2020/tools/colorpicker/editor-colorpicker.component.mjs +9 -8
- package/esm2020/tools/colorpicker/editor-fore-color.directive.mjs +3 -2
- package/esm2020/tools/editor-clean-formatting-button.directive.mjs +3 -2
- package/esm2020/tools/fontfamily/editor-fontfamily-dropdownlist.component.mjs +8 -7
- package/esm2020/tools/fontfamily/editor-fontfamily.component.mjs +9 -8
- package/esm2020/tools/fontsize/editor-fontsize-dropdownlist.component.mjs +6 -5
- package/esm2020/tools/fontsize/editor-fontsize.component.mjs +9 -8
- package/esm2020/tools/format/editor-format-dropdownlist.component.mjs +8 -7
- package/esm2020/tools/format/editor-format.component.mjs +8 -7
- package/esm2020/tools/history/editor-redo-button.directive.mjs +3 -2
- package/esm2020/tools/history/editor-undo-button.directive.mjs +3 -2
- package/esm2020/tools/image/editor-insert-image-button.directive.mjs +3 -2
- package/esm2020/tools/indentation/editor-indent-button.directive.mjs +3 -2
- package/esm2020/tools/indentation/editor-outdent-button.directive.mjs +3 -2
- package/esm2020/tools/link/editor-create-link-button.directive.mjs +3 -2
- package/esm2020/tools/link/editor-insert-file-button.directive.mjs +3 -2
- package/esm2020/tools/link/editor-unlink-button.directive.mjs +3 -2
- package/esm2020/tools/list/editor-insert-ordered-list-button.directive.mjs +3 -2
- package/esm2020/tools/list/editor-insert-unordered-list-button.directive.mjs +3 -2
- package/esm2020/tools/print/editor-print-button.directive.mjs +3 -2
- package/esm2020/tools/select-all/select-all-button.directive.mjs +3 -2
- package/esm2020/tools/shared/dropdown-tool.directive.mjs +5 -2
- package/esm2020/tools/source/editor-view-source-button.directive.mjs +3 -2
- package/esm2020/tools/tables/editor-add-column-after-button.directive.mjs +3 -2
- package/esm2020/tools/tables/editor-add-column-before-button.directive.mjs +3 -2
- package/esm2020/tools/tables/editor-add-row-after-button.directive.mjs +3 -2
- package/esm2020/tools/tables/editor-add-row-before-button.directive.mjs +3 -2
- package/esm2020/tools/tables/editor-delete-column-button.directive.mjs +3 -2
- package/esm2020/tools/tables/editor-delete-row-button.directive.mjs +3 -2
- package/esm2020/tools/tables/editor-delete-table-button.directive.mjs +3 -2
- package/esm2020/tools/tables/editor-insert-table-button.component.mjs +11 -9
- package/esm2020/tools/tables/editor-merge-cells-button.directive.mjs +3 -2
- package/esm2020/tools/tables/editor-split-cell-button.directive.mjs +3 -2
- package/esm2020/tools/tables/popup-table-grid.component.mjs +6 -4
- package/esm2020/tools/typographical-emphasis/editor-bold-button.directive.mjs +3 -2
- package/esm2020/tools/typographical-emphasis/editor-italic-button.directive.mjs +3 -2
- package/esm2020/tools/typographical-emphasis/editor-strikethrough-button.directive.mjs +3 -2
- package/esm2020/tools/typographical-emphasis/editor-subscript-button.directive.mjs +3 -2
- package/esm2020/tools/typographical-emphasis/editor-superscript-button.directive.mjs +3 -2
- package/esm2020/tools/typographical-emphasis/editor-underline-button.directive.mjs +3 -2
- package/fesm2015/progress-kendo-angular-editor.mjs +692 -857
- package/fesm2020/progress-kendo-angular-editor.mjs +669 -833
- package/index.d.ts +1 -0
- package/localization/custom-messages.component.d.ts +1 -1
- package/localization/localized-messages.directive.d.ts +1 -1
- package/package.json +15 -15
- package/schematics/ngAdd/index.js +4 -4
- package/tools/alignment/editor-align-center-button.directive.d.ts +1 -1
- package/tools/alignment/editor-align-justify-button.directive.d.ts +1 -1
- package/tools/alignment/editor-align-left-button.directive.d.ts +1 -1
- package/tools/alignment/editor-align-right-button.directive.d.ts +1 -1
- package/tools/blockquote/editor-blockquote-button.directive.d.ts +1 -1
- package/tools/colorpicker/editor-back-color.directive.d.ts +1 -1
- package/tools/colorpicker/editor-colorpicker.component.d.ts +3 -3
- package/tools/colorpicker/editor-fore-color.directive.d.ts +1 -1
- package/tools/editor-clean-formatting-button.directive.d.ts +1 -1
- package/tools/fontfamily/editor-fontfamily-dropdownlist.component.d.ts +1 -1
- package/tools/fontfamily/editor-fontfamily.component.d.ts +3 -3
- package/tools/fontsize/editor-fontsize-dropdownlist.component.d.ts +1 -1
- package/tools/fontsize/editor-fontsize.component.d.ts +3 -3
- package/tools/format/editor-format-dropdownlist.component.d.ts +1 -1
- package/tools/format/editor-format.component.d.ts +2 -2
- package/tools/history/editor-redo-button.directive.d.ts +1 -1
- package/tools/history/editor-undo-button.directive.d.ts +1 -1
- package/tools/image/editor-insert-image-button.directive.d.ts +1 -1
- package/tools/indentation/editor-indent-button.directive.d.ts +1 -1
- package/tools/indentation/editor-outdent-button.directive.d.ts +1 -1
- package/tools/link/editor-create-link-button.directive.d.ts +1 -1
- package/tools/link/editor-insert-file-button.directive.d.ts +1 -1
- package/tools/link/editor-unlink-button.directive.d.ts +1 -1
- package/tools/list/editor-insert-ordered-list-button.directive.d.ts +1 -1
- package/tools/list/editor-insert-unordered-list-button.directive.d.ts +1 -1
- package/tools/print/editor-print-button.directive.d.ts +1 -1
- package/tools/select-all/select-all-button.directive.d.ts +1 -1
- package/tools/shared/dropdown-tool.directive.d.ts +1 -1
- package/tools/source/editor-view-source-button.directive.d.ts +1 -1
- package/tools/tables/editor-add-column-after-button.directive.d.ts +1 -1
- package/tools/tables/editor-add-column-before-button.directive.d.ts +1 -1
- package/tools/tables/editor-add-row-after-button.directive.d.ts +1 -1
- package/tools/tables/editor-add-row-before-button.directive.d.ts +1 -1
- package/tools/tables/editor-delete-column-button.directive.d.ts +1 -1
- package/tools/tables/editor-delete-row-button.directive.d.ts +1 -1
- package/tools/tables/editor-delete-table-button.directive.d.ts +1 -1
- package/tools/tables/editor-insert-table-button.component.d.ts +3 -3
- package/tools/tables/editor-merge-cells-button.directive.d.ts +1 -1
- package/tools/tables/editor-split-cell-button.directive.d.ts +1 -1
- package/tools/tables/popup-table-grid.component.d.ts +1 -1
- package/tools/typographical-emphasis/editor-bold-button.directive.d.ts +1 -1
- package/tools/typographical-emphasis/editor-italic-button.directive.d.ts +1 -1
- package/tools/typographical-emphasis/editor-strikethrough-button.directive.d.ts +1 -1
- package/tools/typographical-emphasis/editor-subscript-button.directive.d.ts +1 -1
- package/tools/typographical-emphasis/editor-superscript-button.directive.d.ts +1 -1
- package/tools/typographical-emphasis/editor-underline-button.directive.d.ts +1 -1
package/NOTICE.txt
CHANGED
|
@@ -22,8 +22,8 @@ DefinitelyTyped.org | @types/prosemirror-tables | 0.9.1 - Open Source | MIT-styl
|
|
|
22
22
|
DefinitelyTyped.org | @types/prosemirror-transform | 1.2.9 - Open Source | MIT-style License
|
|
23
23
|
DefinitelyTyped.org | @types/prosemirror-view | 1.11.4 - Open Source | MIT-style License
|
|
24
24
|
Isaac Z. Schlueter | glob | 7.1.3 - Open Source | ISC-style License
|
|
25
|
-
Jorik Tangelder (Eight Media) | HammerJS | 2.0.8 - Open Source | MIT-style License
|
|
26
25
|
Matt Mueller | cheerio | 0.22 - Open Source | MIT-style License
|
|
26
|
+
Mozilla Foundation | pdf.js | 3.11.174 - Open Source | Apache Software License Version 2.0
|
|
27
27
|
Progress Software Corporation | Kendo UI Licensing CLI | 1.1 - Proprietary |
|
|
28
28
|
Progress Software Corporation | jszip-esm | 1.0.0 - Open Source | MIT-style License
|
|
29
29
|
Progress Software Corporation | pako-esm | 1.0.0 - Open Source | MIT-style License
|
|
@@ -51,7 +51,7 @@ Vitaly Puzrin | js-yaml | 3.14.0 - Open Source | MIT-style License
|
|
|
51
51
|
|
|
52
52
|
(1) The Apache Software License, Version 2.0:
|
|
53
53
|
|
|
54
|
-
Progress Kendo UI for Angular 2024 incorporates TsLib v1.9.3. Such technology is subject to the following terms and conditions: Apache Software License Version 2.0. Copyright 2001-2004 The Apache Software Foundation. Such Apache Technology is subject to the following terms and conditions: The Apache Software License, Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
|
|
54
|
+
Progress Kendo UI for Angular 2024 incorporates TsLib v1.9.3 and pdf.js v3.11.174. Such technologies are subject to the following terms and conditions: Apache Software License Version 2.0. Copyright 2001-2004 The Apache Software Foundation. Such Apache Technology is subject to the following terms and conditions: The Apache Software License, Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
|
|
55
55
|
-------------------------------------------------------------------------
|
|
56
56
|
|
|
57
57
|
Contents of COPYRIGHTNOTICE text file for Tslib v1.9.3:
|
|
@@ -94,62 +94,55 @@ https://creativecommons.org/licenses/by-sa/4.0/
|
|
|
94
94
|
|
|
95
95
|
(4) MIT-Style Licenses:
|
|
96
96
|
|
|
97
|
-
(a) Progress Kendo UI for Angular 2024 incorporates
|
|
98
|
-
The MIT License (MIT)
|
|
99
|
-
Copyright (C) 2011-2017 by Jorik Tangelder (Eight Media)
|
|
100
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
101
|
-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
102
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
103
|
-
|
|
104
|
-
(b) Progress Kendo UI for Angular 2024 incorporates prosemirror-commands v1*, prosemirror-cursor v1*, prosemirror-gapcursor v1*, prosemirror-history v1*, prosemirror-inputrules v1*, prosemirror-keymap v1*, prosemirror-model v1*, prosemirror-schema-list v1*, prosemirror-state v1*, prosemirror-tables v0.7*, prosemirror-transform v1*, and prosemirror-view v1*. Such technologies are subject to the following terms and conditions:
|
|
97
|
+
(a) Progress Kendo UI for Angular 2024 incorporates prosemirror-commands v1*, prosemirror-cursor v1*, prosemirror-gapcursor v1*, prosemirror-history v1*, prosemirror-inputrules v1*, prosemirror-keymap v1*, prosemirror-model v1*, prosemirror-schema-list v1*, prosemirror-state v1*, prosemirror-tables v0.7*, prosemirror-transform v1*, and prosemirror-view v1*. Such technologies are subject to the following terms and conditions:
|
|
105
98
|
Copyright (C) 2015-2017 by Marijn Haverbeke <marijnh@gmail.com> and others
|
|
106
99
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
107
100
|
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
108
101
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
109
102
|
|
|
110
|
-
(
|
|
103
|
+
(b) Progress Kendo UI for Angular 2024 incorporates cheerio v0.2.2. Such technology is subject to the following terms and conditions:
|
|
111
104
|
MIT License
|
|
112
105
|
Copyright (c) 2016 Matt Mueller
|
|
113
106
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
114
107
|
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
115
108
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
116
109
|
|
|
117
|
-
(
|
|
110
|
+
(c) Progress Kendo UI for Angular 2024 incorporates @types/prosemirror-commands v1*, @types/prosemirror-dropcursor v1*, @types/prosemirror-gapcursor v1*, @types/prosemirror-history v1*, @types/prosemirror-inputrules v1*, @types/prosemirror-keymap v1*, @types/prosemirror-model v1*, @types/prosemirror-schema-list v1*, @types/prosemirror-state v1*, @types/prosemirror-tables v0.9*, @types/prosemirror-transform v1*, and @types/prosemirror-view v1*. Such technologies are subject to the following terms and conditions:
|
|
118
111
|
This project is licensed under the MIT license.
|
|
119
112
|
Copyrights are respective of each contributor listed at the beginning of each definition file.
|
|
120
113
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
121
114
|
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
122
115
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
123
116
|
|
|
124
|
-
(
|
|
117
|
+
(d) Progress Kendo UI for Angular 2024 incorporates pako-esm v1.0.0. Such technology is subject to the following terms and conditions:
|
|
125
118
|
Copyright © 2020 Progress Software Corporation and/or one of its subsidiaries or affiliates. All rights reserved. (as modified)
|
|
126
119
|
Copyright (C) 2014-2017 by Vitaly Puzrin and Andrei Tuputcyn
|
|
127
120
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
128
121
|
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
129
122
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
130
123
|
|
|
131
|
-
(
|
|
124
|
+
(e) Progress Kendo UI for Angular 2024 incorporates jszip-esm v1.0.0. Such technology is subject to the following terms and conditions:
|
|
132
125
|
Copyright © 2020 Progress Software Corporation and/or one of its subsidiaries or affiliates. All rights reserved. (as modified)
|
|
133
|
-
Copyright (c) 2009-2016 Stuart Knightley, David Duponchel, Franz Buchinger,
|
|
126
|
+
Copyright (c) 2009-2016 Stuart Knightley, David Duponchel, Franz Buchinger, AntÛnio Afonso
|
|
134
127
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
135
128
|
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
136
129
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
137
130
|
|
|
138
|
-
(
|
|
131
|
+
(r) Progress Kendo UI for Angular 2024 incorporates data.task v3.1.2. Such technology is subject to the following terms and conditions:
|
|
139
132
|
The MIT License
|
|
140
133
|
Copyright (c) 2013-2015 Quildreen Motta
|
|
141
134
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
142
135
|
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
143
136
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
144
137
|
|
|
145
|
-
(
|
|
138
|
+
(g) Progress Kendo UI for Angular 2024 incorporates ramda v0.23. Such technology is subject to the following terms and conditions:
|
|
146
139
|
The MIT License (MIT)
|
|
147
140
|
Copyright (c) 2013-2020 Scott Sauyet and Michael Hurley
|
|
148
141
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
149
142
|
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
150
143
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
151
144
|
|
|
152
|
-
(
|
|
145
|
+
(h) Progress Kendo UI for Angular 2024 incorporates js-yaml v3.14.0. Such technology is subject to the following terms and conditions:
|
|
153
146
|
(The MIT License)
|
|
154
147
|
Copyright (C) 2011-2015 by Vitaly Puzrin
|
|
155
148
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
@@ -204,4 +197,4 @@ written authorization of the copyright holder.
|
|
|
204
197
|
NOTICE FROM PROGRESS SOFTWARE CORPORATION: Additional notices may be included in the release notes or other documentation that accompanies updates received in connection with support of the Product.
|
|
205
198
|
|
|
206
199
|
|
|
207
|
-
Updated
|
|
200
|
+
Updated 30.Jul.2024
|
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { DialogRef, DialogContentBase } from '@progress/kendo-angular-dialog';
|
|
6
|
+
import { SVGIcon } from '@progress/kendo-svg-icons';
|
|
6
7
|
import { EditorLocalizationService } from '../localization/editor-localization.service';
|
|
7
8
|
import { EditorComponent } from '../editor.component';
|
|
8
9
|
import { PaletteSettings, ActiveColorClickEvent, ColorPickerComponent, ColorPickerView } from '@progress/kendo-angular-inputs';
|
|
9
|
-
import { SVGIcon } from '@progress/kendo-svg-icons';
|
|
10
10
|
import * as i0 from "@angular/core";
|
|
11
11
|
/**
|
|
12
12
|
* @hidden
|
|
@@ -32,5 +32,5 @@ export declare class ColorPickerDialogComponent extends DialogContentBase {
|
|
|
32
32
|
setData(args: any): void;
|
|
33
33
|
textFor(key: string): string;
|
|
34
34
|
static ɵfac: i0.ɵɵFactoryDeclaration<ColorPickerDialogComponent, never>;
|
|
35
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ColorPickerDialogComponent, "ng-component", never, { "editor": "editor"; }, {}, never, never,
|
|
35
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ColorPickerDialogComponent, "ng-component", never, { "editor": "editor"; }, {}, never, never, true, never>;
|
|
36
36
|
}
|
|
@@ -4,10 +4,10 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { FormGroup } from '@angular/forms';
|
|
6
6
|
import { DialogContentBase, DialogRef } from '@progress/kendo-angular-dialog';
|
|
7
|
+
import { TextBoxComponent } from '@progress/kendo-angular-inputs';
|
|
7
8
|
import { EditorState } from '@progress/kendo-editor-common';
|
|
8
9
|
import { DialogCommand } from '../common/commands';
|
|
9
10
|
import { EditorLocalizationService } from '../localization/editor-localization.service';
|
|
10
|
-
import { TextBoxComponent } from '@progress/kendo-angular-inputs';
|
|
11
11
|
import * as i0 from "@angular/core";
|
|
12
12
|
/**
|
|
13
13
|
* @hidden
|
|
@@ -29,5 +29,5 @@ export declare class FileLinkDialogComponent extends DialogContentBase {
|
|
|
29
29
|
private setLinkText;
|
|
30
30
|
private getData;
|
|
31
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<FileLinkDialogComponent, never>;
|
|
32
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FileLinkDialogComponent, "ng-component", never, { "editor": "editor"; "command": "command"; }, {}, never, never,
|
|
32
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FileLinkDialogComponent, "ng-component", never, { "editor": "editor"; "command": "command"; }, {}, never, never, true, never>;
|
|
33
33
|
}
|
|
@@ -27,5 +27,5 @@ export declare class FontFamilyDialogComponent extends DialogContentBase {
|
|
|
27
27
|
setData(args: any): void;
|
|
28
28
|
textFor(key: string): string;
|
|
29
29
|
static ɵfac: i0.ɵɵFactoryDeclaration<FontFamilyDialogComponent, never>;
|
|
30
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FontFamilyDialogComponent, "ng-component", never, { "editor": "editor"; }, {}, never, never,
|
|
30
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FontFamilyDialogComponent, "ng-component", never, { "editor": "editor"; }, {}, never, never, true, never>;
|
|
31
31
|
}
|
|
@@ -27,5 +27,5 @@ export declare class FontSizeDialogComponent extends DialogContentBase {
|
|
|
27
27
|
setData(args: any): void;
|
|
28
28
|
textFor(key: string): string;
|
|
29
29
|
static ɵfac: i0.ɵɵFactoryDeclaration<FontSizeDialogComponent, never>;
|
|
30
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FontSizeDialogComponent, "ng-component", never, { "editor": "editor"; }, {}, never, never,
|
|
30
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FontSizeDialogComponent, "ng-component", never, { "editor": "editor"; }, {}, never, never, true, never>;
|
|
31
31
|
}
|
|
@@ -27,5 +27,5 @@ export declare class FormatDialogComponent extends DialogContentBase {
|
|
|
27
27
|
setData(args: any): void;
|
|
28
28
|
textFor(key: string): string;
|
|
29
29
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormatDialogComponent, never>;
|
|
30
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FormatDialogComponent, "ng-component", never, { "editor": "editor"; }, {}, never, never,
|
|
30
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FormatDialogComponent, "ng-component", never, { "editor": "editor"; }, {}, never, never, true, never>;
|
|
31
31
|
}
|
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
import { FormControl, FormGroup } from '@angular/forms';
|
|
6
6
|
import { DialogRef, DialogContentBase } from '@progress/kendo-angular-dialog';
|
|
7
7
|
import { EditorState } from '@progress/kendo-editor-common';
|
|
8
|
+
import { TextBoxComponent } from '@progress/kendo-angular-inputs';
|
|
8
9
|
import { ImageData } from '../common/image-data.interface';
|
|
9
10
|
import { EditorLocalizationService } from '../localization/editor-localization.service';
|
|
10
|
-
import { TextBoxComponent } from '@progress/kendo-angular-inputs';
|
|
11
11
|
import * as i0 from "@angular/core";
|
|
12
12
|
/**
|
|
13
13
|
* @hidden
|
|
@@ -36,5 +36,5 @@ export declare class ImageDialogComponent extends DialogContentBase {
|
|
|
36
36
|
private getData;
|
|
37
37
|
private normalizeDimension;
|
|
38
38
|
static ɵfac: i0.ɵɵFactoryDeclaration<ImageDialogComponent, never>;
|
|
39
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ImageDialogComponent, "ng-component", never, { "editor": "editor"; }, {}, never, never,
|
|
39
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ImageDialogComponent, "ng-component", never, { "editor": "editor"; }, {}, never, never, true, never>;
|
|
40
40
|
}
|
|
@@ -20,5 +20,5 @@ export declare class InsertTableDialogComponent extends DialogContentBase {
|
|
|
20
20
|
setData(args: any): void;
|
|
21
21
|
textFor(key: string): string;
|
|
22
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<InsertTableDialogComponent, never>;
|
|
23
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InsertTableDialogComponent, "ng-component", never, { "editor": "editor"; }, {}, never, never,
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InsertTableDialogComponent, "ng-component", never, { "editor": "editor"; }, {}, never, never, true, never>;
|
|
24
24
|
}
|
|
@@ -23,5 +23,5 @@ export declare class SourceDialogComponent extends DialogContentBase {
|
|
|
23
23
|
textFor(key: string): string;
|
|
24
24
|
private indent;
|
|
25
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<SourceDialogComponent, never>;
|
|
26
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SourceDialogComponent, "ng-component", never, { "editor": "editor"; }, {}, never, never,
|
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SourceDialogComponent, "ng-component", never, { "editor": "editor"; }, {}, never, never, true, never>;
|
|
27
27
|
}
|
package/directives.d.ts
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
import { EditorComponent } from './editor.component';
|
|
6
|
+
import { EditorFormatComponent } from './tools/format/editor-format.component';
|
|
7
|
+
import { EditorFontSizeComponent } from './tools/fontsize/editor-fontsize.component';
|
|
8
|
+
import { EditorFontFamilyComponent } from './tools/fontfamily/editor-fontfamily.component';
|
|
9
|
+
import { EditorColorPickerComponent } from './tools/colorpicker/editor-colorpicker.component';
|
|
10
|
+
import { EditorInsertTableButtonComponent } from './tools/tables/editor-insert-table-button.component';
|
|
11
|
+
import { EditorAlignLeftButtonDirective } from './tools/alignment/editor-align-left-button.directive';
|
|
12
|
+
import { EditorAlignCenterButtonDirective } from './tools/alignment/editor-align-center-button.directive';
|
|
13
|
+
import { EditorAlignRightButtonDirective } from './tools/alignment/editor-align-right-button.directive';
|
|
14
|
+
import { EditorAlignJustifyButtonDirective } from './tools/alignment/editor-align-justify-button.directive';
|
|
15
|
+
import { EditorBlockquoteDirective } from './tools/blockquote/editor-blockquote-button.directive';
|
|
16
|
+
import { EditorRedoButtonDirective } from './tools/history/editor-redo-button.directive';
|
|
17
|
+
import { EditorUndoButtonDirective } from './tools/history/editor-undo-button.directive';
|
|
18
|
+
import { EditorInsertImageButtonDirective } from './tools/image/editor-insert-image-button.directive';
|
|
19
|
+
import { EditorIndentButtonDirective } from './tools/indentation/editor-indent-button.directive';
|
|
20
|
+
import { EditorOutdentButtonDirective } from './tools/indentation/editor-outdent-button.directive';
|
|
21
|
+
import { EditorCreateLinkButtonDirective } from './tools/link/editor-create-link-button.directive';
|
|
22
|
+
import { EditorUnlinkButtonDirective } from './tools/link/editor-unlink-button.directive';
|
|
23
|
+
import { EditorInsertOrderedListButtonDirective } from './tools/list/editor-insert-ordered-list-button.directive';
|
|
24
|
+
import { EditorInsertUnorderedListButtonDirective } from './tools/list/editor-insert-unordered-list-button.directive';
|
|
25
|
+
import { EditorViewSourceButtonDirective } from './tools/source/editor-view-source-button.directive';
|
|
26
|
+
import { EditorBoldButtonDirective } from './tools/typographical-emphasis/editor-bold-button.directive';
|
|
27
|
+
import { EditorItalicButtonDirective } from './tools/typographical-emphasis/editor-italic-button.directive';
|
|
28
|
+
import { EditorUnderlineButtonDirective } from './tools/typographical-emphasis/editor-underline-button.directive';
|
|
29
|
+
import { EditorStrikethroughButtonDirective } from './tools/typographical-emphasis/editor-strikethrough-button.directive';
|
|
30
|
+
import { EditorSubscriptButtonDirective } from './tools/typographical-emphasis/editor-subscript-button.directive';
|
|
31
|
+
import { EditorSuperscriptButtonDirective } from './tools/typographical-emphasis/editor-superscript-button.directive';
|
|
32
|
+
import { EditorInsertFileButtonDirective } from './tools/link/editor-insert-file-button.directive';
|
|
33
|
+
import { EditorForeColorDirective } from './tools/colorpicker/editor-fore-color.directive';
|
|
34
|
+
import { EditorBackColorDirective } from './tools/colorpicker/editor-back-color.directive';
|
|
35
|
+
import { EditorCleanFormattingButtonDirective } from './tools/editor-clean-formatting-button.directive';
|
|
36
|
+
import { EditorAddColumnBeforeButtonDirective } from './tools/tables/editor-add-column-before-button.directive';
|
|
37
|
+
import { EditorAddColumnAfterButtonDirective } from './tools/tables/editor-add-column-after-button.directive';
|
|
38
|
+
import { EditorAddRowBeforeButtonDirective } from './tools/tables/editor-add-row-before-button.directive';
|
|
39
|
+
import { EditorAddRowAfterButtonDirective } from './tools/tables/editor-add-row-after-button.directive';
|
|
40
|
+
import { EditorDeleteColumnButtonDirective } from './tools/tables/editor-delete-column-button.directive';
|
|
41
|
+
import { EditorDeleteRowButtonDirective } from './tools/tables/editor-delete-row-button.directive';
|
|
42
|
+
import { EditorDeleteTableButtonDirective } from './tools/tables/editor-delete-table-button.directive';
|
|
43
|
+
import { CustomMessagesComponent } from './localization/custom-messages.component';
|
|
44
|
+
import { EditorPrintDirective } from './tools/print/editor-print-button.directive';
|
|
45
|
+
import { EditorSelectAllButtonDirective } from './tools/select-all/select-all-button.directive';
|
|
46
|
+
import { EditorSplitCellButtonDirective } from './tools/tables/editor-split-cell-button.directive';
|
|
47
|
+
import { EditorMergeCellsButtonDirective } from './tools/tables/editor-merge-cells-button.directive';
|
|
48
|
+
/**
|
|
49
|
+
* Utility array that contains all `Editor` related components and directives
|
|
50
|
+
*/
|
|
51
|
+
export declare const KENDO_EDITOR: readonly [typeof EditorComponent, typeof EditorAlignLeftButtonDirective, typeof EditorAlignCenterButtonDirective, typeof EditorAlignRightButtonDirective, typeof EditorAlignJustifyButtonDirective, typeof EditorInsertFileButtonDirective, typeof EditorRedoButtonDirective, typeof EditorUndoButtonDirective, typeof EditorInsertImageButtonDirective, typeof EditorIndentButtonDirective, typeof EditorOutdentButtonDirective, typeof EditorCreateLinkButtonDirective, typeof EditorUnlinkButtonDirective, typeof EditorInsertOrderedListButtonDirective, typeof EditorInsertUnorderedListButtonDirective, typeof EditorViewSourceButtonDirective, typeof EditorBoldButtonDirective, typeof EditorItalicButtonDirective, typeof EditorUnderlineButtonDirective, typeof EditorStrikethroughButtonDirective, typeof EditorSubscriptButtonDirective, typeof EditorSuperscriptButtonDirective, typeof EditorForeColorDirective, typeof EditorBackColorDirective, typeof EditorCleanFormattingButtonDirective, typeof EditorAddColumnBeforeButtonDirective, typeof EditorAddColumnAfterButtonDirective, typeof EditorAddRowBeforeButtonDirective, typeof EditorAddRowAfterButtonDirective, typeof EditorDeleteColumnButtonDirective, typeof EditorDeleteRowButtonDirective, typeof EditorDeleteTableButtonDirective, typeof CustomMessagesComponent, typeof EditorPrintDirective, typeof EditorSelectAllButtonDirective, typeof EditorBlockquoteDirective, typeof EditorFontSizeComponent, typeof EditorFontFamilyComponent, typeof EditorFormatComponent, typeof EditorColorPickerComponent, typeof EditorInsertTableButtonComponent, typeof EditorMergeCellsButtonDirective, typeof EditorSplitCellButtonDirective];
|
package/editor.component.d.ts
CHANGED
|
@@ -8,9 +8,9 @@ import { BehaviorSubject, Subject } from 'rxjs';
|
|
|
8
8
|
import { ToolBarComponent } from '@progress/kendo-angular-toolbar';
|
|
9
9
|
import { DialogService } from '@progress/kendo-angular-dialog';
|
|
10
10
|
import { EditorView, Schema } from '@progress/kendo-editor-common';
|
|
11
|
+
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
11
12
|
import { Direction } from './common/direction';
|
|
12
13
|
import { EditorCommand, DialogCommand } from './common/commands';
|
|
13
|
-
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
14
14
|
import { PasteCleanupSettings } from './common/paste-cleanup-settings';
|
|
15
15
|
import { PluginsFn } from './common/plugins-function';
|
|
16
16
|
import { ApplyToWordOptions } from './common/apply-to-word-options';
|
|
@@ -33,7 +33,7 @@ export declare class EditorComponent implements AfterViewInit, ControlValueAcces
|
|
|
33
33
|
private toolsService;
|
|
34
34
|
private renderer;
|
|
35
35
|
/**
|
|
36
|
-
* Sets the value of the Editor ([see example](
|
|
36
|
+
* Sets the value of the Editor ([see example](slug:overview_editor)).
|
|
37
37
|
*/
|
|
38
38
|
set value(value: string);
|
|
39
39
|
get value(): string;
|
|
@@ -101,23 +101,23 @@ export declare class EditorComponent implements AfterViewInit, ControlValueAcces
|
|
|
101
101
|
resizable: boolean | EditorResizableOptions;
|
|
102
102
|
/**
|
|
103
103
|
* Fires each time the value of the Editor is changed upon user interaction—
|
|
104
|
-
* for example, when the value is updated through typing in the content area or using some of the Editor tools ([see example](
|
|
104
|
+
* for example, when the value is updated through typing in the content area or using some of the Editor tools ([see example](slug:events_editor)).
|
|
105
105
|
* When the value of the Editor is programmatically changed through its API (`ngModel`) or form binding (`formControl`),
|
|
106
106
|
* the `valueChange` event is not triggered because it might cause a mix-up with the
|
|
107
107
|
* built-in `valueChange` mechanisms of the `ngModel` or `formControl` bindings.
|
|
108
108
|
*/
|
|
109
109
|
valueChange: EventEmitter<string>;
|
|
110
110
|
/**
|
|
111
|
-
* Fires when the content area of the Editor is focused ([see example](
|
|
111
|
+
* Fires when the content area of the Editor is focused ([see example](slug:events_editor)).
|
|
112
112
|
*/
|
|
113
113
|
onFocus: EventEmitter<undefined>;
|
|
114
114
|
/**
|
|
115
|
-
* Fires when the user performs paste in the content area of the Editor ([see example](
|
|
115
|
+
* Fires when the user performs paste in the content area of the Editor ([see example](slug:events_editor)).
|
|
116
116
|
* The event is preventable. If you cancel it, the Editor content will not change.
|
|
117
117
|
*/
|
|
118
118
|
paste: EventEmitter<EditorPasteEvent>;
|
|
119
119
|
/**
|
|
120
|
-
* Fires when the content area of the Editor is blurred ([see example](
|
|
120
|
+
* Fires when the content area of the Editor is blurred ([see example](slug:events_editor)).
|
|
121
121
|
*/
|
|
122
122
|
onBlur: EventEmitter<undefined>;
|
|
123
123
|
hostClass: boolean;
|
|
@@ -258,5 +258,5 @@ export declare class EditorComponent implements AfterViewInit, ControlValueAcces
|
|
|
258
258
|
private onPaste;
|
|
259
259
|
private dispatchPasteEvent;
|
|
260
260
|
static ɵfac: i0.ɵɵFactoryDeclaration<EditorComponent, never>;
|
|
261
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EditorComponent, "kendo-editor", never, { "value": "value"; "disabled": "disabled"; "readonly": "readonly"; "iframe": "iframe"; "iframeCss": "iframeCss"; "applyToWord": "applyToWord"; "schema": "schema"; "plugins": "plugins"; "placeholder": "placeholder"; "preserveWhitespace": "preserveWhitespace"; "pasteCleanupSettings": "pasteCleanupSettings"; "resizable": "resizable"; }, { "valueChange": "valueChange"; "onFocus": "focus"; "paste": "paste"; "onBlur": "blur"; }, ["userToolBarComponent", "userToolBarElement"], ["kendo-toolbar"],
|
|
261
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EditorComponent, "kendo-editor", never, { "value": "value"; "disabled": "disabled"; "readonly": "readonly"; "iframe": "iframe"; "iframeCss": "iframeCss"; "applyToWord": "applyToWord"; "schema": "schema"; "plugins": "plugins"; "placeholder": "placeholder"; "preserveWhitespace": "preserveWhitespace"; "pasteCleanupSettings": "pasteCleanupSettings"; "resizable": "resizable"; }, { "valueChange": "valueChange"; "onFocus": "focus"; "paste": "paste"; "onBlur": "blur"; }, ["userToolBarComponent", "userToolBarElement"], ["kendo-toolbar"], true, never>;
|
|
262
262
|
}
|
package/editor.module.d.ts
CHANGED
|
@@ -35,41 +35,19 @@ import * as i29 from "./tools/tables/editor-add-row-after-button.directive";
|
|
|
35
35
|
import * as i30 from "./tools/tables/editor-delete-column-button.directive";
|
|
36
36
|
import * as i31 from "./tools/tables/editor-delete-row-button.directive";
|
|
37
37
|
import * as i32 from "./tools/tables/editor-delete-table-button.directive";
|
|
38
|
-
import * as i33 from "./
|
|
39
|
-
import * as i34 from "./tools/
|
|
40
|
-
import * as i35 from "./
|
|
41
|
-
import * as i36 from "./
|
|
42
|
-
import * as i37 from "./tools/
|
|
43
|
-
import * as i38 from "./tools/
|
|
44
|
-
import * as i39 from "./tools/
|
|
45
|
-
import * as i40 from "./tools/
|
|
46
|
-
import * as i41 from "./tools/
|
|
47
|
-
import * as i42 from "./tools/
|
|
48
|
-
import * as i43 from "./tools/
|
|
49
|
-
import * as i44 from "
|
|
50
|
-
import * as i45 from "
|
|
51
|
-
import * as i46 from "./dialogs/file-link-dialog.component";
|
|
52
|
-
import * as i47 from "./dialogs/image-dialog.component";
|
|
53
|
-
import * as i48 from "./dialogs/source-dialog.component";
|
|
54
|
-
import * as i49 from "./dialogs/format-dialog.component";
|
|
55
|
-
import * as i50 from "./dialogs/colorpicker-dialog.component";
|
|
56
|
-
import * as i51 from "./dialogs/font-family-dialog.component";
|
|
57
|
-
import * as i52 from "./dialogs/font-size-dialog.component";
|
|
58
|
-
import * as i53 from "./dialogs/insert-table-dialog.component";
|
|
59
|
-
import * as i54 from "./tools/tables/popup-table-grid.component";
|
|
60
|
-
import * as i55 from "./tools/format/editor-format-dropdownlist.component";
|
|
61
|
-
import * as i56 from "./tools/fontfamily/editor-fontfamily-dropdownlist.component";
|
|
62
|
-
import * as i57 from "./tools/fontsize/editor-fontsize-dropdownlist.component";
|
|
63
|
-
import * as i58 from "@angular/common";
|
|
64
|
-
import * as i59 from "@angular/forms";
|
|
65
|
-
import * as i60 from "@progress/kendo-angular-buttons";
|
|
66
|
-
import * as i61 from "@progress/kendo-angular-inputs";
|
|
67
|
-
import * as i62 from "@progress/kendo-angular-dialog";
|
|
68
|
-
import * as i63 from "@progress/kendo-angular-dropdowns";
|
|
69
|
-
import * as i64 from "@progress/kendo-angular-icons";
|
|
70
|
-
import * as i65 from "@progress/kendo-angular-toolbar";
|
|
71
|
-
import * as i66 from "@progress/kendo-angular-label";
|
|
72
|
-
import * as i67 from "@progress/kendo-angular-common";
|
|
38
|
+
import * as i33 from "./localization/custom-messages.component";
|
|
39
|
+
import * as i34 from "./tools/print/editor-print-button.directive";
|
|
40
|
+
import * as i35 from "./tools/select-all/select-all-button.directive";
|
|
41
|
+
import * as i36 from "./tools/blockquote/editor-blockquote-button.directive";
|
|
42
|
+
import * as i37 from "./tools/fontsize/editor-fontsize.component";
|
|
43
|
+
import * as i38 from "./tools/fontfamily/editor-fontfamily.component";
|
|
44
|
+
import * as i39 from "./tools/format/editor-format.component";
|
|
45
|
+
import * as i40 from "./tools/colorpicker/editor-colorpicker.component";
|
|
46
|
+
import * as i41 from "./tools/tables/editor-insert-table-button.component";
|
|
47
|
+
import * as i42 from "./tools/tables/editor-merge-cells-button.directive";
|
|
48
|
+
import * as i43 from "./tools/tables/editor-split-cell-button.directive";
|
|
49
|
+
import * as i44 from "@angular/forms";
|
|
50
|
+
import * as i45 from "@progress/kendo-angular-toolbar";
|
|
73
51
|
/**
|
|
74
52
|
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi']) definition for the Editor component.
|
|
75
53
|
*
|
|
@@ -90,6 +68,6 @@ import * as i67 from "@progress/kendo-angular-common";
|
|
|
90
68
|
*/
|
|
91
69
|
export declare class EditorModule {
|
|
92
70
|
static ɵfac: i0.ɵɵFactoryDeclaration<EditorModule, never>;
|
|
93
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<EditorModule, [typeof i1.EditorComponent, typeof i2.EditorAlignLeftButtonDirective, typeof i3.EditorAlignCenterButtonDirective, typeof i4.EditorAlignRightButtonDirective, typeof i5.EditorAlignJustifyButtonDirective, typeof i6.EditorInsertFileButtonDirective, typeof i7.EditorRedoButtonDirective, typeof i8.EditorUndoButtonDirective, typeof i9.EditorInsertImageButtonDirective, typeof i10.EditorIndentButtonDirective, typeof i11.EditorOutdentButtonDirective, typeof i12.EditorCreateLinkButtonDirective, typeof i13.EditorUnlinkButtonDirective, typeof i14.EditorInsertOrderedListButtonDirective, typeof i15.EditorInsertUnorderedListButtonDirective, typeof i16.EditorViewSourceButtonDirective, typeof i17.EditorBoldButtonDirective, typeof i18.EditorItalicButtonDirective, typeof i19.EditorUnderlineButtonDirective, typeof i20.EditorStrikethroughButtonDirective, typeof i21.EditorSubscriptButtonDirective, typeof i22.EditorSuperscriptButtonDirective, typeof i23.EditorForeColorDirective, typeof i24.EditorBackColorDirective, typeof i25.EditorCleanFormattingButtonDirective, typeof i26.EditorAddColumnBeforeButtonDirective, typeof i27.EditorAddColumnAfterButtonDirective, typeof i28.EditorAddRowBeforeButtonDirective, typeof i29.EditorAddRowAfterButtonDirective, typeof i30.EditorDeleteColumnButtonDirective, typeof i31.EditorDeleteRowButtonDirective, typeof i32.EditorDeleteTableButtonDirective, typeof i33.
|
|
71
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<EditorModule, never, [typeof i1.EditorComponent, typeof i2.EditorAlignLeftButtonDirective, typeof i3.EditorAlignCenterButtonDirective, typeof i4.EditorAlignRightButtonDirective, typeof i5.EditorAlignJustifyButtonDirective, typeof i6.EditorInsertFileButtonDirective, typeof i7.EditorRedoButtonDirective, typeof i8.EditorUndoButtonDirective, typeof i9.EditorInsertImageButtonDirective, typeof i10.EditorIndentButtonDirective, typeof i11.EditorOutdentButtonDirective, typeof i12.EditorCreateLinkButtonDirective, typeof i13.EditorUnlinkButtonDirective, typeof i14.EditorInsertOrderedListButtonDirective, typeof i15.EditorInsertUnorderedListButtonDirective, typeof i16.EditorViewSourceButtonDirective, typeof i17.EditorBoldButtonDirective, typeof i18.EditorItalicButtonDirective, typeof i19.EditorUnderlineButtonDirective, typeof i20.EditorStrikethroughButtonDirective, typeof i21.EditorSubscriptButtonDirective, typeof i22.EditorSuperscriptButtonDirective, typeof i23.EditorForeColorDirective, typeof i24.EditorBackColorDirective, typeof i25.EditorCleanFormattingButtonDirective, typeof i26.EditorAddColumnBeforeButtonDirective, typeof i27.EditorAddColumnAfterButtonDirective, typeof i28.EditorAddRowBeforeButtonDirective, typeof i29.EditorAddRowAfterButtonDirective, typeof i30.EditorDeleteColumnButtonDirective, typeof i31.EditorDeleteRowButtonDirective, typeof i32.EditorDeleteTableButtonDirective, typeof i33.CustomMessagesComponent, typeof i34.EditorPrintDirective, typeof i35.EditorSelectAllButtonDirective, typeof i36.EditorBlockquoteDirective, typeof i37.EditorFontSizeComponent, typeof i38.EditorFontFamilyComponent, typeof i39.EditorFormatComponent, typeof i40.EditorColorPickerComponent, typeof i41.EditorInsertTableButtonComponent, typeof i42.EditorMergeCellsButtonDirective, typeof i43.EditorSplitCellButtonDirective], [typeof i1.EditorComponent, typeof i2.EditorAlignLeftButtonDirective, typeof i3.EditorAlignCenterButtonDirective, typeof i4.EditorAlignRightButtonDirective, typeof i5.EditorAlignJustifyButtonDirective, typeof i6.EditorInsertFileButtonDirective, typeof i7.EditorRedoButtonDirective, typeof i8.EditorUndoButtonDirective, typeof i9.EditorInsertImageButtonDirective, typeof i10.EditorIndentButtonDirective, typeof i11.EditorOutdentButtonDirective, typeof i12.EditorCreateLinkButtonDirective, typeof i13.EditorUnlinkButtonDirective, typeof i14.EditorInsertOrderedListButtonDirective, typeof i15.EditorInsertUnorderedListButtonDirective, typeof i16.EditorViewSourceButtonDirective, typeof i17.EditorBoldButtonDirective, typeof i18.EditorItalicButtonDirective, typeof i19.EditorUnderlineButtonDirective, typeof i20.EditorStrikethroughButtonDirective, typeof i21.EditorSubscriptButtonDirective, typeof i22.EditorSuperscriptButtonDirective, typeof i23.EditorForeColorDirective, typeof i24.EditorBackColorDirective, typeof i25.EditorCleanFormattingButtonDirective, typeof i26.EditorAddColumnBeforeButtonDirective, typeof i27.EditorAddColumnAfterButtonDirective, typeof i28.EditorAddRowBeforeButtonDirective, typeof i29.EditorAddRowAfterButtonDirective, typeof i30.EditorDeleteColumnButtonDirective, typeof i31.EditorDeleteRowButtonDirective, typeof i32.EditorDeleteTableButtonDirective, typeof i33.CustomMessagesComponent, typeof i34.EditorPrintDirective, typeof i35.EditorSelectAllButtonDirective, typeof i36.EditorBlockquoteDirective, typeof i37.EditorFontSizeComponent, typeof i38.EditorFontFamilyComponent, typeof i39.EditorFormatComponent, typeof i40.EditorColorPickerComponent, typeof i41.EditorInsertTableButtonComponent, typeof i42.EditorMergeCellsButtonDirective, typeof i43.EditorSplitCellButtonDirective, typeof i44.FormsModule, typeof i44.ReactiveFormsModule, typeof i45.ToolBarModule]>;
|
|
94
72
|
static ɵinj: i0.ɵɵInjectorDeclaration<EditorModule>;
|
|
95
73
|
}
|
|
@@ -4,15 +4,14 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
6
6
|
import { Component, Input, ViewChild } from '@angular/core';
|
|
7
|
-
import { DialogRef, DialogContentBase } from '@progress/kendo-angular-dialog';
|
|
7
|
+
import { DialogRef, DialogContentBase, DialogActionsComponent, DialogTitleBarComponent } from '@progress/kendo-angular-dialog';
|
|
8
|
+
import { ButtonComponent } from '@progress/kendo-angular-buttons';
|
|
8
9
|
import { EditorLocalizationService } from '../localization/editor-localization.service';
|
|
9
10
|
import { EditorComponent } from '../editor.component';
|
|
10
11
|
import { ColorPickerComponent } from '@progress/kendo-angular-inputs';
|
|
11
12
|
import * as i0 from "@angular/core";
|
|
12
13
|
import * as i1 from "@progress/kendo-angular-dialog";
|
|
13
14
|
import * as i2 from "../localization/editor-localization.service";
|
|
14
|
-
import * as i3 from "@progress/kendo-angular-buttons";
|
|
15
|
-
import * as i4 from "@progress/kendo-angular-inputs";
|
|
16
15
|
/**
|
|
17
16
|
* @hidden
|
|
18
17
|
*/
|
|
@@ -53,7 +52,7 @@ export class ColorPickerDialogComponent extends DialogContentBase {
|
|
|
53
52
|
}
|
|
54
53
|
}
|
|
55
54
|
ColorPickerDialogComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ColorPickerDialogComponent, deps: [{ token: i1.DialogRef }, { token: i2.EditorLocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
56
|
-
ColorPickerDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ColorPickerDialogComponent, selector: "ng-component", inputs: { editor: "editor" }, viewQueries: [{ propertyName: "colorPicker", first: true, predicate: ["colorpicker"], descendants: true, read: ColorPickerComponent, static: true }], usesInheritance: true, ngImport: i0, template: `
|
|
55
|
+
ColorPickerDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ColorPickerDialogComponent, isStandalone: true, selector: "ng-component", inputs: { editor: "editor" }, viewQueries: [{ propertyName: "colorPicker", first: true, predicate: ["colorpicker"], descendants: true, read: ColorPickerComponent, static: true }], usesInheritance: true, ngImport: i0, template: `
|
|
57
56
|
<kendo-dialog-titlebar (close)="onCancelAction()">
|
|
58
57
|
{{ textFor(editorCommand) }}
|
|
59
58
|
</kendo-dialog-titlebar>
|
|
@@ -83,7 +82,7 @@ ColorPickerDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0
|
|
|
83
82
|
(click)="onCancelAction()"
|
|
84
83
|
>{{ textFor('dialogCancel') }}</button>
|
|
85
84
|
</kendo-dialog-actions>
|
|
86
|
-
`, isInline: true, dependencies: [{ kind: "component", type:
|
|
85
|
+
`, isInline: true, dependencies: [{ kind: "component", type: DialogTitleBarComponent, selector: "kendo-dialog-titlebar", inputs: ["id", "closeTitle"], outputs: ["close"] }, { kind: "component", type: ColorPickerComponent, selector: "kendo-colorpicker", inputs: ["views", "view", "activeView", "readonly", "disabled", "format", "value", "popupSettings", "paletteSettings", "gradientSettings", "icon", "iconClass", "svgIcon", "clearButton", "tabindex", "preview", "actionsLayout", "size", "rounded", "fillMode"], outputs: ["valueChange", "open", "close", "focus", "blur", "cancel", "activeColorClick", "clearButtonClick", "activeViewChange"], exportAs: ["kendoColorPicker"] }, { kind: "component", type: DialogActionsComponent, selector: "kendo-dialog-actions", inputs: ["actions", "layout"], outputs: ["action"] }, { kind: "component", type: ButtonComponent, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }] });
|
|
87
86
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ColorPickerDialogComponent, decorators: [{
|
|
88
87
|
type: Component,
|
|
89
88
|
args: [{
|
|
@@ -117,7 +116,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
117
116
|
(click)="onCancelAction()"
|
|
118
117
|
>{{ textFor('dialogCancel') }}</button>
|
|
119
118
|
</kendo-dialog-actions>
|
|
120
|
-
|
|
119
|
+
`,
|
|
120
|
+
standalone: true,
|
|
121
|
+
imports: [DialogTitleBarComponent, ColorPickerComponent, DialogActionsComponent, ButtonComponent]
|
|
121
122
|
}]
|
|
122
123
|
}], ctorParameters: function () { return [{ type: i1.DialogRef }, { type: i2.EditorLocalizationService }]; }, propDecorators: { editor: [{
|
|
123
124
|
type: Input
|
|
@@ -3,20 +3,19 @@
|
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { Component, Input, ViewChild } from '@angular/core';
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
6
|
+
import { NgIf } from '@angular/common';
|
|
7
|
+
import { FormGroup, FormControl, Validators, ReactiveFormsModule } from '@angular/forms';
|
|
8
|
+
import { DialogContentBase, DialogRef, DialogActionsComponent, DialogTitleBarComponent } from '@progress/kendo-angular-dialog';
|
|
9
|
+
import { TextBoxComponent, CheckBoxDirective, FormFieldComponent } from '@progress/kendo-angular-inputs';
|
|
10
|
+
import { ButtonComponent } from '@progress/kendo-angular-buttons';
|
|
11
|
+
import { LabelDirective, LabelComponent } from '@progress/kendo-angular-label';
|
|
8
12
|
import { getMark, getSelectionText, expandSelection } from '@progress/kendo-editor-common';
|
|
9
13
|
import { isPresent } from '../util';
|
|
10
14
|
import { EditorLocalizationService } from '../localization/editor-localization.service';
|
|
11
|
-
import { TextBoxComponent } from '@progress/kendo-angular-inputs';
|
|
12
15
|
import * as i0 from "@angular/core";
|
|
13
16
|
import * as i1 from "@progress/kendo-angular-dialog";
|
|
14
17
|
import * as i2 from "../localization/editor-localization.service";
|
|
15
|
-
import * as i3 from "@angular/
|
|
16
|
-
import * as i4 from "@angular/forms";
|
|
17
|
-
import * as i5 from "@progress/kendo-angular-buttons";
|
|
18
|
-
import * as i6 from "@progress/kendo-angular-inputs";
|
|
19
|
-
import * as i7 from "@progress/kendo-angular-label";
|
|
18
|
+
import * as i3 from "@angular/forms";
|
|
20
19
|
/**
|
|
21
20
|
* @hidden
|
|
22
21
|
*/
|
|
@@ -101,7 +100,7 @@ export class FileLinkDialogComponent extends DialogContentBase {
|
|
|
101
100
|
}
|
|
102
101
|
}
|
|
103
102
|
FileLinkDialogComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FileLinkDialogComponent, deps: [{ token: i1.DialogRef }, { token: i2.EditorLocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
104
|
-
FileLinkDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: FileLinkDialogComponent, selector: "ng-component", inputs: { editor: "editor", command: "command" }, viewQueries: [{ propertyName: "hrefInput", first: true, predicate: ["hrefInput"], descendants: true }], usesInheritance: true, ngImport: i0, template: `
|
|
103
|
+
FileLinkDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: FileLinkDialogComponent, isStandalone: true, selector: "ng-component", inputs: { editor: "editor", command: "command" }, viewQueries: [{ propertyName: "hrefInput", first: true, predicate: ["hrefInput"], descendants: true }], usesInheritance: true, ngImport: i0, template: `
|
|
105
104
|
<kendo-dialog-titlebar (close)="onCancelAction()">
|
|
106
105
|
{{ titleText }}
|
|
107
106
|
</kendo-dialog-titlebar>
|
|
@@ -167,7 +166,7 @@ FileLinkDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0"
|
|
|
167
166
|
(click)="onCancelAction()"
|
|
168
167
|
>{{ textFor('dialogCancel') }}</button>
|
|
169
168
|
</kendo-dialog-actions>
|
|
170
|
-
`, isInline: true, dependencies: [{ kind: "
|
|
169
|
+
`, isInline: true, dependencies: [{ kind: "component", type: DialogTitleBarComponent, selector: "kendo-dialog-titlebar", inputs: ["id", "closeTitle"], outputs: ["close"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i3.CheckboxControlValueAccessor, selector: "input[type=checkbox][formControlName],input[type=checkbox][formControl],input[type=checkbox][ngModel]" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i3.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i3.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "component", type: FormFieldComponent, selector: "kendo-formfield", inputs: ["showHints", "orientation", "showErrors"] }, { kind: "component", type: LabelComponent, selector: "kendo-label", inputs: ["text", "for", "optional", "labelCssStyle", "labelCssClass"], exportAs: ["kendoLabel"] }, { kind: "component", type: TextBoxComponent, selector: "kendo-textbox", inputs: ["focusableId", "title", "type", "disabled", "readonly", "tabindex", "value", "selectOnFocus", "showSuccessIcon", "showErrorIcon", "clearButton", "successIcon", "successSvgIcon", "errorIcon", "errorSvgIcon", "clearButtonIcon", "clearButtonSvgIcon", "size", "rounded", "fillMode", "tabIndex", "placeholder", "maxlength", "inputAttributes"], outputs: ["valueChange", "inputFocus", "inputBlur", "focus", "blur"], exportAs: ["kendoTextBox"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: CheckBoxDirective, selector: "input[kendoCheckBox]", inputs: ["size", "rounded"] }, { kind: "directive", type: LabelDirective, selector: "label[for]", inputs: ["for", "labelClass"] }, { kind: "component", type: DialogActionsComponent, selector: "kendo-dialog-actions", inputs: ["actions", "layout"], outputs: ["action"] }, { kind: "component", type: ButtonComponent, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }] });
|
|
171
170
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FileLinkDialogComponent, decorators: [{
|
|
172
171
|
type: Component,
|
|
173
172
|
args: [{
|
|
@@ -237,7 +236,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
237
236
|
(click)="onCancelAction()"
|
|
238
237
|
>{{ textFor('dialogCancel') }}</button>
|
|
239
238
|
</kendo-dialog-actions>
|
|
240
|
-
|
|
239
|
+
`,
|
|
240
|
+
standalone: true,
|
|
241
|
+
imports: [DialogTitleBarComponent, ReactiveFormsModule, FormFieldComponent, LabelComponent, TextBoxComponent, NgIf, CheckBoxDirective, LabelDirective, DialogActionsComponent, ButtonComponent]
|
|
241
242
|
}]
|
|
242
243
|
}], ctorParameters: function () { return [{ type: i1.DialogRef }, { type: i2.EditorLocalizationService }]; }, propDecorators: { editor: [{
|
|
243
244
|
type: Input
|