UNPKG

@progress/kendo-ui

Version:

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

30 lines (24 loc) 889 B
'use strict'; const { applyCalendarNavRenames } = require('../_shared.cjs'); module.exports = function transformer(fileInfo) { if (!/\.(css|scss|sass|less)$/i.test(fileInfo.path)) { return undefined; } const updated = applyCalendarNavRenames(fileInfo.source); return updated !== fileInfo.source ? updated : undefined; }; module.exports.aiInstructions = `The Calendar navigation button CSS classes were renamed with the k-calendar-nav- prefix in Kendo UI 2023 R1 to scope them to the Calendar component. Before: .k-nav-today { font-weight: bold; } .k-nav-prev { ... } .k-nav-next { ... } .k-nav-fast { ... } .k-prev-view { ... } .k-next-view { ... } After: .k-calendar-nav-today { font-weight: bold; } .k-calendar-nav-prev { ... } .k-calendar-nav-next { ... } .k-calendar-nav-fast { ... } .k-calendar-nav-prev { ... } .k-calendar-nav-next { ... }`;