igniteui-theming 26.1.0 → 27.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (29) hide show
  1. package/dist/json/components/bootstrap.json +1 -1
  2. package/dist/json/components/fluent.json +1 -1
  3. package/dist/json/components/indigo.json +1 -1
  4. package/dist/json/components/material.json +1 -1
  5. package/dist/json/components/themes.json +153 -14
  6. package/dist/mcp/index.js +1 -1
  7. package/dist/mcp/theming/dist/json/components/themes.js +162 -20
  8. package/dist/tailwind/utilities/bootstrap.css +1 -1
  9. package/dist/tailwind/utilities/fluent.css +1 -1
  10. package/dist/tailwind/utilities/indigo.css +1 -1
  11. package/dist/tailwind/utilities/material.css +1 -1
  12. package/package.json +1 -1
  13. package/sass/themes/components/button-group/_button-group-theme.scss +1 -1
  14. package/sass/themes/components/column-actions/_column-actions-theme.scss +18 -7
  15. package/sass/themes/components/grid/_grid-excel-filtering-theme.scss +136 -0
  16. package/sass/themes/components/grid/_grid-theme.scss +34 -26
  17. package/sass/themes/components/grid/_grid-toolbar-theme.scss +54 -9
  18. package/sass/themes/components/grid/_index.scss +1 -0
  19. package/sass/themes/components/paginator/_paginator-theme.scss +13 -10
  20. package/sass/themes/components/query-builder/_query-builder-theme.scss +10 -0
  21. package/sass/themes/schemas/components/dark/_grid-excel-filtering.scss +37 -0
  22. package/sass/themes/schemas/components/dark/_index.scss +5 -0
  23. package/sass/themes/schemas/components/dark/_pagination.scss +4 -4
  24. package/sass/themes/schemas/components/light/_column-actions.scss +3 -2
  25. package/sass/themes/schemas/components/light/_grid-excel-filtering.scss +185 -0
  26. package/sass/themes/schemas/components/light/_grid-toolbar.scss +6 -6
  27. package/sass/themes/schemas/components/light/_index.scss +5 -0
  28. package/sass/themes/schemas/components/light/_pagination.scss +10 -10
  29. package/sass/themes/schemas/components/light/_query-builder.scss +1 -1
@@ -2499,7 +2499,7 @@
2499
2499
  "description": "Column Actions Theme",
2500
2500
  "primaryTokens": [
2501
2501
  {
2502
- "name": "background-color",
2502
+ "name": "background",
2503
2503
  "description": "The background color of the panel."
2504
2504
  }
2505
2505
  ],
@@ -2508,12 +2508,22 @@
2508
2508
  {
2509
2509
  "name": "title-color",
2510
2510
  "type": "Color",
2511
- "description": "The text color used for the title of the list. Auto-derived from background-color."
2511
+ "description": "The text color used for the title of the list. Auto-derived from foreground."
2512
2512
  },
2513
2513
  {
2514
- "name": "background-color",
2514
+ "name": "background",
2515
+ "type": "Color",
2516
+ "description": "The background color of the panel. PRIMARY - derives foreground and title-color."
2517
+ },
2518
+ {
2519
+ "name": "foreground",
2515
2520
  "type": "Color",
2516
- "description": "The background color of the panel. PRIMARY - derives title-color.\n"
2521
+ "description": "The foreground color for content and icons in the panel. Auto-derived from background."
2522
+ },
2523
+ {
2524
+ "name": "accent-color",
2525
+ "type": "Color",
2526
+ "description": "The accent color used for highlights or active states in the panel.\n"
2517
2527
  }
2518
2528
  ]
2519
2529
  },
@@ -3156,6 +3166,97 @@
3156
3166
  }
3157
3167
  ]
3158
3168
  },
