How to use the @patternfly/react-core.TextListItemVariants.dt 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 syndesisio / syndesis / app / ui-react / packages / ui / src / Customization / extensions / ExtensionOverview.tsx View on Github external
{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 / Customization / apiClientConnectors / ApiConnectorReview.tsx View on Github external
<title size="md">
                {this.props.i18nApiDefinitionHeading}
              </title>
              
                
                  
                    {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 / ExtensionSupports.tsx View on Github external
{props.extensionActions.map((action: IAction, index: number) =&gt; (
            
              
                {action.name}
              
              
                {action.description}
              
            
          ))}
github Katello / katello / webpack / scenes / ContentViews / Details / ContentViewInfo.js View on Github external
auto_publish: autoPublish,
    import_only: importOnly,
  } = details;

  if (updating) return ;
  const onEdit = (val, attribute) =&gt; dispatch(updateContentView(cvId, { [attribute]: val }));
  return (
    
      
        
        
          {__('Label')}
        
        
          {label}
        
        
          {__('Type')}
        
        
          
            
            { composite ? 'Composite' : 'Component' }
github syndesisio / syndesis / app / ui-react / packages / ui / src / Customization / extensions / ExtensionImportReview.tsx View on Github external
{props.extensionName}
              
              
                {props.i18nDescriptionLabel}
              
              
                {props.extensionDescription ? props.extensionDescription : null}
              
              
                {props.i18nTypeLabel}
              
              
                {props.i18nExtensionTypeMessage}
              
              
                {props.i18nActionsLabel}
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 ansible / awx / awx / ui_next / src / components / CodeMirrorInput / VariablesDetail.jsx View on Github external
function VariablesDetail({ value, label, rows }) {
  const [mode, setMode] = useState(isJson(value) ? JSON_MODE : YAML_MODE);
  const [currentValue, setCurrentValue] = useState(value);
  const [error, setError] = useState(null);

  if (!value) {
    return null;
  }

  return (
    &lt;&gt;
      
        
          
            <div>
              <span>
                {label}
              </span>
            </div>
github syndesisio / syndesis / app / ui-react / packages / ui / src / Shared / OpenApiReviewActions.tsx View on Github external
<h5>
              {this.props.i18nValidationFallbackMessage}
            </h5>
          ) : (
            
              {this.props.alert &amp;&amp; this.props.alert}
              <title size="{'md'}">
                {this.props.i18nApiDefinitionHeading}
              </title>
              
                
                  
                    {this.props.i18nNameLabel}
                  
                  
                    {this.props.apiProviderName}
                  
                  
                    {this.props.i18nDescriptionLabel}
                  
                  
                    {this.props.apiProviderDescription}