@db-ux/ngx-core-components 2.1.1 → 2.2.0
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/components/custom-select/custom-select.d.ts +9 -3
- package/components/custom-select/model.d.ts +3 -3
- package/components/input/input.d.ts +2 -1
- package/components/popover/model.d.ts +0 -1
- package/components/popover/popover.d.ts +8 -3
- package/components/select/select.d.ts +5 -2
- package/components/stack/stack.d.ts +1 -1
- package/components/textarea/model.d.ts +4 -0
- package/components/textarea/textarea.d.ts +3 -1
- package/components/tooltip/model.d.ts +5 -3
- package/components/tooltip/tooltip.d.ts +10 -3
- package/fesm2022/db-ux-ngx-core-components.mjs +619 -244
- package/fesm2022/db-ux-ngx-core-components.mjs.map +1 -1
- package/package.json +3 -3
- package/shared/model.d.ts +18 -3
- package/utils/document-scroll-listener.d.ts +9 -0
- package/utils/floating-components.d.ts +7 -0
- package/utils/index.d.ts +4 -13
- package/utils/navigation.d.ts +1 -1
|
@@ -42,78 +42,6 @@ const cls = (...args) => {
|
|
|
42
42
|
}
|
|
43
43
|
return result.trim();
|
|
44
44
|
};
|
|
45
|
-
const visibleInVX = (el) => {
|
|
46
|
-
const { left, right } = el.getBoundingClientRect();
|
|
47
|
-
const { innerWidth } = window;
|
|
48
|
-
return left >= 0 && right <= innerWidth;
|
|
49
|
-
};
|
|
50
|
-
const visibleInVY = (el) => {
|
|
51
|
-
const { top, bottom } = el.getBoundingClientRect();
|
|
52
|
-
const { innerHeight } = window;
|
|
53
|
-
return top >= 0 && bottom <= innerHeight;
|
|
54
|
-
};
|
|
55
|
-
const isInView = (el) => {
|
|
56
|
-
const { top, bottom, left, right } = el.getBoundingClientRect();
|
|
57
|
-
const { innerHeight, innerWidth } = window;
|
|
58
|
-
let outTop = top < 0;
|
|
59
|
-
let outBottom = bottom > innerHeight;
|
|
60
|
-
let outLeft = left < 0;
|
|
61
|
-
let outRight = right > innerWidth;
|
|
62
|
-
// We need to check if it was already outside
|
|
63
|
-
const outsideY = el.hasAttribute('data-outside-vy');
|
|
64
|
-
const outsideX = el.hasAttribute('data-outside-vx');
|
|
65
|
-
const parentRect = el?.parentElement?.getBoundingClientRect();
|
|
66
|
-
if (parentRect) {
|
|
67
|
-
if (outsideY) {
|
|
68
|
-
const position = el.getAttribute('data-outside-vy');
|
|
69
|
-
if (position === 'top') {
|
|
70
|
-
outTop = parentRect.top - (bottom - parentRect.bottom) < 0;
|
|
71
|
-
}
|
|
72
|
-
else {
|
|
73
|
-
outBottom = parentRect.bottom + (parentRect.top - top) > innerHeight;
|
|
74
|
-
}
|
|
75
|
-
}
|
|
76
|
-
if (outsideX) {
|
|
77
|
-
const position = el.getAttribute('data-outside-vx');
|
|
78
|
-
if (position === 'left') {
|
|
79
|
-
outLeft = parentRect.left - (right - parentRect.right) < 0;
|
|
80
|
-
}
|
|
81
|
-
else {
|
|
82
|
-
outRight = parentRect.right + (parentRect.left - left) > innerWidth;
|
|
83
|
-
}
|
|
84
|
-
}
|
|
85
|
-
}
|
|
86
|
-
return {
|
|
87
|
-
outTop,
|
|
88
|
-
outBottom,
|
|
89
|
-
outLeft,
|
|
90
|
-
outRight
|
|
91
|
-
};
|
|
92
|
-
};
|
|
93
|
-
const handleDataOutside = (el) => {
|
|
94
|
-
const { outTop, outBottom, outLeft, outRight } = isInView(el);
|
|
95
|
-
let dataOutsidePair = {};
|
|
96
|
-
if (outTop || outBottom) {
|
|
97
|
-
dataOutsidePair = {
|
|
98
|
-
vy: outTop ? 'top' : 'bottom'
|
|
99
|
-
};
|
|
100
|
-
el.setAttribute('data-outside-vy', dataOutsidePair.vy);
|
|
101
|
-
}
|
|
102
|
-
else {
|
|
103
|
-
el.removeAttribute('data-outside-vy');
|
|
104
|
-
}
|
|
105
|
-
if (outLeft || outRight) {
|
|
106
|
-
dataOutsidePair = {
|
|
107
|
-
...dataOutsidePair,
|
|
108
|
-
vx: outRight ? 'right' : 'left'
|
|
109
|
-
};
|
|
110
|
-
el.setAttribute('data-outside-vx', dataOutsidePair.vx);
|
|
111
|
-
}
|
|
112
|
-
else {
|
|
113
|
-
el.removeAttribute('data-outside-vx');
|
|
114
|
-
}
|
|
115
|
-
return dataOutsidePair;
|
|
116
|
-
};
|
|
117
45
|
const isArrayOfStrings = (value) => Array.isArray(value) && value.every(item => typeof item === 'string');
|
|
118
46
|
const appleOs = ['Mac', 'iPhone', 'iPad', 'iPod'];
|
|
119
47
|
const hasVoiceOver = () => typeof window !== 'undefined' && appleOs.some(os => window.navigator.userAgent.includes(os));
|
|
@@ -175,6 +103,10 @@ const stringPropVisible = (givenString, showString) => {
|
|
|
175
103
|
}
|
|
176
104
|
};
|
|
177
105
|
const getSearchInput = (element) => element.querySelector(`input[type="search"]`);
|
|
106
|
+
const getOptionKey = (option, prefix) => {
|
|
107
|
+
const key = option.id ?? option.value ?? uuid();
|
|
108
|
+
return `${prefix}${key}`;
|
|
109
|
+
};
|
|
178
110
|
|
|
179
111
|
const defaultProps$z = {};
|
|
180
112
|
class DBButton {
|
|
@@ -246,8 +178,8 @@ class DBButton {
|
|
|
246
178
|
const element = this._ref()?.nativeElement;
|
|
247
179
|
this.enableAttributePassing(element, "db-button");
|
|
248
180
|
}
|
|
249
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
250
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.
|
|
181
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBButton, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
182
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.14", type: DBButton, isStandalone: true, selector: "db-button", inputs: { id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null }, className: { classPropertyName: "className", publicName: "className", isSignal: true, isRequired: false, transformFunction: null }, type: { classPropertyName: "type", publicName: "type", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: false, transformFunction: null }, icon: { classPropertyName: "icon", publicName: "icon", isSignal: true, isRequired: false, transformFunction: null }, showIcon: { classPropertyName: "showIcon", publicName: "showIcon", isSignal: true, isRequired: false, transformFunction: null }, size: { classPropertyName: "size", publicName: "size", isSignal: true, isRequired: false, transformFunction: null }, state: { classPropertyName: "state", publicName: "state", isSignal: true, isRequired: false, transformFunction: null }, width: { classPropertyName: "width", publicName: "width", isSignal: true, isRequired: false, transformFunction: null }, variant: { classPropertyName: "variant", publicName: "variant", isSignal: true, isRequired: false, transformFunction: null }, noText: { classPropertyName: "noText", publicName: "noText", isSignal: true, isRequired: false, transformFunction: null }, name: { classPropertyName: "name", publicName: "name", isSignal: true, isRequired: false, transformFunction: null }, form: { classPropertyName: "form", publicName: "form", isSignal: true, isRequired: false, transformFunction: null }, value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: false, transformFunction: null }, describedbyid: { classPropertyName: "describedbyid", publicName: "describedbyid", isSignal: true, isRequired: false, transformFunction: null }, ariaexpanded: { classPropertyName: "ariaexpanded", publicName: "ariaexpanded", isSignal: true, isRequired: false, transformFunction: null }, ariapressed: { classPropertyName: "ariapressed", publicName: "ariapressed", isSignal: true, isRequired: false, transformFunction: null }, text: { classPropertyName: "text", publicName: "text", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { click: "click" }, viewQueries: [{ propertyName: "_ref", first: true, predicate: ["_ref"], descendants: true, isSignal: true }], ngImport: i0, template: `
|
|
251
183
|
<button
|
|
252
184
|
#_ref
|
|
253
185
|
[attr.id]="id()"
|
|
@@ -276,7 +208,7 @@ class DBButton {
|
|
|
276
208
|
</button>
|
|
277
209
|
`, isInline: true, styles: [":host{display:contents}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }] }); }
|
|
278
210
|
}
|
|
279
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
211
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBButton, decorators: [{
|
|
280
212
|
type: Component,
|
|
281
213
|
args: [{ selector: "db-button", standalone: true, imports: [CommonModule], template: `
|
|
282
214
|
<button
|
|
@@ -476,8 +408,8 @@ class DBNotification {
|
|
|
476
408
|
const element = this._ref()?.nativeElement;
|
|
477
409
|
this.enableAttributePassing(element, "db-notification");
|
|
478
410
|
}
|
|
479
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
480
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.
|
|
411
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBNotification, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
412
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.14", type: DBNotification, isStandalone: true, selector: "db-notification", inputs: { id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null }, className: { classPropertyName: "className", publicName: "className", isSignal: true, isRequired: false, transformFunction: null }, ariaLive: { classPropertyName: "ariaLive", publicName: "ariaLive", isSignal: true, isRequired: false, transformFunction: null }, semantic: { classPropertyName: "semantic", publicName: "semantic", isSignal: true, isRequired: false, transformFunction: null }, variant: { classPropertyName: "variant", publicName: "variant", isSignal: true, isRequired: false, transformFunction: null }, icon: { classPropertyName: "icon", publicName: "icon", isSignal: true, isRequired: false, transformFunction: null }, showIcon: { classPropertyName: "showIcon", publicName: "showIcon", isSignal: true, isRequired: false, transformFunction: null }, linkVariant: { classPropertyName: "linkVariant", publicName: "linkVariant", isSignal: true, isRequired: false, transformFunction: null }, headline: { classPropertyName: "headline", publicName: "headline", isSignal: true, isRequired: false, transformFunction: null }, showHeadline: { classPropertyName: "showHeadline", publicName: "showHeadline", isSignal: true, isRequired: false, transformFunction: null }, text: { classPropertyName: "text", publicName: "text", isSignal: true, isRequired: false, transformFunction: null }, timestamp: { classPropertyName: "timestamp", publicName: "timestamp", isSignal: true, isRequired: false, transformFunction: null }, showTimestamp: { classPropertyName: "showTimestamp", publicName: "showTimestamp", isSignal: true, isRequired: false, transformFunction: null }, closeable: { classPropertyName: "closeable", publicName: "closeable", isSignal: true, isRequired: false, transformFunction: null }, closeButtonId: { classPropertyName: "closeButtonId", publicName: "closeButtonId", isSignal: true, isRequired: false, transformFunction: null }, closeButtonText: { classPropertyName: "closeButtonText", publicName: "closeButtonText", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { close: "close" }, viewQueries: [{ propertyName: "_ref", first: true, predicate: ["_ref"], descendants: true, isSignal: true }], ngImport: i0, template: `
|
|
481
413
|
<article
|
|
482
414
|
#_ref
|
|
483
415
|
[attr.id]="id()"
|
|
@@ -517,7 +449,7 @@ class DBNotification {
|
|
|
517
449
|
</article>
|
|
518
450
|
`, isInline: true, styles: [":host{display:contents}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "component", type: DBButton, selector: "db-button", inputs: ["id", "className", "type", "disabled", "label", "icon", "showIcon", "size", "state", "width", "variant", "noText", "name", "form", "value", "describedbyid", "ariaexpanded", "ariapressed", "text"], outputs: ["click"] }] }); }
|
|
519
451
|
}
|
|
520
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
452
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBNotification, decorators: [{
|
|
521
453
|
type: Component,
|
|
522
454
|
args: [{ selector: "db-notification", standalone: true, imports: [CommonModule, DBButton], template: `
|
|
523
455
|
<article
|
|
@@ -635,8 +567,8 @@ class DBBadge {
|
|
|
635
567
|
const element = this._ref()?.nativeElement;
|
|
636
568
|
this.enableAttributePassing(element, "db-badge");
|
|
637
569
|
}
|
|
638
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
639
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.
|
|
570
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBBadge, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
571
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.14", type: DBBadge, isStandalone: true, selector: "db-badge", inputs: { placement: { classPropertyName: "placement", publicName: "placement", isSignal: true, isRequired: false, transformFunction: null }, id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null }, className: { classPropertyName: "className", publicName: "className", isSignal: true, isRequired: false, transformFunction: null }, semantic: { classPropertyName: "semantic", publicName: "semantic", isSignal: true, isRequired: false, transformFunction: null }, size: { classPropertyName: "size", publicName: "size", isSignal: true, isRequired: false, transformFunction: null }, emphasis: { classPropertyName: "emphasis", publicName: "emphasis", isSignal: true, isRequired: false, transformFunction: null }, label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: false, transformFunction: null }, text: { classPropertyName: "text", publicName: "text", isSignal: true, isRequired: false, transformFunction: null } }, viewQueries: [{ propertyName: "_ref", first: true, predicate: ["_ref"], descendants: true, isSignal: true }], ngImport: i0, template: `
|
|
640
572
|
<span
|
|
641
573
|
#_ref
|
|
642
574
|
[attr.id]="id()"
|
|
@@ -653,7 +585,7 @@ class DBBadge {
|
|
|
653
585
|
</span>
|
|
654
586
|
`, isInline: true, styles: [":host{display:contents}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }] }); }
|
|
655
587
|
}
|
|
656
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
588
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBBadge, decorators: [{
|
|
657
589
|
type: Component,
|
|
658
590
|
args: [{ selector: "db-badge", standalone: true, imports: [CommonModule], template: `
|
|
659
591
|
<span
|
|
@@ -723,8 +655,8 @@ class DBBrand {
|
|
|
723
655
|
const element = this._ref()?.nativeElement;
|
|
724
656
|
this.enableAttributePassing(element, "db-brand");
|
|
725
657
|
}
|
|
726
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
727
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.
|
|
658
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBBrand, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
659
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.14", type: DBBrand, isStandalone: true, selector: "db-brand", inputs: { hideLogo: { classPropertyName: "hideLogo", publicName: "hideLogo", isSignal: true, isRequired: false, transformFunction: null }, icon: { classPropertyName: "icon", publicName: "icon", isSignal: true, isRequired: false, transformFunction: null }, showIcon: { classPropertyName: "showIcon", publicName: "showIcon", isSignal: true, isRequired: false, transformFunction: null }, id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null }, className: { classPropertyName: "className", publicName: "className", isSignal: true, isRequired: false, transformFunction: null }, text: { classPropertyName: "text", publicName: "text", isSignal: true, isRequired: false, transformFunction: null } }, viewQueries: [{ propertyName: "_ref", first: true, predicate: ["_ref"], descendants: true, isSignal: true }], ngImport: i0, template: `
|
|
728
660
|
<div
|
|
729
661
|
#_ref
|
|
730
662
|
[attr.data-icon]="hideLogo() ? 'none' : icon() ?? DEFAULT_ICON"
|
|
@@ -738,7 +670,7 @@ class DBBrand {
|
|
|
738
670
|
</div>
|
|
739
671
|
`, isInline: true, styles: [":host{display:contents}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }] }); }
|
|
740
672
|
}
|
|
741
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
673
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBBrand, decorators: [{
|
|
742
674
|
type: Component,
|
|
743
675
|
args: [{ selector: "db-brand", standalone: true, imports: [CommonModule], template: `
|
|
744
676
|
<div
|
|
@@ -808,8 +740,8 @@ class DBCard {
|
|
|
808
740
|
const element = this._ref()?.nativeElement;
|
|
809
741
|
this.enableAttributePassing(element, "db-card");
|
|
810
742
|
}
|
|
811
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
812
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "19.2.
|
|
743
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBCard, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
744
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "19.2.14", type: DBCard, isStandalone: true, selector: "db-card", inputs: { id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null }, className: { classPropertyName: "className", publicName: "className", isSignal: true, isRequired: false, transformFunction: null }, behavior: { classPropertyName: "behavior", publicName: "behavior", isSignal: true, isRequired: false, transformFunction: null }, elevationLevel: { classPropertyName: "elevationLevel", publicName: "elevationLevel", isSignal: true, isRequired: false, transformFunction: null }, spacing: { classPropertyName: "spacing", publicName: "spacing", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { click: "click" }, viewQueries: [{ propertyName: "_ref", first: true, predicate: ["_ref"], descendants: true, isSignal: true }], ngImport: i0, template: `
|
|
813
745
|
<div
|
|
814
746
|
#_ref
|
|
815
747
|
[attr.id]="id()"
|
|
@@ -825,7 +757,7 @@ class DBCard {
|
|
|
825
757
|
</div>
|
|
826
758
|
`, isInline: true, styles: [":host{display:contents}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }] }); }
|
|
827
759
|
}
|
|
828
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
760
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBCard, decorators: [{
|
|
829
761
|
type: Component,
|
|
830
762
|
args: [{ selector: "db-card", standalone: true, imports: [CommonModule], template: `
|
|
831
763
|
<div
|
|
@@ -905,8 +837,8 @@ class DBInfotext {
|
|
|
905
837
|
const element = this._ref()?.nativeElement;
|
|
906
838
|
this.enableAttributePassing(element, "db-infotext");
|
|
907
839
|
}
|
|
908
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
909
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.
|
|
840
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBInfotext, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
841
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.14", type: DBInfotext, isStandalone: true, selector: "db-infotext", inputs: { id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null }, className: { classPropertyName: "className", publicName: "className", isSignal: true, isRequired: false, transformFunction: null }, icon: { classPropertyName: "icon", publicName: "icon", isSignal: true, isRequired: false, transformFunction: null }, semantic: { classPropertyName: "semantic", publicName: "semantic", isSignal: true, isRequired: false, transformFunction: null }, size: { classPropertyName: "size", publicName: "size", isSignal: true, isRequired: false, transformFunction: null }, showIcon: { classPropertyName: "showIcon", publicName: "showIcon", isSignal: true, isRequired: false, transformFunction: null }, text: { classPropertyName: "text", publicName: "text", isSignal: true, isRequired: false, transformFunction: null } }, viewQueries: [{ propertyName: "_ref", first: true, predicate: ["_ref"], descendants: true, isSignal: true }], ngImport: i0, template: `
|
|
910
842
|
<span
|
|
911
843
|
#_ref
|
|
912
844
|
[attr.id]="id()"
|
|
@@ -922,7 +854,7 @@ class DBInfotext {
|
|
|
922
854
|
</span>
|
|
923
855
|
`, isInline: true, styles: [":host{display:contents}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }] }); }
|
|
924
856
|
}
|
|
925
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
857
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBInfotext, decorators: [{
|
|
926
858
|
type: Component,
|
|
927
859
|
args: [{ selector: "db-infotext", standalone: true, imports: [CommonModule], template: `
|
|
928
860
|
<span
|
|
@@ -1149,8 +1081,8 @@ class DBCheckbox {
|
|
|
1149
1081
|
const element = this._ref()?.nativeElement;
|
|
1150
1082
|
this.enableAttributePassing(element, "db-checkbox");
|
|
1151
1083
|
}
|
|
1152
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1153
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.
|
|
1084
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBCheckbox, deps: [{ token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1085
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.14", type: DBCheckbox, isStandalone: true, selector: "db-checkbox", inputs: { id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null }, invalidMessage: { classPropertyName: "invalidMessage", publicName: "invalidMessage", isSignal: true, isRequired: false, transformFunction: null }, message: { classPropertyName: "message", publicName: "message", isSignal: true, isRequired: false, transformFunction: null }, showMessage: { classPropertyName: "showMessage", publicName: "showMessage", isSignal: true, isRequired: false, transformFunction: null }, indeterminate: { classPropertyName: "indeterminate", publicName: "indeterminate", isSignal: true, isRequired: false, transformFunction: null }, checked: { classPropertyName: "checked", publicName: "checked", isSignal: true, isRequired: false, transformFunction: null }, validMessage: { classPropertyName: "validMessage", publicName: "validMessage", isSignal: true, isRequired: false, transformFunction: null }, validation: { classPropertyName: "validation", publicName: "validation", isSignal: true, isRequired: false, transformFunction: null }, required: { classPropertyName: "required", publicName: "required", isSignal: true, isRequired: false, transformFunction: null }, className: { classPropertyName: "className", publicName: "className", isSignal: true, isRequired: false, transformFunction: null }, size: { classPropertyName: "size", publicName: "size", isSignal: true, isRequired: false, transformFunction: null }, showLabel: { classPropertyName: "showLabel", publicName: "showLabel", isSignal: true, isRequired: false, transformFunction: null }, name: { classPropertyName: "name", publicName: "name", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: false, transformFunction: null }, ariaDescribedBy: { classPropertyName: "ariaDescribedBy", publicName: "ariaDescribedBy", isSignal: true, isRequired: false, transformFunction: null }, label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: false, transformFunction: null }, messageIcon: { classPropertyName: "messageIcon", publicName: "messageIcon", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { checked: "checkedChange", disabled: "disabledChange", change: "change", blur: "blur", focus: "focus" }, providers: [{
|
|
1154
1086
|
provide: NG_VALUE_ACCESSOR,
|
|
1155
1087
|
useExisting: DBCheckbox,
|
|
1156
1088
|
multi: true
|
|
@@ -1199,7 +1131,7 @@ class DBCheckbox {
|
|
|
1199
1131
|
</div>
|
|
1200
1132
|
`, isInline: true, styles: [":host{display:contents}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "component", type: DBInfotext, selector: "db-infotext", inputs: ["id", "className", "icon", "semantic", "size", "showIcon", "text"] }] }); }
|
|
1201
1133
|
}
|
|
1202
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1134
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBCheckbox, decorators: [{
|
|
1203
1135
|
type: Component,
|
|
1204
1136
|
args: [{ providers: [{
|
|
1205
1137
|
provide: NG_VALUE_ACCESSOR,
|
|
@@ -1299,8 +1231,8 @@ class DBDivider {
|
|
|
1299
1231
|
const element = this._ref()?.nativeElement;
|
|
1300
1232
|
this.enableAttributePassing(element, "db-divider");
|
|
1301
1233
|
}
|
|
1302
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1303
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "19.2.
|
|
1234
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBDivider, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1235
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "19.2.14", type: DBDivider, isStandalone: true, selector: "db-divider", inputs: { id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null }, margin: { classPropertyName: "margin", publicName: "margin", isSignal: true, isRequired: false, transformFunction: null }, variant: { classPropertyName: "variant", publicName: "variant", isSignal: true, isRequired: false, transformFunction: null }, emphasis: { classPropertyName: "emphasis", publicName: "emphasis", isSignal: true, isRequired: false, transformFunction: null }, width: { classPropertyName: "width", publicName: "width", isSignal: true, isRequired: false, transformFunction: null }, className: { classPropertyName: "className", publicName: "className", isSignal: true, isRequired: false, transformFunction: null } }, viewQueries: [{ propertyName: "_ref", first: true, predicate: ["_ref"], descendants: true, isSignal: true }], ngImport: i0, template: `
|
|
1304
1236
|
<div
|
|
1305
1237
|
#_ref
|
|
1306
1238
|
[attr.id]="id()"
|
|
@@ -1312,7 +1244,7 @@ class DBDivider {
|
|
|
1312
1244
|
></div>
|
|
1313
1245
|
`, isInline: true, styles: [":host{display:contents}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }] }); }
|
|
1314
1246
|
}
|
|
1315
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1247
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBDivider, decorators: [{
|
|
1316
1248
|
type: Component,
|
|
1317
1249
|
args: [{ selector: "db-divider", standalone: true, imports: [CommonModule], template: `
|
|
1318
1250
|
<div
|
|
@@ -1439,8 +1371,8 @@ class DBDrawer {
|
|
|
1439
1371
|
const element = this._ref()?.nativeElement;
|
|
1440
1372
|
this.enableAttributePassing(element, "db-drawer");
|
|
1441
1373
|
}
|
|
1442
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1443
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "19.2.
|
|
1374
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBDrawer, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1375
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "19.2.14", type: DBDrawer, isStandalone: true, selector: "db-drawer", inputs: { open: { classPropertyName: "open", publicName: "open", isSignal: true, isRequired: false, transformFunction: null }, backdrop: { classPropertyName: "backdrop", publicName: "backdrop", isSignal: true, isRequired: false, transformFunction: null }, variant: { classPropertyName: "variant", publicName: "variant", isSignal: true, isRequired: false, transformFunction: null }, id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null }, className: { classPropertyName: "className", publicName: "className", isSignal: true, isRequired: false, transformFunction: null }, spacing: { classPropertyName: "spacing", publicName: "spacing", isSignal: true, isRequired: false, transformFunction: null }, width: { classPropertyName: "width", publicName: "width", isSignal: true, isRequired: false, transformFunction: null }, direction: { classPropertyName: "direction", publicName: "direction", isSignal: true, isRequired: false, transformFunction: null }, rounded: { classPropertyName: "rounded", publicName: "rounded", isSignal: true, isRequired: false, transformFunction: null }, closeButtonId: { classPropertyName: "closeButtonId", publicName: "closeButtonId", isSignal: true, isRequired: false, transformFunction: null }, closeButtonText: { classPropertyName: "closeButtonText", publicName: "closeButtonText", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { close: "close" }, viewQueries: [{ propertyName: "_ref", first: true, predicate: ["_ref"], descendants: true, isSignal: true }, { propertyName: "dialogContainerRef", first: true, predicate: ["dialogContainerRef"], descendants: true, isSignal: true }], ngImport: i0, template: `
|
|
1444
1376
|
<dialog
|
|
1445
1377
|
class="db-drawer"
|
|
1446
1378
|
[attr.id]="id()"
|
|
@@ -1478,7 +1410,7 @@ class DBDrawer {
|
|
|
1478
1410
|
</dialog>
|
|
1479
1411
|
`, isInline: true, styles: [":host{display:contents}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "component", type: DBButton, selector: "db-button", inputs: ["id", "className", "type", "disabled", "label", "icon", "showIcon", "size", "state", "width", "variant", "noText", "name", "form", "value", "describedbyid", "ariaexpanded", "ariapressed", "text"], outputs: ["click"] }] }); }
|
|
1480
1412
|
}
|
|
1481
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1413
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBDrawer, decorators: [{
|
|
1482
1414
|
type: Component,
|
|
1483
1415
|
args: [{ selector: "db-drawer", standalone: true, imports: [CommonModule, DBButton], template: `
|
|
1484
1416
|
<dialog
|
|
@@ -1519,6 +1451,298 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.13", ngImpo
|
|
|
1519
1451
|
`, styles: [":host{display:contents}\n"] }]
|
|
1520
1452
|
}], ctorParameters: () => [] });
|
|
1521
1453
|
|
|
1454
|
+
// TODO: We should reevaluate this as soon as CSS Anchor Positioning is supported in all relevant browsers
|
|
1455
|
+
const isInView = (el) => {
|
|
1456
|
+
const { top, bottom, left, right } = el.getBoundingClientRect();
|
|
1457
|
+
const { innerHeight, innerWidth } = window;
|
|
1458
|
+
let outTop = top < 0;
|
|
1459
|
+
let outBottom = bottom > innerHeight;
|
|
1460
|
+
let outLeft = left < 0;
|
|
1461
|
+
let outRight = right > innerWidth;
|
|
1462
|
+
// We need to check if it was already outside
|
|
1463
|
+
const outsideY = el.dataset['outsideVy'];
|
|
1464
|
+
const outsideX = el.dataset['outsideVx'];
|
|
1465
|
+
const parentRect = el?.parentElement?.getBoundingClientRect();
|
|
1466
|
+
if (parentRect) {
|
|
1467
|
+
if (outsideY) {
|
|
1468
|
+
const position = el.dataset['outsideVy'];
|
|
1469
|
+
if (position === 'top') {
|
|
1470
|
+
outTop = parentRect.top - (bottom - parentRect.bottom) < 0;
|
|
1471
|
+
}
|
|
1472
|
+
else {
|
|
1473
|
+
outBottom = parentRect.bottom + (parentRect.top - top) > innerHeight;
|
|
1474
|
+
}
|
|
1475
|
+
}
|
|
1476
|
+
if (outsideX) {
|
|
1477
|
+
const position = el.dataset['outsideVx'];
|
|
1478
|
+
if (position === 'left') {
|
|
1479
|
+
outLeft = parentRect.left - (right - parentRect.right) < 0;
|
|
1480
|
+
}
|
|
1481
|
+
else {
|
|
1482
|
+
outRight = parentRect.right + (parentRect.left - left) > innerWidth;
|
|
1483
|
+
}
|
|
1484
|
+
}
|
|
1485
|
+
}
|
|
1486
|
+
return {
|
|
1487
|
+
outTop,
|
|
1488
|
+
outBottom,
|
|
1489
|
+
outLeft,
|
|
1490
|
+
outRight
|
|
1491
|
+
};
|
|
1492
|
+
};
|
|
1493
|
+
const handleDataOutside = (el) => {
|
|
1494
|
+
const { outTop, outBottom, outLeft, outRight } = isInView(el);
|
|
1495
|
+
let dataOutsidePair = {};
|
|
1496
|
+
if (outTop || outBottom) {
|
|
1497
|
+
dataOutsidePair = {
|
|
1498
|
+
vy: outTop ? 'top' : 'bottom'
|
|
1499
|
+
};
|
|
1500
|
+
el.dataset['outsideVy'] = dataOutsidePair.vy;
|
|
1501
|
+
}
|
|
1502
|
+
else {
|
|
1503
|
+
delete el.dataset['outsideVy'];
|
|
1504
|
+
}
|
|
1505
|
+
if (outLeft || outRight) {
|
|
1506
|
+
dataOutsidePair = {
|
|
1507
|
+
...dataOutsidePair,
|
|
1508
|
+
vx: outRight ? 'right' : 'left'
|
|
1509
|
+
};
|
|
1510
|
+
el.dataset['outsideVx'] = dataOutsidePair.vx;
|
|
1511
|
+
}
|
|
1512
|
+
else {
|
|
1513
|
+
delete el.dataset['outsideVx'];
|
|
1514
|
+
}
|
|
1515
|
+
return dataOutsidePair;
|
|
1516
|
+
};
|
|
1517
|
+
const handleFixedDropdown = (element, parent, placement) => {
|
|
1518
|
+
// We skip this if we are in mobile it's already fixed
|
|
1519
|
+
if (getComputedStyle(element).zIndex === '9999')
|
|
1520
|
+
return;
|
|
1521
|
+
const { top, bottom, childHeight, childWidth, width, right, left, correctedPlacement } = getFloatingProps(element, parent, placement);
|
|
1522
|
+
const fullWidth = element.dataset['width'] === 'full';
|
|
1523
|
+
if (fullWidth) {
|
|
1524
|
+
element.style.inlineSize = `${width}px`;
|
|
1525
|
+
}
|
|
1526
|
+
if (correctedPlacement === 'top' || correctedPlacement === 'bottom' || correctedPlacement === 'top-start' || correctedPlacement === 'bottom-start') {
|
|
1527
|
+
element.style.insetInlineStart = `${left}px`;
|
|
1528
|
+
}
|
|
1529
|
+
else if (correctedPlacement === 'top-end' || correctedPlacement === 'bottom-end') {
|
|
1530
|
+
element.style.insetInlineStart = `${right - childWidth}px`;
|
|
1531
|
+
}
|
|
1532
|
+
if (correctedPlacement?.startsWith('top')) {
|
|
1533
|
+
element.style.insetBlockStart = `${top - childHeight}px`;
|
|
1534
|
+
}
|
|
1535
|
+
else if (correctedPlacement?.startsWith('bottom')) {
|
|
1536
|
+
element.style.insetBlockStart = `${bottom}px`;
|
|
1537
|
+
}
|
|
1538
|
+
element.style.position = 'fixed';
|
|
1539
|
+
};
|
|
1540
|
+
const getFloatingProps = (element, parent, placement) => {
|
|
1541
|
+
const childRect = element.getBoundingClientRect();
|
|
1542
|
+
const { top, height, bottom, right, left, width } = parent.getBoundingClientRect();
|
|
1543
|
+
const { innerHeight, innerWidth } = window;
|
|
1544
|
+
let childHeight = childRect.height;
|
|
1545
|
+
let childWidth = childRect.width;
|
|
1546
|
+
if (placement === 'bottom' || placement === 'top') {
|
|
1547
|
+
childWidth = childWidth / 2;
|
|
1548
|
+
}
|
|
1549
|
+
if (placement === 'left' || placement === 'right') {
|
|
1550
|
+
childHeight = childHeight / 2;
|
|
1551
|
+
}
|
|
1552
|
+
const outsideBottom = bottom + childHeight > innerHeight;
|
|
1553
|
+
const outsideTop = top - childHeight < 0;
|
|
1554
|
+
const outsideLeft = left - childWidth < 0;
|
|
1555
|
+
const outsideRight = right + childWidth > innerWidth;
|
|
1556
|
+
let correctedPlacement = placement;
|
|
1557
|
+
if (placement.startsWith('bottom')) {
|
|
1558
|
+
if (outsideBottom) {
|
|
1559
|
+
correctedPlacement = placement?.replace('bottom', 'top');
|
|
1560
|
+
if (outsideLeft && outsideRight) {
|
|
1561
|
+
correctedPlacement = 'top';
|
|
1562
|
+
}
|
|
1563
|
+
else if (outsideLeft) {
|
|
1564
|
+
correctedPlacement = 'top-start';
|
|
1565
|
+
}
|
|
1566
|
+
else if (outsideRight) {
|
|
1567
|
+
correctedPlacement = 'top-end';
|
|
1568
|
+
}
|
|
1569
|
+
}
|
|
1570
|
+
else {
|
|
1571
|
+
if (outsideLeft && outsideRight) {
|
|
1572
|
+
correctedPlacement = 'bottom';
|
|
1573
|
+
}
|
|
1574
|
+
else if (outsideLeft) {
|
|
1575
|
+
correctedPlacement = 'bottom-start';
|
|
1576
|
+
}
|
|
1577
|
+
else if (outsideRight) {
|
|
1578
|
+
correctedPlacement = 'bottom-end';
|
|
1579
|
+
}
|
|
1580
|
+
}
|
|
1581
|
+
}
|
|
1582
|
+
else if (placement.startsWith('top')) {
|
|
1583
|
+
if (outsideTop) {
|
|
1584
|
+
correctedPlacement = placement?.replace('top', 'bottom');
|
|
1585
|
+
if (outsideLeft && outsideRight) {
|
|
1586
|
+
correctedPlacement = 'bottom';
|
|
1587
|
+
}
|
|
1588
|
+
else if (outsideLeft) {
|
|
1589
|
+
correctedPlacement = 'bottom-start';
|
|
1590
|
+
}
|
|
1591
|
+
else if (outsideRight) {
|
|
1592
|
+
correctedPlacement = 'bottom-end';
|
|
1593
|
+
}
|
|
1594
|
+
}
|
|
1595
|
+
else {
|
|
1596
|
+
if (outsideLeft && outsideRight) {
|
|
1597
|
+
correctedPlacement = 'top';
|
|
1598
|
+
}
|
|
1599
|
+
else if (outsideLeft) {
|
|
1600
|
+
correctedPlacement = 'top-start';
|
|
1601
|
+
}
|
|
1602
|
+
else if (outsideRight) {
|
|
1603
|
+
correctedPlacement = 'top-end';
|
|
1604
|
+
}
|
|
1605
|
+
}
|
|
1606
|
+
}
|
|
1607
|
+
else if (placement.startsWith('left')) {
|
|
1608
|
+
if (outsideLeft) {
|
|
1609
|
+
correctedPlacement = placement?.replace('left', 'right');
|
|
1610
|
+
if (outsideBottom && outsideTop) {
|
|
1611
|
+
correctedPlacement = 'right';
|
|
1612
|
+
}
|
|
1613
|
+
else if (outsideBottom) {
|
|
1614
|
+
correctedPlacement = 'right-end';
|
|
1615
|
+
}
|
|
1616
|
+
else if (outsideTop) {
|
|
1617
|
+
correctedPlacement = 'right-start';
|
|
1618
|
+
}
|
|
1619
|
+
}
|
|
1620
|
+
else {
|
|
1621
|
+
if (outsideBottom && outsideTop) {
|
|
1622
|
+
correctedPlacement = 'left';
|
|
1623
|
+
}
|
|
1624
|
+
else if (outsideBottom) {
|
|
1625
|
+
correctedPlacement = 'left-end';
|
|
1626
|
+
}
|
|
1627
|
+
else if (outsideTop) {
|
|
1628
|
+
correctedPlacement = 'left-start';
|
|
1629
|
+
}
|
|
1630
|
+
}
|
|
1631
|
+
}
|
|
1632
|
+
else if (correctedPlacement.startsWith('right')) {
|
|
1633
|
+
if (outsideRight) {
|
|
1634
|
+
correctedPlacement = placement?.replace('right', 'left');
|
|
1635
|
+
if (outsideBottom && outsideTop) {
|
|
1636
|
+
correctedPlacement = 'left';
|
|
1637
|
+
}
|
|
1638
|
+
else if (outsideBottom) {
|
|
1639
|
+
correctedPlacement = 'left-end';
|
|
1640
|
+
}
|
|
1641
|
+
else if (outsideTop) {
|
|
1642
|
+
correctedPlacement = 'left-start';
|
|
1643
|
+
}
|
|
1644
|
+
}
|
|
1645
|
+
else {
|
|
1646
|
+
if (outsideBottom && outsideTop) {
|
|
1647
|
+
correctedPlacement = 'right';
|
|
1648
|
+
}
|
|
1649
|
+
else if (outsideBottom) {
|
|
1650
|
+
correctedPlacement = 'right-end';
|
|
1651
|
+
}
|
|
1652
|
+
else if (outsideTop) {
|
|
1653
|
+
correctedPlacement = 'right-start';
|
|
1654
|
+
}
|
|
1655
|
+
}
|
|
1656
|
+
}
|
|
1657
|
+
return {
|
|
1658
|
+
top,
|
|
1659
|
+
bottom,
|
|
1660
|
+
right,
|
|
1661
|
+
height,
|
|
1662
|
+
width,
|
|
1663
|
+
left,
|
|
1664
|
+
childHeight: childRect.height,
|
|
1665
|
+
childWidth: childRect.width,
|
|
1666
|
+
correctedPlacement,
|
|
1667
|
+
innerWidth,
|
|
1668
|
+
innerHeight
|
|
1669
|
+
};
|
|
1670
|
+
};
|
|
1671
|
+
const handleFixedPopover = (element, parent, placement) => {
|
|
1672
|
+
const distance = getComputedStyle(element).getPropertyValue('--db-popover-distance') ?? '0px';
|
|
1673
|
+
const { top, height, width, childHeight, childWidth, right, left, bottom, correctedPlacement, innerWidth, innerHeight } = getFloatingProps(element, parent, placement);
|
|
1674
|
+
// Tooltip arrow position
|
|
1675
|
+
if (childWidth > width && (correctedPlacement.startsWith('bottom') || correctedPlacement.startsWith('top'))) {
|
|
1676
|
+
const diff = width / 2 / childWidth * 100;
|
|
1677
|
+
if (correctedPlacement.endsWith('start')) {
|
|
1678
|
+
element.style.setProperty('--db-tooltip-arrow-inline-start', `${diff}%`);
|
|
1679
|
+
}
|
|
1680
|
+
else if (correctedPlacement.endsWith('end')) {
|
|
1681
|
+
element.style.setProperty('--db-tooltip-arrow-inline-start', `${100 - diff}%`);
|
|
1682
|
+
}
|
|
1683
|
+
}
|
|
1684
|
+
if (childHeight > height && (correctedPlacement.startsWith('left') || correctedPlacement.startsWith('bottom'))) {
|
|
1685
|
+
const diff = height / 2 / childHeight * 100;
|
|
1686
|
+
if (correctedPlacement.endsWith('start')) {
|
|
1687
|
+
element.style.setProperty('--db-tooltip-arrow-block-start', `${diff}%`);
|
|
1688
|
+
}
|
|
1689
|
+
else if (correctedPlacement.endsWith('end')) {
|
|
1690
|
+
element.style.setProperty('--db-tooltip-arrow-block-start', `${100 - diff}%`);
|
|
1691
|
+
}
|
|
1692
|
+
}
|
|
1693
|
+
// Popover position
|
|
1694
|
+
if (correctedPlacement === 'right' || correctedPlacement === 'left') {
|
|
1695
|
+
// center horizontally
|
|
1696
|
+
element.style.insetBlockStart = `${top + height / 2}px`;
|
|
1697
|
+
}
|
|
1698
|
+
else if (correctedPlacement === 'right-start' || correctedPlacement === 'left-start') {
|
|
1699
|
+
const end = top + childHeight;
|
|
1700
|
+
element.style.insetBlockStart = `${top}px`;
|
|
1701
|
+
element.style.insetBlockEnd = `${end > innerHeight ? innerHeight : end}px`;
|
|
1702
|
+
}
|
|
1703
|
+
else if (correctedPlacement === 'right-end' || correctedPlacement === 'left-end') {
|
|
1704
|
+
const start = bottom - childHeight;
|
|
1705
|
+
element.style.insetBlockStart = `${start < 0 ? 0 : start}px`;
|
|
1706
|
+
element.style.insetBlockEnd = `${bottom}px`;
|
|
1707
|
+
}
|
|
1708
|
+
else if (correctedPlacement === 'top' || correctedPlacement === 'bottom') {
|
|
1709
|
+
// center vertically
|
|
1710
|
+
element.style.insetInlineStart = `${left + width / 2}px`;
|
|
1711
|
+
}
|
|
1712
|
+
else if (correctedPlacement === 'top-start' || correctedPlacement === 'bottom-start') {
|
|
1713
|
+
const end = left + childWidth;
|
|
1714
|
+
element.style.insetInlineStart = `${left}px`;
|
|
1715
|
+
element.style.insetInlineEnd = `${end > innerWidth ? innerWidth : end}px`;
|
|
1716
|
+
}
|
|
1717
|
+
else if (correctedPlacement === 'top-end' || correctedPlacement === 'bottom-end') {
|
|
1718
|
+
const start = left - childWidth;
|
|
1719
|
+
element.style.insetInlineStart = `${right - childWidth}px`;
|
|
1720
|
+
element.style.insetInlineEnd = `${start < 0 ? 0 : start}px`;
|
|
1721
|
+
}
|
|
1722
|
+
if (correctedPlacement?.startsWith('right')) {
|
|
1723
|
+
const end = right + childWidth;
|
|
1724
|
+
element.style.insetInlineStart = `calc(${right}px + ${distance})`;
|
|
1725
|
+
element.style.insetInlineEnd = `calc(${end > innerWidth ? innerWidth : end}px + ${distance})`;
|
|
1726
|
+
}
|
|
1727
|
+
else if (correctedPlacement?.startsWith('left')) {
|
|
1728
|
+
const start = left - childWidth;
|
|
1729
|
+
element.style.insetInlineStart = `calc(${start < 0 ? 0 : start}px - ${distance})`;
|
|
1730
|
+
element.style.insetInlineEnd = `calc(${right}px - ${distance})`;
|
|
1731
|
+
}
|
|
1732
|
+
else if (correctedPlacement?.startsWith('top')) {
|
|
1733
|
+
const start = top - childHeight;
|
|
1734
|
+
element.style.insetBlockStart = `calc(${start < 0 ? 0 : start}px - ${distance})`;
|
|
1735
|
+
element.style.insetBlockEnd = `calc(${bottom}px - ${distance})`;
|
|
1736
|
+
}
|
|
1737
|
+
else if (correctedPlacement?.startsWith('bottom')) {
|
|
1738
|
+
const end = bottom + childHeight;
|
|
1739
|
+
element.style.insetBlockStart = `calc(${bottom}px + ${distance})`;
|
|
1740
|
+
element.style.insetBlockEnd = `calc(${end > innerHeight ? innerHeight : end}px + ${distance})`;
|
|
1741
|
+
}
|
|
1742
|
+
element.style.position = 'fixed';
|
|
1743
|
+
element.setAttribute('data-corrected-placement', correctedPlacement);
|
|
1744
|
+
};
|
|
1745
|
+
|
|
1522
1746
|
const isEventTargetNavigationItem = (event) => {
|
|
1523
1747
|
const { target } = event;
|
|
1524
1748
|
return Boolean(!target?.classList?.contains('db-navigation-item-expand-button') && target?.parentElement?.classList.contains('db-navigation-item'));
|
|
@@ -1653,10 +1877,10 @@ var navigation = {
|
|
|
1653
1877
|
|
|
1654
1878
|
/* Angular cannot handle multiple slots with the same name, we need to use Directives for this. */
|
|
1655
1879
|
class SecondaryActionDirective {
|
|
1656
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1657
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
1880
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: SecondaryActionDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1881
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.14", type: SecondaryActionDirective, isStandalone: true, selector: "[dbSecondaryAction]", ngImport: i0 }); }
|
|
1658
1882
|
}
|
|
1659
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1883
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: SecondaryActionDirective, decorators: [{
|
|
1660
1884
|
type: Directive,
|
|
1661
1885
|
args: [{
|
|
1662
1886
|
selector: '[dbSecondaryAction]',
|
|
@@ -1666,10 +1890,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.13", ngImpo
|
|
|
1666
1890
|
|
|
1667
1891
|
/* Angular cannot handle multiple slots with the same name, we need to use Directives for this. */
|
|
1668
1892
|
class MetaNavigationDirective {
|
|
1669
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1670
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
1893
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: MetaNavigationDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1894
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.14", type: MetaNavigationDirective, isStandalone: true, selector: "[dbMetaNavigation]", ngImport: i0 }); }
|
|
1671
1895
|
}
|
|
1672
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1896
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: MetaNavigationDirective, decorators: [{
|
|
1673
1897
|
type: Directive,
|
|
1674
1898
|
args: [{
|
|
1675
1899
|
selector: '[dbMetaNavigation]',
|
|
@@ -1679,10 +1903,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.13", ngImpo
|
|
|
1679
1903
|
|
|
1680
1904
|
/* Angular cannot handle multiple slots with the same name, we need to use Directives for this. */
|
|
1681
1905
|
class NavigationDirective {
|
|
1682
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1683
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
1906
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: NavigationDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1907
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.14", type: NavigationDirective, isStandalone: true, selector: "[dbNavigation]", ngImport: i0 }); }
|
|
1684
1908
|
}
|
|
1685
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1909
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: NavigationDirective, decorators: [{
|
|
1686
1910
|
type: Directive,
|
|
1687
1911
|
args: [{
|
|
1688
1912
|
selector: '[dbNavigation]',
|
|
@@ -1784,8 +2008,8 @@ class DBHeader {
|
|
|
1784
2008
|
const element = this._ref()?.nativeElement;
|
|
1785
2009
|
this.enableAttributePassing(element, "db-header");
|
|
1786
2010
|
}
|
|
1787
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1788
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "19.2.
|
|
2011
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBHeader, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2012
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "19.2.14", type: DBHeader, isStandalone: true, selector: "db-header", inputs: { id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null }, forceMobile: { classPropertyName: "forceMobile", publicName: "forceMobile", isSignal: true, isRequired: false, transformFunction: null }, drawerOpen: { classPropertyName: "drawerOpen", publicName: "drawerOpen", isSignal: true, isRequired: false, transformFunction: null }, className: { classPropertyName: "className", publicName: "className", isSignal: true, isRequired: false, transformFunction: null }, width: { classPropertyName: "width", publicName: "width", isSignal: true, isRequired: false, transformFunction: null }, burgerMenuLabel: { classPropertyName: "burgerMenuLabel", publicName: "burgerMenuLabel", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { toggle: "toggle" }, queries: [{ propertyName: "dbNavigation", first: true, predicate: NavigationDirective, descendants: true, read: TemplateRef }, { propertyName: "dbMetaNavigation", first: true, predicate: MetaNavigationDirective, descendants: true, read: TemplateRef }, { propertyName: "dbSecondaryAction", first: true, predicate: SecondaryActionDirective, descendants: true, read: TemplateRef }], viewQueries: [{ propertyName: "_ref", first: true, predicate: ["_ref"], descendants: true, isSignal: true }], ngImport: i0, template: `
|
|
1789
2013
|
<header
|
|
1790
2014
|
#_ref
|
|
1791
2015
|
[class]="cls('db-header', className())"
|
|
@@ -1848,7 +2072,7 @@ class DBHeader {
|
|
|
1848
2072
|
</header>
|
|
1849
2073
|
`, isInline: true, styles: [":host{display:contents}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: DBDrawer, selector: "db-drawer", inputs: ["open", "backdrop", "variant", "id", "className", "spacing", "width", "direction", "rounded", "closeButtonId", "closeButtonText"], outputs: ["close"] }, { kind: "component", type: DBButton, selector: "db-button", inputs: ["id", "className", "type", "disabled", "label", "icon", "showIcon", "size", "state", "width", "variant", "noText", "name", "form", "value", "describedbyid", "ariaexpanded", "ariapressed", "text"], outputs: ["click"] }] }); }
|
|
1850
2074
|
}
|
|
1851
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2075
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBHeader, decorators: [{
|
|
1852
2076
|
type: Component,
|
|
1853
2077
|
args: [{ selector: "db-header", standalone: true, imports: [CommonModule, DBDrawer, DBButton], template: `
|
|
1854
2078
|
<header
|
|
@@ -1971,8 +2195,8 @@ class DBIcon {
|
|
|
1971
2195
|
const element = this._ref()?.nativeElement;
|
|
1972
2196
|
this.enableAttributePassing(element, "db-icon");
|
|
1973
2197
|
}
|
|
1974
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1975
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.
|
|
2198
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBIcon, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2199
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.14", type: DBIcon, isStandalone: true, selector: "db-icon", inputs: { id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null }, className: { classPropertyName: "className", publicName: "className", isSignal: true, isRequired: false, transformFunction: null }, icon: { classPropertyName: "icon", publicName: "icon", isSignal: true, isRequired: false, transformFunction: null }, weight: { classPropertyName: "weight", publicName: "weight", isSignal: true, isRequired: false, transformFunction: null }, variant: { classPropertyName: "variant", publicName: "variant", isSignal: true, isRequired: false, transformFunction: null }, text: { classPropertyName: "text", publicName: "text", isSignal: true, isRequired: false, transformFunction: null } }, viewQueries: [{ propertyName: "_ref", first: true, predicate: ["_ref"], descendants: true, isSignal: true }], ngImport: i0, template: `
|
|
1976
2200
|
<span
|
|
1977
2201
|
aria-hidden="true"
|
|
1978
2202
|
#_ref
|
|
@@ -1988,7 +2212,7 @@ class DBIcon {
|
|
|
1988
2212
|
</span>
|
|
1989
2213
|
`, isInline: true, styles: [":host{display:contents}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }] }); }
|
|
1990
2214
|
}
|
|
1991
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2215
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBIcon, decorators: [{
|
|
1992
2216
|
type: Component,
|
|
1993
2217
|
args: [{ selector: "db-icon", standalone: true, imports: [CommonModule], template: `
|
|
1994
2218
|
<span
|
|
@@ -2111,6 +2335,7 @@ class DBInput {
|
|
|
2111
2335
|
this.icon = input();
|
|
2112
2336
|
this.iconAfter = input();
|
|
2113
2337
|
this.label = input();
|
|
2338
|
+
this.fieldSizing = input();
|
|
2114
2339
|
this.name = input();
|
|
2115
2340
|
this.type = input();
|
|
2116
2341
|
this.placeholder = input();
|
|
@@ -2245,8 +2470,8 @@ class DBInput {
|
|
|
2245
2470
|
const element = this._ref()?.nativeElement;
|
|
2246
2471
|
this.enableAttributePassing(element, "db-input");
|
|
2247
2472
|
}
|
|
2248
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2249
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.
|
|
2473
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBInput, deps: [{ token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2474
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.14", type: DBInput, isStandalone: true, selector: "db-input", inputs: { id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null }, invalidMessage: { classPropertyName: "invalidMessage", publicName: "invalidMessage", isSignal: true, isRequired: false, transformFunction: null }, dataListId: { classPropertyName: "dataListId", publicName: "dataListId", isSignal: true, isRequired: false, transformFunction: null }, message: { classPropertyName: "message", publicName: "message", isSignal: true, isRequired: false, transformFunction: null }, showMessage: { classPropertyName: "showMessage", publicName: "showMessage", isSignal: true, isRequired: false, transformFunction: null }, value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: false, transformFunction: null }, validMessage: { classPropertyName: "validMessage", publicName: "validMessage", isSignal: true, isRequired: false, transformFunction: null }, validation: { classPropertyName: "validation", publicName: "validation", isSignal: true, isRequired: false, transformFunction: null }, required: { classPropertyName: "required", publicName: "required", isSignal: true, isRequired: false, transformFunction: null }, minLength: { classPropertyName: "minLength", publicName: "minLength", isSignal: true, isRequired: false, transformFunction: null }, maxLength: { classPropertyName: "maxLength", publicName: "maxLength", isSignal: true, isRequired: false, transformFunction: null }, pattern: { classPropertyName: "pattern", publicName: "pattern", isSignal: true, isRequired: false, transformFunction: null }, dataList: { classPropertyName: "dataList", publicName: "dataList", isSignal: true, isRequired: false, transformFunction: null }, className: { classPropertyName: "className", publicName: "className", isSignal: true, isRequired: false, transformFunction: null }, variant: { classPropertyName: "variant", publicName: "variant", isSignal: true, isRequired: false, transformFunction: null }, showLabel: { classPropertyName: "showLabel", publicName: "showLabel", isSignal: true, isRequired: false, transformFunction: null }, showIcon: { classPropertyName: "showIcon", publicName: "showIcon", isSignal: true, isRequired: false, transformFunction: null }, icon: { classPropertyName: "icon", publicName: "icon", isSignal: true, isRequired: false, transformFunction: null }, iconAfter: { classPropertyName: "iconAfter", publicName: "iconAfter", isSignal: true, isRequired: false, transformFunction: null }, label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: false, transformFunction: null }, fieldSizing: { classPropertyName: "fieldSizing", publicName: "fieldSizing", isSignal: true, isRequired: false, transformFunction: null }, name: { classPropertyName: "name", publicName: "name", isSignal: true, isRequired: false, transformFunction: null }, type: { classPropertyName: "type", publicName: "type", isSignal: true, isRequired: false, transformFunction: null }, placeholder: { classPropertyName: "placeholder", publicName: "placeholder", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, step: { classPropertyName: "step", publicName: "step", isSignal: true, isRequired: false, transformFunction: null }, maxlength: { classPropertyName: "maxlength", publicName: "maxlength", isSignal: true, isRequired: false, transformFunction: null }, minlength: { classPropertyName: "minlength", publicName: "minlength", isSignal: true, isRequired: false, transformFunction: null }, max: { classPropertyName: "max", publicName: "max", isSignal: true, isRequired: false, transformFunction: null }, min: { classPropertyName: "min", publicName: "min", isSignal: true, isRequired: false, transformFunction: null }, readOnly: { classPropertyName: "readOnly", publicName: "readOnly", isSignal: true, isRequired: false, transformFunction: null }, readonly: { classPropertyName: "readonly", publicName: "readonly", isSignal: true, isRequired: false, transformFunction: null }, form: { classPropertyName: "form", publicName: "form", isSignal: true, isRequired: false, transformFunction: null }, size: { classPropertyName: "size", publicName: "size", isSignal: true, isRequired: false, transformFunction: null }, autocomplete: { classPropertyName: "autocomplete", publicName: "autocomplete", isSignal: true, isRequired: false, transformFunction: null }, autofocus: { classPropertyName: "autofocus", publicName: "autofocus", isSignal: true, isRequired: false, transformFunction: null }, ariaDescribedBy: { classPropertyName: "ariaDescribedBy", publicName: "ariaDescribedBy", isSignal: true, isRequired: false, transformFunction: null }, messageIcon: { classPropertyName: "messageIcon", publicName: "messageIcon", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { value: "valueChange", disabled: "disabledChange", input: "input", change: "change", blur: "blur", focus: "focus" }, providers: [{
|
|
2250
2475
|
provide: NG_VALUE_ACCESSOR,
|
|
2251
2476
|
useExisting: DBInput,
|
|
2252
2477
|
multi: true
|
|
@@ -2264,6 +2489,7 @@ class DBInput {
|
|
|
2264
2489
|
<input
|
|
2265
2490
|
[attr.aria-invalid]="validation() === 'invalid'"
|
|
2266
2491
|
[attr.data-custom-validity]="validation()"
|
|
2492
|
+
[attr.data-field-sizing]="fieldSizing()"
|
|
2267
2493
|
#_ref
|
|
2268
2494
|
[attr.id]="_id()"
|
|
2269
2495
|
[attr.name]="name()"
|
|
@@ -2316,7 +2542,7 @@ class DBInput {
|
|
|
2316
2542
|
</div>
|
|
2317
2543
|
`, isInline: true, styles: [":host{display:contents}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "component", type: DBInfotext, selector: "db-infotext", inputs: ["id", "className", "icon", "semantic", "size", "showIcon", "text"] }] }); }
|
|
2318
2544
|
}
|
|
2319
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2545
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBInput, decorators: [{
|
|
2320
2546
|
type: Component,
|
|
2321
2547
|
args: [{ providers: [{
|
|
2322
2548
|
provide: NG_VALUE_ACCESSOR,
|
|
@@ -2336,6 +2562,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.13", ngImpo
|
|
|
2336
2562
|
<input
|
|
2337
2563
|
[attr.aria-invalid]="validation() === 'invalid'"
|
|
2338
2564
|
[attr.data-custom-validity]="validation()"
|
|
2565
|
+
[attr.data-field-sizing]="fieldSizing()"
|
|
2339
2566
|
#_ref
|
|
2340
2567
|
[attr.id]="_id()"
|
|
2341
2568
|
[attr.name]="name()"
|
|
@@ -2455,8 +2682,8 @@ class DBLink {
|
|
|
2455
2682
|
const element = this._ref()?.nativeElement;
|
|
2456
2683
|
this.enableAttributePassing(element, "db-link");
|
|
2457
2684
|
}
|
|
2458
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2459
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.
|
|
2685
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBLink, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2686
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.14", type: DBLink, isStandalone: true, selector: "db-link", inputs: { id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null }, className: { classPropertyName: "className", publicName: "className", isSignal: true, isRequired: false, transformFunction: null }, href: { classPropertyName: "href", publicName: "href", isSignal: true, isRequired: false, transformFunction: null }, target: { classPropertyName: "target", publicName: "target", isSignal: true, isRequired: false, transformFunction: null }, rel: { classPropertyName: "rel", publicName: "rel", isSignal: true, isRequired: false, transformFunction: null }, role: { classPropertyName: "role", publicName: "role", isSignal: true, isRequired: false, transformFunction: null }, hreflang: { classPropertyName: "hreflang", publicName: "hreflang", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, selected: { classPropertyName: "selected", publicName: "selected", isSignal: true, isRequired: false, transformFunction: null }, label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: false, transformFunction: null }, current: { classPropertyName: "current", publicName: "current", isSignal: true, isRequired: false, transformFunction: null }, size: { classPropertyName: "size", publicName: "size", isSignal: true, isRequired: false, transformFunction: null }, showIcon: { classPropertyName: "showIcon", publicName: "showIcon", isSignal: true, isRequired: false, transformFunction: null }, variant: { classPropertyName: "variant", publicName: "variant", isSignal: true, isRequired: false, transformFunction: null }, content: { classPropertyName: "content", publicName: "content", isSignal: true, isRequired: false, transformFunction: null }, text: { classPropertyName: "text", publicName: "text", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { click: "click" }, viewQueries: [{ propertyName: "_ref", first: true, predicate: ["_ref"], descendants: true, isSignal: true }], ngImport: i0, template: `
|
|
2460
2687
|
<a
|
|
2461
2688
|
#_ref
|
|
2462
2689
|
[attr.id]="id()"
|
|
@@ -2483,7 +2710,7 @@ class DBLink {
|
|
|
2483
2710
|
</a>
|
|
2484
2711
|
`, isInline: true, styles: [":host{display:contents}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }] }); }
|
|
2485
2712
|
}
|
|
2486
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2713
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBLink, decorators: [{
|
|
2487
2714
|
type: Component,
|
|
2488
2715
|
args: [{ selector: "db-link", standalone: true, imports: [CommonModule], template: `
|
|
2489
2716
|
<a
|
|
@@ -2589,8 +2816,8 @@ class DBPage {
|
|
|
2589
2816
|
document.documentElement.classList.remove("db-page-document");
|
|
2590
2817
|
}
|
|
2591
2818
|
}
|
|
2592
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2593
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "19.2.
|
|
2819
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBPage, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2820
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "19.2.14", type: DBPage, isStandalone: true, selector: "db-page", inputs: { fadeIn: { classPropertyName: "fadeIn", publicName: "fadeIn", isSignal: true, isRequired: false, transformFunction: null }, documentOverflow: { classPropertyName: "documentOverflow", publicName: "documentOverflow", isSignal: true, isRequired: false, transformFunction: null }, variant: { classPropertyName: "variant", publicName: "variant", isSignal: true, isRequired: false, transformFunction: null }, id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null }, className: { classPropertyName: "className", publicName: "className", isSignal: true, isRequired: false, transformFunction: null }, mainClass: { classPropertyName: "mainClass", publicName: "mainClass", isSignal: true, isRequired: false, transformFunction: null } }, viewQueries: [{ propertyName: "_ref", first: true, predicate: ["_ref"], descendants: true, isSignal: true }], ngImport: i0, template: `
|
|
2594
2821
|
<div
|
|
2595
2822
|
#_ref
|
|
2596
2823
|
[attr.id]="id()"
|
|
@@ -2607,7 +2834,7 @@ class DBPage {
|
|
|
2607
2834
|
</div>
|
|
2608
2835
|
`, isInline: true, styles: [":host{display:contents}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }] }); }
|
|
2609
2836
|
}
|
|
2610
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2837
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBPage, decorators: [{
|
|
2611
2838
|
type: Component,
|
|
2612
2839
|
args: [{ selector: "db-page", standalone: true, imports: [CommonModule], template: `
|
|
2613
2840
|
<div
|
|
@@ -2741,8 +2968,8 @@ class DBRadio {
|
|
|
2741
2968
|
const element = this._ref()?.nativeElement;
|
|
2742
2969
|
this.enableAttributePassing(element, "db-radio");
|
|
2743
2970
|
}
|
|
2744
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2745
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.
|
|
2971
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBRadio, deps: [{ token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2972
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.14", type: DBRadio, isStandalone: true, selector: "db-radio", inputs: { id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null }, checked: { classPropertyName: "checked", publicName: "checked", isSignal: true, isRequired: false, transformFunction: null }, size: { classPropertyName: "size", publicName: "size", isSignal: true, isRequired: false, transformFunction: null }, showLabel: { classPropertyName: "showLabel", publicName: "showLabel", isSignal: true, isRequired: false, transformFunction: null }, className: { classPropertyName: "className", publicName: "className", isSignal: true, isRequired: false, transformFunction: null }, validation: { classPropertyName: "validation", publicName: "validation", isSignal: true, isRequired: false, transformFunction: null }, name: { classPropertyName: "name", publicName: "name", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, describedbyid: { classPropertyName: "describedbyid", publicName: "describedbyid", isSignal: true, isRequired: false, transformFunction: null }, ariaDescribedBy: { classPropertyName: "ariaDescribedBy", publicName: "ariaDescribedBy", isSignal: true, isRequired: false, transformFunction: null }, value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: false, transformFunction: null }, required: { classPropertyName: "required", publicName: "required", isSignal: true, isRequired: false, transformFunction: null }, label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { disabled: "disabledChange", value: "valueChange", change: "change", blur: "blur", focus: "focus" }, providers: [{
|
|
2746
2973
|
provide: NG_VALUE_ACCESSOR,
|
|
2747
2974
|
useExisting: DBRadio,
|
|
2748
2975
|
multi: true
|
|
@@ -2775,7 +3002,7 @@ class DBRadio {
|
|
|
2775
3002
|
</label>
|
|
2776
3003
|
`, isInline: true, styles: [":host{display:contents}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }] }); }
|
|
2777
3004
|
}
|
|
2778
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
3005
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBRadio, decorators: [{
|
|
2779
3006
|
type: Component,
|
|
2780
3007
|
args: [{ providers: [{
|
|
2781
3008
|
provide: NG_VALUE_ACCESSOR,
|
|
@@ -2861,8 +3088,8 @@ class DBSection {
|
|
|
2861
3088
|
const element = this._ref()?.nativeElement;
|
|
2862
3089
|
this.enableAttributePassing(element, "db-section");
|
|
2863
3090
|
}
|
|
2864
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2865
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "19.2.
|
|
3091
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBSection, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
3092
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "19.2.14", type: DBSection, isStandalone: true, selector: "db-section", inputs: { id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null }, className: { classPropertyName: "className", publicName: "className", isSignal: true, isRequired: false, transformFunction: null }, spacing: { classPropertyName: "spacing", publicName: "spacing", isSignal: true, isRequired: false, transformFunction: null }, width: { classPropertyName: "width", publicName: "width", isSignal: true, isRequired: false, transformFunction: null } }, viewQueries: [{ propertyName: "_ref", first: true, predicate: ["_ref"], descendants: true, isSignal: true }], ngImport: i0, template: `
|
|
2866
3093
|
<section
|
|
2867
3094
|
#_ref
|
|
2868
3095
|
[attr.id]="_id()"
|
|
@@ -2874,7 +3101,7 @@ class DBSection {
|
|
|
2874
3101
|
</section>
|
|
2875
3102
|
`, isInline: true, styles: [":host{display:contents}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }] }); }
|
|
2876
3103
|
}
|
|
2877
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
3104
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBSection, decorators: [{
|
|
2878
3105
|
type: Component,
|
|
2879
3106
|
args: [{ selector: "db-section", standalone: true, imports: [CommonModule], template: `
|
|
2880
3107
|
<section
|
|
@@ -2956,7 +3183,7 @@ class DBSelect {
|
|
|
2956
3183
|
return option.label ?? option.value?.toString();
|
|
2957
3184
|
}
|
|
2958
3185
|
trackByOptgroupOption0(_, optgroupOption) {
|
|
2959
|
-
return optgroupOption
|
|
3186
|
+
return getOptionKey(optgroupOption, "select-optgroup-option-");
|
|
2960
3187
|
}
|
|
2961
3188
|
constructor(renderer) {
|
|
2962
3189
|
this.renderer = renderer;
|
|
@@ -2964,7 +3191,7 @@ class DBSelect {
|
|
|
2964
3191
|
this.getHideProp = getHideProp;
|
|
2965
3192
|
this.DEFAULT_LABEL = DEFAULT_LABEL;
|
|
2966
3193
|
this.getBoolean = getBoolean;
|
|
2967
|
-
this.
|
|
3194
|
+
this.getOptionKey = getOptionKey;
|
|
2968
3195
|
this.stringPropVisible = stringPropVisible;
|
|
2969
3196
|
this.DEFAULT_VALID_MESSAGE = DEFAULT_VALID_MESSAGE;
|
|
2970
3197
|
this.id = input();
|
|
@@ -3111,8 +3338,8 @@ class DBSelect {
|
|
|
3111
3338
|
const element = this._ref()?.nativeElement;
|
|
3112
3339
|
this.enableAttributePassing(element, "db-select");
|
|
3113
3340
|
}
|
|
3114
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
3115
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.
|
|
3341
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBSelect, deps: [{ token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
3342
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.14", type: DBSelect, isStandalone: true, selector: "db-select", inputs: { id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null }, invalidMessage: { classPropertyName: "invalidMessage", publicName: "invalidMessage", isSignal: true, isRequired: false, transformFunction: null }, message: { classPropertyName: "message", publicName: "message", isSignal: true, isRequired: false, transformFunction: null }, showMessage: { classPropertyName: "showMessage", publicName: "showMessage", isSignal: true, isRequired: false, transformFunction: null }, value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: false, transformFunction: null }, validMessage: { classPropertyName: "validMessage", publicName: "validMessage", isSignal: true, isRequired: false, transformFunction: null }, validation: { classPropertyName: "validation", publicName: "validation", isSignal: true, isRequired: false, transformFunction: null }, required: { classPropertyName: "required", publicName: "required", isSignal: true, isRequired: false, transformFunction: null }, className: { classPropertyName: "className", publicName: "className", isSignal: true, isRequired: false, transformFunction: null }, variant: { classPropertyName: "variant", publicName: "variant", isSignal: true, isRequired: false, transformFunction: null }, showLabel: { classPropertyName: "showLabel", publicName: "showLabel", isSignal: true, isRequired: false, transformFunction: null }, icon: { classPropertyName: "icon", publicName: "icon", isSignal: true, isRequired: false, transformFunction: null }, showIcon: { classPropertyName: "showIcon", publicName: "showIcon", isSignal: true, isRequired: false, transformFunction: null }, label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, name: { classPropertyName: "name", publicName: "name", isSignal: true, isRequired: false, transformFunction: null }, size: { classPropertyName: "size", publicName: "size", isSignal: true, isRequired: false, transformFunction: null }, autocomplete: { classPropertyName: "autocomplete", publicName: "autocomplete", isSignal: true, isRequired: false, transformFunction: null }, multiple: { classPropertyName: "multiple", publicName: "multiple", isSignal: true, isRequired: false, transformFunction: null }, ariaDescribedBy: { classPropertyName: "ariaDescribedBy", publicName: "ariaDescribedBy", isSignal: true, isRequired: false, transformFunction: null }, options: { classPropertyName: "options", publicName: "options", isSignal: true, isRequired: false, transformFunction: null }, placeholder: { classPropertyName: "placeholder", publicName: "placeholder", isSignal: true, isRequired: false, transformFunction: null }, messageIcon: { classPropertyName: "messageIcon", publicName: "messageIcon", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { value: "valueChange", disabled: "disabledChange", click: "click", input: "input", change: "change", blur: "blur", focus: "focus" }, providers: [{
|
|
3116
3343
|
provide: NG_VALUE_ACCESSOR,
|
|
3117
3344
|
useExisting: DBSelect,
|
|
3118
3345
|
multi: true
|
|
@@ -3145,7 +3372,8 @@ class DBSelect {
|
|
|
3145
3372
|
[attr.aria-describedby]="ariaDescribedBy() ?? _descByIds()"
|
|
3146
3373
|
>
|
|
3147
3374
|
<option [attr.hidden]="true"></option>
|
|
3148
|
-
@if(options()){ @for (option of options();track i;let i =
|
|
3375
|
+
@if(options()?.length){ @for (option of options();track i;let i =
|
|
3376
|
+
$index) {
|
|
3149
3377
|
<ng-container>
|
|
3150
3378
|
@if(option.options){
|
|
3151
3379
|
<optgroup [attr.label]="getOptionLabel(option)">
|
|
@@ -3193,7 +3421,7 @@ class DBSelect {
|
|
|
3193
3421
|
</div>
|
|
3194
3422
|
`, isInline: true, styles: [":host{display:contents}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "component", type: DBInfotext, selector: "db-infotext", inputs: ["id", "className", "icon", "semantic", "size", "showIcon", "text"] }] }); }
|
|
3195
3423
|
}
|
|
3196
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
3424
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBSelect, decorators: [{
|
|
3197
3425
|
type: Component,
|
|
3198
3426
|
args: [{ providers: [{
|
|
3199
3427
|
provide: NG_VALUE_ACCESSOR,
|
|
@@ -3228,7 +3456,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.13", ngImpo
|
|
|
3228
3456
|
[attr.aria-describedby]="ariaDescribedBy() ?? _descByIds()"
|
|
3229
3457
|
>
|
|
3230
3458
|
<option [attr.hidden]="true"></option>
|
|
3231
|
-
@if(options()){ @for (option of options();track i;let i =
|
|
3459
|
+
@if(options()?.length){ @for (option of options();track i;let i =
|
|
3460
|
+
$index) {
|
|
3232
3461
|
<ng-container>
|
|
3233
3462
|
@if(option.options){
|
|
3234
3463
|
<optgroup [attr.label]="getOptionLabel(option)">
|
|
@@ -3391,8 +3620,8 @@ class DBSwitch {
|
|
|
3391
3620
|
const element = this._ref()?.nativeElement;
|
|
3392
3621
|
this.enableAttributePassing(element, "db-switch");
|
|
3393
3622
|
}
|
|
3394
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
3395
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.
|
|
3623
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBSwitch, deps: [{ token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
3624
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.14", type: DBSwitch, isStandalone: true, selector: "db-switch", inputs: { id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null }, checked: { classPropertyName: "checked", publicName: "checked", isSignal: true, isRequired: false, transformFunction: null }, visualAid: { classPropertyName: "visualAid", publicName: "visualAid", isSignal: true, isRequired: false, transformFunction: null }, size: { classPropertyName: "size", publicName: "size", isSignal: true, isRequired: false, transformFunction: null }, showLabel: { classPropertyName: "showLabel", publicName: "showLabel", isSignal: true, isRequired: false, transformFunction: null }, emphasis: { classPropertyName: "emphasis", publicName: "emphasis", isSignal: true, isRequired: false, transformFunction: null }, className: { classPropertyName: "className", publicName: "className", isSignal: true, isRequired: false, transformFunction: null }, value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, describedbyid: { classPropertyName: "describedbyid", publicName: "describedbyid", isSignal: true, isRequired: false, transformFunction: null }, ariaDescribedBy: { classPropertyName: "ariaDescribedBy", publicName: "ariaDescribedBy", isSignal: true, isRequired: false, transformFunction: null }, validation: { classPropertyName: "validation", publicName: "validation", isSignal: true, isRequired: false, transformFunction: null }, name: { classPropertyName: "name", publicName: "name", isSignal: true, isRequired: false, transformFunction: null }, required: { classPropertyName: "required", publicName: "required", isSignal: true, isRequired: false, transformFunction: null }, icon: { classPropertyName: "icon", publicName: "icon", isSignal: true, isRequired: false, transformFunction: null }, iconAfter: { classPropertyName: "iconAfter", publicName: "iconAfter", isSignal: true, isRequired: false, transformFunction: null }, label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { checked: "checkedChange", disabled: "disabledChange", change: "change", blur: "blur", focus: "focus" }, providers: [{
|
|
3396
3625
|
provide: NG_VALUE_ACCESSOR,
|
|
3397
3626
|
useExisting: DBSwitch,
|
|
3398
3627
|
multi: true
|
|
@@ -3431,7 +3660,7 @@ class DBSwitch {
|
|
|
3431
3660
|
</label>
|
|
3432
3661
|
`, isInline: true, styles: [":host{display:contents}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }] }); }
|
|
3433
3662
|
}
|
|
3434
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
3663
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBSwitch, decorators: [{
|
|
3435
3664
|
type: Component,
|
|
3436
3665
|
args: [{ providers: [{
|
|
3437
3666
|
provide: NG_VALUE_ACCESSOR,
|
|
@@ -3597,8 +3826,8 @@ class DBTabItem {
|
|
|
3597
3826
|
const element = this._ref()?.nativeElement;
|
|
3598
3827
|
this.enableAttributePassing(element, "db-tab-item");
|
|
3599
3828
|
}
|
|
3600
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
3601
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.
|
|
3829
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBTabItem, deps: [{ token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
3830
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.14", type: DBTabItem, isStandalone: true, selector: "db-tab-item", inputs: { active: { classPropertyName: "active", publicName: "active", isSignal: true, isRequired: false, transformFunction: null }, name: { classPropertyName: "name", publicName: "name", isSignal: true, isRequired: false, transformFunction: null }, className: { classPropertyName: "className", publicName: "className", isSignal: true, isRequired: false, transformFunction: null }, id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null }, icon: { classPropertyName: "icon", publicName: "icon", isSignal: true, isRequired: false, transformFunction: null }, iconAfter: { classPropertyName: "iconAfter", publicName: "iconAfter", isSignal: true, isRequired: false, transformFunction: null }, showIcon: { classPropertyName: "showIcon", publicName: "showIcon", isSignal: true, isRequired: false, transformFunction: null }, noText: { classPropertyName: "noText", publicName: "noText", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, controls: { classPropertyName: "controls", publicName: "controls", isSignal: true, isRequired: false, transformFunction: null }, checked: { classPropertyName: "checked", publicName: "checked", isSignal: true, isRequired: false, transformFunction: null }, label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { disabled: "disabledChange", checked: "checkedChange", change: "change" }, providers: [{
|
|
3602
3831
|
provide: NG_VALUE_ACCESSOR,
|
|
3603
3832
|
useExisting: DBTabItem,
|
|
3604
3833
|
multi: true
|
|
@@ -3630,7 +3859,7 @@ class DBTabItem {
|
|
|
3630
3859
|
</li>
|
|
3631
3860
|
`, isInline: true, styles: [":host{display:contents}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }] }); }
|
|
3632
3861
|
}
|
|
3633
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
3862
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBTabItem, decorators: [{
|
|
3634
3863
|
type: Component,
|
|
3635
3864
|
args: [{ providers: [{
|
|
3636
3865
|
provide: NG_VALUE_ACCESSOR,
|
|
@@ -3665,44 +3894,122 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.13", ngImpo
|
|
|
3665
3894
|
`, styles: [":host{display:contents}\n"] }]
|
|
3666
3895
|
}], ctorParameters: () => [{ type: i0.Renderer2 }] });
|
|
3667
3896
|
|
|
3897
|
+
class DocumentScrollListener {
|
|
3898
|
+
static { this.callbacks = {}; }
|
|
3899
|
+
static { this._instance = null; }
|
|
3900
|
+
static runCallbacks(event) {
|
|
3901
|
+
for (const callback of Object.values(DocumentScrollListener.callbacks)) {
|
|
3902
|
+
if (typeof callback === 'function') {
|
|
3903
|
+
callback(event);
|
|
3904
|
+
}
|
|
3905
|
+
}
|
|
3906
|
+
}
|
|
3907
|
+
constructor() {
|
|
3908
|
+
this.ticking = false;
|
|
3909
|
+
if (DocumentScrollListener._instance) {
|
|
3910
|
+
return DocumentScrollListener._instance;
|
|
3911
|
+
}
|
|
3912
|
+
DocumentScrollListener._instance = this;
|
|
3913
|
+
if (self.document) {
|
|
3914
|
+
self.document.addEventListener('scroll', event => {
|
|
3915
|
+
if (!this.ticking) {
|
|
3916
|
+
window.requestAnimationFrame(() => {
|
|
3917
|
+
DocumentScrollListener.runCallbacks(event);
|
|
3918
|
+
this.ticking = false;
|
|
3919
|
+
});
|
|
3920
|
+
this.ticking = true;
|
|
3921
|
+
}
|
|
3922
|
+
}, true);
|
|
3923
|
+
}
|
|
3924
|
+
}
|
|
3925
|
+
addCallback(callback) {
|
|
3926
|
+
const callbackID = uuid();
|
|
3927
|
+
DocumentScrollListener.callbacks[callbackID] = callback;
|
|
3928
|
+
return callbackID;
|
|
3929
|
+
}
|
|
3930
|
+
removeCallback(id) {
|
|
3931
|
+
delete DocumentScrollListener.callbacks[id];
|
|
3932
|
+
}
|
|
3933
|
+
}
|
|
3934
|
+
|
|
3668
3935
|
const defaultProps$g = {};
|
|
3669
3936
|
class DBTooltip {
|
|
3670
3937
|
handleClick(event) {
|
|
3671
3938
|
event.stopPropagation();
|
|
3672
3939
|
}
|
|
3673
|
-
|
|
3674
|
-
if (
|
|
3675
|
-
|
|
3940
|
+
handleEscape(event) {
|
|
3941
|
+
if ((!event || event.key === "Escape") &&
|
|
3942
|
+
this._ref()?.nativeElement &&
|
|
3943
|
+
getComputedStyle(this._ref()?.nativeElement).visibility === "visible") {
|
|
3944
|
+
this.getParent().blur();
|
|
3945
|
+
}
|
|
3946
|
+
}
|
|
3947
|
+
getParent() {
|
|
3948
|
+
let parent = this._ref()?.nativeElement.parentElement;
|
|
3949
|
+
if (parent && parent.localName.includes("tooltip")) {
|
|
3950
|
+
// Angular workaround
|
|
3951
|
+
parent = parent.parentElement;
|
|
3952
|
+
}
|
|
3953
|
+
return parent;
|
|
3954
|
+
}
|
|
3955
|
+
handleAutoPlacement(parent) {
|
|
3956
|
+
if (!parent)
|
|
3957
|
+
return;
|
|
3958
|
+
if (this._ref()?.nativeElement) {
|
|
3959
|
+
// This is a workaround for angular
|
|
3960
|
+
delay(() => {
|
|
3961
|
+
handleFixedPopover(this._ref()?.nativeElement, parent, this.placement() ?? "bottom");
|
|
3962
|
+
}, 1);
|
|
3963
|
+
}
|
|
3964
|
+
}
|
|
3965
|
+
handleDocumentScroll(event, parent) {
|
|
3966
|
+
if (event?.target?.contains &&
|
|
3967
|
+
event?.target?.contains(this._ref()?.nativeElement)) {
|
|
3968
|
+
this.handleAutoPlacement(parent);
|
|
3969
|
+
}
|
|
3970
|
+
}
|
|
3971
|
+
handleLeave() {
|
|
3972
|
+
if (this._documentScrollListenerCallbackId()) {
|
|
3973
|
+
new DocumentScrollListener().removeCallback(this._documentScrollListenerCallbackId());
|
|
3974
|
+
}
|
|
3975
|
+
this._observer()?.unobserve(this.getParent());
|
|
3976
|
+
}
|
|
3977
|
+
handleEnter(parent) {
|
|
3978
|
+
this._documentScrollListenerCallbackId.set(new DocumentScrollListener().addCallback((event) => this.handleDocumentScroll(event, parent)));
|
|
3979
|
+
this.handleAutoPlacement(parent);
|
|
3980
|
+
this._observer()?.observe(this.getParent());
|
|
3676
3981
|
}
|
|
3677
3982
|
constructor() {
|
|
3678
3983
|
this.cls = cls;
|
|
3679
3984
|
this.getBooleanAsString = getBooleanAsString;
|
|
3680
3985
|
this.id = input();
|
|
3681
3986
|
this.variant = input();
|
|
3987
|
+
this.placement = input();
|
|
3682
3988
|
this.className = input();
|
|
3683
3989
|
this.emphasis = input();
|
|
3684
3990
|
this.animation = input();
|
|
3685
3991
|
this.delay = input();
|
|
3686
3992
|
this.width = input();
|
|
3687
3993
|
this.showArrow = input();
|
|
3688
|
-
this.placement = input();
|
|
3689
3994
|
this._ref = viewChild("_ref");
|
|
3690
3995
|
this._id = signal(DEFAULT_ID);
|
|
3691
3996
|
this.initialized = signal(false);
|
|
3997
|
+
this._documentScrollListenerCallbackId = signal(undefined);
|
|
3998
|
+
this._observer = signal(undefined);
|
|
3692
3999
|
effect(() => {
|
|
3693
4000
|
// --- Mitosis: Workaround to make sure the effect() is triggered ---
|
|
3694
4001
|
this._ref();
|
|
3695
4002
|
this.initialized();
|
|
3696
4003
|
// ---
|
|
3697
4004
|
if (this._ref()?.nativeElement && this.initialized() && this._id()) {
|
|
3698
|
-
|
|
3699
|
-
if (parent && parent.localName.includes("tooltip")) {
|
|
3700
|
-
// Angular workaround
|
|
3701
|
-
parent = parent.parentElement;
|
|
3702
|
-
}
|
|
4005
|
+
const parent = this.getParent();
|
|
3703
4006
|
if (parent) {
|
|
3704
|
-
["mouseenter", "
|
|
3705
|
-
parent.addEventListener(event, () => this.
|
|
4007
|
+
["mouseenter", "focusin"].forEach((event) => {
|
|
4008
|
+
parent.addEventListener(event, () => this.handleEnter(parent));
|
|
4009
|
+
});
|
|
4010
|
+
parent.addEventListener("keydown", (event) => this.handleEscape(event));
|
|
4011
|
+
["mouseleave", "focusout"].forEach((event) => {
|
|
4012
|
+
parent.addEventListener(event, () => this.handleLeave());
|
|
3706
4013
|
});
|
|
3707
4014
|
parent.setAttribute("data-has-tooltip", "true");
|
|
3708
4015
|
if (this.variant() === "label") {
|
|
@@ -3712,6 +4019,12 @@ class DBTooltip {
|
|
|
3712
4019
|
parent.setAttribute("aria-describedby", this._id());
|
|
3713
4020
|
}
|
|
3714
4021
|
}
|
|
4022
|
+
this._observer.set(new IntersectionObserver((payload) => {
|
|
4023
|
+
const entry = payload.find(({ target }) => target === this.getParent());
|
|
4024
|
+
if (entry && !entry.isIntersecting) {
|
|
4025
|
+
this.handleEscape(false);
|
|
4026
|
+
}
|
|
4027
|
+
}));
|
|
3715
4028
|
this.initialized.set(false);
|
|
3716
4029
|
}
|
|
3717
4030
|
}, {
|
|
@@ -3758,8 +4071,8 @@ class DBTooltip {
|
|
|
3758
4071
|
const element = this._ref()?.nativeElement;
|
|
3759
4072
|
this.enableAttributePassing(element, "db-tooltip");
|
|
3760
4073
|
}
|
|
3761
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
3762
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "19.2.
|
|
4074
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBTooltip, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
4075
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "19.2.14", type: DBTooltip, isStandalone: true, selector: "db-tooltip", inputs: { id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null }, variant: { classPropertyName: "variant", publicName: "variant", isSignal: true, isRequired: false, transformFunction: null }, placement: { classPropertyName: "placement", publicName: "placement", isSignal: true, isRequired: false, transformFunction: null }, className: { classPropertyName: "className", publicName: "className", isSignal: true, isRequired: false, transformFunction: null }, emphasis: { classPropertyName: "emphasis", publicName: "emphasis", isSignal: true, isRequired: false, transformFunction: null }, animation: { classPropertyName: "animation", publicName: "animation", isSignal: true, isRequired: false, transformFunction: null }, delay: { classPropertyName: "delay", publicName: "delay", isSignal: true, isRequired: false, transformFunction: null }, width: { classPropertyName: "width", publicName: "width", isSignal: true, isRequired: false, transformFunction: null }, showArrow: { classPropertyName: "showArrow", publicName: "showArrow", isSignal: true, isRequired: false, transformFunction: null } }, viewQueries: [{ propertyName: "_ref", first: true, predicate: ["_ref"], descendants: true, isSignal: true }], ngImport: i0, template: `
|
|
3763
4076
|
<i
|
|
3764
4077
|
role="tooltip"
|
|
3765
4078
|
aria-hidden="true"
|
|
@@ -3779,7 +4092,7 @@ class DBTooltip {
|
|
|
3779
4092
|
</i>
|
|
3780
4093
|
`, isInline: true, styles: [":host{display:contents}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }] }); }
|
|
3781
4094
|
}
|
|
3782
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
4095
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBTooltip, decorators: [{
|
|
3783
4096
|
type: Component,
|
|
3784
4097
|
args: [{ selector: "db-tooltip", standalone: true, imports: [CommonModule], template: `
|
|
3785
4098
|
<i
|
|
@@ -3897,8 +4210,8 @@ class DBTag {
|
|
|
3897
4210
|
const element = this._ref()?.nativeElement;
|
|
3898
4211
|
this.enableAttributePassing(element, "db-tag");
|
|
3899
4212
|
}
|
|
3900
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
3901
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.
|
|
4213
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBTag, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
4214
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.14", type: DBTag, isStandalone: true, selector: "db-tag", inputs: { disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, removeButton: { classPropertyName: "removeButton", publicName: "removeButton", isSignal: true, isRequired: false, transformFunction: null }, id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null }, className: { classPropertyName: "className", publicName: "className", isSignal: true, isRequired: false, transformFunction: null }, semantic: { classPropertyName: "semantic", publicName: "semantic", isSignal: true, isRequired: false, transformFunction: null }, emphasis: { classPropertyName: "emphasis", publicName: "emphasis", isSignal: true, isRequired: false, transformFunction: null }, icon: { classPropertyName: "icon", publicName: "icon", isSignal: true, isRequired: false, transformFunction: null }, showCheckState: { classPropertyName: "showCheckState", publicName: "showCheckState", isSignal: true, isRequired: false, transformFunction: null }, showIcon: { classPropertyName: "showIcon", publicName: "showIcon", isSignal: true, isRequired: false, transformFunction: null }, noText: { classPropertyName: "noText", publicName: "noText", isSignal: true, isRequired: false, transformFunction: null }, overflow: { classPropertyName: "overflow", publicName: "overflow", isSignal: true, isRequired: false, transformFunction: null }, text: { classPropertyName: "text", publicName: "text", isSignal: true, isRequired: false, transformFunction: null }, behavior: { classPropertyName: "behavior", publicName: "behavior", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { remove: "remove" }, viewQueries: [{ propertyName: "_ref", first: true, predicate: ["_ref"], descendants: true, isSignal: true }], ngImport: i0, template: `
|
|
3902
4215
|
<div
|
|
3903
4216
|
#_ref
|
|
3904
4217
|
[attr.id]="id()"
|
|
@@ -3928,9 +4241,9 @@ class DBTag {
|
|
|
3928
4241
|
</button>
|
|
3929
4242
|
}
|
|
3930
4243
|
</div>
|
|
3931
|
-
`, isInline: true, styles: [":host{display:contents}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "component", type: DBTooltip, selector: "db-tooltip", inputs: ["id", "variant", "className", "emphasis", "animation", "delay", "width", "showArrow"
|
|
4244
|
+
`, isInline: true, styles: [":host{display:contents}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "component", type: DBTooltip, selector: "db-tooltip", inputs: ["id", "variant", "placement", "className", "emphasis", "animation", "delay", "width", "showArrow"] }] }); }
|
|
3932
4245
|
}
|
|
3933
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
4246
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBTag, decorators: [{
|
|
3934
4247
|
type: Component,
|
|
3935
4248
|
args: [{ selector: "db-tag", standalone: true, imports: [CommonModule, DBTooltip], template: `
|
|
3936
4249
|
<div
|
|
@@ -4048,7 +4361,9 @@ class DBTextarea {
|
|
|
4048
4361
|
this.variant = input();
|
|
4049
4362
|
this.showLabel = input();
|
|
4050
4363
|
this.label = input();
|
|
4364
|
+
this.fieldSizing = input();
|
|
4051
4365
|
this.resize = input();
|
|
4366
|
+
this.showResizer = input();
|
|
4052
4367
|
this.disabled = model();
|
|
4053
4368
|
this.readOnly = input();
|
|
4054
4369
|
this.readonly = input();
|
|
@@ -4172,8 +4487,8 @@ class DBTextarea {
|
|
|
4172
4487
|
const element = this._ref()?.nativeElement;
|
|
4173
4488
|
this.enableAttributePassing(element, "db-textarea");
|
|
4174
4489
|
}
|
|
4175
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
4176
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.
|
|
4490
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBTextarea, deps: [{ token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
4491
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.14", type: DBTextarea, isStandalone: true, selector: "db-textarea", inputs: { id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null }, invalidMessage: { classPropertyName: "invalidMessage", publicName: "invalidMessage", isSignal: true, isRequired: false, transformFunction: null }, message: { classPropertyName: "message", publicName: "message", isSignal: true, isRequired: false, transformFunction: null }, showMessage: { classPropertyName: "showMessage", publicName: "showMessage", isSignal: true, isRequired: false, transformFunction: null }, value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: false, transformFunction: null }, validMessage: { classPropertyName: "validMessage", publicName: "validMessage", isSignal: true, isRequired: false, transformFunction: null }, validation: { classPropertyName: "validation", publicName: "validation", isSignal: true, isRequired: false, transformFunction: null }, required: { classPropertyName: "required", publicName: "required", isSignal: true, isRequired: false, transformFunction: null }, minLength: { classPropertyName: "minLength", publicName: "minLength", isSignal: true, isRequired: false, transformFunction: null }, maxLength: { classPropertyName: "maxLength", publicName: "maxLength", isSignal: true, isRequired: false, transformFunction: null }, className: { classPropertyName: "className", publicName: "className", isSignal: true, isRequired: false, transformFunction: null }, variant: { classPropertyName: "variant", publicName: "variant", isSignal: true, isRequired: false, transformFunction: null }, showLabel: { classPropertyName: "showLabel", publicName: "showLabel", isSignal: true, isRequired: false, transformFunction: null }, label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: false, transformFunction: null }, fieldSizing: { classPropertyName: "fieldSizing", publicName: "fieldSizing", isSignal: true, isRequired: false, transformFunction: null }, resize: { classPropertyName: "resize", publicName: "resize", isSignal: true, isRequired: false, transformFunction: null }, showResizer: { classPropertyName: "showResizer", publicName: "showResizer", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, readOnly: { classPropertyName: "readOnly", publicName: "readOnly", isSignal: true, isRequired: false, transformFunction: null }, readonly: { classPropertyName: "readonly", publicName: "readonly", isSignal: true, isRequired: false, transformFunction: null }, form: { classPropertyName: "form", publicName: "form", isSignal: true, isRequired: false, transformFunction: null }, maxlength: { classPropertyName: "maxlength", publicName: "maxlength", isSignal: true, isRequired: false, transformFunction: null }, minlength: { classPropertyName: "minlength", publicName: "minlength", isSignal: true, isRequired: false, transformFunction: null }, name: { classPropertyName: "name", publicName: "name", isSignal: true, isRequired: false, transformFunction: null }, wrap: { classPropertyName: "wrap", publicName: "wrap", isSignal: true, isRequired: false, transformFunction: null }, spellCheck: { classPropertyName: "spellCheck", publicName: "spellCheck", isSignal: true, isRequired: false, transformFunction: null }, autocomplete: { classPropertyName: "autocomplete", publicName: "autocomplete", isSignal: true, isRequired: false, transformFunction: null }, ariaDescribedBy: { classPropertyName: "ariaDescribedBy", publicName: "ariaDescribedBy", isSignal: true, isRequired: false, transformFunction: null }, placeholder: { classPropertyName: "placeholder", publicName: "placeholder", isSignal: true, isRequired: false, transformFunction: null }, rows: { classPropertyName: "rows", publicName: "rows", isSignal: true, isRequired: false, transformFunction: null }, cols: { classPropertyName: "cols", publicName: "cols", isSignal: true, isRequired: false, transformFunction: null }, messageIcon: { classPropertyName: "messageIcon", publicName: "messageIcon", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { value: "valueChange", disabled: "disabledChange", input: "input", change: "change", blur: "blur", focus: "focus" }, providers: [{
|
|
4177
4492
|
provide: NG_VALUE_ACCESSOR,
|
|
4178
4493
|
useExisting: DBTextarea,
|
|
4179
4494
|
multi: true
|
|
@@ -4187,9 +4502,11 @@ class DBTextarea {
|
|
|
4187
4502
|
<textarea
|
|
4188
4503
|
[attr.aria-invalid]="validation() === 'invalid'"
|
|
4189
4504
|
[attr.data-custom-validity]="validation()"
|
|
4505
|
+
[attr.data-field-sizing]="fieldSizing()"
|
|
4190
4506
|
#_ref
|
|
4191
4507
|
[attr.id]="_id()"
|
|
4192
4508
|
[attr.data-resize]="resize()"
|
|
4509
|
+
[attr.data-hide-resizer]="getHideProp(showResizer() ?? true)"
|
|
4193
4510
|
[disabled]="getBoolean(disabled(), 'disabled')"
|
|
4194
4511
|
[required]="getBoolean(required(), 'required')"
|
|
4195
4512
|
[attr.readOnly]="getBoolean(readOnly(), 'readOnly') || getBoolean(readonly(), 'readonly')"
|
|
@@ -4228,7 +4545,7 @@ class DBTextarea {
|
|
|
4228
4545
|
</div>
|
|
4229
4546
|
`, isInline: true, styles: [":host{display:contents}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "component", type: DBInfotext, selector: "db-infotext", inputs: ["id", "className", "icon", "semantic", "size", "showIcon", "text"] }] }); }
|
|
4230
4547
|
}
|
|
4231
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
4548
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBTextarea, decorators: [{
|
|
4232
4549
|
type: Component,
|
|
4233
4550
|
args: [{ providers: [{
|
|
4234
4551
|
provide: NG_VALUE_ACCESSOR,
|
|
@@ -4244,9 +4561,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.13", ngImpo
|
|
|
4244
4561
|
<textarea
|
|
4245
4562
|
[attr.aria-invalid]="validation() === 'invalid'"
|
|
4246
4563
|
[attr.data-custom-validity]="validation()"
|
|
4564
|
+
[attr.data-field-sizing]="fieldSizing()"
|
|
4247
4565
|
#_ref
|
|
4248
4566
|
[attr.id]="_id()"
|
|
4249
4567
|
[attr.data-resize]="resize()"
|
|
4568
|
+
[attr.data-hide-resizer]="getHideProp(showResizer() ?? true)"
|
|
4250
4569
|
[disabled]="getBoolean(disabled(), 'disabled')"
|
|
4251
4570
|
[required]="getBoolean(required(), 'required')"
|
|
4252
4571
|
[attr.readOnly]="getBoolean(readOnly(), 'readOnly') || getBoolean(readonly(), 'readonly')"
|
|
@@ -4288,10 +4607,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.13", ngImpo
|
|
|
4288
4607
|
|
|
4289
4608
|
/* Angular cannot handle multiple slots with the same name, we need to use Directives for this. */
|
|
4290
4609
|
class NavigationContentDirective {
|
|
4291
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
4292
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
4610
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: NavigationContentDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4611
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.14", type: NavigationContentDirective, isStandalone: true, selector: "[dbNavigationContent]", ngImport: i0 }); }
|
|
4293
4612
|
}
|
|
4294
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
4613
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: NavigationContentDirective, decorators: [{
|
|
4295
4614
|
type: Directive,
|
|
4296
4615
|
args: [{
|
|
4297
4616
|
selector: '[dbNavigationContent]',
|
|
@@ -4421,8 +4740,8 @@ class DBNavigationItem {
|
|
|
4421
4740
|
const element = this._ref()?.nativeElement;
|
|
4422
4741
|
this.enableAttributePassing(element, "db-navigation-item");
|
|
4423
4742
|
}
|
|
4424
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
4425
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.
|
|
4743
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBNavigationItem, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
4744
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.14", type: DBNavigationItem, isStandalone: true, selector: "db-navigation-item", inputs: { subNavigationExpanded: { classPropertyName: "subNavigationExpanded", publicName: "subNavigationExpanded", isSignal: true, isRequired: false, transformFunction: null }, id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null }, className: { classPropertyName: "className", publicName: "className", isSignal: true, isRequired: false, transformFunction: null }, width: { classPropertyName: "width", publicName: "width", isSignal: true, isRequired: false, transformFunction: null }, icon: { classPropertyName: "icon", publicName: "icon", isSignal: true, isRequired: false, transformFunction: null }, showIcon: { classPropertyName: "showIcon", publicName: "showIcon", isSignal: true, isRequired: false, transformFunction: null }, active: { classPropertyName: "active", publicName: "active", isSignal: true, isRequired: false, transformFunction: null }, wrap: { classPropertyName: "wrap", publicName: "wrap", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, text: { classPropertyName: "text", publicName: "text", isSignal: true, isRequired: false, transformFunction: null }, backButtonId: { classPropertyName: "backButtonId", publicName: "backButtonId", isSignal: true, isRequired: false, transformFunction: null }, backButtonText: { classPropertyName: "backButtonText", publicName: "backButtonText", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { click: "click" }, queries: [{ propertyName: "dbNavigationContent", first: true, predicate: NavigationContentDirective, descendants: true, read: TemplateRef }], viewQueries: [{ propertyName: "_ref", first: true, predicate: ["_ref"], descendants: true, isSignal: true }], ngImport: i0, template: `
|
|
4426
4745
|
<li
|
|
4427
4746
|
#_ref
|
|
4428
4747
|
[attr.id]="id()"
|
|
@@ -4475,7 +4794,7 @@ class DBNavigationItem {
|
|
|
4475
4794
|
</li>
|
|
4476
4795
|
`, isInline: true, styles: [":host{display:contents}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: DBButton, selector: "db-button", inputs: ["id", "className", "type", "disabled", "label", "icon", "showIcon", "size", "state", "width", "variant", "noText", "name", "form", "value", "describedbyid", "ariaexpanded", "ariapressed", "text"], outputs: ["click"] }] }); }
|
|
4477
4796
|
}
|
|
4478
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
4797
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBNavigationItem, decorators: [{
|
|
4479
4798
|
type: Component,
|
|
4480
4799
|
args: [{ selector: "db-navigation-item", standalone: true, imports: [CommonModule, DBButton], template: `
|
|
4481
4800
|
<li
|
|
@@ -4636,8 +4955,8 @@ class DBAccordionItem {
|
|
|
4636
4955
|
const element = this._ref()?.nativeElement;
|
|
4637
4956
|
this.enableAttributePassing(element, "db-accordion-item");
|
|
4638
4957
|
}
|
|
4639
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
4640
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.
|
|
4958
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBAccordionItem, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
4959
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.14", type: DBAccordionItem, isStandalone: true, selector: "db-accordion-item", inputs: { id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null }, defaultOpen: { classPropertyName: "defaultOpen", publicName: "defaultOpen", isSignal: true, isRequired: false, transformFunction: null }, name: { classPropertyName: "name", publicName: "name", isSignal: true, isRequired: false, transformFunction: null }, className: { classPropertyName: "className", publicName: "className", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, headlinePlain: { classPropertyName: "headlinePlain", publicName: "headlinePlain", isSignal: true, isRequired: false, transformFunction: null }, text: { classPropertyName: "text", publicName: "text", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { toggle: "toggle" }, viewQueries: [{ propertyName: "_ref", first: true, predicate: ["_ref"], descendants: true, isSignal: true }], ngImport: i0, template: `
|
|
4641
4960
|
<li [attr.id]="_id()" [class]="cls('db-accordion-item', className())">
|
|
4642
4961
|
<details
|
|
4643
4962
|
[attr.aria-disabled]="getBooleanAsString(disabled())"
|
|
@@ -4659,7 +4978,7 @@ class DBAccordionItem {
|
|
|
4659
4978
|
</li>
|
|
4660
4979
|
`, isInline: true, styles: [":host{display:contents}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }] }); }
|
|
4661
4980
|
}
|
|
4662
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
4981
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBAccordionItem, decorators: [{
|
|
4663
4982
|
type: Component,
|
|
4664
4983
|
args: [{ selector: "db-accordion-item", standalone: true, imports: [CommonModule], template: `
|
|
4665
4984
|
<li [attr.id]="_id()" [class]="cls('db-accordion-item', className())">
|
|
@@ -4832,8 +5151,8 @@ class DBAccordion {
|
|
|
4832
5151
|
const element = this._ref()?.nativeElement;
|
|
4833
5152
|
this.enableAttributePassing(element, "db-accordion");
|
|
4834
5153
|
}
|
|
4835
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
4836
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.
|
|
5154
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBAccordion, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5155
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.14", type: DBAccordion, isStandalone: true, selector: "db-accordion", inputs: { id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null }, name: { classPropertyName: "name", publicName: "name", isSignal: true, isRequired: false, transformFunction: null }, behavior: { classPropertyName: "behavior", publicName: "behavior", isSignal: true, isRequired: false, transformFunction: null }, initOpenIndex: { classPropertyName: "initOpenIndex", publicName: "initOpenIndex", isSignal: true, isRequired: false, transformFunction: null }, items: { classPropertyName: "items", publicName: "items", isSignal: true, isRequired: false, transformFunction: null }, className: { classPropertyName: "className", publicName: "className", isSignal: true, isRequired: false, transformFunction: null }, variant: { classPropertyName: "variant", publicName: "variant", isSignal: true, isRequired: false, transformFunction: null } }, viewQueries: [{ propertyName: "_ref", first: true, predicate: ["_ref"], descendants: true, isSignal: true }], ngImport: i0, template: `
|
|
4837
5156
|
<ul
|
|
4838
5157
|
#_ref
|
|
4839
5158
|
[attr.id]="_id()"
|
|
@@ -4853,7 +5172,7 @@ class DBAccordion {
|
|
|
4853
5172
|
</ul>
|
|
4854
5173
|
`, isInline: true, styles: [":host{display:contents}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "component", type: DBAccordionItem, selector: "db-accordion-item", inputs: ["id", "defaultOpen", "name", "className", "disabled", "headlinePlain", "text"], outputs: ["toggle"] }] }); }
|
|
4855
5174
|
}
|
|
4856
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
5175
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBAccordion, decorators: [{
|
|
4857
5176
|
type: Component,
|
|
4858
5177
|
args: [{ selector: "db-accordion", standalone: true, imports: [CommonModule, DBAccordionItem], template: `
|
|
4859
5178
|
<ul
|
|
@@ -4925,8 +5244,8 @@ class DBNavigation {
|
|
|
4925
5244
|
const element = this._ref()?.nativeElement;
|
|
4926
5245
|
this.enableAttributePassing(element, "db-navigation");
|
|
4927
5246
|
}
|
|
4928
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
4929
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "19.2.
|
|
5247
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBNavigation, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5248
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "19.2.14", type: DBNavigation, isStandalone: true, selector: "db-navigation", inputs: { id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null }, labelledBy: { classPropertyName: "labelledBy", publicName: "labelledBy", isSignal: true, isRequired: false, transformFunction: null }, className: { classPropertyName: "className", publicName: "className", isSignal: true, isRequired: false, transformFunction: null } }, viewQueries: [{ propertyName: "_ref", first: true, predicate: ["_ref"], descendants: true, isSignal: true }], ngImport: i0, template: `
|
|
4930
5249
|
<nav
|
|
4931
5250
|
#_ref
|
|
4932
5251
|
[attr.id]="_id()"
|
|
@@ -4937,7 +5256,7 @@ class DBNavigation {
|
|
|
4937
5256
|
</nav>
|
|
4938
5257
|
`, isInline: true, styles: [":host{display:contents}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }] }); }
|
|
4939
5258
|
}
|
|
4940
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
5259
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBNavigation, decorators: [{
|
|
4941
5260
|
type: Component,
|
|
4942
5261
|
args: [{ selector: "db-navigation", standalone: true, imports: [CommonModule], template: `
|
|
4943
5262
|
<nav
|
|
@@ -4953,23 +5272,55 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.13", ngImpo
|
|
|
4953
5272
|
|
|
4954
5273
|
const defaultProps$9 = {};
|
|
4955
5274
|
class DBPopover {
|
|
5275
|
+
handleEscape(event) {
|
|
5276
|
+
if (!event || event.key === "Escape") {
|
|
5277
|
+
// TODO: Recursive for any child
|
|
5278
|
+
for (const child of Array.from(this._ref()?.nativeElement.children)) {
|
|
5279
|
+
child.blur();
|
|
5280
|
+
}
|
|
5281
|
+
}
|
|
5282
|
+
}
|
|
4956
5283
|
handleAutoPlacement() {
|
|
4957
|
-
this.isExpanded.set(true);
|
|
4958
5284
|
if (!this._ref()?.nativeElement)
|
|
4959
5285
|
return;
|
|
4960
5286
|
const article = this._ref()?.nativeElement.querySelector("article");
|
|
4961
|
-
if (
|
|
4962
|
-
|
|
4963
|
-
|
|
5287
|
+
if (article) {
|
|
5288
|
+
// This is a workaround for angular
|
|
5289
|
+
delay(() => {
|
|
5290
|
+
handleFixedPopover(article, this._ref()?.nativeElement, this.placement() ?? "bottom");
|
|
5291
|
+
}, 1);
|
|
5292
|
+
}
|
|
5293
|
+
}
|
|
5294
|
+
handleDocumentScroll(event) {
|
|
5295
|
+
if (event?.target?.contains &&
|
|
5296
|
+
event?.target?.contains(this._ref()?.nativeElement)) {
|
|
5297
|
+
this.handleAutoPlacement();
|
|
5298
|
+
}
|
|
5299
|
+
}
|
|
5300
|
+
handleEnter() {
|
|
5301
|
+
this.isExpanded.set(true);
|
|
5302
|
+
this._documentScrollListenerCallbackId.set(new DocumentScrollListener().addCallback((event) => this.handleDocumentScroll(event)));
|
|
5303
|
+
this.handleAutoPlacement();
|
|
5304
|
+
const child = this.getTrigger();
|
|
5305
|
+
if (child) {
|
|
5306
|
+
this._observer()?.observe(child);
|
|
5307
|
+
}
|
|
4964
5308
|
}
|
|
4965
5309
|
handleLeave(event) {
|
|
4966
|
-
const element = event
|
|
4967
|
-
const parent = element
|
|
5310
|
+
const element = event?.target;
|
|
5311
|
+
const parent = element?.parentNode;
|
|
4968
5312
|
if (!parent ||
|
|
4969
5313
|
(element.parentNode.querySelector(":focus") !== element &&
|
|
4970
5314
|
element.parentNode.querySelector(":focus-within") !== element &&
|
|
4971
5315
|
element.parentNode.querySelector(":hover") !== element)) {
|
|
4972
5316
|
this.isExpanded.set(false);
|
|
5317
|
+
if (this._documentScrollListenerCallbackId()) {
|
|
5318
|
+
new DocumentScrollListener().removeCallback(this._documentScrollListenerCallbackId());
|
|
5319
|
+
}
|
|
5320
|
+
const child = this.getTrigger();
|
|
5321
|
+
if (child) {
|
|
5322
|
+
this._observer()?.unobserve(child);
|
|
5323
|
+
}
|
|
4973
5324
|
}
|
|
4974
5325
|
}
|
|
4975
5326
|
getTrigger() {
|
|
@@ -4993,6 +5344,7 @@ class DBPopover {
|
|
|
4993
5344
|
constructor() {
|
|
4994
5345
|
this.cls = cls;
|
|
4995
5346
|
this.getBooleanAsString = getBooleanAsString;
|
|
5347
|
+
this.placement = input();
|
|
4996
5348
|
this.id = input();
|
|
4997
5349
|
this.className = input();
|
|
4998
5350
|
this.spacing = input();
|
|
@@ -5001,21 +5353,36 @@ class DBPopover {
|
|
|
5001
5353
|
this.open = input();
|
|
5002
5354
|
this.delay = input();
|
|
5003
5355
|
this.width = input();
|
|
5004
|
-
this.placement = input();
|
|
5005
5356
|
this._ref = viewChild("_ref");
|
|
5006
5357
|
this.initialized = signal(false);
|
|
5007
5358
|
this.isExpanded = signal(false);
|
|
5359
|
+
this._documentScrollListenerCallbackId = signal(undefined);
|
|
5360
|
+
this._observer = signal(undefined);
|
|
5008
5361
|
effect(() => {
|
|
5009
5362
|
// --- Mitosis: Workaround to make sure the effect() is triggered ---
|
|
5010
5363
|
this._ref();
|
|
5011
5364
|
this.initialized();
|
|
5012
5365
|
// ---
|
|
5013
5366
|
if (this._ref()?.nativeElement && this.initialized()) {
|
|
5367
|
+
this.initialized.set(false);
|
|
5014
5368
|
const child = this.getTrigger();
|
|
5015
5369
|
if (child) {
|
|
5016
5370
|
child.ariaHasPopup = "true";
|
|
5017
5371
|
}
|
|
5018
|
-
this.
|
|
5372
|
+
this.handleAutoPlacement();
|
|
5373
|
+
this._ref()?.nativeElement.addEventListener("keydown", (event) => this.handleEscape(event));
|
|
5374
|
+
["mouseenter", "focusin"].forEach((event) => {
|
|
5375
|
+
this._ref()?.nativeElement.addEventListener(event, () => this.handleEnter());
|
|
5376
|
+
});
|
|
5377
|
+
["mouseleave", "focusout"].forEach((event) => {
|
|
5378
|
+
this._ref()?.nativeElement.addEventListener(event, () => this.handleLeave());
|
|
5379
|
+
});
|
|
5380
|
+
this._observer.set(new IntersectionObserver((payload) => {
|
|
5381
|
+
const entry = payload.find(({ target }) => target === this.getTrigger());
|
|
5382
|
+
if (entry && !entry.isIntersecting) {
|
|
5383
|
+
this.handleEscape(false);
|
|
5384
|
+
}
|
|
5385
|
+
}));
|
|
5019
5386
|
}
|
|
5020
5387
|
}, {
|
|
5021
5388
|
// Enable writing to signals inside effects
|
|
@@ -5074,17 +5441,9 @@ class DBPopover {
|
|
|
5074
5441
|
const element = this._ref()?.nativeElement;
|
|
5075
5442
|
this.enableAttributePassing(element, "db-popover");
|
|
5076
5443
|
}
|
|
5077
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
5078
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "19.2.
|
|
5079
|
-
<div
|
|
5080
|
-
#_ref
|
|
5081
|
-
[attr.id]="id()"
|
|
5082
|
-
[class]="cls('db-popover', className())"
|
|
5083
|
-
(focus)="handleAutoPlacement()"
|
|
5084
|
-
(blur)="handleLeave($event)"
|
|
5085
|
-
(mouseenter)="handleAutoPlacement()"
|
|
5086
|
-
(mouseleave)="handleLeave($event)"
|
|
5087
|
-
>
|
|
5444
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBPopover, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5445
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "19.2.14", type: DBPopover, isStandalone: true, selector: "db-popover", inputs: { placement: { classPropertyName: "placement", publicName: "placement", isSignal: true, isRequired: false, transformFunction: null }, id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null }, className: { classPropertyName: "className", publicName: "className", isSignal: true, isRequired: false, transformFunction: null }, spacing: { classPropertyName: "spacing", publicName: "spacing", isSignal: true, isRequired: false, transformFunction: null }, gap: { classPropertyName: "gap", publicName: "gap", isSignal: true, isRequired: false, transformFunction: null }, animation: { classPropertyName: "animation", publicName: "animation", isSignal: true, isRequired: false, transformFunction: null }, open: { classPropertyName: "open", publicName: "open", isSignal: true, isRequired: false, transformFunction: null }, delay: { classPropertyName: "delay", publicName: "delay", isSignal: true, isRequired: false, transformFunction: null }, width: { classPropertyName: "width", publicName: "width", isSignal: true, isRequired: false, transformFunction: null } }, viewQueries: [{ propertyName: "_ref", first: true, predicate: ["_ref"], descendants: true, isSignal: true }], ngImport: i0, template: `
|
|
5446
|
+
<div #_ref [attr.id]="id()" [class]="cls('db-popover', className())">
|
|
5088
5447
|
<ng-content select="[trigger]"></ng-content>
|
|
5089
5448
|
<article
|
|
5090
5449
|
class="db-popover-content"
|
|
@@ -5101,18 +5460,10 @@ class DBPopover {
|
|
|
5101
5460
|
</div>
|
|
5102
5461
|
`, isInline: true, styles: [":host{display:contents}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }] }); }
|
|
5103
5462
|
}
|
|
5104
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
5463
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBPopover, decorators: [{
|
|
5105
5464
|
type: Component,
|
|
5106
5465
|
args: [{ selector: "db-popover", standalone: true, imports: [CommonModule], template: `
|
|
5107
|
-
<div
|
|
5108
|
-
#_ref
|
|
5109
|
-
[attr.id]="id()"
|
|
5110
|
-
[class]="cls('db-popover', className())"
|
|
5111
|
-
(focus)="handleAutoPlacement()"
|
|
5112
|
-
(blur)="handleLeave($event)"
|
|
5113
|
-
(mouseenter)="handleAutoPlacement()"
|
|
5114
|
-
(mouseleave)="handleLeave($event)"
|
|
5115
|
-
>
|
|
5466
|
+
<div #_ref [attr.id]="id()" [class]="cls('db-popover', className())">
|
|
5116
5467
|
<ng-content select="[trigger]"></ng-content>
|
|
5117
5468
|
<article
|
|
5118
5469
|
class="db-popover-content"
|
|
@@ -5178,8 +5529,8 @@ class DBTabList {
|
|
|
5178
5529
|
const element = this._ref()?.nativeElement;
|
|
5179
5530
|
this.enableAttributePassing(element, "db-tab-list");
|
|
5180
5531
|
}
|
|
5181
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
5182
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "19.2.
|
|
5532
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBTabList, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5533
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "19.2.14", type: DBTabList, isStandalone: true, selector: "db-tab-list", inputs: { id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null }, className: { classPropertyName: "className", publicName: "className", isSignal: true, isRequired: false, transformFunction: null } }, viewQueries: [{ propertyName: "_ref", first: true, predicate: ["_ref"], descendants: true, isSignal: true }], ngImport: i0, template: `
|
|
5183
5534
|
<div #_ref [attr.id]="_id()" [class]="cls('db-tab-list', className())">
|
|
5184
5535
|
<ul role="tablist">
|
|
5185
5536
|
<ng-content></ng-content>
|
|
@@ -5187,7 +5538,7 @@ class DBTabList {
|
|
|
5187
5538
|
</div>
|
|
5188
5539
|
`, isInline: true, styles: [":host{display:contents}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }] }); }
|
|
5189
5540
|
}
|
|
5190
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
5541
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBTabList, decorators: [{
|
|
5191
5542
|
type: Component,
|
|
5192
5543
|
args: [{ selector: "db-tab-list", standalone: true, imports: [CommonModule], template: `
|
|
5193
5544
|
<div #_ref [attr.id]="_id()" [class]="cls('db-tab-list', className())">
|
|
@@ -5245,8 +5596,8 @@ class DBTabPanel {
|
|
|
5245
5596
|
const element = this._ref()?.nativeElement;
|
|
5246
5597
|
this.enableAttributePassing(element, "db-tab-panel");
|
|
5247
5598
|
}
|
|
5248
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
5249
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.
|
|
5599
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBTabPanel, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5600
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.14", type: DBTabPanel, isStandalone: true, selector: "db-tab-panel", inputs: { className: { classPropertyName: "className", publicName: "className", isSignal: true, isRequired: false, transformFunction: null }, id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null }, labelledBy: { classPropertyName: "labelledBy", publicName: "labelledBy", isSignal: true, isRequired: false, transformFunction: null }, content: { classPropertyName: "content", publicName: "content", isSignal: true, isRequired: false, transformFunction: null } }, viewQueries: [{ propertyName: "_ref", first: true, predicate: ["_ref"], descendants: true, isSignal: true }], ngImport: i0, template: `
|
|
5250
5601
|
<section
|
|
5251
5602
|
role="tabpanel"
|
|
5252
5603
|
#_ref
|
|
@@ -5259,7 +5610,7 @@ class DBTabPanel {
|
|
|
5259
5610
|
</section>
|
|
5260
5611
|
`, isInline: true, styles: [":host{display:contents}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }] }); }
|
|
5261
5612
|
}
|
|
5262
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
5613
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBTabPanel, decorators: [{
|
|
5263
5614
|
type: Component,
|
|
5264
5615
|
args: [{ selector: "db-tab-panel", standalone: true, imports: [CommonModule], template: `
|
|
5265
5616
|
<section
|
|
@@ -5477,8 +5828,8 @@ class DBTabs {
|
|
|
5477
5828
|
const element = this._ref()?.nativeElement;
|
|
5478
5829
|
this.enableAttributePassing(element, "db-tabs");
|
|
5479
5830
|
}
|
|
5480
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
5481
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.
|
|
5831
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBTabs, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5832
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.14", type: DBTabs, isStandalone: true, selector: "db-tabs", inputs: { id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null }, name: { classPropertyName: "name", publicName: "name", isSignal: true, isRequired: false, transformFunction: null }, tabs: { classPropertyName: "tabs", publicName: "tabs", isSignal: true, isRequired: false, transformFunction: null }, arrowScrollDistance: { classPropertyName: "arrowScrollDistance", publicName: "arrowScrollDistance", isSignal: true, isRequired: false, transformFunction: null }, orientation: { classPropertyName: "orientation", publicName: "orientation", isSignal: true, isRequired: false, transformFunction: null }, behavior: { classPropertyName: "behavior", publicName: "behavior", isSignal: true, isRequired: false, transformFunction: null }, initialSelectedMode: { classPropertyName: "initialSelectedMode", publicName: "initialSelectedMode", isSignal: true, isRequired: false, transformFunction: null }, initialSelectedIndex: { classPropertyName: "initialSelectedIndex", publicName: "initialSelectedIndex", isSignal: true, isRequired: false, transformFunction: null }, className: { classPropertyName: "className", publicName: "className", isSignal: true, isRequired: false, transformFunction: null }, alignment: { classPropertyName: "alignment", publicName: "alignment", isSignal: true, isRequired: false, transformFunction: null }, width: { classPropertyName: "width", publicName: "width", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { indexChange: "indexChange", tabSelect: "tabSelect" }, viewQueries: [{ propertyName: "_ref", first: true, predicate: ["_ref"], descendants: true, isSignal: true }], ngImport: i0, template: `
|
|
5482
5833
|
<div
|
|
5483
5834
|
#_ref
|
|
5484
5835
|
[attr.id]="_id()"
|
|
@@ -5531,7 +5882,7 @@ class DBTabs {
|
|
|
5531
5882
|
</div>
|
|
5532
5883
|
`, isInline: true, styles: [":host{display:contents}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "component", type: DBButton, selector: "db-button", inputs: ["id", "className", "type", "disabled", "label", "icon", "showIcon", "size", "state", "width", "variant", "noText", "name", "form", "value", "describedbyid", "ariaexpanded", "ariapressed", "text"], outputs: ["click"] }, { kind: "component", type: DBTabList, selector: "db-tab-list", inputs: ["id", "className"] }, { kind: "component", type: DBTabItem, selector: "db-tab-item", inputs: ["active", "name", "className", "id", "icon", "iconAfter", "showIcon", "noText", "disabled", "controls", "checked", "label"], outputs: ["disabledChange", "checkedChange", "change"] }, { kind: "component", type: DBTabPanel, selector: "db-tab-panel", inputs: ["className", "id", "labelledBy", "content"] }] }); }
|
|
5533
5884
|
}
|
|
5534
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
5885
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBTabs, decorators: [{
|
|
5535
5886
|
type: Component,
|
|
5536
5887
|
args: [{ selector: "db-tabs", standalone: true, imports: [CommonModule, DBButton, DBTabList, DBTabItem, DBTabPanel], template: `
|
|
5537
5888
|
<div
|
|
@@ -5603,6 +5954,7 @@ const PopoverWidthList = ['auto', 'fixed'];
|
|
|
5603
5954
|
const SizeList = ['small', 'medium'];
|
|
5604
5955
|
const EmphasisList = ['weak', 'strong'];
|
|
5605
5956
|
const ValidationList = ['invalid', 'valid', 'no-validation'];
|
|
5957
|
+
const FieldSizingList = ['fixed', 'content'];
|
|
5606
5958
|
const LabelVariantList = ['above', 'floating'];
|
|
5607
5959
|
const AutoCompleteList = ['off', 'on', 'name', 'honorific-prefix', 'given-name', 'additional-name', 'family-name', 'honorific-suffix', 'nickname', 'email', 'username', 'new-password', 'current-password', 'one-time-code', 'organization-title', 'organization', 'street-address', 'shipping', 'billing', 'address-line1', 'address-line2', 'address-line3', 'address-level4', 'address-level3', 'address-level2', 'address-level1', 'country', 'country-name', 'postal-code', 'cc-name', 'cc-given-name', 'cc-additional-name', 'cc-family-name', 'cc-number', 'cc-exp', 'cc-exp-month', 'cc-exp-year', 'cc-csc', 'cc-type', 'transaction-currency', 'transaction-amount', 'language', 'bday', 'bday-day', 'bday-month', 'bday-year', 'sex', 'tel', 'tel-country-code', 'tel-national', 'tel-area-code', 'tel-local', 'tel-extension', 'impp', 'url', 'photo', 'webauthn'];
|
|
5608
5960
|
const LinkCurrentList = ['time', 'true', 'false', 'date', 'page', 'step', 'location'];
|
|
@@ -5661,8 +6013,8 @@ class DBStack {
|
|
|
5661
6013
|
const element = this._ref()?.nativeElement;
|
|
5662
6014
|
this.enableAttributePassing(element, "db-stack");
|
|
5663
6015
|
}
|
|
5664
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
5665
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "19.2.
|
|
6016
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBStack, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
6017
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "19.2.14", type: DBStack, isStandalone: true, selector: "db-stack", inputs: { id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null }, className: { classPropertyName: "className", publicName: "className", isSignal: true, isRequired: false, transformFunction: null }, gap: { classPropertyName: "gap", publicName: "gap", isSignal: true, isRequired: false, transformFunction: null }, variant: { classPropertyName: "variant", publicName: "variant", isSignal: true, isRequired: false, transformFunction: null }, direction: { classPropertyName: "direction", publicName: "direction", isSignal: true, isRequired: false, transformFunction: null }, alignment: { classPropertyName: "alignment", publicName: "alignment", isSignal: true, isRequired: false, transformFunction: null }, justifyContent: { classPropertyName: "justifyContent", publicName: "justifyContent", isSignal: true, isRequired: false, transformFunction: null }, wrap: { classPropertyName: "wrap", publicName: "wrap", isSignal: true, isRequired: false, transformFunction: null } }, viewQueries: [{ propertyName: "_ref", first: true, predicate: ["_ref"], descendants: true, isSignal: true }], ngImport: i0, template: `
|
|
5666
6018
|
<div
|
|
5667
6019
|
#_ref
|
|
5668
6020
|
[attr.id]="id()"
|
|
@@ -5678,7 +6030,7 @@ class DBStack {
|
|
|
5678
6030
|
</div>
|
|
5679
6031
|
`, isInline: true, styles: [":host{display:contents}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }] }); }
|
|
5680
6032
|
}
|
|
5681
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
6033
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBStack, decorators: [{
|
|
5682
6034
|
type: Component,
|
|
5683
6035
|
args: [{ selector: "db-stack", standalone: true, imports: [CommonModule], template: `
|
|
5684
6036
|
<div
|
|
@@ -5743,8 +6095,8 @@ class DBCustomSelectList {
|
|
|
5743
6095
|
const element = this._ref()?.nativeElement;
|
|
5744
6096
|
this.enableAttributePassing(element, "db-custom-select-list");
|
|
5745
6097
|
}
|
|
5746
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
5747
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "19.2.
|
|
6098
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBCustomSelectList, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
6099
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "19.2.14", type: DBCustomSelectList, isStandalone: true, selector: "db-custom-select-list", inputs: { multiple: { classPropertyName: "multiple", publicName: "multiple", isSignal: true, isRequired: false, transformFunction: null }, label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: false, transformFunction: null }, id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null }, className: { classPropertyName: "className", publicName: "className", isSignal: true, isRequired: false, transformFunction: null } }, viewQueries: [{ propertyName: "_ref", first: true, predicate: ["_ref"], descendants: true, isSignal: true }], ngImport: i0, template: `
|
|
5748
6100
|
<div
|
|
5749
6101
|
[attr.role]="multiple() ? 'group' : 'radiogroup'"
|
|
5750
6102
|
[attr.aria-label]="label()"
|
|
@@ -5758,7 +6110,7 @@ class DBCustomSelectList {
|
|
|
5758
6110
|
</div>
|
|
5759
6111
|
`, isInline: true, styles: [":host{display:contents}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }] }); }
|
|
5760
6112
|
}
|
|
5761
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
6113
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBCustomSelectList, decorators: [{
|
|
5762
6114
|
type: Component,
|
|
5763
6115
|
args: [{ selector: "db-custom-select-list", standalone: true, imports: [CommonModule], template: `
|
|
5764
6116
|
<div
|
|
@@ -5877,8 +6229,8 @@ class DBCustomSelectListItem {
|
|
|
5877
6229
|
const element = this._ref()?.nativeElement;
|
|
5878
6230
|
this.enableAttributePassing(element, "db-custom-select-list-item");
|
|
5879
6231
|
}
|
|
5880
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
5881
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.
|
|
6232
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBCustomSelectListItem, deps: [{ token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
6233
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.14", type: DBCustomSelectListItem, isStandalone: true, selector: "db-custom-select-list-item", inputs: { id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null }, isGroupTitle: { classPropertyName: "isGroupTitle", publicName: "isGroupTitle", isSignal: true, isRequired: false, transformFunction: null }, showDivider: { classPropertyName: "showDivider", publicName: "showDivider", isSignal: true, isRequired: false, transformFunction: null }, type: { classPropertyName: "type", publicName: "type", isSignal: true, isRequired: false, transformFunction: null }, checked: { classPropertyName: "checked", publicName: "checked", isSignal: true, isRequired: false, transformFunction: null }, className: { classPropertyName: "className", publicName: "className", isSignal: true, isRequired: false, transformFunction: null }, groupTitle: { classPropertyName: "groupTitle", publicName: "groupTitle", isSignal: true, isRequired: false, transformFunction: null }, icon: { classPropertyName: "icon", publicName: "icon", isSignal: true, isRequired: false, transformFunction: null }, showIcon: { classPropertyName: "showIcon", publicName: "showIcon", isSignal: true, isRequired: false, transformFunction: null }, name: { classPropertyName: "name", publicName: "name", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: false, transformFunction: null }, label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { checked: "checkedChange", disabled: "disabledChange", change: "change" }, providers: [{
|
|
5882
6234
|
provide: NG_VALUE_ACCESSOR,
|
|
5883
6235
|
useExisting: DBCustomSelectListItem,
|
|
5884
6236
|
multi: true
|
|
@@ -5919,7 +6271,7 @@ class DBCustomSelectListItem {
|
|
|
5919
6271
|
</li>
|
|
5920
6272
|
`, isInline: true, styles: [":host{display:contents}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }] }); }
|
|
5921
6273
|
}
|
|
5922
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
6274
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBCustomSelectListItem, decorators: [{
|
|
5923
6275
|
type: Component,
|
|
5924
6276
|
args: [{ providers: [{
|
|
5925
6277
|
provide: NG_VALUE_ACCESSOR,
|
|
@@ -6008,8 +6360,8 @@ class DBCustomSelectDropdown {
|
|
|
6008
6360
|
const element = this._ref()?.nativeElement;
|
|
6009
6361
|
this.enableAttributePassing(element, "db-custom-select-dropdown");
|
|
6010
6362
|
}
|
|
6011
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
6012
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "19.2.
|
|
6363
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBCustomSelectDropdown, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
6364
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "19.2.14", type: DBCustomSelectDropdown, isStandalone: true, selector: "db-custom-select-dropdown", inputs: { id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null }, className: { classPropertyName: "className", publicName: "className", isSignal: true, isRequired: false, transformFunction: null }, width: { classPropertyName: "width", publicName: "width", isSignal: true, isRequired: false, transformFunction: null } }, viewQueries: [{ propertyName: "_ref", first: true, predicate: ["_ref"], descendants: true, isSignal: true }], ngImport: i0, template: `
|
|
6013
6365
|
<article
|
|
6014
6366
|
data-spacing="none"
|
|
6015
6367
|
#_ref
|
|
@@ -6021,7 +6373,7 @@ class DBCustomSelectDropdown {
|
|
|
6021
6373
|
</article>
|
|
6022
6374
|
`, isInline: true, styles: [":host{display:contents}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }] }); }
|
|
6023
6375
|
}
|
|
6024
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
6376
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBCustomSelectDropdown, decorators: [{
|
|
6025
6377
|
type: Component,
|
|
6026
6378
|
args: [{ selector: "db-custom-select-dropdown", standalone: true, imports: [CommonModule], template: `
|
|
6027
6379
|
<article
|
|
@@ -6070,6 +6422,12 @@ const defaultProps$1 = {
|
|
|
6070
6422
|
showClearSelection: true,
|
|
6071
6423
|
};
|
|
6072
6424
|
class DBCustomSelect {
|
|
6425
|
+
handleDocumentScroll(event) {
|
|
6426
|
+
if (event?.target?.contains &&
|
|
6427
|
+
event?.target?.contains(this.detailsRef()?.nativeElement)) {
|
|
6428
|
+
this.handleAutoPlacement();
|
|
6429
|
+
}
|
|
6430
|
+
}
|
|
6073
6431
|
hasValidState() {
|
|
6074
6432
|
return !!(this.validMessage() ?? this.validation() === "valid");
|
|
6075
6433
|
}
|
|
@@ -6116,7 +6474,9 @@ class DBCustomSelect {
|
|
|
6116
6474
|
}
|
|
6117
6475
|
if (event.target.open) {
|
|
6118
6476
|
this._documentClickListenerCallbackId.set(new DocumentClickListener().addCallback((event) => this.handleDocumentClose(event)));
|
|
6477
|
+
this._documentScrollListenerCallbackId.set(new DocumentScrollListener().addCallback((event) => this.handleDocumentScroll(event)));
|
|
6119
6478
|
this.handleAutoPlacement();
|
|
6479
|
+
this._observer()?.observe(this.detailsRef()?.nativeElement);
|
|
6120
6480
|
if (!event.target.dataset.test) {
|
|
6121
6481
|
// We need this workaround for snapshot testing
|
|
6122
6482
|
this.handleOpenByKeyboardFocus();
|
|
@@ -6126,6 +6486,10 @@ class DBCustomSelect {
|
|
|
6126
6486
|
if (this._documentClickListenerCallbackId()) {
|
|
6127
6487
|
new DocumentClickListener().removeCallback(this._documentClickListenerCallbackId());
|
|
6128
6488
|
}
|
|
6489
|
+
if (this._documentScrollListenerCallbackId()) {
|
|
6490
|
+
new DocumentScrollListener().removeCallback(this._documentScrollListenerCallbackId());
|
|
6491
|
+
}
|
|
6492
|
+
this._observer()?.unobserve(this.detailsRef()?.nativeElement);
|
|
6129
6493
|
}
|
|
6130
6494
|
}
|
|
6131
6495
|
getNativeSelectValue() {
|
|
@@ -6156,9 +6520,6 @@ class DBCustomSelect {
|
|
|
6156
6520
|
}
|
|
6157
6521
|
return false;
|
|
6158
6522
|
}
|
|
6159
|
-
getOptionKey(option) {
|
|
6160
|
-
return (option.id ?? option.value ?? uuid()).toString();
|
|
6161
|
-
}
|
|
6162
6523
|
getTagRemoveLabel(index) {
|
|
6163
6524
|
if (this.removeTagsTexts() && this.removeTagsTexts().length > index) {
|
|
6164
6525
|
return this.removeTagsTexts().at(index);
|
|
@@ -6178,8 +6539,9 @@ class DBCustomSelect {
|
|
|
6178
6539
|
if (this.detailsRef()?.nativeElement) {
|
|
6179
6540
|
const dropdown = this.detailsRef()?.nativeElement.querySelector("article");
|
|
6180
6541
|
if (dropdown) {
|
|
6542
|
+
// This is a workaround for Angular
|
|
6181
6543
|
delay(() => {
|
|
6182
|
-
|
|
6544
|
+
handleFixedDropdown(dropdown, this.detailsRef()?.nativeElement, this.placement() ?? "bottom");
|
|
6183
6545
|
}, 1);
|
|
6184
6546
|
}
|
|
6185
6547
|
}
|
|
@@ -6426,13 +6788,13 @@ class DBCustomSelect {
|
|
|
6426
6788
|
event.stopPropagation();
|
|
6427
6789
|
}
|
|
6428
6790
|
trackByOption0(_, option) {
|
|
6429
|
-
return "native-select-option-"
|
|
6791
|
+
return getOptionKey(option, "native-select-option-");
|
|
6430
6792
|
}
|
|
6431
6793
|
trackByOption1(index, option) {
|
|
6432
|
-
return "tag-"
|
|
6794
|
+
return getOptionKey(option, "tag-");
|
|
6433
6795
|
}
|
|
6434
6796
|
trackByOption2(_, option) {
|
|
6435
|
-
return "custom-select-list-item-"
|
|
6797
|
+
return getOptionKey(option, "custom-select-list-item-");
|
|
6436
6798
|
}
|
|
6437
6799
|
constructor(renderer) {
|
|
6438
6800
|
this.renderer = renderer;
|
|
@@ -6441,6 +6803,7 @@ class DBCustomSelect {
|
|
|
6441
6803
|
this.getHideProp = getHideProp;
|
|
6442
6804
|
this.DEFAULT_LABEL = DEFAULT_LABEL;
|
|
6443
6805
|
this.getBoolean = getBoolean;
|
|
6806
|
+
this.getOptionKey = getOptionKey;
|
|
6444
6807
|
this.DEFAULT_MESSAGE = DEFAULT_MESSAGE;
|
|
6445
6808
|
this.DEFAULT_CLOSE_BUTTON = DEFAULT_CLOSE_BUTTON;
|
|
6446
6809
|
this.stringPropVisible = stringPropVisible;
|
|
@@ -6466,11 +6829,11 @@ class DBCustomSelect {
|
|
|
6466
6829
|
this.required = input();
|
|
6467
6830
|
this.selectAllLabel = input();
|
|
6468
6831
|
this.removeTagsTexts = input();
|
|
6832
|
+
this.placement = input();
|
|
6469
6833
|
this.searchFilter = input();
|
|
6470
6834
|
this.className = input();
|
|
6471
6835
|
this.formFieldWidth = input();
|
|
6472
6836
|
this.variant = input();
|
|
6473
|
-
this.placement = input();
|
|
6474
6837
|
this.showLabel = input();
|
|
6475
6838
|
this.icon = input();
|
|
6476
6839
|
this.showIcon = input();
|
|
@@ -6524,6 +6887,8 @@ class DBCustomSelect {
|
|
|
6524
6887
|
this._hasNoOptions = signal(false);
|
|
6525
6888
|
this._documentClickListenerCallbackId = signal(undefined);
|
|
6526
6889
|
this._internalChangeTimestamp = signal(0);
|
|
6890
|
+
this._documentScrollListenerCallbackId = signal(undefined);
|
|
6891
|
+
this._observer = signal(undefined);
|
|
6527
6892
|
this._searchValue = signal(undefined);
|
|
6528
6893
|
this.selectAllChecked = signal(false);
|
|
6529
6894
|
this.selectAllIndeterminate = signal(false);
|
|
@@ -6820,13 +7185,23 @@ class DBCustomSelect {
|
|
|
6820
7185
|
this._selectedLabelsId.set(mId + "-selected-labels");
|
|
6821
7186
|
this._infoTextId.set(mId + "-info");
|
|
6822
7187
|
this._invalidMessage.set(this.invalidMessage() || DEFAULT_INVALID_MESSAGE);
|
|
7188
|
+
this._observer.set(new IntersectionObserver((payload) => {
|
|
7189
|
+
if (this.detailsRef()?.nativeElement) {
|
|
7190
|
+
const entry = payload.find(({ target }) => target === this.detailsRef()?.nativeElement);
|
|
7191
|
+
if (entry &&
|
|
7192
|
+
!entry.isIntersecting &&
|
|
7193
|
+
this.detailsRef()?.nativeElement.open) {
|
|
7194
|
+
this.detailsRef().nativeElement.open = false;
|
|
7195
|
+
}
|
|
7196
|
+
}
|
|
7197
|
+
}));
|
|
6823
7198
|
}
|
|
6824
7199
|
ngAfterViewInit() {
|
|
6825
7200
|
const element = this._ref()?.nativeElement;
|
|
6826
7201
|
this.enableAttributePassing(element, "db-custom-select");
|
|
6827
7202
|
}
|
|
6828
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
6829
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.
|
|
7203
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBCustomSelect, deps: [{ token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
7204
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.14", type: DBCustomSelect, isStandalone: true, selector: "db-custom-select", inputs: { id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null }, invalidMessage: { classPropertyName: "invalidMessage", publicName: "invalidMessage", isSignal: true, isRequired: false, transformFunction: null }, message: { classPropertyName: "message", publicName: "message", isSignal: true, isRequired: false, transformFunction: null }, showMessage: { classPropertyName: "showMessage", publicName: "showMessage", isSignal: true, isRequired: false, transformFunction: null }, ariaDescribedBy: { classPropertyName: "ariaDescribedBy", publicName: "ariaDescribedBy", isSignal: true, isRequired: false, transformFunction: null }, showNoResults: { classPropertyName: "showNoResults", publicName: "showNoResults", isSignal: true, isRequired: false, transformFunction: null }, multiple: { classPropertyName: "multiple", publicName: "multiple", isSignal: true, isRequired: false, transformFunction: null }, showSelectAll: { classPropertyName: "showSelectAll", publicName: "showSelectAll", isSignal: true, isRequired: false, transformFunction: null }, showSearch: { classPropertyName: "showSearch", publicName: "showSearch", isSignal: true, isRequired: false, transformFunction: null }, values: { classPropertyName: "values", publicName: "values", isSignal: true, isRequired: false, transformFunction: null }, validation: { classPropertyName: "validation", publicName: "validation", isSignal: true, isRequired: false, transformFunction: null }, options: { classPropertyName: "options", publicName: "options", isSignal: true, isRequired: false, transformFunction: null }, searchValue: { classPropertyName: "searchValue", publicName: "searchValue", isSignal: true, isRequired: false, transformFunction: null }, selectedLabels: { classPropertyName: "selectedLabels", publicName: "selectedLabels", isSignal: true, isRequired: false, transformFunction: null }, transformSelectedLabels: { classPropertyName: "transformSelectedLabels", publicName: "transformSelectedLabels", isSignal: true, isRequired: false, transformFunction: null }, selectedType: { classPropertyName: "selectedType", publicName: "selectedType", isSignal: true, isRequired: false, transformFunction: null }, amountText: { classPropertyName: "amountText", publicName: "amountText", isSignal: true, isRequired: false, transformFunction: null }, validMessage: { classPropertyName: "validMessage", publicName: "validMessage", isSignal: true, isRequired: false, transformFunction: null }, required: { classPropertyName: "required", publicName: "required", isSignal: true, isRequired: false, transformFunction: null }, selectAllLabel: { classPropertyName: "selectAllLabel", publicName: "selectAllLabel", isSignal: true, isRequired: false, transformFunction: null }, removeTagsTexts: { classPropertyName: "removeTagsTexts", publicName: "removeTagsTexts", isSignal: true, isRequired: false, transformFunction: null }, placement: { classPropertyName: "placement", publicName: "placement", isSignal: true, isRequired: false, transformFunction: null }, searchFilter: { classPropertyName: "searchFilter", publicName: "searchFilter", isSignal: true, isRequired: false, transformFunction: null }, className: { classPropertyName: "className", publicName: "className", isSignal: true, isRequired: false, transformFunction: null }, formFieldWidth: { classPropertyName: "formFieldWidth", publicName: "formFieldWidth", isSignal: true, isRequired: false, transformFunction: null }, variant: { classPropertyName: "variant", publicName: "variant", isSignal: true, isRequired: false, transformFunction: null }, showLabel: { classPropertyName: "showLabel", publicName: "showLabel", isSignal: true, isRequired: false, transformFunction: null }, icon: { classPropertyName: "icon", publicName: "icon", isSignal: true, isRequired: false, transformFunction: null }, showIcon: { classPropertyName: "showIcon", publicName: "showIcon", isSignal: true, isRequired: false, transformFunction: null }, label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: false, transformFunction: null }, form: { classPropertyName: "form", publicName: "form", isSignal: true, isRequired: false, transformFunction: null }, name: { classPropertyName: "name", publicName: "name", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, open: { classPropertyName: "open", publicName: "open", isSignal: true, isRequired: false, transformFunction: null }, dropdownWidth: { classPropertyName: "dropdownWidth", publicName: "dropdownWidth", isSignal: true, isRequired: false, transformFunction: null }, searchLabel: { classPropertyName: "searchLabel", publicName: "searchLabel", isSignal: true, isRequired: false, transformFunction: null }, searchPlaceholder: { classPropertyName: "searchPlaceholder", publicName: "searchPlaceholder", isSignal: true, isRequired: false, transformFunction: null }, showLoading: { classPropertyName: "showLoading", publicName: "showLoading", isSignal: true, isRequired: false, transformFunction: null }, ariaListLabel: { classPropertyName: "ariaListLabel", publicName: "ariaListLabel", isSignal: true, isRequired: false, transformFunction: null }, noResultsText: { classPropertyName: "noResultsText", publicName: "noResultsText", isSignal: true, isRequired: false, transformFunction: null }, loadingText: { classPropertyName: "loadingText", publicName: "loadingText", isSignal: true, isRequired: false, transformFunction: null }, mobileCloseButtonText: { classPropertyName: "mobileCloseButtonText", publicName: "mobileCloseButtonText", isSignal: true, isRequired: false, transformFunction: null }, showClearSelection: { classPropertyName: "showClearSelection", publicName: "showClearSelection", isSignal: true, isRequired: false, transformFunction: null }, clearSelectionText: { classPropertyName: "clearSelectionText", publicName: "clearSelectionText", isSignal: true, isRequired: false, transformFunction: null }, placeholder: { classPropertyName: "placeholder", publicName: "placeholder", isSignal: true, isRequired: false, transformFunction: null }, messageIcon: { classPropertyName: "messageIcon", publicName: "messageIcon", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { values: "valuesChange", disabled: "disabledChange", amountChange: "amountChange", dropdownToggle: "dropdownToggle", optionSelected: "optionSelected", search: "search" }, providers: [{
|
|
6830
7205
|
provide: NG_VALUE_ACCESSOR,
|
|
6831
7206
|
useExisting: DBCustomSelect,
|
|
6832
7207
|
multi: true
|
|
@@ -7023,9 +7398,9 @@ class DBCustomSelect {
|
|
|
7023
7398
|
{{_voiceOverFallback()}}
|
|
7024
7399
|
</span>
|
|
7025
7400
|
</div>
|
|
7026
|
-
`, isInline: true, styles: [":host{display:contents}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "component", type: DBTag, selector: "db-tag", inputs: ["disabled", "removeButton", "id", "className", "semantic", "emphasis", "icon", "showCheckState", "showIcon", "noText", "overflow", "text", "behavior"], outputs: ["remove"] }, { kind: "component", type: DBCustomSelectDropdown, selector: "db-custom-select-dropdown", inputs: ["id", "className", "width"] }, { kind: "component", type: DBInput, selector: "db-input", inputs: ["id", "invalidMessage", "dataListId", "message", "showMessage", "value", "validMessage", "validation", "required", "minLength", "maxLength", "pattern", "dataList", "className", "variant", "showLabel", "showIcon", "icon", "iconAfter", "label", "name", "type", "placeholder", "disabled", "step", "maxlength", "minlength", "max", "min", "readOnly", "readonly", "form", "size", "autocomplete", "autofocus", "ariaDescribedBy", "messageIcon"], outputs: ["valueChange", "disabledChange", "input", "change", "blur", "focus"] }, { kind: "component", type: DBCustomSelectList, selector: "db-custom-select-list", inputs: ["multiple", "label", "id", "className"] }, { kind: "component", type: DBCustomSelectListItem, selector: "db-custom-select-list-item", inputs: ["id", "isGroupTitle", "showDivider", "type", "checked", "className", "groupTitle", "icon", "showIcon", "name", "disabled", "value", "label"], outputs: ["checkedChange", "disabledChange", "change"] }, { kind: "component", type: DBInfotext, selector: "db-infotext", inputs: ["id", "className", "icon", "semantic", "size", "showIcon", "text"] }, { kind: "component", type: DBButton, selector: "db-button", inputs: ["id", "className", "type", "disabled", "label", "icon", "showIcon", "size", "state", "width", "variant", "noText", "name", "form", "value", "describedbyid", "ariaexpanded", "ariapressed", "text"], outputs: ["click"] }, { kind: "component", type: DBTooltip, selector: "db-tooltip", inputs: ["id", "variant", "className", "emphasis", "animation", "delay", "width", "showArrow"
|
|
7401
|
+
`, isInline: true, styles: [":host{display:contents}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "component", type: DBTag, selector: "db-tag", inputs: ["disabled", "removeButton", "id", "className", "semantic", "emphasis", "icon", "showCheckState", "showIcon", "noText", "overflow", "text", "behavior"], outputs: ["remove"] }, { kind: "component", type: DBCustomSelectDropdown, selector: "db-custom-select-dropdown", inputs: ["id", "className", "width"] }, { kind: "component", type: DBInput, selector: "db-input", inputs: ["id", "invalidMessage", "dataListId", "message", "showMessage", "value", "validMessage", "validation", "required", "minLength", "maxLength", "pattern", "dataList", "className", "variant", "showLabel", "showIcon", "icon", "iconAfter", "label", "fieldSizing", "name", "type", "placeholder", "disabled", "step", "maxlength", "minlength", "max", "min", "readOnly", "readonly", "form", "size", "autocomplete", "autofocus", "ariaDescribedBy", "messageIcon"], outputs: ["valueChange", "disabledChange", "input", "change", "blur", "focus"] }, { kind: "component", type: DBCustomSelectList, selector: "db-custom-select-list", inputs: ["multiple", "label", "id", "className"] }, { kind: "component", type: DBCustomSelectListItem, selector: "db-custom-select-list-item", inputs: ["id", "isGroupTitle", "showDivider", "type", "checked", "className", "groupTitle", "icon", "showIcon", "name", "disabled", "value", "label"], outputs: ["checkedChange", "disabledChange", "change"] }, { kind: "component", type: DBInfotext, selector: "db-infotext", inputs: ["id", "className", "icon", "semantic", "size", "showIcon", "text"] }, { kind: "component", type: DBButton, selector: "db-button", inputs: ["id", "className", "type", "disabled", "label", "icon", "showIcon", "size", "state", "width", "variant", "noText", "name", "form", "value", "describedbyid", "ariaexpanded", "ariapressed", "text"], outputs: ["click"] }, { kind: "component", type: DBTooltip, selector: "db-tooltip", inputs: ["id", "variant", "placement", "className", "emphasis", "animation", "delay", "width", "showArrow"] }] }); }
|
|
7027
7402
|
}
|
|
7028
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
7403
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBCustomSelect, decorators: [{
|
|
7029
7404
|
type: Component,
|
|
7030
7405
|
args: [{ providers: [{
|
|
7031
7406
|
provide: NG_VALUE_ACCESSOR,
|
|
@@ -7281,8 +7656,8 @@ class DBCustomSelectFormField {
|
|
|
7281
7656
|
const element = this._ref()?.nativeElement;
|
|
7282
7657
|
this.enableAttributePassing(element, "db-custom-select-form-field");
|
|
7283
7658
|
}
|
|
7284
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
7285
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "19.2.
|
|
7659
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBCustomSelectFormField, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
7660
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "19.2.14", type: DBCustomSelectFormField, isStandalone: true, selector: "db-custom-select-form-field", inputs: { id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null }, className: { classPropertyName: "className", publicName: "className", isSignal: true, isRequired: false, transformFunction: null } }, viewQueries: [{ propertyName: "_ref", first: true, predicate: ["_ref"], descendants: true, isSignal: true }], ngImport: i0, template: `
|
|
7286
7661
|
<summary
|
|
7287
7662
|
#_ref
|
|
7288
7663
|
[attr.id]="id()"
|
|
@@ -7292,7 +7667,7 @@ class DBCustomSelectFormField {
|
|
|
7292
7667
|
</summary>
|
|
7293
7668
|
`, isInline: true, styles: [":host{display:contents}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }] }); }
|
|
7294
7669
|
}
|
|
7295
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
7670
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DBCustomSelectFormField, decorators: [{
|
|
7296
7671
|
type: Component,
|
|
7297
7672
|
args: [{ selector: "db-custom-select-form-field", standalone: true, imports: [CommonModule], template: `
|
|
7298
7673
|
<summary
|
|
@@ -7309,5 +7684,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.13", ngImpo
|
|
|
7309
7684
|
* Generated bundle index. Do not edit.
|
|
7310
7685
|
*/
|
|
7311
7686
|
|
|
7312
|
-
export { AlignmentList, AutoCompleteList, COLOR, COLORS, COLORS_SIMPLE, COLOR_CONST, COLOR_SIMPLE, DBAccordion, DBAccordionItem, DBBadge, DBBrand, DBButton, DBCard, DBCheckbox, DBCustomSelect, DBCustomSelectDropdown, DBCustomSelectFormField, DBCustomSelectList, DBCustomSelectListItem, DBDivider, DBDrawer, DBHeader, DBIcon, DBInfotext, DBInput, DBLink, DBNavigation, DBNavigationItem, DBNotification, DBPage, DBPopover, DBRadio, DBSection, DBSelect, DBStack, DBSwitch, DBTabItem, DBTabList, DBTabPanel, DBTabs, DBTag, DBTextarea, DBTooltip, DEFAULT_BACK, DEFAULT_BURGER_MENU, DEFAULT_CLOSE_BUTTON, DEFAULT_DATALIST_ID_SUFFIX, DEFAULT_ICON, DEFAULT_ID, DEFAULT_INVALID_MESSAGE, DEFAULT_INVALID_MESSAGE_ID_SUFFIX, DEFAULT_LABEL, DEFAULT_LABEL_ID_SUFFIX, DEFAULT_MESSAGE, DEFAULT_MESSAGE_ID_SUFFIX, DEFAULT_PLACEHOLDER, DEFAULT_PLACEHOLDER_ID_SUFFIX, DEFAULT_REMOVE, DEFAULT_ROWS, DEFAULT_SELECTED, DEFAULT_SELECT_ID_SUFFIX, DEFAULT_VALID_MESSAGE, DEFAULT_VALID_MESSAGE_ID_SUFFIX, DEFAULT_VIEWPORT, DENSITIES, DENSITY, DENSITY_CONST, DESKTOP_VIEWPORT, EmphasisList, GapSpacingList, LabelVariantList, LinkCurrentList, LinkReferrerPolicyList, LinkTargetList, MarginList, MaxWidthList, MetaNavigationDirective, NavigationContentDirective, NavigationDirective, NavigationItemSafeTriangle, OrientationList, PlacementHorizontalList, PlacementList, PlacementVerticalList, PopoverDelayList, PopoverWidthList, SEMANTIC, SEMANTICS, SecondaryActionDirective, SemanticList, SizeList, SpacingList, TESTING_VIEWPORTS, ValidationList, WidthList, addAttributeToChildren, cls, delay, getBoolean, getBooleanAsString, getHideProp, getInputValue, getNumber,
|
|
7687
|
+
export { AlignmentList, AutoCompleteList, COLOR, COLORS, COLORS_SIMPLE, COLOR_CONST, COLOR_SIMPLE, DBAccordion, DBAccordionItem, DBBadge, DBBrand, DBButton, DBCard, DBCheckbox, DBCustomSelect, DBCustomSelectDropdown, DBCustomSelectFormField, DBCustomSelectList, DBCustomSelectListItem, DBDivider, DBDrawer, DBHeader, DBIcon, DBInfotext, DBInput, DBLink, DBNavigation, DBNavigationItem, DBNotification, DBPage, DBPopover, DBRadio, DBSection, DBSelect, DBStack, DBSwitch, DBTabItem, DBTabList, DBTabPanel, DBTabs, DBTag, DBTextarea, DBTooltip, DEFAULT_BACK, DEFAULT_BURGER_MENU, DEFAULT_CLOSE_BUTTON, DEFAULT_DATALIST_ID_SUFFIX, DEFAULT_ICON, DEFAULT_ID, DEFAULT_INVALID_MESSAGE, DEFAULT_INVALID_MESSAGE_ID_SUFFIX, DEFAULT_LABEL, DEFAULT_LABEL_ID_SUFFIX, DEFAULT_MESSAGE, DEFAULT_MESSAGE_ID_SUFFIX, DEFAULT_PLACEHOLDER, DEFAULT_PLACEHOLDER_ID_SUFFIX, DEFAULT_REMOVE, DEFAULT_ROWS, DEFAULT_SELECTED, DEFAULT_SELECT_ID_SUFFIX, DEFAULT_VALID_MESSAGE, DEFAULT_VALID_MESSAGE_ID_SUFFIX, DEFAULT_VIEWPORT, DENSITIES, DENSITY, DENSITY_CONST, DESKTOP_VIEWPORT, EmphasisList, FieldSizingList, GapSpacingList, LabelVariantList, LinkCurrentList, LinkReferrerPolicyList, LinkTargetList, MarginList, MaxWidthList, MetaNavigationDirective, NavigationContentDirective, NavigationDirective, NavigationItemSafeTriangle, OrientationList, PlacementHorizontalList, PlacementList, PlacementVerticalList, PopoverDelayList, PopoverWidthList, SEMANTIC, SEMANTICS, SecondaryActionDirective, SemanticList, SizeList, SpacingList, TESTING_VIEWPORTS, ValidationList, WidthList, addAttributeToChildren, cls, delay, getBoolean, getBooleanAsString, getHideProp, getInputValue, getNumber, getOptionKey, getSearchInput, hasVoiceOver, isArrayOfStrings, isEventTargetNavigationItem, stringPropVisible, uuid };
|
|
7313
7688
|
//# sourceMappingURL=db-ux-ngx-core-components.mjs.map
|