mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-03 05:04:51 +08:00
Merge pull request #18178 from apeltop/correct-typo
Fix typo examples & docs
This commit is contained in:
commit
de741e3e6b
@ -148,7 +148,7 @@ describe('parse', () => {
|
||||
});
|
||||
|
||||
it('support array', () => {
|
||||
const result = parse("['bottom-left', 'botton-center', 'bottom-right']");
|
||||
const result = parse("['bottom-left', 'bottom-center', 'bottom-right']");
|
||||
const inferredType = result.inferredType as InspectionArray;
|
||||
|
||||
expect(inferredType.type).toBe(InspectionType.ARRAY);
|
||||
|
@ -310,7 +310,7 @@ export default {
|
||||
plugins: [
|
||||
// Other plugins
|
||||
|
||||
// Configures the replace plugin to allow Grapqhl Queries to work properly
|
||||
// Configures the replace plugin to allow GraphQL Queries to work properly
|
||||
replace({
|
||||
'process.env.NODE_ENV': JSON.stringify('development'),
|
||||
}),
|
||||
|
@ -4,7 +4,7 @@ import { Story, Meta } from '@storybook/angular';
|
||||
@Component({
|
||||
selector: 'on-destroy',
|
||||
template: `Current time: {{ time }} <br />
|
||||
📝 The current time in console should no longer display after a change of stroy`,
|
||||
📝 The current time in console should no longer display after a change of story`,
|
||||
})
|
||||
class OnDestroyComponent implements OnInit, OnDestroy {
|
||||
time: string;
|
||||
|
@ -25,7 +25,7 @@ const errorMap = {
|
||||
password: {
|
||||
required: {
|
||||
normal: 'Please enter a password',
|
||||
tooltip: 'A password is requried to create an account',
|
||||
tooltip: 'A password is required to create an account',
|
||||
},
|
||||
length: {
|
||||
normal: 'Please enter a password of minimum 6 characters',
|
||||
|
@ -215,7 +215,7 @@ PropTypesProps.propTypes = {
|
||||
oneOfComponents: PropTypes.oneOf([FunctionalComponent, ClassComponent]),
|
||||
oneOfEval: PropTypes.oneOf((() => ['News', 'Photos'])()),
|
||||
oneOfVar: PropTypes.oneOf(POSITIONS),
|
||||
oneOfNested: PropTypes.oneOf(['News', ['bottom-left', 'botton-center', 'bottom-right']]),
|
||||
oneOfNested: PropTypes.oneOf(['News', ['bottom-left', 'bottom-center', 'bottom-right']]),
|
||||
oneOfNestedSimpleInlineObject: PropTypes.oneOf(['News', [{ foo: PropTypes.string }]]),
|
||||
oneOfNestedComplexInlineObject: PropTypes.oneOf([
|
||||
'News',
|
||||
|
@ -1,3 +1,3 @@
|
||||
# Storybook External Docs Example
|
||||
|
||||
This example demostrates using Stories in an app built outside of SB's build process.
|
||||
This example demonstrates using Stories in an app built outside of SB's build process.
|
||||
|
@ -25,7 +25,7 @@ const errorMap = {
|
||||
password: {
|
||||
required: {
|
||||
normal: 'Please enter a password',
|
||||
tooltip: 'A password is requried to create an account',
|
||||
tooltip: 'A password is required to create an account',
|
||||
},
|
||||
length: {
|
||||
normal: 'Please enter a password of minimum 6 characters',
|
||||
|
@ -25,7 +25,7 @@ const errorMap = {
|
||||
password: {
|
||||
required: {
|
||||
normal: 'Please enter a password',
|
||||
tooltip: 'A password is requried to create an account',
|
||||
tooltip: 'A password is required to create an account',
|
||||
},
|
||||
length: {
|
||||
normal: 'Please enter a password of minimum 6 characters',
|
||||
|
Loading…
x
Reference in New Issue
Block a user