Unplanned
Last Updated: 05 Sep 2024 10:00 by ADMIN

Currently, the Calendar that is used in ThemeBuilder is considered "infinite", where we can change the months by scrolling. However, in Telerik UI for Blazor, the only calendar available is the "modern" one, which uses arrow buttons to change months. As a result, some of the styles we apply to the calendar templates in ThemeBuilder don't work with this calendar. Additionally, we are unable to style certain elements, like the arrow buttons, using ThemeBuilder.

https://github.com/telerik/kendo-themes/tree/develop/tests/calendar

Consider exposing templates for a "modern" Calendar component.

Unplanned
Last Updated: 04 Sep 2024 16:29 by ADMIN
Created by: Davy
Comments: 0
Type: Feature Request
0

Hi there

I noticed that the timeline component isn't available in ThemeBuilder, and I wanted to share that we'd really love to be able to style it through the tool if possible.

Thanks so much for considering this!


Cheers,
Davy


Unplanned
Last Updated: 04 Sep 2024 07:21 by Petar

Currently, the Checkbox component doesn't have an exposed template for modifying the pseudo-element ::before. If they decide to use font icons to style the icons for the checked and indeterminate states, they cannot achieve this through ThemeBuilder.

Requested through t.1663139.

Unplanned
Last Updated: 02 Sep 2024 08:03 by ADMIN

Currently, there is no exposed template for the nested span of the Notification component. It becomes problematic if you have applied some styles (e.g., the color of the text) to the HTML element "span" and you want to override them through ThemeBuilder.

Consider exposing such component part.

Pending Review
Last Updated: 27 Aug 2024 11:50 by Petar

Currently, the external CSS files come before the overrides generated through ThemeBuilder. Therefore, it becomes problematic to override these ThemeBuilder overrides with external styles.

Consider allowing the user to choose the order in which the external styles are applied —whether they should come before or after the ThemeBuilder overrides.

Requested through t.1662556.

Unplanned
Last Updated: 14 Aug 2024 15:44 by Christian

Currently you can only use and customize the default 6 Chart series colors (Kendo Colors Series A, B,C,D,E and F) using ThemeBuilder. Any additional ones needs to be defined in the component code. This is not ideal if you want to manage all colors from ThemeBuilder.

The request to have either have the ability to add new Chart series colors in the ThemeBuilder which you can use with the chart or have more variables exposed at the beginning 25+

Unplanned
Last Updated: 13 Aug 2024 13:30 by ADMIN

Currently, the Drawer components (such as Drawer and Drawer Mini) come with a right border that can't be modified through ThemeBuilder:

Consider exposing a template that allows to modify this border.

Completed
Last Updated: 13 Aug 2024 07:30 by ADMIN
Add support for CSS transitions in the Property Editor in order to override the current animations from Kendo and add new ones. Those properties allow the definition of the transition between two states of an element.
Unplanned
Last Updated: 12 Aug 2024 07:45 by ADMIN

Currently, there is no way to style the different states (e.g. hover) of the Grid's Column Menu items through ThemeBuilder.

Consider exposing templates for those states. 

Requested through t.1661051.

Completed
Last Updated: 09 Aug 2024 14:13 by ADMIN


