Unplanned
Last Updated: 11 Oct 2024 08:22 by ADMIN

In Sass is possible to define à variable like this

$primary: red;
$primary-filter: rgba($primary, .5);

But this possibility is not supprted by ThemeBuilder

It may be usefull for variation of same color in theme whit only one variable to adjust.

Unplanned
Last Updated: 10 Oct 2024 14:46 by FranckSix
Created by: FranckSix
Comments: 1
Type: Feature Request
1
With Sass there are possibility to define variable as !default and can override it before import the script

_tokens.scss

tb-custom-primary: #014d5b !default; //Is the value if not defined in final scss
tb-primary: tb-custom-primary;

-----------------------------------------------

index.scss

$tb-custom-color: #34b232; //Now I can define the final value for variable
@import '_tokens'
it would be useful to add it in ThemeBuilder UI.

Unplanned
Last Updated: 02 Oct 2024 11:11 by ADMIN

Currently, ThemeBuilder exposes templates for the states of the TabStrip items. However, the changes apply to all positions of the TabStrip. This is inconvenient if you want to apply changes only to one of its positions. Also, these items' states have specific styles coming with the keyword "!important", which the default templates do not override.

Consider exposing templates for these states based on the position of the TabStrip component.

Requested through t.1666111.

Unplanned
Last Updated: 01 Oct 2024 14:15 by ADMIN
  • Open a themebuilder project
  • Click on the settings icon in the header bar on the right side
  • Navigate to the colors section
  • Try to navigate away from the color section

--> Create Variable Dropdown turns invalid and I can't navigate away from the section. Also there is no way to make it valid.

 

Unplanned
Last Updated: 30 Sep 2024 09:30 by ADMIN
Created by: Petar
Comments: 0
Type: Feature Request
2

Consider providing a way for users to define color palettes. Such a feature is currently unavailable in ThemeBuilder.

 

Requested through t.1665887.

Unplanned
Last Updated: 25 Sep 2024 15:09 by ADMIN
Currently, when we switch the color swatches, the changes apply to all variable modes. It would be beneficial if the change affected only the current mode. This would allow users to set different color swatches for the different variable modes and use them as starting points for implementing, for example, light/dark theme functionality.
Completed
Last Updated: 21 Nov 2024 08:42 by ADMIN

The Progress ThemeBuilder currently has the Fluent theme (by Microsoft), but only the light version is available.

As for the other themes (kendo, bootstrap, material) would it be possible to have the dark version too?

Thank you,
best regards

Roberto

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: 17 Oct 2024 08:59 by Petar

There is a template in the Constructive Elements canvas of components, such as Grid, MultiSelect, etc., for Filter List Item. Currently, ThemeBuilder does not have an exposed component part for modifying its search icon. It becomes problematic when we use font icons, especially a different font file for the icons, which requires changing the character code.

Consider exposing a component part to modify this icon.

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.

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.

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