How to use the @patternfly/react-core.TextListItemVariants.dd function in @patternfly/react-core

To help you get started, we’ve selected a few @patternfly/react-core examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github patternfly / patternfly-react / packages / patternfly-4 / react-core / src / components / Text / examples / DataList.js View on Github external
render() {
    return (
      
        
          Web
          
            The part of the Internet that contains websites and web pages
          
          HTML
          A markup language for creating web pages
          CSS
          A technology to make HTML look better
        
      
    );
  }
}
github syndesisio / syndesis / app / ui-react / packages / ui / src / Customization / apiClientConnectors / ApiConnectorReview.tsx View on Github external
className="customization-details__heading"
              >
                {this.props.i18nApiDefinitionHeading}
              
              
                
                  
                    {this.props.i18nNameLabel}
                  
                  
                    {this.props.apiConnectorName}
                  
                  
                    {this.props.i18nDescriptionLabel}
                  
                  
                    {this.props.apiConnectorDescription}
                  
                
              
              <title size="md">
                {this.props.i18nImportedHeading}
              </title>
github syndesisio / syndesis / app / ui-react / packages / ui / src / Customization / extensions / ExtensionOverview.tsx View on Github external
&gt; = props =&gt; {
  return (
    
      
        {props.i18nName}
      
      
        {props.extensionName}
      
      
        {props.i18nDescription}
      
      
        {props.extensionDescription ? props.extensionDescription : null}
      
      
        {props.i18nType}
      
      
        {props.i18nTypeMessage}
      
      
        {props.i18nLastUpdate}
      
      
        {props.i18nLastUpdateDate ? props.i18nLastUpdateDate : null}
      
    
  );
github syndesisio / syndesis / app / ui-react / packages / ui / src / Connection / ConnectionDetailsHeader.tsx View on Github external
value={this.props.connectionDescription || ''}
                  allowEditing={
                    this.props.allowEditing &amp;&amp; !this.props.isWorking
                  }
                  i18nPlaceholder={this.props.i18nDescriptionPlaceholder}
                  isTextArea={true}
                  onChange={this.props.onChangeDescription}
                /&gt;
              
              
                {this.props.i18nUsageLabel}
              
              
                {this.props.i18nUsageMessage}
              
            
          
        
      
    );
  }
}
github syndesisio / syndesis / app / ui-react / packages / ui / src / Customization / extensions / ExtensionSupports.tsx View on Github external
{props.extensionActions.map((action: IAction, index: number) =&gt; (
            
              
                {action.name}
              
              
                {action.description}
              
            
          ))}
github ansible / awx / awx / ui_next / src / components / DetailList / Detail.jsx View on Github external
const Detail = ({ label, value, fullWidth }) =&gt; {
  if (!value &amp;&amp; typeof value !== 'number') {
    return null;
  }
  return (
    
      
        {label}
      
      
        {value}
      
    
  );
};
Detail.propTypes = {
github syndesisio / syndesis / app / ui-react / packages / ui / src / Shared / OpenApiReviewActions.tsx View on Github external
className={'review-actions__heading'}
              &gt;
                {this.props.i18nApiDefinitionHeading}
              
              
                
                  
                    {this.props.i18nNameLabel}
                  
                  
                    {this.props.apiProviderName}
                  
                  
                    {this.props.i18nDescriptionLabel}
                  
                  
                    {this.props.apiProviderDescription}
                  
                
              
              <title size="{'md'}">
                {this.props.i18nImportedHeading}
              </title>
github syndesisio / syndesis / app / ui-react / packages / ui / src / Customization / extensions / ExtensionImportReview.tsx View on Github external
{props.i18nIdLabel}
              
              
                {props.extensionId}
              
              
                {props.i18nNameLabel}
              
              
                {props.extensionName}
              
              
                {props.i18nDescriptionLabel}
              
              
                {props.extensionDescription ? props.extensionDescription : null}
github Katello / katello / webpack / components / ActionableDetail.js View on Github external
return (
    
      
        {label}
        {tooltip &amp;&amp;
          <span>
            
              
            
          </span>
        }
      
      
        {boolean ?
           :
          }
      
    
  );
};
github ansible / awx / awx / ui_next / src / components / CodeMirrorInput / VariablesDetail.jsx View on Github external
const newVal =
                    newMode === YAML_MODE
                      ? jsonToYaml(currentValue)
                      : yamlToJson(currentValue);
                  setCurrentValue(newVal);
                  setMode(newMode);
                } catch (err) {
                  setError(err);
                }
              }}
            /&gt;
          
        
      
      
        
        {error &amp;&amp; (
          <div>
            Error: {error.message}</div>