@softpak/components 18.6.2 → 18.6.4
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-form-section/spx-form-section.component.mjs +3 -3
- package/esm2022/spx-helpers/spx-severity.enum.mjs +2 -1
- package/esm2022/spx-inputs/spx-input-date/spx-input-date.component.mjs +161 -0
- package/esm2022/spx-inputs/spx-input-float.component.mjs +1 -3
- package/esm2022/spx-inputs/spx-input.component.mjs +11 -13
- package/esm2022/spx-suggestion/spx-suggestion.component.mjs +40 -48
- package/fesm2022/softpak-components-spx-form-section.mjs +2 -2
- package/fesm2022/softpak-components-spx-form-section.mjs.map +1 -1
- package/fesm2022/softpak-components-spx-helpers.mjs +1 -0
- package/fesm2022/softpak-components-spx-helpers.mjs.map +1 -1
- package/fesm2022/softpak-components-spx-inputs.mjs +165 -307
- package/fesm2022/softpak-components-spx-inputs.mjs.map +1 -1
- package/fesm2022/softpak-components-spx-suggestion.mjs +39 -47
- package/fesm2022/softpak-components-spx-suggestion.mjs.map +1 -1
- package/package.json +46 -46
- package/spx-helpers/spx-severity.enum.d.ts +2 -1
- package/spx-inputs/spx-input-date/spx-input-date.component.d.ts +39 -0
- package/spx-suggestion/spx-suggestion.component.d.ts +5 -5
- package/esm2022/spx-inputs/spx-input-date.component.mjs +0 -297
- package/spx-inputs/spx-input-date.component.d.ts +0 -49
|
@@ -1,32 +1,32 @@
|
|
|
1
|
-
import { Component,
|
|
1
|
+
import { Component, input } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export class SpxSuggestionComponent {
|
|
4
4
|
constructor() {
|
|
5
|
-
this.spxDisabled =
|
|
6
|
-
this.spxFocused =
|
|
7
|
-
this.spxSelected =
|
|
8
|
-
this.spxTabbable =
|
|
5
|
+
this.spxDisabled = input();
|
|
6
|
+
this.spxFocused = input();
|
|
7
|
+
this.spxSelected = input();
|
|
8
|
+
this.spxTabbable = input();
|
|
9
9
|
}
|
|
10
10
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SpxSuggestionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
11
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
11
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "18.2.13", type: SpxSuggestionComponent, isStandalone: true, selector: "spx-suggestion", inputs: { spxDisabled: { classPropertyName: "spxDisabled", publicName: "spxDisabled", isSignal: true, isRequired: false, transformFunction: null }, spxFocused: { classPropertyName: "spxFocused", publicName: "spxFocused", isSignal: true, isRequired: false, transformFunction: null }, spxSelected: { classPropertyName: "spxSelected", publicName: "spxSelected", isSignal: true, isRequired: false, transformFunction: null }, spxTabbable: { classPropertyName: "spxTabbable", publicName: "spxTabbable", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: `<button
|
|
12
12
|
type="button"
|
|
13
13
|
class="spx-suggestion block rounded text-gray-900 text-sm p-3 w-full text-left truncate outline-none"
|
|
14
|
-
[class.bg-sky-100]="!this.spxSelected && !this.spxDisabled"
|
|
15
|
-
[class.focus:ring-sky-300]="!this.spxSelected && !this.spxDisabled"
|
|
16
|
-
[class.hover:bg-sky-300]="!this.spxSelected && !this.spxDisabled"
|
|
17
|
-
[class.active:bg-sky-300]="!this.spxSelected && !this.spxDisabled"
|
|
18
|
-
[class.bg-gray-200]="this.spxDisabled && !this.spxSelected"
|
|
19
|
-
[class.bg-gray-400]="this.spxDisabled && this.spxSelected"
|
|
20
|
-
[class.cursor-not-allowed]="this.spxDisabled"
|
|
21
|
-
[class.opacity-60]="this.spxDisabled"
|
|
22
|
-
[class.bg-gradient-to-r]="this.spxSelected && !this.spxDisabled"
|
|
23
|
-
[class.from-teal-400]="this.spxSelected && !this.spxDisabled"
|
|
24
|
-
[class.to-teal-600]="this.spxSelected && !this.spxDisabled"
|
|
25
|
-
[class.font-bold]="this.spxSelected"
|
|
26
|
-
[attr.tabindex]="this.spxTabbable && !this.spxDisabled ? 0 : -1"
|
|
27
|
-
[class.ring-2]="this.spxFocused && this.spxTabbable && !this.spxDisabled"
|
|
28
|
-
[class.ring-offset-2]="this.spxFocused && this.spxTabbable && !this.spxDisabled"
|
|
29
|
-
[class.ring-blue-500]="this.spxFocused && this.spxTabbable && !this.spxDisabled">
|
|
14
|
+
[class.bg-sky-100]="!this.spxSelected() && !this.spxDisabled()"
|
|
15
|
+
[class.focus:ring-sky-300]="!this.spxSelected() && !this.spxDisabled()"
|
|
16
|
+
[class.hover:bg-sky-300]="!this.spxSelected() && !this.spxDisabled()"
|
|
17
|
+
[class.active:bg-sky-300]="!this.spxSelected() && !this.spxDisabled()"
|
|
18
|
+
[class.bg-gray-200]="this.spxDisabled() && !this.spxSelected()"
|
|
19
|
+
[class.bg-gray-400]="this.spxDisabled() && this.spxSelected()"
|
|
20
|
+
[class.cursor-not-allowed]="this.spxDisabled()"
|
|
21
|
+
[class.opacity-60]="this.spxDisabled()"
|
|
22
|
+
[class.bg-gradient-to-r]="this.spxSelected() && !this.spxDisabled()"
|
|
23
|
+
[class.from-teal-400]="this.spxSelected() && !this.spxDisabled()"
|
|
24
|
+
[class.to-teal-600]="this.spxSelected() && !this.spxDisabled()"
|
|
25
|
+
[class.font-bold]="this.spxSelected()"
|
|
26
|
+
[attr.tabindex]="this.spxTabbable() && !this.spxDisabled() ? 0 : -1"
|
|
27
|
+
[class.ring-2]="this.spxFocused() && this.spxTabbable() && !this.spxDisabled()"
|
|
28
|
+
[class.ring-offset-2]="this.spxFocused() && this.spxTabbable() && !this.spxDisabled()"
|
|
29
|
+
[class.ring-blue-500]="this.spxFocused() && this.spxTabbable() && !this.spxDisabled()">
|
|
30
30
|
<div class="text-ellipsis overflow-hidden whitespace-nowrap"><ng-content></ng-content></div>
|
|
31
31
|
</button>`, isInline: true }); }
|
|
32
32
|
}
|
|
@@ -38,32 +38,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
38
38
|
template: `<button
|
|
39
39
|
type="button"
|
|
40
40
|
class="spx-suggestion block rounded text-gray-900 text-sm p-3 w-full text-left truncate outline-none"
|
|
41
|
-
[class.bg-sky-100]="!this.spxSelected && !this.spxDisabled"
|
|
42
|
-
[class.focus:ring-sky-300]="!this.spxSelected && !this.spxDisabled"
|
|
43
|
-
[class.hover:bg-sky-300]="!this.spxSelected && !this.spxDisabled"
|
|
44
|
-
[class.active:bg-sky-300]="!this.spxSelected && !this.spxDisabled"
|
|
45
|
-
[class.bg-gray-200]="this.spxDisabled && !this.spxSelected"
|
|
46
|
-
[class.bg-gray-400]="this.spxDisabled && this.spxSelected"
|
|
47
|
-
[class.cursor-not-allowed]="this.spxDisabled"
|
|
48
|
-
[class.opacity-60]="this.spxDisabled"
|
|
49
|
-
[class.bg-gradient-to-r]="this.spxSelected && !this.spxDisabled"
|
|
50
|
-
[class.from-teal-400]="this.spxSelected && !this.spxDisabled"
|
|
51
|
-
[class.to-teal-600]="this.spxSelected && !this.spxDisabled"
|
|
52
|
-
[class.font-bold]="this.spxSelected"
|
|
53
|
-
[attr.tabindex]="this.spxTabbable && !this.spxDisabled ? 0 : -1"
|
|
54
|
-
[class.ring-2]="this.spxFocused && this.spxTabbable && !this.spxDisabled"
|
|
55
|
-
[class.ring-offset-2]="this.spxFocused && this.spxTabbable && !this.spxDisabled"
|
|
56
|
-
[class.ring-blue-500]="this.spxFocused && this.spxTabbable && !this.spxDisabled">
|
|
41
|
+
[class.bg-sky-100]="!this.spxSelected() && !this.spxDisabled()"
|
|
42
|
+
[class.focus:ring-sky-300]="!this.spxSelected() && !this.spxDisabled()"
|
|
43
|
+
[class.hover:bg-sky-300]="!this.spxSelected() && !this.spxDisabled()"
|
|
44
|
+
[class.active:bg-sky-300]="!this.spxSelected() && !this.spxDisabled()"
|
|
45
|
+
[class.bg-gray-200]="this.spxDisabled() && !this.spxSelected()"
|
|
46
|
+
[class.bg-gray-400]="this.spxDisabled() && this.spxSelected()"
|
|
47
|
+
[class.cursor-not-allowed]="this.spxDisabled()"
|
|
48
|
+
[class.opacity-60]="this.spxDisabled()"
|
|
49
|
+
[class.bg-gradient-to-r]="this.spxSelected() && !this.spxDisabled()"
|
|
50
|
+
[class.from-teal-400]="this.spxSelected() && !this.spxDisabled()"
|
|
51
|
+
[class.to-teal-600]="this.spxSelected() && !this.spxDisabled()"
|
|
52
|
+
[class.font-bold]="this.spxSelected()"
|
|
53
|
+
[attr.tabindex]="this.spxTabbable() && !this.spxDisabled() ? 0 : -1"
|
|
54
|
+
[class.ring-2]="this.spxFocused() && this.spxTabbable() && !this.spxDisabled()"
|
|
55
|
+
[class.ring-offset-2]="this.spxFocused() && this.spxTabbable() && !this.spxDisabled()"
|
|
56
|
+
[class.ring-blue-500]="this.spxFocused() && this.spxTabbable() && !this.spxDisabled()">
|
|
57
57
|
<div class="text-ellipsis overflow-hidden whitespace-nowrap"><ng-content></ng-content></div>
|
|
58
58
|
</button>`,
|
|
59
59
|
}]
|
|
60
|
-
}]
|
|
61
|
-
|
|
62
|
-
}], spxFocused: [{
|
|
63
|
-
type: Input
|
|
64
|
-
}], spxSelected: [{
|
|
65
|
-
type: Input
|
|
66
|
-
}], spxTabbable: [{
|
|
67
|
-
type: Input
|
|
68
|
-
}] } });
|
|
69
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3B4LXN1Z2dlc3Rpb24uY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvc29mdHBhay9jb21wb25lbnRzL3NweC1zdWdnZXN0aW9uL3NweC1zdWdnZXN0aW9uLmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBRSxNQUFNLGVBQWUsQ0FBQzs7QUEyQmpELE1BQU0sT0FBTyxzQkFBc0I7SUF6Qm5DO1FBMEJXLGdCQUFXLEdBQUcsS0FBSyxDQUFDO1FBQ3BCLGVBQVUsR0FBRyxLQUFLLENBQUM7UUFDbkIsZ0JBQVcsR0FBRyxLQUFLLENBQUM7UUFDcEIsZ0JBQVcsR0FBRyxLQUFLLENBQUM7S0FDOUI7K0dBTFksc0JBQXNCO21HQUF0QixzQkFBc0Isb01BdEJ2Qjs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Y0FvQkU7OzRGQUVELHNCQUFzQjtrQkF6QmxDLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLGdCQUFnQjtvQkFDMUIsVUFBVSxFQUFFLElBQUk7b0JBQ2hCLFFBQVEsRUFBRTs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Y0FvQkU7aUJBQ2I7OEJBRVUsV0FBVztzQkFBbkIsS0FBSztnQkFDRyxVQUFVO3NCQUFsQixLQUFLO2dCQUNHLFdBQVc7c0JBQW5CLEtBQUs7Z0JBQ0csV0FBVztzQkFBbkIsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgSW5wdXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuXHJcbkBDb21wb25lbnQoe1xyXG4gIHNlbGVjdG9yOiAnc3B4LXN1Z2dlc3Rpb24nLFxyXG4gIHN0YW5kYWxvbmU6IHRydWUsXHJcbiAgdGVtcGxhdGU6IGA8YnV0dG9uXHJcbiAgICB0eXBlPVwiYnV0dG9uXCJcclxuICAgIGNsYXNzPVwic3B4LXN1Z2dlc3Rpb24gYmxvY2sgcm91bmRlZCB0ZXh0LWdyYXktOTAwIHRleHQtc20gcC0zIHctZnVsbCB0ZXh0LWxlZnQgdHJ1bmNhdGUgb3V0bGluZS1ub25lXCJcclxuICAgIFtjbGFzcy5iZy1za3ktMTAwXT1cIiF0aGlzLnNweFNlbGVjdGVkICYmICF0aGlzLnNweERpc2FibGVkXCJcclxuICAgIFtjbGFzcy5mb2N1czpyaW5nLXNreS0zMDBdPVwiIXRoaXMuc3B4U2VsZWN0ZWQgJiYgIXRoaXMuc3B4RGlzYWJsZWRcIlxyXG4gICAgW2NsYXNzLmhvdmVyOmJnLXNreS0zMDBdPVwiIXRoaXMuc3B4U2VsZWN0ZWQgJiYgIXRoaXMuc3B4RGlzYWJsZWRcIlxyXG4gICAgW2NsYXNzLmFjdGl2ZTpiZy1za3ktMzAwXT1cIiF0aGlzLnNweFNlbGVjdGVkICYmICF0aGlzLnNweERpc2FibGVkXCJcclxuICAgIFtjbGFzcy5iZy1ncmF5LTIwMF09XCJ0aGlzLnNweERpc2FibGVkICYmICF0aGlzLnNweFNlbGVjdGVkXCJcclxuICAgIFtjbGFzcy5iZy1ncmF5LTQwMF09XCJ0aGlzLnNweERpc2FibGVkICYmIHRoaXMuc3B4U2VsZWN0ZWRcIlxyXG4gICAgW2NsYXNzLmN1cnNvci1ub3QtYWxsb3dlZF09XCJ0aGlzLnNweERpc2FibGVkXCJcclxuICAgIFtjbGFzcy5vcGFjaXR5LTYwXT1cInRoaXMuc3B4RGlzYWJsZWRcIlxyXG4gICAgW2NsYXNzLmJnLWdyYWRpZW50LXRvLXJdPVwidGhpcy5zcHhTZWxlY3RlZCAmJiAhdGhpcy5zcHhEaXNhYmxlZFwiXHJcbiAgICBbY2xhc3MuZnJvbS10ZWFsLTQwMF09XCJ0aGlzLnNweFNlbGVjdGVkICYmICF0aGlzLnNweERpc2FibGVkXCJcclxuICAgIFtjbGFzcy50by10ZWFsLTYwMF09XCJ0aGlzLnNweFNlbGVjdGVkICYmICF0aGlzLnNweERpc2FibGVkXCJcclxuICAgIFtjbGFzcy5mb250LWJvbGRdPVwidGhpcy5zcHhTZWxlY3RlZFwiXHJcbiAgICBbYXR0ci50YWJpbmRleF09XCJ0aGlzLnNweFRhYmJhYmxlICYmICF0aGlzLnNweERpc2FibGVkID8gMCA6IC0xXCJcclxuICAgIFtjbGFzcy5yaW5nLTJdPVwidGhpcy5zcHhGb2N1c2VkICYmIHRoaXMuc3B4VGFiYmFibGUgJiYgIXRoaXMuc3B4RGlzYWJsZWRcIlxyXG4gICAgW2NsYXNzLnJpbmctb2Zmc2V0LTJdPVwidGhpcy5zcHhGb2N1c2VkICYmIHRoaXMuc3B4VGFiYmFibGUgJiYgIXRoaXMuc3B4RGlzYWJsZWRcIlxyXG4gICAgW2NsYXNzLnJpbmctYmx1ZS01MDBdPVwidGhpcy5zcHhGb2N1c2VkICYmIHRoaXMuc3B4VGFiYmFibGUgJiYgIXRoaXMuc3B4RGlzYWJsZWRcIj5cclxuICAgIDxkaXYgY2xhc3M9XCJ0ZXh0LWVsbGlwc2lzIG92ZXJmbG93LWhpZGRlbiB3aGl0ZXNwYWNlLW5vd3JhcFwiPjxuZy1jb250ZW50PjwvbmctY29udGVudD48L2Rpdj5cclxuICAgIDwvYnV0dG9uPmAsXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBTcHhTdWdnZXN0aW9uQ29tcG9uZW50IHtcclxuICBASW5wdXQoKSBzcHhEaXNhYmxlZCA9IGZhbHNlO1xyXG4gIEBJbnB1dCgpIHNweEZvY3VzZWQgPSBmYWxzZTtcclxuICBASW5wdXQoKSBzcHhTZWxlY3RlZCA9IGZhbHNlO1xyXG4gIEBJbnB1dCgpIHNweFRhYmJhYmxlID0gZmFsc2U7XHJcbn1cclxuIl19
|
|
60
|
+
}] });
|
|
61
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3B4LXN1Z2dlc3Rpb24uY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvc29mdHBhay9jb21wb25lbnRzL3NweC1zdWdnZXN0aW9uL3NweC1zdWdnZXN0aW9uLmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBRSxNQUFNLGVBQWUsQ0FBQzs7QUEyQmpELE1BQU0sT0FBTyxzQkFBc0I7SUF6Qm5DO1FBMEJFLGdCQUFXLEdBQUcsS0FBSyxFQUFXLENBQUM7UUFDL0IsZUFBVSxHQUFHLEtBQUssRUFBVyxDQUFDO1FBQzlCLGdCQUFXLEdBQUcsS0FBSyxFQUFXLENBQUM7UUFDL0IsZ0JBQVcsR0FBRyxLQUFLLEVBQVcsQ0FBQztLQUNoQzsrR0FMWSxzQkFBc0I7bUdBQXRCLHNCQUFzQiwybkJBdEJ2Qjs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Y0FvQkU7OzRGQUVELHNCQUFzQjtrQkF6QmxDLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLGdCQUFnQjtvQkFDMUIsVUFBVSxFQUFFLElBQUk7b0JBQ2hCLFFBQVEsRUFBRTs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Y0FvQkU7aUJBQ2IiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIGlucHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcblxyXG5AQ29tcG9uZW50KHtcclxuICBzZWxlY3RvcjogJ3NweC1zdWdnZXN0aW9uJyxcclxuICBzdGFuZGFsb25lOiB0cnVlLFxyXG4gIHRlbXBsYXRlOiBgPGJ1dHRvblxyXG4gICAgdHlwZT1cImJ1dHRvblwiXHJcbiAgICBjbGFzcz1cInNweC1zdWdnZXN0aW9uIGJsb2NrIHJvdW5kZWQgdGV4dC1ncmF5LTkwMCB0ZXh0LXNtIHAtMyB3LWZ1bGwgdGV4dC1sZWZ0IHRydW5jYXRlIG91dGxpbmUtbm9uZVwiXHJcbiAgICBbY2xhc3MuYmctc2t5LTEwMF09XCIhdGhpcy5zcHhTZWxlY3RlZCgpICYmICF0aGlzLnNweERpc2FibGVkKClcIlxyXG4gICAgW2NsYXNzLmZvY3VzOnJpbmctc2t5LTMwMF09XCIhdGhpcy5zcHhTZWxlY3RlZCgpICYmICF0aGlzLnNweERpc2FibGVkKClcIlxyXG4gICAgW2NsYXNzLmhvdmVyOmJnLXNreS0zMDBdPVwiIXRoaXMuc3B4U2VsZWN0ZWQoKSAmJiAhdGhpcy5zcHhEaXNhYmxlZCgpXCJcclxuICAgIFtjbGFzcy5hY3RpdmU6Ymctc2t5LTMwMF09XCIhdGhpcy5zcHhTZWxlY3RlZCgpICYmICF0aGlzLnNweERpc2FibGVkKClcIlxyXG4gICAgW2NsYXNzLmJnLWdyYXktMjAwXT1cInRoaXMuc3B4RGlzYWJsZWQoKSAmJiAhdGhpcy5zcHhTZWxlY3RlZCgpXCJcclxuICAgIFtjbGFzcy5iZy1ncmF5LTQwMF09XCJ0aGlzLnNweERpc2FibGVkKCkgJiYgdGhpcy5zcHhTZWxlY3RlZCgpXCJcclxuICAgIFtjbGFzcy5jdXJzb3Itbm90LWFsbG93ZWRdPVwidGhpcy5zcHhEaXNhYmxlZCgpXCJcclxuICAgIFtjbGFzcy5vcGFjaXR5LTYwXT1cInRoaXMuc3B4RGlzYWJsZWQoKVwiXHJcbiAgICBbY2xhc3MuYmctZ3JhZGllbnQtdG8tcl09XCJ0aGlzLnNweFNlbGVjdGVkKCkgJiYgIXRoaXMuc3B4RGlzYWJsZWQoKVwiXHJcbiAgICBbY2xhc3MuZnJvbS10ZWFsLTQwMF09XCJ0aGlzLnNweFNlbGVjdGVkKCkgJiYgIXRoaXMuc3B4RGlzYWJsZWQoKVwiXHJcbiAgICBbY2xhc3MudG8tdGVhbC02MDBdPVwidGhpcy5zcHhTZWxlY3RlZCgpICYmICF0aGlzLnNweERpc2FibGVkKClcIlxyXG4gICAgW2NsYXNzLmZvbnQtYm9sZF09XCJ0aGlzLnNweFNlbGVjdGVkKClcIlxyXG4gICAgW2F0dHIudGFiaW5kZXhdPVwidGhpcy5zcHhUYWJiYWJsZSgpICYmICF0aGlzLnNweERpc2FibGVkKCkgPyAwIDogLTFcIlxyXG4gICAgW2NsYXNzLnJpbmctMl09XCJ0aGlzLnNweEZvY3VzZWQoKSAmJiB0aGlzLnNweFRhYmJhYmxlKCkgJiYgIXRoaXMuc3B4RGlzYWJsZWQoKVwiXHJcbiAgICBbY2xhc3MucmluZy1vZmZzZXQtMl09XCJ0aGlzLnNweEZvY3VzZWQoKSAmJiB0aGlzLnNweFRhYmJhYmxlKCkgJiYgIXRoaXMuc3B4RGlzYWJsZWQoKVwiXHJcbiAgICBbY2xhc3MucmluZy1ibHVlLTUwMF09XCJ0aGlzLnNweEZvY3VzZWQoKSAmJiB0aGlzLnNweFRhYmJhYmxlKCkgJiYgIXRoaXMuc3B4RGlzYWJsZWQoKVwiPlxyXG4gICAgPGRpdiBjbGFzcz1cInRleHQtZWxsaXBzaXMgb3ZlcmZsb3ctaGlkZGVuIHdoaXRlc3BhY2Utbm93cmFwXCI+PG5nLWNvbnRlbnQ+PC9uZy1jb250ZW50PjwvZGl2PlxyXG4gICAgPC9idXR0b24+YCxcclxufSlcclxuZXhwb3J0IGNsYXNzIFNweFN1Z2dlc3Rpb25Db21wb25lbnQge1xyXG4gIHNweERpc2FibGVkID0gaW5wdXQ8Ym9vbGVhbj4oKTtcclxuICBzcHhGb2N1c2VkID0gaW5wdXQ8Ym9vbGVhbj4oKTtcclxuICBzcHhTZWxlY3RlZCA9IGlucHV0PGJvb2xlYW4+KCk7XHJcbiAgc3B4VGFiYmFibGUgPSBpbnB1dDxib29sZWFuPigpO1xyXG59XHJcbiJdfQ==
|
|
@@ -8,7 +8,7 @@ class SpxFormSectionComponent {
|
|
|
8
8
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SpxFormSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
9
9
|
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.13", type: SpxFormSectionComponent, isStandalone: true, selector: "spx-form-section", inputs: { spxIndex: "spxIndex", spxIndexSecondary: "spxIndexSecondary", spxTitle: "spxTitle", spxShowTitle: "spxShowTitle" }, ngImport: i0, template: `@if (this.spxShowTitle) {
|
|
10
10
|
<div class="spx-form-section__title mb-2 flex gap-3 items-center">
|
|
11
|
-
<div class="spx-form-section__title-index flex content-center text-center text-sm h-[30px] w-[30px] font-bold">{{this.spxIndex}}@if (this.spxIndexSecondary) {
|
|
11
|
+
<div class="spx-form-section__title-index flex content-center text-center text-sm h-[30px] w-[30px] font-bold rounded">{{this.spxIndex}}@if (this.spxIndexSecondary) {
|
|
12
12
|
{{ this.spxIndexSecondary }}
|
|
13
13
|
}</div>
|
|
14
14
|
<div class="spx-form-section__content font-bold grow text-black dark:text-white">{{this.spxTitle}}</div>
|
|
@@ -22,7 +22,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
22
22
|
type: Component,
|
|
23
23
|
args: [{ selector: 'spx-form-section', standalone: true, imports: [], template: `@if (this.spxShowTitle) {
|
|
24
24
|
<div class="spx-form-section__title mb-2 flex gap-3 items-center">
|
|
25
|
-
<div class="spx-form-section__title-index flex content-center text-center text-sm h-[30px] w-[30px] font-bold">{{this.spxIndex}}@if (this.spxIndexSecondary) {
|
|
25
|
+
<div class="spx-form-section__title-index flex content-center text-center text-sm h-[30px] w-[30px] font-bold rounded">{{this.spxIndex}}@if (this.spxIndexSecondary) {
|
|
26
26
|
{{ this.spxIndexSecondary }}
|
|
27
27
|
}</div>
|
|
28
28
|
<div class="spx-form-section__content font-bold grow text-black dark:text-white">{{this.spxTitle}}</div>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"softpak-components-spx-form-section.mjs","sources":["../../../../projects/softpak/components/spx-form-section/spx-form-section.component.ts","../../../../projects/softpak/components/spx-form-section/softpak-components-spx-form-section.ts"],"sourcesContent":["\r\nimport { Component, Input } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'spx-form-section',\r\n standalone: true,\r\n imports: [],\r\n template: `@if (this.spxShowTitle) {\r\n <div class=\"spx-form-section__title mb-2 flex gap-3 items-center\">\r\n <div class=\"spx-form-section__title-index flex content-center text-center text-sm h-[30px] w-[30px] font-bold\">{{this.spxIndex}}@if (this.spxIndexSecondary) {\r\n {{ this.spxIndexSecondary }}\r\n }</div>\r\n <div class=\"spx-form-section__content font-bold grow text-black dark:text-white\">{{this.spxTitle}}</div>\r\n </div>\r\n}\r\n<div class=\"flex flex-col gap-3\">\r\n <ng-content></ng-content>\r\n</div>`,\r\n styles: `\r\n :host {\r\n display: block;\r\n }\r\n \r\n .spx-form-section__title-index {\r\n background-color: var(--spx-form-section--index--background-color);\r\n color: var(--spx-form-section--index--color, #FFFFFF);\r\n display: inline-block;\r\n vertical-align: middle;\r\n }\r\n\r\n .spx-form-section__content {\r\n color: var(--spx-form-section--index--background-color, #000000);\r\n }\r\n\r\n @media (prefers-color-scheme: dark) {\r\n .spx-form-section__content {\r\n color: var(--spx-form-section--index--background-color, #FFFFFF);\r\n }\r\n}\r\n `,\r\n})\r\nexport class SpxFormSectionComponent {\r\n @Input() spxIndex?: number;\r\n @Input() spxIndexSecondary?: number;\r\n @Input() spxTitle?: string;\r\n @Input() spxShowTitle = true;\r\n}\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;MAyCa,uBAAuB,CAAA;AAtCpC,IAAA,WAAA,GAAA;QA0CW,IAAY,CAAA,YAAA,GAAG,IAAI,CAAC;AAC9B,KAAA;+GALY,uBAAuB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA,EAAA;AAAvB,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,SAAA,EAAA,IAAA,EAAA,uBAAuB,EAlCxB,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,kBAAA,EAAA,MAAA,EAAA,EAAA,QAAA,EAAA,UAAA,EAAA,iBAAA,EAAA,mBAAA,EAAA,QAAA,EAAA,UAAA,EAAA,YAAA,EAAA,cAAA,EAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EAAA,CAAA;;;;;;;;;;AAUL,MAAA,CAAA,EAAA,QAAA,EAAA,IAAA,EAAA,MAAA,EAAA,CAAA,obAAA,CAAA,EAAA,CAAA,CAAA,EAAA;;4FAwBM,uBAAuB,EAAA,UAAA,EAAA,CAAA;kBAtCnC,SAAS;AACE,YAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,kBAAkB,EAChB,UAAA,EAAA,IAAI,EACP,OAAA,EAAA,EAAE,EACD,QAAA,EAAA,CAAA;;;;;;;;;;AAUL,MAAA,CAAA,EAAA,MAAA,EAAA,CAAA,obAAA,CAAA,EAAA,CAAA;8BAyBI,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,iBAAiB,EAAA,CAAA;sBAAzB,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;;;AC7CR;;AAEG;;;;"}
|
|
1
|
+
{"version":3,"file":"softpak-components-spx-form-section.mjs","sources":["../../../../projects/softpak/components/spx-form-section/spx-form-section.component.ts","../../../../projects/softpak/components/spx-form-section/softpak-components-spx-form-section.ts"],"sourcesContent":["\r\nimport { Component, Input } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'spx-form-section',\r\n standalone: true,\r\n imports: [],\r\n template: `@if (this.spxShowTitle) {\r\n <div class=\"spx-form-section__title mb-2 flex gap-3 items-center\">\r\n <div class=\"spx-form-section__title-index flex content-center text-center text-sm h-[30px] w-[30px] font-bold rounded\">{{this.spxIndex}}@if (this.spxIndexSecondary) {\r\n {{ this.spxIndexSecondary }}\r\n }</div>\r\n <div class=\"spx-form-section__content font-bold grow text-black dark:text-white\">{{this.spxTitle}}</div>\r\n </div>\r\n}\r\n<div class=\"flex flex-col gap-3\">\r\n <ng-content></ng-content>\r\n</div>`,\r\n styles: `\r\n :host {\r\n display: block;\r\n }\r\n \r\n .spx-form-section__title-index {\r\n background-color: var(--spx-form-section--index--background-color);\r\n color: var(--spx-form-section--index--color, #FFFFFF);\r\n display: inline-block;\r\n vertical-align: middle;\r\n }\r\n\r\n .spx-form-section__content {\r\n color: var(--spx-form-section--index--background-color, #000000);\r\n }\r\n\r\n @media (prefers-color-scheme: dark) {\r\n .spx-form-section__content {\r\n color: var(--spx-form-section--index--background-color, #FFFFFF);\r\n }\r\n}\r\n `,\r\n})\r\nexport class SpxFormSectionComponent {\r\n @Input() spxIndex?: number;\r\n @Input() spxIndexSecondary?: number;\r\n @Input() spxTitle?: string;\r\n @Input() spxShowTitle = true;\r\n}\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;MAyCa,uBAAuB,CAAA;AAtCpC,IAAA,WAAA,GAAA;QA0CW,IAAY,CAAA,YAAA,GAAG,IAAI,CAAC;AAC9B,KAAA;+GALY,uBAAuB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA,EAAA;AAAvB,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,SAAA,EAAA,IAAA,EAAA,uBAAuB,EAlCxB,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,kBAAA,EAAA,MAAA,EAAA,EAAA,QAAA,EAAA,UAAA,EAAA,iBAAA,EAAA,mBAAA,EAAA,QAAA,EAAA,UAAA,EAAA,YAAA,EAAA,cAAA,EAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EAAA,CAAA;;;;;;;;;;AAUL,MAAA,CAAA,EAAA,QAAA,EAAA,IAAA,EAAA,MAAA,EAAA,CAAA,obAAA,CAAA,EAAA,CAAA,CAAA,EAAA;;4FAwBM,uBAAuB,EAAA,UAAA,EAAA,CAAA;kBAtCnC,SAAS;AACE,YAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,kBAAkB,EAChB,UAAA,EAAA,IAAI,EACP,OAAA,EAAA,EAAE,EACD,QAAA,EAAA,CAAA;;;;;;;;;;AAUL,MAAA,CAAA,EAAA,MAAA,EAAA,CAAA,obAAA,CAAA,EAAA,CAAA;8BAyBI,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,iBAAiB,EAAA,CAAA;sBAAzB,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;;;AC7CR;;AAEG;;;;"}
|
|
@@ -26,6 +26,7 @@ var SpxSeverityEnum;
|
|
|
26
26
|
SpxSeverityEnum["success"] = "success";
|
|
27
27
|
SpxSeverityEnum["unknown"] = "unknown";
|
|
28
28
|
SpxSeverityEnum["warning"] = "warning";
|
|
29
|
+
SpxSeverityEnum["primary"] = "primary";
|
|
29
30
|
})(SpxSeverityEnum || (SpxSeverityEnum = {}));
|
|
30
31
|
|
|
31
32
|
const valuePairToValue = (pair) => {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"softpak-components-spx-helpers.mjs","sources":["../../../../projects/softpak/components/spx-helpers/calc-check-digit.function.ts","../../../../projects/softpak/components/spx-helpers/spx-severity.enum.ts","../../../../projects/softpak/components/spx-helpers/value-pair-to-value.function.ts","../../../../projects/softpak/components/spx-helpers/softpak-components-spx-helpers.ts"],"sourcesContent":["export const calcCheckDigit = (container: string): string => {\r\n container = container.toUpperCase();\r\n\r\n const mapping = {\r\n 0: 0, 1: 1, 2: 2, 3: 3, 4: 4, 5: 5, 6: 6, 7: 7, 8: 8, 9: 9,\r\n A: 10, B: 12, C: 13, D: 14, E: 15, F: 16, G: 17, H: 18, I: 19, J: 20, K: 21, L: 23, M: 24,\r\n N: 25, O: 26, P: 27, Q: 28, R: 29, S: 30, T: 31, U: 32, V: 34, W: 35, X: 36, Y: 37, Z: 38\r\n };\r\n\r\n let total = 0;\r\n\r\n for (let i = 0; i < container.length; i++) {\r\n const cChar = container.substr(i, 1);\r\n const value = (mapping as any)[cChar];\r\n const multiplier = Math.pow(2, i);\r\n total = total + (value * multiplier);\r\n }\r\n\r\n let outcome = total % 11;\r\n if (outcome === 10) {\r\n outcome = 0;\r\n }\r\n\r\n return outcome.toString();\r\n}\r\n","export enum SpxSeverityEnum {\r\n error = 'error',\r\n info = 'info',\r\n success = 'success',\r\n unknown = 'unknown',\r\n warning = 'warning',\r\n}\r\n","export const valuePairToValue = (pair: any) => {\r\n if (pair === null || (typeof pair === 'object' && pair.value === undefined)) {\r\n return null;\r\n }\r\n return pair?.value || pair?.value === false || pair?.value === null || pair?.value === '' || pair?.value === 0 ? pair?.value : pair;\r\n};\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"AAAa,MAAA,cAAc,GAAG,CAAC,SAAiB,KAAY;AAC1D,IAAA,SAAS,GAAG,SAAS,CAAC,WAAW,EAAE,CAAC;AAEpC,IAAA,MAAM,OAAO,GAAG;AACd,QAAA,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC;QAC1D,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE;QACzF,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE;KAC1F,CAAC;IAEF,IAAI,KAAK,GAAG,CAAC,CAAC;AAEd,IAAA,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,SAAS,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;QACzC,MAAM,KAAK,GAAG,SAAS,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;AACrC,QAAA,MAAM,KAAK,GAAI,OAAe,CAAC,KAAK,CAAC,CAAC;QACtC,MAAM,UAAU,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QAClC,KAAK,GAAG,KAAK,IAAI,KAAK,GAAG,UAAU,CAAC,CAAC;KACtC;AAED,IAAA,IAAI,OAAO,GAAG,KAAK,GAAG,EAAE,CAAC;AACzB,IAAA,IAAI,OAAO,KAAK,EAAE,EAAE;QAClB,OAAO,GAAG,CAAC,CAAC;KACb;AAED,IAAA,OAAO,OAAO,CAAC,QAAQ,EAAE,CAAC;AAC5B;;ICxBY,
|
|
1
|
+
{"version":3,"file":"softpak-components-spx-helpers.mjs","sources":["../../../../projects/softpak/components/spx-helpers/calc-check-digit.function.ts","../../../../projects/softpak/components/spx-helpers/spx-severity.enum.ts","../../../../projects/softpak/components/spx-helpers/value-pair-to-value.function.ts","../../../../projects/softpak/components/spx-helpers/softpak-components-spx-helpers.ts"],"sourcesContent":["export const calcCheckDigit = (container: string): string => {\r\n container = container.toUpperCase();\r\n\r\n const mapping = {\r\n 0: 0, 1: 1, 2: 2, 3: 3, 4: 4, 5: 5, 6: 6, 7: 7, 8: 8, 9: 9,\r\n A: 10, B: 12, C: 13, D: 14, E: 15, F: 16, G: 17, H: 18, I: 19, J: 20, K: 21, L: 23, M: 24,\r\n N: 25, O: 26, P: 27, Q: 28, R: 29, S: 30, T: 31, U: 32, V: 34, W: 35, X: 36, Y: 37, Z: 38\r\n };\r\n\r\n let total = 0;\r\n\r\n for (let i = 0; i < container.length; i++) {\r\n const cChar = container.substr(i, 1);\r\n const value = (mapping as any)[cChar];\r\n const multiplier = Math.pow(2, i);\r\n total = total + (value * multiplier);\r\n }\r\n\r\n let outcome = total % 11;\r\n if (outcome === 10) {\r\n outcome = 0;\r\n }\r\n\r\n return outcome.toString();\r\n}\r\n","export enum SpxSeverityEnum {\r\n error = 'error',\r\n info = 'info',\r\n success = 'success',\r\n unknown = 'unknown',\r\n warning = 'warning',\r\n primary = 'primary',\r\n}\r\n","export const valuePairToValue = (pair: any) => {\r\n if (pair === null || (typeof pair === 'object' && pair.value === undefined)) {\r\n return null;\r\n }\r\n return pair?.value || pair?.value === false || pair?.value === null || pair?.value === '' || pair?.value === 0 ? pair?.value : pair;\r\n};\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"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"}
|