Replaced copyright start year + format

This commit is contained in:
Alexey Safronov 2024-03-21 18:09:55 +04:00
parent 6d183ab648
commit c9234fec72
2231 changed files with 9606 additions and 9548 deletions

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode

View File

@ -1,4 +1,4 @@
# (c) Copyright Ascensio System SIA 2010-2024 # (c) Copyright Ascensio System SIA 2009-2024
# #
# This program is a free software product. # This program is a free software product.
# You can redistribute it and/or modify it under the terms # You can redistribute it and/or modify it under the terms

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
@ -27,10 +27,10 @@
// script to enable webpack-bundle-analyzer // script to enable webpack-bundle-analyzer
process.env.NODE_ENV = "production"; process.env.NODE_ENV = "production";
const webpack = require("webpack"); const webpack = require("webpack");
const BundleAnalyzerPlugin = require("webpack-bundle-analyzer") const BundleAnalyzerPlugin =
.BundleAnalyzerPlugin; require("webpack-bundle-analyzer").BundleAnalyzerPlugin;
const webpackConfigProd = require("react-scripts/config/webpack.config")( const webpackConfigProd = require("react-scripts/config/webpack.config")(
"production" "production",
); );
webpackConfigProd.plugins.push(new BundleAnalyzerPlugin()); webpackConfigProd.plugins.push(new BundleAnalyzerPlugin());

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
@ -32,5 +32,5 @@ beforeBuild(
path.join(__dirname, "../public/locales"), path.join(__dirname, "../public/locales"),
path.join(__dirname, "../../../public/locales"), path.join(__dirname, "../../../public/locales"),
], ],
path.join(__dirname, "../src/helpers/autoGeneratedTranslations.js") path.join(__dirname, "../src/helpers/autoGeneratedTranslations.js"),
); );

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
@ -198,7 +198,7 @@ const withHotkeys = (Component) => {
break; break;
} }
}, },
hotkeysFilter hotkeysFilter,
); );
// //Select bottom element // //Select bottom element
@ -253,7 +253,7 @@ const withHotkeys = (Component) => {
useHotkeys( useHotkeys(
"v", "v",
() => (viewAs === "tile" ? setViewAs("table") : setViewAs("tile")), () => (viewAs === "tile" ? setViewAs("table") : setViewAs("tile")),
hotkeysFilter hotkeysFilter,
); );
//Crete document //Crete document
@ -288,7 +288,7 @@ const withHotkeys = (Component) => {
setSelectFileDialogVisible(true); setSelectFileDialogVisible(true);
}, },
hotkeysFilter hotkeysFilter,
); );
//Crete folder //Crete folder
@ -345,7 +345,7 @@ const withHotkeys = (Component) => {
} }
}, },
hotkeysFilter, hotkeysFilter,
[confirmDelete] [confirmDelete],
); );
// //TODO: Undo the last action // //TODO: Undo the last action
@ -368,14 +368,14 @@ const withHotkeys = (Component) => {
useHotkeys( useHotkeys(
"Ctrl+num_divide, Ctrl+/, command+/", "Ctrl+num_divide, Ctrl+/, command+/",
() => setHotkeyPanelVisible(true), () => setHotkeyPanelVisible(true),
hotkeysFilter hotkeysFilter,
); );
useHotkeys("Ctrl+c, command+c", () => copyToClipboard(t), hotkeysFilter); useHotkeys("Ctrl+c, command+c", () => copyToClipboard(t), hotkeysFilter);
useHotkeys( useHotkeys(
"Ctrl+x, command+x", "Ctrl+x, command+x",
() => copyToClipboard(t, true), () => copyToClipboard(t, true),
hotkeysFilter hotkeysFilter,
); );
//Upload file //Upload file
@ -386,7 +386,7 @@ const withHotkeys = (Component) => {
uploadFile(false, navigate, t); uploadFile(false, navigate, t);
}, },
hotkeysFilter hotkeysFilter,
); );
//Upload folder //Upload folder
@ -397,7 +397,7 @@ const withHotkeys = (Component) => {
uploadFile(true); uploadFile(true);
}, },
hotkeysFilter hotkeysFilter,
); );
return <Component {...props} />; return <Component {...props} />;
@ -534,7 +534,7 @@ const withHotkeys = (Component) => {
uploadClipboardFiles, uploadClipboardFiles,
}; };
} },
)(observer(WithHotkeys)); )(observer(WithHotkeys));
}; };

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode

