@operato/styles
Advanced tools
Comparing version 9.0.0-beta.37 to 9.0.0-beta.38
@@ -6,3 +6,11 @@ /** | ||
const ICON_PROPERTIES_GRADIENT_DIRECTION = new URL('../../icons/icon-properties-gradient-direction.png', import.meta.url).href; | ||
document.body.style.setProperty('--url-icon-properties-gradient-direction', `url(${ICON_PROPERTIES_GRADIENT_DIRECTION})`); | ||
function setGradientDirectionIcon() { | ||
document.body.style.setProperty('--url-icon-properties-gradient-direction', `url(${ICON_PROPERTIES_GRADIENT_DIRECTION})`); | ||
} | ||
if (document.readyState === 'loading') { | ||
document.addEventListener('DOMContentLoaded', setGradientDirectionIcon); | ||
} | ||
else { | ||
setGradientDirectionIcon(); | ||
} | ||
export const GradientDirectionStyles = css ` | ||
@@ -9,0 +17,0 @@ .gradient-direction { |
@@ -7,4 +7,12 @@ /** | ||
const ICON_PROPERTIES_ARROW_TYPE = new URL('../../icons/icon-properties-arrow-type.png', import.meta.url).href; | ||
document.body.style.setProperty('--url-icon-properties-line-type', `url(${ICON_PROPERTIES_LINE_TYPE})`); | ||
document.body.style.setProperty('--url-icon-properties-arrow-type', `url(${ICON_PROPERTIES_ARROW_TYPE})`); | ||
function setIconProperties() { | ||
document.body.style.setProperty('--url-icon-properties-line-type', `url(${ICON_PROPERTIES_LINE_TYPE})`); | ||
document.body.style.setProperty('--url-icon-properties-arrow-type', `url(${ICON_PROPERTIES_ARROW_TYPE})`); | ||
} | ||
if (document.readyState === 'loading') { | ||
document.addEventListener('DOMContentLoaded', setIconProperties); | ||
} | ||
else { | ||
setIconProperties(); | ||
} | ||
export const LineStyles = css ` | ||
@@ -11,0 +19,0 @@ .line-type { |
@@ -5,3 +5,3 @@ { | ||
"author": "heartyoh", | ||
"version": "9.0.0-beta.37", | ||
"version": "9.0.0-beta.38", | ||
"type": "module", | ||
@@ -113,3 +113,3 @@ "main": "dist/src/index.js", | ||
"prettier": "@hatiolab/prettier-config", | ||
"gitHead": "211abb6b1f1d2de4fa37c695fd6779650978efd9" | ||
"gitHead": "1aee9817426f6479e390723082309e65e433d79d" | ||
} |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
283447
2841