@spaced-out/genesis-mcp 1.0.34 → 1.0.36
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 +6 -6
- package/package.json +1 -1
package/data/design-system.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"metadata": {
|
|
3
|
-
"buildDate": "2026-06-
|
|
4
|
-
"version": "0.6.
|
|
3
|
+
"buildDate": "2026-06-25T03:40:25.083Z",
|
|
4
|
+
"version": "0.6.23",
|
|
5
5
|
"designSystemPath": "/home/runner/work/ui-design-system/ui-design-system"
|
|
6
6
|
},
|
|
7
7
|
"components": {
|
|
@@ -474,7 +474,7 @@
|
|
|
474
474
|
},
|
|
475
475
|
"StackedBarChart/StackedBarChart.d.ts": {
|
|
476
476
|
"path": "StackedBarChart/StackedBarChart.d.ts",
|
|
477
|
-
"content": "import * as React from 'react';\nimport type { SeriesColumnOptions } 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 StackedBarSeries = Omit<SeriesColumnOptions, 'data' | 'type'> & {\n name: string;\n data: DataOptionsType[];\n};\nexport interface StackedBarChartProps extends Omit<ChartOptions, 'series' | 'isLoading' | 'drilldown' | 'cardTitle' | 'emptyText' | 'classNames' | 'hasEmptyData' | 'headerActions' | 'customExportOptions'> {\n series: Array<StackedBarSeries>;\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 StackedBarChart: ({ series, isLoading, drilldown, emptyText, cardTitle, classNames, hasEmptyData, headerActions, customExportOptions, testId, ...userOptions }: StackedBarChartProps) => React.ReactNode;\nexport {};\n//# sourceMappingURL=StackedBarChart.d.ts.map"
|
|
477
|
+
"content": "import * as React from 'react';\nimport type { SeriesColumnOptions } from 'highcharts';\nimport type { ChartOptions, DataOptionsType, Drilldown } from '../../../types/charts';\nimport type { StackedBarOrientation } from '../../../utils/charts';\nimport type { ChartWrapperClassNames, ExportOptionType } from '../../../components/Charts/ChartWrapper';\ntype ClassNames = Readonly<ChartWrapperClassNames & {\n highChart?: string;\n}>;\nexport type StackedBarSeries = Omit<SeriesColumnOptions, 'data' | 'type'> & {\n name: string;\n data: DataOptionsType[];\n};\nexport interface StackedBarChartProps extends Omit<ChartOptions, 'series' | 'isLoading' | 'drilldown' | 'cardTitle' | 'emptyText' | 'classNames' | 'hasEmptyData' | 'headerActions' | 'customExportOptions'> {\n series: Array<StackedBarSeries>;\n /**\n * Orientation of the stacked bars. Defaults to `horizontal`.\n * Pass `vertical` to render columns with categories on the x-axis.\n */\n orientation?: StackedBarOrientation;\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 StackedBarChart: ({ series, orientation, isLoading, drilldown, emptyText, cardTitle, classNames, hasEmptyData, headerActions, customExportOptions, testId, ...userOptions }: StackedBarChartProps) => React.ReactNode;\nexport {};\n//# sourceMappingURL=StackedBarChart.d.ts.map"
|
|
478
478
|
},
|
|
479
479
|
"StackedBarChart/index.d.ts": {
|
|
480
480
|
"path": "StackedBarChart/index.d.ts",
|
|
@@ -2376,7 +2376,7 @@
|
|
|
2376
2376
|
},
|
|
2377
2377
|
"css": {
|
|
2378
2378
|
"path": "Stepper.module.css",
|
|
2379
|
-
"content": "@value (\n colorFillPrimary,\n colorFillSecondary,\n
|
|
2379
|
+
"content": "@value (\n colorFillPrimary,\n colorFillSecondary,\n colorButtonFillPrimaryEnabled,\n colorFillDisabled,\n colorTextSecondary,\n colorTextPrimary,\n colorTextClickable,\n colorTextDisabled,\n colorTextInversePrimary,\n colorBorderSecondary\n) from '../../styles/variables/_color.css';\n@value (\n size12,\n size24,\n sizeFluid\n) from '../../styles/variables/_size.css';\n@value (\n spaceNone,\n spaceLarge,\n spaceMedium,\n spaceSmall,\n spaceXXSmall\n) from '../../styles/variables/_space.css';\n@value (\n borderWidthPrimary,\n borderRadiusCircle\n) from '../../styles/variables/_border.css';\n\n.stepperWrapper {\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n gap: spaceXXSmall;\n}\n\n.stepperWrapper.vertical {\n flex-direction: column;\n gap: spaceNone;\n justify-content: initial;\n}\n\n.stepWrapper {\n position: relative;\n display: flex;\n align-items: flex-start;\n gap: spaceSmall;\n width: sizeFluid;\n}\n\n.stepWrapperCounter {\n display: flex;\n composes: motionEaseInEaseOut from '../../styles/animation.module.css';\n composes: subTitleExtraSmall from '../../styles/typography.module.css';\n height: size24;\n width: size24;\n min-height: size24;\n min-width: size24;\n justify-content: center;\n align-items: center;\n border-radius: borderRadiusCircle;\n background-color: transparent;\n border: borderWidthPrimary solid colorBorderSecondary;\n color: colorTextSecondary;\n}\n\n.stepWrapperCounter.completed {\n background-color: colorFillPrimary;\n border: borderWidthPrimary solid transparent;\n color: colorTextInversePrimary;\n}\n\n.stepWrapperCounter.selected {\n background-color: colorFillSecondary;\n border: borderWidthPrimary solid transparent;\n color: colorTextClickable;\n}\n\n.stepWrapperCounter.completed.selected:not(.disabled) {\n background-color: colorButtonFillPrimaryEnabled;\n border: borderWidthPrimary solid transparent;\n color: colorTextInversePrimary;\n}\n\n.stepWrapperCounter.disabled {\n background-color: colorFillDisabled;\n border: borderWidthPrimary solid transparent;\n color: colorTextDisabled;\n}\n\n.stepIcon {\n color: inherit;\n}\n\n.stepContent {\n display: flex;\n flex-flow: column;\n gap: spaceXXSmall;\n margin-top: spaceXXSmall;\n}\n\n.stepLabelWrapper {\n composes: subTitleSmall from '../../styles/typography.module.css';\n color: colorTextSecondary;\n}\n\n.stepLabelWrapper.active {\n color: colorTextPrimary;\n}\n\n.stepLabelWrapper.disabled {\n color: colorTextDisabled;\n}\n\n.stepContentWrapper {\n composes: bodySmall from '../../styles/typography.module.css';\n color: colorTextSecondary;\n}\n\n.stepContentWrapper.disabled {\n color: colorTextDisabled;\n}\n\n.clickable {\n cursor: pointer;\n}\n\n.stepCounterColumn {\n display: flex;\n flex-direction: column;\n align-items: center;\n gap: spaceXXSmall;\n}\n\n.connector {\n pointer-events: none;\n}\n\n.stepperWrapper.vertical .stepCounterColumn {\n align-self: stretch;\n}\n\n.stepperWrapper.vertical .connector {\n flex: 1;\n width: calc(size2 / 2);\n}\n\n.stepperWrapper.vertical .stepWrapper:not(:last-child) .stepContent {\n padding-bottom: spaceMedium;\n}\n\n.stepperWrapper:not(.vertical) .connector {\n flex: 1;\n align-self: flex-start;\n margin-top: size12;\n min-width: spaceLarge;\n}\n"
|
|
2380
2380
|
},
|
|
2381
2381
|
"index": {
|
|
2382
2382
|
"path": "index.d.ts",
|
|
@@ -2385,7 +2385,7 @@
|
|
|
2385
2385
|
"additional": {
|
|
2386
2386
|
"Step/Step.d.ts": {
|
|
2387
2387
|
"path": "Step/Step.d.ts",
|
|
2388
|
-
"content": "import * as React from 'react';\nimport type { Flow } from 'flow-to-typescript-codemod';\nimport type { IconType } from '../../../components/Icon';\ntype ClassNames = Readonly<{\n wrapper?: string;\n stepCounter?: string;\n content?: string;\n}>;\nexport interface StepProps {\n active?: boolean;\n children: React.ReactNode;\n completed?: boolean;\n disabled?: boolean;\n expanded?: boolean;\n index: number;\n last?: boolean;\n classNames?: ClassNames;\n allowClick?: boolean;\n onClick?: (idx: number, e?: React.SyntheticEvent<HTMLElement> | null | undefined) => unknown;\n iconName?: string;\n iconType?: IconType;\n testId?: string;\n}\nexport declare const Step: Flow.AbstractComponent<StepProps, HTMLDivElement>;\nexport {};\n//# sourceMappingURL=Step.d.ts.map"
|
|
2388
|
+
"content": "import * as React from 'react';\nimport type { Flow } from 'flow-to-typescript-codemod';\nimport type { IconType } from '../../../components/Icon';\ntype ClassNames = Readonly<{\n wrapper?: string;\n stepCounter?: string;\n content?: string;\n}>;\nexport interface StepProps {\n active?: boolean;\n children: React.ReactNode;\n completed?: boolean;\n disabled?: boolean;\n expanded?: boolean;\n index: number;\n last?: boolean;\n classNames?: ClassNames;\n allowClick?: boolean;\n onClick?: (idx: number, e?: React.SyntheticEvent<HTMLElement> | null | undefined) => unknown;\n iconName?: string;\n iconType?: IconType;\n orientation?: 'horizontal' | 'vertical';\n testId?: string;\n}\nexport declare const Step: Flow.AbstractComponent<StepProps, HTMLDivElement>;\nexport {};\n//# sourceMappingURL=Step.d.ts.map"
|
|
2389
2389
|
},
|
|
2390
2390
|
"Step/StepContent.d.ts": {
|
|
2391
2391
|
"path": "Step/StepContent.d.ts",
|
|
@@ -5047,7 +5047,7 @@
|
|
|
5047
5047
|
},
|
|
5048
5048
|
"stackedBarChart.d.ts": {
|
|
5049
5049
|
"path": "stackedBarChart.d.ts",
|
|
5050
|
-
"content": "import type { ChartOptions } from '../../types/charts';\nexport declare const getStackedBarChartOptions: () => ChartOptions;\n//# sourceMappingURL=stackedBarChart.d.ts.map"
|
|
5050
|
+
"content": "import type { ChartOptions } from '../../types/charts';\n/**\n * Orientation of the stacked bars.\n * - `horizontal` (default): bars run left-to-right; categories on the vertical\n * axis. Backed by Highcharts `chart.type: 'bar'` (an inverted chart).\n * - `vertical`: bars run bottom-to-top; categories on the horizontal x-axis.\n * Backed by Highcharts `chart.type: 'column'`.\n */\nexport type StackedBarOrientation = 'horizontal' | 'vertical';\nexport declare const getStackedBarChartOptions: (orientation?: StackedBarOrientation) => ChartOptions;\n//# sourceMappingURL=stackedBarChart.d.ts.map"
|
|
5051
5051
|
},
|
|
5052
5052
|
"stackedBarLineChart.d.ts": {
|
|
5053
5053
|
"path": "stackedBarLineChart.d.ts",
|
package/package.json
CHANGED