View File

@ -1,4 +1,4 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode

View File

@ -1,4 +1,4 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode

View File

@ -1,30 +1,30 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
import React from "react"; import React from "react";
import { inject, observer } from "mobx-react"; import { inject, observer } from "mobx-react";
import { withTranslation } from "react-i18next"; import { withTranslation } from "react-i18next";

View File

@ -1,4 +1,4 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
@ -35,7 +35,7 @@ import GiftReactSvgUrl from "PUBLIC_DIR/images/gift.react.svg?url";
const PROXY_BASE_URL = combineUrl( const PROXY_BASE_URL = combineUrl(
window.DocSpaceConfig?.proxy?.url, window.DocSpaceConfig?.proxy?.url,
"/portal-settings" "/portal-settings",
); );
const bonusUrl = combineUrl(PROXY_BASE_URL, "/bonus"); const bonusUrl = combineUrl(PROXY_BASE_URL, "/bonus");

View File

@ -1,30 +1,30 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
import PropTypes from "prop-types"; import PropTypes from "prop-types";
import styled from "styled-components"; import styled from "styled-components";
import React, { useState } from "react"; import React, { useState } from "react";
import { inject, observer } from "mobx-react"; import { inject, observer } from "mobx-react";

View File

@ -1,30 +1,30 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
import React from "react"; import React from "react";
import { inject, observer } from "mobx-react"; import { inject, observer } from "mobx-react";
import { withTranslation } from "react-i18next"; import { withTranslation } from "react-i18next";
@ -51,7 +51,7 @@ const PureSettingsItem = ({ t, showText, isActive, onClick }) => {
}; };
const SettingsItem = withTranslation(["FilesSettings", "Common"])( const SettingsItem = withTranslation(["FilesSettings", "Common"])(
PureSettingsItem PureSettingsItem,
); );
export default inject(({ settingsStore }) => { export default inject(({ settingsStore }) => {

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
@ -41,6 +41,6 @@ export default inject(({ authStore }) => {
}; };
})( })(
withTranslation([])( withTranslation([])(
withLoader(observer(ArticleHeaderContent))(<ArticleHeaderLoader />) withLoader(observer(ArticleHeaderContent))(<ArticleHeaderLoader />),
) ),
); );

View File

@ -1,30 +1,30 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
import CrossSidebarReactSvgUrl from "PUBLIC_DIR/images/cross.sidebar.react.svg?url"; import CrossSidebarReactSvgUrl from "PUBLIC_DIR/images/cross.sidebar.react.svg?url";
import MobileActionsRemoveReactSvgUrl from "PUBLIC_DIR/images/mobile.actions.remove.react.svg?url"; import MobileActionsRemoveReactSvgUrl from "PUBLIC_DIR/images/mobile.actions.remove.react.svg?url";
import React from "react"; import React from "react";
import styled, { css } from "styled-components"; import styled, { css } from "styled-components";

View File

@ -1,30 +1,30 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
import ActionsUploadReactSvgUrl from "PUBLIC_DIR/images/actions.upload.react.svg?url"; import ActionsUploadReactSvgUrl from "PUBLIC_DIR/images/actions.upload.react.svg?url";
import FormReactSvgUrl from "PUBLIC_DIR/images/access.form.react.svg?url"; import FormReactSvgUrl from "PUBLIC_DIR/images/access.form.react.svg?url";
import FormBlankReactSvgUrl from "PUBLIC_DIR/images/form.blank.react.svg?url"; import FormBlankReactSvgUrl from "PUBLIC_DIR/images/form.blank.react.svg?url";
import FormFileReactSvgUrl from "PUBLIC_DIR/images/form.file.react.svg?url"; import FormFileReactSvgUrl from "PUBLIC_DIR/images/form.file.react.svg?url";

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode

View File

