How to use the datax-common.Colors.neutralLighterAlt function in datax-common

To help you get started, we’ve selected a few datax-common 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 microsoft / data-accelerator / Website / Website / components / layout.jsx View on Github external
// State Props
const mapStateToProps = state => ({
    userInfo: UserSelectors.getUserInfo(state)
});

// Dispatch Props
const mapDispatchToProps = dispatch => ({
    onGetUserInfo: () => dispatch(UserActions.getUserInfo())
});

// Styles
const contentStyle = {
    flex: 1,
    overflow: 'hidden',
    backgroundColor: Colors.neutralLighterAlt
};

export default withRouter(
    connect(
        mapStateToProps,
        mapDispatchToProps
    )(Layout)
);
github microsoft / data-accelerator / Website / Packages / datax-pipeline / src / modules / flowDefinition / components / input / inputSettingsContent.jsx View on Github external
renderLeftPane() {
        if (this.props.input.mode === Models.inputModeEnum.batching) {
            let batchData = undefined;
            if (this.props.batchInputs != undefined && this.props.selectedFlowBatchInputIndex != undefined) {
                batchData = this.props.batchInputs[this.props.selectedFlowBatchInputIndex];
            }
            return (
                <div style="{leftPaneStyle}">
                    
                        <div style="{leftPaneSectionStyle}">
                            {this.renderModeDropdown()}
                            {this.renderTypeDropdown()}
                            {this.renderBlobInputConnection(batchData)}
                            {this.renderBlobInputPath(batchData)}
                            {this.renderInputFormatTypeDropdown(batchData)}
                            {this.renderInputCompressionTypeDropdown(batchData)}
                        </div>

                        <div style="{dividerStyle}">

                        <div style="{leftPaneSectionStyle}">{this.renderShowNormalizationSnippetToggle()}</div>
                    
                </div>
            );
        } else {</div>