diff --git a/.storybook/utils.js b/.storybook/utils.js index 590f0f4208..2bde7e6be5 100644 --- a/.storybook/utils.js +++ b/.storybook/utils.js @@ -37,12 +37,11 @@ const listProperties = (obj) => print = true; } - // If printing is allowed, the value exists and is not null and is not a slot + // If printing is allowed, the value exists and is not null if ( print && typeof v !== "undefined" && - (v !== null && v !== "null") && - p !== "slot" + (v !== null && v !== "null") ) { string += p; // If the value is a boolean and is false, or the value is not a string true @@ -60,7 +59,7 @@ const listProperties = (obj) => } } } - return string.toLowerCase(); + return string; }) .join(" "); diff --git a/elements/pfe-accordion/src/pfe-accordion.scss b/elements/pfe-accordion/src/pfe-accordion.scss index 699e5206ac..57d0d939d2 100644 --- a/elements/pfe-accordion/src/pfe-accordion.scss +++ b/elements/pfe-accordion/src/pfe-accordion.scss @@ -7,7 +7,7 @@ $LOCAL: accordion; position: relative; overflow: hidden; margin: 0; - color: #{pfe-radio(color--text)}; + color: #{pfe-radio(color, text)}; } :host([on="dark"]) { diff --git a/elements/pfe-icon/demo/index.html b/elements/pfe-icon/demo/index.html index a021334bc1..25193b906c 100644 --- a/elements/pfe-icon/demo/index.html +++ b/elements/pfe-icon/demo/index.html @@ -2,22 +2,26 @@
- -