| /expo/docs/components/plugins/api/ |
| H A D | APISectionTypes.tsx | 58 <CommentTextBlock comment={comment} /> 73 comment, 93 <APISectionDeprecationNote comment={comment} /> 107 comment, 115 <APISectionDeprecationNote comment={comment} /> 128 <CommentTextBlock comment={comment} /> 143 <APISectionDeprecationNote comment={comment} /> 173 <APISectionDeprecationNote comment={comment} /> 195 <APISectionDeprecationNote comment={comment} /> 210 <APISectionDeprecationNote comment={comment} /> [all …]
|
| H A D | APISectionInterfaces.tsx | 37 comment?: CommentData, 54 <APISectionDeprecationNote comment={comment} /> 57 comment={signatureComment} 70 <APISectionDeprecationNote comment={comment} /> 72 comment={comment} 85 comment, 110 comment, 122 <APISectionDeprecationNote comment={comment} /> 123 <APISectionPlatformTags comment={comment} prefix="Only for:" /> 124 <H3Code tags={getTagNamesList(comment)}> [all …]
|
| H A D | APISectionEnums.tsx | 32 const renderEnum = ({ name, children, comment }: EnumDefinitionData): JSX.Element => ( 34 <APISectionDeprecationNote comment={comment} /> 35 <APISectionPlatformTags comment={comment} prefix="Only for:" /> 36 <H3Code tags={getTagNamesList(comment)}> 39 <CommentTextBlock comment={comment} includePlatforms={false} /> 42 <APISectionDeprecationNote comment={enumValue.comment} /> 43 <APISectionPlatformTags comment={enumValue.comment} prefix="Only for:" /> 50 <CommentTextBlock comment={enumValue.comment} includePlatforms={false} />
|
| H A D | APIDataTypes.ts | 72 comment?: CommentData; 90 comment?: CommentData; 100 comment?: CommentData; 106 comment?: CommentData; 117 comment?: CommentData; 149 comment: CommentData; 159 comment?: CommentData; 167 comment?: CommentData; 187 comment: CommentData; 200 comment?: CommentData; [all …]
|
| H A D | APISectionConstants.tsx | 20 { name, comment, type }: ConstantDefinitionData, 24 <APISectionDeprecationNote comment={comment} /> 25 <APISectionPlatformTags comment={comment} prefix="Only for:" /> 26 <H3Code tags={getTagNamesList(comment)}> 37 {comment && ( 39 <CommentTextBlock comment={comment} includePlatforms={false} beforeContent={<br />} />
|
| H A D | APISectionMethods.tsx | 60 const returnComment = getTagData('returns', comment); 65 <APISectionDeprecationNote comment={comment} /> 66 <APISectionPlatformTags comment={comment} prefix="Only for:" /> 67 <HeaderComponent tags={getTagNamesList(comment)}> 78 <CommentTextBlock comment={comment} includePlatforms={false} /> 123 comment, 133 comment: string; 140 comment?: string; 150 comment: { 162 comment: { [all …]
|
| H A D | APISectionProps.tsx | 40 { comment, name }: PropData, 43 const annotationDefault = getTagData('default', comment); 112 { comment, name, type, flags, signatures }: PropData, 118 const extractedComment = getCommentOrSignatureComment(comment, extractedSignatures); 122 <APISectionDeprecationNote comment={extractedComment} /> 123 <APISectionPlatformTags comment={comment} prefix="Only for:" /> 124 <HeaderComponent tags={getTagNamesList(comment)}> 140 <CommentTextBlock comment={extractedComment} includePlatforms={false} /> 154 {baseProp && <APISectionDeprecationNote comment={baseProp.comment} />} 158 {baseProp && baseProp.comment ? <CommentTextBlock comment={baseProp.comment} /> : null}
|
| H A D | APISectionNamespaces.tsx | 35 const { name, comment, children } = namespace; 40 const returnComment = getTagData('returns', comment); 44 <APISectionDeprecationNote comment={comment} /> 45 <H3Code tags={getTagNamesList(comment)}> 48 <CommentTextBlock comment={comment} />
|
| H A D | APISectionComponents.tsx | 25 const getComponentComment = (comment: CommentData, signatures: MethodSignatureData[]) => 26 comment || (signatures?.[0]?.comment ?? undefined); 49 { name, comment, type, extendedTypes, children, signatures }: GeneratedData, 55 const extractedComment = getComponentComment(comment, signatures); 58 <APISectionDeprecationNote comment={extractedComment} /> 59 <H3Code tags={getTagNamesList(comment)}> 76 <CommentTextBlock comment={extractedComment} />
|
| H A D | APISectionPlatformTags.tsx | 8 comment?: CommentData; 13 export const APISectionPlatformTags = ({ comment, prefix, platforms }: Props) => { 14 const platformsData = platforms || getAllTagData('platform', comment);
|
| H A D | APISectionClasses.tsx | 67 const { name, comment, type, extendedTypes, children, implementedTypes, isSensor } = clx; 73 const returnComment = getTagData('returns', comment); 77 <APISectionDeprecationNote comment={comment} /> 78 <APISectionPlatformTags comment={comment} prefix="Only for:" /> 79 <H3Code tags={getTagNamesList(comment)}> 106 <CommentTextBlock comment={comment} includePlatforms={false} />
|
| H A D | APISectionDeprecationNote.tsx | 15 comment?: CommentData; 18 export const APISectionDeprecationNote = ({ comment }: Props) => { 19 const deprecation = getTagData('deprecated', comment);
|
| H A D | APISectionUtils.tsx | 378 comment, 399 comment={comment} 510 comment?: CommentData; 523 comment?: CommentData, 525 ) => comment || (signatures && signatures[0]?.comment); 528 getAllTagData(tagName, comment)?.[0]; 534 comment && [ 576 comment, 583 const content = comment && comment.summary ? getCommentContent(comment.summary) : undefined; 610 const see = getTagData('see', comment); [all …]
|
| /expo/tools/src/commands/ |
| H A D | CommentatorCommand.ts | 42 for (const comment of payload) { constant 43 if (!comment.issue || !comment.body) { 44 logger.error('Comment payload is incomplete:', comment); 48 await commentOnIssueAsync(comment.issue, comment.body); 49 commentedIssues.push(comment.issue); 51 logger.error(`Failed to comment on issue #${comment.issue}:`, e);
|
| /expo/packages/@expo/config-plugins/src/utils/ |
| H A D | generateCode.ts | 41 comment, 48 comment: string; 50 const header = createGeneratedHeaderComment(newSrc, tag, comment); 58 `${comment} @generated end ${tag}`, 115 comment: string 120 return `${comment} @generated begin ${tag} - expo prebuild (DO NOT MODIFY) ${hashKey}`;
|
| /expo/packages/@expo/config-plugins/build/utils/ |
| H A D | generateCode.d.ts | 16 export declare function mergeContents({ src, newSrc, tag, anchor, offset, comment, }: { 22 comment: string; 35 export declare function createGeneratedHeaderComment(contents: string, tag: string, comment: string…
|
| H A D | generateCode.js | 51 comment 53 const header = createGeneratedHeaderComment(newSrc, tag, comment); 58 …anitizedTarget : src, anchor, offset, [header, ...newSrc.split('\n'), `${comment} @generated end $… 117 function createGeneratedHeaderComment(contents, tag, comment) { argument 121 return `${comment} @generated begin ${tag} - expo prebuild (DO NOT MODIFY) ${hashKey}`;
|
| /expo/packages/expo-camera/plugin/src/ |
| H A D | withCamera.ts | 43 comment: '//', 52 comment, 57 comment: string; 59 const header = createGeneratedHeaderComment(newSrc, tag, comment); 69 `${comment} @generated end ${tag}`,
|
| /expo/ios/vendored/sdk47/@stripe/stripe-react-native/ios/ |
| H A D | PaymentMethodFactory.swift | 398 return NSLocalizedString("Card details not complete", comment: "Create payment error") 400 … return NSLocalizedString("You must provide billing details", comment: "Create payment error") 402 return NSLocalizedString("You must provide bank name", comment: "Create payment error") 404 … return NSLocalizedString("You must provide bank account country", comment: "Create payment error") 406 … return NSLocalizedString("You must provide billing details", comment: "Create payment error") 408 … return NSLocalizedString("You must provide billing details", comment: "Create payment error") 412 … return NSLocalizedString("You must provide billing details", comment: "Create payment error") 414 … return NSLocalizedString("You must provide billing details", comment: "Create payment error") 416 …return NSLocalizedString("This payment type is not supported yet", comment: "Create payment error") 418 return NSLocalizedString("You must provide CVC number", comment: "Create payment error") [all …]
|
| /expo/ios/vendored/sdk48/@stripe/stripe-react-native/ios/ |
| H A D | PaymentMethodFactory.swift | 397 return NSLocalizedString("Card details not complete", comment: "Create payment error") 399 … return NSLocalizedString("You must provide billing details", comment: "Create payment error") 401 return NSLocalizedString("You must provide bank name", comment: "Create payment error") 403 … return NSLocalizedString("You must provide bank account country", comment: "Create payment error") 405 … return NSLocalizedString("You must provide billing details", comment: "Create payment error") 407 … return NSLocalizedString("You must provide billing details", comment: "Create payment error") 411 … return NSLocalizedString("You must provide billing details", comment: "Create payment error") 413 … return NSLocalizedString("You must provide billing details", comment: "Create payment error") 415 …return NSLocalizedString("This payment type is not supported yet", comment: "Create payment error") 417 return NSLocalizedString("You must provide CVC number", comment: "Create payment error") [all …]
|
| /expo/ios/vendored/unversioned/@stripe/stripe-react-native/ios/ |
| H A D | PaymentMethodFactory.swift | 421 return NSLocalizedString("Card details not complete", comment: "Create payment error") 423 … return NSLocalizedString("You must provide billing details", comment: "Create payment error") 425 return NSLocalizedString("You must provide bank name", comment: "Create payment error") 427 … return NSLocalizedString("You must provide bank account country", comment: "Create payment error") 429 … return NSLocalizedString("You must provide billing details", comment: "Create payment error") 431 … return NSLocalizedString("You must provide billing details", comment: "Create payment error") 435 … return NSLocalizedString("You must provide billing details", comment: "Create payment error") 437 … return NSLocalizedString("You must provide billing details", comment: "Create payment error") 439 …return NSLocalizedString("This payment type is not supported yet", comment: "Create payment error") 441 return NSLocalizedString("You must provide CVC number", comment: "Create payment error") [all …]
|
| /expo/ios/vendored/sdk49/@stripe/stripe-react-native/ios/ |
| H A D | PaymentMethodFactory.swift | 421 return NSLocalizedString("Card details not complete", comment: "Create payment error") 423 … return NSLocalizedString("You must provide billing details", comment: "Create payment error") 425 return NSLocalizedString("You must provide bank name", comment: "Create payment error") 427 … return NSLocalizedString("You must provide bank account country", comment: "Create payment error") 429 … return NSLocalizedString("You must provide billing details", comment: "Create payment error") 431 … return NSLocalizedString("You must provide billing details", comment: "Create payment error") 435 … return NSLocalizedString("You must provide billing details", comment: "Create payment error") 437 … return NSLocalizedString("You must provide billing details", comment: "Create payment error") 439 …return NSLocalizedString("This payment type is not supported yet", comment: "Create payment error") 441 return NSLocalizedString("You must provide CVC number", comment: "Create payment error") [all …]
|
| /expo/packages/@expo/cli/scripts/ |
| H A D | annotate-graphql-codegen.js | 7 const comment = `/** constant 15 await fs.writeFile(path, comment + generatedCode);
|
| /expo/packages/expo-camera/plugin/build/ |
| H A D | withCamera.js | 32 comment: '//', 37 function appendContents({ src, newSrc, tag, comment, }) { 38 const header = (0, generateCode_1.createGeneratedHeaderComment)(newSrc, tag, comment); 48 `${comment} @generated end ${tag}`,
|
| /expo/.github/workflows/ |
| H A D | docs-pr-deploy.yml | 83 - name: Find old comment if it exists 84 uses: peter-evans/find-comment@v2 88 comment-author: 'expo-bot' 90 - name: Add comment with preview URL 91 if: steps.old_comment.outputs.comment-id == '' 102 - name: Update comment with preview URL 103 if: steps.old_comment.outputs.comment-id != '' 110 comment_id: '${{ steps.old_comment.outputs.comment-id }}',
|