igniteui-theming 27.1.0 → 27.2.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.
- package/dist/json/components/bootstrap.json +1 -1
- package/dist/json/components/fluent.json +1 -1
- package/dist/json/components/indigo.json +1 -1
- package/dist/json/components/material.json +1 -1
- package/dist/json/components/themes.json +12 -2
- package/dist/mcp/index.js +1 -1
- package/dist/mcp/theming/dist/json/components/themes.js +12 -2
- package/dist/tailwind/utilities/bootstrap.css +1 -1
- package/dist/tailwind/utilities/fluent.css +1 -1
- package/dist/tailwind/utilities/indigo.css +1 -1
- package/dist/tailwind/utilities/material.css +1 -1
- package/package.json +1 -1
- package/sass/themes/components/grid/_grid-summary-theme.scss +9 -3
- package/sass/themes/components/grid/_grid-theme.scss +32 -268
- package/sass/themes/schemas/components/light/_grid-summary.scss +6 -2
|
@@ -3288,6 +3288,16 @@
|
|
|
3288
3288
|
"type": "Color",
|
|
3289
3289
|
"description": "The summaries value/result color. Auto-derived from background-color."
|
|
3290
3290
|
},
|
|
3291
|
+
{
|
|
3292
|
+
"name": "border-width",
|
|
3293
|
+
"type": "String",
|
|
3294
|
+
"description": "The summaries border width."
|
|
3295
|
+
},
|
|
3296
|
+
{
|
|
3297
|
+
"name": "border-style",
|
|
3298
|
+
"type": "String",
|
|
3299
|
+
"description": "The summaries border style."
|
|
3300
|
+
},
|
|
3291
3301
|
{
|
|
3292
3302
|
"name": "border-color",
|
|
3293
3303
|
"type": "Color",
|
|
@@ -3295,12 +3305,12 @@
|
|
|
3295
3305
|
},
|
|
3296
3306
|
{
|
|
3297
3307
|
"name": "pinned-border-width",
|
|
3298
|
-
"type": "
|
|
3308
|
+
"type": "String",
|
|
3299
3309
|
"description": "The border width of the summary panel."
|
|
3300
3310
|
},
|
|
3301
3311
|
{
|
|
3302
3312
|
"name": "pinned-border-style",
|
|
3303
|
-
"type": "
|
|
3313
|
+
"type": "String",
|
|
3304
3314
|
"description": "The border style of the summary panel."
|
|
3305
3315
|
},
|
|
3306
3316
|
{
|
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: "v27.
|
|
36
|
+
version: "v27.2.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);
|
|
@@ -4223,6 +4223,16 @@ var themes_default = {
|
|
|
4223
4223
|
"type": "Color",
|
|
4224
4224
|
"description": "The summaries value/result color. Auto-derived from background-color."
|
|
4225
4225
|
},
|
|
4226
|
+
{
|
|
4227
|
+
"name": "border-width",
|
|
4228
|
+
"type": "String",
|
|
4229
|
+
"description": "The summaries border width."
|
|
4230
|
+
},
|
|
4231
|
+
{
|
|
4232
|
+
"name": "border-style",
|
|
4233
|
+
"type": "String",
|
|
4234
|
+
"description": "The summaries border style."
|
|
4235
|
+
},
|
|
4226
4236
|
{
|
|
4227
4237
|
"name": "border-color",
|
|
4228
4238
|
"type": "Color",
|
|
@@ -4230,12 +4240,12 @@ var themes_default = {
|
|
|
4230
4240
|
},
|
|
4231
4241
|
{
|
|
4232
4242
|
"name": "pinned-border-width",
|
|
4233
|
-
"type": "
|
|
4243
|
+
"type": "String",
|
|
4234
4244
|
"description": "The border width of the summary panel."
|
|
4235
4245
|
},
|
|
4236
4246
|
{
|
|
4237
4247
|
"name": "pinned-border-style",
|
|
4238
|
-
"type": "
|
|
4248
|
+
"type": "String",
|
|
4239
4249
|
"description": "The border style of the summary panel."
|
|
4240
4250
|
},
|
|
4241
4251
|
{
|