@ljcl/storybook-addon-cssprops
Version:
Interact with css custom properties dynamically in the Storybook UI
26 lines (25 loc) • 1.35 kB
JavaScript
var __rest = (this && this.__rest) || function (s, e) {
var t = {};
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
t[p] = s[p];
if (s != null && typeof Object.getOwnPropertySymbols === "function")
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
t[p[i]] = s[p[i]];
}
return t;
};
import * as React from "react";
import { CssPropsTable } from "./CssPropsTable/CssPropsTable";
import { NoCustomPropertiesWarning } from "./NoCustomPropertiesWarning";
import { useParameter } from "@storybook/manager-api";
import { PARAM_KEY } from "../constants";
export var CssPropsPanel = function (_a) {
var storyId = _a.storyId;
var cssprops = useParameter(PARAM_KEY, {});
var presetColors = cssprops.presetColors, disable = cssprops.disable, customProperties = __rest(cssprops, ["presetColors", "disable"]);
var hasCustomProperties = Object.values(customProperties).length > 0;
if (!hasCustomProperties)
return React.createElement(NoCustomPropertiesWarning, null);
return (React.createElement(CssPropsTable, { presetColors: presetColors, customProperties: customProperties, storyId: storyId, inAddonPanel: true }));
};