1.0.0-beta.7 • Published 3 years ago

@itsy-ui/material-theme v1.0.0-beta.7

Weekly downloads
-
License
SEE LICENSE IN li...
Repository
-
Last release
3 years ago

Introduction

MUI -Materil UI themed components for Chain-In platform apps. This app provides the core components based on Material-UI theme.

Build and Test

npm install

Note: 1. Ensure to have the required .npmrc credentials from artifacts - https://dev.azure.com/pogeyan/PT/_packaging?_a=feed&feed=FV

  1. Ensure to add dependency for css related files in the repo to be imported.

    For EX: (the following code has been used to link the mui css in tenant-app)
        const npmLocation = path.resolve(dir, "..", "node_modules");
        return {		
    		"styleRefs": [
    			"./styles/css/mui.css",
    			"https://fonts.googleapis.com/icon?family=Material+Icons"
    		],
    		"copyTo": [
    			{ source: path.join(npmLocation, "@fv/mui/styles/css/**"), destination: path.join(dir, "styles/css") },
    			{ source: path.join(npmLocation, "@fv/mui/styles/Fonts/**"), destination: path.join(dir, "styles/fonts") }
    		]
    	}
    	```