Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

Default Icon List with Font Awesome Pro IconsDefault Icon ListThis configuration option enables custom icons to be displayed in the Icon Selector Dialog in the Designer and to be using in the icon property of the CSS Button, Graphic Button, and Icon widgets. Setting this configuration option will overwrite the default ones shipped with Profound UI. If you want to include the default shipped icons, you will need to include them to your defined list.

An example is below:

pui["customIconList"] = {
    "icons": [{
        "type": "materialIcons",  // The type property is the unique key that this set will have 
        "title": "Material Icons", // The title property is the value that will be displayed in the dropdown list of the Icon Selector Dialog 
        "classList": {
            "regular": "pui-material-icons" // The classList property is an object that will take the key for the class and use a string for the value. 
        },
        "icons": [{ 
            "icon": "3d_rotation",  // The icons property is an array that will hold all the icons for this set. Each index will be an object with an icon and classList property. 
            "classList": "regular"  // The icon property is the value for the icon. The classList property can be a string or an array holding the keys for classes for the icons. 
        },...]
	},
	{
		"type": "fontAwesomePro",
        "title": "Font Awesome Pro",
        "classList": {
            "brands": "font-awesome-pro-brands-class fa-",
            "solid": "font-awesome-pro-solid-class fa-",
            "regular": "font-awesome-pro-regular-class fa-",
            "light": "font-awesome-pro-light-class fa-"
        },
        "icons": [{
            "icon": "abacus",
            "classList": ["solid", "regular", "light"]
        },...]

	}
}

 



Note: An example with the default icon sets shipped with Profound UI attached at the bottom, along with one with the addition of the Font Awesome Pro Icons.

Note: This option is available in Profound UI 6, Fix Pack 1.3 and later. 

  • No labels