@ -1,30 +1,30 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
import styled from "styled-components"; import styled from "styled-components";
import React, { useState } from "react"; import React, { useState } from "react";
import UnpinReactSvgUrl from "PUBLIC_DIR/images/unpin.react.svg?url"; import UnpinReactSvgUrl from "PUBLIC_DIR/images/unpin.react.svg?url";

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode

View File

@ -1,30 +1,30 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
import BreakpointWarningSvgUrl from "PUBLIC_DIR/images/manage.access.rights.react.svg?url"; import BreakpointWarningSvgUrl from "PUBLIC_DIR/images/manage.access.rights.react.svg?url";
import BreakpointWarningSvgDarkUrl from "PUBLIC_DIR/images/manage.access.rights.dark.react.svg?url"; import BreakpointWarningSvgDarkUrl from "PUBLIC_DIR/images/manage.access.rights.dark.react.svg?url";
import React from "react"; import React from "react";
import { Trans, withTranslation } from "react-i18next"; import { Trans, withTranslation } from "react-i18next";

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
@ -134,8 +134,8 @@ const DragTooltip = (props) => {
? t("TooltipElementCopyMessage", { element: filesCount }) ? t("TooltipElementCopyMessage", { element: filesCount })
: t("TooltipElementsCopyMessage", { element: filesCount }) : t("TooltipElementsCopyMessage", { element: filesCount })
: isSingleItem : isSingleItem
? renderFileMoveTooltip() ? renderFileMoveTooltip()
: t("TooltipElementsMoveMessage", { element: filesCount }) : t("TooltipElementsMoveMessage", { element: filesCount })
: t(""); : t("");
return <StyledTooltip ref={tooltipRef}>{tooltipLabel}</StyledTooltip>; return <StyledTooltip ref={tooltipRef}>{tooltipLabel}</StyledTooltip>;

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
@ -116,7 +116,7 @@ const EditingWrapper = styled.div`
? "13px" ? "13px"
: props.viewAs === "tile" : props.viewAs === "tile"
? "14px" ? "14px"
: "15px" : "15px",
)}; )};
outline: 0 !important; outline: 0 !important;
font-weight: 600; font-weight: 600;

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode

View File

@ -1,30 +1,30 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
import EmptyScreenFilterAltSvgUrl from "PUBLIC_DIR/images/empty_screen_filter_alt.svg?url"; import EmptyScreenFilterAltSvgUrl from "PUBLIC_DIR/images/empty_screen_filter_alt.svg?url";
import EmptyScreenFilterAltDarkSvgUrl from "PUBLIC_DIR/images/empty_screen_filter_alt_dark.svg?url"; import EmptyScreenFilterAltDarkSvgUrl from "PUBLIC_DIR/images/empty_screen_filter_alt_dark.svg?url";
import ClearEmptyFilterSvgUrl from "PUBLIC_DIR/images/clear.empty.filter.svg?url"; import ClearEmptyFilterSvgUrl from "PUBLIC_DIR/images/clear.empty.filter.svg?url";
import React from "react"; import React from "react";

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode

View File

@ -1,30 +1,30 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
import RoomsReactSvgUrl from "PUBLIC_DIR/images/rooms.react.svg?url"; import RoomsReactSvgUrl from "PUBLIC_DIR/images/rooms.react.svg?url";
import ManageAccessRightsReactSvgUrl from "PUBLIC_DIR/images/manage.access.rights.react.svg?url"; import ManageAccessRightsReactSvgUrl from "PUBLIC_DIR/images/manage.access.rights.react.svg?url";
import ManageAccessRightsReactSvgDarkUrl from "PUBLIC_DIR/images/manage.access.rights.dark.react.svg?url"; import ManageAccessRightsReactSvgDarkUrl from "PUBLIC_DIR/images/manage.access.rights.dark.react.svg?url";
import React from "react"; import React from "react";

View File

@ -1,30 +1,30 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
import PrivacySvgUrl from "PUBLIC_DIR/images/privacy.svg?url"; import PrivacySvgUrl from "PUBLIC_DIR/images/privacy.svg?url";
import PersonSvgUrl from "PUBLIC_DIR/images/person.svg?url"; import PersonSvgUrl from "PUBLIC_DIR/images/person.svg?url";
import PlusSvgUrl from "PUBLIC_DIR/images/plus.svg?url"; import PlusSvgUrl from "PUBLIC_DIR/images/plus.svg?url";
import RoomsReactSvgUrl from "PUBLIC_DIR/images/rooms.react.svg?url"; import RoomsReactSvgUrl from "PUBLIC_DIR/images/rooms.react.svg?url";

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode

View File

@ -1,4 +1,4 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
@ -85,7 +85,7 @@ const CreatePluginFile = ({
updateMainButtonItems, updateMainButtonItems,
updateProfileMenuItems, updateProfileMenuItems,
updateEventListenerItems, updateEventListenerItems,
updateFileItems updateFileItems,
); );
onCloseAction(); onCloseAction();
}; };
@ -117,7 +117,7 @@ const CreatePluginFile = ({
updateMainButtonItems, updateMainButtonItems,
updateProfileMenuItems, updateProfileMenuItems,
updateEventListenerItems, updateEventListenerItems,
updateFileItems updateFileItems,
); );
}; };

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
@ -150,5 +150,5 @@ export default inject(
enableThirdParty, enableThirdParty,
deleteThirdParty, deleteThirdParty,
}; };
} },
)(observer(CreateRoomEvent)); )(observer(CreateRoomEvent));

View File

@ -1,4 +1,4 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
@ -91,8 +91,8 @@ const RenameEvent = ({
t("FileRenamed", { t("FileRenamed", {
oldTitle: item.title, oldTitle: item.title,
newTitle: value + item.fileExst, newTitle: value + item.fileExst,
}) }),
) ),
) )
.catch((err) => { .catch((err) => {
toastr.error(err); toastr.error(err);
@ -115,7 +115,7 @@ const RenameEvent = ({
t("FolderRenamed", { t("FolderRenamed", {
folderTitle: item.title, folderTitle: item.title,
newFoldedTitle: value, newFoldedTitle: value,
}) }),
); );
}) })
.catch((err) => { .catch((err) => {
@ -136,7 +136,7 @@ const RenameEvent = ({
onClose && onClose(e); onClose && onClose(e);
setEventDialogVisible(false); setEventDialogVisible(false);
}, },
[onClose, setEventDialogVisible] [onClose, setEventDialogVisible],
); );
return ( return (
@ -184,5 +184,5 @@ export default inject(
setSelectedFolder, setSelectedFolder,
}; };
} },
)(observer(RenameEvent)); )(observer(RenameEvent));

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
@ -80,7 +80,7 @@ const Dialog = ({
if (e.keyCode === 13 && !withForm && !isError) onSaveAction(e); if (e.keyCode === 13 && !withForm && !isError) onSaveAction(e);
}, },
[value, isError] [value, isError],
); );
useEffect(() => { useEffect(() => {
@ -119,7 +119,7 @@ const Dialog = ({
isCreateDialog && isChecked && setKeepNewFileName(isChecked); isCreateDialog && isChecked && setKeepNewFileName(isChecked);
onSave && onSave(e, value); onSave && onSave(e, value);
}, },
[onSave, isCreateDialog, value, isChecked] [onSave, isCreateDialog, value, isChecked],
); );
const onCancelAction = useCallback((e) => { const onCancelAction = useCallback((e) => {

View File

@ -1,30 +1,30 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
import SecuritySvgUrl from "PUBLIC_DIR/images/security.svg?url"; import SecuritySvgUrl from "PUBLIC_DIR/images/security.svg?url";
import styled from "styled-components"; import styled from "styled-components";
import { commonIconsStyles } from "@docspace/shared/utils"; import { commonIconsStyles } from "@docspace/shared/utils";
@ -56,7 +56,7 @@ export const StyledFavoriteIcon = styled(FavoriteIcon)`
`; `;
export const StyledFileActionsConvertEditDocIcon = styled( export const StyledFileActionsConvertEditDocIcon = styled(
FileActionsConvertEditDocIcon FileActionsConvertEditDocIcon,
)` )`
${commonIconsStyles} ${commonIconsStyles}
path { path {

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode

View File

@ -1,30 +1,30 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
import SecuritySvgUrl from "PUBLIC_DIR/images/security.svg?url"; import SecuritySvgUrl from "PUBLIC_DIR/images/security.svg?url";
import { inject, observer } from "mobx-react"; import { inject, observer } from "mobx-react";
import styled, { css } from "styled-components"; import styled, { css } from "styled-components";
import { Base } from "@docspace/shared/themes"; import { Base } from "@docspace/shared/themes";

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
@ -55,14 +55,14 @@ class MobileLayout extends Component {
componentDidMount() { componentDidMount() {
this.customScrollElm = document.querySelector( this.customScrollElm = document.querySelector(
"#customScrollBar > .scroll-wrapper > .scroller" "#customScrollBar > .scroll-wrapper > .scroller",
); );
if (!isChrome) this.customScrollElm.scrollTo(0, 0); if (!isChrome) this.customScrollElm.scrollTo(0, 0);
this.customScrollElm.addEventListener( this.customScrollElm.addEventListener(
"scroll", "scroll",
this.scrolledTheVerticalAxis this.scrolledTheVerticalAxis,
); );
// this.setState({ visibleContent: true }); // this.setState({ visibleContent: true });
@ -71,7 +71,7 @@ class MobileLayout extends Component {
componentWillUnmount() { componentWillUnmount() {
this.customScrollElm.removeEventListener( this.customScrollElm.removeEventListener(
"scroll", "scroll",
this.scrolledTheVerticalAxis this.scrolledTheVerticalAxis,
); );
} }

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
@ -33,7 +33,7 @@ export default function ScrollToTop() {
useEffect(() => { useEffect(() => {
scrollRef.current = document.querySelector( scrollRef.current = document.querySelector(
"#customScrollBar > .scroll-wrapper > .scroller" "#customScrollBar > .scroll-wrapper > .scroller",
); );
}, []); }, []);

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
@ -118,7 +118,7 @@ const Main = (props) => {
setMainHeight(correctHeight); setMainHeight(correctHeight);
}, },
[mainBarVisible, isBannerVisible, isFrame] [mainBarVisible, isBannerVisible, isFrame],
); );
return <StyledMain className="main" mainHeight={mainHeight} {...props} />; return <StyledMain className="main" mainHeight={mainHeight} {...props} />;

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
@ -122,10 +122,10 @@ const Bar = (props) => {
tenantCustomQuota: !closed.includes(QuotaBarTypes.TenantCustomQuota), tenantCustomQuota: !closed.includes(QuotaBarTypes.TenantCustomQuota),
userQuota: !closed.includes(QuotaBarTypes.UserQuota), userQuota: !closed.includes(QuotaBarTypes.UserQuota),
storageAndRoomQuota: !closed.includes( storageAndRoomQuota: !closed.includes(
QuotaBarTypes.UserAndStorageQuota QuotaBarTypes.UserAndStorageQuota,
), ),
storageAndUserQuota: !closed.includes( storageAndUserQuota: !closed.includes(
QuotaBarTypes.RoomAndStorageQuota QuotaBarTypes.RoomAndStorageQuota,
), ),
})); }));
} }
@ -199,7 +199,7 @@ const Bar = (props) => {
const onClickTenantCustomQuota = (type) => { const onClickTenantCustomQuota = (type) => {
const managementPageUrl = combineUrl( const managementPageUrl = combineUrl(
"/portal-settings", "/portal-settings",
"/management/disk-space" "/management/disk-space",
); );
navigate(managementPageUrl); navigate(managementPageUrl);
@ -373,55 +373,55 @@ export default inject(
({ settingsStore, profileActionsStore, userStore, currentQuotaStore }) => { ({ settingsStore, profileActionsStore, userStore, currentQuotaStore }) => {
const { user, withActivationBar, sendActivationLink } = userStore; const { user, withActivationBar, sendActivationLink } = userStore;
const { onPaymentsClick } = profileActionsStore; const { onPaymentsClick } = profileActionsStore;
const { const {
maxCountRoomsByQuota, maxCountRoomsByQuota,
usedRoomsCount, usedRoomsCount,
maxTotalSizeByQuota, maxTotalSizeByQuota,
usedTotalStorageSizeCount, usedTotalStorageSizeCount,
maxCountManagersByQuota, maxCountManagersByQuota,
addedManagersCount, addedManagersCount,
showRoomQuotaBar, showRoomQuotaBar,
showStorageQuotaBar, showStorageQuotaBar,
showUserQuotaBar, showUserQuotaBar,
showUserPersonalQuotaBar, showUserPersonalQuotaBar,
tenantCustomQuota, tenantCustomQuota,
showTenantCustomQuotaBar, showTenantCustomQuotaBar,
} = currentQuotaStore; } = currentQuotaStore;
const { currentColorScheme, setMainBarVisible } = settingsStore; const { currentColorScheme, setMainBarVisible } = settingsStore;
return { return {
isAdmin: user?.isAdmin, isAdmin: user?.isAdmin,
userEmail: user?.email, userEmail: user?.email,
withActivationBar, withActivationBar,
sendActivationLink, sendActivationLink,
onPaymentsClick, onPaymentsClick,
maxCountRoomsByQuota, maxCountRoomsByQuota,
usedRoomsCount, usedRoomsCount,
maxTotalSizeByQuota, maxTotalSizeByQuota,
usedTotalStorageSizeCount, usedTotalStorageSizeCount,
maxCountManagersByQuota, maxCountManagersByQuota,
addedManagersCount, addedManagersCount,
showRoomQuotaBar, showRoomQuotaBar,
showStorageQuotaBar, showStorageQuotaBar,
showUserQuotaBar, showUserQuotaBar,
currentColorScheme, currentColorScheme,
setMainBarVisible, setMainBarVisible,
showUserPersonalQuotaBar, showUserPersonalQuotaBar,
tenantCustomQuota, tenantCustomQuota,
showTenantCustomQuotaBar, showTenantCustomQuotaBar,
}; };
} },
)(withTranslation(["Profile", "Common"])(observer(Bar))); )(withTranslation(["Profile", "Common"])(observer(Bar)));

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode

View File

@ -1,30 +1,30 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
import React from "react"; import React from "react";
import PropTypes from "prop-types"; import PropTypes from "prop-types";
import styled from "styled-components"; import styled from "styled-components";
import { Box } from "@docspace/shared/components/box"; import { Box } from "@docspace/shared/components/box";

View File

@ -1,30 +1,30 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
import PersonalLogoReactSvgUrl from "PUBLIC_DIR/images/personal.logo.react.svg?url"; import PersonalLogoReactSvgUrl from "PUBLIC_DIR/images/personal.logo.react.svg?url";
import React, { useState, useEffect } from "react"; import React, { useState, useEffect } from "react";
import { inject, observer } from "mobx-react"; import { inject, observer } from "mobx-react";
import PropTypes from "prop-types"; import PropTypes from "prop-types";
@ -232,7 +232,7 @@ const HeaderComponent = ({
}); });
const logo = getLogoFromPath( const logo = getLogoFromPath(
!theme.isBase ? logoUrl?.path?.dark : logoUrl?.path?.light !theme.isBase ? logoUrl?.path?.dark : logoUrl?.path?.light,
); );
return ( return (
@ -262,7 +262,7 @@ const HeaderComponent = ({
className="header-logo-icon" className="header-logo-icon"
src={combineUrl( src={combineUrl(
window.DocSpaceConfig?.proxy?.url, window.DocSpaceConfig?.proxy?.url,
PersonalLogoReactSvgUrl PersonalLogoReactSvgUrl,
)} )}
/> />
)} )}

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
@ -193,7 +193,7 @@ class ProfileActions extends React.PureComponent {
> >
<StyledDropDownItem {...action} noHover={true} /> <StyledDropDownItem {...action} noHover={true} />
</Link> </Link>
)) )),
)} )}
</div> </div>
</ProfileMenu> </ProfileMenu>

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode

