Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 54.29.6 #4187

Merged
merged 2 commits into from
Jan 24, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 25 additions & 7 deletions helpers/class.Icon.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* Copyright (c) 2014-2024 (original work) Open Assessment Technologies SA (under the project TAO-PRODUCT);
* Copyright (c) 2014-2025 (original work) Open Assessment Technologies SA (under the project TAO-PRODUCT);
*/

use oat\tao\model\iconBuilder\IconBuilderTrait;
Expand All @@ -25,15 +25,18 @@
*
* PLEASE, DO NOT EDIT THIS CLASS. IT GENERATED AUTOMATICALLY
*
* @access public
* @author Dieter Raber, <[email protected]>
* @date 2024-07-31 09:47:33
* @access public
* @author Dieter Raber, <[email protected]>
* @date 2025-01-24 15:09:31
* @package tao
*/
class tao_helpers_Icon
{
use IconBuilderTrait;

public const CLASS_COPY = 'icon-copy';
public const CLASS_BLOCKED = 'icon-blocked';
public const CLASS_RESTRICTED = 'icon-restricted';
public const CLASS_ALIGN_CENTER = 'icon-align-center';
public const CLASS_MULTIPLE_MAGICWAND = 'icon-multiple-magicwand';
public const CLASS_SD_IMPORT = 'icon-sd-import';
Expand Down Expand Up @@ -168,7 +171,7 @@ class tao_helpers_Icon
public const CLASS_TEMPLATES = 'icon-templates';
public const CLASS_CUT = 'icon-cut';
public const CLASS_REPLACE = 'icon-replace';
public const CLASS_COPY = 'icon-copy';
public const CLASS_DUPLICATE = 'icon-duplicate';
public const CLASS_PASTE = 'icon-paste';
public const CLASS_SELECT_ALL = 'icon-select-all';
public const CLASS_PASTE_TEXT = 'icon-paste-text';
Expand Down Expand Up @@ -274,6 +277,21 @@ class tao_helpers_Icon
public const CLASS_ELIMINATE_CROSSED = 'icon-eliminate-crossed';
public const CLASS_PLAY_FROM_HERE = 'icon-play-from-here';

public static function iconCopy(array $options = [])
{
return self::buildIcon(self::CLASS_COPY, $options);
}

public static function iconBlocked(array $options = [])
{
return self::buildIcon(self::CLASS_BLOCKED, $options);
}

public static function iconRestricted(array $options = [])
{
return self::buildIcon(self::CLASS_RESTRICTED, $options);
}

public static function iconAlignCenter(array $options = [])
{
return self::buildIcon(self::CLASS_ALIGN_CENTER, $options);
Expand Down Expand Up @@ -944,9 +962,9 @@ public static function iconReplace(array $options = [])
return self::buildIcon(self::CLASS_REPLACE, $options);
}

public static function iconCopy(array $options = [])
public static function iconDuplicate(array $options = [])
{
return self::buildIcon(self::CLASS_COPY, $options);
return self::buildIcon(self::CLASS_DUPLICATE, $options);
}

public static function iconPaste(array $options = [])
Expand Down
Binary file modified views/css/font/tao/tao.eot
Binary file not shown.
5 changes: 4 additions & 1 deletion views/css/font/tao/tao.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified views/css/font/tao/tao.ttf
Binary file not shown.
Binary file modified views/css/font/tao/tao.woff
Binary file not shown.
2 changes: 1 addition & 1 deletion views/css/tao-3.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion views/css/tao-3.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion views/css/tao-main-style.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion views/css/tao-main-style.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion views/js/layout/nav.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ define(['jquery', 'lodash'], function ($, _) {
'use strict';

var $body = $('body'),
$navContainer = $('header.dark-bar'),
$navContainer = $('header.main-header'),
$nav = $navContainer.find($('nav')),
$mainMenu = $nav.find('.main-menu'),
$settingsMenu = $nav.find('.settings-menu'),
Expand Down
2 changes: 1 addition & 1 deletion views/js/lib/jsTree/themes/css/style.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion views/js/lib/jsTree/themes/css/style.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion views/js/loader/tao.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion views/js/loader/tao.min.js.map

Large diffs are not rendered by default.

9 changes: 5 additions & 4 deletions views/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion views/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"@oat-sa/tao-core-libs": "^1.0.0",
"@oat-sa/tao-core-sdk": "^3.2.1",
"@oat-sa/tao-core-shared-libs": "^1.7.0",
"@oat-sa/tao-core-ui": "^3.9.4",
"@oat-sa/tao-core-ui": "^3.9.5",
"codemirror": "^5.54.0",
"dompurify": "^2.4.0",
"gamp": "0.2.1",
Expand Down
Loading
Loading