Adds DataMatrix Rectangular layout.

This commit is contained in:
Aaron Louie 2020-12-04 10:13:41 -05:00
parent bedbd3bbe5
commit 8fe4aefa6b
4 changed files with 6 additions and 6 deletions

View File

@ -35,8 +35,8 @@ import {ApiService} from './services/api.service';
import {CacheService} from './services/cache.service';
import {SettingsService} from './services/settings.service';
import {SettingsComponent} from './settings/settings.component';
import { MultipleLabelsComponent } from './multiple-labels/multiple-labels.component';
import { RectangleDatamatrixRectangularComponent } from './label-layout/formats/rectangle-datamatrix-rectangular/rectangle-datamatrix-rectangular.component';
import {MultipleLabelsComponent} from './multiple-labels/multiple-labels.component';
import {RectangleDatamatrixRectangularComponent} from './label-layout/formats/rectangle-datamatrix-rectangular/rectangle-datamatrix-rectangular.component';
/**
* This function is used internal to get a string instance of the `<base href="" />` value from `index.html`.
@ -69,9 +69,9 @@ export function getBaseHref(platformLocation: PlatformLocation): string {
PrintLayoutComponent,
RectangleCode128Component,
RectangleDatamatrixComponent,
RectangleDatamatrixRectangularComponent,
SampleComponent,
SettingsComponent,
RectangleDatamatrixRectangularComponent,
],
imports: [
BrowserAnimationsModule,

View File

@ -2,7 +2,8 @@
::ng-deep app-circle-qrcode-double,
::ng-deep app-rectangle-code128,
::ng-deep app-rectangle-3x1-code128,
::ng-deep app-rectangle-datamatrix {
::ng-deep app-rectangle-datamatrix,
::ng-deep app-rectangle-datamatrix-rectangular {
background-color: transparent;
margin: 0 !important;
padding: 0 !important;

View File

@ -1,7 +1,6 @@
import {Component, Input, OnInit} from '@angular/core';
import {createQrCodeValue} from '../_util/qrCode';
import {AppDefaults} from '../models/appDefaults.interface';
import {CssStyle} from '../models/cssStyle.interface';
import {Sample} from '../models/sample.interface';
import {SettingsService} from '../services/settings.service';

View File

@ -1,4 +1,4 @@
import {AfterViewChecked, AfterViewInit, Component, OnInit} from '@angular/core';
import {AfterViewInit, Component, OnInit} from '@angular/core';
import {Sample} from '../models/sample.interface';
import {LabelLayout} from '../models/labelLayout.interface';
import {SettingsService} from '../services/settings.service';