igniteui-theming 25.2.0 → 26.0.1
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/LICENSE +21 -0
- package/README.md +397 -0
- 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 +42 -32
- package/dist/mcp/generators/css.js +6 -5
- package/dist/mcp/generators/sass.js +7 -6
- package/dist/mcp/index.js +1 -1
- package/dist/mcp/knowledge/component-metadata.d.ts +20 -19
- package/dist/mcp/knowledge/component-metadata.js +102 -67
- package/dist/mcp/knowledge/component-search.d.ts +18 -0
- package/dist/mcp/knowledge/component-search.js +144 -0
- package/dist/mcp/knowledge/component-themes.js +8 -4
- package/dist/mcp/knowledge/index.d.ts +2 -1
- package/dist/mcp/knowledge/index.js +3 -2
- package/dist/mcp/theming/dist/json/components/themes.js +37 -15
- package/dist/mcp/tools/descriptions.d.ts +12 -10
- package/dist/mcp/tools/descriptions.js +91 -26
- package/dist/mcp/tools/handlers/component-theme.js +25 -6
- package/dist/mcp/tools/handlers/component-tokens.js +60 -84
- package/dist/mcp/tools/handlers/custom-palette.js +2 -1
- package/dist/mcp/tools/handlers/elevations.js +2 -0
- package/dist/mcp/tools/handlers/layout.js +1 -0
- package/dist/mcp/tools/handlers/palette.js +2 -0
- package/dist/mcp/tools/handlers/theme.js +2 -0
- package/dist/mcp/tools/handlers/typography.js +2 -0
- package/dist/mcp/tools/schemas.d.ts +6 -6
- package/dist/mcp/utils/sass.d.ts +5 -1
- package/dist/mcp/utils/sass.js +8 -4
- package/package.json +3 -1
- package/sass/themes/components/chat/_chat-theme.scss +31 -13
- package/sass/themes/components/grid/_grid-theme.scss +17 -15
- package/sass/themes/components/progress/_circular-theme.scss +3 -3
- package/sass/themes/schemas/components/dark/_progress.scss +4 -4
- package/sass/themes/schemas/components/light/_chat.scss +50 -4
- package/sass/themes/schemas/components/light/_progress.scss +4 -4
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { ComponentMetadata } from './component-metadata.js';
|
|
2
|
+
/** Options accepted by {@link createComponentSearcher}. */
|
|
3
|
+
export interface CreateComponentSearcherOptions {
|
|
4
|
+
componentNames: string[];
|
|
5
|
+
metadata: Record<string, ComponentMetadata>;
|
|
6
|
+
}
|
|
7
|
+
/** Pre-built search index with a single `search` method. */
|
|
8
|
+
export interface ComponentSearcher {
|
|
9
|
+
search(query: string): string[];
|
|
10
|
+
}
|
|
11
|
+
/**
|
|
12
|
+
* Build a pre-indexed component searcher from theme names and metadata.
|
|
13
|
+
*
|
|
14
|
+
* The returned searcher normalises queries, scores them against an
|
|
15
|
+
* index of canonical names / aliases / selectors, and returns results
|
|
16
|
+
* ranked by confidence (exact > token-set > overlap > substring > typo).
|
|
17
|
+
*/
|
|
18
|
+
export declare function createComponentSearcher(options: CreateComponentSearcherOptions): ComponentSearcher;
|
|
@@ -0,0 +1,144 @@
|
|
|
1
|
+
//#region src/knowledge/component-search.ts
|
|
2
|
+
var FRAMEWORK_PREFIX_PATTERN = /\big[cx]-/g;
|
|
3
|
+
var NON_ALPHANUMERIC_PATTERN = /[^a-z0-9]+/g;
|
|
4
|
+
var MIN_SEARCH_SCORE = 500;
|
|
5
|
+
function stripFrameworkPrefixToken(token) {
|
|
6
|
+
if (token.startsWith("igx") && token.length > 3) return token.slice(3);
|
|
7
|
+
if (token.startsWith("igc") && token.length > 3) return token.slice(3);
|
|
8
|
+
return token;
|
|
9
|
+
}
|
|
10
|
+
function normalizeSearchTerm(term) {
|
|
11
|
+
const lowerTerm = term.toLowerCase().trim();
|
|
12
|
+
if (!lowerTerm) return;
|
|
13
|
+
const normalizedDelimiters = lowerTerm.replace(FRAMEWORK_PREFIX_PATTERN, "").replace(NON_ALPHANUMERIC_PATTERN, " ").trim();
|
|
14
|
+
if (!normalizedDelimiters) return;
|
|
15
|
+
const tokens = normalizedDelimiters.split(/\s+/).map(stripFrameworkPrefixToken).filter((token) => token.length > 0);
|
|
16
|
+
if (tokens.length === 0) return;
|
|
17
|
+
const uniqueTokens = [...new Set(tokens)];
|
|
18
|
+
return {
|
|
19
|
+
compact: tokens.join(""),
|
|
20
|
+
tokenSetKey: uniqueTokens.slice().sort().join("|"),
|
|
21
|
+
tokens: uniqueTokens
|
|
22
|
+
};
|
|
23
|
+
}
|
|
24
|
+
function getSelectorSearchSignals(selectors) {
|
|
25
|
+
if (!selectors) return [];
|
|
26
|
+
const values = [selectors.angular, selectors.webcomponents];
|
|
27
|
+
const signals = [];
|
|
28
|
+
for (const value of values) {
|
|
29
|
+
if (!value) continue;
|
|
30
|
+
if (Array.isArray(value)) {
|
|
31
|
+
signals.push(...value);
|
|
32
|
+
continue;
|
|
33
|
+
}
|
|
34
|
+
signals.push(value);
|
|
35
|
+
}
|
|
36
|
+
return signals;
|
|
37
|
+
}
|
|
38
|
+
function getComponentSearchSignals(componentName, metadataByName) {
|
|
39
|
+
const metadata = metadataByName[componentName];
|
|
40
|
+
const signals = new Set([componentName]);
|
|
41
|
+
if (!metadata) return [...signals];
|
|
42
|
+
metadata.aliases?.forEach((alias) => {
|
|
43
|
+
signals.add(alias);
|
|
44
|
+
});
|
|
45
|
+
getSelectorSearchSignals(metadata.selectors).forEach((selector) => {
|
|
46
|
+
signals.add(selector);
|
|
47
|
+
});
|
|
48
|
+
return [...signals];
|
|
49
|
+
}
|
|
50
|
+
function buildComponentSearchIndex(searchableNames, metadataByName) {
|
|
51
|
+
return searchableNames.map((name) => {
|
|
52
|
+
return {
|
|
53
|
+
name,
|
|
54
|
+
signals: getComponentSearchSignals(name, metadataByName).map(normalizeSearchTerm).filter((signal) => !!signal)
|
|
55
|
+
};
|
|
56
|
+
});
|
|
57
|
+
}
|
|
58
|
+
function getTokenCoverageScore(query, signal) {
|
|
59
|
+
if (query.tokens.length === 0 || signal.tokens.length === 0) return 0;
|
|
60
|
+
const signalTokens = new Set(signal.tokens);
|
|
61
|
+
let overlapCount = 0;
|
|
62
|
+
for (const token of query.tokens) if (signalTokens.has(token)) overlapCount++;
|
|
63
|
+
if (overlapCount === 0) return 0;
|
|
64
|
+
const queryCoverage = overlapCount / query.tokens.length;
|
|
65
|
+
const signalCoverage = overlapCount / signal.tokens.length;
|
|
66
|
+
if (query.tokens.length === 1 && query.tokens[0].length < 4) return queryCoverage === 1 && signalCoverage === 1 ? 900 : 0;
|
|
67
|
+
if (queryCoverage === 1) return 800 + overlapCount * 10 - Math.max(0, signal.tokens.length - query.tokens.length);
|
|
68
|
+
if (query.tokens.length > 1 && queryCoverage >= .5) return 650 + Math.round(queryCoverage * 100 + signalCoverage * 50);
|
|
69
|
+
return 0;
|
|
70
|
+
}
|
|
71
|
+
function getSubstringFallbackScore(query, signal) {
|
|
72
|
+
if (query.compact.length < 4 || signal.compact.length === 0) return 0;
|
|
73
|
+
if (signal.compact.includes(query.compact)) return 500 + Math.min(query.compact.length, 100);
|
|
74
|
+
return 0;
|
|
75
|
+
}
|
|
76
|
+
function getEditDistanceWithinLimit(source, target, limit) {
|
|
77
|
+
if (source === target) return 0;
|
|
78
|
+
const sourceLength = source.length;
|
|
79
|
+
const targetLength = target.length;
|
|
80
|
+
if (Math.abs(sourceLength - targetLength) > limit) return;
|
|
81
|
+
let previous = new Array(targetLength + 1);
|
|
82
|
+
let current = new Array(targetLength + 1);
|
|
83
|
+
for (let j = 0; j <= targetLength; j++) previous[j] = j;
|
|
84
|
+
for (let i = 1; i <= sourceLength; i++) {
|
|
85
|
+
current[0] = i;
|
|
86
|
+
let rowMin = current[0];
|
|
87
|
+
for (let j = 1; j <= targetLength; j++) {
|
|
88
|
+
const substitutionCost = source[i - 1] === target[j - 1] ? 0 : 1;
|
|
89
|
+
current[j] = Math.min(previous[j] + 1, current[j - 1] + 1, previous[j - 1] + substitutionCost);
|
|
90
|
+
rowMin = Math.min(rowMin, current[j]);
|
|
91
|
+
}
|
|
92
|
+
if (rowMin > limit) return;
|
|
93
|
+
[previous, current] = [current, previous];
|
|
94
|
+
}
|
|
95
|
+
return previous[targetLength] <= limit ? previous[targetLength] : void 0;
|
|
96
|
+
}
|
|
97
|
+
function getTypoFallbackScore(query, signal) {
|
|
98
|
+
if (query.tokens.length !== 1) return 0;
|
|
99
|
+
const [queryToken] = query.tokens;
|
|
100
|
+
if (queryToken.length < 5) return 0;
|
|
101
|
+
let bestScore = 0;
|
|
102
|
+
for (const signalToken of signal.tokens) {
|
|
103
|
+
if (signalToken.length < 5) continue;
|
|
104
|
+
if (getEditDistanceWithinLimit(queryToken, signalToken, 1) === 1) bestScore = Math.max(bestScore, 540);
|
|
105
|
+
}
|
|
106
|
+
return bestScore;
|
|
107
|
+
}
|
|
108
|
+
function scoreSearchEntry(query, entry) {
|
|
109
|
+
let bestScore = 0;
|
|
110
|
+
for (const signal of entry.signals) {
|
|
111
|
+
if (signal.compact === query.compact) {
|
|
112
|
+
bestScore = Math.max(bestScore, 1e3);
|
|
113
|
+
continue;
|
|
114
|
+
}
|
|
115
|
+
if (signal.tokenSetKey === query.tokenSetKey) {
|
|
116
|
+
bestScore = Math.max(bestScore, 900);
|
|
117
|
+
continue;
|
|
118
|
+
}
|
|
119
|
+
bestScore = Math.max(bestScore, getTokenCoverageScore(query, signal));
|
|
120
|
+
bestScore = Math.max(bestScore, getSubstringFallbackScore(query, signal));
|
|
121
|
+
bestScore = Math.max(bestScore, getTypoFallbackScore(query, signal));
|
|
122
|
+
}
|
|
123
|
+
return bestScore;
|
|
124
|
+
}
|
|
125
|
+
/**
|
|
126
|
+
* Build a pre-indexed component searcher from theme names and metadata.
|
|
127
|
+
*
|
|
128
|
+
* The returned searcher normalises queries, scores them against an
|
|
129
|
+
* index of canonical names / aliases / selectors, and returns results
|
|
130
|
+
* ranked by confidence (exact > token-set > overlap > substring > typo).
|
|
131
|
+
*/
|
|
132
|
+
function createComponentSearcher(options) {
|
|
133
|
+
const componentSearchIndex = buildComponentSearchIndex(Array.from(new Set([...options.componentNames, ...Object.keys(options.metadata)])).sort((a, b) => a.localeCompare(b)), options.metadata);
|
|
134
|
+
return { search(query) {
|
|
135
|
+
const normalizedQuery = normalizeSearchTerm(query);
|
|
136
|
+
if (!normalizedQuery) return [];
|
|
137
|
+
return componentSearchIndex.map((entry) => ({
|
|
138
|
+
name: entry.name,
|
|
139
|
+
score: scoreSearchEntry(normalizedQuery, entry)
|
|
140
|
+
})).filter((match) => match.score >= MIN_SEARCH_SCORE).sort((a, b) => b.score - a.score || a.name.localeCompare(b.name)).map((match) => match.name);
|
|
141
|
+
} };
|
|
142
|
+
}
|
|
143
|
+
//#endregion
|
|
144
|
+
export { createComponentSearcher };
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import themes_default from "../theming/dist/json/components/themes.js";
|
|
2
2
|
import { COMPONENT_METADATA } from "./component-metadata.js";
|
|
3
|
+
import { createComponentSearcher } from "./component-search.js";
|
|
3
4
|
//#region src/knowledge/component-themes.ts
|
|
4
5
|
/**
|
|
5
6
|
* Component themes knowledge base - loads component theme data from JSON.
|
|
@@ -13,6 +14,10 @@ var COMPONENT_THEMES = themes_default;
|
|
|
13
14
|
* List of all available component names.
|
|
14
15
|
*/
|
|
15
16
|
var COMPONENT_NAMES = Object.keys(COMPONENT_THEMES);
|
|
17
|
+
var componentSearcher = createComponentSearcher({
|
|
18
|
+
componentNames: COMPONENT_NAMES,
|
|
19
|
+
metadata: COMPONENT_METADATA
|
|
20
|
+
});
|
|
16
21
|
/**
|
|
17
22
|
* Get a component theme by name.
|
|
18
23
|
* @param componentName - The component name (e.g., 'button', 'avatar')
|
|
@@ -33,8 +38,8 @@ function resolveComponentTheme(componentName) {
|
|
|
33
38
|
resolvedName: componentName
|
|
34
39
|
};
|
|
35
40
|
const metadata = COMPONENT_METADATA[componentName];
|
|
36
|
-
|
|
37
|
-
|
|
41
|
+
const alias = metadata?.theme ?? metadata?.childOf;
|
|
42
|
+
if (!alias) return {};
|
|
38
43
|
if (alias === componentName) return { error: `Theme alias target "${alias}" cannot reference itself.` };
|
|
39
44
|
if (!COMPONENT_METADATA[alias]) return { error: `Theme alias target "${alias}" is not a valid component metadata entry.` };
|
|
40
45
|
const resolvedTheme = COMPONENT_THEMES[alias];
|
|
@@ -74,8 +79,7 @@ function validateTokens(componentName, tokenNames) {
|
|
|
74
79
|
* @returns Array of matching component names
|
|
75
80
|
*/
|
|
76
81
|
function searchComponents(query) {
|
|
77
|
-
|
|
78
|
-
return COMPONENT_NAMES.filter((name) => name.toLowerCase().includes(lowerQuery));
|
|
82
|
+
return componentSearcher.search(query);
|
|
79
83
|
}
|
|
80
84
|
//#endregion
|
|
81
85
|
export { COMPONENT_NAMES, COMPONENT_THEMES, getComponentTheme, getTokenNames, resolveComponentTheme, searchComponents, validateTokens };
|
|
@@ -3,7 +3,8 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export { COLOR_SEMANTIC_ROLES, COLOR_USAGE_MARKDOWN, type ColorSemanticRole, OPACITY_USAGE, type ShadeRange, STATE_PATTERNS, THEME_PATTERNS, } from './color-usage.js';
|
|
5
5
|
export { COLOR_GUIDANCE_MARKDOWN, COLOR_RULES_SUMMARY, COLOR_VARIANT_RULES, } from './colors.js';
|
|
6
|
-
export { COMPONENT_METADATA, type ComponentMetadata, type ComponentSelectors, type CompoundInfo, getComponentPlatformAvailability, getComponentSelector, getComponentsForPlatform, getCompoundComponentInfo, getTokenDerivationsForChild, getVariants, hasVariants, isComponentAvailable, isCompoundComponent, isVariantTheme, type
|
|
6
|
+
export { COMPONENT_METADATA, type ComponentMetadata, type ComponentSelectors, type CompoundInfo, getComponentPlatformAvailability, getComponentSelector, getComponentsForPlatform, getCompoundComponentInfo, getThemingSelector, getTokenDerivationsForChild, getVariants, hasVariants, isComponentAvailable, isCompoundComponent, isVariantTheme, type TokenDerivation, VARIANT_THEME_NAMES, } from './component-metadata.js';
|
|
7
|
+
export { type ComponentSearcher, type CreateComponentSearcherOptions, createComponentSearcher, } from './component-search.js';
|
|
7
8
|
export { COMPONENT_NAMES, COMPONENT_THEMES, type ComponentTheme, type ComponentToken, getComponentTheme, getTokenNames, resolveComponentTheme, searchComponents, validateTokens, } from './component-themes.js';
|
|
8
9
|
export { ALL_CHROMATIC_SHADES, ALL_GRAY_SHADES, CUSTOM_PALETTE_GUIDANCE, REQUIRED_SHADES, } from './custom-palettes.js';
|
|
9
10
|
export { ELEVATION_LEVELS, ELEVATION_PRESETS, type ElevationLevel, type ElevationPreset, INDIGO_ELEVATIONS, MATERIAL_ELEVATIONS, } from './elevations.js';
|
|
@@ -11,7 +11,8 @@ import "./docs/layout/mixins/sizing.js";
|
|
|
11
11
|
import "./docs/layout/mixins/spacing.js";
|
|
12
12
|
import "./docs/layout/overview.js";
|
|
13
13
|
import "./palettes.js";
|
|
14
|
-
import {
|
|
14
|
+
import { COMPONENT_METADATA, getThemingSelector } from "./component-metadata.js";
|
|
15
|
+
import "./component-search.js";
|
|
15
16
|
import { getComponentTheme } from "./component-themes.js";
|
|
16
17
|
import "../utils/types.js";
|
|
17
18
|
import "./multipliers.js";
|
|
@@ -24,4 +25,4 @@ import "./platforms/index.js";
|
|
|
24
25
|
import "./sass-api.js";
|
|
25
26
|
import "./typography.js";
|
|
26
27
|
import "./platforms/angular.js";
|
|
27
|
-
export { SCHEMAS as SCHEMA_PRESETS,
|
|
28
|
+
export { COMPONENT_METADATA, SCHEMAS as SCHEMA_PRESETS, getComponentTheme, getThemingSelector };
|
|
@@ -479,13 +479,20 @@ var chat = {
|
|
|
479
479
|
"name": "chat",
|
|
480
480
|
"themeFunctionName": "chat-theme",
|
|
481
481
|
"description": "Chat Theme",
|
|
482
|
-
"primaryTokens": [
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
482
|
+
"primaryTokens": [
|
|
483
|
+
{
|
|
484
|
+
"name": "header-background",
|
|
485
|
+
"description": "The background color of the chat header."
|
|
486
|
+
},
|
|
487
|
+
{
|
|
488
|
+
"name": "sent-message-background",
|
|
489
|
+
"description": "The background color for sent messages."
|
|
490
|
+
},
|
|
491
|
+
{
|
|
492
|
+
"name": "received-message-background",
|
|
493
|
+
"description": "The background color for received messages."
|
|
494
|
+
}
|
|
495
|
+
],
|
|
489
496
|
"primaryTokensSummary": "Derived colors are auto-calculated for contrast.",
|
|
490
497
|
"tokens": [
|
|
491
498
|
{
|
|
@@ -496,7 +503,7 @@ var chat = {
|
|
|
496
503
|
{
|
|
497
504
|
"name": "header-background",
|
|
498
505
|
"type": "Color",
|
|
499
|
-
"description": "The background color of the chat header.
|
|
506
|
+
"description": "The background color of the chat header."
|
|
500
507
|
},
|
|
501
508
|
{
|
|
502
509
|
"name": "header-color",
|
|
@@ -509,19 +516,34 @@ var chat = {
|
|
|
509
516
|
"description": "The color used for the chat header border."
|
|
510
517
|
},
|
|
511
518
|
{
|
|
512
|
-
"name": "message-background",
|
|
519
|
+
"name": "sent-message-background",
|
|
513
520
|
"type": "Color",
|
|
514
|
-
"description": "The background color
|
|
521
|
+
"description": "The background color for sent messages."
|
|
515
522
|
},
|
|
516
523
|
{
|
|
517
|
-
"name": "message-color",
|
|
524
|
+
"name": "sent-message-color",
|
|
525
|
+
"type": "Color",
|
|
526
|
+
"description": "The text color of the chat messages. Auto-derived from sent-message-background."
|
|
527
|
+
},
|
|
528
|
+
{
|
|
529
|
+
"name": "received-message-background",
|
|
530
|
+
"type": "Color",
|
|
531
|
+
"description": "The background color for received messages."
|
|
532
|
+
},
|
|
533
|
+
{
|
|
534
|
+
"name": "received-message-color",
|
|
518
535
|
"type": "Color",
|
|
519
|
-
"description": "The text color
|
|
536
|
+
"description": "The text color for received messages. Auto-derived from received-message-background."
|
|
520
537
|
},
|
|
521
538
|
{
|
|
522
539
|
"name": "message-actions-color",
|
|
523
540
|
"type": "Color",
|
|
524
|
-
"description": "The icon color of the chat message actions. Auto-derived from message-color."
|
|
541
|
+
"description": "The icon color of the chat received message actions. Auto-derived from received-message-color."
|
|
542
|
+
},
|
|
543
|
+
{
|
|
544
|
+
"name": "message-border-radius",
|
|
545
|
+
"type": "Number",
|
|
546
|
+
"description": "The border radius of the chat messages."
|
|
525
547
|
},
|
|
526
548
|
{
|
|
527
549
|
"name": "file-background",
|
|
@@ -1086,7 +1108,7 @@ var accordion = {
|
|
|
1086
1108
|
}
|
|
1087
1109
|
]
|
|
1088
1110
|
};
|
|
1089
|
-
var grid = /* @__PURE__ */ JSON.parse("{\"name\":\"grid\",\"themeFunctionName\":\"grid-theme\",\"description\":\"Grid Theme\",\"primaryTokens\":[{\"name\":\"header-background\",\"description\":\"The table header background color.\"},{\"name\":\"content-background\",\"description\":\"The table body background color.\"},{\"name\":\"ghost-header-background\",\"description\":\"The dragged header background color.\"},{\"name\":\"group-row-background\",\"description\":\"The grid group row background color.\"},{\"name\":\"grouparea-background\",\"description\":\"The grid group area background color.\"}],\"primaryTokensSummary\":\"Derived colors are auto-calculated for contrast.\",\"tokens\":[{\"name\":\"background\",\"type\":\"Color\",\"description\":\"The background color of the grid. PRIMARY\"},{\"name\":\"foreground\",\"type\":\"Color\",\"description\":\"The foreground color of the grid. PRIMARY\"},{\"name\":\"accent-color\",\"type\":\"Color\",\"description\":\"The accent color used for interactive elements in the grid. PRIMARY\"},{\"name\":\"header-background\",\"type\":\"Color\",\"description\":\"The table header background color. PRIMARY - derives header-text-color, header-border-color, and many more.\"},{\"name\":\"header-text-color\",\"type\":\"Color\",\"description\":\"The table header text color. Auto-derived from header-background.\"},{\"name\":\"header-border-width\",\"type\":\"String\",\"description\":\"The border width used for header borders.\"},{\"name\":\"header-border-style\",\"type\":\"String\",\"description\":\"The border style used for header borders.\"},{\"name\":\"header-border-color\",\"type\":\"Color\",\"description\":\"The color used for header borders. Auto-derived from header-background.\"},{\"name\":\"header-selected-background\",\"type\":\"Color\",\"description\":\"The table header background color when selected. Auto-derived from header-background.\"},{\"name\":\"header-selected-text-color\",\"type\":\"Color\",\"description\":\"The table header text color when selected. Auto-derived from header-selected-background.\"},{\"name\":\"sorted-header-icon-color\",\"type\":\"Color\",\"description\":\"The sort icon color when sorted. Auto-derived from header-background.\"},{\"name\":\"sortable-header-icon-hover-color\",\"type\":\"color\",\"description\":\"The icon color on hover when sortable. Auto-derived from sorted-header-icon-color.\"},{\"name\":\"content-background\",\"type\":\"Color\",\"description\":\"The table body background color. PRIMARY - derives content-text-color, row backgrounds, cell backgrounds, borders.\"},{\"name\":\"content-text-color\",\"type\":\"Color\",\"description\":\"The table body text color. Auto-derived from content-background.\"},{\"name\":\"ghost-header-text-color\",\"type\":\"Color\",\"description\":\"The dragged header text color. Auto-derived from ghost-header-background.\"},{\"name\":\"ghost-header-icon-color\",\"type\":\"Color\",\"description\":\"The dragged header icon color. Auto-derived from ghost-header-background.\"},{\"name\":\"ghost-header-background\",\"type\":\"Color\",\"description\":\"The dragged header background color. PRIMARY - derives ghost-header-text-color, ghost-header-icon-color.\"},{\"name\":\"row-odd-background\",\"type\":\"Color\",\"description\":\"The background color of odd rows. Auto-derived from content-background.\"},{\"name\":\"row-even-background\",\"type\":\"Color\",\"description\":\"The background color of even rows. Auto-derived from content-background.\"},{\"name\":\"row-odd-text-color\",\"type\":\"Color\",\"description\":\"The text color of odd rows. Auto-derived from row-odd-background.\"},{\"name\":\"row-even-text-color\",\"type\":\"Color\",\"description\":\"The text color of even rows. Auto-derived from row-even-background.\"},{\"name\":\"row-selected-background\",\"type\":\"Color\",\"description\":\"The selected row background color. Auto-derived from content-background.\"},{\"name\":\"row-selected-hover-background\",\"type\":\"Color\",\"description\":\"The selected row hover background color. Auto-derived from row-selected-background.\"},{\"name\":\"row-selected-text-color\",\"type\":\"Color\",\"description\":\"The selected row text color. Auto-derived from row-selected-background.\"},{\"name\":\"row-selected-hover-text-color\",\"type\":\"Color\",\"description\":\"The selected row hover text color. Auto-derived from row-selected-hover-background.\"},{\"name\":\"row-hover-background\",\"type\":\"Color\",\"description\":\"The hover row background color. Auto-derived from content-background.\"},{\"name\":\"row-hover-text-color\",\"type\":\"Color\",\"description\":\"The hover row text color. Auto-derived from row-hover-background.\"},{\"name\":\"row-border-color\",\"type\":\"Color\",\"description\":\"The row bottom border color. Auto-derived from content-background.\"},{\"name\":\"pinned-border-width\",\"type\":\"String\",\"description\":\"The border width of the pinned border.\"},{\"name\":\"pinned-border-style\",\"type\":\"String\",\"description\":\"The CSS border style of the pinned border.\"},{\"name\":\"pinned-border-color\",\"type\":\"Color\",\"description\":\"The color of the pinned border. Auto-derived from content-background.\"},{\"name\":\"cell-active-border-color\",\"type\":\"Color\",\"description\":\"The border color for the active cell. Auto-derived from content-background.\"},{\"name\":\"cell-selected-background\",\"type\":\"Color\",\"description\":\"The selected cell background color. Auto-derived from content-background.\"},{\"name\":\"cell-selected-text-color\",\"type\":\"Color\",\"description\":\"The selected cell text color. Auto-derived from cell-selected-background.\"},{\"name\":\"cell-editing-background\",\"type\":\"Color\",\"description\":\"The background of the cell being edited. Auto-derived from content-background.\"},{\"name\":\"cell-editing-foreground\",\"type\":\"Color\",\"description\":\"The cell text color in edit mode. Auto-derived from cell-editing-background.\"},{\"name\":\"cell-editing-focus-foreground\",\"type\":\"Color\",\"description\":\"The cell text color in edit mode on focus. Auto-derived from cell-editing-background.\"},{\"name\":\"cell-edited-value-color\",\"type\":\"Color\",\"description\":\"The text color of an edited cell.\"},{\"name\":\"cell-new-color\",\"type\":\"Color\",\"description\":\"The text color of a new cell.\"},{\"name\":\"cell-disabled-color\",\"type\":\"Color\",\"description\":\"The text color of a disabled cell.\"},{\"name\":\"cell-selected-within-background\",\"type\":\"Color\",\"description\":\"The background of selected cell in selected row. Auto-derived from row-selected-background.\"},{\"name\":\"cell-selected-within-text-color\",\"type\":\"Color\",\"description\":\"The color of selected cell in selected row. Auto-derived from cell-selected-within-background.\"},{\"name\":\"edit-mode-color\",\"type\":\"Color\",\"description\":\"The color around the row/cell in edit mode. Auto-derived from content-background.\"},{\"name\":\"edited-row-indicator\",\"type\":\"Color\",\"description\":\"The edited row indicator line color.\"},{\"name\":\"resize-line-color\",\"type\":\"Color\",\"description\":\"The table header resize line color.\"},{\"name\":\"drop-indicator-color\",\"type\":\"Color\",\"description\":\"The color of the column drag indicator line.\"},{\"name\":\"grouparea-background\",\"type\":\"Color\",\"description\":\"The grid group area background color. PRIMARY - derives grouparea-color, drop-area-background. Auto-derived from header-background.\"},{\"name\":\"grouparea-color\",\"type\":\"Color\",\"description\":\"The grid group area color. Auto-derived from grouparea-background.\"},{\"name\":\"group-row-background\",\"type\":\"Color\",\"description\":\"The grid group row background color. PRIMARY - derives expand-icon-color, group-row-selected-background, group-label-text, group-count-background. Auto-derived from header-background.\"},{\"name\":\"group-row-selected-background\",\"type\":\"Color\",\"description\":\"The group row selected background. Auto-derived from group-row-background.\"},{\"name\":\"group-label-column-name-text\",\"type\":\"Color\",\"description\":\"The grid group row column name text color.\"},{\"name\":\"group-label-icon\",\"type\":\"Color\",\"description\":\"The grid group row icon color.\"},{\"name\":\"group-label-text\",\"type\":\"Color\",\"description\":\"The grid group row text color. Auto-derived from group-row-background or group-row-selected-background.\"},{\"name\":\"expand-all-icon-color\",\"type\":\"Color\",\"description\":\"The header expand all icon color. Auto-derived from header-background.\"},{\"name\":\"expand-all-icon-hover-color\",\"type\":\"Color\",\"description\":\"The header expand all icon hover color. Auto-derived from header-background.\"},{\"name\":\"expand-icon-color\",\"type\":\"Color\",\"description\":\"The grid row expand icon color. Auto-derived from group-row-background or group-row-selected-background.\"},{\"name\":\"expand-icon-hover-color\",\"type\":\"Color\",\"description\":\"The grid row expand icon hover color. Auto-derived from expand-icon-color.\"},{\"name\":\"active-expand-icon-color\",\"type\":\"Color\",\"description\":\"The active expand icon color.\"},{\"name\":\"active-expand-icon-hover-color\",\"type\":\"Color\",\"description\":\"The active expand icon hover color.\"},{\"name\":\"group-count-background\",\"type\":\"Color\",\"description\":\"The group row count badge background. Auto-derived from group-row-background or group-row-selected-background.\"},{\"name\":\"group-count-text-color\",\"type\":\"Color\",\"description\":\"The group row count badge text color. Auto-derived from group-count-background.\"},{\"name\":\"drop-area-text-color\",\"type\":\"Color\",\"description\":\"The drop area text color. Auto-derived from drop-area-background.\"},{\"name\":\"drop-area-icon-color\",\"type\":\"Color\",\"description\":\"The drop area icon color. Auto-derived from drop-area-background.\"},{\"name\":\"drop-area-background\",\"type\":\"Color\",\"description\":\"The drop area background color. Auto-derived from grouparea-background.\"},{\"name\":\"drop-area-on-drop-background\",\"type\":\"Color\",\"description\":\"The drop area background on drop. Auto-derived from drop-area-background.\"},{\"name\":\"filtering-header-background\",\"type\":\"Color\",\"description\":\"The filtered column header background. Auto-derived from header-background.\"},{\"name\":\"filtering-header-text-color\",\"type\":\"Color\",\"description\":\"The filtered column header text color. Auto-derived from filtering-header-background.\"},{\"name\":\"filtering-row-background\",\"type\":\"Color\",\"description\":\"The filtering row background. Auto-derived from header-background.\"},{\"name\":\"filtering-row-text-color\",\"type\":\"Color\",\"description\":\"The filtering row text color. Auto-derived from filtering-row-background.\"},{\"name\":\"filtering-dialog-background\",\"type\":\"Color\",\"description\":\"The background color of the advanced filtering dialog.\"},{\"name\":\"excel-filtering-header-foreground\",\"type\":\"Color\",\"description\":\"The excel filtering header text color. Auto-derived from filtering-row-background.\"},{\"name\":\"excel-filtering-subheader-foreground\",\"type\":\"Color\",\"description\":\"The excel filtering subheader text color. Auto-derived from filtering-row-background.\"},{\"name\":\"excel-filtering-actions-foreground\",\"type\":\"Color\",\"description\":\"The excel filtering actions text color. Auto-derived from filtering-row-background.\"},{\"name\":\"excel-filtering-actions-hover-foreground\",\"type\":\"Color\",\"description\":\"The excel filtering actions hover text color.\"},{\"name\":\"excel-filtering-actions-disabled-foreground\",\"type\":\"Color\",\"description\":\"The excel filtering actions disabled text color. Auto-derived from filtering-row-background.\"},{\"name\":\"excel-filtering-border-color\",\"type\":\"Color\",\"description\":\"The border color used in the excel style filter. Auto-derived from foreground and background.\"},{\"name\":\"tree-filtered-text-color\",\"type\":\"Color\",\"description\":\"Grouping row background color on focus.\"},{\"name\":\"summaries-patch-background\",\"type\":\"Color\",\"description\":\"The leading summaries patch background.\"},{\"name\":\"row-highlight\",\"type\":\"Color\",\"description\":\"The grid row highlight indication color.\"},{\"name\":\"grid-shadow\",\"type\":\"List\",\"description\":\"The shadow of the grid.\"},{\"name\":\"drag-shadow\",\"type\":\"List\",\"description\":\"The shadow for movable elements.\"},{\"name\":\"row-ghost-background\",\"type\":\"color\",\"description\":\"The dragged row background color.\"},{\"name\":\"row-drag-color\",\"type\":\"color\",\"description\":\"The row drag handle color.\"},{\"name\":\"grid-border-color\",\"type\":\"Color\",\"description\":\"The color of the grid border.\"},{\"name\":\"drop-area-border-radius\",\"type\":\"List\",\"description\":\"The border radius for column drop area.\"},{\"name\":\"active-state-border-style\",\"type\":\"List\",\"description\":\"The border style used for row active state and cell active state.\"},{\"name\":\"body-column-border-color\",\"type\":\"Color\",\"description\":\"The border color used for the body column.\"},{\"name\":\"body-column-hover-border-color\",\"type\":\"Color\",\"description\":\"The border color used for the body column when in hovered row.\"},{\"name\":\"body-column-hover-selected-border-color\",\"type\":\"Color\",\"description\":\"The border color used for the body column when in hovered + selected row.\"},{\"name\":\"body-column-selected-border-color\",\"type\":\"Color\",\"description\":\"The border color used for the body column when in selected row.\"}]}");
|
|
1111
|
+
var grid = /* @__PURE__ */ JSON.parse("{\"name\":\"grid\",\"themeFunctionName\":\"grid-theme\",\"description\":\"Grid Theme\",\"primaryTokens\":[{\"name\":\"background\",\"description\":\"Controls the overall background color of the grid, including header and content.\"},{\"name\":\"foreground\",\"description\":\"Controls the overall foreground color of the grid, including text and icons.\"},{\"name\":\"accent-color\",\"description\":\"Controls the accent color used for interactive elements in the grid.\"}],\"tokens\":[{\"name\":\"background\",\"type\":\"Color\",\"description\":\"The background color of the grid.\"},{\"name\":\"foreground\",\"type\":\"Color\",\"description\":\"The foreground color of the grid.\"},{\"name\":\"accent-color\",\"type\":\"Color\",\"description\":\"The accent color used for interactive elements in the grid.\"},{\"name\":\"header-background\",\"type\":\"Color\",\"description\":\"The table header background color - derives header-text-color, header-border-color, and many more.\"},{\"name\":\"header-text-color\",\"type\":\"Color\",\"description\":\"The table header text color. Auto-derived from header-background.\"},{\"name\":\"header-border-width\",\"type\":\"String\",\"description\":\"The border width used for header borders.\"},{\"name\":\"header-border-style\",\"type\":\"String\",\"description\":\"The border style used for header borders.\"},{\"name\":\"header-border-color\",\"type\":\"Color\",\"description\":\"The color used for header borders. Auto-derived from header-background.\"},{\"name\":\"header-selected-background\",\"type\":\"Color\",\"description\":\"The table header background color when selected. Auto-derived from header-background.\"},{\"name\":\"header-selected-text-color\",\"type\":\"Color\",\"description\":\"The table header text color when selected. Auto-derived from header-selected-background.\"},{\"name\":\"sorted-header-icon-color\",\"type\":\"Color\",\"description\":\"The sort icon color when sorted. Auto-derived from header-background.\"},{\"name\":\"sortable-header-icon-hover-color\",\"type\":\"color\",\"description\":\"The icon color on hover when sortable. Auto-derived from sorted-header-icon-color.\"},{\"name\":\"content-background\",\"type\":\"Color\",\"description\":\"The table body background color - derives content-text-color, row backgrounds, cell backgrounds, borders.\"},{\"name\":\"content-text-color\",\"type\":\"Color\",\"description\":\"The table body text color. Auto-derived from content-background.\"},{\"name\":\"ghost-header-text-color\",\"type\":\"Color\",\"description\":\"The dragged header text color. Auto-derived from ghost-header-background.\"},{\"name\":\"ghost-header-icon-color\",\"type\":\"Color\",\"description\":\"The dragged header icon color. Auto-derived from ghost-header-background.\"},{\"name\":\"ghost-header-background\",\"type\":\"Color\",\"description\":\"The dragged header background color - derives ghost-header-text-color, ghost-header-icon-color.\"},{\"name\":\"row-odd-background\",\"type\":\"Color\",\"description\":\"The background color of odd rows. Auto-derived from content-background.\"},{\"name\":\"row-even-background\",\"type\":\"Color\",\"description\":\"The background color of even rows. Auto-derived from content-background.\"},{\"name\":\"row-odd-text-color\",\"type\":\"Color\",\"description\":\"The text color of odd rows. Auto-derived from row-odd-background.\"},{\"name\":\"row-even-text-color\",\"type\":\"Color\",\"description\":\"The text color of even rows. Auto-derived from row-even-background.\"},{\"name\":\"row-selected-background\",\"type\":\"Color\",\"description\":\"The selected row background color. Auto-derived from content-background.\"},{\"name\":\"row-selected-hover-background\",\"type\":\"Color\",\"description\":\"The selected row hover background color. Auto-derived from row-selected-background.\"},{\"name\":\"row-selected-text-color\",\"type\":\"Color\",\"description\":\"The selected row text color. Auto-derived from row-selected-background.\"},{\"name\":\"row-selected-hover-text-color\",\"type\":\"Color\",\"description\":\"The selected row hover text color. Auto-derived from row-selected-hover-background.\"},{\"name\":\"row-hover-background\",\"type\":\"Color\",\"description\":\"The hover row background color. Auto-derived from content-background.\"},{\"name\":\"row-hover-text-color\",\"type\":\"Color\",\"description\":\"The hover row text color. Auto-derived from row-hover-background.\"},{\"name\":\"row-border-color\",\"type\":\"Color\",\"description\":\"The row bottom border color. Auto-derived from content-background.\"},{\"name\":\"pinned-border-width\",\"type\":\"String\",\"description\":\"The border width of the pinned border.\"},{\"name\":\"pinned-border-style\",\"type\":\"String\",\"description\":\"The CSS border style of the pinned border.\"},{\"name\":\"pinned-border-color\",\"type\":\"Color\",\"description\":\"The color of the pinned border. Auto-derived from content-background.\"},{\"name\":\"cell-active-border-color\",\"type\":\"Color\",\"description\":\"The border color for the active cell. Auto-derived from content-background.\"},{\"name\":\"cell-selected-background\",\"type\":\"Color\",\"description\":\"The selected cell background color. Auto-derived from content-background.\"},{\"name\":\"cell-selected-text-color\",\"type\":\"Color\",\"description\":\"The selected cell text color. Auto-derived from cell-selected-background.\"},{\"name\":\"cell-editing-background\",\"type\":\"Color\",\"description\":\"The background of the cell being edited. Auto-derived from content-background.\"},{\"name\":\"cell-editing-foreground\",\"type\":\"Color\",\"description\":\"The cell text color in edit mode. Auto-derived from cell-editing-background.\"},{\"name\":\"cell-editing-focus-foreground\",\"type\":\"Color\",\"description\":\"The cell text color in edit mode on focus. Auto-derived from cell-editing-background.\"},{\"name\":\"cell-edited-value-color\",\"type\":\"Color\",\"description\":\"The text color of an edited cell.\"},{\"name\":\"cell-new-color\",\"type\":\"Color\",\"description\":\"The text color of a new cell.\"},{\"name\":\"cell-disabled-color\",\"type\":\"Color\",\"description\":\"The text color of a disabled cell.\"},{\"name\":\"cell-selected-within-background\",\"type\":\"Color\",\"description\":\"The background of selected cell in selected row. Auto-derived from row-selected-background.\"},{\"name\":\"cell-selected-within-text-color\",\"type\":\"Color\",\"description\":\"The color of selected cell in selected row. Auto-derived from cell-selected-within-background.\"},{\"name\":\"edit-mode-color\",\"type\":\"Color\",\"description\":\"The color around the row/cell in edit mode. Auto-derived from content-background.\"},{\"name\":\"edited-row-indicator\",\"type\":\"Color\",\"description\":\"The edited row indicator line color.\"},{\"name\":\"resize-line-color\",\"type\":\"Color\",\"description\":\"The table header resize line color.\"},{\"name\":\"drop-indicator-color\",\"type\":\"Color\",\"description\":\"The color of the column drag indicator line.\"},{\"name\":\"grouparea-background\",\"type\":\"Color\",\"description\":\"The grid group area background color - derives grouparea-color, drop-area-background. Auto-derived from header-background.\"},{\"name\":\"grouparea-color\",\"type\":\"Color\",\"description\":\"The grid group area color. Auto-derived from grouparea-background.\"},{\"name\":\"group-row-background\",\"type\":\"Color\",\"description\":\"The grid group row background color - derives expand-icon-color, group-row-selected-background, group-label-text, group-count-background. Auto-derived from header-background.\"},{\"name\":\"group-row-selected-background\",\"type\":\"Color\",\"description\":\"The group row selected background. Auto-derived from group-row-background.\"},{\"name\":\"group-label-column-name-text\",\"type\":\"Color\",\"description\":\"The grid group row column name text color.\"},{\"name\":\"group-label-icon\",\"type\":\"Color\",\"description\":\"The grid group row icon color.\"},{\"name\":\"group-label-text\",\"type\":\"Color\",\"description\":\"The grid group row text color. Auto-derived from group-row-background or group-row-selected-background.\"},{\"name\":\"expand-all-icon-color\",\"type\":\"Color\",\"description\":\"The header expand all icon color. Auto-derived from header-background.\"},{\"name\":\"expand-all-icon-hover-color\",\"type\":\"Color\",\"description\":\"The header expand all icon hover color. Auto-derived from header-background.\"},{\"name\":\"expand-icon-color\",\"type\":\"Color\",\"description\":\"The grid row expand icon color. Auto-derived from group-row-background or group-row-selected-background.\"},{\"name\":\"expand-icon-hover-color\",\"type\":\"Color\",\"description\":\"The grid row expand icon hover color. Auto-derived from expand-icon-color.\"},{\"name\":\"active-expand-icon-color\",\"type\":\"Color\",\"description\":\"The active expand icon color.\"},{\"name\":\"active-expand-icon-hover-color\",\"type\":\"Color\",\"description\":\"The active expand icon hover color.\"},{\"name\":\"group-count-background\",\"type\":\"Color\",\"description\":\"The group row count badge background. Auto-derived from group-row-background or group-row-selected-background.\"},{\"name\":\"group-count-text-color\",\"type\":\"Color\",\"description\":\"The group row count badge text color. Auto-derived from group-count-background.\"},{\"name\":\"drop-area-text-color\",\"type\":\"Color\",\"description\":\"The drop area text color. Auto-derived from drop-area-background.\"},{\"name\":\"drop-area-icon-color\",\"type\":\"Color\",\"description\":\"The drop area icon color. Auto-derived from drop-area-background.\"},{\"name\":\"drop-area-background\",\"type\":\"Color\",\"description\":\"The drop area background color. Auto-derived from grouparea-background.\"},{\"name\":\"drop-area-on-drop-background\",\"type\":\"Color\",\"description\":\"The drop area background on drop. Auto-derived from drop-area-background.\"},{\"name\":\"filtering-header-background\",\"type\":\"Color\",\"description\":\"The filtered column header background. Auto-derived from header-background.\"},{\"name\":\"filtering-header-text-color\",\"type\":\"Color\",\"description\":\"The filtered column header text color. Auto-derived from filtering-header-background.\"},{\"name\":\"filtering-row-background\",\"type\":\"Color\",\"description\":\"The filtering row background. Auto-derived from header-background.\"},{\"name\":\"filtering-row-text-color\",\"type\":\"Color\",\"description\":\"The filtering row text color. Auto-derived from filtering-row-background.\"},{\"name\":\"filtering-dialog-background\",\"type\":\"Color\",\"description\":\"The background color of the advanced filtering dialog.\"},{\"name\":\"excel-filtering-header-foreground\",\"type\":\"Color\",\"description\":\"The excel filtering header text color. Auto-derived from filtering-row-background.\"},{\"name\":\"excel-filtering-subheader-foreground\",\"type\":\"Color\",\"description\":\"The excel filtering subheader text color. Auto-derived from filtering-row-background.\"},{\"name\":\"excel-filtering-actions-foreground\",\"type\":\"Color\",\"description\":\"The excel filtering actions text color. Auto-derived from filtering-row-background.\"},{\"name\":\"excel-filtering-actions-hover-foreground\",\"type\":\"Color\",\"description\":\"The excel filtering actions hover text color.\"},{\"name\":\"excel-filtering-actions-disabled-foreground\",\"type\":\"Color\",\"description\":\"The excel filtering actions disabled text color. Auto-derived from filtering-row-background.\"},{\"name\":\"excel-filtering-border-color\",\"type\":\"Color\",\"description\":\"The border color used in the excel style filter. Auto-derived from foreground and background.\"},{\"name\":\"tree-filtered-text-color\",\"type\":\"Color\",\"description\":\"Grouping row background color on focus.\"},{\"name\":\"summaries-patch-background\",\"type\":\"Color\",\"description\":\"The leading summaries patch background.\"},{\"name\":\"row-highlight\",\"type\":\"Color\",\"description\":\"The grid row highlight indication color.\"},{\"name\":\"grid-shadow\",\"type\":\"List\",\"description\":\"The shadow of the grid.\"},{\"name\":\"drag-shadow\",\"type\":\"List\",\"description\":\"The shadow for movable elements.\"},{\"name\":\"row-ghost-background\",\"type\":\"color\",\"description\":\"The dragged row background color.\"},{\"name\":\"row-drag-color\",\"type\":\"color\",\"description\":\"The row drag handle color.\"},{\"name\":\"grid-border-color\",\"type\":\"Color\",\"description\":\"The color of the grid border.\"},{\"name\":\"drop-area-border-radius\",\"type\":\"List\",\"description\":\"The border radius for column drop area.\"},{\"name\":\"active-state-border-style\",\"type\":\"List\",\"description\":\"The border style used for row active state and cell active state.\"},{\"name\":\"body-column-border-color\",\"type\":\"Color\",\"description\":\"The border color used for the body column.\"},{\"name\":\"body-column-hover-border-color\",\"type\":\"Color\",\"description\":\"The border color used for the body column when in hovered row.\"},{\"name\":\"body-column-hover-selected-border-color\",\"type\":\"Color\",\"description\":\"The border color used for the body column when in hovered + selected row.\"},{\"name\":\"body-column-selected-border-color\",\"type\":\"Color\",\"description\":\"The border color used for the body column when in selected row.\"}]}");
|
|
1090
1112
|
var highlight = {
|
|
1091
1113
|
"name": "highlight",
|
|
1092
1114
|
"themeFunctionName": "highlight-theme",
|
|
@@ -5328,7 +5350,7 @@ var themes_default = {
|
|
|
5328
5350
|
"primaryTokens": [],
|
|
5329
5351
|
"tokens": [
|
|
5330
5352
|
{
|
|
5331
|
-
"name": "
|
|
5353
|
+
"name": "track-color",
|
|
5332
5354
|
"type": "Color",
|
|
5333
5355
|
"description": "The base circle fill color."
|
|
5334
5356
|
},
|