@operato/styles
Advanced tools
Comparing version 7.0.0-rc.10 to 7.0.0-rc.13
@@ -6,2 +6,11 @@ # Change Log | ||
## [7.0.0-rc.13](https://github.com/hatiolab/operato/compare/v7.0.0-rc.12...v7.0.0-rc.13) (2024-06-30) | ||
### :bug: Bug Fix | ||
* storybook preview.js ([8215c06](https://github.com/hatiolab/operato/commit/8215c06a293ecaa2df2f0b314ee5b9ff252a1434)) | ||
## [7.0.0-rc.10](https://github.com/hatiolab/operato/compare/v7.0.0-rc.9...v7.0.0-rc.10) (2024-06-29) | ||
@@ -8,0 +17,0 @@ |
@@ -6,8 +6,3 @@ import '@material/web/icon/icon.js'; | ||
component: string; | ||
argTypes: { | ||
theme: { | ||
control: string; | ||
options: string[]; | ||
}; | ||
}; | ||
argTypes: {}; | ||
}; | ||
@@ -21,4 +16,3 @@ export default _default; | ||
interface ArgTypes { | ||
theme?: 'light' | 'dark'; | ||
} | ||
export declare const Regular: Story<ArgTypes>; |
@@ -8,7 +8,5 @@ import '@material/web/icon/icon.js'; | ||
component: 'div', | ||
argTypes: { | ||
theme: { control: 'select', options: ['light', 'dark'] } | ||
} | ||
argTypes: {} | ||
}; | ||
const Template = ({ theme = 'light' }) => html ` | ||
const Template = ({}) => html ` | ||
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet" /> | ||
@@ -33,6 +31,2 @@ | ||
<script> | ||
document.body.classList.add('${theme}') | ||
</script> | ||
<style> | ||
@@ -39,0 +33,0 @@ body { |
@@ -11,6 +11,2 @@ import '@material/web/icon/icon.js'; | ||
}; | ||
theme: { | ||
control: string; | ||
options: string[]; | ||
}; | ||
}; | ||
@@ -26,4 +22,3 @@ }; | ||
label?: string; | ||
theme?: 'light' | 'dark'; | ||
} | ||
export declare const Regular: Story<ArgTypes>; |
@@ -10,7 +10,6 @@ import '@material/web/icon/icon.js'; | ||
argTypes: { | ||
label: { control: 'string' }, | ||
theme: { control: 'select', options: ['light', 'dark'] } | ||
label: { control: 'string' } | ||
} | ||
}; | ||
const Template = ({ label = '', theme = 'light' }) => html ` | ||
const Template = ({ label = '' }) => html ` | ||
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet" /> | ||
@@ -35,6 +34,2 @@ | ||
<script> | ||
document.body.classList.add('${theme}') | ||
</script> | ||
<style> | ||
@@ -99,3 +94,2 @@ body { | ||
}} | ||
} | ||
> | ||
@@ -102,0 +96,0 @@ </ox-context-page-toolbar> |
@@ -10,6 +10,2 @@ import '@material/web/icon/icon.js'; | ||
}; | ||
theme: { | ||
control: string; | ||
options: string[]; | ||
}; | ||
}; | ||
@@ -25,4 +21,3 @@ }; | ||
label?: string; | ||
theme?: 'light' | 'dark'; | ||
} | ||
export declare const Regular: Story<ArgTypes>; |
@@ -9,7 +9,6 @@ import '@material/web/icon/icon.js'; | ||
argTypes: { | ||
label: { control: 'string' }, | ||
theme: { control: 'select', options: ['light', 'dark'] } | ||
label: { control: 'string' } | ||
} | ||
}; | ||
const Template = ({ label = '', theme = 'light' }) => html ` | ||
const Template = ({ label = '' }) => html ` | ||
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet" /> | ||
@@ -34,6 +33,2 @@ | ||
<script> | ||
document.body.classList.add('${theme}') | ||
</script> | ||
<style> | ||
@@ -40,0 +35,0 @@ body { |
@@ -5,3 +5,3 @@ { | ||
"author": "heartyoh", | ||
"version": "7.0.0-rc.10", | ||
"version": "7.0.0-rc.13", | ||
"main": "dist/src/index.js", | ||
@@ -56,3 +56,3 @@ "module": "dist/src/index.js", | ||
"prettier": "@hatiolab/prettier-config", | ||
"gitHead": "96efe00ae617394f5a4fee901be5e20323ff7e57" | ||
"gitHead": "30bb1e680f2d6b042ec75c5a29266b24d3067da5" | ||
} |
@@ -10,5 +10,3 @@ import '@material/web/icon/icon.js' | ||
component: 'div', | ||
argTypes: { | ||
theme: { control: 'select', options: ['light', 'dark'] } | ||
} | ||
argTypes: {} | ||
} | ||
@@ -22,7 +20,5 @@ | ||
interface ArgTypes { | ||
theme?: 'light' | 'dark' | ||
} | ||
interface ArgTypes {} | ||
const Template: Story<ArgTypes> = ({ theme = 'light' }: ArgTypes) => html` | ||
const Template: Story<ArgTypes> = ({}: ArgTypes) => html` | ||
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet" /> | ||
@@ -47,6 +43,2 @@ | ||
<script> | ||
document.body.classList.add('${theme}') | ||
</script> | ||
<style> | ||
@@ -53,0 +45,0 @@ body { |
@@ -13,4 +13,3 @@ import '@material/web/icon/icon.js' | ||
argTypes: { | ||
label: { control: 'string' }, | ||
theme: { control: 'select', options: ['light', 'dark'] } | ||
label: { control: 'string' } | ||
} | ||
@@ -27,6 +26,5 @@ } | ||
label?: string | ||
theme?: 'light' | 'dark' | ||
} | ||
const Template: Story<ArgTypes> = ({ label = '', theme = 'light' }: ArgTypes) => html` | ||
const Template: Story<ArgTypes> = ({ label = '' }: ArgTypes) => html` | ||
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet" /> | ||
@@ -51,6 +49,2 @@ | ||
<script> | ||
document.body.classList.add('${theme}') | ||
</script> | ||
<style> | ||
@@ -115,3 +109,2 @@ body { | ||
}} | ||
} | ||
> | ||
@@ -118,0 +111,0 @@ </ox-context-page-toolbar> |
@@ -11,4 +11,3 @@ import '@material/web/icon/icon.js' | ||
argTypes: { | ||
label: { control: 'string' }, | ||
theme: { control: 'select', options: ['light', 'dark'] } | ||
label: { control: 'string' } | ||
} | ||
@@ -25,6 +24,5 @@ } | ||
label?: string | ||
theme?: 'light' | 'dark' | ||
} | ||
const Template: Story<ArgTypes> = ({ label = '', theme = 'light' }: ArgTypes) => html` | ||
const Template: Story<ArgTypes> = ({ label = '' }: ArgTypes) => html` | ||
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet" /> | ||
@@ -49,6 +47,2 @@ | ||
<script> | ||
document.body.classList.add('${theme}') | ||
</script> | ||
<style> | ||
@@ -55,0 +49,0 @@ body { |
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
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
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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
69
234277
3367