I want to upload 2 variants of the same font (let's say Roboto with weight 300 and 500).

Then I want to configure the same font family for both of them.

This is currently not allowed (see attached screenshot).

I have to choose different names which results in an export like this:

@font-face {
  font-family: Roboto300;
  src: url('../fonts/roboto-v18-latin_latin-ext-300.woff') format('woff');
  font-style: normal;
  font-weight: 300;
  font-display: auto;
}

@font-face {
  font-family: Roboto500;
  src: url('../fonts/roboto-v18-latin_latin-ext-500.woff') format('woff');
  font-style: normal;
  font-weight: 500;
  font-display: auto;
}

But what I want to achieve is this:

@font-face {
  font-family: Roboto;
  src: url('../fonts/roboto-v18-latin_latin-ext-300.woff') format('woff');
  font-style: normal;
  font-weight: 300;
  font-display: auto;
}

@font-face {
  font-family: Roboto;
  src: url('../fonts/roboto-v18-latin_latin-ext-500.woff') format('woff');
  font-style: normal;
  font-weight: 500;
  font-display: auto;
}

My use case is that I want to set the font family only once and the just set different font-weight for individual components.

Also, we have migrated to Kendo / ThemeBuilder in our existing project which relies on fonts to be configured this way.

Completed
Last Updated: 09 Aug 2024 14:12 by ADMIN

Hello,

I am noticing that there are several styles that we cannot access through ThemeBuilder such as adding transitions, custom icons, etc. We would like the ability to export the ThemeBuilder package, add custom styles, then import back into ThemeBuilder. Is this possible? If not, this would be a great feature.

Thanks!
Ian

Completed
Last Updated: 09 Aug 2024 14:12 by ADMIN
Created by: Ian
Comments: 2
Type: Feature Request
10

Hello,

It would be great if Themebuilder had version control built into the tool so that our designers could view previous versions of the theme styles and revert back if necessary. Currently, we are planning on downloading the files and pushing to git, but this is very cumbersome.

Thanks for considering this!

Completed
Last Updated: 09 Aug 2024 12:11 by ADMIN

Hello,

I'm able to customize the components of the webpage, like buttons, grids, etc., but not the entire webpage. Can you support to design an entire webpage using ThemeBuilder so that I can create a login page instead of creating login.css.

Unplanned
Last Updated: 02 Aug 2024 07:45 by ADMIN

Currently, there are no means to style the clear button of the DropDownTree component.

Consider exposing a template for the clear button (similar to the "(span) Input" component part).

 

requested through t.1660254

Unplanned
Last Updated: 01 Aug 2024 14:15 by ADMIN
Hello, as a designer who doesn't work with CSS, I'd like to be able to do as much customization as possible in the theme builder. For example, there is the card component with two action buttons: I'd like to be able to replace the primary button without an icon with the primary button with an icon. The same applies to a dialog. For the drawer, I'd like to change the number of options and their names/icons. At the moment, theme builder seems almost useless to me.  
Unplanned
Last Updated: 01 Aug 2024 10:58 by ADMIN

Consider generating utility classes for variables to apply and reuse styles easily. For example, the user defines a color variable in ThemeBuilder called "component," and this makes ThemeBuilder generate utility classes:

.k-color-component {
  color: #ffeb3b;
}
.\!k-color-component {
  color: #ffeb3b !important;
}
.k-bg-component {
  background-color: #ffeb3b;
}
.\!k-bg-component {
  background-color: #ffeb3b !important;
}

These utility classes can then be applied and reused in code outside of ThemeBuilder:

<div class="k-color-component"></div>
Requested through t.1660066.
Unplanned
Last Updated: 31 Jul 2024 12:06 by ADMIN

Currently, in ThemeBuilder, the generated styles for the Telerik/Kendo component Breadcrumb are only for the collapse mode "wrap". However, in Telerik UI for Blazor, Kendo UI for Angular, and others, the Breadcrumb component supports different collapse mode values, such as "auto" and "none":

https://docs.telerik.com/blazor-ui/components/breadcrumb/collapse-modes

https://www.telerik.com/kendo-angular-ui/components/navigation/breadcrumb/collapse-modes/ 

Consider providing templates to allow the generation of styles for other collapse modes.

Requested through t.1660021

Completed
Last Updated: 03 Jul 2024 12:36 by ADMIN
Created by: Nick
Comments: 0
Type: Feature Request
2

The Kendo Themes recently introduced an accessibility swatch A11y for the Default Ocen Blue theme https://www.telerik.com/kendo-angular-ui/components/accessibility/accessibility-swatch/

Feature request: Support for the Ocean Blue A11y Accessibility Swatch in ThemeBuilder.

 

 
Unplanned
Last Updated: 25 Jun 2024 11:32 by ADMIN

It would be helpful to add a feature to ThemeBuilder that allows users to create theme variable modes based on typography variables, similar to the existing feature that lets them create themes based on color and metrics.

This will enable users to generate different themes within a single project by simply changing the fonts used.

Requested through t.1656320

Pending Review
Last Updated: 21 Jun 2024 08:37 by Nick
Created by: Nick
Comments: 0
Type: Feature Request
1

Currently, in ThemeBuilder there is a template that allows you to style the icon of a header cell that is filterable.

However, we need to be able to style the icon in a header cell that triggers the ColumnMenu (the more icon)

 

https://demos.telerik.com/aspnet-core/grid/column-menu 

https://www.telerik.com/kendo-react-ui/components/grid/interactivity/column-menu/ 

requested through t.1655985