@spaced-out/genesis-mcp 1.0.33 → 1.0.35
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/data/design-system.json +24 -6
- package/package.json +1 -1
package/data/design-system.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"metadata": {
|
|
3
|
-
"buildDate": "2026-
|
|
4
|
-
"version": "0.6.
|
|
3
|
+
"buildDate": "2026-06-08T11:18:10.396Z",
|
|
4
|
+
"version": "0.6.22",
|
|
5
5
|
"designSystemPath": "/home/runner/work/ui-design-system/ui-design-system"
|
|
6
6
|
},
|
|
7
7
|
"components": {
|
|
@@ -409,7 +409,7 @@
|
|
|
409
409
|
"css": null,
|
|
410
410
|
"index": {
|
|
411
411
|
"path": "index.d.ts",
|
|
412
|
-
"content": "export * from '../../components/Charts/ChartTooltip';\nexport * from '../../components/Charts/ChartWrapper';\nexport * from '../../components/Charts/ColumnChart';\nexport * from '../../components/Charts/DonutChart';\nexport * from '../../components/Charts/FunnelChart';\nexport * from '../../components/Charts/LineChart';\nexport * from '../../components/Charts/SankeyChart';\nexport * from '../../components/Charts/SpiderChart';\nexport * from '../../components/Charts/StackedBarChart';\nexport * from '../../components/Charts/UniversalChart';\n//# sourceMappingURL=index.d.ts.map"
|
|
412
|
+
"content": "export * from '../../components/Charts/ChartTooltip';\nexport * from '../../components/Charts/ChartWrapper';\nexport * from '../../components/Charts/ColumnChart';\nexport * from '../../components/Charts/DonutChart';\nexport * from '../../components/Charts/FunnelChart';\nexport * from '../../components/Charts/LineChart';\nexport * from '../../components/Charts/SankeyChart';\nexport * from '../../components/Charts/SpiderChart';\nexport * from '../../components/Charts/StackedBarChart';\nexport * from '../../components/Charts/StackedBarLineChart';\nexport * from '../../components/Charts/UniversalChart';\n//# sourceMappingURL=index.d.ts.map"
|
|
413
413
|
},
|
|
414
414
|
"additional": {
|
|
415
415
|
"ChartTooltip/index.d.ts": {
|
|
@@ -480,13 +480,21 @@
|
|
|
480
480
|
"path": "StackedBarChart/index.d.ts",
|
|
481
481
|
"content": "export * from '../../../components/Charts/StackedBarChart/StackedBarChart';\n//# sourceMappingURL=index.d.ts.map"
|
|
482
482
|
},
|
|
483
|
+
"StackedBarLineChart/StackedBarLineChart.d.ts": {
|
|
484
|
+
"path": "StackedBarLineChart/StackedBarLineChart.d.ts",
|
|
485
|
+
"content": "import * as React from 'react';\nimport type { SeriesColumnOptions, SeriesLineOptions } from 'highcharts';\nimport type { ChartOptions, DataOptionsType, Drilldown } from '../../../types/charts';\nimport type { ChartWrapperClassNames, ExportOptionType } from '../../../components/Charts/ChartWrapper';\ntype ClassNames = Readonly<ChartWrapperClassNames & {\n highChart?: string;\n}>;\nexport type StackedBarLineColumnSeries = Omit<SeriesColumnOptions, 'data' | 'type'> & {\n type: 'column';\n name: string;\n data: DataOptionsType[];\n};\nexport type StackedBarLineLineSeries = Omit<SeriesLineOptions, 'data' | 'type'> & {\n type: 'line';\n name: string;\n data: DataOptionsType[];\n};\nexport type StackedBarLineSeries = StackedBarLineColumnSeries | StackedBarLineLineSeries;\n/**\n * Combo chart: stacked columns + overlaid line(s) on a single shared y-axis.\n *\n * Use when the columns and line(s) share the same units (e.g., a stacked\n * breakdown of revenue plus a target-revenue line, both in dollars). Pass\n * `yAxis` as a single options object; the chart renders the axis labels on\n * both the left and the right edges of the plot via a linked mirror, so\n * values are readable from either side.\n */\nexport interface StackedBarLineChartProps extends Omit<ChartOptions, 'series' | 'isLoading' | 'drilldown' | 'cardTitle' | 'emptyText' | 'classNames' | 'hasEmptyData' | 'headerActions' | 'customExportOptions'> {\n series: Array<StackedBarLineSeries>;\n isLoading?: boolean;\n drilldown?: Drilldown;\n cardTitle?: React.ReactNode;\n emptyText?: React.ReactNode;\n classNames?: ClassNames;\n hasEmptyData?: boolean;\n headerActions?: React.ReactNode;\n customExportOptions?: Array<ExportOptionType> | null;\n testId?: string;\n}\nexport declare const StackedBarLineChart: ({ series, isLoading, drilldown, emptyText, cardTitle, classNames, hasEmptyData, headerActions, customExportOptions, testId, ...userOptions }: StackedBarLineChartProps) => React.ReactNode;\nexport {};\n//# sourceMappingURL=StackedBarLineChart.d.ts.map"
|
|
486
|
+
},
|
|
487
|
+
"StackedBarLineChart/index.d.ts": {
|
|
488
|
+
"path": "StackedBarLineChart/index.d.ts",
|
|
489
|
+
"content": "export * from '../../../components/Charts/StackedBarLineChart/StackedBarLineChart';\n//# sourceMappingURL=index.d.ts.map"
|
|
490
|
+
},
|
|
483
491
|
"UniversalChart/UniversalChart.d.ts": {
|
|
484
492
|
"path": "UniversalChart/UniversalChart.d.ts",
|
|
485
|
-
"content": "import * as React from 'react';\nimport type { CategoricalChartKind, ChartKindOptionType, FlowChartKind, ProportionChartKind, UniversalChartProps } from '../../../components/Charts/UniversalChart/UniversalChart.types';\nexport declare const CHART_KIND_OPTIONS: Readonly<{\n column: ChartKindOptionType<\"column\">;\n line: ChartKindOptionType<\"line\">;\n donut: ChartKindOptionType<\"donut\">;\n funnel: ChartKindOptionType<\"funnel\">;\n sankey: ChartKindOptionType<\"sankey\">;\n spider: ChartKindOptionType<\"spider\">;\n stackedBar: ChartKindOptionType<\"stackedBar\">;\n}>;\nexport declare const CHART_KIND_GROUPS: Readonly<{\n CATEGORICAL: Array<ChartKindOptionType<CategoricalChartKind>>;\n PROPORTION: Array<ChartKindOptionType<ProportionChartKind>>;\n FLOW: Array<ChartKindOptionType<FlowChartKind>>;\n}>;\nexport type { UniversalChartProps, ChartKind, ChartKindOptionType, ChartKindSelectorProps, CategoricalChartKind, ProportionChartKind, FlowChartKind, } from '../../../components/Charts/UniversalChart/UniversalChart.types';\nexport declare const UniversalChart: {\n (props: UniversalChartProps): React.JSX.Element;\n displayName: string;\n};\n//# sourceMappingURL=UniversalChart.d.ts.map"
|
|
493
|
+
"content": "import * as React from 'react';\nimport type { CategoricalChartKind, ChartKindOptionType, ComboChartKind, FlowChartKind, ProportionChartKind, UniversalChartProps } from '../../../components/Charts/UniversalChart/UniversalChart.types';\nexport declare const CHART_KIND_OPTIONS: Readonly<{\n column: ChartKindOptionType<\"column\">;\n line: ChartKindOptionType<\"line\">;\n donut: ChartKindOptionType<\"donut\">;\n funnel: ChartKindOptionType<\"funnel\">;\n sankey: ChartKindOptionType<\"sankey\">;\n spider: ChartKindOptionType<\"spider\">;\n stackedBar: ChartKindOptionType<\"stackedBar\">;\n stackedBarLine: ChartKindOptionType<\"stackedBarLine\">;\n}>;\nexport declare const CHART_KIND_GROUPS: Readonly<{\n CATEGORICAL: Array<ChartKindOptionType<CategoricalChartKind>>;\n PROPORTION: Array<ChartKindOptionType<ProportionChartKind>>;\n FLOW: Array<ChartKindOptionType<FlowChartKind>>;\n COMBO: Array<ChartKindOptionType<ComboChartKind>>;\n}>;\nexport type { UniversalChartProps, ChartKind, ChartKindOptionType, ChartKindSelectorProps, CategoricalChartKind, ProportionChartKind, FlowChartKind, ComboChartKind, } from '../../../components/Charts/UniversalChart/UniversalChart.types';\nexport declare const UniversalChart: {\n (props: UniversalChartProps): React.JSX.Element;\n displayName: string;\n};\n//# sourceMappingURL=UniversalChart.d.ts.map"
|
|
486
494
|
},
|
|
487
495
|
"UniversalChart/UniversalChart.types.d.ts": {
|
|
488
496
|
"path": "UniversalChart/UniversalChart.types.d.ts",
|
|
489
|
-
"content": "import type { ColumnChartProps } from '../../../components/Charts/ColumnChart';\nimport type { DonutChartProps } from '../../../components/Charts/DonutChart';\nimport type { FunnelChartProps } from '../../../components/Charts/FunnelChart';\nimport type { LineChartProps } from '../../../components/Charts/LineChart';\nimport type { SankeyChartProps } from '../../../components/Charts/SankeyChart';\nimport type { SpiderChartProps } from '../../../components/Charts/SpiderChart';\nimport type { StackedBarChartProps } from '../../../components/Charts/StackedBarChart';\nexport type ChartKind = 'column' | 'line' | 'donut' | 'funnel' | 'sankey' | 'spider' | 'stackedBar';\nexport type CategoricalChartKind = 'column' | 'line' | 'stackedBar' | 'spider';\nexport type ProportionChartKind = 'donut' | 'funnel';\nexport type FlowChartKind = 'sankey';\nexport interface ChartKindOptionType<K extends ChartKind = ChartKind> {\n key: K;\n label: string;\n}\nexport interface ChartKindSelectorProps {\n showChartKindSwitcher?: boolean;\n chartKindOptions?: Array<ChartKindOptionType<CategoricalChartKind>> | Array<ChartKindOptionType<ProportionChartKind>> | Array<ChartKindOptionType<FlowChartKind>>;\n onChartKindChange?: (chartKind: ChartKind) => void;\n responsive?: boolean;\n}\nexport type UniversalChartProps = (({\n chartKind: 'column';\n} & ColumnChartProps) | ({\n chartKind: 'line';\n} & LineChartProps) | ({\n chartKind: 'donut';\n} & DonutChartProps) | ({\n chartKind: 'funnel';\n} & FunnelChartProps) | ({\n chartKind: 'sankey';\n} & SankeyChartProps) | ({\n chartKind: 'spider';\n} & SpiderChartProps) | ({\n chartKind: 'stackedBar';\n} & StackedBarChartProps)) & ChartKindSelectorProps;\n//# sourceMappingURL=UniversalChart.types.d.ts.map"
|
|
497
|
+
"content": "import type { ColumnChartProps } from '../../../components/Charts/ColumnChart';\nimport type { DonutChartProps } from '../../../components/Charts/DonutChart';\nimport type { FunnelChartProps } from '../../../components/Charts/FunnelChart';\nimport type { LineChartProps } from '../../../components/Charts/LineChart';\nimport type { SankeyChartProps } from '../../../components/Charts/SankeyChart';\nimport type { SpiderChartProps } from '../../../components/Charts/SpiderChart';\nimport type { StackedBarChartProps } from '../../../components/Charts/StackedBarChart';\nimport type { StackedBarLineChartProps } from '../../../components/Charts/StackedBarLineChart';\nexport type ChartKind = 'column' | 'line' | 'donut' | 'funnel' | 'sankey' | 'spider' | 'stackedBar' | 'stackedBarLine';\nexport type CategoricalChartKind = 'column' | 'line' | 'stackedBar' | 'spider';\nexport type ProportionChartKind = 'donut' | 'funnel';\nexport type FlowChartKind = 'sankey';\nexport type ComboChartKind = 'stackedBarLine';\nexport interface ChartKindOptionType<K extends ChartKind = ChartKind> {\n key: K;\n label: string;\n}\nexport interface ChartKindSelectorProps {\n showChartKindSwitcher?: boolean;\n chartKindOptions?: Array<ChartKindOptionType<CategoricalChartKind>> | Array<ChartKindOptionType<ProportionChartKind>> | Array<ChartKindOptionType<FlowChartKind>> | Array<ChartKindOptionType<ComboChartKind>>;\n onChartKindChange?: (chartKind: ChartKind) => void;\n responsive?: boolean;\n}\nexport type UniversalChartProps = (({\n chartKind: 'column';\n} & ColumnChartProps) | ({\n chartKind: 'line';\n} & LineChartProps) | ({\n chartKind: 'donut';\n} & DonutChartProps) | ({\n chartKind: 'funnel';\n} & FunnelChartProps) | ({\n chartKind: 'sankey';\n} & SankeyChartProps) | ({\n chartKind: 'spider';\n} & SpiderChartProps) | ({\n chartKind: 'stackedBar';\n} & StackedBarChartProps) | ({\n chartKind: 'stackedBarLine';\n} & StackedBarLineChartProps)) & ChartKindSelectorProps;\n//# sourceMappingURL=UniversalChart.types.d.ts.map"
|
|
490
498
|
},
|
|
491
499
|
"UniversalChart/index.d.ts": {
|
|
492
500
|
"path": "UniversalChart/index.d.ts",
|
|
@@ -535,6 +543,11 @@
|
|
|
535
543
|
"StackedBarChart/StackedBarChart.stories.tsx",
|
|
536
544
|
"StackedBarChart/StackedBarChart.tsx",
|
|
537
545
|
"StackedBarChart/index.ts",
|
|
546
|
+
"StackedBarLineChart/StackedBarLineChart.module.css",
|
|
547
|
+
"StackedBarLineChart/StackedBarLineChart.stories.module.css",
|
|
548
|
+
"StackedBarLineChart/StackedBarLineChart.stories.tsx",
|
|
549
|
+
"StackedBarLineChart/StackedBarLineChart.tsx",
|
|
550
|
+
"StackedBarLineChart/index.ts",
|
|
538
551
|
"UniversalChart/UniversalChart.module.css",
|
|
539
552
|
"UniversalChart/UniversalChart.stories.module.css",
|
|
540
553
|
"UniversalChart/UniversalChart.stories.tsx",
|
|
@@ -5018,7 +5031,7 @@
|
|
|
5018
5031
|
},
|
|
5019
5032
|
"index.d.ts": {
|
|
5020
5033
|
"path": "index.d.ts",
|
|
5021
|
-
"content": "export * from '../../utils/charts/charts';\nexport * from '../../utils/charts/columnChart';\nexport * from '../../utils/charts/donutChart';\nexport * from '../../utils/charts/funnelChart';\nexport * from '../../utils/charts/helpers';\nexport * from '../../utils/charts/lineChart';\nexport * from '../../utils/charts/sankeyChart';\nexport * from '../../utils/charts/spiderChart';\nexport * from '../../utils/charts/stackedBarChart';\nexport * from '../../utils/charts/typography';\n//# sourceMappingURL=index.d.ts.map"
|
|
5034
|
+
"content": "export * from '../../utils/charts/charts';\nexport * from '../../utils/charts/columnChart';\nexport * from '../../utils/charts/donutChart';\nexport * from '../../utils/charts/funnelChart';\nexport * from '../../utils/charts/helpers';\nexport * from '../../utils/charts/lineChart';\nexport * from '../../utils/charts/sankeyChart';\nexport * from '../../utils/charts/spiderChart';\nexport * from '../../utils/charts/stackedBarChart';\nexport * from '../../utils/charts/stackedBarLineChart';\nexport * from '../../utils/charts/typography';\n//# sourceMappingURL=index.d.ts.map"
|
|
5022
5035
|
},
|
|
5023
5036
|
"lineChart.d.ts": {
|
|
5024
5037
|
"path": "lineChart.d.ts",
|
|
@@ -5036,6 +5049,10 @@
|
|
|
5036
5049
|
"path": "stackedBarChart.d.ts",
|
|
5037
5050
|
"content": "import type { ChartOptions } from '../../types/charts';\nexport declare const getStackedBarChartOptions: () => ChartOptions;\n//# sourceMappingURL=stackedBarChart.d.ts.map"
|
|
5038
5051
|
},
|
|
5052
|
+
"stackedBarLineChart.d.ts": {
|
|
5053
|
+
"path": "stackedBarLineChart.d.ts",
|
|
5054
|
+
"content": "import type { ChartOptions } from '../../types/charts';\nexport declare const getStackedBarLineChartOptions: () => ChartOptions;\n//# sourceMappingURL=stackedBarLineChart.d.ts.map"
|
|
5055
|
+
},
|
|
5039
5056
|
"typography.d.ts": {
|
|
5040
5057
|
"path": "typography.d.ts",
|
|
5041
5058
|
"content": "export declare const baseType: {\n readonly fontFamily: \"Centra No 2\";\n readonly fontStyle: \"normal\";\n readonly margin: 0;\n readonly color: \"#17172A\";\n readonly letterSpacing: \"0em\";\n readonly fontWeight: \"500\";\n readonly display: \"flex\";\n readonly alignItems: \"center\";\n};\nexport declare const bodySmall: {\n readonly fontSize: \"12px\";\n readonly fontWeight: \"400\";\n readonly letterSpacing: \"0.04em\";\n readonly fontFamily: \"Centra No 2\";\n readonly fontStyle: \"normal\";\n readonly margin: 0;\n readonly color: \"#17172A\";\n readonly display: \"flex\";\n readonly alignItems: \"center\";\n};\nexport declare const formLabelSmall: {\n readonly fontSize: \"12px\";\n readonly fontFamily: \"Centra No 2\";\n readonly fontStyle: \"normal\";\n readonly margin: 0;\n readonly color: \"#17172A\";\n readonly letterSpacing: \"0em\";\n readonly fontWeight: \"500\";\n readonly display: \"flex\";\n readonly alignItems: \"center\";\n};\nexport declare const buttonTextExtraSmall: {\n readonly fontSize: \"12px\";\n readonly letterSpacing: \"0.01em\";\n readonly fontFamily: \"Centra No 2\";\n readonly fontStyle: \"normal\";\n readonly margin: 0;\n readonly color: \"#17172A\";\n readonly fontWeight: \"500\";\n readonly display: \"flex\";\n readonly alignItems: \"center\";\n};\nexport declare const underline: {\n readonly textDecoration: \"underline\";\n};\nexport declare const subTitleExtraSmall: {\n readonly fontSize: \"12px\";\n readonly letterSpacing: \"0em\";\n readonly fontFamily: \"Centra No 2\";\n readonly fontStyle: \"normal\";\n readonly margin: 0;\n readonly color: \"#17172A\";\n readonly fontWeight: \"500\";\n readonly display: \"flex\";\n readonly alignItems: \"center\";\n};\n//# sourceMappingURL=typography.d.ts.map"
|
|
@@ -5052,6 +5069,7 @@
|
|
|
5052
5069
|
"sankeyChart.ts",
|
|
5053
5070
|
"spiderChart.ts",
|
|
5054
5071
|
"stackedBarChart.ts",
|
|
5072
|
+
"stackedBarLineChart.ts",
|
|
5055
5073
|
"typography.ts"
|
|
5056
5074
|
]
|
|
5057
5075
|
},
|
package/package.json
CHANGED