View File

@ -1,30 +1,30 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
import InvitationLinkReactSvgUrl from "PUBLIC_DIR/images/invitation.link.react.svg?url"; import InvitationLinkReactSvgUrl from "PUBLIC_DIR/images/invitation.link.react.svg?url";
import PlaneReactSvgUrl from "PUBLIC_DIR/images/plane.react.svg?url"; import PlaneReactSvgUrl from "PUBLIC_DIR/images/plane.react.svg?url";
import ImportReactSvgUrl from "PUBLIC_DIR/images/import.react.svg?url"; import ImportReactSvgUrl from "PUBLIC_DIR/images/import.react.svg?url";
import AddDepartmentReactSvgUrl from "PUBLIC_DIR/images/add.department.react.svg?url"; import AddDepartmentReactSvgUrl from "PUBLIC_DIR/images/add.department.react.svg?url";
@ -69,7 +69,7 @@ const ArticleMainButtonContent = (props) => {
const goToEmployeeCreate = () => { const goToEmployeeCreate = () => {
navigate( navigate(
combineUrl(window.DocSpaceConfig?.proxy?.url, homepage, "/create/user") combineUrl(window.DocSpaceConfig?.proxy?.url, homepage, "/create/user"),
); );
if (isMobile || isMobileUtils()) toggleShowText(); if (isMobile || isMobileUtils()) toggleShowText();
}; };
@ -87,7 +87,7 @@ const ArticleMainButtonContent = (props) => {
icon: combineUrl( icon: combineUrl(
window.DocSpaceConfig?.proxy?.url, window.DocSpaceConfig?.proxy?.url,
homepage, homepage,
AddEmployeeReactSvgUrl AddEmployeeReactSvgUrl,
), ),
label: userCaption, label: userCaption,
onClick: goToEmployeeCreate, onClick: goToEmployeeCreate,
@ -99,7 +99,7 @@ const ArticleMainButtonContent = (props) => {
key: "invite-link", key: "invite-link",
icon: combineUrl( icon: combineUrl(
window.DocSpaceConfig?.proxy?.url, window.DocSpaceConfig?.proxy?.url,
InvitationLinkReactSvgUrl InvitationLinkReactSvgUrl,
), ),
label: t("PeopleTranslations:InviteLinkTitle"), label: t("PeopleTranslations:InviteLinkTitle"),
onClick: onInvitationDialogClick, onClick: onInvitationDialogClick,
@ -153,6 +153,6 @@ export default inject(({ authStore, settingsStore }) => {
}; };
})( })(
withTranslation(["Article", "Common", "PeopleTranslations"])( withTranslation(["Article", "Common", "PeopleTranslations"])(
withLoader(observer(ArticleMainButtonContent))(<ArticleButtonLoader />) withLoader(observer(ArticleMainButtonContent))(<ArticleButtonLoader />),
) ),
); );

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode

