@keyfunc/keybricks-ds 1.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.
- package/DEPLOY.md +204 -0
- package/DESIGN.md +269 -0
- package/INTEGRATION.md +417 -0
- package/SKILL.md +32 -0
- package/_adherence.oxlintrc.json +1469 -0
- package/_scripts/build-index.mjs +80 -0
- package/_scripts/build-tokens.mjs +135 -0
- package/assets/icons/icon-index.js +1 -0
- package/assets/icons/icon-index.json +1 -0
- package/assets/icons/unicons-index.js +1 -0
- package/assets/icons/unicons-index.json +1 -0
- package/assets/keybricks-logo.png +0 -0
- package/components/_cards/accordion.card.html +32 -0
- package/components/_cards/action-chip.card.html +22 -0
- package/components/_cards/activity.card.html +34 -0
- package/components/_cards/alert.card.html +32 -0
- package/components/_cards/app-chrome.card.html +36 -0
- package/components/_cards/banner.card.html +21 -0
- package/components/_cards/brand-visual.card.html +43 -0
- package/components/_cards/breadcrumb.card.html +23 -0
- package/components/_cards/button-1-base.card.html +39 -0
- package/components/_cards/button-2-states.card.html +56 -0
- package/components/_cards/button-3-sizes-icons.card.html +32 -0
- package/components/_cards/button-4-group.card.html +47 -0
- package/components/_cards/canvas-zoom-controls.card.html +19 -0
- package/components/_cards/cards-indicators.card.html +59 -0
- package/components/_cards/charts-1-sparkline.card.html +55 -0
- package/components/_cards/charts-10-gauge.card.html +31 -0
- package/components/_cards/charts-11-funnel.card.html +28 -0
- package/components/_cards/charts-12-treemap.card.html +23 -0
- package/components/_cards/charts-14-radar.card.html +31 -0
- package/components/_cards/charts-15-distribution.card.html +32 -0
- package/components/_cards/charts-16-pareto.card.html +25 -0
- package/components/_cards/charts-17-candlestick.card.html +34 -0
- package/components/_cards/charts-18-sankey.card.html +29 -0
- package/components/_cards/charts-19-chord.card.html +31 -0
- package/components/_cards/charts-2-line.card.html +46 -0
- package/components/_cards/charts-20-sunburst.card.html +38 -0
- package/components/_cards/charts-21-worldmap.card.html +33 -0
- package/components/_cards/charts-22-gantt.card.html +37 -0
- package/components/_cards/charts-23-bar3d.card.html +26 -0
- package/components/_cards/charts-24-pie3d.card.html +32 -0
- package/components/_cards/charts-25-surface3d.card.html +24 -0
- package/components/_cards/charts-26-scatter3d.card.html +24 -0
- package/components/_cards/charts-27-ribbon3d.card.html +23 -0
- package/components/_cards/charts-3-bar.card.html +71 -0
- package/components/_cards/charts-4-barlist.card.html +30 -0
- package/components/_cards/charts-5-donut.card.html +35 -0
- package/components/_cards/charts-6-scatter.card.html +26 -0
- package/components/_cards/charts-7-heatmap.card.html +28 -0
- package/components/_cards/charts-8-waterfall.card.html +25 -0
- package/components/_cards/charts-9-bullet.card.html +31 -0
- package/components/_cards/charts-99-fullpage.card.html +194 -0
- package/components/_cards/checkbox.card.html +34 -0
- package/components/_cards/codeblock.card.html +19 -0
- package/components/_cards/combobox.card.html +25 -0
- package/components/_cards/context-menu.card.html +21 -0
- package/components/_cards/datatable.card.html +48 -0
- package/components/_cards/date-picker.card.html +31 -0
- package/components/_cards/diffvalue.card.html +21 -0
- package/components/_cards/divider.card.html +24 -0
- package/components/_cards/drawer.card.html +30 -0
- package/components/_cards/dropdown-menu.card.html +38 -0
- package/components/_cards/dropzone.card.html +22 -0
- package/components/_cards/empty-state.card.html +29 -0
- package/components/_cards/filter-bar.card.html +34 -0
- package/components/_cards/icon-button.card.html +27 -0
- package/components/_cards/icons-1-core.card.html +49 -0
- package/components/_cards/icons-2-feather.card.html +39 -0
- package/components/_cards/icons-3-unicons.card.html +44 -0
- package/components/_cards/input.card.html +25 -0
- package/components/_cards/kbd.card.html +20 -0
- package/components/_cards/keyvalue.card.html +23 -0
- package/components/_cards/listrow.card.html +30 -0
- package/components/_cards/loading.card.html +33 -0
- package/components/_cards/log-viewer.card.html +23 -0
- package/components/_cards/modal.card.html +35 -0
- package/components/_cards/multi-select.card.html +26 -0
- package/components/_cards/number-stepper.card.html +24 -0
- package/components/_cards/pagination.card.html +25 -0
- package/components/_cards/people.card.html +46 -0
- package/components/_cards/pipeline-node.card.html +76 -0
- package/components/_cards/pipeline-palette.card.html +54 -0
- package/components/_cards/search.card.html +23 -0
- package/components/_cards/select.card.html +23 -0
- package/components/_cards/slider.card.html +25 -0
- package/components/_cards/smart-table.card.html +37 -0
- package/components/_cards/spreadsheet.card.html +31 -0
- package/components/_cards/stepper.card.html +25 -0
- package/components/_cards/tabs.card.html +25 -0
- package/components/_cards/tag.card.html +26 -0
- package/components/_cards/textarea.card.html +27 -0
- package/components/_cards/timeline.card.html +32 -0
- package/components/_cards/toast.card.html +33 -0
- package/components/_cards/toggles.card.html +68 -0
- package/components/_cards/tooltip.card.html +22 -0
- package/components/_cards/tree.card.html +150 -0
- package/components/_shared/frame-theme.js +16 -0
- package/components/_shared/src-brand.js +1 -0
- package/components/_shared/src-buttons.js +1 -0
- package/components/_shared/src-charts.js +1 -0
- package/components/_shared/src-data.js +1 -0
- package/components/_shared/src-display.js +1 -0
- package/components/_shared/src-feedback.js +1 -0
- package/components/_shared/src-forms.js +1 -0
- package/components/_shared/src-icons.js +1 -0
- package/components/_shared/src-navigation.js +1 -0
- package/components/_shared/src-pipeline.js +1 -0
- package/components/_shared/src-tabs.js +1 -0
- package/components/_shared/svg-download.js +19 -0
- package/components/_shared/view-source.js +185 -0
- package/components/_vue/index.mjs +114 -0
- package/components/brand/BrandVisual.d.ts +17 -0
- package/components/brand/BrandVisual.jsx +29 -0
- package/components/brand/BrandVisual.vue +34 -0
- package/components/brand/_dir.card.html +13 -0
- package/components/brand/brandMotifs.js +210 -0
- package/components/buttons/ActionChip.d.ts +10 -0
- package/components/buttons/ActionChip.jsx +20 -0
- package/components/buttons/ActionChip.vue +18 -0
- package/components/buttons/Button.d.ts +40 -0
- package/components/buttons/Button.jsx +101 -0
- package/components/buttons/Button.vue +87 -0
- package/components/buttons/IconButton.d.ts +26 -0
- package/components/buttons/IconButton.jsx +28 -0
- package/components/buttons/IconButton.vue +21 -0
- package/components/buttons/_dir.card.html +13 -0
- package/components/buttons/buttons.prompt.md +19 -0
- package/components/charts/Bar3D.d.ts +15 -0
- package/components/charts/Bar3D.jsx +93 -0
- package/components/charts/Bar3D.vue +79 -0
- package/components/charts/BarChart.d.ts +23 -0
- package/components/charts/BarChart.jsx +135 -0
- package/components/charts/BarChart.vue +139 -0
- package/components/charts/BarList.d.ts +13 -0
- package/components/charts/BarList.jsx +31 -0
- package/components/charts/BarList.vue +25 -0
- package/components/charts/BoxPlot.d.ts +18 -0
- package/components/charts/BoxPlot.jsx +62 -0
- package/components/charts/BoxPlot.vue +58 -0
- package/components/charts/BulletChart.d.ts +12 -0
- package/components/charts/BulletChart.jsx +41 -0
- package/components/charts/BulletChart.vue +33 -0
- package/components/charts/CandlestickChart.d.ts +15 -0
- package/components/charts/CandlestickChart.jsx +63 -0
- package/components/charts/CandlestickChart.vue +62 -0
- package/components/charts/ChartKit.d.ts +8 -0
- package/components/charts/ChartKit.jsx +76 -0
- package/components/charts/ChartKit.vue +47 -0
- package/components/charts/ChordChart.d.ts +13 -0
- package/components/charts/ChordChart.jsx +55 -0
- package/components/charts/ChordChart.vue +54 -0
- package/components/charts/DonutChart.d.ts +15 -0
- package/components/charts/DonutChart.jsx +73 -0
- package/components/charts/DonutChart.vue +61 -0
- package/components/charts/FunnelChart.d.ts +11 -0
- package/components/charts/FunnelChart.jsx +37 -0
- package/components/charts/FunnelChart.vue +29 -0
- package/components/charts/GanttChart.d.ts +20 -0
- package/components/charts/GanttChart.jsx +80 -0
- package/components/charts/GanttChart.vue +60 -0
- package/components/charts/GaugeChart.d.ts +13 -0
- package/components/charts/GaugeChart.jsx +33 -0
- package/components/charts/GaugeChart.vue +29 -0
- package/components/charts/HeatmapChart.d.ts +13 -0
- package/components/charts/HeatmapChart.jsx +62 -0
- package/components/charts/HeatmapChart.vue +38 -0
- package/components/charts/Histogram.d.ts +16 -0
- package/components/charts/Histogram.jsx +56 -0
- package/components/charts/Histogram.vue +53 -0
- package/components/charts/LineChart.d.ts +17 -0
- package/components/charts/LineChart.jsx +84 -0
- package/components/charts/LineChart.vue +86 -0
- package/components/charts/ParetoChart.d.ts +13 -0
- package/components/charts/ParetoChart.jsx +54 -0
- package/components/charts/ParetoChart.vue +55 -0
- package/components/charts/Pie3D.d.ts +17 -0
- package/components/charts/Pie3D.jsx +145 -0
- package/components/charts/Pie3D.vue +115 -0
- package/components/charts/RadarChart.d.ts +14 -0
- package/components/charts/RadarChart.jsx +79 -0
- package/components/charts/RadarChart.vue +73 -0
- package/components/charts/Ribbon3D.d.ts +13 -0
- package/components/charts/Ribbon3D.jsx +89 -0
- package/components/charts/Ribbon3D.vue +79 -0
- package/components/charts/SankeyChart.d.ts +15 -0
- package/components/charts/SankeyChart.jsx +59 -0
- package/components/charts/SankeyChart.vue +53 -0
- package/components/charts/Scatter3D.d.ts +12 -0
- package/components/charts/Scatter3D.jsx +69 -0
- package/components/charts/Scatter3D.vue +59 -0
- package/components/charts/ScatterChart.d.ts +12 -0
- package/components/charts/ScatterChart.jsx +53 -0
- package/components/charts/ScatterChart.vue +57 -0
- package/components/charts/Sparkline.d.ts +19 -0
- package/components/charts/Sparkline.jsx +63 -0
- package/components/charts/Sparkline.vue +54 -0
- package/components/charts/SunburstChart.d.ts +12 -0
- package/components/charts/SunburstChart.jsx +61 -0
- package/components/charts/SunburstChart.vue +60 -0
- package/components/charts/Surface3D.d.ts +13 -0
- package/components/charts/Surface3D.jsx +70 -0
- package/components/charts/Surface3D.vue +63 -0
- package/components/charts/TreemapChart.d.ts +11 -0
- package/components/charts/TreemapChart.jsx +35 -0
- package/components/charts/TreemapChart.vue +27 -0
- package/components/charts/WaterfallChart.d.ts +11 -0
- package/components/charts/WaterfallChart.jsx +59 -0
- package/components/charts/WaterfallChart.vue +46 -0
- package/components/charts/WorldMap.d.ts +21 -0
- package/components/charts/WorldMap.jsx +107 -0
- package/components/charts/WorldMap.vue +73 -0
- package/components/charts/_dir.card.html +7 -0
- package/components/charts/chart-3d.js +84 -0
- package/components/charts/chart-geometry.js +223 -0
- package/components/charts/charts.prompt.md +24 -0
- package/components/data/CodeBlock.d.ts +9 -0
- package/components/data/CodeBlock.jsx +19 -0
- package/components/data/CodeBlock.vue +22 -0
- package/components/data/DataTable.d.ts +28 -0
- package/components/data/DataTable.jsx +32 -0
- package/components/data/DataTable.vue +25 -0
- package/components/data/DiffValue.d.ts +11 -0
- package/components/data/DiffValue.jsx +15 -0
- package/components/data/DiffValue.vue +13 -0
- package/components/data/FilterBar.d.ts +16 -0
- package/components/data/FilterBar.jsx +22 -0
- package/components/data/FilterBar.vue +23 -0
- package/components/data/KeyValue.d.ts +16 -0
- package/components/data/KeyValue.jsx +25 -0
- package/components/data/KeyValue.vue +26 -0
- package/components/data/ListRow.d.ts +14 -0
- package/components/data/ListRow.jsx +25 -0
- package/components/data/ListRow.vue +25 -0
- package/components/data/Pagination.d.ts +12 -0
- package/components/data/Pagination.jsx +27 -0
- package/components/data/Pagination.vue +24 -0
- package/components/data/SmartTable.d.ts +30 -0
- package/components/data/SmartTable.jsx +73 -0
- package/components/data/SmartTable.vue +74 -0
- package/components/data/Spreadsheet.d.ts +33 -0
- package/components/data/Spreadsheet.jsx +110 -0
- package/components/data/Spreadsheet.vue +95 -0
- package/components/data/_dir.card.html +13 -0
- package/components/data/data.prompt.md +33 -0
- package/components/display/Avatar.d.ts +21 -0
- package/components/display/Avatar.jsx +31 -0
- package/components/display/Avatar.vue +34 -0
- package/components/display/Badge.d.ts +27 -0
- package/components/display/Badge.jsx +40 -0
- package/components/display/Badge.vue +47 -0
- package/components/display/Card.d.ts +27 -0
- package/components/display/Card.jsx +27 -0
- package/components/display/Card.vue +28 -0
- package/components/display/Divider.d.ts +8 -0
- package/components/display/Divider.jsx +14 -0
- package/components/display/Divider.vue +13 -0
- package/components/display/Kbd.d.ts +7 -0
- package/components/display/Kbd.jsx +12 -0
- package/components/display/Kbd.vue +9 -0
- package/components/display/ProgressBar.d.ts +42 -0
- package/components/display/ProgressBar.jsx +70 -0
- package/components/display/ProgressBar.vue +69 -0
- package/components/display/Tag.d.ts +9 -0
- package/components/display/Tag.jsx +15 -0
- package/components/display/Tag.vue +15 -0
- package/components/display/_dir.card.html +13 -0
- package/components/display/display.prompt.md +30 -0
- package/components/feedback/Accordion.d.ts +13 -0
- package/components/feedback/Accordion.jsx +21 -0
- package/components/feedback/Accordion.vue +22 -0
- package/components/feedback/ActivityItem.d.ts +25 -0
- package/components/feedback/ActivityItem.jsx +39 -0
- package/components/feedback/ActivityItem.vue +46 -0
- package/components/feedback/Alert.d.ts +36 -0
- package/components/feedback/Alert.jsx +48 -0
- package/components/feedback/Alert.vue +59 -0
- package/components/feedback/Banner.d.ts +15 -0
- package/components/feedback/Banner.jsx +25 -0
- package/components/feedback/Banner.vue +25 -0
- package/components/feedback/ContextMenu.d.ts +8 -0
- package/components/feedback/ContextMenu.jsx +18 -0
- package/components/feedback/ContextMenu.vue +19 -0
- package/components/feedback/Drawer.d.ts +18 -0
- package/components/feedback/Drawer.jsx +26 -0
- package/components/feedback/Drawer.vue +24 -0
- package/components/feedback/Menu.d.ts +10 -0
- package/components/feedback/Menu.jsx +24 -0
- package/components/feedback/Menu.vue +21 -0
- package/components/feedback/Modal.d.ts +38 -0
- package/components/feedback/Modal.jsx +69 -0
- package/components/feedback/Modal.vue +65 -0
- package/components/feedback/Stepper.d.ts +9 -0
- package/components/feedback/Stepper.jsx +24 -0
- package/components/feedback/Stepper.vue +18 -0
- package/components/feedback/Timeline.d.ts +15 -0
- package/components/feedback/Timeline.jsx +27 -0
- package/components/feedback/Timeline.vue +21 -0
- package/components/feedback/_dir.card.html +13 -0
- package/components/feedback/feedback.prompt.md +35 -0
- package/components/forms/Checkbox.d.ts +13 -0
- package/components/forms/Checkbox.jsx +17 -0
- package/components/forms/Checkbox.vue +18 -0
- package/components/forms/Combobox.d.ts +13 -0
- package/components/forms/Combobox.jsx +34 -0
- package/components/forms/Combobox.vue +35 -0
- package/components/forms/DatePicker.d.ts +12 -0
- package/components/forms/DatePicker.jsx +48 -0
- package/components/forms/DatePicker.vue +46 -0
- package/components/forms/Dropzone.d.ts +20 -0
- package/components/forms/Dropzone.jsx +36 -0
- package/components/forms/Dropzone.vue +28 -0
- package/components/forms/Field.d.ts +13 -0
- package/components/forms/Field.jsx +13 -0
- package/components/forms/Field.vue +12 -0
- package/components/forms/Input.d.ts +18 -0
- package/components/forms/Input.jsx +35 -0
- package/components/forms/Input.vue +38 -0
- package/components/forms/MultiSelect.d.ts +14 -0
- package/components/forms/MultiSelect.jsx +33 -0
- package/components/forms/MultiSelect.vue +36 -0
- package/components/forms/NumberStepper.d.ts +13 -0
- package/components/forms/NumberStepper.jsx +15 -0
- package/components/forms/NumberStepper.vue +17 -0
- package/components/forms/Radio.vue +16 -0
- package/components/forms/RadioGroup.vue +11 -0
- package/components/forms/SearchInput.d.ts +12 -0
- package/components/forms/SearchInput.jsx +17 -0
- package/components/forms/SearchInput.vue +14 -0
- package/components/forms/Select.d.ts +14 -0
- package/components/forms/Select.jsx +17 -0
- package/components/forms/Select.vue +16 -0
- package/components/forms/Slider.d.ts +15 -0
- package/components/forms/Slider.jsx +21 -0
- package/components/forms/Slider.vue +23 -0
- package/components/forms/Switch.d.ts +31 -0
- package/components/forms/Switch.jsx +40 -0
- package/components/forms/Switch.vue +16 -0
- package/components/forms/_dir.card.html +13 -0
- package/components/forms/forms.prompt.md +23 -0
- package/components/icons/Icon.d.ts +19 -0
- package/components/icons/Icon.jsx +93 -0
- package/components/icons/Icon.prompt.md +8 -0
- package/components/icons/Icon.vue +12 -0
- package/components/icons/Unicon.d.ts +12 -0
- package/components/icons/Unicon.jsx +16 -0
- package/components/icons/Unicon.vue +15 -0
- package/components/icons/_dir.card.html +13 -0
- package/components/icons/feather-paths.js +2 -0
- package/components/icons/icon-paths.js +73 -0
- package/components/index.d.ts +87 -0
- package/components/index.js +110 -0
- package/components/navigation/Breadcrumb.d.ts +24 -0
- package/components/navigation/Breadcrumb.jsx +120 -0
- package/components/navigation/Breadcrumb.vue +94 -0
- package/components/navigation/DocTree.d.ts +18 -0
- package/components/navigation/DocTree.jsx +37 -0
- package/components/navigation/DocTree.vue +25 -0
- package/components/navigation/Sidebar.d.ts +29 -0
- package/components/navigation/Sidebar.jsx +75 -0
- package/components/navigation/Sidebar.vue +54 -0
- package/components/navigation/TopBar.d.ts +27 -0
- package/components/navigation/TopBar.jsx +44 -0
- package/components/navigation/TopBar.vue +51 -0
- package/components/navigation/Tree.d.ts +83 -0
- package/components/navigation/Tree.jsx +347 -0
- package/components/navigation/Tree.vue +258 -0
- package/components/navigation/_dir.card.html +13 -0
- package/components/navigation/navigation.prompt.md +22 -0
- package/components/pipeline/ConfigPanel.d.ts +18 -0
- package/components/pipeline/ConfigPanel.jsx +30 -0
- package/components/pipeline/ConfigPanel.vue +32 -0
- package/components/pipeline/DataPreview.d.ts +14 -0
- package/components/pipeline/DataPreview.jsx +24 -0
- package/components/pipeline/DataPreview.vue +21 -0
- package/components/pipeline/NodeCard.d.ts +47 -0
- package/components/pipeline/NodeCard.jsx +97 -0
- package/components/pipeline/NodeCard.vue +75 -0
- package/components/pipeline/PaletteItem.vue +15 -0
- package/components/pipeline/PaletteListItem.vue +15 -0
- package/components/pipeline/PalettePanel.d.ts +20 -0
- package/components/pipeline/PalettePanel.jsx +74 -0
- package/components/pipeline/PalettePanel.vue +45 -0
- package/components/pipeline/PipelineCanvas.d.ts +25 -0
- package/components/pipeline/PipelineCanvas.jsx +94 -0
- package/components/pipeline/PipelineCanvas.vue +73 -0
- package/components/pipeline/ZoomControls.d.ts +9 -0
- package/components/pipeline/ZoomControls.jsx +15 -0
- package/components/pipeline/ZoomControls.vue +15 -0
- package/components/pipeline/_dir.card.html +13 -0
- package/components/pipeline/pipeline.prompt.md +22 -0
- package/components/tabs/SegmentedControl.d.ts +11 -0
- package/components/tabs/SegmentedControl.jsx +21 -0
- package/components/tabs/SegmentedControl.vue +15 -0
- package/components/tabs/Tabs.d.ts +13 -0
- package/components/tabs/Tabs.jsx +52 -0
- package/components/tabs/Tabs.vue +39 -0
- package/components/tabs/ViewToggle.d.ts +8 -0
- package/components/tabs/ViewToggle.jsx +12 -0
- package/components/tabs/ViewToggle.vue +12 -0
- package/components/tabs/_dir.card.html +13 -0
- package/components/tabs/tabs.prompt.md +14 -0
- package/package.json +76 -0
- package/readme.md +150 -0
- package/styles.css +10 -0
- package/tokens/alpha.css +27 -0
- package/tokens/charts.css +55 -0
- package/tokens/colors-extended.css +40 -0
- package/tokens/colors.css +39 -0
- package/tokens/dark.css +96 -0
- package/tokens/fonts.css +4 -0
- package/tokens/interaction.css +48 -0
- package/tokens/layout.css +30 -0
- package/tokens/motion.css +22 -0
- package/tokens/tokens.d.ts +680 -0
- package/tokens/tokens.js +1018 -0
- package/tokens/tokens.json +2928 -0
- package/tokens/typography.css +22 -0
|
@@ -0,0 +1,1469 @@
|
|
|
1
|
+
{
|
|
2
|
+
"plugins": [
|
|
3
|
+
"react",
|
|
4
|
+
"import"
|
|
5
|
+
],
|
|
6
|
+
"rules": {
|
|
7
|
+
"react/forbid-elements": [
|
|
8
|
+
"warn",
|
|
9
|
+
{
|
|
10
|
+
"forbid": []
|
|
11
|
+
}
|
|
12
|
+
],
|
|
13
|
+
"no-restricted-imports": [
|
|
14
|
+
"warn",
|
|
15
|
+
{
|
|
16
|
+
"patterns": [
|
|
17
|
+
{
|
|
18
|
+
"group": [
|
|
19
|
+
"assets/icons/**",
|
|
20
|
+
"components/**",
|
|
21
|
+
"components/_shared/**",
|
|
22
|
+
"components/brand/**",
|
|
23
|
+
"components/buttons/**",
|
|
24
|
+
"components/charts/**",
|
|
25
|
+
"components/data/**",
|
|
26
|
+
"components/display/**",
|
|
27
|
+
"components/feedback/**",
|
|
28
|
+
"components/forms/**",
|
|
29
|
+
"components/icons/**",
|
|
30
|
+
"components/navigation/**",
|
|
31
|
+
"components/pipeline/**",
|
|
32
|
+
"components/tabs/**",
|
|
33
|
+
"site-nav.js",
|
|
34
|
+
"tokens/**",
|
|
35
|
+
"ui_kits/keybricks-app/**"
|
|
36
|
+
],
|
|
37
|
+
"message": "Import design-system components from 'index.js', not component internals."
|
|
38
|
+
}
|
|
39
|
+
]
|
|
40
|
+
}
|
|
41
|
+
],
|
|
42
|
+
"no-restricted-syntax": [
|
|
43
|
+
"warn",
|
|
44
|
+
{
|
|
45
|
+
"selector": "Literal[value=/#[0-9a-fA-F]{3,8}\\b/]",
|
|
46
|
+
"message": "Raw hex color — use a design-system color token via var()."
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"selector": "Literal[value=/\\b\\d+px\\b/]",
|
|
50
|
+
"message": "Raw px value — use a design-system spacing token via var()."
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"selector": "Literal[value=/font-family\\s*:\\s*(?!['\\\"]?(?:Inter))/i]",
|
|
54
|
+
"message": "Font not provided by the design system. Available: Inter."
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"selector": "JSXOpeningElement[name.name='Accordion'] > JSXAttribute > JSXIdentifier[name!=/^(?:title|subtitle|defaultOpen|open|onToggle|children|style|key|ref|className|style|children)$/]",
|
|
58
|
+
"message": "<Accordion> doesn't accept that prop. Declared props: title, subtitle, defaultOpen, open, onToggle, children, style."
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"selector": "JSXOpeningElement[name.name='ActionChip'] > JSXAttribute > JSXIdentifier[name!=/^(?:tone|onClick|children|style|key|ref|className|style|children)$/]",
|
|
62
|
+
"message": "<ActionChip> doesn't accept that prop. Declared props: tone, onClick, children, style."
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"selector": "JSXOpeningElement[name.name='ActionChip'] > JSXAttribute[name.name='tone'] > Literal[value!=/^(?:success|warning|neutral|info|danger)$/]",
|
|
66
|
+
"message": "<ActionChip> tone must be one of 'success' | 'warning' | 'neutral' | 'info' | 'danger'."
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"selector": "JSXOpeningElement[name.name='ActivityItem'] > JSXAttribute > JSXIdentifier[name!=/^(?:icon|title|meta|action|style|key|ref|className|style|children)$/]",
|
|
70
|
+
"message": "<ActivityItem> doesn't accept that prop. Declared props: icon, title, meta, action, style."
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"selector": "JSXOpeningElement[name.name='Alert'] > JSXAttribute > JSXIdentifier[name!=/^(?:tone|title|children|action|style|key|ref|className|style|children)$/]",
|
|
74
|
+
"message": "<Alert> doesn't accept that prop. Declared props: tone, title, children, action, style."
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"selector": "JSXOpeningElement[name.name='Alert'] > JSXAttribute[name.name='tone'] > Literal[value!=/^(?:info|success|warning|danger)$/]",
|
|
78
|
+
"message": "<Alert> tone must be one of 'info' | 'success' | 'warning' | 'danger'."
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"selector": "JSXOpeningElement[name.name='Avatar'] > JSXAttribute > JSXIdentifier[name!=/^(?:name|src|size|style|key|ref|className|style|children)$/]",
|
|
82
|
+
"message": "<Avatar> doesn't accept that prop. Declared props: name, src, size, style."
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"selector": "JSXOpeningElement[name.name='StatusBadge'] > JSXAttribute > JSXIdentifier[name!=/^(?:tone|icon|size|ring|style|key|ref|className|style|children)$/]",
|
|
86
|
+
"message": "<StatusBadge> doesn't accept that prop. Declared props: tone, icon, size, ring, style."
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"selector": "JSXOpeningElement[name.name='StatusBadge'] > JSXAttribute[name.name='tone'] > Literal[value!=/^(?:success|danger|warning|pending|info)$/]",
|
|
90
|
+
"message": "<StatusBadge> tone must be one of 'success' | 'danger' | 'warning' | 'pending' | 'info'."
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"selector": "JSXOpeningElement[name.name='Banner'] > JSXAttribute > JSXIdentifier[name!=/^(?:tone|title|action|onAction|dismissible|onDismiss|children|style|key|ref|className|style|children)$/]",
|
|
94
|
+
"message": "<Banner> doesn't accept that prop. Declared props: tone, title, action, onAction, dismissible, onDismiss, children, style."
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"selector": "JSXOpeningElement[name.name='Banner'] > JSXAttribute[name.name='tone'] > Literal[value!=/^(?:info|success|warning|danger)$/]",
|
|
98
|
+
"message": "<Banner> tone must be one of 'info' | 'success' | 'warning' | 'danger'."
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"selector": "JSXOpeningElement[name.name='Bar3DSeries'] > JSXAttribute > JSXIdentifier[name!=/^(?:name|values|color|key|ref|className|style|children)$/]",
|
|
102
|
+
"message": "<Bar3DSeries> doesn't accept that prop. Declared props: name, values, color."
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
"selector": "JSXOpeningElement[name.name='BarSeries'] > JSXAttribute > JSXIdentifier[name!=/^(?:name|values|color|key|ref|className|style|children)$/]",
|
|
106
|
+
"message": "<BarSeries> doesn't accept that prop. Declared props: name, values, color."
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
"selector": "JSXOpeningElement[name.name='BarListRow'] > JSXAttribute > JSXIdentifier[name!=/^(?:label|value|color|delta|key|ref|className|style|children)$/]",
|
|
110
|
+
"message": "<BarListRow> doesn't accept that prop. Declared props: label, value, color, delta."
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
"selector": "JSXOpeningElement[name.name='BoxGroup'] > JSXAttribute > JSXIdentifier[name!=/^(?:label|values|q1|med|q3|lo|hi|outliers|color|key|ref|className|style|children)$/]",
|
|
114
|
+
"message": "<BoxGroup> doesn't accept that prop. Declared props: label, values, q1, med, q3, lo, hi, outliers, color."
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"selector": "JSXOpeningElement[name.name='BrandVisual'] > JSXAttribute > JSXIdentifier[name!=/^(?:motif|width|height|radius|fit|children|style|key|ref|className|style|children)$/]",
|
|
118
|
+
"message": "<BrandVisual> doesn't accept that prop. Declared props: motif, width, height, radius, fit, children, style."
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"selector": "JSXOpeningElement[name.name='BrandVisual'] > JSXAttribute[name.name='fit'] > Literal[value!=/^(?:slice|meet)$/]",
|
|
122
|
+
"message": "<BrandVisual> fit must be one of 'slice' | 'meet'."
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"selector": "JSXOpeningElement[name.name='Breadcrumb'] > JSXAttribute > JSXIdentifier[name!=/^(?:items|onSelect|maxItems|hoveredIndex|style|key|ref|className|style|children)$/]",
|
|
126
|
+
"message": "<Breadcrumb> doesn't accept that prop. Declared props: items, onSelect, maxItems, hoveredIndex, style."
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"selector": "JSXOpeningElement[name.name='BulletRow'] > JSXAttribute > JSXIdentifier[name!=/^(?:label|value|target|max|ranges|key|ref|className|style|children)$/]",
|
|
130
|
+
"message": "<BulletRow> doesn't accept that prop. Declared props: label, value, target, max, ranges."
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"selector": "JSXOpeningElement[name.name='Button'] > JSXAttribute > JSXIdentifier[name!=/^(?:variant|size|icon|iconSize|iconPosition|medium|disabled|loading|fullWidth|iconOnly|label|pressed|focused|onClick|children|style|key|ref|className|style|children)$/]",
|
|
134
|
+
"message": "<Button> doesn't accept that prop. Declared props: variant, size, icon, iconSize, iconPosition, medium, disabled, loading, fullWidth, iconOnly, label, pressed, focused, onClick, children, style."
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"selector": "JSXOpeningElement[name.name='Button'] > JSXAttribute[name.name='variant'] > Literal[value!=/^(?:primary|dark|outline|ghost|primary-soft|danger|danger-soft|text)$/]",
|
|
138
|
+
"message": "<Button> variant must be one of 'primary' | 'dark' | 'outline' | 'ghost' | 'primary-soft' | 'danger' | 'danger-soft' | 'text'."
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
"selector": "JSXOpeningElement[name.name='Button'] > JSXAttribute[name.name='size'] > Literal[value!=/^(?:sm|md|lg)$/]",
|
|
142
|
+
"message": "<Button> size must be one of 'sm' | 'md' | 'lg'."
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
"selector": "JSXOpeningElement[name.name='Button'] > JSXAttribute[name.name='iconPosition'] > Literal[value!=/^(?:left|right)$/]",
|
|
146
|
+
"message": "<Button> iconPosition must be one of 'left' | 'right'."
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"selector": "JSXOpeningElement[name.name='Candle'] > JSXAttribute > JSXIdentifier[name!=/^(?:t|o|h|l|c|v|key|ref|className|style|children)$/]",
|
|
150
|
+
"message": "<Candle> doesn't accept that prop. Declared props: t, o, h, l, c, v."
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
"selector": "JSXOpeningElement[name.name='Card'] > JSXAttribute > JSXIdentifier[name!=/^(?:title|action|dense|pad|children|style|key|ref|className|style|children)$/]",
|
|
154
|
+
"message": "<Card> doesn't accept that prop. Declared props: title, action, dense, pad, children, style."
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"selector": "JSXOpeningElement[name.name='LegendItem'] > JSXAttribute > JSXIdentifier[name!=/^(?:label|color|key|ref|className|style|children)$/]",
|
|
158
|
+
"message": "<LegendItem> doesn't accept that prop. Declared props: label, color."
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
"selector": "JSXOpeningElement[name.name='Checkbox'] > JSXAttribute > JSXIdentifier[name!=/^(?:checked|indeterminate|onChange|label|size|disabled|style|key|ref|className|style|children)$/]",
|
|
162
|
+
"message": "<Checkbox> doesn't accept that prop. Declared props: checked, indeterminate, onChange, label, size, disabled, style."
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
"selector": "JSXOpeningElement[name.name='Checkbox'] > JSXAttribute[name.name='size'] > Literal[value!=/^(?:md|sm)$/]",
|
|
166
|
+
"message": "<Checkbox> size must be one of 'md' | 'sm'."
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
"selector": "JSXOpeningElement[name.name='ChordChart'] > JSXAttribute > JSXIdentifier[name!=/^(?:labels|matrix|size|thickness|gap|valueFormat|interactive|style|key|ref|className|style|children)$/]",
|
|
170
|
+
"message": "<ChordChart> doesn't accept that prop. Declared props: labels, matrix, size, thickness, gap, valueFormat, interactive, style."
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
"selector": "JSXOpeningElement[name.name='CodeBlock'] > JSXAttribute > JSXIdentifier[name!=/^(?:code|language|height|style|key|ref|className|style|children)$/]",
|
|
174
|
+
"message": "<CodeBlock> doesn't accept that prop. Declared props: code, language, height, style."
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
"selector": "JSXOpeningElement[name.name='Combobox'] > JSXAttribute > JSXIdentifier[name!=/^(?:options|value|placeholder|disabled|error|width|onChange|style|key|ref|className|style|children)$/]",
|
|
178
|
+
"message": "<Combobox> doesn't accept that prop. Declared props: options, value, placeholder, disabled, error, width, onChange, style."
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
"selector": "JSXOpeningElement[name.name='ConfigPanel'] > JSXAttribute > JSXIdentifier[name!=/^(?:title|subtitle|tabs|activeTab|onTab|previewRows|onPreviewRows|onSave|onPreview|children|height|style|key|ref|className|style|children)$/]",
|
|
182
|
+
"message": "<ConfigPanel> doesn't accept that prop. Declared props: title, subtitle, tabs, activeTab, onTab, previewRows, onPreviewRows, onSave, onPreview, children, height, style."
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
"selector": "JSXOpeningElement[name.name='ContextMenu'] > JSXAttribute > JSXIdentifier[name!=/^(?:items|onSelect|style|key|ref|className|style|children)$/]",
|
|
186
|
+
"message": "<ContextMenu> doesn't accept that prop. Declared props: items, onSelect, style."
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
"selector": "JSXOpeningElement[name.name='DataPreview'] > JSXAttribute > JSXIdentifier[name!=/^(?:title|columns|rows|debug|onDebug|collapsed|onCollapse|style|key|ref|className|style|children)$/]",
|
|
190
|
+
"message": "<DataPreview> doesn't accept that prop. Declared props: title, columns, rows, debug, onDebug, collapsed, onCollapse, style."
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
"selector": "JSXOpeningElement[name.name='DataTableColumn'] > JSXAttribute > JSXIdentifier[name!=/^(?:key|label|width|mono|align|render|key|ref|className|style|children)$/]",
|
|
194
|
+
"message": "<DataTableColumn> doesn't accept that prop. Declared props: key, label, width, mono, align, render."
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
"selector": "JSXOpeningElement[name.name='DataTableColumn'] > JSXAttribute[name.name='align'] > Literal[value!=/^(?:left|right|center)$/]",
|
|
198
|
+
"message": "<DataTableColumn> align must be one of 'left' | 'right' | 'center'."
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
"selector": "JSXOpeningElement[name.name='DatePicker'] > JSXAttribute > JSXIdentifier[name!=/^(?:value|placeholder|disabled|error|width|onChange|style|key|ref|className|style|children)$/]",
|
|
202
|
+
"message": "<DatePicker> doesn't accept that prop. Declared props: value, placeholder, disabled, error, width, onChange, style."
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
"selector": "JSXOpeningElement[name.name='DiffValue'] > JSXAttribute > JSXIdentifier[name!=/^(?:from|to|tone|mono|style|key|ref|className|style|children)$/]",
|
|
206
|
+
"message": "<DiffValue> doesn't accept that prop. Declared props: from, to, tone, mono, style."
|
|
207
|
+
},
|
|
208
|
+
{
|
|
209
|
+
"selector": "JSXOpeningElement[name.name='DiffValue'] > JSXAttribute[name.name='tone'] > Literal[value!=/^(?:neutral|warning|success|danger)$/]",
|
|
210
|
+
"message": "<DiffValue> tone must be one of 'neutral' | 'warning' | 'success' | 'danger'."
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"selector": "JSXOpeningElement[name.name='Divider'] > JSXAttribute > JSXIdentifier[name!=/^(?:label|vertical|style|key|ref|className|style|children)$/]",
|
|
214
|
+
"message": "<Divider> doesn't accept that prop. Declared props: label, vertical, style."
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
"selector": "JSXOpeningElement[name.name='DocTreeItem'] > JSXAttribute > JSXIdentifier[name!=/^(?:label|kind|hue|icon|key|ref|className|style|children)$/]",
|
|
218
|
+
"message": "<DocTreeItem> doesn't accept that prop. Declared props: label, kind, hue, icon."
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
"selector": "JSXOpeningElement[name.name='DocTreeItem'] > JSXAttribute[name.name='kind'] > Literal[value!=/^(?:folder|doc)$/]",
|
|
222
|
+
"message": "<DocTreeItem> kind must be one of 'folder' | 'doc'."
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
"selector": "JSXOpeningElement[name.name='DonutSegment'] > JSXAttribute > JSXIdentifier[name!=/^(?:label|value|color|key|ref|className|style|children)$/]",
|
|
226
|
+
"message": "<DonutSegment> doesn't accept that prop. Declared props: label, value, color."
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
"selector": "JSXOpeningElement[name.name='Drawer'] > JSXAttribute > JSXIdentifier[name!=/^(?:open|title|subtitle|width|inline|height|footer|onClose|children|style|key|ref|className|style|children)$/]",
|
|
230
|
+
"message": "<Drawer> doesn't accept that prop. Declared props: open, title, subtitle, width, inline, height, footer, onClose, children, style."
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
"selector": "JSXOpeningElement[name.name='Dropzone'] > JSXAttribute > JSXIdentifier[name!=/^(?:title|hint|height|error|disabled|dragOver|file|onRemove|onClick|onDropFiles|style|key|ref|className|style|children)$/]",
|
|
234
|
+
"message": "<Dropzone> doesn't accept that prop. Declared props: title, hint, height, error, disabled, dragOver, file, onRemove, onClick, onDropFiles, style."
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
"selector": "JSXOpeningElement[name.name='Field'] > JSXAttribute > JSXIdentifier[name!=/^(?:label|required|hint|error|children|style|key|ref|className|style|children)$/]",
|
|
238
|
+
"message": "<Field> doesn't accept that prop. Declared props: label, required, hint, error, children, style."
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
"selector": "JSXOpeningElement[name.name='FilterBar'] > JSXAttribute > JSXIdentifier[name!=/^(?:variant|modified|adaptCount|defaultExpanded|onGo|onAdapt|children|style|key|ref|className|style|children)$/]",
|
|
242
|
+
"message": "<FilterBar> doesn't accept that prop. Declared props: variant, modified, adaptCount, defaultExpanded, onGo, onAdapt, children, style."
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
"selector": "JSXOpeningElement[name.name='FunnelStage'] > JSXAttribute > JSXIdentifier[name!=/^(?:label|value|key|ref|className|style|children)$/]",
|
|
246
|
+
"message": "<FunnelStage> doesn't accept that prop. Declared props: label, value."
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
"selector": "JSXOpeningElement[name.name='GanttTask'] > JSXAttribute > JSXIdentifier[name!=/^(?:label|start|end|progress|lane|color|milestone|key|ref|className|style|children)$/]",
|
|
250
|
+
"message": "<GanttTask> doesn't accept that prop. Declared props: label, start, end, progress, lane, color, milestone."
|
|
251
|
+
},
|
|
252
|
+
{
|
|
253
|
+
"selector": "JSXOpeningElement[name.name='GaugeBand'] > JSXAttribute > JSXIdentifier[name!=/^(?:upTo|color|key|ref|className|style|children)$/]",
|
|
254
|
+
"message": "<GaugeBand> doesn't accept that prop. Declared props: upTo, color."
|
|
255
|
+
},
|
|
256
|
+
{
|
|
257
|
+
"selector": "JSXOpeningElement[name.name='HeatmapChart'] > JSXAttribute > JSXIdentifier[name!=/^(?:xLabels|yLabels|values|width|cellHeight|gap|scale|showValues|valueFormat|interactive|style|key|ref|className|style|children)$/]",
|
|
258
|
+
"message": "<HeatmapChart> doesn't accept that prop. Declared props: xLabels, yLabels, values, width, cellHeight, gap, scale, showValues, valueFormat, interactive, style."
|
|
259
|
+
},
|
|
260
|
+
{
|
|
261
|
+
"selector": "JSXOpeningElement[name.name='HeatmapChart'] > JSXAttribute[name.name='scale'] > Literal[value!=/^(?:blue|diverging)$/]",
|
|
262
|
+
"message": "<HeatmapChart> scale must be one of 'blue' | 'diverging'."
|
|
263
|
+
},
|
|
264
|
+
{
|
|
265
|
+
"selector": "JSXOpeningElement[name.name='HistogramBucket'] > JSXAttribute > JSXIdentifier[name!=/^(?:from|to|n|key|ref|className|style|children)$/]",
|
|
266
|
+
"message": "<HistogramBucket> doesn't accept that prop. Declared props: from, to, n."
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
"selector": "JSXOpeningElement[name.name='Icon'] > JSXAttribute > JSXIdentifier[name!=/^(?:name|size|strokeWidth|color|style|className|key|ref|className|style|children)$/]",
|
|
270
|
+
"message": "<Icon> doesn't accept that prop. Declared props: name, size, strokeWidth, color, style, className."
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
"selector": "JSXOpeningElement[name.name='IconButton'] > JSXAttribute > JSXIdentifier[name!=/^(?:icon|size|active|muted|danger|disabled|loading|label|pressed|focused|onClick|style|key|ref|className|style|children)$/]",
|
|
274
|
+
"message": "<IconButton> doesn't accept that prop. Declared props: icon, size, active, muted, danger, disabled, loading, label, pressed, focused, onClick, style."
|
|
275
|
+
},
|
|
276
|
+
{
|
|
277
|
+
"selector": "JSXOpeningElement[name.name='IconButton'] > JSXAttribute[name.name='size'] > Literal[value!=/^(?:xs|sm|md|lg)$/]",
|
|
278
|
+
"message": "<IconButton> size must be one of 'xs' | 'sm' | 'md' | 'lg'."
|
|
279
|
+
},
|
|
280
|
+
{
|
|
281
|
+
"selector": "JSXOpeningElement[name.name='Input'] > JSXAttribute > JSXIdentifier[name!=/^(?:readOnly|disabled|error|style|key|ref|className|style|children)$/]",
|
|
282
|
+
"message": "<Input> doesn't accept that prop. Declared props: readOnly, disabled, error, style."
|
|
283
|
+
},
|
|
284
|
+
{
|
|
285
|
+
"selector": "JSXOpeningElement[name.name='Kbd'] > JSXAttribute > JSXIdentifier[name!=/^(?:keys|style|key|ref|className|style|children)$/]",
|
|
286
|
+
"message": "<Kbd> doesn't accept that prop. Declared props: keys, style."
|
|
287
|
+
},
|
|
288
|
+
{
|
|
289
|
+
"selector": "JSXOpeningElement[name.name='KeyValue'] > JSXAttribute > JSXIdentifier[name!=/^(?:label|value|mono|style|key|ref|className|style|children)$/]",
|
|
290
|
+
"message": "<KeyValue> doesn't accept that prop. Declared props: label, value, mono, style."
|
|
291
|
+
},
|
|
292
|
+
{
|
|
293
|
+
"selector": "JSXOpeningElement[name.name='LineSeries'] > JSXAttribute > JSXIdentifier[name!=/^(?:name|values|color|key|ref|className|style|children)$/]",
|
|
294
|
+
"message": "<LineSeries> doesn't accept that prop. Declared props: name, values, color."
|
|
295
|
+
},
|
|
296
|
+
{
|
|
297
|
+
"selector": "JSXOpeningElement[name.name='ListRow'] > JSXAttribute > JSXIdentifier[name!=/^(?:icon|title|meta|trailing|expanded|onClick|children|style|key|ref|className|style|children)$/]",
|
|
298
|
+
"message": "<ListRow> doesn't accept that prop. Declared props: icon, title, meta, trailing, expanded, onClick, children, style."
|
|
299
|
+
},
|
|
300
|
+
{
|
|
301
|
+
"selector": "JSXOpeningElement[name.name='Menu'] > JSXAttribute > JSXIdentifier[name!=/^(?:trigger|items|onSelect|align|style|key|ref|className|style|children)$/]",
|
|
302
|
+
"message": "<Menu> doesn't accept that prop. Declared props: trigger, items, onSelect, align, style."
|
|
303
|
+
},
|
|
304
|
+
{
|
|
305
|
+
"selector": "JSXOpeningElement[name.name='Menu'] > JSXAttribute[name.name='align'] > Literal[value!=/^(?:start|end)$/]",
|
|
306
|
+
"message": "<Menu> align must be one of 'start' | 'end'."
|
|
307
|
+
},
|
|
308
|
+
{
|
|
309
|
+
"selector": "JSXOpeningElement[name.name='Tooltip'] > JSXAttribute > JSXIdentifier[name!=/^(?:label|placement|children|style|key|ref|className|style|children)$/]",
|
|
310
|
+
"message": "<Tooltip> doesn't accept that prop. Declared props: label, placement, children, style."
|
|
311
|
+
},
|
|
312
|
+
{
|
|
313
|
+
"selector": "JSXOpeningElement[name.name='Tooltip'] > JSXAttribute[name.name='placement'] > Literal[value!=/^(?:top|bottom|left|right)$/]",
|
|
314
|
+
"message": "<Tooltip> placement must be one of 'top' | 'bottom' | 'left' | 'right'."
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
"selector": "JSXOpeningElement[name.name='MultiSelect'] > JSXAttribute > JSXIdentifier[name!=/^(?:options|value|placeholder|maxTags|disabled|width|onChange|style|key|ref|className|style|children)$/]",
|
|
318
|
+
"message": "<MultiSelect> doesn't accept that prop. Declared props: options, value, placeholder, maxTags, disabled, width, onChange, style."
|
|
319
|
+
},
|
|
320
|
+
{
|
|
321
|
+
"selector": "JSXOpeningElement[name.name='NodeCard'] > JSXAttribute > JSXIdentifier[name!=/^(?:title|subtitle|icon|subtitleIcon|hue|selected|badge|inputs|output|showMenu|onClick|onMenu|onOutputDown|onInputUp|onInputEnter|onInputLeave|outputTone|inputTones|style|key|ref|className|style|children)$/]",
|
|
322
|
+
"message": "<NodeCard> doesn't accept that prop. Declared props: title, subtitle, icon, subtitleIcon, hue, selected, badge, inputs, output, showMenu, onClick, onMenu, onOutputDown, onInputUp, onInputEnter, onInputLeave, outputTone, inputTones, style."
|
|
323
|
+
},
|
|
324
|
+
{
|
|
325
|
+
"selector": "JSXOpeningElement[name.name='NodeCard'] > JSXAttribute[name.name='hue'] > Literal[value!=/^(?:source|join|transform|merge|output)$/]",
|
|
326
|
+
"message": "<NodeCard> hue must be one of 'source' | 'join' | 'transform' | 'merge' | 'output'."
|
|
327
|
+
},
|
|
328
|
+
{
|
|
329
|
+
"selector": "JSXOpeningElement[name.name='NodeCard'] > JSXAttribute[name.name='badge'] > Literal[value!=/^(?:error|warning|clock)$/]",
|
|
330
|
+
"message": "<NodeCard> badge must be one of 'error' | 'warning' | 'clock'."
|
|
331
|
+
},
|
|
332
|
+
{
|
|
333
|
+
"selector": "JSXOpeningElement[name.name='NumberStepper'] > JSXAttribute > JSXIdentifier[name!=/^(?:value|onChange|step|min|max|disabled|style|key|ref|className|style|children)$/]",
|
|
334
|
+
"message": "<NumberStepper> doesn't accept that prop. Declared props: value, onChange, step, min, max, disabled, style."
|
|
335
|
+
},
|
|
336
|
+
{
|
|
337
|
+
"selector": "JSXOpeningElement[name.name='Pagination'] > JSXAttribute > JSXIdentifier[name!=/^(?:page|pageCount|total|pageSize|onChange|style|key|ref|className|style|children)$/]",
|
|
338
|
+
"message": "<Pagination> doesn't accept that prop. Declared props: page, pageCount, total, pageSize, onChange, style."
|
|
339
|
+
},
|
|
340
|
+
{
|
|
341
|
+
"selector": "JSXOpeningElement[name.name='PaletteEntry'] > JSXAttribute > JSXIdentifier[name!=/^(?:label|icon|key|ref|className|style|children)$/]",
|
|
342
|
+
"message": "<PaletteEntry> doesn't accept that prop. Declared props: label, icon."
|
|
343
|
+
},
|
|
344
|
+
{
|
|
345
|
+
"selector": "JSXOpeningElement[name.name='ParetoItem'] > JSXAttribute > JSXIdentifier[name!=/^(?:label|value|key|ref|className|style|children)$/]",
|
|
346
|
+
"message": "<ParetoItem> doesn't accept that prop. Declared props: label, value."
|
|
347
|
+
},
|
|
348
|
+
{
|
|
349
|
+
"selector": "JSXOpeningElement[name.name='Pie3DSegment'] > JSXAttribute > JSXIdentifier[name!=/^(?:label|value|color|key|ref|className|style|children)$/]",
|
|
350
|
+
"message": "<Pie3DSegment> doesn't accept that prop. Declared props: label, value, color."
|
|
351
|
+
},
|
|
352
|
+
{
|
|
353
|
+
"selector": "JSXOpeningElement[name.name='PipelineNode'] > JSXAttribute > JSXIdentifier[name!=/^(?:id|x|y|key|ref|className|style|children)$/]",
|
|
354
|
+
"message": "<PipelineNode> doesn't accept that prop. Declared props: id, x, y."
|
|
355
|
+
},
|
|
356
|
+
{
|
|
357
|
+
"selector": "JSXOpeningElement[name.name='ProgressBar'] > JSXAttribute > JSXIdentifier[name!=/^(?:label|value|color|showValue|style|key|ref|className|style|children)$/]",
|
|
358
|
+
"message": "<ProgressBar> doesn't accept that prop. Declared props: label, value, color, showValue, style."
|
|
359
|
+
},
|
|
360
|
+
{
|
|
361
|
+
"selector": "JSXOpeningElement[name.name='RadarAxis'] > JSXAttribute > JSXIdentifier[name!=/^(?:label|max|key|ref|className|style|children)$/]",
|
|
362
|
+
"message": "<RadarAxis> doesn't accept that prop. Declared props: label, max."
|
|
363
|
+
},
|
|
364
|
+
{
|
|
365
|
+
"selector": "JSXOpeningElement[name.name='Ribbon3DSeries'] > JSXAttribute > JSXIdentifier[name!=/^(?:name|values|color|key|ref|className|style|children)$/]",
|
|
366
|
+
"message": "<Ribbon3DSeries> doesn't accept that prop. Declared props: name, values, color."
|
|
367
|
+
},
|
|
368
|
+
{
|
|
369
|
+
"selector": "JSXOpeningElement[name.name='SankeyNode'] > JSXAttribute > JSXIdentifier[name!=/^(?:id|label|color|key|ref|className|style|children)$/]",
|
|
370
|
+
"message": "<SankeyNode> doesn't accept that prop. Declared props: id, label, color."
|
|
371
|
+
},
|
|
372
|
+
{
|
|
373
|
+
"selector": "JSXOpeningElement[name.name='Point3D'] > JSXAttribute > JSXIdentifier[name!=/^(?:x|y|z|series|label|color|key|ref|className|style|children)$/]",
|
|
374
|
+
"message": "<Point3D> doesn't accept that prop. Declared props: x, y, z, series, label, color."
|
|
375
|
+
},
|
|
376
|
+
{
|
|
377
|
+
"selector": "JSXOpeningElement[name.name='ScatterPoint'] > JSXAttribute > JSXIdentifier[name!=/^(?:x|y|r|label|series|color|key|ref|className|style|children)$/]",
|
|
378
|
+
"message": "<ScatterPoint> doesn't accept that prop. Declared props: x, y, r, label, series, color."
|
|
379
|
+
},
|
|
380
|
+
{
|
|
381
|
+
"selector": "JSXOpeningElement[name.name='SearchInput'] > JSXAttribute > JSXIdentifier[name!=/^(?:placeholder|bare|value|onChange|disabled|style|key|ref|className|style|children)$/]",
|
|
382
|
+
"message": "<SearchInput> doesn't accept that prop. Declared props: placeholder, bare, value, onChange, disabled, style."
|
|
383
|
+
},
|
|
384
|
+
{
|
|
385
|
+
"selector": "JSXOpeningElement[name.name='SegmentedControl'] > JSXAttribute > JSXIdentifier[name!=/^(?:options|value|onChange|size|style|key|ref|className|style|children)$/]",
|
|
386
|
+
"message": "<SegmentedControl> doesn't accept that prop. Declared props: options, value, onChange, size, style."
|
|
387
|
+
},
|
|
388
|
+
{
|
|
389
|
+
"selector": "JSXOpeningElement[name.name='SegmentedControl'] > JSXAttribute[name.name='size'] > Literal[value!=/^(?:sm|md)$/]",
|
|
390
|
+
"message": "<SegmentedControl> size must be one of 'sm' | 'md'."
|
|
391
|
+
},
|
|
392
|
+
{
|
|
393
|
+
"selector": "JSXOpeningElement[name.name='Select'] > JSXAttribute > JSXIdentifier[name!=/^(?:options|size|value|onChange|placeholder|disabled|error|style|key|ref|className|style|children)$/]",
|
|
394
|
+
"message": "<Select> doesn't accept that prop. Declared props: options, size, value, onChange, placeholder, disabled, error, style."
|
|
395
|
+
},
|
|
396
|
+
{
|
|
397
|
+
"selector": "JSXOpeningElement[name.name='Select'] > JSXAttribute[name.name='size'] > Literal[value!=/^(?:md|sm)$/]",
|
|
398
|
+
"message": "<Select> size must be one of 'md' | 'sm'."
|
|
399
|
+
},
|
|
400
|
+
{
|
|
401
|
+
"selector": "JSXOpeningElement[name.name='SidebarItem'] > JSXAttribute > JSXIdentifier[name!=/^(?:icon|label|children|open|key|ref|className|style|children)$/]",
|
|
402
|
+
"message": "<SidebarItem> doesn't accept that prop. Declared props: icon, label, children, open."
|
|
403
|
+
},
|
|
404
|
+
{
|
|
405
|
+
"selector": "JSXOpeningElement[name.name='Slider'] > JSXAttribute > JSXIdentifier[name!=/^(?:value|min|max|step|labels|showValue|unit|disabled|width|onChange|style|key|ref|className|style|children)$/]",
|
|
406
|
+
"message": "<Slider> doesn't accept that prop. Declared props: value, min, max, step, labels, showValue, unit, disabled, width, onChange, style."
|
|
407
|
+
},
|
|
408
|
+
{
|
|
409
|
+
"selector": "JSXOpeningElement[name.name='SmartTableField'] > JSXAttribute > JSXIdentifier[name!=/^(?:key|label|type|width|options|aggregate|primary|key|ref|className|style|children)$/]",
|
|
410
|
+
"message": "<SmartTableField> doesn't accept that prop. Declared props: key, label, type, width, options, aggregate, primary."
|
|
411
|
+
},
|
|
412
|
+
{
|
|
413
|
+
"selector": "JSXOpeningElement[name.name='SmartTableField'] > JSXAttribute[name.name='aggregate'] > Literal[value!=/^(?:count|sum|avg)$/]",
|
|
414
|
+
"message": "<SmartTableField> aggregate must be one of 'count' | 'sum' | 'avg'."
|
|
415
|
+
},
|
|
416
|
+
{
|
|
417
|
+
"selector": "JSXOpeningElement[name.name='Sparkline'] > JSXAttribute > JSXIdentifier[name!=/^(?:values|mode|curve|tone|width|height|strokeWidth|dot|baseline|interactive|labels|valueFormat|style|key|ref|className|style|children)$/]",
|
|
418
|
+
"message": "<Sparkline> doesn't accept that prop. Declared props: values, mode, curve, tone, width, height, strokeWidth, dot, baseline, interactive, labels, valueFormat, style."
|
|
419
|
+
},
|
|
420
|
+
{
|
|
421
|
+
"selector": "JSXOpeningElement[name.name='Sparkline'] > JSXAttribute[name.name='mode'] > Literal[value!=/^(?:line|area|bars)$/]",
|
|
422
|
+
"message": "<Sparkline> mode must be one of 'line' | 'area' | 'bars'."
|
|
423
|
+
},
|
|
424
|
+
{
|
|
425
|
+
"selector": "JSXOpeningElement[name.name='Sparkline'] > JSXAttribute[name.name='curve'] > Literal[value!=/^(?:linear|smooth|step)$/]",
|
|
426
|
+
"message": "<Sparkline> curve must be one of 'linear' | 'smooth' | 'step'."
|
|
427
|
+
},
|
|
428
|
+
{
|
|
429
|
+
"selector": "JSXOpeningElement[name.name='Sparkline'] > JSXAttribute[name.name='tone'] > Literal[value!=/^(?:default|auto|pos|neg|muted)$/]",
|
|
430
|
+
"message": "<Sparkline> tone must be one of 'default' | 'auto' | 'pos' | 'neg' | 'muted'."
|
|
431
|
+
},
|
|
432
|
+
{
|
|
433
|
+
"selector": "JSXOpeningElement[name.name='Spreadsheet'] > JSXAttribute > JSXIdentifier[name!=/^(?:data|rows|cols|colWidths|defaultColWidth|currency|defaultActive|sheets|activeSheet|toolbar|formulaBar|statusBar|height|onChange|style|key|ref|className|style|children)$/]",
|
|
434
|
+
"message": "<Spreadsheet> doesn't accept that prop. Declared props: data, rows, cols, colWidths, defaultColWidth, currency, defaultActive, sheets, activeSheet, toolbar, formulaBar, statusBar, height, onChange, style."
|
|
435
|
+
},
|
|
436
|
+
{
|
|
437
|
+
"selector": "JSXOpeningElement[name.name='Stepper'] > JSXAttribute > JSXIdentifier[name!=/^(?:steps|current|style|key|ref|className|style|children)$/]",
|
|
438
|
+
"message": "<Stepper> doesn't accept that prop. Declared props: steps, current, style."
|
|
439
|
+
},
|
|
440
|
+
{
|
|
441
|
+
"selector": "JSXOpeningElement[name.name='SunburstNode'] > JSXAttribute > JSXIdentifier[name!=/^(?:label|value|children|key|ref|className|style|children)$/]",
|
|
442
|
+
"message": "<SunburstNode> doesn't accept that prop. Declared props: label, value, children."
|
|
443
|
+
},
|
|
444
|
+
{
|
|
445
|
+
"selector": "JSXOpeningElement[name.name='Surface3D'] > JSXAttribute > JSXIdentifier[name!=/^(?:values|width|height|yaw|pitch|zScale|wire|interactive|valueFormat|style|key|ref|className|style|children)$/]",
|
|
446
|
+
"message": "<Surface3D> doesn't accept that prop. Declared props: values, width, height, yaw, pitch, zScale, wire, interactive, valueFormat, style."
|
|
447
|
+
},
|
|
448
|
+
{
|
|
449
|
+
"selector": "JSXOpeningElement[name.name='Switch'] > JSXAttribute > JSXIdentifier[name!=/^(?:checked|onChange|label|size|disabled|style|key|ref|className|style|children)$/]",
|
|
450
|
+
"message": "<Switch> doesn't accept that prop. Declared props: checked, onChange, label, size, disabled, style."
|
|
451
|
+
},
|
|
452
|
+
{
|
|
453
|
+
"selector": "JSXOpeningElement[name.name='Switch'] > JSXAttribute[name.name='size'] > Literal[value!=/^(?:md|sm)$/]",
|
|
454
|
+
"message": "<Switch> size must be one of 'md' | 'sm'."
|
|
455
|
+
},
|
|
456
|
+
{
|
|
457
|
+
"selector": "JSXOpeningElement[name.name='Tabs'] > JSXAttribute > JSXIdentifier[name!=/^(?:tabs|active|onChange|style|key|ref|className|style|children)$/]",
|
|
458
|
+
"message": "<Tabs> doesn't accept that prop. Declared props: tabs, active, onChange, style."
|
|
459
|
+
},
|
|
460
|
+
{
|
|
461
|
+
"selector": "JSXOpeningElement[name.name='Tag'] > JSXAttribute > JSXIdentifier[name!=/^(?:children|onRemove|tone|style|key|ref|className|style|children)$/]",
|
|
462
|
+
"message": "<Tag> doesn't accept that prop. Declared props: children, onRemove, tone, style."
|
|
463
|
+
},
|
|
464
|
+
{
|
|
465
|
+
"selector": "JSXOpeningElement[name.name='Tag'] > JSXAttribute[name.name='tone'] > Literal[value!=/^(?:neutral|info)$/]",
|
|
466
|
+
"message": "<Tag> tone must be one of 'neutral' | 'info'."
|
|
467
|
+
},
|
|
468
|
+
{
|
|
469
|
+
"selector": "JSXOpeningElement[name.name='TimelineItem'] > JSXAttribute > JSXIdentifier[name!=/^(?:icon|tone|title|meta|body|key|ref|className|style|children)$/]",
|
|
470
|
+
"message": "<TimelineItem> doesn't accept that prop. Declared props: icon, tone, title, meta, body."
|
|
471
|
+
},
|
|
472
|
+
{
|
|
473
|
+
"selector": "JSXOpeningElement[name.name='TimelineItem'] > JSXAttribute[name.name='tone'] > Literal[value!=/^(?:success|danger|warning|info|neutral)$/]",
|
|
474
|
+
"message": "<TimelineItem> tone must be one of 'success' | 'danger' | 'warning' | 'info' | 'neutral'."
|
|
475
|
+
},
|
|
476
|
+
{
|
|
477
|
+
"selector": "JSXOpeningElement[name.name='TopBar'] > JSXAttribute > JSXIdentifier[name!=/^(?:placeholder|actions|onSearch|style|key|ref|className|style|children)$/]",
|
|
478
|
+
"message": "<TopBar> doesn't accept that prop. Declared props: placeholder, actions, onSearch, style."
|
|
479
|
+
},
|
|
480
|
+
{
|
|
481
|
+
"selector": "JSXOpeningElement[name.name='TreeItem'] > JSXAttribute > JSXIdentifier[name!=/^(?:key|title|label|icon|hue|count|tag|children|disabled|disableCheckbox|selectable|checkable|isLeaf|key|ref|className|style|children)$/]",
|
|
482
|
+
"message": "<TreeItem> doesn't accept that prop. Declared props: key, title, label, icon, hue, count, tag, children, disabled, disableCheckbox, selectable, checkable, isLeaf."
|
|
483
|
+
},
|
|
484
|
+
{
|
|
485
|
+
"selector": "JSXOpeningElement[name.name='TreemapItem'] > JSXAttribute > JSXIdentifier[name!=/^(?:label|value|color|key|ref|className|style|children)$/]",
|
|
486
|
+
"message": "<TreemapItem> doesn't accept that prop. Declared props: label, value, color."
|
|
487
|
+
},
|
|
488
|
+
{
|
|
489
|
+
"selector": "JSXOpeningElement[name.name='Unicon'] > JSXAttribute > JSXIdentifier[name!=/^(?:name|size|color|className|style|key|ref|className|style|children)$/]",
|
|
490
|
+
"message": "<Unicon> doesn't accept that prop. Declared props: name, size, color, className, style."
|
|
491
|
+
},
|
|
492
|
+
{
|
|
493
|
+
"selector": "JSXOpeningElement[name.name='ViewToggle'] > JSXAttribute > JSXIdentifier[name!=/^(?:value|onChange|style|key|ref|className|style|children)$/]",
|
|
494
|
+
"message": "<ViewToggle> doesn't accept that prop. Declared props: value, onChange, style."
|
|
495
|
+
},
|
|
496
|
+
{
|
|
497
|
+
"selector": "JSXOpeningElement[name.name='ViewToggle'] > JSXAttribute[name.name='value'] > Literal[value!=/^(?:list|grid)$/]",
|
|
498
|
+
"message": "<ViewToggle> value must be one of 'list' | 'grid'."
|
|
499
|
+
},
|
|
500
|
+
{
|
|
501
|
+
"selector": "JSXOpeningElement[name.name='WaterfallStep'] > JSXAttribute > JSXIdentifier[name!=/^(?:label|value|total|key|ref|className|style|children)$/]",
|
|
502
|
+
"message": "<WaterfallStep> doesn't accept that prop. Declared props: label, value, total."
|
|
503
|
+
},
|
|
504
|
+
{
|
|
505
|
+
"selector": "JSXOpeningElement[name.name='WorldMap'] > JSXAttribute > JSXIdentifier[name!=/^(?:values|width|height|projection|scale|valueFormat|legend|unit|interactive|onSelect|style|key|ref|className|style|children)$/]",
|
|
506
|
+
"message": "<WorldMap> doesn't accept that prop. Declared props: values, width, height, projection, scale, valueFormat, legend, unit, interactive, onSelect, style."
|
|
507
|
+
},
|
|
508
|
+
{
|
|
509
|
+
"selector": "JSXOpeningElement[name.name='WorldMap'] > JSXAttribute[name.name='projection'] > Literal[value!=/^(?:naturalEarth|mercator|equalEarth)$/]",
|
|
510
|
+
"message": "<WorldMap> projection must be one of 'naturalEarth' | 'mercator' | 'equalEarth'."
|
|
511
|
+
},
|
|
512
|
+
{
|
|
513
|
+
"selector": "JSXOpeningElement[name.name='WorldMap'] > JSXAttribute[name.name='scale'] > Literal[value!=/^(?:blue|diverging)$/]",
|
|
514
|
+
"message": "<WorldMap> scale must be one of 'blue' | 'diverging'."
|
|
515
|
+
},
|
|
516
|
+
{
|
|
517
|
+
"selector": "JSXOpeningElement[name.name='ZoomControls'] > JSXAttribute > JSXIdentifier[name!=/^(?:value|onChange|onFit|style|key|ref|className|style|children)$/]",
|
|
518
|
+
"message": "<ZoomControls> doesn't accept that prop. Declared props: value, onChange, onFit, style."
|
|
519
|
+
}
|
|
520
|
+
]
|
|
521
|
+
},
|
|
522
|
+
"overrides": [
|
|
523
|
+
{
|
|
524
|
+
"files": [
|
|
525
|
+
"**/index.js"
|
|
526
|
+
],
|
|
527
|
+
"rules": {
|
|
528
|
+
"no-restricted-imports": "off"
|
|
529
|
+
}
|
|
530
|
+
}
|
|
531
|
+
],
|
|
532
|
+
"x-omelette": {
|
|
533
|
+
"components": {
|
|
534
|
+
"Accordion": {
|
|
535
|
+
"replaces": []
|
|
536
|
+
},
|
|
537
|
+
"ActionChip": {
|
|
538
|
+
"replaces": []
|
|
539
|
+
},
|
|
540
|
+
"ActivityItem": {
|
|
541
|
+
"replaces": []
|
|
542
|
+
},
|
|
543
|
+
"Alert": {
|
|
544
|
+
"replaces": []
|
|
545
|
+
},
|
|
546
|
+
"Avatar": {
|
|
547
|
+
"replaces": []
|
|
548
|
+
},
|
|
549
|
+
"StatusBadge": {
|
|
550
|
+
"replaces": []
|
|
551
|
+
},
|
|
552
|
+
"Banner": {
|
|
553
|
+
"replaces": []
|
|
554
|
+
},
|
|
555
|
+
"Bar3DSeries": {
|
|
556
|
+
"replaces": []
|
|
557
|
+
},
|
|
558
|
+
"BarSeries": {
|
|
559
|
+
"replaces": []
|
|
560
|
+
},
|
|
561
|
+
"BarListRow": {
|
|
562
|
+
"replaces": []
|
|
563
|
+
},
|
|
564
|
+
"BoxGroup": {
|
|
565
|
+
"replaces": []
|
|
566
|
+
},
|
|
567
|
+
"BrandVisual": {
|
|
568
|
+
"replaces": []
|
|
569
|
+
},
|
|
570
|
+
"Breadcrumb": {
|
|
571
|
+
"replaces": []
|
|
572
|
+
},
|
|
573
|
+
"BulletRow": {
|
|
574
|
+
"replaces": []
|
|
575
|
+
},
|
|
576
|
+
"Button": {
|
|
577
|
+
"replaces": []
|
|
578
|
+
},
|
|
579
|
+
"Candle": {
|
|
580
|
+
"replaces": []
|
|
581
|
+
},
|
|
582
|
+
"Card": {
|
|
583
|
+
"replaces": []
|
|
584
|
+
},
|
|
585
|
+
"LegendItem": {
|
|
586
|
+
"replaces": []
|
|
587
|
+
},
|
|
588
|
+
"Checkbox": {
|
|
589
|
+
"replaces": []
|
|
590
|
+
},
|
|
591
|
+
"ChordChart": {
|
|
592
|
+
"replaces": []
|
|
593
|
+
},
|
|
594
|
+
"CodeBlock": {
|
|
595
|
+
"replaces": []
|
|
596
|
+
},
|
|
597
|
+
"Combobox": {
|
|
598
|
+
"replaces": []
|
|
599
|
+
},
|
|
600
|
+
"ConfigPanel": {
|
|
601
|
+
"replaces": []
|
|
602
|
+
},
|
|
603
|
+
"ContextMenu": {
|
|
604
|
+
"replaces": []
|
|
605
|
+
},
|
|
606
|
+
"DataPreview": {
|
|
607
|
+
"replaces": []
|
|
608
|
+
},
|
|
609
|
+
"DataTableColumn": {
|
|
610
|
+
"replaces": []
|
|
611
|
+
},
|
|
612
|
+
"DatePicker": {
|
|
613
|
+
"replaces": []
|
|
614
|
+
},
|
|
615
|
+
"DiffValue": {
|
|
616
|
+
"replaces": []
|
|
617
|
+
},
|
|
618
|
+
"Divider": {
|
|
619
|
+
"replaces": []
|
|
620
|
+
},
|
|
621
|
+
"DocTreeItem": {
|
|
622
|
+
"replaces": []
|
|
623
|
+
},
|
|
624
|
+
"DonutSegment": {
|
|
625
|
+
"replaces": []
|
|
626
|
+
},
|
|
627
|
+
"Drawer": {
|
|
628
|
+
"replaces": []
|
|
629
|
+
},
|
|
630
|
+
"Dropzone": {
|
|
631
|
+
"replaces": []
|
|
632
|
+
},
|
|
633
|
+
"Field": {
|
|
634
|
+
"replaces": []
|
|
635
|
+
},
|
|
636
|
+
"FilterBar": {
|
|
637
|
+
"replaces": []
|
|
638
|
+
},
|
|
639
|
+
"FunnelStage": {
|
|
640
|
+
"replaces": []
|
|
641
|
+
},
|
|
642
|
+
"GanttTask": {
|
|
643
|
+
"replaces": []
|
|
644
|
+
},
|
|
645
|
+
"GaugeBand": {
|
|
646
|
+
"replaces": []
|
|
647
|
+
},
|
|
648
|
+
"HeatmapChart": {
|
|
649
|
+
"replaces": []
|
|
650
|
+
},
|
|
651
|
+
"HistogramBucket": {
|
|
652
|
+
"replaces": []
|
|
653
|
+
},
|
|
654
|
+
"Icon": {
|
|
655
|
+
"replaces": []
|
|
656
|
+
},
|
|
657
|
+
"IconButton": {
|
|
658
|
+
"replaces": []
|
|
659
|
+
},
|
|
660
|
+
"Input": {
|
|
661
|
+
"replaces": []
|
|
662
|
+
},
|
|
663
|
+
"Kbd": {
|
|
664
|
+
"replaces": []
|
|
665
|
+
},
|
|
666
|
+
"KeyValue": {
|
|
667
|
+
"replaces": []
|
|
668
|
+
},
|
|
669
|
+
"LineSeries": {
|
|
670
|
+
"replaces": []
|
|
671
|
+
},
|
|
672
|
+
"ListRow": {
|
|
673
|
+
"replaces": []
|
|
674
|
+
},
|
|
675
|
+
"Menu": {
|
|
676
|
+
"replaces": []
|
|
677
|
+
},
|
|
678
|
+
"Tooltip": {
|
|
679
|
+
"replaces": []
|
|
680
|
+
},
|
|
681
|
+
"MultiSelect": {
|
|
682
|
+
"replaces": []
|
|
683
|
+
},
|
|
684
|
+
"NodeCard": {
|
|
685
|
+
"replaces": []
|
|
686
|
+
},
|
|
687
|
+
"NumberStepper": {
|
|
688
|
+
"replaces": []
|
|
689
|
+
},
|
|
690
|
+
"Pagination": {
|
|
691
|
+
"replaces": []
|
|
692
|
+
},
|
|
693
|
+
"PaletteEntry": {
|
|
694
|
+
"replaces": []
|
|
695
|
+
},
|
|
696
|
+
"ParetoItem": {
|
|
697
|
+
"replaces": []
|
|
698
|
+
},
|
|
699
|
+
"Pie3DSegment": {
|
|
700
|
+
"replaces": []
|
|
701
|
+
},
|
|
702
|
+
"PipelineNode": {
|
|
703
|
+
"replaces": []
|
|
704
|
+
},
|
|
705
|
+
"ProgressBar": {
|
|
706
|
+
"replaces": []
|
|
707
|
+
},
|
|
708
|
+
"RadarAxis": {
|
|
709
|
+
"replaces": []
|
|
710
|
+
},
|
|
711
|
+
"Ribbon3DSeries": {
|
|
712
|
+
"replaces": []
|
|
713
|
+
},
|
|
714
|
+
"SankeyNode": {
|
|
715
|
+
"replaces": []
|
|
716
|
+
},
|
|
717
|
+
"Point3D": {
|
|
718
|
+
"replaces": []
|
|
719
|
+
},
|
|
720
|
+
"ScatterPoint": {
|
|
721
|
+
"replaces": []
|
|
722
|
+
},
|
|
723
|
+
"SearchInput": {
|
|
724
|
+
"replaces": []
|
|
725
|
+
},
|
|
726
|
+
"SegmentedControl": {
|
|
727
|
+
"replaces": []
|
|
728
|
+
},
|
|
729
|
+
"Select": {
|
|
730
|
+
"replaces": []
|
|
731
|
+
},
|
|
732
|
+
"SidebarItem": {
|
|
733
|
+
"replaces": []
|
|
734
|
+
},
|
|
735
|
+
"Slider": {
|
|
736
|
+
"replaces": []
|
|
737
|
+
},
|
|
738
|
+
"SmartTableField": {
|
|
739
|
+
"replaces": []
|
|
740
|
+
},
|
|
741
|
+
"Sparkline": {
|
|
742
|
+
"replaces": []
|
|
743
|
+
},
|
|
744
|
+
"Spreadsheet": {
|
|
745
|
+
"replaces": []
|
|
746
|
+
},
|
|
747
|
+
"Stepper": {
|
|
748
|
+
"replaces": []
|
|
749
|
+
},
|
|
750
|
+
"SunburstNode": {
|
|
751
|
+
"replaces": []
|
|
752
|
+
},
|
|
753
|
+
"Surface3D": {
|
|
754
|
+
"replaces": []
|
|
755
|
+
},
|
|
756
|
+
"Switch": {
|
|
757
|
+
"replaces": []
|
|
758
|
+
},
|
|
759
|
+
"Tabs": {
|
|
760
|
+
"replaces": []
|
|
761
|
+
},
|
|
762
|
+
"Tag": {
|
|
763
|
+
"replaces": []
|
|
764
|
+
},
|
|
765
|
+
"TimelineItem": {
|
|
766
|
+
"replaces": []
|
|
767
|
+
},
|
|
768
|
+
"TopBar": {
|
|
769
|
+
"replaces": []
|
|
770
|
+
},
|
|
771
|
+
"TreeItem": {
|
|
772
|
+
"replaces": []
|
|
773
|
+
},
|
|
774
|
+
"TreemapItem": {
|
|
775
|
+
"replaces": []
|
|
776
|
+
},
|
|
777
|
+
"Unicon": {
|
|
778
|
+
"replaces": []
|
|
779
|
+
},
|
|
780
|
+
"ViewToggle": {
|
|
781
|
+
"replaces": []
|
|
782
|
+
},
|
|
783
|
+
"WaterfallStep": {
|
|
784
|
+
"replaces": []
|
|
785
|
+
},
|
|
786
|
+
"WorldMap": {
|
|
787
|
+
"replaces": []
|
|
788
|
+
},
|
|
789
|
+
"ZoomControls": {
|
|
790
|
+
"replaces": []
|
|
791
|
+
}
|
|
792
|
+
},
|
|
793
|
+
"tokens": [
|
|
794
|
+
"--action-dark",
|
|
795
|
+
"--action-dark-active",
|
|
796
|
+
"--action-dark-fg",
|
|
797
|
+
"--action-dark-hover",
|
|
798
|
+
"--action-primary",
|
|
799
|
+
"--action-primary-active",
|
|
800
|
+
"--action-primary-hover",
|
|
801
|
+
"--amber-100",
|
|
802
|
+
"--amber-200",
|
|
803
|
+
"--amber-300",
|
|
804
|
+
"--amber-400",
|
|
805
|
+
"--amber-50",
|
|
806
|
+
"--amber-500",
|
|
807
|
+
"--amber-600",
|
|
808
|
+
"--amber-700",
|
|
809
|
+
"--amber-800",
|
|
810
|
+
"--amber-900",
|
|
811
|
+
"--amber-950",
|
|
812
|
+
"--bg-active",
|
|
813
|
+
"--bg-app",
|
|
814
|
+
"--bg-hover",
|
|
815
|
+
"--bg-inset",
|
|
816
|
+
"--bg-press",
|
|
817
|
+
"--bg-raised",
|
|
818
|
+
"--bg-scrim",
|
|
819
|
+
"--bg-surface",
|
|
820
|
+
"--blue-100",
|
|
821
|
+
"--blue-200",
|
|
822
|
+
"--blue-300",
|
|
823
|
+
"--blue-400",
|
|
824
|
+
"--blue-50",
|
|
825
|
+
"--blue-500",
|
|
826
|
+
"--blue-600",
|
|
827
|
+
"--blue-700",
|
|
828
|
+
"--blue-800",
|
|
829
|
+
"--blue-900",
|
|
830
|
+
"--blue-950",
|
|
831
|
+
"--border-card",
|
|
832
|
+
"--border-control",
|
|
833
|
+
"--border-strong",
|
|
834
|
+
"--border-subtle",
|
|
835
|
+
"--brand-alpha-12",
|
|
836
|
+
"--brand-alpha-16",
|
|
837
|
+
"--brand-alpha-24",
|
|
838
|
+
"--brand-alpha-32",
|
|
839
|
+
"--brand-alpha-8",
|
|
840
|
+
"--card-pad",
|
|
841
|
+
"--card-pad-sm",
|
|
842
|
+
"--cat-join",
|
|
843
|
+
"--cat-join-bg",
|
|
844
|
+
"--cat-merge",
|
|
845
|
+
"--cat-merge-bg",
|
|
846
|
+
"--cat-output",
|
|
847
|
+
"--cat-output-bg",
|
|
848
|
+
"--cat-source",
|
|
849
|
+
"--cat-source-bg",
|
|
850
|
+
"--cat-transform",
|
|
851
|
+
"--cat-transform-bg",
|
|
852
|
+
"--chart-area-alpha",
|
|
853
|
+
"--chart-axis",
|
|
854
|
+
"--chart-blue",
|
|
855
|
+
"--chart-grid",
|
|
856
|
+
"--chart-guide",
|
|
857
|
+
"--chart-heat-1",
|
|
858
|
+
"--chart-heat-2",
|
|
859
|
+
"--chart-heat-3",
|
|
860
|
+
"--chart-heat-4",
|
|
861
|
+
"--chart-heat-5",
|
|
862
|
+
"--chart-heat-ink",
|
|
863
|
+
"--chart-label",
|
|
864
|
+
"--chart-neg",
|
|
865
|
+
"--chart-pos",
|
|
866
|
+
"--chart-total",
|
|
867
|
+
"--chart-track",
|
|
868
|
+
"--checkbox-border",
|
|
869
|
+
"--cyan-100",
|
|
870
|
+
"--cyan-200",
|
|
871
|
+
"--cyan-300",
|
|
872
|
+
"--cyan-400",
|
|
873
|
+
"--cyan-50",
|
|
874
|
+
"--cyan-500",
|
|
875
|
+
"--cyan-600",
|
|
876
|
+
"--cyan-700",
|
|
877
|
+
"--cyan-800",
|
|
878
|
+
"--cyan-900",
|
|
879
|
+
"--cyan-950",
|
|
880
|
+
"--danger",
|
|
881
|
+
"--danger-active",
|
|
882
|
+
"--danger-bg",
|
|
883
|
+
"--danger-soft-active",
|
|
884
|
+
"--danger-text",
|
|
885
|
+
"--dot-neutral",
|
|
886
|
+
"--drawer-h",
|
|
887
|
+
"--dropzone-border",
|
|
888
|
+
"--dropzone-border-hover",
|
|
889
|
+
"--dur",
|
|
890
|
+
"--dur-fast",
|
|
891
|
+
"--dur-instant",
|
|
892
|
+
"--dur-slow",
|
|
893
|
+
"--dur-slower",
|
|
894
|
+
"--ease-in",
|
|
895
|
+
"--ease-in-out",
|
|
896
|
+
"--ease-out",
|
|
897
|
+
"--edge",
|
|
898
|
+
"--emerald-100",
|
|
899
|
+
"--emerald-200",
|
|
900
|
+
"--emerald-300",
|
|
901
|
+
"--emerald-400",
|
|
902
|
+
"--emerald-50",
|
|
903
|
+
"--emerald-500",
|
|
904
|
+
"--emerald-600",
|
|
905
|
+
"--emerald-700",
|
|
906
|
+
"--emerald-800",
|
|
907
|
+
"--emerald-900",
|
|
908
|
+
"--emerald-950",
|
|
909
|
+
"--focus-border",
|
|
910
|
+
"--focus-ring",
|
|
911
|
+
"--font-mono",
|
|
912
|
+
"--font-sans",
|
|
913
|
+
"--h-button",
|
|
914
|
+
"--h-button-sm",
|
|
915
|
+
"--h-input",
|
|
916
|
+
"--h-nav-item",
|
|
917
|
+
"--h-subnav-item",
|
|
918
|
+
"--h-tree-item",
|
|
919
|
+
"--hue-amber-bg",
|
|
920
|
+
"--hue-amber-fg",
|
|
921
|
+
"--hue-blue-bg",
|
|
922
|
+
"--hue-blue-fg",
|
|
923
|
+
"--hue-cyan-bg",
|
|
924
|
+
"--hue-cyan-fg",
|
|
925
|
+
"--hue-gray-bg",
|
|
926
|
+
"--hue-gray-fg",
|
|
927
|
+
"--hue-green-bg",
|
|
928
|
+
"--hue-green-fg",
|
|
929
|
+
"--hue-orange-bg",
|
|
930
|
+
"--hue-orange-fg",
|
|
931
|
+
"--hue-pink-bg",
|
|
932
|
+
"--hue-pink-fg",
|
|
933
|
+
"--hue-purple-bg",
|
|
934
|
+
"--hue-purple-fg",
|
|
935
|
+
"--hue-red-bg",
|
|
936
|
+
"--hue-red-fg",
|
|
937
|
+
"--hue-teal-bg",
|
|
938
|
+
"--hue-teal-fg",
|
|
939
|
+
"--info-bg",
|
|
940
|
+
"--info-fg",
|
|
941
|
+
"--leading-2xl",
|
|
942
|
+
"--leading-2xs",
|
|
943
|
+
"--leading-3xl",
|
|
944
|
+
"--leading-4xl",
|
|
945
|
+
"--leading-base",
|
|
946
|
+
"--leading-display",
|
|
947
|
+
"--leading-lg",
|
|
948
|
+
"--leading-md",
|
|
949
|
+
"--leading-num",
|
|
950
|
+
"--leading-sm",
|
|
951
|
+
"--leading-xl",
|
|
952
|
+
"--leading-xs",
|
|
953
|
+
"--link",
|
|
954
|
+
"--link-hover",
|
|
955
|
+
"--neutral-0",
|
|
956
|
+
"--neutral-100",
|
|
957
|
+
"--neutral-200",
|
|
958
|
+
"--neutral-300",
|
|
959
|
+
"--neutral-400",
|
|
960
|
+
"--neutral-50",
|
|
961
|
+
"--neutral-500",
|
|
962
|
+
"--neutral-600",
|
|
963
|
+
"--neutral-700",
|
|
964
|
+
"--neutral-800",
|
|
965
|
+
"--neutral-900",
|
|
966
|
+
"--neutral-950",
|
|
967
|
+
"--neutral-alpha-12",
|
|
968
|
+
"--neutral-alpha-16",
|
|
969
|
+
"--neutral-alpha-2",
|
|
970
|
+
"--neutral-alpha-24",
|
|
971
|
+
"--neutral-alpha-32",
|
|
972
|
+
"--neutral-alpha-4",
|
|
973
|
+
"--neutral-alpha-48",
|
|
974
|
+
"--neutral-alpha-64",
|
|
975
|
+
"--neutral-alpha-8",
|
|
976
|
+
"--neutral-alpha-80",
|
|
977
|
+
"--on-accent",
|
|
978
|
+
"--orange-100",
|
|
979
|
+
"--orange-200",
|
|
980
|
+
"--orange-300",
|
|
981
|
+
"--orange-400",
|
|
982
|
+
"--orange-50",
|
|
983
|
+
"--orange-500",
|
|
984
|
+
"--orange-600",
|
|
985
|
+
"--orange-700",
|
|
986
|
+
"--orange-800",
|
|
987
|
+
"--orange-900",
|
|
988
|
+
"--orange-950",
|
|
989
|
+
"--overlay-drag",
|
|
990
|
+
"--overlay-hover",
|
|
991
|
+
"--overlay-press",
|
|
992
|
+
"--overlay-selected",
|
|
993
|
+
"--page-pad-x",
|
|
994
|
+
"--page-pad-y",
|
|
995
|
+
"--panel-w",
|
|
996
|
+
"--pink-100",
|
|
997
|
+
"--pink-200",
|
|
998
|
+
"--pink-300",
|
|
999
|
+
"--pink-400",
|
|
1000
|
+
"--pink-50",
|
|
1001
|
+
"--pink-500",
|
|
1002
|
+
"--pink-600",
|
|
1003
|
+
"--pink-700",
|
|
1004
|
+
"--pink-800",
|
|
1005
|
+
"--pink-900",
|
|
1006
|
+
"--pink-950",
|
|
1007
|
+
"--port-border",
|
|
1008
|
+
"--press-filter",
|
|
1009
|
+
"--press-filter-strong",
|
|
1010
|
+
"--purple-100",
|
|
1011
|
+
"--purple-200",
|
|
1012
|
+
"--purple-300",
|
|
1013
|
+
"--purple-400",
|
|
1014
|
+
"--purple-50",
|
|
1015
|
+
"--purple-500",
|
|
1016
|
+
"--purple-600",
|
|
1017
|
+
"--purple-700",
|
|
1018
|
+
"--purple-800",
|
|
1019
|
+
"--purple-900",
|
|
1020
|
+
"--purple-950",
|
|
1021
|
+
"--radius-full",
|
|
1022
|
+
"--radius-lg",
|
|
1023
|
+
"--radius-md",
|
|
1024
|
+
"--radius-node",
|
|
1025
|
+
"--radius-sm",
|
|
1026
|
+
"--radius-tile",
|
|
1027
|
+
"--rail-w",
|
|
1028
|
+
"--red-100",
|
|
1029
|
+
"--red-200",
|
|
1030
|
+
"--red-300",
|
|
1031
|
+
"--red-400",
|
|
1032
|
+
"--red-50",
|
|
1033
|
+
"--red-500",
|
|
1034
|
+
"--red-600",
|
|
1035
|
+
"--red-700",
|
|
1036
|
+
"--red-800",
|
|
1037
|
+
"--red-900",
|
|
1038
|
+
"--red-950",
|
|
1039
|
+
"--ring-focus",
|
|
1040
|
+
"--ring-surface",
|
|
1041
|
+
"--section-gap",
|
|
1042
|
+
"--selected-border",
|
|
1043
|
+
"--series-1",
|
|
1044
|
+
"--series-10",
|
|
1045
|
+
"--series-2",
|
|
1046
|
+
"--series-3",
|
|
1047
|
+
"--series-4",
|
|
1048
|
+
"--series-5",
|
|
1049
|
+
"--series-6",
|
|
1050
|
+
"--series-7",
|
|
1051
|
+
"--series-8",
|
|
1052
|
+
"--series-9",
|
|
1053
|
+
"--shadow-menu",
|
|
1054
|
+
"--shadow-modal",
|
|
1055
|
+
"--shadow-node",
|
|
1056
|
+
"--shadow-selected",
|
|
1057
|
+
"--sidebar-w",
|
|
1058
|
+
"--skeleton",
|
|
1059
|
+
"--soft-active",
|
|
1060
|
+
"--soft-bg",
|
|
1061
|
+
"--soft-border",
|
|
1062
|
+
"--soft-hover",
|
|
1063
|
+
"--success",
|
|
1064
|
+
"--success-bg",
|
|
1065
|
+
"--success-strong",
|
|
1066
|
+
"--success-text",
|
|
1067
|
+
"--t-hover",
|
|
1068
|
+
"--t-theme",
|
|
1069
|
+
"--teal-100",
|
|
1070
|
+
"--teal-200",
|
|
1071
|
+
"--teal-300",
|
|
1072
|
+
"--teal-400",
|
|
1073
|
+
"--teal-50",
|
|
1074
|
+
"--teal-500",
|
|
1075
|
+
"--teal-600",
|
|
1076
|
+
"--teal-700",
|
|
1077
|
+
"--teal-800",
|
|
1078
|
+
"--teal-900",
|
|
1079
|
+
"--teal-950",
|
|
1080
|
+
"--text-2xl",
|
|
1081
|
+
"--text-2xs",
|
|
1082
|
+
"--text-3xl",
|
|
1083
|
+
"--text-4xl",
|
|
1084
|
+
"--text-base",
|
|
1085
|
+
"--text-body",
|
|
1086
|
+
"--text-display",
|
|
1087
|
+
"--text-heading",
|
|
1088
|
+
"--text-inverse",
|
|
1089
|
+
"--text-lg",
|
|
1090
|
+
"--text-md",
|
|
1091
|
+
"--text-muted",
|
|
1092
|
+
"--text-num",
|
|
1093
|
+
"--text-primary",
|
|
1094
|
+
"--text-secondary",
|
|
1095
|
+
"--text-sm",
|
|
1096
|
+
"--text-strong",
|
|
1097
|
+
"--text-xl",
|
|
1098
|
+
"--text-xs",
|
|
1099
|
+
"--tooltip-bg",
|
|
1100
|
+
"--tooltip-fg",
|
|
1101
|
+
"--topbar-h",
|
|
1102
|
+
"--track",
|
|
1103
|
+
"--tracking-2xl",
|
|
1104
|
+
"--tracking-2xs",
|
|
1105
|
+
"--tracking-3xl",
|
|
1106
|
+
"--tracking-4xl",
|
|
1107
|
+
"--tracking-base",
|
|
1108
|
+
"--tracking-display",
|
|
1109
|
+
"--tracking-lg",
|
|
1110
|
+
"--tracking-md",
|
|
1111
|
+
"--tracking-num",
|
|
1112
|
+
"--tracking-sm",
|
|
1113
|
+
"--tracking-xl",
|
|
1114
|
+
"--tracking-xs",
|
|
1115
|
+
"--warning",
|
|
1116
|
+
"--warning-bg",
|
|
1117
|
+
"--warning-text",
|
|
1118
|
+
"--weight-light",
|
|
1119
|
+
"--weight-medium",
|
|
1120
|
+
"--weight-regular",
|
|
1121
|
+
"--weight-semibold",
|
|
1122
|
+
"--z-drawer",
|
|
1123
|
+
"--z-menu",
|
|
1124
|
+
"--z-modal",
|
|
1125
|
+
"--z-sticky",
|
|
1126
|
+
"--z-toast",
|
|
1127
|
+
"--z-tooltip"
|
|
1128
|
+
],
|
|
1129
|
+
"tokenKinds": {
|
|
1130
|
+
"--neutral-0": "color",
|
|
1131
|
+
"--neutral-50": "color",
|
|
1132
|
+
"--neutral-100": "color",
|
|
1133
|
+
"--neutral-200": "color",
|
|
1134
|
+
"--neutral-300": "color",
|
|
1135
|
+
"--neutral-400": "color",
|
|
1136
|
+
"--neutral-500": "color",
|
|
1137
|
+
"--neutral-600": "color",
|
|
1138
|
+
"--neutral-700": "color",
|
|
1139
|
+
"--neutral-800": "color",
|
|
1140
|
+
"--neutral-900": "color",
|
|
1141
|
+
"--neutral-950": "color",
|
|
1142
|
+
"--blue-50": "color",
|
|
1143
|
+
"--blue-100": "color",
|
|
1144
|
+
"--blue-400": "color",
|
|
1145
|
+
"--blue-500": "color",
|
|
1146
|
+
"--blue-600": "color",
|
|
1147
|
+
"--blue-700": "color",
|
|
1148
|
+
"--chart-blue": "color",
|
|
1149
|
+
"--edge": "color",
|
|
1150
|
+
"--checkbox-border": "color",
|
|
1151
|
+
"--cat-source": "color",
|
|
1152
|
+
"--cat-source-bg": "color",
|
|
1153
|
+
"--cat-join": "color",
|
|
1154
|
+
"--cat-join-bg": "color",
|
|
1155
|
+
"--cat-transform": "color",
|
|
1156
|
+
"--cat-transform-bg": "color",
|
|
1157
|
+
"--cat-merge": "color",
|
|
1158
|
+
"--cat-merge-bg": "color",
|
|
1159
|
+
"--cat-output": "color",
|
|
1160
|
+
"--cat-output-bg": "color",
|
|
1161
|
+
"--purple-500": "color",
|
|
1162
|
+
"--success": "color",
|
|
1163
|
+
"--success-strong": "color",
|
|
1164
|
+
"--success-bg": "color",
|
|
1165
|
+
"--success-text": "font",
|
|
1166
|
+
"--danger": "color",
|
|
1167
|
+
"--danger-bg": "color",
|
|
1168
|
+
"--danger-text": "font",
|
|
1169
|
+
"--warning": "color",
|
|
1170
|
+
"--warning-bg": "color",
|
|
1171
|
+
"--warning-text": "font",
|
|
1172
|
+
"--bg-app": "color",
|
|
1173
|
+
"--bg-surface": "color",
|
|
1174
|
+
"--bg-raised": "color",
|
|
1175
|
+
"--bg-inset": "color",
|
|
1176
|
+
"--bg-hover": "color",
|
|
1177
|
+
"--bg-active": "color",
|
|
1178
|
+
"--bg-scrim": "color",
|
|
1179
|
+
"--text-primary": "font",
|
|
1180
|
+
"--text-heading": "font",
|
|
1181
|
+
"--text-strong": "font",
|
|
1182
|
+
"--text-body": "font",
|
|
1183
|
+
"--text-secondary": "font",
|
|
1184
|
+
"--text-muted": "font",
|
|
1185
|
+
"--text-inverse": "font",
|
|
1186
|
+
"--on-accent": "color",
|
|
1187
|
+
"--action-dark-fg": "color",
|
|
1188
|
+
"--border-card": "color",
|
|
1189
|
+
"--border-control": "color",
|
|
1190
|
+
"--border-subtle": "color",
|
|
1191
|
+
"--border-strong": "color",
|
|
1192
|
+
"--action-primary": "color",
|
|
1193
|
+
"--action-primary-hover": "color",
|
|
1194
|
+
"--action-primary-active": "color",
|
|
1195
|
+
"--action-dark": "color",
|
|
1196
|
+
"--action-dark-hover": "color",
|
|
1197
|
+
"--action-dark-active": "color",
|
|
1198
|
+
"--bg-press": "color",
|
|
1199
|
+
"--soft-active": "color",
|
|
1200
|
+
"--danger-active": "color",
|
|
1201
|
+
"--danger-soft-active": "color",
|
|
1202
|
+
"--focus-ring": "color",
|
|
1203
|
+
"--focus-border": "color",
|
|
1204
|
+
"--selected-border": "color",
|
|
1205
|
+
"--soft-bg": "color",
|
|
1206
|
+
"--soft-border": "color",
|
|
1207
|
+
"--soft-hover": "color",
|
|
1208
|
+
"--info-bg": "color",
|
|
1209
|
+
"--info-fg": "color",
|
|
1210
|
+
"--track": "color",
|
|
1211
|
+
"--dot-neutral": "color",
|
|
1212
|
+
"--skeleton": "color",
|
|
1213
|
+
"--port-border": "color",
|
|
1214
|
+
"--dropzone-border": "color",
|
|
1215
|
+
"--dropzone-border-hover": "color",
|
|
1216
|
+
"--tooltip-bg": "color",
|
|
1217
|
+
"--tooltip-fg": "color",
|
|
1218
|
+
"--link": "color",
|
|
1219
|
+
"--link-hover": "color",
|
|
1220
|
+
"--blue-200": "color",
|
|
1221
|
+
"--blue-300": "color",
|
|
1222
|
+
"--blue-800": "color",
|
|
1223
|
+
"--blue-900": "color",
|
|
1224
|
+
"--blue-950": "color",
|
|
1225
|
+
"--red-50": "color",
|
|
1226
|
+
"--red-100": "color",
|
|
1227
|
+
"--red-200": "color",
|
|
1228
|
+
"--red-300": "color",
|
|
1229
|
+
"--red-400": "color",
|
|
1230
|
+
"--red-500": "color",
|
|
1231
|
+
"--red-600": "color",
|
|
1232
|
+
"--red-700": "color",
|
|
1233
|
+
"--red-800": "color",
|
|
1234
|
+
"--red-900": "color",
|
|
1235
|
+
"--red-950": "color",
|
|
1236
|
+
"--orange-50": "color",
|
|
1237
|
+
"--orange-100": "color",
|
|
1238
|
+
"--orange-200": "color",
|
|
1239
|
+
"--orange-300": "color",
|
|
1240
|
+
"--orange-400": "color",
|
|
1241
|
+
"--orange-500": "color",
|
|
1242
|
+
"--orange-600": "color",
|
|
1243
|
+
"--orange-700": "color",
|
|
1244
|
+
"--orange-800": "color",
|
|
1245
|
+
"--orange-900": "color",
|
|
1246
|
+
"--orange-950": "color",
|
|
1247
|
+
"--amber-50": "color",
|
|
1248
|
+
"--amber-100": "color",
|
|
1249
|
+
"--amber-200": "color",
|
|
1250
|
+
"--amber-300": "color",
|
|
1251
|
+
"--amber-400": "color",
|
|
1252
|
+
"--amber-500": "color",
|
|
1253
|
+
"--amber-600": "color",
|
|
1254
|
+
"--amber-700": "color",
|
|
1255
|
+
"--amber-800": "color",
|
|
1256
|
+
"--amber-900": "color",
|
|
1257
|
+
"--amber-950": "color",
|
|
1258
|
+
"--emerald-50": "color",
|
|
1259
|
+
"--emerald-100": "color",
|
|
1260
|
+
"--emerald-200": "color",
|
|
1261
|
+
"--emerald-300": "color",
|
|
1262
|
+
"--emerald-400": "color",
|
|
1263
|
+
"--emerald-500": "color",
|
|
1264
|
+
"--emerald-600": "color",
|
|
1265
|
+
"--emerald-700": "color",
|
|
1266
|
+
"--emerald-800": "color",
|
|
1267
|
+
"--emerald-900": "color",
|
|
1268
|
+
"--emerald-950": "color",
|
|
1269
|
+
"--teal-50": "color",
|
|
1270
|
+
"--teal-100": "color",
|
|
1271
|
+
"--teal-200": "color",
|
|
1272
|
+
"--teal-300": "color",
|
|
1273
|
+
"--teal-400": "color",
|
|
1274
|
+
"--teal-500": "color",
|
|
1275
|
+
"--teal-600": "color",
|
|
1276
|
+
"--teal-700": "color",
|
|
1277
|
+
"--teal-800": "color",
|
|
1278
|
+
"--teal-900": "color",
|
|
1279
|
+
"--teal-950": "color",
|
|
1280
|
+
"--cyan-50": "color",
|
|
1281
|
+
"--cyan-100": "color",
|
|
1282
|
+
"--cyan-200": "color",
|
|
1283
|
+
"--cyan-300": "color",
|
|
1284
|
+
"--cyan-400": "color",
|
|
1285
|
+
"--cyan-500": "color",
|
|
1286
|
+
"--cyan-600": "color",
|
|
1287
|
+
"--cyan-700": "color",
|
|
1288
|
+
"--cyan-800": "color",
|
|
1289
|
+
"--cyan-900": "color",
|
|
1290
|
+
"--cyan-950": "color",
|
|
1291
|
+
"--purple-50": "color",
|
|
1292
|
+
"--purple-100": "color",
|
|
1293
|
+
"--purple-200": "color",
|
|
1294
|
+
"--purple-300": "color",
|
|
1295
|
+
"--purple-400": "color",
|
|
1296
|
+
"--purple-600": "color",
|
|
1297
|
+
"--purple-700": "color",
|
|
1298
|
+
"--purple-800": "color",
|
|
1299
|
+
"--purple-900": "color",
|
|
1300
|
+
"--purple-950": "color",
|
|
1301
|
+
"--pink-50": "color",
|
|
1302
|
+
"--pink-100": "color",
|
|
1303
|
+
"--pink-200": "color",
|
|
1304
|
+
"--pink-300": "color",
|
|
1305
|
+
"--pink-400": "color",
|
|
1306
|
+
"--pink-500": "color",
|
|
1307
|
+
"--pink-600": "color",
|
|
1308
|
+
"--pink-700": "color",
|
|
1309
|
+
"--pink-800": "color",
|
|
1310
|
+
"--pink-900": "color",
|
|
1311
|
+
"--pink-950": "color",
|
|
1312
|
+
"--hue-gray-bg": "color",
|
|
1313
|
+
"--hue-gray-fg": "color",
|
|
1314
|
+
"--hue-blue-bg": "color",
|
|
1315
|
+
"--hue-blue-fg": "color",
|
|
1316
|
+
"--hue-green-bg": "color",
|
|
1317
|
+
"--hue-green-fg": "color",
|
|
1318
|
+
"--hue-orange-bg": "color",
|
|
1319
|
+
"--hue-orange-fg": "color",
|
|
1320
|
+
"--hue-amber-bg": "color",
|
|
1321
|
+
"--hue-amber-fg": "color",
|
|
1322
|
+
"--hue-teal-bg": "color",
|
|
1323
|
+
"--hue-teal-fg": "color",
|
|
1324
|
+
"--hue-cyan-bg": "color",
|
|
1325
|
+
"--hue-cyan-fg": "color",
|
|
1326
|
+
"--hue-purple-bg": "color",
|
|
1327
|
+
"--hue-purple-fg": "color",
|
|
1328
|
+
"--hue-pink-bg": "color",
|
|
1329
|
+
"--hue-pink-fg": "color",
|
|
1330
|
+
"--hue-red-bg": "color",
|
|
1331
|
+
"--hue-red-fg": "color",
|
|
1332
|
+
"--neutral-alpha-2": "color",
|
|
1333
|
+
"--neutral-alpha-4": "color",
|
|
1334
|
+
"--neutral-alpha-8": "color",
|
|
1335
|
+
"--neutral-alpha-12": "color",
|
|
1336
|
+
"--neutral-alpha-16": "color",
|
|
1337
|
+
"--neutral-alpha-24": "color",
|
|
1338
|
+
"--neutral-alpha-32": "color",
|
|
1339
|
+
"--neutral-alpha-48": "color",
|
|
1340
|
+
"--neutral-alpha-64": "color",
|
|
1341
|
+
"--neutral-alpha-80": "color",
|
|
1342
|
+
"--brand-alpha-8": "color",
|
|
1343
|
+
"--brand-alpha-12": "color",
|
|
1344
|
+
"--brand-alpha-16": "color",
|
|
1345
|
+
"--brand-alpha-24": "color",
|
|
1346
|
+
"--brand-alpha-32": "color",
|
|
1347
|
+
"--overlay-hover": "color",
|
|
1348
|
+
"--overlay-press": "color",
|
|
1349
|
+
"--overlay-selected": "color",
|
|
1350
|
+
"--overlay-drag": "color",
|
|
1351
|
+
"--font-sans": "font",
|
|
1352
|
+
"--font-mono": "font",
|
|
1353
|
+
"--text-2xs": "font",
|
|
1354
|
+
"--leading-2xs": "font",
|
|
1355
|
+
"--tracking-2xs": "font",
|
|
1356
|
+
"--text-xs": "font",
|
|
1357
|
+
"--leading-xs": "font",
|
|
1358
|
+
"--tracking-xs": "font",
|
|
1359
|
+
"--text-sm": "font",
|
|
1360
|
+
"--leading-sm": "font",
|
|
1361
|
+
"--tracking-sm": "font",
|
|
1362
|
+
"--text-base": "font",
|
|
1363
|
+
"--leading-base": "font",
|
|
1364
|
+
"--tracking-base": "font",
|
|
1365
|
+
"--text-md": "font",
|
|
1366
|
+
"--leading-md": "font",
|
|
1367
|
+
"--tracking-md": "font",
|
|
1368
|
+
"--text-lg": "font",
|
|
1369
|
+
"--leading-lg": "font",
|
|
1370
|
+
"--tracking-lg": "font",
|
|
1371
|
+
"--text-xl": "font",
|
|
1372
|
+
"--leading-xl": "font",
|
|
1373
|
+
"--tracking-xl": "font",
|
|
1374
|
+
"--text-num": "font",
|
|
1375
|
+
"--leading-num": "font",
|
|
1376
|
+
"--tracking-num": "font",
|
|
1377
|
+
"--text-2xl": "font",
|
|
1378
|
+
"--leading-2xl": "font",
|
|
1379
|
+
"--tracking-2xl": "font",
|
|
1380
|
+
"--text-3xl": "font",
|
|
1381
|
+
"--leading-3xl": "font",
|
|
1382
|
+
"--tracking-3xl": "font",
|
|
1383
|
+
"--text-4xl": "font",
|
|
1384
|
+
"--leading-4xl": "font",
|
|
1385
|
+
"--tracking-4xl": "font",
|
|
1386
|
+
"--text-display": "font",
|
|
1387
|
+
"--leading-display": "font",
|
|
1388
|
+
"--tracking-display": "font",
|
|
1389
|
+
"--weight-light": "font",
|
|
1390
|
+
"--weight-regular": "font",
|
|
1391
|
+
"--weight-medium": "font",
|
|
1392
|
+
"--weight-semibold": "font",
|
|
1393
|
+
"--radius-sm": "radius",
|
|
1394
|
+
"--radius-md": "radius",
|
|
1395
|
+
"--radius-lg": "radius",
|
|
1396
|
+
"--radius-tile": "radius",
|
|
1397
|
+
"--radius-node": "radius",
|
|
1398
|
+
"--radius-full": "radius",
|
|
1399
|
+
"--shadow-node": "shadow",
|
|
1400
|
+
"--shadow-selected": "shadow",
|
|
1401
|
+
"--shadow-menu": "shadow",
|
|
1402
|
+
"--shadow-modal": "shadow",
|
|
1403
|
+
"--ring-surface": "color",
|
|
1404
|
+
"--ring-focus": "color",
|
|
1405
|
+
"--sidebar-w": "spacing",
|
|
1406
|
+
"--rail-w": "spacing",
|
|
1407
|
+
"--topbar-h": "spacing",
|
|
1408
|
+
"--panel-w": "spacing",
|
|
1409
|
+
"--drawer-h": "spacing",
|
|
1410
|
+
"--h-button": "spacing",
|
|
1411
|
+
"--h-button-sm": "spacing",
|
|
1412
|
+
"--h-input": "spacing",
|
|
1413
|
+
"--h-nav-item": "spacing",
|
|
1414
|
+
"--h-subnav-item": "spacing",
|
|
1415
|
+
"--h-tree-item": "spacing",
|
|
1416
|
+
"--page-pad-y": "spacing",
|
|
1417
|
+
"--page-pad-x": "spacing",
|
|
1418
|
+
"--section-gap": "spacing",
|
|
1419
|
+
"--card-pad": "spacing",
|
|
1420
|
+
"--card-pad-sm": "spacing",
|
|
1421
|
+
"--z-sticky": "other",
|
|
1422
|
+
"--z-drawer": "other",
|
|
1423
|
+
"--z-menu": "other",
|
|
1424
|
+
"--z-modal": "other",
|
|
1425
|
+
"--z-toast": "other",
|
|
1426
|
+
"--z-tooltip": "other",
|
|
1427
|
+
"--dur-instant": "other",
|
|
1428
|
+
"--dur-fast": "other",
|
|
1429
|
+
"--dur": "other",
|
|
1430
|
+
"--dur-slow": "other",
|
|
1431
|
+
"--dur-slower": "other",
|
|
1432
|
+
"--ease-out": "other",
|
|
1433
|
+
"--ease-in-out": "other",
|
|
1434
|
+
"--ease-in": "other",
|
|
1435
|
+
"--t-hover": "other",
|
|
1436
|
+
"--t-theme": "other",
|
|
1437
|
+
"--series-1": "color",
|
|
1438
|
+
"--series-2": "color",
|
|
1439
|
+
"--series-3": "color",
|
|
1440
|
+
"--series-4": "color",
|
|
1441
|
+
"--series-5": "color",
|
|
1442
|
+
"--series-6": "color",
|
|
1443
|
+
"--series-7": "color",
|
|
1444
|
+
"--series-8": "color",
|
|
1445
|
+
"--series-9": "color",
|
|
1446
|
+
"--series-10": "color",
|
|
1447
|
+
"--chart-grid": "color",
|
|
1448
|
+
"--chart-axis": "color",
|
|
1449
|
+
"--chart-label": "color",
|
|
1450
|
+
"--chart-pos": "color",
|
|
1451
|
+
"--chart-neg": "color",
|
|
1452
|
+
"--chart-total": "color",
|
|
1453
|
+
"--chart-track": "color",
|
|
1454
|
+
"--chart-guide": "color",
|
|
1455
|
+
"--chart-area-alpha": "other",
|
|
1456
|
+
"--chart-heat-1": "color",
|
|
1457
|
+
"--chart-heat-2": "color",
|
|
1458
|
+
"--chart-heat-3": "color",
|
|
1459
|
+
"--chart-heat-4": "color",
|
|
1460
|
+
"--chart-heat-5": "color",
|
|
1461
|
+
"--chart-heat-ink": "color",
|
|
1462
|
+
"--press-filter": "other",
|
|
1463
|
+
"--press-filter-strong": "other"
|
|
1464
|
+
},
|
|
1465
|
+
"fontFamilies": [
|
|
1466
|
+
"Inter"
|
|
1467
|
+
]
|
|
1468
|
+
}
|
|
1469
|
+
}
|