@lumeo-ui/mcp-server 2.0.0-rc.20 → 2.0.0-rc.21
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/package.json +1 -1
- package/src/components-api.json +247 -12
- package/src/registry.json +3 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lumeo-ui/mcp-server",
|
|
3
|
-
"version": "2.0.0-rc.
|
|
3
|
+
"version": "2.0.0-rc.21",
|
|
4
4
|
"description": "Model Context Protocol server for the Lumeo Blazor component library. Lets LLMs (Claude, Copilot, Cursor) author correct Lumeo markup.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
package/src/components-api.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://lumeo.nativ.sh/components-api-schema.json",
|
|
3
|
-
"version": "2.0.0-rc.
|
|
4
|
-
"generated": "2026-05-
|
|
3
|
+
"version": "2.0.0-rc.21",
|
|
4
|
+
"generated": "2026-05-06T10:18:31.1939518Z",
|
|
5
5
|
"stats": {
|
|
6
6
|
"componentCount": 131,
|
|
7
|
-
"totalParameters":
|
|
8
|
-
"totalEnums":
|
|
7
|
+
"totalParameters": 3177,
|
|
8
|
+
"totalEnums": 89,
|
|
9
9
|
"totalRecords": 48,
|
|
10
10
|
"thinFallbacks": []
|
|
11
11
|
},
|
|
@@ -2367,6 +2367,14 @@
|
|
|
2367
2367
|
"isCascading": false,
|
|
2368
2368
|
"captureUnmatched": false
|
|
2369
2369
|
},
|
|
2370
|
+
{
|
|
2371
|
+
"name": "IconSize",
|
|
2372
|
+
"type": "string",
|
|
2373
|
+
"default": "\"h-5 w-5\"",
|
|
2374
|
+
"description": "Size class applied to the icon container. Defaults to h-5 w-5 to match the original visual. Override to fit larger content like avatars (e.g. \"h-7 w-7\").",
|
|
2375
|
+
"isCascading": false,
|
|
2376
|
+
"captureUnmatched": false
|
|
2377
|
+
},
|
|
2370
2378
|
{
|
|
2371
2379
|
"name": "IsActive",
|
|
2372
2380
|
"type": "bool?",
|
|
@@ -3022,6 +3030,22 @@
|
|
|
3022
3030
|
"isCascading": false,
|
|
3023
3031
|
"captureUnmatched": false
|
|
3024
3032
|
},
|
|
3033
|
+
{
|
|
3034
|
+
"name": "DateTooltip",
|
|
3035
|
+
"type": "Func<DateTime, string?>?",
|
|
3036
|
+
"default": null,
|
|
3037
|
+
"description": "Optional per-date tooltip text. Returned string becomes the day cell's title attribute (native browser tooltip on hover). Return null or empty for no tooltip on that date. Useful for booking calendars: \"Booked by John, 14:00–17:00\" or \"Sold out\".",
|
|
3038
|
+
"isCascading": false,
|
|
3039
|
+
"captureUnmatched": false
|
|
3040
|
+
},
|
|
3041
|
+
{
|
|
3042
|
+
"name": "DateBadge",
|
|
3043
|
+
"type": "Func<DateTime, RenderFragment?>?",
|
|
3044
|
+
"default": null,
|
|
3045
|
+
"description": "Optional per-date indicator slot. Returns a RenderFragment rendered absolutely positioned in the bottom-right of the day cell — good for status dots, count badges, icons. Return null for no badge on that date. The slot is non-interactive (pointer-events-none) so clicks still hit the day button.",
|
|
3046
|
+
"isCascading": false,
|
|
3047
|
+
"captureUnmatched": false
|
|
3048
|
+
},
|
|
3025
3049
|
{
|
|
3026
3050
|
"name": "FirstDayOfWeek",
|
|
3027
3051
|
"type": "DayOfWeek",
|
|
@@ -12319,7 +12343,7 @@
|
|
|
12319
12343
|
"name": "Open",
|
|
12320
12344
|
"type": "bool",
|
|
12321
12345
|
"default": null,
|
|
12322
|
-
"description":
|
|
12346
|
+
"description": "Popover open state. Bind via @bind-Open when the Combobox lives inside a parent that re-renders heavily (e.g. an EditForm with active validation) — otherwise a parameter cascade can close the popover mid-click. In the bound (controlled) mode the parent owns state and the popover survives re-renders. When unbound, the component still functions but is vulnerable to the cascade-close race; binding is the recommended pattern.",
|
|
12323
12347
|
"isCascading": false,
|
|
12324
12348
|
"captureUnmatched": false
|
|
12325
12349
|
},
|
|
@@ -12504,7 +12528,7 @@
|
|
|
12504
12528
|
"records": [
|
|
12505
12529
|
{
|
|
12506
12530
|
"name": "ComboboxContext",
|
|
12507
|
-
"signature": "ComboboxContext(\n string? Value, HashSet<string>? Values, string SearchText, bool IsOpen, bool Multiple, bool IsSearchLoading, bool Creatable,\n EventCallback<string> OnSelect, EventCallback<bool> SetOpen, EventCallback<string> OnSearch,\n EventCallback<string> OnCreateItem,\n string WrapperId, string ContentId, int FocusedIndex, string? FocusedItemId, string? FocusedItemValue,\n EventCallback<int> SetFocusedIndex,\n Action<string, string> RegisterItem, Action<string> UnregisterItem, int ItemCount,\n bool Invalid, bool Required)",
|
|
12531
|
+
"signature": "ComboboxContext(\r\n string? Value, HashSet<string>? Values, string SearchText, bool IsOpen, bool Multiple, bool IsSearchLoading, bool Creatable,\r\n EventCallback<string> OnSelect, EventCallback<bool> SetOpen, EventCallback<string> OnSearch,\r\n EventCallback<string> OnCreateItem,\r\n string WrapperId, string ContentId, int FocusedIndex, string? FocusedItemId, string? FocusedItemValue,\r\n EventCallback<int> SetFocusedIndex,\r\n Action<string, string> RegisterItem, Action<string> UnregisterItem, int ItemCount,\r\n bool Invalid, bool Required)",
|
|
12508
12532
|
"description": null
|
|
12509
12533
|
}
|
|
12510
12534
|
],
|
|
@@ -16625,6 +16649,38 @@
|
|
|
16625
16649
|
"isCascading": false,
|
|
16626
16650
|
"captureUnmatched": false
|
|
16627
16651
|
},
|
|
16652
|
+
{
|
|
16653
|
+
"name": "IsDateDisabled",
|
|
16654
|
+
"type": "Func<DateTime, bool>?",
|
|
16655
|
+
"default": null,
|
|
16656
|
+
"description": "Custom predicate to disable specific dates (e.g. booked rooms, unavailable slots). Returns true for dates that should not be selectable.",
|
|
16657
|
+
"isCascading": false,
|
|
16658
|
+
"captureUnmatched": false
|
|
16659
|
+
},
|
|
16660
|
+
{
|
|
16661
|
+
"name": "DateClass",
|
|
16662
|
+
"type": "Func<DateTime, string>?",
|
|
16663
|
+
"default": null,
|
|
16664
|
+
"description": "Custom CSS classes per day cell (e.g. status backgrounds for booking calendars).",
|
|
16665
|
+
"isCascading": false,
|
|
16666
|
+
"captureUnmatched": false
|
|
16667
|
+
},
|
|
16668
|
+
{
|
|
16669
|
+
"name": "DateTooltip",
|
|
16670
|
+
"type": "Func<DateTime, string?>?",
|
|
16671
|
+
"default": null,
|
|
16672
|
+
"description": "Per-date tooltip text rendered as the day cell's title attribute (native browser tooltip).",
|
|
16673
|
+
"isCascading": false,
|
|
16674
|
+
"captureUnmatched": false
|
|
16675
|
+
},
|
|
16676
|
+
{
|
|
16677
|
+
"name": "DateBadge",
|
|
16678
|
+
"type": "Func<DateTime, RenderFragment?>?",
|
|
16679
|
+
"default": null,
|
|
16680
|
+
"description": "Per-date indicator slot (status dots, count badges, icons) rendered absolutely positioned in the bottom-right of the day cell.",
|
|
16681
|
+
"isCascading": false,
|
|
16682
|
+
"captureUnmatched": false
|
|
16683
|
+
},
|
|
16628
16684
|
{
|
|
16629
16685
|
"name": "Presets",
|
|
16630
16686
|
"type": "List<DatePickerPreset>?",
|
|
@@ -16729,6 +16785,22 @@
|
|
|
16729
16785
|
"isCascading": false,
|
|
16730
16786
|
"captureUnmatched": false
|
|
16731
16787
|
},
|
|
16788
|
+
{
|
|
16789
|
+
"name": "Open",
|
|
16790
|
+
"type": "bool?",
|
|
16791
|
+
"default": null,
|
|
16792
|
+
"description": "Optional controlled-mode override for the popover open state. When non-null, the consumer holds the source of truth — the picker no longer mutates its internal state and instead raises OpenChanged. Use this when the picker lives inside a parent that re-renders heavily (e.g. an EditForm with active DataAnnotationsValidator) and the popover would otherwise close mid-click during a parameter cascade. When null (default), the picker falls back to its internal open state and behaves exactly as before.",
|
|
16793
|
+
"isCascading": false,
|
|
16794
|
+
"captureUnmatched": false
|
|
16795
|
+
},
|
|
16796
|
+
{
|
|
16797
|
+
"name": "OpenChanged",
|
|
16798
|
+
"type": "EventCallback<bool>",
|
|
16799
|
+
"default": null,
|
|
16800
|
+
"description": "Fires whenever the popover would open or close. Pair with Open via @bind-Open for the controlled-mode pattern described above.",
|
|
16801
|
+
"isCascading": false,
|
|
16802
|
+
"captureUnmatched": false
|
|
16803
|
+
},
|
|
16732
16804
|
{
|
|
16733
16805
|
"name": "Class",
|
|
16734
16806
|
"type": "string?",
|
|
@@ -16771,6 +16843,11 @@
|
|
|
16771
16843
|
"name": "TimeChanged",
|
|
16772
16844
|
"type": "EventCallback<TimeSpan?>",
|
|
16773
16845
|
"description": null
|
|
16846
|
+
},
|
|
16847
|
+
{
|
|
16848
|
+
"name": "OpenChanged",
|
|
16849
|
+
"type": "EventCallback<bool>",
|
|
16850
|
+
"description": "Fires whenever the popover would open or close. Pair with Open via @bind-Open for the controlled-mode pattern described above."
|
|
16774
16851
|
}
|
|
16775
16852
|
],
|
|
16776
16853
|
"enums": [],
|
|
@@ -16848,6 +16925,38 @@
|
|
|
16848
16925
|
"isCascading": false,
|
|
16849
16926
|
"captureUnmatched": false
|
|
16850
16927
|
},
|
|
16928
|
+
{
|
|
16929
|
+
"name": "IsDateDisabled",
|
|
16930
|
+
"type": "Func<DateTime, bool>?",
|
|
16931
|
+
"default": null,
|
|
16932
|
+
"description": "Custom predicate to disable specific dates (e.g. booked rooms). Returns true for dates that should not be selectable.",
|
|
16933
|
+
"isCascading": false,
|
|
16934
|
+
"captureUnmatched": false
|
|
16935
|
+
},
|
|
16936
|
+
{
|
|
16937
|
+
"name": "DateClass",
|
|
16938
|
+
"type": "Func<DateTime, string>?",
|
|
16939
|
+
"default": null,
|
|
16940
|
+
"description": "Custom CSS classes per day cell — forwarded to inner Calendar.",
|
|
16941
|
+
"isCascading": false,
|
|
16942
|
+
"captureUnmatched": false
|
|
16943
|
+
},
|
|
16944
|
+
{
|
|
16945
|
+
"name": "DateTooltip",
|
|
16946
|
+
"type": "Func<DateTime, string?>?",
|
|
16947
|
+
"default": null,
|
|
16948
|
+
"description": "Per-date tooltip text rendered as the day cell's title.",
|
|
16949
|
+
"isCascading": false,
|
|
16950
|
+
"captureUnmatched": false
|
|
16951
|
+
},
|
|
16952
|
+
{
|
|
16953
|
+
"name": "DateBadge",
|
|
16954
|
+
"type": "Func<DateTime, RenderFragment?>?",
|
|
16955
|
+
"default": null,
|
|
16956
|
+
"description": "Per-date indicator slot rendered absolutely positioned in the bottom-right of the day cell.",
|
|
16957
|
+
"isCascading": false,
|
|
16958
|
+
"captureUnmatched": false
|
|
16959
|
+
},
|
|
16851
16960
|
{
|
|
16852
16961
|
"name": "Placeholder",
|
|
16853
16962
|
"type": "string?",
|
|
@@ -18020,6 +18129,14 @@
|
|
|
18020
18129
|
"isCascading": false,
|
|
18021
18130
|
"captureUnmatched": false
|
|
18022
18131
|
},
|
|
18132
|
+
{
|
|
18133
|
+
"name": "Animation",
|
|
18134
|
+
"type": "DrawerAnimation",
|
|
18135
|
+
"default": "DrawerAnimation.Slide",
|
|
18136
|
+
"description": null,
|
|
18137
|
+
"isCascading": false,
|
|
18138
|
+
"captureUnmatched": false
|
|
18139
|
+
},
|
|
18023
18140
|
{
|
|
18024
18141
|
"name": "PreventClose",
|
|
18025
18142
|
"type": "bool",
|
|
@@ -18056,6 +18173,15 @@
|
|
|
18056
18173
|
"Left"
|
|
18057
18174
|
],
|
|
18058
18175
|
"description": null
|
|
18176
|
+
},
|
|
18177
|
+
{
|
|
18178
|
+
"name": "DrawerAnimation",
|
|
18179
|
+
"values": [
|
|
18180
|
+
"Slide",
|
|
18181
|
+
"Fade",
|
|
18182
|
+
"None"
|
|
18183
|
+
],
|
|
18184
|
+
"description": null
|
|
18059
18185
|
}
|
|
18060
18186
|
],
|
|
18061
18187
|
"records": [],
|
|
@@ -19106,6 +19232,14 @@
|
|
|
19106
19232
|
"isCascading": false,
|
|
19107
19233
|
"captureUnmatched": false
|
|
19108
19234
|
},
|
|
19235
|
+
{
|
|
19236
|
+
"name": "Size",
|
|
19237
|
+
"type": "FileUploadSize",
|
|
19238
|
+
"default": "FileUploadSize.Default",
|
|
19239
|
+
"description": "Size of the trigger when Variant=\"Button\". Mirrors ButtonSize so a button-variant FileUpload can match neighbouring buttons in toolbars or compact forms. Has no visual effect on Dropzone or Avatar variants today.",
|
|
19240
|
+
"isCascading": false,
|
|
19241
|
+
"captureUnmatched": false
|
|
19242
|
+
},
|
|
19109
19243
|
{
|
|
19110
19244
|
"name": "Class",
|
|
19111
19245
|
"type": "string?",
|
|
@@ -19130,7 +19264,17 @@
|
|
|
19130
19264
|
"description": null
|
|
19131
19265
|
}
|
|
19132
19266
|
],
|
|
19133
|
-
"enums": [
|
|
19267
|
+
"enums": [
|
|
19268
|
+
{
|
|
19269
|
+
"name": "FileUploadSize",
|
|
19270
|
+
"values": [
|
|
19271
|
+
"Sm",
|
|
19272
|
+
"Default",
|
|
19273
|
+
"Lg"
|
|
19274
|
+
],
|
|
19275
|
+
"description": null
|
|
19276
|
+
}
|
|
19277
|
+
],
|
|
19134
19278
|
"records": [],
|
|
19135
19279
|
"cssVars": [
|
|
19136
19280
|
"--color-background",
|
|
@@ -27717,7 +27861,7 @@
|
|
|
27717
27861
|
"name": "Open",
|
|
27718
27862
|
"type": "bool",
|
|
27719
27863
|
"default": null,
|
|
27720
|
-
"description":
|
|
27864
|
+
"description": "Popover open state. Bind via @bind-Open when the Select lives inside a parent that re-renders heavily (e.g. an EditForm with active validation) — otherwise a parameter cascade can close the popover mid-click. In the bound (controlled) mode the parent owns state and the popover survives re-renders. When unbound, the component still functions but is vulnerable to the cascade-close race; binding is the recommended pattern.",
|
|
27721
27865
|
"isCascading": false,
|
|
27722
27866
|
"captureUnmatched": false
|
|
27723
27867
|
},
|
|
@@ -28454,6 +28598,14 @@
|
|
|
28454
28598
|
"isCascading": false,
|
|
28455
28599
|
"captureUnmatched": false
|
|
28456
28600
|
},
|
|
28601
|
+
{
|
|
28602
|
+
"name": "Animation",
|
|
28603
|
+
"type": "SheetAnimation",
|
|
28604
|
+
"default": "SheetAnimation.Slide",
|
|
28605
|
+
"description": "How the sheet enters/leaves. Slide (default) animates from the configured Side. Fade uses a simple opacity tween — useful in dense forms where popovers and animations compete. None disables the animation entirely.",
|
|
28606
|
+
"isCascading": false,
|
|
28607
|
+
"captureUnmatched": false
|
|
28608
|
+
},
|
|
28457
28609
|
{
|
|
28458
28610
|
"name": "PreventClose",
|
|
28459
28611
|
"type": "bool",
|
|
@@ -28501,6 +28653,15 @@
|
|
|
28501
28653
|
"Full"
|
|
28502
28654
|
],
|
|
28503
28655
|
"description": null
|
|
28656
|
+
},
|
|
28657
|
+
{
|
|
28658
|
+
"name": "SheetAnimation",
|
|
28659
|
+
"values": [
|
|
28660
|
+
"Slide",
|
|
28661
|
+
"Fade",
|
|
28662
|
+
"None"
|
|
28663
|
+
],
|
|
28664
|
+
"description": null
|
|
28504
28665
|
}
|
|
28505
28666
|
],
|
|
28506
28667
|
"records": [],
|
|
@@ -32125,7 +32286,7 @@
|
|
|
32125
32286
|
},
|
|
32126
32287
|
{
|
|
32127
32288
|
"name": "Tags",
|
|
32128
|
-
"type": "List<
|
|
32289
|
+
"type": "List<TItem>?",
|
|
32129
32290
|
"default": null,
|
|
32130
32291
|
"description": null,
|
|
32131
32292
|
"isCascading": false,
|
|
@@ -32133,7 +32294,7 @@
|
|
|
32133
32294
|
},
|
|
32134
32295
|
{
|
|
32135
32296
|
"name": "TagsChanged",
|
|
32136
|
-
"type": "EventCallback<List<
|
|
32297
|
+
"type": "EventCallback<List<TItem>>",
|
|
32137
32298
|
"default": null,
|
|
32138
32299
|
"description": null,
|
|
32139
32300
|
"isCascading": false,
|
|
@@ -32173,7 +32334,7 @@
|
|
|
32173
32334
|
},
|
|
32174
32335
|
{
|
|
32175
32336
|
"name": "Suggestions",
|
|
32176
|
-
"type": "List<
|
|
32337
|
+
"type": "List<TItem>?",
|
|
32177
32338
|
"default": null,
|
|
32178
32339
|
"description": null,
|
|
32179
32340
|
"isCascading": false,
|
|
@@ -32235,6 +32396,78 @@
|
|
|
32235
32396
|
"isCascading": false,
|
|
32236
32397
|
"captureUnmatched": false
|
|
32237
32398
|
},
|
|
32399
|
+
{
|
|
32400
|
+
"name": "MaxTagsHelperText",
|
|
32401
|
+
"type": "string?",
|
|
32402
|
+
"default": null,
|
|
32403
|
+
"description": null,
|
|
32404
|
+
"isCascading": false,
|
|
32405
|
+
"captureUnmatched": false
|
|
32406
|
+
},
|
|
32407
|
+
{
|
|
32408
|
+
"name": "GetTagText",
|
|
32409
|
+
"type": "Func<TItem, string>?",
|
|
32410
|
+
"default": null,
|
|
32411
|
+
"description": null,
|
|
32412
|
+
"isCascading": false,
|
|
32413
|
+
"captureUnmatched": false
|
|
32414
|
+
},
|
|
32415
|
+
{
|
|
32416
|
+
"name": "GetSuggestionText",
|
|
32417
|
+
"type": "Func<TItem, string>?",
|
|
32418
|
+
"default": null,
|
|
32419
|
+
"description": null,
|
|
32420
|
+
"isCascading": false,
|
|
32421
|
+
"captureUnmatched": false
|
|
32422
|
+
},
|
|
32423
|
+
{
|
|
32424
|
+
"name": "TagTemplate",
|
|
32425
|
+
"type": "RenderFragment<TItem>?",
|
|
32426
|
+
"default": null,
|
|
32427
|
+
"description": null,
|
|
32428
|
+
"isCascading": false,
|
|
32429
|
+
"captureUnmatched": false
|
|
32430
|
+
},
|
|
32431
|
+
{
|
|
32432
|
+
"name": "SuggestionTemplate",
|
|
32433
|
+
"type": "RenderFragment<TItem>?",
|
|
32434
|
+
"default": null,
|
|
32435
|
+
"description": null,
|
|
32436
|
+
"isCascading": false,
|
|
32437
|
+
"captureUnmatched": false
|
|
32438
|
+
},
|
|
32439
|
+
{
|
|
32440
|
+
"name": "Separators",
|
|
32441
|
+
"type": "string[]",
|
|
32442
|
+
"default": "new[] { \",\" }",
|
|
32443
|
+
"description": null,
|
|
32444
|
+
"isCascading": false,
|
|
32445
|
+
"captureUnmatched": false
|
|
32446
|
+
},
|
|
32447
|
+
{
|
|
32448
|
+
"name": "ValidateInput",
|
|
32449
|
+
"type": "Func<string, string?>?",
|
|
32450
|
+
"default": null,
|
|
32451
|
+
"description": null,
|
|
32452
|
+
"isCascading": false,
|
|
32453
|
+
"captureUnmatched": false
|
|
32454
|
+
},
|
|
32455
|
+
{
|
|
32456
|
+
"name": "ValidateInputAsync",
|
|
32457
|
+
"type": "Func<string, Task<string?>>?",
|
|
32458
|
+
"default": null,
|
|
32459
|
+
"description": null,
|
|
32460
|
+
"isCascading": false,
|
|
32461
|
+
"captureUnmatched": false
|
|
32462
|
+
},
|
|
32463
|
+
{
|
|
32464
|
+
"name": "CreateTag",
|
|
32465
|
+
"type": "Func<string, TItem?>?",
|
|
32466
|
+
"default": null,
|
|
32467
|
+
"description": null,
|
|
32468
|
+
"isCascading": false,
|
|
32469
|
+
"captureUnmatched": false
|
|
32470
|
+
},
|
|
32238
32471
|
{
|
|
32239
32472
|
"name": "AdditionalAttributes",
|
|
32240
32473
|
"type": "Dictionary<string, object>?",
|
|
@@ -32247,7 +32480,7 @@
|
|
|
32247
32480
|
"events": [
|
|
32248
32481
|
{
|
|
32249
32482
|
"name": "TagsChanged",
|
|
32250
|
-
"type": "EventCallback<List<
|
|
32483
|
+
"type": "EventCallback<List<TItem>>",
|
|
32251
32484
|
"description": null
|
|
32252
32485
|
}
|
|
32253
32486
|
],
|
|
@@ -32371,6 +32604,8 @@
|
|
|
32371
32604
|
"enums": [],
|
|
32372
32605
|
"records": [],
|
|
32373
32606
|
"cssVars": [
|
|
32607
|
+
"--color-accent",
|
|
32608
|
+
"--color-accent-foreground",
|
|
32374
32609
|
"--color-destructive",
|
|
32375
32610
|
"--color-foreground",
|
|
32376
32611
|
"--color-muted",
|
package/src/registry.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://lumeo.nativ.sh/registry-schema.json",
|
|
3
3
|
"version": "2.0.0",
|
|
4
|
-
"generated": "2026-05-
|
|
4
|
+
"generated": "2026-05-06T10:18:30.4739063Z",
|
|
5
5
|
"components": {
|
|
6
6
|
"accordion": {
|
|
7
7
|
"name": "Accordion",
|
|
@@ -3007,6 +3007,8 @@
|
|
|
3007
3007
|
"dependencies": [],
|
|
3008
3008
|
"packageDependencies": [],
|
|
3009
3009
|
"cssVars": [
|
|
3010
|
+
"--color-accent",
|
|
3011
|
+
"--color-accent-foreground",
|
|
3010
3012
|
"--color-destructive",
|
|
3011
3013
|
"--color-foreground",
|
|
3012
3014
|
"--color-muted",
|