View File

@ -1,25 +1,25 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode

View File

@ -1,30 +1,30 @@
// (c) Copyright Ascensio System SIA 2010-2024 // (c) Copyright Ascensio System SIA 2009-2024
// //
// This program is a free software product. // This program is a free software product.
// You can redistribute it and/or modify it under the terms // You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software // of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended // Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of // to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights. // any third-party rights.
// //
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty // This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html // the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
// //
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. // You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
// //
// The interactive user interfaces in modified source and object code versions of the Program must // The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. // display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
// //
// Pursuant to Section 7(b) of the License you must retain the original Product logo when // Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under // distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks. // trademark law for use of our trademarks.
// //
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing // All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
import FileActionsLockedReactSvgUrl from "PUBLIC_DIR/images/file.actions.locked.react.svg?url"; import FileActionsLockedReactSvgUrl from "PUBLIC_DIR/images/file.actions.locked.react.svg?url";
import FileActionsDownloadReactSvgUrl from "PUBLIC_DIR/images/download.react.svg?url"; import FileActionsDownloadReactSvgUrl from "PUBLIC_DIR/images/download.react.svg?url";
import LinkReactSvgUrl from "PUBLIC_DIR/images/link.react.svg?url"; import LinkReactSvgUrl from "PUBLIC_DIR/images/link.react.svg?url";
import LockedReactSvgUrl from "PUBLIC_DIR/images/locked.react.svg?url"; import LockedReactSvgUrl from "PUBLIC_DIR/images/locked.react.svg?url";

Some files were not shown because too many files have changed in this diff Show More