mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 20:41:07 +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', () => {
|
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;
|
const inferredType = result.inferredType as InspectionArray;
|
||||||
|
|
||||||
expect(inferredType.type).toBe(InspectionType.ARRAY);
|
expect(inferredType.type).toBe(InspectionType.ARRAY);
|
||||||
|
@ -310,7 +310,7 @@ export default {
|
|||||||
plugins: [
|
plugins: [
|
||||||
// Other 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({
|
replace({
|
||||||
'process.env.NODE_ENV': JSON.stringify('development'),
|
'process.env.NODE_ENV': JSON.stringify('development'),
|
||||||
}),
|
}),
|
||||||
|
@ -4,7 +4,7 @@ import { Story, Meta } from '@storybook/angular';
|
|||||||
@Component({
|
@Component({
|
||||||
selector: 'on-destroy',
|
selector: 'on-destroy',
|
||||||
template: `Current time: {{ time }} <br />
|
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 {
|
class OnDestroyComponent implements OnInit, OnDestroy {
|
||||||
time: string;
|
time: string;
|
||||||
|
@ -25,7 +25,7 @@ const errorMap = {
|
|||||||
password: {
|
password: {
|
||||||
required: {
|
required: {
|
||||||
normal: 'Please enter a password',
|
normal: 'Please enter a password',
|
||||||
tooltip: 'A password is requried to create an account',
|
tooltip: 'A password is required to create an account',
|
||||||
},
|
},
|
||||||
length: {
|
length: {
|
||||||
normal: 'Please enter a password of minimum 6 characters',
|
normal: 'Please enter a password of minimum 6 characters',
|
||||||
|
@ -215,7 +215,7 @@ PropTypesProps.propTypes = {
|
|||||||
oneOfComponents: PropTypes.oneOf([FunctionalComponent, ClassComponent]),
|
oneOfComponents: PropTypes.oneOf([FunctionalComponent, ClassComponent]),
|
||||||
oneOfEval: PropTypes.oneOf((() => ['News', 'Photos'])()),
|
oneOfEval: PropTypes.oneOf((() => ['News', 'Photos'])()),
|
||||||
oneOfVar: PropTypes.oneOf(POSITIONS),
|
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 }]]),
|
oneOfNestedSimpleInlineObject: PropTypes.oneOf(['News', [{ foo: PropTypes.string }]]),
|
||||||
oneOfNestedComplexInlineObject: PropTypes.oneOf([
|
oneOfNestedComplexInlineObject: PropTypes.oneOf([
|
||||||
'News',
|
'News',
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
# Storybook External Docs Example
|
# 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: {
|
password: {
|
||||||
required: {
|
required: {
|
||||||
normal: 'Please enter a password',
|
normal: 'Please enter a password',
|
||||||
tooltip: 'A password is requried to create an account',
|
tooltip: 'A password is required to create an account',
|
||||||
},
|
},
|
||||||
length: {
|
length: {
|
||||||
normal: 'Please enter a password of minimum 6 characters',
|
normal: 'Please enter a password of minimum 6 characters',
|
||||||
|
@ -25,7 +25,7 @@ const errorMap = {
|
|||||||
password: {
|
password: {
|
||||||
required: {
|
required: {
|
||||||
normal: 'Please enter a password',
|
normal: 'Please enter a password',
|
||||||
tooltip: 'A password is requried to create an account',
|
tooltip: 'A password is required to create an account',
|
||||||
},
|
},
|
||||||
length: {
|
length: {
|
||||||
normal: 'Please enter a password of minimum 6 characters',
|
normal: 'Please enter a password of minimum 6 characters',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user