UNPKG

@progress/kendo-ui

Version:

This package is part of the [Kendo UI for jQuery](http://www.telerik.com/kendo-ui) suite.

22 lines (16 loc) 639 B
'use strict'; const { applySchedulerIconRenames } = require('../_shared.cjs'); module.exports = function transformer(fileInfo) { if (!/\.(css|scss|sass|less)$/i.test(fileInfo.path)) { return undefined; } const updated = applySchedulerIconRenames(fileInfo.source); return updated !== fileInfo.source ? updated : undefined; }; module.exports.aiInstructions = `The Scheduler navigation arrow icon classes were renamed from SVG-prefixed arrow classes to chevron classes in Kendo UI 2024 R4. Before: .k-svg-i-arrow-left { ... } .k-svg-i-arrow-right { ... } After: .k-i-chevron-left { ... } .k-i-chevron-right { ... }`;