@softpak/components 0.1.8-beta.3 → 0.1.8-beta.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/spx-change-details/spx-change-details.component.mjs +4 -8
- package/esm2022/spx-channel-selection/src/spx-welcome.component.mjs +3 -14
- package/esm2022/spx-form-view/spx-form-button.interface.mjs +1 -1
- package/esm2022/spx-form-view/spx-form-view.component.mjs +13 -5
- package/esm2022/spx-stock-info/public-api.mjs +2 -1
- package/esm2022/spx-stock-info/spx-stock-info.component.mjs +4 -8
- package/fesm2022/softpak-components-spx-change-details.mjs +3 -7
- package/fesm2022/softpak-components-spx-change-details.mjs.map +1 -1
- package/fesm2022/softpak-components-spx-channel-selection.mjs +2 -13
- package/fesm2022/softpak-components-spx-channel-selection.mjs.map +1 -1
- package/fesm2022/softpak-components-spx-form-view.mjs +12 -4
- package/fesm2022/softpak-components-spx-form-view.mjs.map +1 -1
- package/fesm2022/softpak-components-spx-stock-info.mjs +3 -7
- package/fesm2022/softpak-components-spx-stock-info.mjs.map +1 -1
- package/package.json +25 -25
- package/spx-change-details/spx-change-details.component.d.ts +1 -6
- package/spx-channel-selection/src/spx-welcome.component.d.ts +0 -2
- package/spx-form-view/spx-form-button.interface.d.ts +1 -1
- package/spx-stock-info/public-api.d.ts +1 -0
- package/spx-stock-info/spx-stock-info.component.d.ts +1 -6
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
2
|
import { FormBuilder, FormControl, FormGroup } from '@angular/forms';
|
|
3
|
-
import {
|
|
3
|
+
import { SpxValuePair } from '@softpak/components/spx-inputs';
|
|
4
4
|
import { SpxFormFieldI, SpxFormI } from '@softpak/components/spx-form-view';
|
|
5
|
-
import { SpxSeverityEnum } from '@softpak/components/spx-helpers';
|
|
6
5
|
import { SpxChangeDetailsValueI } from './spx-change-details-value.interface';
|
|
7
6
|
import * as i0 from "@angular/core";
|
|
8
7
|
export declare const sectionChangeDetails = "changeDetails";
|
|
@@ -33,10 +32,6 @@ export declare class SpxChangeDetailsComponent {
|
|
|
33
32
|
spxSearchContainerType: EventEmitter<SpxValuePair<string>>;
|
|
34
33
|
spxSearchTonsTested: EventEmitter<SpxValuePair<string>>;
|
|
35
34
|
submit: EventEmitter<SpxChangeDetailsValueI>;
|
|
36
|
-
inputTypeAutocomplete: SpxInputTypeEnum;
|
|
37
|
-
inputTypeRadio: SpxInputTypeEnum;
|
|
38
|
-
inputTypeText: SpxInputTypeEnum;
|
|
39
|
-
severitySuccess: SpxSeverityEnum;
|
|
40
35
|
form: SpxFormI;
|
|
41
36
|
get ctrlCategory(): FormControl;
|
|
42
37
|
get ctrlCustomer(): FormControl;
|
|
@@ -2,7 +2,6 @@ import { EventEmitter, OnChanges, SimpleChanges, OnInit, OnDestroy } from '@angu
|
|
|
2
2
|
import { FormBuilder, FormControl, FormGroup } from '@angular/forms';
|
|
3
3
|
import { SpxAppChannelI, SpxAppChannelTypeEnum } from '@softpak/components/spx-app-configuration';
|
|
4
4
|
import { SpxFormI } from '@softpak/components/spx-form-view';
|
|
5
|
-
import { SpxSeverityEnum } from '@softpak/components/spx-helpers';
|
|
6
5
|
import { SpxValuePair } from '@softpak/components/spx-inputs';
|
|
7
6
|
import * as i0 from "@angular/core";
|
|
8
7
|
export declare const sectionWelcome = "welcome";
|
|
@@ -21,7 +20,6 @@ export declare class SpxWelcomeComponent implements OnChanges, OnInit, OnDestroy
|
|
|
21
20
|
txtCompany: string;
|
|
22
21
|
txtSelect: string;
|
|
23
22
|
spxSelect: EventEmitter<SpxWelcomeValueI>;
|
|
24
|
-
severitySuccess: SpxSeverityEnum;
|
|
25
23
|
suggestions: {
|
|
26
24
|
[ctrlChannelType]?: SpxValuePair<string>[];
|
|
27
25
|
[ctrlChannel]?: SpxValuePair<string>[];
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
2
|
import { FormBuilder, FormControl, FormGroup } from '@angular/forms';
|
|
3
|
-
import {
|
|
3
|
+
import { SpxValuePair } from '@softpak/components/spx-inputs';
|
|
4
4
|
import { SpxFormFieldI, SpxFormI } from '@softpak/components/spx-form-view';
|
|
5
|
-
import { SpxSeverityEnum } from '@softpak/components/spx-helpers';
|
|
6
5
|
import { SpxStockInfoValueI } from './spx-stock-info-value.interface';
|
|
7
6
|
import * as i0 from "@angular/core";
|
|
8
7
|
export declare const ctrlCategory = "ctrlCategory";
|
|
@@ -36,10 +35,6 @@ export declare class SpxStockInfoComponent {
|
|
|
36
35
|
spxSearchContainerStatus: EventEmitter<SpxValuePair<string>>;
|
|
37
36
|
spxSearchCustomer: EventEmitter<SpxValuePair<string>>;
|
|
38
37
|
submit: EventEmitter<SpxStockInfoValueI>;
|
|
39
|
-
inputTypeAutocomplete: SpxInputTypeEnum;
|
|
40
|
-
inputTypeRadio: SpxInputTypeEnum;
|
|
41
|
-
inputTypeText: SpxInputTypeEnum;
|
|
42
|
-
severitySuccess: SpxSeverityEnum;
|
|
43
38
|
form: SpxFormI;
|
|
44
39
|
get ctrlCategory(): FormControl;
|
|
45
40
|
get ctrlContainerStatus(): FormControl;
|