3169
+ "excel-filtering": {
3170
+ "name": "excel-filtering",
3171
+ "themeFunctionName": "excel-filtering-theme",
3172
+ "description": "Excel Filtering Theme",
3173
+ "primaryTokens": [
3174
+ {
3175
+ "name": "background",
3176
+ "description": "The background color for the excel filtering area."
3177
+ },
3178
+ {
3179
+ "name": "foreground",
3180
+ "description": "The foreground/text color for the excel filtering area."
3181
+ },
3182
+ {
3183
+ "name": "accent-color",
3184
+ "description": "The accent color for the excel filtering area and its internal components."
3185
+ }
3186
+ ],
3187
+ "tokens": [
3188
+ {
3189
+ "name": "background",
3190
+ "type": "Color",
3191
+ "description": "The background color for the excel filtering area."
3192
+ },
3193
+ {
3194
+ "name": "foreground",
3195
+ "type": "Color",
3196
+ "description": "The foreground/text color for the excel filtering area."
3197
+ },
3198
+ {
3199
+ "name": "accent-color",
3200
+ "type": "Color",
3201
+ "description": "The accent color for the excel filtering and its internal components."
3202
+ },
3203
+ {
3204
+ "name": "secondary-background",
3205
+ "type": "Color",
3206
+ "description": "The secondary background color for the excel filtering area."
3207
+ },
3208
+ {
3209
+ "name": "header-foreground",
3210
+ "type": "Color",
3211
+ "description": "The excel filtering header text color."
3212
+ },
3213
+ {
3214
+ "name": "subheader-foreground",
3215
+ "type": "Color",
3216
+ "description": "The excel filtering subheader text color."
3217
+ },
3218
+ {
3219
+ "name": "actions-foreground",
3220
+ "type": "Color",
3221
+ "description": "The excel filtering actions text color."
3222
+ },
3223
+ {
3224
+ "name": "actions-icon-color",
3225
+ "type": "Color",
3226
+ "description": "The excel filtering actions icon color."
3227
+ },
3228
+ {
3229
+ "name": "actions-hover-foreground",
3230
+ "type": "Color",
3231
+ "description": "The excel filtering actions hover text color."
3232
+ },
3233
+ {
3234
+ "name": "actions-hover-icon-color",
3235
+ "type": "Color",
3236
+ "description": "The excel filtering actions hover icon color."
3237
+ },
3238
+ {
3239
+ "name": "actions-selected-icon-color",
3240
+ "type": "Color",
3241
+ "description": "The excel filtering actions selected icon color."
3242
+ },
3243
+ {
3244
+ "name": "actions-hover-background",
3245
+ "type": "Color",
3246
+ "description": "The excel filtering actions hover background color."
3247
+ },
3248
+ {
3249
+ "name": "actions-disabled-foreground",
3250
+ "type": "Color",
3251
+ "description": "The excel filtering actions disabled text color."
3252
+ },
3253
+ {
3254
+ "name": "border-color",
3255
+ "type": "Color",
3256
+ "description": "The border color used in the excel style filter."
3257
+ }
3258
+ ]
3259
+ },
3159
3260
  "grid-summary": {
3160
3261
  "name": "grid-summary",
3161
3262
  "themeFunctionName": "grid-summary-theme",
@@ -3691,8 +3792,16 @@
3691
3792
  "description": "Grid Toolbar Theme",
3692
3793
  "primaryTokens": [
3693
3794
  {
3694
- "name": "background-color",
3695
- "description": "The toolbar background color."
3795
+ "name": "background",
3796
+ "description": "The toolbar background and drop-down background color."
3797
+ },
3798
+ {
3799
+ "name": "foreground",
3800
+ "description": "The toolbar title and drop-down item text color."
3801
+ },
3802
+ {
3803
+ "name": "accent-color",
3804
+ "description": "The accent color used to derive interactive item backgrounds."
3696
3805
  },
3697
3806
  {
3698
3807
  "name": "dropdown-background",
@@ -3710,14 +3819,24 @@
3710
3819
  "primaryTokensSummary": "Derived colors are auto-calculated for contrast.",
3711
3820
  "tokens": [
3712
3821
  {
3713
- "name": "background-color",
3822
+ "name": "background",
3714
3823
  "type": "Color",
3715
- "description": "The toolbar background color. PRIMARY - derives title-text-color."
3824
+ "description": "The toolbar background and drop-down background color. PRIMARY - derives title-text-color and dropdown-background."
3825
+ },
3826
+ {
3827
+ "name": "foreground",
3828
+ "type": "Color",
3829
+ "description": "The toolbar title and drop-down item text color. PRIMARY - derives title-text-color and item-text-color."
3830
+ },
3831
+ {
3832
+ "name": "accent-color",
3833
+ "type": "Color",
3834
+ "description": "The accent color used to derive interactive item backgrounds."
3716
3835
  },
3717
3836
  {
3718
3837
  "name": "title-text-color",
3719
3838
  "type": "Color",
3720
- "description": "The toolbar title text color. Auto-derived from background-color."
3839
+ "description": "The toolbar title text color. Auto-derived from background."
3721
3840
  },
3722
3841
  {
3723
3842
  "name": "dropdown-background",
@@ -3749,6 +3868,11 @@
3749
3868
  "type": "Color",
3750
3869
  "description": "The toolbar drop-down item focus text color. Auto-derived from dropdown-background or item-focus-background."
3751
3870
  },
3871
+ {
3872
+ "name": "size",
3873
+ "type": "List",
3874
+ "description": "The size used for the grid toolbar min-height."
3875
+ },
3752
3876
  {
3753
3877
  "name": "border-color",
3754
3878
  "type": "Color",
@@ -5289,26 +5413,31 @@
5289
5413
  "description": "Paginator Theme",
5290
5414
  "primaryTokens": [
5291
5415
  {
5292
- "name": "background-color",
5416
+ "name": "background",
5293
5417
  "description": "The paginator background."
5294
5418
  }
5295
5419
  ],
5296
5420
  "primaryTokensSummary": "Derived colors are auto-calculated for contrast.",
5297
5421
  "tokens": [
5298
5422
  {
5299
- "name": "text-color",
5423
+ "name": "foreground",
5300
5424
  "type": "Color",
5301
- "description": "The text color. Auto-derived from background-color."
5425
+ "description": "The text color. Auto-derived from background."
5302
5426
  },
5303
5427
  {
5304
- "name": "background-color",
5428
+ "name": "background",
5305
5429
  "type": "Color",
5306
- "description": "The background color of the paging panel. PRIMARY - derives text-color."
5430
+ "description": "The background color of the paging panel. PRIMARY - derives foreground."
5307
5431
  },
5308
5432
  {
5309
5433
  "name": "border-color",
5310
5434
  "type": "Color",
5311
5435
  "description": "The border color of the paging panel."
5436
+ },
5437
+ {
5438
+ "name": "accent-color",
5439
+ "type": "Color",
5440
+ "description": "The accent color used for paginator interactive elements."
5312
5441
  }
5313
5442
  ]
5314
5443
  },
@@ -5452,6 +5581,16 @@
5452
5581
  "type": "Color",
5453
5582
  "description": "The background color of the filtering row. PRIMARY - derives label-foreground, header-background."
5454
5583
  },
5584
+ {
5585
+ "name": "foreground",
5586
+ "type": "Color",
5587
+ "description": "The foreground color for text and icons in the query builder."
5588
+ },
5589
+ {
5590
+ "name": "accent-color",
5591
+ "type": "Color",
5592
+ "description": "The accent color for highlights and interactive elements in the query builder."
5593
+ },
5455
5594
  {
5456
5595
  "name": "header-background",
5457
5596
  "type": "Color",
package/dist/mcp/index.js CHANGED
@@ -33,7 +33,7 @@ import { z } from "zod";
33
33
  function createServer() {
34
34
  const server = new McpServer({
35
35
  name: "igniteui-theming",
36
- version: "v26.1.0",
36
+ version: "v27.0.0",
37
37
  description: "Generate Sass theming code for Ignite UI components - create palettes, typography, elevations, and complete themes"
38
38
  });
39
39
  registerTools(server);
@@ -1503,25 +1503,30 @@ var paginator = {
1503
1503
  "themeFunctionName": "paginator-theme",
1504
1504
  "description": "Paginator Theme",
1505
1505
  "primaryTokens": [{
1506
- "name": "background-color",
1506
+ "name": "background",
1507
1507
  "description": "The paginator background."
1508
1508
  }],
1509
1509
  "primaryTokensSummary": "Derived colors are auto-calculated for contrast.",
1510
1510
  "tokens": [
1511
1511
  {
1512
- "name": "text-color",
1512
+ "name": "foreground",
1513
1513
  "type": "Color",
1514
- "description": "The text color. Auto-derived from background-color."
1514
+ "description": "The text color. Auto-derived from background."
1515
1515
  },
1516
1516
  {
1517
- "name": "background-color",
1517
+ "name": "background",
1518
1518
  "type": "Color",
1519
- "description": "The background color of the paging panel. PRIMARY - derives text-color."
1519
+ "description": "The background color of the paging panel. PRIMARY - derives foreground."
1520
1520
  },
1521
1521
  {
1522
1522
  "name": "border-color",
1523
1523
  "type": "Color",
1524
1524
  "description": "The border color of the paging panel."
1525
+ },
1526
+ {
1527
+ "name": "accent-color",
1528
+ "type": "Color",
1529
+ "description": "The accent color used for paginator interactive elements."
1525
1530
  }
1526
1531
  ]
1527
1532
  };
@@ -3669,19 +3674,32 @@ var themes_default = {
3669
3674
  "themeFunctionName": "column-actions-theme",
3670
3675
  "description": "Column Actions Theme",
3671
3676
  "primaryTokens": [{
3672
- "name": "background-color",
3677
+ "name": "background",
3673
3678
  "description": "The background color of the panel."
3674
3679
  }],
3675
3680
  "primaryTokensSummary": "Derived colors are auto-calculated for contrast.",
3676
- "tokens": [{
3677
- "name": "title-color",
3678
- "type": "Color",
3679
- "description": "The text color used for the title of the list. Auto-derived from background-color."
3680
- }, {
3681
- "name": "background-color",
3682
- "type": "Color",
3683
- "description": "The background color of the panel. PRIMARY - derives title-color.\n"
3684
- }]
3681
+ "tokens": [
3682
+ {
3683
+ "name": "title-color",
3684
+ "type": "Color",
3685
+ "description": "The text color used for the title of the list. Auto-derived from foreground."
3686
+ },
3687
+ {
3688
+ "name": "background",
3689
+ "type": "Color",
3690
+ "description": "The background color of the panel. PRIMARY - derives foreground and title-color."
3691
+ },
3692
+ {
3693
+ "name": "foreground",
3694
+ "type": "Color",
3695
+ "description": "The foreground color for content and icons in the panel. Auto-derived from background."
3696
+ },
3697
+ {
3698
+ "name": "accent-color",
3699
+ "type": "Color",
3700
+ "description": "The accent color used for highlights or active states in the panel.\n"
3701
+ }
3702
+ ]
3685
3703
  },
3686
3704
  combo,
3687
3705
  "date-range-picker": {
@@ -4086,6 +4104,97 @@ var themes_default = {
4086
4104
  ]
4087
4105
  },
4088
4106
  accordion,
4107
+ "excel-filtering": {
4108
+ "name": "excel-filtering",
4109
+ "themeFunctionName": "excel-filtering-theme",
4110
+ "description": "Excel Filtering Theme",
4111
+ "primaryTokens": [
4112
+ {
4113
+ "name": "background",
4114
+ "description": "The background color for the excel filtering area."
4115
+ },
4116
+ {
4117
+ "name": "foreground",
4118
+ "description": "The foreground/text color for the excel filtering area."
4119
+ },
4120
+ {
4121
+ "name": "accent-color",
4122
+ "description": "The accent color for the excel filtering area and its internal components."
4123
+ }
4124
+ ],
4125
+ "tokens": [
4126
+ {
4127
+ "name": "background",
4128
+ "type": "Color",
4129
+ "description": "The background color for the excel filtering area."
4130
+ },
4131
+ {
4132
+ "name": "foreground",
4133
+ "type": "Color",
4134
+ "description": "The foreground/text color for the excel filtering area."
4135
+ },
4136
+ {
4137
+ "name": "accent-color",
4138
+ "type": "Color",
4139
+ "description": "The accent color for the excel filtering and its internal components."
4140
+ },
4141
+ {
4142
+ "name": "secondary-background",
4143
+ "type": "Color",
4144
+ "description": "The secondary background color for the excel filtering area."
4145
+ },
4146
+ {
4147
+ "name": "header-foreground",
4148
+ "type": "Color",
4149
+ "description": "The excel filtering header text color."
4150
+ },
4151
+ {
4152
+ "name": "subheader-foreground",
4153
+ "type": "Color",
4154
+ "description": "The excel filtering subheader text color."
4155
+ },
4156
+ {
4157
+ "name": "actions-foreground",
4158
+ "type": "Color",
4159
+ "description": "The excel filtering actions text color."
4160
+ },
4161
+ {
4162
+ "name": "actions-icon-color",
4163
+ "type": "Color",
4164
+ "description": "The excel filtering actions icon color."
4165
+ },
4166
+ {
4167
+ "name": "actions-hover-foreground",
4168
+ "type": "Color",
4169
+ "description": "The excel filtering actions hover text color."
4170
+ },
4171
+ {
4172
+ "name": "actions-hover-icon-color",
4173
+ "type": "Color",
4174
+ "description": "The excel filtering actions hover icon color."
4175
+ },
4176
+ {
4177
+ "name": "actions-selected-icon-color",
4178
+ "type": "Color",
4179
+ "description": "The excel filtering actions selected icon color."
4180
+ },
4181
+ {
4182
+ "name": "actions-hover-background",
4183
+ "type": "Color",
4184
+ "description": "The excel filtering actions hover background color."
4185
+ },
4186
+ {
4187
+ "name": "actions-disabled-foreground",
4188
+ "type": "Color",
4189
+ "description": "The excel filtering actions disabled text color."
4190
+ },
4191
+ {
4192
+ "name": "border-color",
4193
+ "type": "Color",
4194
+ "description": "The border color used in the excel style filter."
4195
+ }
4196
+ ]
4197
+ },
4089
4198
  "grid-summary": {
4090
4199
  "name": "grid-summary",
4091
4200
  "themeFunctionName": "grid-summary-theme",
@@ -4148,8 +4257,16 @@ var themes_default = {
4148
4257
  "description": "Grid Toolbar Theme",
4149
4258
  "primaryTokens": [
4150
4259
  {
4151
- "name": "background-color",
4152
- "description": "The toolbar background color."
4260
+ "name": "background",
4261
+ "description": "The toolbar background and drop-down background color."
4262
+ },
4263
+ {
4264
+ "name": "foreground",
4265
+ "description": "The toolbar title and drop-down item text color."
4266
+ },
4267
+ {
4268
+ "name": "accent-color",
4269
+ "description": "The accent color used to derive interactive item backgrounds."
4153
4270
  },
4154
4271
  {
4155
4272
  "name": "dropdown-background",
@@ -4167,14 +4284,24 @@ var themes_default = {
4167
4284
  "primaryTokensSummary": "Derived colors are auto-calculated for contrast.",
4168
4285
  "tokens": [
4169
4286
  {
4170
- "name": "background-color",
4287
+ "name": "background",
4288
+ "type": "Color",
4289
+ "description": "The toolbar background and drop-down background color. PRIMARY - derives title-text-color and dropdown-background."
4290
+ },
4291
+ {
4292
+ "name": "foreground",
4171
4293
  "type": "Color",
4172
- "description": "The toolbar background color. PRIMARY - derives title-text-color."
4294
+ "description": "The toolbar title and drop-down item text color. PRIMARY - derives title-text-color and item-text-color."
4295
+ },
4296
+ {
4297
+ "name": "accent-color",
4298
+ "type": "Color",
4299
+ "description": "The accent color used to derive interactive item backgrounds."
4173
4300
  },
4174
4301
  {
4175
4302
  "name": "title-text-color",
4176
4303
  "type": "Color",
4177
- "description": "The toolbar title text color. Auto-derived from background-color."
4304
+ "description": "The toolbar title text color. Auto-derived from background."
4178
4305
  },
4179
4306
  {
4180
4307
  "name": "dropdown-background",
@@ -4206,6 +4333,11 @@ var themes_default = {
4206
4333
  "type": "Color",
4207
4334
  "description": "The toolbar drop-down item focus text color. Auto-derived from dropdown-background or item-focus-background."
4208
4335
  },
4336
+ {
4337
+ "name": "size",
4338
+ "type": "List",
4339
+ "description": "The size used for the grid toolbar min-height."
4340
+ },
4209
4341
  {
4210
4342
  "name": "border-color",
4211
4343
  "type": "Color",
@@ -5483,6 +5615,16 @@ var themes_default = {
5483
5615
  "type": "Color",
5484
5616
  "description": "The background color of the filtering row. PRIMARY - derives label-foreground, header-background."
5485
5617
  },
5618
+ {
5619
+ "name": "foreground",
5620
+ "type": "Color",
5621
+ "description": "The foreground color for text and icons in the query builder."
5622
+ },
5623
+ {
5624
+ "name": "accent-color",
5625
+ "type": "Color",
5626
+ "description": "The accent color for highlights and interactive elements in the query builder."
5627
+ },
5486
5628
  {
5487
5629
  "name": "header-background",
5488
5630
  "type": "Color",