You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With OpenUI5/SAPUI5 1.79 we had to adopt the name of the file to css_variables.css and the check should be adopted check for css_variables.css starting with 1.79.
To reproduce
Steps to reproduce the behavior:
Run the kitchen.openui5 on OpenUI5/SAPUI5 1.79
Isolated example
Not needed - if so, please let me know.
Expected behavior
CSS Variables should be detected properly!
Context
UI5 Web Components version: latest
OS/Platform: any
Browser (if relevant): any
Other information: OpenUI5/SAPUI5 1.79
Affected components(if known) OpenUI5Support
The text was updated successfully, but these errors were encountered:
Change the regex to detect the openui5 CSS variables properly as from 1.79 the CSS Variables filename has changed to css_variables.css (previously css-varaibles.css with dash).
But, the script will match the old name with "-" dash as well, if we need to support it, otherwise we can leave "_" only to support the latest name.
FIXES: #1932
Describe the bug
The CSS variables detection in the
OpenUI5Support
assumes that the css variables file is namescss-variables.css
:https://github.com/SAP/ui5-webcomponents/blob/master/packages/base/src/features/OpenUI5Support.js#L68-L79
With OpenUI5/SAPUI5 1.79 we had to adopt the name of the file to
css_variables.css
and the check should be adopted check forcss_variables.css
starting with 1.79.To reproduce
Steps to reproduce the behavior:
Isolated example
Not needed - if so, please let me know.
Expected behavior
CSS Variables should be detected properly!
Context
Affected components (if known)
OpenUI5Support
The text was updated successfully, but these errors were encountered: