Change record status: 
Project: 
Introduced in branch: 
7.x-2.x, 7.x-3.x
Introduced in version: 
7.x-2.2, 7.x-3.0-alpha2
Description: 

PHP constants have been replaced by constants defined in the UIkit class definition.

This is the beginning of a move to a more object-oriented project to make back-porting from 8.x-x.x to 7.x-x.x series easier. No changes are needed in your sub-theme unless you are using the constants previously defined in the UIkit base theme.

Before

$uikit_library_version = UIKIT_LIBRARY_VERSION;

After

use Drupal\uikit\UIkit;

$uikit_library_version = UIkit::UIKIT_LIBRARY_VERSION;
Impacts: 
Module developers
Themers
Updates Done (doc team, etc.)
Online documentation: 
Not done
Theming guide: 
Not done
Module developer documentation: 
Not done
Examples project: 
Not done
Coder Review: 
Not done
Coder Upgrade: 
Not done
Other: 
Other updates done