ngx-strata 0.2.1 → 0.2.2
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/assets/styles/base.scss +4 -0
- package/assets/styles/components/action-menu.scss +2 -1
- package/assets/styles/components/card.scss +2 -1
- package/assets/styles/components/modal.scss +26 -0
- package/assets/styles/components/tag.scss +1 -1
- package/assets/styles/shadows.scss +1 -0
- package/dist/strata/strata.css +1 -1
- package/fesm2022/ngx-strata.mjs +666 -497
- package/fesm2022/ngx-strata.mjs.map +1 -1
- package/package.json +5 -4
- package/skills/ngx-strata/SKILL.md +1 -1
- package/skills/ngx-strata/components/accordion.md +1 -1
- package/skills/ngx-strata/components/action-menu.md +1 -1
- package/skills/ngx-strata/components/alert.md +1 -1
- package/skills/ngx-strata/components/avatar.md +1 -1
- package/skills/ngx-strata/components/breadcrumb.md +1 -1
- package/skills/ngx-strata/components/button.md +1 -1
- package/skills/ngx-strata/components/card.md +8 -2
- package/skills/ngx-strata/components/checkbox.md +1 -1
- package/skills/ngx-strata/components/divider.md +1 -1
- package/skills/ngx-strata/components/icon.md +1 -1
- package/skills/ngx-strata/components/input-field.md +2 -2
- package/skills/ngx-strata/components/item.md +2 -2
- package/skills/ngx-strata/components/kbd.md +1 -1
- package/skills/ngx-strata/components/message-state.md +1 -1
- package/skills/ngx-strata/components/modal.md +16 -6
- package/skills/ngx-strata/components/notification.md +1 -1
- package/skills/ngx-strata/components/number-display.md +1 -1
- package/skills/ngx-strata/components/overlay.md +1 -1
- package/skills/ngx-strata/components/pagination.md +1 -1
- package/skills/ngx-strata/components/progress.md +2 -2
- package/skills/ngx-strata/components/radio.md +1 -1
- package/skills/ngx-strata/components/segmented-control.md +1 -1
- package/skills/ngx-strata/components/shell.md +1 -1
- package/skills/ngx-strata/components/sidemenu.md +2 -2
- package/skills/ngx-strata/components/single-select.md +1 -1
- package/skills/ngx-strata/components/slider.md +1 -1
- package/skills/ngx-strata/components/spinner.md +1 -1
- package/skills/ngx-strata/components/tabs.md +1 -1
- package/skills/ngx-strata/components/tag.md +1 -1
- package/skills/ngx-strata/components/text-stack.md +2 -2
- package/skills/ngx-strata/components/theming.md +2 -2
- package/skills/ngx-strata/components/toggle.md +1 -1
- package/types/ngx-strata.d.ts +20 -22
package/fesm2022/ngx-strata.mjs
CHANGED
|
@@ -1,22 +1,25 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { inject, ElementRef, input, model, output, computed, Directive, Injectable, provideAppInitializer, makeEnvironmentProviders, InjectionToken, DOCUMENT,
|
|
2
|
+
import { inject, ElementRef, input, model, output, computed, Directive, Injectable, provideAppInitializer, makeEnvironmentProviders, InjectionToken, DOCUMENT, Renderer2, Input, signal, effect, DestroyRef, HostListener, Component, contentChild, HostBinding, ViewContainerRef, viewChild, contentChildren, TemplateRef, Pipe, booleanAttribute, ContentChildren, Injector, LOCALE_ID } from '@angular/core';
|
|
3
3
|
import { computePosition, offset, arrow, autoUpdate, flip, shift } from '@floating-ui/dom';
|
|
4
4
|
import { Observable, tap, map, fromEvent, switchMap, filter } from 'rxjs';
|
|
5
5
|
import { HttpClient } from '@angular/common/http';
|
|
6
6
|
import { DomSanitizer } from '@angular/platform-browser';
|
|
7
7
|
import { takeUntilDestroyed, toSignal, toObservable } from '@angular/core/rxjs-interop';
|
|
8
8
|
import * as i1 from '@angular/common';
|
|
9
|
-
import { CommonModule, NgTemplateOutlet, DecimalPipe, formatNumber, getLocaleNumberSymbol, NumberSymbol } from '@angular/common';
|
|
9
|
+
import { CommonModule, NgTemplateOutlet, DecimalPipe, DOCUMENT as DOCUMENT$1, formatNumber, getLocaleNumberSymbol, NumberSymbol } from '@angular/common';
|
|
10
10
|
import * as i1$1 from '@angular/forms';
|
|
11
11
|
import { FormsModule } from '@angular/forms';
|
|
12
12
|
import { Router, NavigationEnd, RouterLinkActive } from '@angular/router';
|
|
13
13
|
|
|
14
14
|
class StrataActivatableDirective {
|
|
15
15
|
_elementRef = inject(ElementRef);
|
|
16
|
-
disabled = input(false,
|
|
17
|
-
|
|
16
|
+
disabled = input(false, /* @ts-ignore */
|
|
17
|
+
...(ngDevMode ? [{ debugName: "disabled" }] : /* istanbul ignore next */ []));
|
|
18
|
+
interactable = model(true, /* @ts-ignore */
|
|
19
|
+
...(ngDevMode ? [{ debugName: "interactable" }] : /* istanbul ignore next */ []));
|
|
18
20
|
activated = output();
|
|
19
|
-
isFocusable = computed(() => this.interactable() && !this.disabled(),
|
|
21
|
+
isFocusable = computed(() => this.interactable() && !this.disabled(), /* @ts-ignore */
|
|
22
|
+
...(ngDevMode ? [{ debugName: "isFocusable" }] : /* istanbul ignore next */ []));
|
|
20
23
|
onKeyDown(event) {
|
|
21
24
|
if (!this.isFocusable()) {
|
|
22
25
|
return;
|
|
@@ -27,17 +30,17 @@ class StrataActivatableDirective {
|
|
|
27
30
|
this._elementRef.nativeElement.click();
|
|
28
31
|
}
|
|
29
32
|
}
|
|
30
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
31
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "
|
|
33
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataActivatableDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
34
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "22.0.1", type: StrataActivatableDirective, isStandalone: true, selector: "[stActivatable]", inputs: { disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, interactable: { classPropertyName: "interactable", publicName: "interactable", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { interactable: "interactableChange", activated: "activated" }, host: { listeners: { "keydown": "onKeyDown($event)" }, properties: { "attr.tabindex": "isFocusable() ? \"0\" : null" } }, ngImport: i0 });
|
|
32
35
|
}
|
|
33
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
36
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataActivatableDirective, decorators: [{
|
|
34
37
|
type: Directive,
|
|
35
38
|
args: [{
|
|
36
39
|
selector: '[stActivatable]',
|
|
37
40
|
host: {
|
|
38
41
|
'(keydown)': 'onKeyDown($event)',
|
|
39
|
-
'[attr.tabindex]': 'isFocusable() ? "0" : null'
|
|
40
|
-
}
|
|
42
|
+
'[attr.tabindex]': 'isFocusable() ? "0" : null'
|
|
43
|
+
}
|
|
41
44
|
}]
|
|
42
45
|
}], propDecorators: { disabled: [{ type: i0.Input, args: [{ isSignal: true, alias: "disabled", required: false }] }], interactable: [{ type: i0.Input, args: [{ isSignal: true, alias: "interactable", required: false }] }, { type: i0.Output, args: ["interactableChange"] }], activated: [{ type: i0.Output, args: ["activated"] }] } });
|
|
43
46
|
|
|
@@ -45,12 +48,9 @@ class IconLoader {
|
|
|
45
48
|
}
|
|
46
49
|
|
|
47
50
|
class IconRegistryService {
|
|
48
|
-
iconLoader;
|
|
51
|
+
iconLoader = inject(IconLoader);
|
|
49
52
|
icons = {};
|
|
50
53
|
svgs = {};
|
|
51
|
-
constructor(iconLoader) {
|
|
52
|
-
this.iconLoader = iconLoader;
|
|
53
|
-
}
|
|
54
54
|
registerIcons(iconConfigs) {
|
|
55
55
|
iconConfigs.forEach((config) => this.registerIcon(config));
|
|
56
56
|
}
|
|
@@ -78,52 +78,52 @@ class IconRegistryService {
|
|
|
78
78
|
this.svgs[name] = svg;
|
|
79
79
|
}));
|
|
80
80
|
}
|
|
81
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
82
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
81
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: IconRegistryService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
82
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: IconRegistryService, providedIn: 'root' });
|
|
83
83
|
}
|
|
84
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
84
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: IconRegistryService, decorators: [{
|
|
85
85
|
type: Injectable,
|
|
86
86
|
args: [{
|
|
87
|
-
providedIn: 'root'
|
|
87
|
+
providedIn: 'root'
|
|
88
88
|
}]
|
|
89
|
-
}]
|
|
89
|
+
}] });
|
|
90
90
|
|
|
91
91
|
const baseIconConfigs = [
|
|
92
92
|
{
|
|
93
93
|
name: 'question',
|
|
94
|
-
url: 'assets/icons/question.svg'
|
|
94
|
+
url: 'assets/icons/question.svg'
|
|
95
95
|
},
|
|
96
96
|
{
|
|
97
97
|
name: 'arrow-right',
|
|
98
|
-
url: 'assets/icons/arrow-right.svg'
|
|
98
|
+
url: 'assets/icons/arrow-right.svg'
|
|
99
99
|
},
|
|
100
100
|
{
|
|
101
101
|
name: 'arrow-left',
|
|
102
|
-
url: 'assets/icons/arrow-left.svg'
|
|
102
|
+
url: 'assets/icons/arrow-left.svg'
|
|
103
103
|
},
|
|
104
104
|
{
|
|
105
105
|
name: 'arrow-up',
|
|
106
|
-
url: 'assets/icons/arrow-up.svg'
|
|
106
|
+
url: 'assets/icons/arrow-up.svg'
|
|
107
107
|
},
|
|
108
108
|
{
|
|
109
109
|
name: 'arrow-down',
|
|
110
|
-
url: 'assets/icons/arrow-down.svg'
|
|
110
|
+
url: 'assets/icons/arrow-down.svg'
|
|
111
111
|
},
|
|
112
112
|
{
|
|
113
113
|
name: 'close',
|
|
114
|
-
url: 'assets/icons/close.svg'
|
|
114
|
+
url: 'assets/icons/close.svg'
|
|
115
115
|
},
|
|
116
116
|
{
|
|
117
117
|
name: 'expand-up-down',
|
|
118
|
-
url: 'assets/icons/expand-up-down.svg'
|
|
118
|
+
url: 'assets/icons/expand-up-down.svg'
|
|
119
119
|
},
|
|
120
120
|
{
|
|
121
121
|
name: 'clipboard',
|
|
122
|
-
url: 'assets/icons/clipboard.svg'
|
|
122
|
+
url: 'assets/icons/clipboard.svg'
|
|
123
123
|
},
|
|
124
124
|
{
|
|
125
125
|
name: 'more',
|
|
126
|
-
url: 'assets/icons/more.svg'
|
|
126
|
+
url: 'assets/icons/more.svg'
|
|
127
127
|
},
|
|
128
128
|
];
|
|
129
129
|
|
|
@@ -150,10 +150,10 @@ class HttpIconLoader {
|
|
|
150
150
|
.get(url, { responseType: 'text' })
|
|
151
151
|
.pipe(map((raw) => this.sanitizer.bypassSecurityTrustHtml(raw)));
|
|
152
152
|
}
|
|
153
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
154
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
153
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: HttpIconLoader, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
154
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: HttpIconLoader, providedIn: 'root' });
|
|
155
155
|
}
|
|
156
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
156
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: HttpIconLoader, decorators: [{
|
|
157
157
|
type: Injectable,
|
|
158
158
|
args: [{ providedIn: 'root' }]
|
|
159
159
|
}] });
|
|
@@ -161,7 +161,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.0", ngImpor
|
|
|
161
161
|
function provideIconLoader() {
|
|
162
162
|
return {
|
|
163
163
|
provide: IconLoader,
|
|
164
|
-
useExisting: HttpIconLoader
|
|
164
|
+
useExisting: HttpIconLoader
|
|
165
165
|
};
|
|
166
166
|
}
|
|
167
167
|
|
|
@@ -171,7 +171,7 @@ class IconRegistry {
|
|
|
171
171
|
function provideIconRegistry() {
|
|
172
172
|
return {
|
|
173
173
|
provide: IconRegistry,
|
|
174
|
-
useExisting: IconRegistryService
|
|
174
|
+
useExisting: IconRegistryService
|
|
175
175
|
};
|
|
176
176
|
}
|
|
177
177
|
|
|
@@ -183,21 +183,21 @@ const DEFAULT_CONFIG = {
|
|
|
183
183
|
meta: '⌘',
|
|
184
184
|
ctrl: 'Ctrl',
|
|
185
185
|
shift: 'Shift',
|
|
186
|
-
alt: 'Alt'
|
|
187
|
-
}
|
|
186
|
+
alt: 'Alt'
|
|
187
|
+
}
|
|
188
188
|
};
|
|
189
189
|
function provideStrata(config = {}) {
|
|
190
190
|
const mergedConfig = {
|
|
191
191
|
...DEFAULT_CONFIG,
|
|
192
192
|
...config,
|
|
193
|
-
shortcutLabels: { ...DEFAULT_CONFIG.shortcutLabels, ...config.shortcutLabels }
|
|
193
|
+
shortcutLabels: { ...DEFAULT_CONFIG.shortcutLabels, ...config.shortcutLabels }
|
|
194
194
|
};
|
|
195
195
|
const providers = [
|
|
196
196
|
provideIconLoader(),
|
|
197
197
|
provideIconRegistry(),
|
|
198
198
|
{
|
|
199
199
|
provide: STRATA_CONFIG,
|
|
200
|
-
useValue: mergedConfig
|
|
200
|
+
useValue: mergedConfig
|
|
201
201
|
},
|
|
202
202
|
];
|
|
203
203
|
if (mergedConfig.includeBaseIcons) {
|
|
@@ -208,10 +208,11 @@ function provideStrata(config = {}) {
|
|
|
208
208
|
const STRATA_CONFIG = new InjectionToken('STRATA_CONFIG');
|
|
209
209
|
|
|
210
210
|
class StrataTooltipDirective {
|
|
211
|
-
document;
|
|
212
|
-
element;
|
|
213
|
-
renderer;
|
|
214
|
-
stSimpleTooltip = input.required(
|
|
211
|
+
document = inject(DOCUMENT);
|
|
212
|
+
element = inject(ElementRef);
|
|
213
|
+
renderer = inject(Renderer2);
|
|
214
|
+
stSimpleTooltip = input.required(/* @ts-ignore */
|
|
215
|
+
...(ngDevMode ? [{ debugName: "stSimpleTooltip" }] : /* istanbul ignore next */ []));
|
|
215
216
|
tooltipEnabled = true;
|
|
216
217
|
tooltipPlacement = 'top';
|
|
217
218
|
tooltipAlwaysShow = false;
|
|
@@ -220,11 +221,6 @@ class StrataTooltipDirective {
|
|
|
220
221
|
eventListeners;
|
|
221
222
|
autoUpdateCleanupFunction;
|
|
222
223
|
config = inject(STRATA_CONFIG);
|
|
223
|
-
constructor(document, element, renderer) {
|
|
224
|
-
this.document = document;
|
|
225
|
-
this.element = element;
|
|
226
|
-
this.renderer = renderer;
|
|
227
|
-
}
|
|
228
224
|
ngOnInit() {
|
|
229
225
|
if (!this.stSimpleTooltip() || this.stSimpleTooltip() === '' || !this.tooltipEnabled) {
|
|
230
226
|
return;
|
|
@@ -260,17 +256,17 @@ class StrataTooltipDirective {
|
|
|
260
256
|
doPosition() {
|
|
261
257
|
computePosition(this.element.nativeElement, this.tooltipContentElement, {
|
|
262
258
|
placement: this.tooltipPlacement,
|
|
263
|
-
middleware: [offset(6), arrow({ element: this.arrowElement })]
|
|
259
|
+
middleware: [offset(6), arrow({ element: this.arrowElement })]
|
|
264
260
|
}).then(({ x, y, middlewareData }) => {
|
|
265
261
|
Object.assign(this.tooltipContentElement.style, {
|
|
266
262
|
left: `${x}px`,
|
|
267
|
-
top: `${y}px
|
|
263
|
+
top: `${y}px`
|
|
268
264
|
});
|
|
269
265
|
if (middlewareData.arrow) {
|
|
270
266
|
const { x, y } = middlewareData.arrow;
|
|
271
267
|
Object.assign(this.arrowElement.style, {
|
|
272
268
|
left: x != null ? `${x}px` : '',
|
|
273
|
-
top: y != null ? `${y}px` : ''
|
|
269
|
+
top: y != null ? `${y}px` : ''
|
|
274
270
|
});
|
|
275
271
|
}
|
|
276
272
|
});
|
|
@@ -306,18 +302,15 @@ class StrataTooltipDirective {
|
|
|
306
302
|
this.autoUpdateCleanupFunction();
|
|
307
303
|
}
|
|
308
304
|
}
|
|
309
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
310
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "
|
|
305
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataTooltipDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
306
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "22.0.1", type: StrataTooltipDirective, isStandalone: true, selector: "[stSimpleTooltip]", inputs: { stSimpleTooltip: { classPropertyName: "stSimpleTooltip", publicName: "stSimpleTooltip", isSignal: true, isRequired: true, transformFunction: null }, tooltipEnabled: { classPropertyName: "tooltipEnabled", publicName: "tooltipEnabled", isSignal: false, isRequired: false, transformFunction: null }, tooltipPlacement: { classPropertyName: "tooltipPlacement", publicName: "tooltipPlacement", isSignal: false, isRequired: false, transformFunction: null }, tooltipAlwaysShow: { classPropertyName: "tooltipAlwaysShow", publicName: "tooltipAlwaysShow", isSignal: false, isRequired: false, transformFunction: null } }, ngImport: i0 });
|
|
311
307
|
}
|
|
312
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
308
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataTooltipDirective, decorators: [{
|
|
313
309
|
type: Directive,
|
|
314
310
|
args: [{
|
|
315
|
-
selector: '[stSimpleTooltip]'
|
|
311
|
+
selector: '[stSimpleTooltip]'
|
|
316
312
|
}]
|
|
317
|
-
}],
|
|
318
|
-
type: Inject,
|
|
319
|
-
args: [DOCUMENT]
|
|
320
|
-
}] }, { type: i0.ElementRef }, { type: i0.Renderer2 }], propDecorators: { stSimpleTooltip: [{ type: i0.Input, args: [{ isSignal: true, alias: "stSimpleTooltip", required: true }] }], tooltipEnabled: [{
|
|
313
|
+
}], propDecorators: { stSimpleTooltip: [{ type: i0.Input, args: [{ isSignal: true, alias: "stSimpleTooltip", required: true }] }], tooltipEnabled: [{
|
|
321
314
|
type: Input
|
|
322
315
|
}], tooltipPlacement: [{
|
|
323
316
|
type: Input
|
|
@@ -329,10 +322,14 @@ class DarkmodeService {
|
|
|
329
322
|
STORAGE_KEY = 'strata-darkmode';
|
|
330
323
|
document = inject(DOCUMENT);
|
|
331
324
|
osPrefersDark;
|
|
332
|
-
setting = signal('SYSTEM',
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
325
|
+
setting = signal('SYSTEM', /* @ts-ignore */
|
|
326
|
+
...(ngDevMode ? [{ debugName: "setting" }] : /* istanbul ignore next */ []));
|
|
327
|
+
darkmode = signal('LIGHT', /* @ts-ignore */
|
|
328
|
+
...(ngDevMode ? [{ debugName: "darkmode" }] : /* istanbul ignore next */ []));
|
|
329
|
+
currentMode = computed(() => this.darkmode(), /* @ts-ignore */
|
|
330
|
+
...(ngDevMode ? [{ debugName: "currentMode" }] : /* istanbul ignore next */ []));
|
|
331
|
+
currentSetting = computed(() => this.setting(), /* @ts-ignore */
|
|
332
|
+
...(ngDevMode ? [{ debugName: "currentSetting" }] : /* istanbul ignore next */ []));
|
|
336
333
|
constructor() {
|
|
337
334
|
effect(() => this.updateDarkmodeTagOnDOM(this.darkmode()));
|
|
338
335
|
this.setting.set(this.getSettingFromStorage());
|
|
@@ -378,13 +375,13 @@ class DarkmodeService {
|
|
|
378
375
|
getSettingFromStorage() {
|
|
379
376
|
return localStorage.getItem(this.STORAGE_KEY) ?? 'SYSTEM';
|
|
380
377
|
}
|
|
381
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
382
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
378
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: DarkmodeService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
379
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: DarkmodeService, providedIn: 'root' });
|
|
383
380
|
}
|
|
384
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
381
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: DarkmodeService, decorators: [{
|
|
385
382
|
type: Injectable,
|
|
386
383
|
args: [{
|
|
387
|
-
providedIn: 'root'
|
|
384
|
+
providedIn: 'root'
|
|
388
385
|
}]
|
|
389
386
|
}], ctorParameters: () => [] });
|
|
390
387
|
|
|
@@ -415,7 +412,7 @@ class HotkeyService {
|
|
|
415
412
|
this.registrations.set(id, {
|
|
416
413
|
combos,
|
|
417
414
|
handler,
|
|
418
|
-
options: { allowInInput: false, ...options }
|
|
415
|
+
options: { allowInInput: false, ...options }
|
|
419
416
|
});
|
|
420
417
|
return () => this.registrations.delete(id);
|
|
421
418
|
}
|
|
@@ -445,7 +442,7 @@ class HotkeyService {
|
|
|
445
442
|
meta: parts.includes('meta'),
|
|
446
443
|
ctrl: parts.includes('ctrl'),
|
|
447
444
|
shift: parts.includes('shift'),
|
|
448
|
-
alt: parts.includes('alt')
|
|
445
|
+
alt: parts.includes('alt')
|
|
449
446
|
};
|
|
450
447
|
}
|
|
451
448
|
/**
|
|
@@ -469,26 +466,29 @@ class HotkeyService {
|
|
|
469
466
|
const tag = target.tagName.toLowerCase();
|
|
470
467
|
return tag === 'input' || tag === 'textarea' || target.isContentEditable;
|
|
471
468
|
}
|
|
472
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
473
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
469
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: HotkeyService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
470
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: HotkeyService, providedIn: 'root' });
|
|
474
471
|
}
|
|
475
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
472
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: HotkeyService, decorators: [{
|
|
476
473
|
type: Injectable,
|
|
477
474
|
args: [{ providedIn: 'root' }]
|
|
478
475
|
}], ctorParameters: () => [] });
|
|
479
476
|
|
|
480
477
|
class StrataCheckboxComponent {
|
|
481
|
-
value = model(false,
|
|
482
|
-
|
|
483
|
-
|
|
478
|
+
value = model(false, /* @ts-ignore */
|
|
479
|
+
...(ngDevMode ? [{ debugName: "value" }] : /* istanbul ignore next */ []));
|
|
480
|
+
label = input(undefined, /* @ts-ignore */
|
|
481
|
+
...(ngDevMode ? [{ debugName: "label" }] : /* istanbul ignore next */ []));
|
|
482
|
+
name = input(undefined, /* @ts-ignore */
|
|
483
|
+
...(ngDevMode ? [{ debugName: "name" }] : /* istanbul ignore next */ []));
|
|
484
484
|
onClick(event) {
|
|
485
485
|
event.stopImmediatePropagation();
|
|
486
486
|
this.value.set(!this.value());
|
|
487
487
|
}
|
|
488
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
489
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "
|
|
488
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataCheckboxComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
489
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.1", type: StrataCheckboxComponent, isStandalone: true, selector: "st-checkbox", inputs: { value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: false, transformFunction: null }, label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: false, transformFunction: null }, name: { classPropertyName: "name", publicName: "name", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { value: "valueChange" }, host: { listeners: { "click": "onClick($event)" } }, ngImport: i0, template: "<input type=\"checkbox\" [checked]=\"value()\" />\n<div class=\"checkbox-visual\">\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n viewBox=\"0 0 24 24\"\n fill=\"currentColor\"\n >\n <path\n d=\"M9.9997 15.1709L19.1921 5.97852L20.6063 7.39273L9.9997 17.9993L3.63574 11.6354L5.04996 10.2212L9.9997 15.1709Z\"\n ></path>\n </svg>\n</div>\n@if (label()) {\n <label [for]=\"name()\"> {{ label() }}</label>\n}\n" });
|
|
490
490
|
}
|
|
491
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
491
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataCheckboxComponent, decorators: [{
|
|
492
492
|
type: Component,
|
|
493
493
|
args: [{ selector: 'st-checkbox', imports: [], template: "<input type=\"checkbox\" [checked]=\"value()\" />\n<div class=\"checkbox-visual\">\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n viewBox=\"0 0 24 24\"\n fill=\"currentColor\"\n >\n <path\n d=\"M9.9997 15.1709L19.1921 5.97852L20.6063 7.39273L9.9997 17.9993L3.63574 11.6354L5.04996 10.2212L9.9997 15.1709Z\"\n ></path>\n </svg>\n</div>\n@if (label()) {\n <label [for]=\"name()\"> {{ label() }}</label>\n}\n" }]
|
|
494
494
|
}], propDecorators: { value: [{ type: i0.Input, args: [{ isSignal: true, alias: "value", required: false }] }, { type: i0.Output, args: ["valueChange"] }], label: [{ type: i0.Input, args: [{ isSignal: true, alias: "label", required: false }] }], name: [{ type: i0.Input, args: [{ isSignal: true, alias: "name", required: false }] }], onClick: [{
|
|
@@ -498,9 +498,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.0", ngImpor
|
|
|
498
498
|
|
|
499
499
|
class StrataToggleComponent {
|
|
500
500
|
_activatable = inject(StrataActivatableDirective);
|
|
501
|
-
checked = model(false,
|
|
502
|
-
|
|
503
|
-
|
|
501
|
+
checked = model(false, /* @ts-ignore */
|
|
502
|
+
...(ngDevMode ? [{ debugName: "checked" }] : /* istanbul ignore next */ []));
|
|
503
|
+
label = input(undefined, /* @ts-ignore */
|
|
504
|
+
...(ngDevMode ? [{ debugName: "label" }] : /* istanbul ignore next */ []));
|
|
505
|
+
labelPosition = input('after', /* @ts-ignore */
|
|
506
|
+
...(ngDevMode ? [{ debugName: "labelPosition" }] : /* istanbul ignore next */ []));
|
|
504
507
|
disabled = this._activatable.disabled;
|
|
505
508
|
onCheckChanged(event) {
|
|
506
509
|
if (this.disabled()) {
|
|
@@ -511,16 +514,16 @@ class StrataToggleComponent {
|
|
|
511
514
|
}
|
|
512
515
|
this.checked.set(!this.checked());
|
|
513
516
|
}
|
|
514
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
515
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "
|
|
517
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataToggleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
518
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.1", type: StrataToggleComponent, isStandalone: true, selector: "st-toggle", inputs: { checked: { classPropertyName: "checked", publicName: "checked", isSignal: true, isRequired: false, transformFunction: null }, label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: false, transformFunction: null }, labelPosition: { classPropertyName: "labelPosition", publicName: "labelPosition", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { checked: "checkedChange" }, host: { attributes: { "role": "switch" }, listeners: { "click": "onCheckChanged($event)" }, properties: { "attr.aria-checked": "checked()", "attr.aria-disabled": "disabled()", "attr.data-checked": "checked()", "attr.data-disabled": "disabled()", "class.st-toggle-label-before": "labelPosition() === 'before'", "class.st-toggle-label-after": "labelPosition() === 'after'" } }, hostDirectives: [{ directive: StrataActivatableDirective, inputs: ["disabled", "disabled"], outputs: ["activated", "activated"] }], ngImport: i0, template: "<div class=\"st-toggle-track\">\n <div class=\"toggle-handle\"></div>\n</div>\n@if (label()) {\n <span class=\"st-toggle-label\">{{ label() }}</span>\n}\n<ng-content></ng-content>\n" });
|
|
516
519
|
}
|
|
517
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
520
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataToggleComponent, decorators: [{
|
|
518
521
|
type: Component,
|
|
519
522
|
args: [{ selector: 'st-toggle', imports: [], hostDirectives: [
|
|
520
523
|
{
|
|
521
524
|
directive: StrataActivatableDirective,
|
|
522
525
|
inputs: ['disabled'],
|
|
523
|
-
outputs: ['activated']
|
|
526
|
+
outputs: ['activated']
|
|
524
527
|
},
|
|
525
528
|
], host: {
|
|
526
529
|
'(click)': 'onCheckChanged($event)',
|
|
@@ -530,15 +533,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.0", ngImpor
|
|
|
530
533
|
'[attr.data-checked]': 'checked()',
|
|
531
534
|
'[attr.data-disabled]': 'disabled()',
|
|
532
535
|
'[class.st-toggle-label-before]': "labelPosition() === 'before'",
|
|
533
|
-
'[class.st-toggle-label-after]': "labelPosition() === 'after'"
|
|
536
|
+
'[class.st-toggle-label-after]': "labelPosition() === 'after'"
|
|
534
537
|
}, template: "<div class=\"st-toggle-track\">\n <div class=\"toggle-handle\"></div>\n</div>\n@if (label()) {\n <span class=\"st-toggle-label\">{{ label() }}</span>\n}\n<ng-content></ng-content>\n" }]
|
|
535
538
|
}], propDecorators: { checked: [{ type: i0.Input, args: [{ isSignal: true, alias: "checked", required: false }] }, { type: i0.Output, args: ["checkedChange"] }], label: [{ type: i0.Input, args: [{ isSignal: true, alias: "label", required: false }] }], labelPosition: [{ type: i0.Input, args: [{ isSignal: true, alias: "labelPosition", required: false }] }] } });
|
|
536
539
|
|
|
537
540
|
class StrataActionMenuItemComponent {
|
|
538
|
-
checkbox = contentChild(StrataCheckboxComponent, { ...(ngDevMode ? { debugName: "checkbox" } : {}), read: ElementRef });
|
|
539
|
-
toggle = contentChild(StrataToggleComponent, { ...(ngDevMode ? { debugName: "toggle" } : {}), read: ElementRef });
|
|
540
|
-
closeMenuOnClick = input(true,
|
|
541
|
-
|
|
541
|
+
checkbox = contentChild(StrataCheckboxComponent, { ...(ngDevMode ? { debugName: "checkbox" } : /* istanbul ignore next */ {}), read: ElementRef });
|
|
542
|
+
toggle = contentChild(StrataToggleComponent, { ...(ngDevMode ? { debugName: "toggle" } : /* istanbul ignore next */ {}), read: ElementRef });
|
|
543
|
+
closeMenuOnClick = input(true, /* @ts-ignore */
|
|
544
|
+
...(ngDevMode ? [{ debugName: "closeMenuOnClick" }] : /* istanbul ignore next */ []));
|
|
545
|
+
active = input(false, /* @ts-ignore */
|
|
546
|
+
...(ngDevMode ? [{ debugName: "active" }] : /* istanbul ignore next */ []));
|
|
542
547
|
get isActive() {
|
|
543
548
|
return this.active();
|
|
544
549
|
}
|
|
@@ -550,10 +555,10 @@ class StrataActionMenuItemComponent {
|
|
|
550
555
|
this.checkbox()?.nativeElement.click();
|
|
551
556
|
this.toggle()?.nativeElement.click();
|
|
552
557
|
}
|
|
553
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
554
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "
|
|
558
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataActionMenuItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
559
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "22.0.1", type: StrataActionMenuItemComponent, isStandalone: true, selector: "st-action-menu-item", inputs: { closeMenuOnClick: { classPropertyName: "closeMenuOnClick", publicName: "closeMenuOnClick", isSignal: true, isRequired: false, transformFunction: null }, active: { classPropertyName: "active", publicName: "active", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { menuItemClicked: "menuItemClicked" }, host: { listeners: { "click": "onHostClick($event)" }, properties: { "class.active": "this.isActive" } }, queries: [{ propertyName: "checkbox", first: true, predicate: StrataCheckboxComponent, descendants: true, read: ElementRef, isSignal: true }, { propertyName: "toggle", first: true, predicate: StrataToggleComponent, descendants: true, read: ElementRef, isSignal: true }], ngImport: i0, template: "<span class=\"item-start\">\n <ng-content select=\"[area='start']\"></ng-content\n></span>\n<span class=\"item-default\"> <ng-content></ng-content></span>\n<span class=\"item-end\">\n <ng-content select=\"[area='end']\"></ng-content>\n</span>\n", styles: [":host{height:48px}\n"] });
|
|
555
560
|
}
|
|
556
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
561
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataActionMenuItemComponent, decorators: [{
|
|
557
562
|
type: Component,
|
|
558
563
|
args: [{ selector: 'st-action-menu-item', imports: [], template: "<span class=\"item-start\">\n <ng-content select=\"[area='start']\"></ng-content\n></span>\n<span class=\"item-default\"> <ng-content></ng-content></span>\n<span class=\"item-end\">\n <ng-content select=\"[area='end']\"></ng-content>\n</span>\n", styles: [":host{height:48px}\n"] }]
|
|
559
564
|
}], propDecorators: { checkbox: [{ type: i0.ContentChild, args: [i0.forwardRef(() => StrataCheckboxComponent), { ...{ read: ElementRef }, isSignal: true }] }], toggle: [{ type: i0.ContentChild, args: [i0.forwardRef(() => StrataToggleComponent), { ...{ read: ElementRef }, isSignal: true }] }], closeMenuOnClick: [{ type: i0.Input, args: [{ isSignal: true, alias: "closeMenuOnClick", required: false }] }], active: [{ type: i0.Input, args: [{ isSignal: true, alias: "active", required: false }] }], isActive: [{
|
|
@@ -566,12 +571,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.0", ngImpor
|
|
|
566
571
|
|
|
567
572
|
class StrataButtonDirective {
|
|
568
573
|
host = inject(ElementRef);
|
|
569
|
-
variant = input('secondary',
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
574
|
+
variant = input('secondary', /* @ts-ignore */
|
|
575
|
+
...(ngDevMode ? [{ debugName: "variant" }] : /* istanbul ignore next */ []));
|
|
576
|
+
size = input('md', /* @ts-ignore */
|
|
577
|
+
...(ngDevMode ? [{ debugName: "size" }] : /* istanbul ignore next */ []));
|
|
578
|
+
fullWidth = input(false, /* @ts-ignore */
|
|
579
|
+
...(ngDevMode ? [{ debugName: "fullWidth" }] : /* istanbul ignore next */ []));
|
|
580
|
+
iconAtStart = signal(false, /* @ts-ignore */
|
|
581
|
+
...(ngDevMode ? [{ debugName: "iconAtStart" }] : /* istanbul ignore next */ []));
|
|
582
|
+
iconAtEnd = signal(false, /* @ts-ignore */
|
|
583
|
+
...(ngDevMode ? [{ debugName: "iconAtEnd" }] : /* istanbul ignore next */ []));
|
|
584
|
+
iconOnly = signal(false, /* @ts-ignore */
|
|
585
|
+
...(ngDevMode ? [{ debugName: "iconOnly" }] : /* istanbul ignore next */ []));
|
|
575
586
|
get classes() {
|
|
576
587
|
return [
|
|
577
588
|
'st-button',
|
|
@@ -605,13 +616,13 @@ class StrataButtonDirective {
|
|
|
605
616
|
}
|
|
606
617
|
return false;
|
|
607
618
|
}
|
|
608
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
609
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "
|
|
619
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataButtonDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
620
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "22.0.1", type: StrataButtonDirective, isStandalone: true, selector: "[stButton]", inputs: { variant: { classPropertyName: "variant", publicName: "variant", isSignal: true, isRequired: false, transformFunction: null }, size: { classPropertyName: "size", publicName: "size", isSignal: true, isRequired: false, transformFunction: null }, fullWidth: { classPropertyName: "fullWidth", publicName: "fullWidth", isSignal: true, isRequired: false, transformFunction: null } }, host: { properties: { "class": "this.classes" } }, ngImport: i0 });
|
|
610
621
|
}
|
|
611
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
622
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataButtonDirective, decorators: [{
|
|
612
623
|
type: Directive,
|
|
613
624
|
args: [{
|
|
614
|
-
selector: '[stButton]'
|
|
625
|
+
selector: '[stButton]'
|
|
615
626
|
}]
|
|
616
627
|
}], propDecorators: { variant: [{ type: i0.Input, args: [{ isSignal: true, alias: "variant", required: false }] }], size: [{ type: i0.Input, args: [{ isSignal: true, alias: "size", required: false }] }], fullWidth: [{ type: i0.Input, args: [{ isSignal: true, alias: "fullWidth", required: false }] }], classes: [{
|
|
617
628
|
type: HostBinding,
|
|
@@ -620,10 +631,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.0", ngImpor
|
|
|
620
631
|
|
|
621
632
|
class StrataCardComponent {
|
|
622
633
|
elementRef = inject(ElementRef);
|
|
623
|
-
elevated = input(false,
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
634
|
+
elevated = input(false, /* @ts-ignore */
|
|
635
|
+
...(ngDevMode ? [{ debugName: "elevated" }] : /* istanbul ignore next */ []));
|
|
636
|
+
selectable = input(false, /* @ts-ignore */
|
|
637
|
+
...(ngDevMode ? [{ debugName: "selectable" }] : /* istanbul ignore next */ []));
|
|
638
|
+
padding = input(true, /* @ts-ignore */
|
|
639
|
+
...(ngDevMode ? [{ debugName: "padding" }] : /* istanbul ignore next */ []));
|
|
640
|
+
variant = input('elevated', /* @ts-ignore */
|
|
641
|
+
...(ngDevMode ? [{ debugName: "variant" }] : /* istanbul ignore next */ []));
|
|
627
642
|
get withPadding() {
|
|
628
643
|
return this.padding();
|
|
629
644
|
}
|
|
@@ -648,10 +663,10 @@ class StrataCardComponent {
|
|
|
648
663
|
this.elementRef.nativeElement.click();
|
|
649
664
|
}
|
|
650
665
|
}
|
|
651
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
652
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "
|
|
666
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataCardComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
667
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.1", type: StrataCardComponent, isStandalone: true, selector: "st-card", inputs: { elevated: { classPropertyName: "elevated", publicName: "elevated", isSignal: true, isRequired: false, transformFunction: null }, selectable: { classPropertyName: "selectable", publicName: "selectable", isSignal: true, isRequired: false, transformFunction: null }, padding: { classPropertyName: "padding", publicName: "padding", isSignal: true, isRequired: false, transformFunction: null }, variant: { classPropertyName: "variant", publicName: "variant", isSignal: true, isRequired: false, transformFunction: null } }, host: { listeners: { "keydown.enter": "handleKeyboardEvent($event)", "keydown.space": "handleKeyboardEvent($event)" }, properties: { "class.with-padding": "this.withPadding", "class.selectable": "this.isSelectable", "attr.tabindex": "this.tabIndex", "class.elevated": "this.isElevated", "class.flat": "this.isFlat", "class.outline": "this.isOutline" } }, ngImport: i0, template: "<div class=\"cover-area\">\n <ng-content select=\"[area='cover']\"></ng-content>\n</div>\n<div class=\"card-content\">\n <ng-content></ng-content>\n</div>\n" });
|
|
653
668
|
}
|
|
654
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
669
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataCardComponent, decorators: [{
|
|
655
670
|
type: Component,
|
|
656
671
|
args: [{ selector: 'st-card', imports: [], template: "<div class=\"cover-area\">\n <ng-content select=\"[area='cover']\"></ng-content>\n</div>\n<div class=\"card-content\">\n <ng-content></ng-content>\n</div>\n" }]
|
|
657
672
|
}], propDecorators: { elevated: [{ type: i0.Input, args: [{ isSignal: true, alias: "elevated", required: false }] }], selectable: [{ type: i0.Input, args: [{ isSignal: true, alias: "selectable", required: false }] }], padding: [{ type: i0.Input, args: [{ isSignal: true, alias: "padding", required: false }] }], variant: [{ type: i0.Input, args: [{ isSignal: true, alias: "variant", required: false }] }], withPadding: [{
|
|
@@ -682,27 +697,33 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.0", ngImpor
|
|
|
682
697
|
|
|
683
698
|
class StrataIconComponent {
|
|
684
699
|
iconRegistry = inject(IconRegistry);
|
|
685
|
-
name = input('question',
|
|
686
|
-
|
|
700
|
+
name = input('question', /* @ts-ignore */
|
|
701
|
+
...(ngDevMode ? [{ debugName: "name" }] : /* istanbul ignore next */ []));
|
|
702
|
+
size = model('md', /* @ts-ignore */
|
|
703
|
+
...(ngDevMode ? [{ debugName: "size" }] : /* istanbul ignore next */ []));
|
|
687
704
|
svgMarkdown = toSignal(toObservable(this.name).pipe(switchMap((name) => this.iconRegistry.getIcon(name || 'question'))));
|
|
688
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
689
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "
|
|
705
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
706
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.1", type: StrataIconComponent, isStandalone: true, selector: "st-icon", inputs: { name: { classPropertyName: "name", publicName: "name", isSignal: true, isRequired: false, transformFunction: null }, size: { classPropertyName: "size", publicName: "size", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { size: "sizeChange" }, host: { properties: { "class.xs": "size() === \"xs\"", "class.sm": "size() === \"sm\"", "class.md": "size() === \"md\"", "class.lg": "size() === \"lg\"" } }, ngImport: i0, template: "<span [innerHTML]=\"svgMarkdown()\"></span>\n" });
|
|
690
707
|
}
|
|
691
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
708
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataIconComponent, decorators: [{
|
|
692
709
|
type: Component,
|
|
693
710
|
args: [{ selector: 'st-icon', imports: [], host: {
|
|
694
711
|
'[class.xs]': 'size() === "xs"',
|
|
695
712
|
'[class.sm]': 'size() === "sm"',
|
|
696
713
|
'[class.md]': 'size() === "md"',
|
|
697
|
-
'[class.lg]': 'size() === "lg"'
|
|
714
|
+
'[class.lg]': 'size() === "lg"'
|
|
698
715
|
}, template: "<span [innerHTML]=\"svgMarkdown()\"></span>\n" }]
|
|
699
716
|
}], propDecorators: { name: [{ type: i0.Input, args: [{ isSignal: true, alias: "name", required: false }] }], size: [{ type: i0.Input, args: [{ isSignal: true, alias: "size", required: false }] }, { type: i0.Output, args: ["sizeChange"] }] } });
|
|
700
717
|
|
|
701
718
|
class StrataOverlayDirective {
|
|
702
|
-
stOverlay = input.required(
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
719
|
+
stOverlay = input.required(/* @ts-ignore */
|
|
720
|
+
...(ngDevMode ? [{ debugName: "stOverlay" }] : /* istanbul ignore next */ []));
|
|
721
|
+
overlayOpen = model(false, /* @ts-ignore */
|
|
722
|
+
...(ngDevMode ? [{ debugName: "overlayOpen" }] : /* istanbul ignore next */ []));
|
|
723
|
+
overlayPlacement = input('bottom', /* @ts-ignore */
|
|
724
|
+
...(ngDevMode ? [{ debugName: "overlayPlacement" }] : /* istanbul ignore next */ []));
|
|
725
|
+
overlayOffset = input(8, /* @ts-ignore */
|
|
726
|
+
...(ngDevMode ? [{ debugName: "overlayOffset" }] : /* istanbul ignore next */ []));
|
|
706
727
|
element = inject(ElementRef);
|
|
707
728
|
viewContainerRef = inject(ViewContainerRef);
|
|
708
729
|
overlayEl;
|
|
@@ -731,7 +752,7 @@ class StrataOverlayDirective {
|
|
|
731
752
|
const { x, y } = await computePosition(this.element.nativeElement, this.overlayEl, {
|
|
732
753
|
placement: this.overlayPlacement(),
|
|
733
754
|
strategy: 'fixed',
|
|
734
|
-
middleware: [offset(this.overlayOffset()), flip(), shift()]
|
|
755
|
+
middleware: [offset(this.overlayOffset()), flip(), shift()]
|
|
735
756
|
});
|
|
736
757
|
if (!this.overlayEl)
|
|
737
758
|
return;
|
|
@@ -740,7 +761,7 @@ class StrataOverlayDirective {
|
|
|
740
761
|
position: 'fixed',
|
|
741
762
|
left: `${x}px`,
|
|
742
763
|
top: `${y}px`,
|
|
743
|
-
zIndex: '10000'
|
|
764
|
+
zIndex: '10000'
|
|
744
765
|
});
|
|
745
766
|
this.overlayEl.style.setProperty('--st-overlay-anchor-element-width', `${width}px`);
|
|
746
767
|
}
|
|
@@ -758,24 +779,27 @@ class StrataOverlayDirective {
|
|
|
758
779
|
ngOnDestroy() {
|
|
759
780
|
this.destroy();
|
|
760
781
|
}
|
|
761
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
762
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "
|
|
782
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataOverlayDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
783
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "22.0.1", type: StrataOverlayDirective, isStandalone: true, selector: "[stOverlay]", inputs: { stOverlay: { classPropertyName: "stOverlay", publicName: "stOverlay", isSignal: true, isRequired: true, transformFunction: null }, overlayOpen: { classPropertyName: "overlayOpen", publicName: "overlayOpen", isSignal: true, isRequired: false, transformFunction: null }, overlayPlacement: { classPropertyName: "overlayPlacement", publicName: "overlayPlacement", isSignal: true, isRequired: false, transformFunction: null }, overlayOffset: { classPropertyName: "overlayOffset", publicName: "overlayOffset", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { overlayOpen: "overlayOpenChange" }, usesOnChanges: true, ngImport: i0 });
|
|
763
784
|
}
|
|
764
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
785
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataOverlayDirective, decorators: [{
|
|
765
786
|
type: Directive,
|
|
766
787
|
args: [{
|
|
767
|
-
selector: '[stOverlay]'
|
|
788
|
+
selector: '[stOverlay]'
|
|
768
789
|
}]
|
|
769
790
|
}], propDecorators: { stOverlay: [{ type: i0.Input, args: [{ isSignal: true, alias: "stOverlay", required: true }] }], overlayOpen: [{ type: i0.Input, args: [{ isSignal: true, alias: "overlayOpen", required: false }] }, { type: i0.Output, args: ["overlayOpenChange"] }], overlayPlacement: [{ type: i0.Input, args: [{ isSignal: true, alias: "overlayPlacement", required: false }] }], overlayOffset: [{ type: i0.Input, args: [{ isSignal: true, alias: "overlayOffset", required: false }] }] } });
|
|
770
791
|
|
|
771
792
|
class StrataActionMenuComponent {
|
|
772
|
-
projectedButton = contentChild(StrataButtonDirective, { ...(ngDevMode ? { debugName: "projectedButton" } : {}), descendants: true,
|
|
793
|
+
projectedButton = contentChild(StrataButtonDirective, { ...(ngDevMode ? { debugName: "projectedButton" } : /* istanbul ignore next */ {}), descendants: true,
|
|
773
794
|
read: ElementRef });
|
|
774
|
-
defaultButton = viewChild(StrataButtonDirective, { ...(ngDevMode ? { debugName: "defaultButton" } : {}), read: ElementRef });
|
|
775
|
-
actionMenuItems = contentChildren(StrataActionMenuItemComponent,
|
|
776
|
-
|
|
795
|
+
defaultButton = viewChild(StrataButtonDirective, { ...(ngDevMode ? { debugName: "defaultButton" } : /* istanbul ignore next */ {}), read: ElementRef });
|
|
796
|
+
actionMenuItems = contentChildren(StrataActionMenuItemComponent, /* @ts-ignore */
|
|
797
|
+
...(ngDevMode ? [{ debugName: "actionMenuItems" }] : /* istanbul ignore next */ []));
|
|
798
|
+
placement = input('bottom-end', /* @ts-ignore */
|
|
799
|
+
...(ngDevMode ? [{ debugName: "placement" }] : /* istanbul ignore next */ []));
|
|
777
800
|
renderer = inject(Renderer2);
|
|
778
|
-
menuOpen = signal(false,
|
|
801
|
+
menuOpen = signal(false, /* @ts-ignore */
|
|
802
|
+
...(ngDevMode ? [{ debugName: "menuOpen" }] : /* istanbul ignore next */ []));
|
|
779
803
|
constructor() {
|
|
780
804
|
effect((onCleanup) => {
|
|
781
805
|
const button = this.projectedButton() ?? this.defaultButton();
|
|
@@ -800,28 +824,29 @@ class StrataActionMenuComponent {
|
|
|
800
824
|
});
|
|
801
825
|
});
|
|
802
826
|
}
|
|
803
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
804
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "
|
|
827
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataActionMenuComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
828
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.1", type: StrataActionMenuComponent, isStandalone: true, selector: "st-action-menu", inputs: { placement: { classPropertyName: "placement", publicName: "placement", isSignal: true, isRequired: false, transformFunction: null } }, queries: [{ propertyName: "projectedButton", first: true, predicate: StrataButtonDirective, descendants: true, read: ElementRef, isSignal: true }, { propertyName: "actionMenuItems", predicate: StrataActionMenuItemComponent, isSignal: true }], viewQueries: [{ propertyName: "defaultButton", first: true, predicate: StrataButtonDirective, descendants: true, read: ElementRef, isSignal: true }], ngImport: i0, template: "<div [stOverlay]=\"menu\" [overlayOpen]=\"menuOpen()\" [overlayPlacement]=\"placement()\">\n <ng-content select=\"button[stButton]\"></ng-content>\n @if (!projectedButton()) {\n <button stButton><st-icon name=\"more\"></st-icon></button>\n }\n</div>\n\n<ng-template #menu>\n <st-card [padding]=\"false\" class=\"action-menu-card\"><ng-content select=\"st-action-menu-item\"></ng-content></st-card>\n</ng-template>\n", styles: ["st-card{width:fit-content}\n"], dependencies: [{ kind: "component", type: StrataCardComponent, selector: "st-card", inputs: ["elevated", "selectable", "padding", "variant"] }, { kind: "directive", type: StrataOverlayDirective, selector: "[stOverlay]", inputs: ["stOverlay", "overlayOpen", "overlayPlacement", "overlayOffset"], outputs: ["overlayOpenChange"] }, { kind: "component", type: StrataIconComponent, selector: "st-icon", inputs: ["name", "size"], outputs: ["sizeChange"] }, { kind: "directive", type: StrataButtonDirective, selector: "[stButton]", inputs: ["variant", "size", "fullWidth"] }] });
|
|
805
829
|
}
|
|
806
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
830
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataActionMenuComponent, decorators: [{
|
|
807
831
|
type: Component,
|
|
808
832
|
args: [{ selector: 'st-action-menu', imports: [StrataCardComponent, StrataOverlayDirective, StrataIconComponent, StrataButtonDirective], template: "<div [stOverlay]=\"menu\" [overlayOpen]=\"menuOpen()\" [overlayPlacement]=\"placement()\">\n <ng-content select=\"button[stButton]\"></ng-content>\n @if (!projectedButton()) {\n <button stButton><st-icon name=\"more\"></st-icon></button>\n }\n</div>\n\n<ng-template #menu>\n <st-card [padding]=\"false\" class=\"action-menu-card\"><ng-content select=\"st-action-menu-item\"></ng-content></st-card>\n</ng-template>\n", styles: ["st-card{width:fit-content}\n"] }]
|
|
809
833
|
}], ctorParameters: () => [], propDecorators: { projectedButton: [{ type: i0.ContentChild, args: [i0.forwardRef(() => StrataButtonDirective), { ...{
|
|
810
834
|
descendants: true,
|
|
811
|
-
read: ElementRef
|
|
835
|
+
read: ElementRef
|
|
812
836
|
}, isSignal: true }] }], defaultButton: [{ type: i0.ViewChild, args: [i0.forwardRef(() => StrataButtonDirective), { ...{
|
|
813
|
-
read: ElementRef
|
|
837
|
+
read: ElementRef
|
|
814
838
|
}, isSignal: true }] }], actionMenuItems: [{ type: i0.ContentChildren, args: [i0.forwardRef(() => StrataActionMenuItemComponent), { isSignal: true }] }], placement: [{ type: i0.Input, args: [{ isSignal: true, alias: "placement", required: false }] }] } });
|
|
815
839
|
|
|
816
840
|
class StrataTextStackComponent {
|
|
817
|
-
overflow = input('truncate',
|
|
841
|
+
overflow = input('truncate', /* @ts-ignore */
|
|
842
|
+
...(ngDevMode ? [{ debugName: "overflow" }] : /* istanbul ignore next */ []));
|
|
818
843
|
get cssClasses() {
|
|
819
844
|
return [this.overflow()];
|
|
820
845
|
}
|
|
821
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
822
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "
|
|
846
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataTextStackComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
847
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.1", type: StrataTextStackComponent, isStandalone: true, selector: "st-text-stack", inputs: { overflow: { classPropertyName: "overflow", publicName: "overflow", isSignal: true, isRequired: false, transformFunction: null } }, host: { properties: { "class": "this.cssClasses" } }, ngImport: i0, template: "<ng-content></ng-content>\n", styles: [""] });
|
|
823
848
|
}
|
|
824
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
849
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataTextStackComponent, decorators: [{
|
|
825
850
|
type: Component,
|
|
826
851
|
args: [{ selector: 'st-text-stack', imports: [], template: "<ng-content></ng-content>\n" }]
|
|
827
852
|
}], propDecorators: { overflow: [{ type: i0.Input, args: [{ isSignal: true, alias: "overflow", required: false }] }], cssClasses: [{
|
|
@@ -830,39 +855,49 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.0", ngImpor
|
|
|
830
855
|
}] } });
|
|
831
856
|
|
|
832
857
|
class StrataAlertComponent {
|
|
833
|
-
header = input(undefined,
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
858
|
+
header = input(undefined, /* @ts-ignore */
|
|
859
|
+
...(ngDevMode ? [{ debugName: "header" }] : /* istanbul ignore next */ []));
|
|
860
|
+
message = input.required(/* @ts-ignore */
|
|
861
|
+
...(ngDevMode ? [{ debugName: "message" }] : /* istanbul ignore next */ []));
|
|
862
|
+
iconName = input(undefined, /* @ts-ignore */
|
|
863
|
+
...(ngDevMode ? [{ debugName: "iconName" }] : /* istanbul ignore next */ []));
|
|
864
|
+
dismissible = input(false, /* @ts-ignore */
|
|
865
|
+
...(ngDevMode ? [{ debugName: "dismissible" }] : /* istanbul ignore next */ []));
|
|
837
866
|
dismiss = output();
|
|
838
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
839
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "
|
|
867
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataAlertComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
868
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.1", type: StrataAlertComponent, isStandalone: true, selector: "st-alert", inputs: { header: { classPropertyName: "header", publicName: "header", isSignal: true, isRequired: false, transformFunction: null }, message: { classPropertyName: "message", publicName: "message", isSignal: true, isRequired: true, transformFunction: null }, iconName: { classPropertyName: "iconName", publicName: "iconName", isSignal: true, isRequired: false, transformFunction: null }, dismissible: { classPropertyName: "dismissible", publicName: "dismissible", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { dismiss: "dismiss" }, ngImport: i0, template: "<div class=\"st-alert-container\">\n @if (iconName()) {\n <div class=\"st-alert-icon\">\n <st-icon [name]=\"iconName()!\"></st-icon>\n </div>\n }\n\n <div class=\"st-alert-content\">\n <st-text-stack overflow=\"wrap\">\n @if (header()) {\n <p class=\"st-body-bold st-alert-header\">{{ header() }}</p>\n }\n <p class=\"st-alert-message\">{{ message() }}</p>\n </st-text-stack>\n </div>\n\n\n\n\n <div class=\"st-alert-actions\">\n <ng-content select=\"[actions]\"></ng-content>\n </div>\n\n @if (dismissible()) {\n <button stButton variant=\"ghost\" size=\"sm\" class=\"st-alert-dismiss\" (click)=\"dismiss.emit()\"\n aria-label=\"Dismiss alert\">\n <st-icon name=\"close\"></st-icon>\n </button>\n }\n</div>", dependencies: [{ kind: "component", type: StrataIconComponent, selector: "st-icon", inputs: ["name", "size"], outputs: ["sizeChange"] }, { kind: "directive", type: StrataButtonDirective, selector: "[stButton]", inputs: ["variant", "size", "fullWidth"] }, { kind: "component", type: StrataTextStackComponent, selector: "st-text-stack", inputs: ["overflow"] }] });
|
|
840
869
|
}
|
|
841
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
870
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataAlertComponent, decorators: [{
|
|
842
871
|
type: Component,
|
|
843
872
|
args: [{ selector: 'st-alert', imports: [StrataIconComponent, StrataButtonDirective, StrataTextStackComponent], template: "<div class=\"st-alert-container\">\n @if (iconName()) {\n <div class=\"st-alert-icon\">\n <st-icon [name]=\"iconName()!\"></st-icon>\n </div>\n }\n\n <div class=\"st-alert-content\">\n <st-text-stack overflow=\"wrap\">\n @if (header()) {\n <p class=\"st-body-bold st-alert-header\">{{ header() }}</p>\n }\n <p class=\"st-alert-message\">{{ message() }}</p>\n </st-text-stack>\n </div>\n\n\n\n\n <div class=\"st-alert-actions\">\n <ng-content select=\"[actions]\"></ng-content>\n </div>\n\n @if (dismissible()) {\n <button stButton variant=\"ghost\" size=\"sm\" class=\"st-alert-dismiss\" (click)=\"dismiss.emit()\"\n aria-label=\"Dismiss alert\">\n <st-icon name=\"close\"></st-icon>\n </button>\n }\n</div>" }]
|
|
844
873
|
}], propDecorators: { header: [{ type: i0.Input, args: [{ isSignal: true, alias: "header", required: false }] }], message: [{ type: i0.Input, args: [{ isSignal: true, alias: "message", required: true }] }], iconName: [{ type: i0.Input, args: [{ isSignal: true, alias: "iconName", required: false }] }], dismissible: [{ type: i0.Input, args: [{ isSignal: true, alias: "dismissible", required: false }] }], dismiss: [{ type: i0.Output, args: ["dismiss"] }] } });
|
|
845
874
|
|
|
846
875
|
class StrataBreadcrumbItemComponent {
|
|
847
|
-
text = input.required(
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
876
|
+
text = input.required(/* @ts-ignore */
|
|
877
|
+
...(ngDevMode ? [{ debugName: "text" }] : /* istanbul ignore next */ []));
|
|
878
|
+
icon = input(/* @ts-ignore */
|
|
879
|
+
...(ngDevMode ? [undefined, { debugName: "icon" }] : /* istanbul ignore next */ []));
|
|
880
|
+
interactable = input(false, /* @ts-ignore */
|
|
881
|
+
...(ngDevMode ? [{ debugName: "interactable" }] : /* istanbul ignore next */ []));
|
|
882
|
+
disabled = input(false, /* @ts-ignore */
|
|
883
|
+
...(ngDevMode ? [{ debugName: "disabled" }] : /* istanbul ignore next */ []));
|
|
851
884
|
activated = output();
|
|
852
|
-
separatorIcon = signal(undefined,
|
|
853
|
-
|
|
854
|
-
static
|
|
885
|
+
separatorIcon = signal(undefined, /* @ts-ignore */
|
|
886
|
+
...(ngDevMode ? [{ debugName: "separatorIcon" }] : /* istanbul ignore next */ []));
|
|
887
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataBreadcrumbItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
888
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.1", type: StrataBreadcrumbItemComponent, isStandalone: true, selector: "st-breadcrumb-item", inputs: { text: { classPropertyName: "text", publicName: "text", isSignal: true, isRequired: true, transformFunction: null }, icon: { classPropertyName: "icon", publicName: "icon", isSignal: true, isRequired: false, transformFunction: null }, interactable: { classPropertyName: "interactable", publicName: "interactable", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { activated: "activated" }, host: { classAttribute: "st-breadcrumb-item" }, ngImport: i0, template: "<li class=\"st-breadcrumb-item-container\">\n <div class=\"st-breadcrumb-item-content\"\n stActivatable\n [interactable]=\"interactable()\"\n [disabled]=\"disabled()\"\n (click)=\"activated.emit($event)\">\n @if (icon()) {\n <st-icon [name]=\"icon()!\" size=\"sm\" class=\"st-breadcrumb-item-icon\"></st-icon>\n }\n <span class=\"st-breadcrumb-item-text\">{{ text() }}</span>\n </div>\n\n @if (separatorIcon()) {\n <st-icon [name]=\"separatorIcon()!\" size=\"sm\" class=\"st-breadcrumb-separator\"></st-icon>\n }\n</li>\n", dependencies: [{ kind: "component", type: StrataIconComponent, selector: "st-icon", inputs: ["name", "size"], outputs: ["sizeChange"] }, { kind: "directive", type: StrataActivatableDirective, selector: "[stActivatable]", inputs: ["disabled", "interactable"], outputs: ["interactableChange", "activated"] }] });
|
|
855
889
|
}
|
|
856
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
890
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataBreadcrumbItemComponent, decorators: [{
|
|
857
891
|
type: Component,
|
|
858
892
|
args: [{ selector: 'st-breadcrumb-item', imports: [StrataIconComponent, StrataActivatableDirective], host: {
|
|
859
|
-
'class': 'st-breadcrumb-item'
|
|
893
|
+
'class': 'st-breadcrumb-item'
|
|
860
894
|
}, template: "<li class=\"st-breadcrumb-item-container\">\n <div class=\"st-breadcrumb-item-content\"\n stActivatable\n [interactable]=\"interactable()\"\n [disabled]=\"disabled()\"\n (click)=\"activated.emit($event)\">\n @if (icon()) {\n <st-icon [name]=\"icon()!\" size=\"sm\" class=\"st-breadcrumb-item-icon\"></st-icon>\n }\n <span class=\"st-breadcrumb-item-text\">{{ text() }}</span>\n </div>\n\n @if (separatorIcon()) {\n <st-icon [name]=\"separatorIcon()!\" size=\"sm\" class=\"st-breadcrumb-separator\"></st-icon>\n }\n</li>\n" }]
|
|
861
895
|
}], propDecorators: { text: [{ type: i0.Input, args: [{ isSignal: true, alias: "text", required: true }] }], icon: [{ type: i0.Input, args: [{ isSignal: true, alias: "icon", required: false }] }], interactable: [{ type: i0.Input, args: [{ isSignal: true, alias: "interactable", required: false }] }], disabled: [{ type: i0.Input, args: [{ isSignal: true, alias: "disabled", required: false }] }], activated: [{ type: i0.Output, args: ["activated"] }] } });
|
|
862
896
|
|
|
863
897
|
class StrataBreadcrumbComponent {
|
|
864
|
-
separatorIcon = input('arrow-right',
|
|
865
|
-
|
|
898
|
+
separatorIcon = input('arrow-right', /* @ts-ignore */
|
|
899
|
+
...(ngDevMode ? [{ debugName: "separatorIcon" }] : /* istanbul ignore next */ []));
|
|
900
|
+
items = contentChildren(StrataBreadcrumbItemComponent, { ...(ngDevMode ? { debugName: "items" } : /* istanbul ignore next */ {}), descendants: true });
|
|
866
901
|
constructor() {
|
|
867
902
|
effect(() => {
|
|
868
903
|
const items = this.items();
|
|
@@ -873,19 +908,21 @@ class StrataBreadcrumbComponent {
|
|
|
873
908
|
});
|
|
874
909
|
});
|
|
875
910
|
}
|
|
876
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
877
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "
|
|
911
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataBreadcrumbComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
912
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "22.0.1", type: StrataBreadcrumbComponent, isStandalone: true, selector: "st-breadcrumb", inputs: { separatorIcon: { classPropertyName: "separatorIcon", publicName: "separatorIcon", isSignal: true, isRequired: false, transformFunction: null } }, host: { classAttribute: "st-breadcrumb" }, queries: [{ propertyName: "items", predicate: StrataBreadcrumbItemComponent, descendants: true, isSignal: true }], ngImport: i0, template: "<nav aria-label=\"Breadcrumb\">\n <ol class=\"st-breadcrumb-list\">\n <ng-content></ng-content>\n </ol>\n</nav>\n" });
|
|
878
913
|
}
|
|
879
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
914
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataBreadcrumbComponent, decorators: [{
|
|
880
915
|
type: Component,
|
|
881
916
|
args: [{ selector: 'st-breadcrumb', imports: [], host: {
|
|
882
|
-
'class': 'st-breadcrumb'
|
|
917
|
+
'class': 'st-breadcrumb'
|
|
883
918
|
}, template: "<nav aria-label=\"Breadcrumb\">\n <ol class=\"st-breadcrumb-list\">\n <ng-content></ng-content>\n </ol>\n</nav>\n" }]
|
|
884
919
|
}], ctorParameters: () => [], propDecorators: { separatorIcon: [{ type: i0.Input, args: [{ isSignal: true, alias: "separatorIcon", required: false }] }], items: [{ type: i0.ContentChildren, args: [i0.forwardRef(() => StrataBreadcrumbItemComponent), { ...{ descendants: true }, isSignal: true }] }] } });
|
|
885
920
|
|
|
886
921
|
class StrataAccordionItemComponent {
|
|
887
|
-
title = input.required(
|
|
888
|
-
|
|
922
|
+
title = input.required(/* @ts-ignore */
|
|
923
|
+
...(ngDevMode ? [{ debugName: "title" }] : /* istanbul ignore next */ []));
|
|
924
|
+
open = model(false, /* @ts-ignore */
|
|
925
|
+
...(ngDevMode ? [{ debugName: "open" }] : /* istanbul ignore next */ []));
|
|
889
926
|
toggled = output();
|
|
890
927
|
constructor() {
|
|
891
928
|
let firstRun = true;
|
|
@@ -901,10 +938,10 @@ class StrataAccordionItemComponent {
|
|
|
901
938
|
get isOpen() {
|
|
902
939
|
return this.open();
|
|
903
940
|
}
|
|
904
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
905
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "
|
|
941
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataAccordionItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
942
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.1", type: StrataAccordionItemComponent, isStandalone: true, selector: "st-accordion-item", inputs: { title: { classPropertyName: "title", publicName: "title", isSignal: true, isRequired: true, transformFunction: null }, open: { classPropertyName: "open", publicName: "open", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { open: "openChange", toggled: "toggled" }, host: { properties: { "attr.open": "this.isOpen" } }, ngImport: i0, template: "<div class=\"accordion-header\" (click)=\"this.open.set(!this.open())\">\n {{ title() }}\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n viewBox=\"0 0 24 24\"\n fill=\"currentColor\"\n >\n <path\n d=\"M11.9999 13.1714L16.9497 8.22168L18.3639 9.63589L11.9999 15.9999L5.63599 9.63589L7.0502 8.22168L11.9999 13.1714Z\"\n ></path>\n </svg>\n</div>\n\n<div class=\"accordion-content\">\n <ng-content></ng-content>\n</div>\n" });
|
|
906
943
|
}
|
|
907
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
944
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataAccordionItemComponent, decorators: [{
|
|
908
945
|
type: Component,
|
|
909
946
|
args: [{ selector: 'st-accordion-item', imports: [], template: "<div class=\"accordion-header\" (click)=\"this.open.set(!this.open())\">\n {{ title() }}\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n viewBox=\"0 0 24 24\"\n fill=\"currentColor\"\n >\n <path\n d=\"M11.9999 13.1714L16.9497 8.22168L18.3639 9.63589L11.9999 15.9999L5.63599 9.63589L7.0502 8.22168L11.9999 13.1714Z\"\n ></path>\n </svg>\n</div>\n\n<div class=\"accordion-content\">\n <ng-content></ng-content>\n</div>\n" }]
|
|
910
947
|
}], ctorParameters: () => [], propDecorators: { title: [{ type: i0.Input, args: [{ isSignal: true, alias: "title", required: true }] }], open: [{ type: i0.Input, args: [{ isSignal: true, alias: "open", required: false }] }, { type: i0.Output, args: ["openChange"] }], toggled: [{ type: i0.Output, args: ["toggled"] }], isOpen: [{
|
|
@@ -913,8 +950,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.0", ngImpor
|
|
|
913
950
|
}] } });
|
|
914
951
|
|
|
915
952
|
class StrataAccordionGroupComponent {
|
|
916
|
-
items = contentChildren(StrataAccordionItemComponent,
|
|
917
|
-
|
|
953
|
+
items = contentChildren(StrataAccordionItemComponent, /* @ts-ignore */
|
|
954
|
+
...(ngDevMode ? [{ debugName: "items" }] : /* istanbul ignore next */ []));
|
|
955
|
+
allowMultipleOpen = input(false, /* @ts-ignore */
|
|
956
|
+
...(ngDevMode ? [{ debugName: "allowMultipleOpen" }] : /* istanbul ignore next */ []));
|
|
918
957
|
constructor() {
|
|
919
958
|
effect((onCleanup) => {
|
|
920
959
|
const subs = this.items().map((item) => item.toggled.subscribe((open) => {
|
|
@@ -934,18 +973,20 @@ class StrataAccordionGroupComponent {
|
|
|
934
973
|
}
|
|
935
974
|
});
|
|
936
975
|
}
|
|
937
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
938
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "
|
|
976
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataAccordionGroupComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
977
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "22.0.1", type: StrataAccordionGroupComponent, isStandalone: true, selector: "st-accordion-group", inputs: { allowMultipleOpen: { classPropertyName: "allowMultipleOpen", publicName: "allowMultipleOpen", isSignal: true, isRequired: false, transformFunction: null } }, queries: [{ propertyName: "items", predicate: StrataAccordionItemComponent, isSignal: true }], ngImport: i0, template: "<ng-content></ng-content>\n" });
|
|
939
978
|
}
|
|
940
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
979
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataAccordionGroupComponent, decorators: [{
|
|
941
980
|
type: Component,
|
|
942
981
|
args: [{ selector: 'st-accordion-group', imports: [], template: "<ng-content></ng-content>\n" }]
|
|
943
982
|
}], ctorParameters: () => [], propDecorators: { items: [{ type: i0.ContentChildren, args: [i0.forwardRef(() => StrataAccordionItemComponent), { isSignal: true }] }], allowMultipleOpen: [{ type: i0.Input, args: [{ isSignal: true, alias: "allowMultipleOpen", required: false }] }] } });
|
|
944
983
|
|
|
945
984
|
class StrataAvatarComponent {
|
|
946
|
-
iconComponents = contentChildren(StrataIconComponent, { ...(ngDevMode ? { debugName: "iconComponents" } : {}), descendants: true });
|
|
947
|
-
text = input(null,
|
|
948
|
-
|
|
985
|
+
iconComponents = contentChildren(StrataIconComponent, { ...(ngDevMode ? { debugName: "iconComponents" } : /* istanbul ignore next */ {}), descendants: true });
|
|
986
|
+
text = input(null, /* @ts-ignore */
|
|
987
|
+
...(ngDevMode ? [{ debugName: "text" }] : /* istanbul ignore next */ []));
|
|
988
|
+
size = model('md', /* @ts-ignore */
|
|
989
|
+
...(ngDevMode ? [{ debugName: "size" }] : /* istanbul ignore next */ []));
|
|
949
990
|
get elementClasses() {
|
|
950
991
|
return [this.size()];
|
|
951
992
|
}
|
|
@@ -956,10 +997,10 @@ class StrataAvatarComponent {
|
|
|
956
997
|
});
|
|
957
998
|
});
|
|
958
999
|
}
|
|
959
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
960
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "
|
|
1000
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataAvatarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1001
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.1", type: StrataAvatarComponent, isStandalone: true, selector: "st-avatar", inputs: { text: { classPropertyName: "text", publicName: "text", isSignal: true, isRequired: false, transformFunction: null }, size: { classPropertyName: "size", publicName: "size", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { size: "sizeChange" }, host: { properties: { "class": "this.elementClasses" } }, queries: [{ propertyName: "iconComponents", predicate: StrataIconComponent, descendants: true, isSignal: true }], ngImport: i0, template: "@if (text() !== null) {\n <span>{{ text() }}</span>\n}\n<ng-content></ng-content>\n" });
|
|
961
1002
|
}
|
|
962
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1003
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataAvatarComponent, decorators: [{
|
|
963
1004
|
type: Component,
|
|
964
1005
|
args: [{ selector: 'st-avatar', imports: [], template: "@if (text() !== null) {\n <span>{{ text() }}</span>\n}\n<ng-content></ng-content>\n" }]
|
|
965
1006
|
}], propDecorators: { iconComponents: [{ type: i0.ContentChildren, args: [i0.forwardRef(() => StrataIconComponent), { ...{ descendants: true }, isSignal: true }] }], text: [{ type: i0.Input, args: [{ isSignal: true, alias: "text", required: false }] }], size: [{ type: i0.Input, args: [{ isSignal: true, alias: "size", required: false }] }, { type: i0.Output, args: ["sizeChange"] }], elementClasses: [{
|
|
@@ -968,11 +1009,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.0", ngImpor
|
|
|
968
1009
|
}] } });
|
|
969
1010
|
|
|
970
1011
|
class StrataAvatarStackComponent {
|
|
971
|
-
avatarRefs = contentChildren(StrataAvatarComponent, { ...(ngDevMode ? { debugName: "avatarRefs" } : {}), descendants: true,
|
|
1012
|
+
avatarRefs = contentChildren(StrataAvatarComponent, { ...(ngDevMode ? { debugName: "avatarRefs" } : /* istanbul ignore next */ {}), descendants: true,
|
|
972
1013
|
read: ElementRef });
|
|
973
|
-
size = input('md',
|
|
974
|
-
|
|
975
|
-
|
|
1014
|
+
size = input('md', /* @ts-ignore */
|
|
1015
|
+
...(ngDevMode ? [{ debugName: "size" }] : /* istanbul ignore next */ []));
|
|
1016
|
+
spacing = input('mid', /* @ts-ignore */
|
|
1017
|
+
...(ngDevMode ? [{ debugName: "spacing" }] : /* istanbul ignore next */ []));
|
|
1018
|
+
firstOnFront = input(false, /* @ts-ignore */
|
|
1019
|
+
...(ngDevMode ? [{ debugName: "firstOnFront" }] : /* istanbul ignore next */ []));
|
|
976
1020
|
get xsClass() {
|
|
977
1021
|
return this.size() === 'xs';
|
|
978
1022
|
}
|
|
@@ -1006,15 +1050,15 @@ class StrataAvatarStackComponent {
|
|
|
1006
1050
|
});
|
|
1007
1051
|
}, 1);
|
|
1008
1052
|
}
|
|
1009
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1010
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "
|
|
1053
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataAvatarStackComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1054
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "22.0.1", type: StrataAvatarStackComponent, isStandalone: true, selector: "st-avatar-stack", inputs: { size: { classPropertyName: "size", publicName: "size", isSignal: true, isRequired: false, transformFunction: null }, spacing: { classPropertyName: "spacing", publicName: "spacing", isSignal: true, isRequired: false, transformFunction: null }, firstOnFront: { classPropertyName: "firstOnFront", publicName: "firstOnFront", isSignal: true, isRequired: false, transformFunction: null } }, host: { properties: { "class.xs": "this.xsClass", "class.sm": "this.smClass", "class.md": "this.mdClass", "class.lg": "this.lgClass", "class.first-on-front": "this.firstOnFrontClass", "class.loose": "this.looseClass", "class.mid": "this.midClass", "class.tight": "this.tightClass" } }, queries: [{ propertyName: "avatarRefs", predicate: StrataAvatarComponent, descendants: true, read: ElementRef, isSignal: true }], ngImport: i0, template: "<ng-content></ng-content>\n" });
|
|
1011
1055
|
}
|
|
1012
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1056
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataAvatarStackComponent, decorators: [{
|
|
1013
1057
|
type: Component,
|
|
1014
1058
|
args: [{ selector: 'st-avatar-stack', imports: [], template: "<ng-content></ng-content>\n" }]
|
|
1015
1059
|
}], propDecorators: { avatarRefs: [{ type: i0.ContentChildren, args: [i0.forwardRef(() => StrataAvatarComponent), { ...{
|
|
1016
1060
|
descendants: true,
|
|
1017
|
-
read: ElementRef
|
|
1061
|
+
read: ElementRef
|
|
1018
1062
|
}, isSignal: true }] }], size: [{ type: i0.Input, args: [{ isSignal: true, alias: "size", required: false }] }], spacing: [{ type: i0.Input, args: [{ isSignal: true, alias: "spacing", required: false }] }], firstOnFront: [{ type: i0.Input, args: [{ isSignal: true, alias: "firstOnFront", required: false }] }], xsClass: [{
|
|
1019
1063
|
type: HostBinding,
|
|
1020
1064
|
args: ['class.xs']
|
|
@@ -1043,31 +1087,33 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.0", ngImpor
|
|
|
1043
1087
|
|
|
1044
1088
|
class StrataButtonGroupComponent {
|
|
1045
1089
|
renderer = inject(Renderer2);
|
|
1046
|
-
justification = input('start',
|
|
1047
|
-
|
|
1048
|
-
static
|
|
1090
|
+
justification = input('start', /* @ts-ignore */
|
|
1091
|
+
...(ngDevMode ? [{ debugName: "justification" }] : /* istanbul ignore next */ []));
|
|
1092
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataButtonGroupComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1093
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.1", type: StrataButtonGroupComponent, isStandalone: true, selector: "st-button-group", inputs: { justification: { classPropertyName: "justification", publicName: "justification", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: "<ng-content select=\"[stButton], st-divider\" #buttons></ng-content>\n" });
|
|
1049
1094
|
}
|
|
1050
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1095
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataButtonGroupComponent, decorators: [{
|
|
1051
1096
|
type: Component,
|
|
1052
1097
|
args: [{ selector: 'st-button-group', imports: [], template: "<ng-content select=\"[stButton], st-divider\" #buttons></ng-content>\n" }]
|
|
1053
1098
|
}], propDecorators: { justification: [{ type: i0.Input, args: [{ isSignal: true, alias: "justification", required: false }] }] } });
|
|
1054
1099
|
|
|
1055
1100
|
class StrataNativeInputRefDirective {
|
|
1056
1101
|
el = inject((ElementRef));
|
|
1057
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1058
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
1102
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataNativeInputRefDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
1103
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "22.0.1", type: StrataNativeInputRefDirective, isStandalone: true, selector: "input[stInput], textarea[stInput]", ngImport: i0 });
|
|
1059
1104
|
}
|
|
1060
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1105
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataNativeInputRefDirective, decorators: [{
|
|
1061
1106
|
type: Directive,
|
|
1062
1107
|
args: [{
|
|
1063
|
-
selector: 'input[stInput], textarea[stInput]'
|
|
1108
|
+
selector: 'input[stInput], textarea[stInput]'
|
|
1064
1109
|
}]
|
|
1065
1110
|
}] });
|
|
1066
1111
|
|
|
1067
1112
|
class StrataInputFieldComponent {
|
|
1068
|
-
iconComponents = contentChildren(StrataIconComponent, { ...(ngDevMode ? { debugName: "iconComponents" } : {}), descendants: true });
|
|
1069
|
-
inputField = contentChild(StrataNativeInputRefDirective, { ...(ngDevMode ? { debugName: "inputField" } : {}), descendants: true });
|
|
1070
|
-
pendingFocus = signal(false,
|
|
1113
|
+
iconComponents = contentChildren(StrataIconComponent, { ...(ngDevMode ? { debugName: "iconComponents" } : /* istanbul ignore next */ {}), descendants: true });
|
|
1114
|
+
inputField = contentChild(StrataNativeInputRefDirective, { ...(ngDevMode ? { debugName: "inputField" } : /* istanbul ignore next */ {}), descendants: true });
|
|
1115
|
+
pendingFocus = signal(false, /* @ts-ignore */
|
|
1116
|
+
...(ngDevMode ? [{ debugName: "pendingFocus" }] : /* istanbul ignore next */ []));
|
|
1071
1117
|
constructor() {
|
|
1072
1118
|
effect(() => {
|
|
1073
1119
|
const input = this.inputField();
|
|
@@ -1089,21 +1135,24 @@ class StrataInputFieldComponent {
|
|
|
1089
1135
|
get nativeInput() {
|
|
1090
1136
|
return this.inputField()?.el.nativeElement;
|
|
1091
1137
|
}
|
|
1092
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1093
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "
|
|
1138
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataInputFieldComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1139
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "22.0.1", type: StrataInputFieldComponent, isStandalone: true, selector: "st-input-field", queries: [{ propertyName: "iconComponents", predicate: StrataIconComponent, descendants: true, isSignal: true }, { propertyName: "inputField", first: true, predicate: StrataNativeInputRefDirective, descendants: true, isSignal: true }], ngImport: i0, template: "<ng-content select=\"label\"></ng-content>\n<div class=\"st-input-wrapper\">\n <div class=\"affix\">\n <ng-content select=\"[prefix]\"></ng-content>\n </div>\n <ng-content select=\"input,textarea\"></ng-content>\n <div class=\"affix\">\n <ng-content select=\"[suffix]\"></ng-content>\n </div>\n</div>\n" });
|
|
1094
1140
|
}
|
|
1095
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1141
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataInputFieldComponent, decorators: [{
|
|
1096
1142
|
type: Component,
|
|
1097
1143
|
args: [{ selector: 'st-input-field', imports: [], template: "<ng-content select=\"label\"></ng-content>\n<div class=\"st-input-wrapper\">\n <div class=\"affix\">\n <ng-content select=\"[prefix]\"></ng-content>\n </div>\n <ng-content select=\"input,textarea\"></ng-content>\n <div class=\"affix\">\n <ng-content select=\"[suffix]\"></ng-content>\n </div>\n</div>\n" }]
|
|
1098
1144
|
}], ctorParameters: () => [], propDecorators: { iconComponents: [{ type: i0.ContentChildren, args: [i0.forwardRef(() => StrataIconComponent), { ...{ descendants: true }, isSignal: true }] }], inputField: [{ type: i0.ContentChild, args: [i0.forwardRef(() => StrataNativeInputRefDirective), { ...{
|
|
1099
|
-
descendants: true
|
|
1145
|
+
descendants: true
|
|
1100
1146
|
}, isSignal: true }] }] } });
|
|
1101
1147
|
|
|
1102
1148
|
class StrataSelectItemComponent {
|
|
1103
|
-
value = input.required(
|
|
1104
|
-
|
|
1149
|
+
value = input.required(/* @ts-ignore */
|
|
1150
|
+
...(ngDevMode ? [{ debugName: "value" }] : /* istanbul ignore next */ []));
|
|
1151
|
+
text = input.required(/* @ts-ignore */
|
|
1152
|
+
...(ngDevMode ? [{ debugName: "text" }] : /* istanbul ignore next */ []));
|
|
1105
1153
|
itemClicked = output();
|
|
1106
|
-
hidden = signal(false,
|
|
1154
|
+
hidden = signal(false, /* @ts-ignore */
|
|
1155
|
+
...(ngDevMode ? [{ debugName: "hidden" }] : /* istanbul ignore next */ []));
|
|
1107
1156
|
elementRef = inject(ElementRef);
|
|
1108
1157
|
get display() {
|
|
1109
1158
|
return this.hidden() ? 'none' : 'block';
|
|
@@ -1117,18 +1166,18 @@ class StrataSelectItemComponent {
|
|
|
1117
1166
|
event.stopImmediatePropagation();
|
|
1118
1167
|
event.preventDefault();
|
|
1119
1168
|
}
|
|
1120
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1121
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "
|
|
1169
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataSelectItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1170
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.1", type: StrataSelectItemComponent, isStandalone: true, selector: "st-select-item", inputs: { value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: true, transformFunction: null }, text: { classPropertyName: "text", publicName: "text", isSignal: true, isRequired: true, transformFunction: null } }, outputs: { itemClicked: "itemClicked" }, host: { listeners: { "click": "onClick($event)", "mouseover": "onMouseOver($event)" }, properties: { "style.display": "this.display" }, classAttribute: "single-select-item" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
1122
1171
|
}
|
|
1123
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1172
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataSelectItemComponent, decorators: [{
|
|
1124
1173
|
type: Component,
|
|
1125
1174
|
args: [{
|
|
1126
1175
|
selector: 'st-select-item',
|
|
1127
1176
|
imports: [],
|
|
1128
1177
|
template: '<ng-content></ng-content>',
|
|
1129
1178
|
host: {
|
|
1130
|
-
class: 'single-select-item'
|
|
1131
|
-
}
|
|
1179
|
+
class: 'single-select-item'
|
|
1180
|
+
}
|
|
1132
1181
|
}]
|
|
1133
1182
|
}], propDecorators: { value: [{ type: i0.Input, args: [{ isSignal: true, alias: "value", required: true }] }], text: [{ type: i0.Input, args: [{ isSignal: true, alias: "text", required: true }] }], itemClicked: [{ type: i0.Output, args: ["itemClicked"] }], display: [{
|
|
1134
1183
|
type: HostBinding,
|
|
@@ -1142,37 +1191,50 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.0", ngImpor
|
|
|
1142
1191
|
}] } });
|
|
1143
1192
|
|
|
1144
1193
|
class StrataSelectTriggerDirective {
|
|
1145
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1146
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
1194
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataSelectTriggerDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
1195
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "22.0.1", type: StrataSelectTriggerDirective, isStandalone: true, selector: "[stSelectTrigger]", ngImport: i0 });
|
|
1147
1196
|
}
|
|
1148
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1197
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataSelectTriggerDirective, decorators: [{
|
|
1149
1198
|
type: Directive,
|
|
1150
1199
|
args: [{
|
|
1151
|
-
selector: '[stSelectTrigger]'
|
|
1200
|
+
selector: '[stSelectTrigger]'
|
|
1152
1201
|
}]
|
|
1153
1202
|
}] });
|
|
1154
1203
|
|
|
1155
1204
|
class StrataSingleSelectComponent {
|
|
1156
|
-
open = signal(false,
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1205
|
+
open = signal(false, /* @ts-ignore */
|
|
1206
|
+
...(ngDevMode ? [{ debugName: "open" }] : /* istanbul ignore next */ []));
|
|
1207
|
+
placeholder = input('Select', /* @ts-ignore */
|
|
1208
|
+
...(ngDevMode ? [{ debugName: "placeholder" }] : /* istanbul ignore next */ []));
|
|
1209
|
+
placement = input('bottom-start', /* @ts-ignore */
|
|
1210
|
+
...(ngDevMode ? [{ debugName: "placement" }] : /* istanbul ignore next */ []));
|
|
1211
|
+
fullWidth = input(false, /* @ts-ignore */
|
|
1212
|
+
...(ngDevMode ? [{ debugName: "fullWidth" }] : /* istanbul ignore next */ []));
|
|
1213
|
+
label = input(/* @ts-ignore */
|
|
1214
|
+
...(ngDevMode ? [undefined, { debugName: "label" }] : /* istanbul ignore next */ []));
|
|
1215
|
+
name = input(/* @ts-ignore */
|
|
1216
|
+
...(ngDevMode ? [undefined, { debugName: "name" }] : /* istanbul ignore next */ []));
|
|
1217
|
+
selected = model(/* @ts-ignore */
|
|
1218
|
+
...(ngDevMode ? [undefined, { debugName: "selected" }] : /* istanbul ignore next */ []));
|
|
1163
1219
|
selectedItem = computed(() => {
|
|
1164
1220
|
const val = this.selected();
|
|
1165
1221
|
if (val === undefined)
|
|
1166
1222
|
return undefined;
|
|
1167
1223
|
return this.selectItems().find(item => item.value() === val);
|
|
1168
|
-
},
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1224
|
+
}, /* @ts-ignore */
|
|
1225
|
+
...(ngDevMode ? [{ debugName: "selectedItem" }] : /* istanbul ignore next */ []));
|
|
1226
|
+
searchable = input(false, /* @ts-ignore */
|
|
1227
|
+
...(ngDevMode ? [{ debugName: "searchable" }] : /* istanbul ignore next */ []));
|
|
1228
|
+
searchQuery = model(/* @ts-ignore */
|
|
1229
|
+
...(ngDevMode ? [undefined, { debugName: "searchQuery" }] : /* istanbul ignore next */ []));
|
|
1230
|
+
searchPlaceholder = input('Search', /* @ts-ignore */
|
|
1231
|
+
...(ngDevMode ? [{ debugName: "searchPlaceholder" }] : /* istanbul ignore next */ []));
|
|
1172
1232
|
itemSelected = output();
|
|
1173
|
-
selectItems = contentChildren(StrataSelectItemComponent,
|
|
1174
|
-
|
|
1175
|
-
|
|
1233
|
+
selectItems = contentChildren(StrataSelectItemComponent, /* @ts-ignore */
|
|
1234
|
+
...(ngDevMode ? [{ debugName: "selectItems" }] : /* istanbul ignore next */ []));
|
|
1235
|
+
triggerTemplate = contentChild(StrataSelectTriggerDirective, { ...(ngDevMode ? { debugName: "triggerTemplate" } : /* istanbul ignore next */ {}), read: TemplateRef });
|
|
1236
|
+
inputField = viewChild(StrataInputFieldComponent, /* @ts-ignore */
|
|
1237
|
+
...(ngDevMode ? [{ debugName: "inputField" }] : /* istanbul ignore next */ []));
|
|
1176
1238
|
destroyRef = inject(DestroyRef);
|
|
1177
1239
|
constructor() {
|
|
1178
1240
|
effect((onCleanup) => {
|
|
@@ -1224,10 +1286,10 @@ class StrataSingleSelectComponent {
|
|
|
1224
1286
|
hide() {
|
|
1225
1287
|
this.open.set(false);
|
|
1226
1288
|
}
|
|
1227
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1228
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "
|
|
1289
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataSingleSelectComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1290
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.1", type: StrataSingleSelectComponent, isStandalone: true, selector: "st-single-select", inputs: { placeholder: { classPropertyName: "placeholder", publicName: "placeholder", isSignal: true, isRequired: false, transformFunction: null }, placement: { classPropertyName: "placement", publicName: "placement", isSignal: true, isRequired: false, transformFunction: null }, fullWidth: { classPropertyName: "fullWidth", publicName: "fullWidth", isSignal: true, isRequired: false, transformFunction: null }, label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: false, transformFunction: null }, name: { classPropertyName: "name", publicName: "name", isSignal: true, isRequired: false, transformFunction: null }, selected: { classPropertyName: "selected", publicName: "selected", isSignal: true, isRequired: false, transformFunction: null }, searchable: { classPropertyName: "searchable", publicName: "searchable", isSignal: true, isRequired: false, transformFunction: null }, searchQuery: { classPropertyName: "searchQuery", publicName: "searchQuery", isSignal: true, isRequired: false, transformFunction: null }, searchPlaceholder: { classPropertyName: "searchPlaceholder", publicName: "searchPlaceholder", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { selected: "selectedChange", searchQuery: "searchQueryChange", itemSelected: "itemSelected" }, queries: [{ propertyName: "selectItems", predicate: StrataSelectItemComponent, isSignal: true }, { propertyName: "triggerTemplate", first: true, predicate: StrataSelectTriggerDirective, descendants: true, read: TemplateRef, isSignal: true }], viewQueries: [{ propertyName: "inputField", first: true, predicate: StrataInputFieldComponent, descendants: true, isSignal: true }], ngImport: i0, template: "@if (label()) {\n<label class=\"st-label\" [for]=\"name()\"> {{ label() }}</label>\n}\n<div class=\"single-select-input\" [id]=\"name()\" #singleSelectInput (click)=\"toggle($event)\" [attr.data-open]=\"open()\"\n tabindex=\"0\" [stOverlay]=\"selector\" [overlayOpen]=\"open()\" [overlayPlacement]=\"placement()\">\n @if (selectedItem()) {\n @if (triggerTemplate()) {\n <ng-container *ngTemplateOutlet=\"triggerTemplate()!\"></ng-container>\n } @else {\n {{ selectedItem()!.text() }}\n }\n } @else {\n <span class=\"placeholder-text\">{{ placeholder() }}</span>\n }\n\n <st-icon name=\"expand-up-down\"></st-icon>\n</div>\n\n<ng-template #selector>\n <div class=\"single-select-selector\" #singleSelectSelector [class.full-width]=\"fullWidth()\">\n @if (searchable()) {\n <st-input-field>\n <input stInput #searchField type=\"text\" [value]=\"searchQuery() || ''\" (input)=\"searchQuery.set($any($event.target).value); onSearchChange(searchQuery())\" [placeholder]=\"searchPlaceholder()\" />\n <button stButton variant=\"ghost\" [class.visible]=\"searchQuery() !== undefined && searchQuery()!.length > 0\" suffix\n size=\"sm\" (click)=\"searchQuery.set(undefined); onSearchChange(undefined)\">\n x\n </button>\n </st-input-field>\n }\n <ng-content select=\"st-select-item\"></ng-content>\n </div>\n</ng-template>", dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: StrataIconComponent, selector: "st-icon", inputs: ["name", "size"], outputs: ["sizeChange"] }, { kind: "directive", type: StrataOverlayDirective, selector: "[stOverlay]", inputs: ["stOverlay", "overlayOpen", "overlayPlacement", "overlayOffset"], outputs: ["overlayOpenChange"] }, { kind: "component", type: StrataInputFieldComponent, selector: "st-input-field" }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: StrataNativeInputRefDirective, selector: "input[stInput], textarea[stInput]" }, { kind: "directive", type: StrataButtonDirective, selector: "[stButton]", inputs: ["variant", "size", "fullWidth"] }] });
|
|
1229
1291
|
}
|
|
1230
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1292
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataSingleSelectComponent, decorators: [{
|
|
1231
1293
|
type: Component,
|
|
1232
1294
|
args: [{ selector: 'st-single-select', imports: [
|
|
1233
1295
|
CommonModule,
|
|
@@ -1241,31 +1303,35 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.0", ngImpor
|
|
|
1241
1303
|
}], ctorParameters: () => [], propDecorators: { placeholder: [{ type: i0.Input, args: [{ isSignal: true, alias: "placeholder", required: false }] }], placement: [{ type: i0.Input, args: [{ isSignal: true, alias: "placement", required: false }] }], fullWidth: [{ type: i0.Input, args: [{ isSignal: true, alias: "fullWidth", required: false }] }], label: [{ type: i0.Input, args: [{ isSignal: true, alias: "label", required: false }] }], name: [{ type: i0.Input, args: [{ isSignal: true, alias: "name", required: false }] }], selected: [{ type: i0.Input, args: [{ isSignal: true, alias: "selected", required: false }] }, { type: i0.Output, args: ["selectedChange"] }], searchable: [{ type: i0.Input, args: [{ isSignal: true, alias: "searchable", required: false }] }], searchQuery: [{ type: i0.Input, args: [{ isSignal: true, alias: "searchQuery", required: false }] }, { type: i0.Output, args: ["searchQueryChange"] }], searchPlaceholder: [{ type: i0.Input, args: [{ isSignal: true, alias: "searchPlaceholder", required: false }] }], itemSelected: [{ type: i0.Output, args: ["itemSelected"] }], selectItems: [{ type: i0.ContentChildren, args: [i0.forwardRef(() => StrataSelectItemComponent), { isSignal: true }] }], triggerTemplate: [{ type: i0.ContentChild, args: [i0.forwardRef(() => StrataSelectTriggerDirective), { ...{ read: TemplateRef }, isSignal: true }] }], inputField: [{ type: i0.ViewChild, args: [i0.forwardRef(() => StrataInputFieldComponent), { isSignal: true }] }] } });
|
|
1242
1304
|
|
|
1243
1305
|
class StrataDividerComponent {
|
|
1244
|
-
label = input(
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
}
|
|
1250
|
-
i0.ɵɵ
|
|
1306
|
+
label = input(/* @ts-ignore */
|
|
1307
|
+
...(ngDevMode ? [undefined, { debugName: "label" }] : /* istanbul ignore next */ []));
|
|
1308
|
+
margin = input(true, /* @ts-ignore */
|
|
1309
|
+
...(ngDevMode ? [{ debugName: "margin" }] : /* istanbul ignore next */ []));
|
|
1310
|
+
vertical = input(false, /* @ts-ignore */
|
|
1311
|
+
...(ngDevMode ? [{ debugName: "vertical" }] : /* istanbul ignore next */ []));
|
|
1312
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataDividerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1313
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.1", type: StrataDividerComponent, isStandalone: true, selector: "st-divider", inputs: { label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: false, transformFunction: null }, margin: { classPropertyName: "margin", publicName: "margin", isSignal: true, isRequired: false, transformFunction: null }, vertical: { classPropertyName: "vertical", publicName: "vertical", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: "@if (!label() || vertical()) {\n <div class=\"divider-line\" [class.divider-margin]=\"margin()\" [class.vertical]=\"vertical()\"></div>\n} @else {\n <div class=\"divider-line-with-text\" [class.divider-margin]=\"margin()\">\n <div class=\"divider-line\"></div>\n <span>{{ label() }}</span>\n <div class=\"divider-line\"></div>\n </div>\n}\n" });
|
|
1314
|
+
}
|
|
1315
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataDividerComponent, decorators: [{
|
|
1251
1316
|
type: Component,
|
|
1252
1317
|
args: [{ selector: 'st-divider', imports: [], template: "@if (!label() || vertical()) {\n <div class=\"divider-line\" [class.divider-margin]=\"margin()\" [class.vertical]=\"vertical()\"></div>\n} @else {\n <div class=\"divider-line-with-text\" [class.divider-margin]=\"margin()\">\n <div class=\"divider-line\"></div>\n <span>{{ label() }}</span>\n <div class=\"divider-line\"></div>\n </div>\n}\n" }]
|
|
1253
1318
|
}], propDecorators: { label: [{ type: i0.Input, args: [{ isSignal: true, alias: "label", required: false }] }], margin: [{ type: i0.Input, args: [{ isSignal: true, alias: "margin", required: false }] }], vertical: [{ type: i0.Input, args: [{ isSignal: true, alias: "vertical", required: false }] }] } });
|
|
1254
1319
|
|
|
1255
1320
|
class StrataTagComponent {
|
|
1256
|
-
size = input('md',
|
|
1321
|
+
size = input('md', /* @ts-ignore */
|
|
1322
|
+
...(ngDevMode ? [{ debugName: "size" }] : /* istanbul ignore next */ []));
|
|
1257
1323
|
get class() {
|
|
1258
1324
|
return this.size();
|
|
1259
1325
|
}
|
|
1260
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1261
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "
|
|
1326
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataTagComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1327
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.1", type: StrataTagComponent, isStandalone: true, selector: "st-tag", inputs: { size: { classPropertyName: "size", publicName: "size", isSignal: true, isRequired: false, transformFunction: null } }, host: { properties: { "class": "this.class" } }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
1262
1328
|
}
|
|
1263
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1329
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataTagComponent, decorators: [{
|
|
1264
1330
|
type: Component,
|
|
1265
1331
|
args: [{
|
|
1266
1332
|
selector: 'st-tag',
|
|
1267
1333
|
imports: [],
|
|
1268
|
-
template: '<ng-content></ng-content>'
|
|
1334
|
+
template: '<ng-content></ng-content>'
|
|
1269
1335
|
}]
|
|
1270
1336
|
}], propDecorators: { size: [{ type: i0.Input, args: [{ isSignal: true, alias: "size", required: false }] }], class: [{
|
|
1271
1337
|
type: HostBinding,
|
|
@@ -1278,7 +1344,8 @@ class StrataKbdComponent {
|
|
|
1278
1344
|
* The sequence of keys to display.
|
|
1279
1345
|
* Can be an array like `['⌘', 'K']` or a string combo like `'meta+k'`.
|
|
1280
1346
|
*/
|
|
1281
|
-
keys = input([],
|
|
1347
|
+
keys = input([], /* @ts-ignore */
|
|
1348
|
+
...(ngDevMode ? [{ debugName: "keys" }] : /* istanbul ignore next */ []));
|
|
1282
1349
|
resolvedKeys = computed(() => {
|
|
1283
1350
|
const rawKeys = this.keys();
|
|
1284
1351
|
const labels = this.config.shortcutLabels;
|
|
@@ -1298,21 +1365,26 @@ class StrataKbdComponent {
|
|
|
1298
1365
|
return rawKeys.split('+').map(parseKey);
|
|
1299
1366
|
}
|
|
1300
1367
|
return Array.isArray(rawKeys) ? rawKeys.map(parseKey) : [];
|
|
1301
|
-
},
|
|
1302
|
-
|
|
1303
|
-
static
|
|
1368
|
+
}, /* @ts-ignore */
|
|
1369
|
+
...(ngDevMode ? [{ debugName: "resolvedKeys" }] : /* istanbul ignore next */ []));
|
|
1370
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataKbdComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1371
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.1", type: StrataKbdComponent, isStandalone: true, selector: "st-kbd", inputs: { keys: { classPropertyName: "keys", publicName: "keys", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: "@for (key of resolvedKeys(); track key) {\n<kbd class=\"st-kbd-key st-mono-s\">{{ key }}</kbd>\n}", styles: [":host{--st-kbd-bg: transparent;--st-kbd-border: var(--st-color-text-secondary);--st-kbd-text: var(--st-color-text-secondary);display:inline-flex;align-items:center;gap:4px}:host .st-kbd-key{font-style:normal;line-height:1;padding:3px 6px;border-radius:var(--st-border-radius-sm);background:var(--st-kbd-bg);border:1px solid var(--st-kbd-border);color:var(--st-kbd-text);white-space:nowrap;-webkit-user-select:none;user-select:none}\n"] });
|
|
1304
1372
|
}
|
|
1305
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1373
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataKbdComponent, decorators: [{
|
|
1306
1374
|
type: Component,
|
|
1307
1375
|
args: [{ selector: 'st-kbd', imports: [], template: "@for (key of resolvedKeys(); track key) {\n<kbd class=\"st-kbd-key st-mono-s\">{{ key }}</kbd>\n}", styles: [":host{--st-kbd-bg: transparent;--st-kbd-border: var(--st-color-text-secondary);--st-kbd-text: var(--st-color-text-secondary);display:inline-flex;align-items:center;gap:4px}:host .st-kbd-key{font-style:normal;line-height:1;padding:3px 6px;border-radius:var(--st-border-radius-sm);background:var(--st-kbd-bg);border:1px solid var(--st-kbd-border);color:var(--st-kbd-text);white-space:nowrap;-webkit-user-select:none;user-select:none}\n"] }]
|
|
1308
1376
|
}], propDecorators: { keys: [{ type: i0.Input, args: [{ isSignal: true, alias: "keys", required: false }] }] } });
|
|
1309
1377
|
|
|
1310
1378
|
class StrataRadioComponent {
|
|
1311
|
-
value = input.required(
|
|
1312
|
-
|
|
1313
|
-
|
|
1314
|
-
|
|
1315
|
-
|
|
1379
|
+
value = input.required(/* @ts-ignore */
|
|
1380
|
+
...(ngDevMode ? [{ debugName: "value" }] : /* istanbul ignore next */ []));
|
|
1381
|
+
label = input(undefined, /* @ts-ignore */
|
|
1382
|
+
...(ngDevMode ? [{ debugName: "label" }] : /* istanbul ignore next */ []));
|
|
1383
|
+
checked = model(false, /* @ts-ignore */
|
|
1384
|
+
...(ngDevMode ? [{ debugName: "checked" }] : /* istanbul ignore next */ []));
|
|
1385
|
+
disabled = input(false, /* @ts-ignore */
|
|
1386
|
+
...(ngDevMode ? [{ debugName: "disabled" }] : /* istanbul ignore next */ []));
|
|
1387
|
+
selected = output();
|
|
1316
1388
|
get isChecked() {
|
|
1317
1389
|
return this.checked();
|
|
1318
1390
|
}
|
|
@@ -1324,16 +1396,16 @@ class StrataRadioComponent {
|
|
|
1324
1396
|
return;
|
|
1325
1397
|
}
|
|
1326
1398
|
event.stopImmediatePropagation();
|
|
1327
|
-
this.
|
|
1399
|
+
this.selected.emit();
|
|
1328
1400
|
this.checked.set(true);
|
|
1329
1401
|
}
|
|
1330
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1331
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "
|
|
1402
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataRadioComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1403
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.1", type: StrataRadioComponent, isStandalone: true, selector: "st-radio", inputs: { value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: true, transformFunction: null }, label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: false, transformFunction: null }, checked: { classPropertyName: "checked", publicName: "checked", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { checked: "checkedChange", selected: "selected" }, host: { listeners: { "click": "onClick($event)" }, properties: { "attr.data-checked": "this.isChecked", "attr.data-disabled": "this.isDisabled" } }, ngImport: i0, template: "<input type=\"radio\" [checked]=\"checked()\" [disabled]=\"disabled()\" />\n<div class=\"radio-visual\"></div>\n@if (label()) {\n <label>{{ label() }}</label>\n}\n" });
|
|
1332
1404
|
}
|
|
1333
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1405
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataRadioComponent, decorators: [{
|
|
1334
1406
|
type: Component,
|
|
1335
1407
|
args: [{ selector: 'st-radio', imports: [], template: "<input type=\"radio\" [checked]=\"checked()\" [disabled]=\"disabled()\" />\n<div class=\"radio-visual\"></div>\n@if (label()) {\n <label>{{ label() }}</label>\n}\n" }]
|
|
1336
|
-
}], propDecorators: { value: [{ type: i0.Input, args: [{ isSignal: true, alias: "value", required: true }] }], label: [{ type: i0.Input, args: [{ isSignal: true, alias: "label", required: false }] }], checked: [{ type: i0.Input, args: [{ isSignal: true, alias: "checked", required: false }] }, { type: i0.Output, args: ["checkedChange"] }], disabled: [{ type: i0.Input, args: [{ isSignal: true, alias: "disabled", required: false }] }],
|
|
1408
|
+
}], propDecorators: { value: [{ type: i0.Input, args: [{ isSignal: true, alias: "value", required: true }] }], label: [{ type: i0.Input, args: [{ isSignal: true, alias: "label", required: false }] }], checked: [{ type: i0.Input, args: [{ isSignal: true, alias: "checked", required: false }] }, { type: i0.Output, args: ["checkedChange"] }], disabled: [{ type: i0.Input, args: [{ isSignal: true, alias: "disabled", required: false }] }], selected: [{ type: i0.Output, args: ["selected"] }], isChecked: [{
|
|
1337
1409
|
type: HostBinding,
|
|
1338
1410
|
args: ['attr.data-checked']
|
|
1339
1411
|
}], isDisabled: [{
|
|
@@ -1347,9 +1419,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.0", ngImpor
|
|
|
1347
1419
|
class StrataItemComponent {
|
|
1348
1420
|
element = inject(ElementRef);
|
|
1349
1421
|
_activatable = inject(StrataActivatableDirective);
|
|
1350
|
-
checkbox = contentChild(StrataCheckboxComponent, { ...(ngDevMode ? { debugName: "checkbox" } : {}), read: ElementRef });
|
|
1351
|
-
toggle = contentChild(StrataToggleComponent, { ...(ngDevMode ? { debugName: "toggle" } : {}), read: ElementRef });
|
|
1352
|
-
radio = contentChild(StrataRadioComponent, { ...(ngDevMode ? { debugName: "radio" } : {}), read: ElementRef });
|
|
1422
|
+
checkbox = contentChild(StrataCheckboxComponent, { ...(ngDevMode ? { debugName: "checkbox" } : /* istanbul ignore next */ {}), read: ElementRef });
|
|
1423
|
+
toggle = contentChild(StrataToggleComponent, { ...(ngDevMode ? { debugName: "toggle" } : /* istanbul ignore next */ {}), read: ElementRef });
|
|
1424
|
+
radio = contentChild(StrataRadioComponent, { ...(ngDevMode ? { debugName: "radio" } : /* istanbul ignore next */ {}), read: ElementRef });
|
|
1353
1425
|
interactable = this._activatable.interactable;
|
|
1354
1426
|
disabled = this._activatable.disabled;
|
|
1355
1427
|
constructor() {
|
|
@@ -1380,16 +1452,16 @@ class StrataItemComponent {
|
|
|
1380
1452
|
this.toggle()?.nativeElement.click();
|
|
1381
1453
|
this.radio()?.nativeElement.click();
|
|
1382
1454
|
}
|
|
1383
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1384
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "
|
|
1455
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1456
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "22.0.1", type: StrataItemComponent, isStandalone: true, selector: "st-item", host: { listeners: { "click": "onHostClick($event)" }, properties: { "class.interactable": "this.isInteractable", "class.disabled": "this.isDisabledClass" } }, queries: [{ propertyName: "checkbox", first: true, predicate: StrataCheckboxComponent, descendants: true, read: ElementRef, isSignal: true }, { propertyName: "toggle", first: true, predicate: StrataToggleComponent, descendants: true, read: ElementRef, isSignal: true }, { propertyName: "radio", first: true, predicate: StrataRadioComponent, descendants: true, read: ElementRef, isSignal: true }], hostDirectives: [{ directive: StrataActivatableDirective, inputs: ["disabled", "disabled", "interactable", "interactable"], outputs: ["activated", "activated"] }], ngImport: i0, template: "<span class=\"item-start\">\n <ng-content select=\"[area='start']\"></ng-content\n></span>\n<span class=\"item-default\"> <ng-content></ng-content></span>\n<span class=\"item-end\">\n <ng-content select=\"[area='end']\"></ng-content>\n</span>\n", styles: [""] });
|
|
1385
1457
|
}
|
|
1386
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1458
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataItemComponent, decorators: [{
|
|
1387
1459
|
type: Component,
|
|
1388
1460
|
args: [{ selector: 'st-item', imports: [], hostDirectives: [
|
|
1389
1461
|
{
|
|
1390
1462
|
directive: StrataActivatableDirective,
|
|
1391
1463
|
inputs: ['disabled', 'interactable'],
|
|
1392
|
-
outputs: ['activated']
|
|
1464
|
+
outputs: ['activated']
|
|
1393
1465
|
},
|
|
1394
1466
|
], template: "<span class=\"item-start\">\n <ng-content select=\"[area='start']\"></ng-content\n></span>\n<span class=\"item-default\"> <ng-content></ng-content></span>\n<span class=\"item-end\">\n <ng-content select=\"[area='end']\"></ng-content>\n</span>\n" }]
|
|
1395
1467
|
}], ctorParameters: () => [], propDecorators: { checkbox: [{ type: i0.ContentChild, args: [i0.forwardRef(() => StrataCheckboxComponent), { ...{ read: ElementRef }, isSignal: true }] }], toggle: [{ type: i0.ContentChild, args: [i0.forwardRef(() => StrataToggleComponent), { ...{ read: ElementRef }, isSignal: true }] }], radio: [{ type: i0.ContentChild, args: [i0.forwardRef(() => StrataRadioComponent), { ...{ read: ElementRef }, isSignal: true }] }], isInteractable: [{
|
|
@@ -1404,16 +1476,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.0", ngImpor
|
|
|
1404
1476
|
}] } });
|
|
1405
1477
|
|
|
1406
1478
|
class StrataItemListComponent {
|
|
1407
|
-
items = input.required(
|
|
1408
|
-
|
|
1409
|
-
|
|
1479
|
+
items = input.required(/* @ts-ignore */
|
|
1480
|
+
...(ngDevMode ? [{ debugName: "items" }] : /* istanbul ignore next */ []));
|
|
1481
|
+
dividers = input(true, /* @ts-ignore */
|
|
1482
|
+
...(ngDevMode ? [{ debugName: "dividers" }] : /* istanbul ignore next */ []));
|
|
1483
|
+
template = input(/* @ts-ignore */
|
|
1484
|
+
...(ngDevMode ? [undefined, { debugName: "template" }] : /* istanbul ignore next */ []));
|
|
1410
1485
|
get hostClasses() {
|
|
1411
1486
|
return [this.dividers() ? 'with-dividers' : ''];
|
|
1412
1487
|
}
|
|
1413
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1414
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "
|
|
1488
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataItemListComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1489
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.1", type: StrataItemListComponent, isStandalone: true, selector: "st-item-list", inputs: { items: { classPropertyName: "items", publicName: "items", isSignal: true, isRequired: true, transformFunction: null }, dividers: { classPropertyName: "dividers", publicName: "dividers", isSignal: true, isRequired: false, transformFunction: null }, template: { classPropertyName: "template", publicName: "template", isSignal: true, isRequired: false, transformFunction: null } }, host: { properties: { "class": "this.hostClasses" } }, ngImport: i0, template: "@for (item of items(); track item; let last = $last) {\n <ng-template #defaultItemTemplate>\n <st-item>{{ item }}</st-item>\n </ng-template>\n <ng-container\n [ngTemplateOutlet]=\"template() || defaultItemTemplate\"\n [ngTemplateOutletContext]=\"{ $implicit: item }\"></ng-container>\n}\n", dependencies: [{ kind: "component", type: StrataItemComponent, selector: "st-item" }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "ngmodule", type: CommonModule }] });
|
|
1415
1490
|
}
|
|
1416
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1491
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataItemListComponent, decorators: [{
|
|
1417
1492
|
type: Component,
|
|
1418
1493
|
args: [{ selector: 'st-item-list', imports: [StrataItemComponent, NgTemplateOutlet, CommonModule], template: "@for (item of items(); track item; let last = $last) {\n <ng-template #defaultItemTemplate>\n <st-item>{{ item }}</st-item>\n </ng-template>\n <ng-container\n [ngTemplateOutlet]=\"template() || defaultItemTemplate\"\n [ngTemplateOutletContext]=\"{ $implicit: item }\"></ng-container>\n}\n" }]
|
|
1419
1494
|
}], propDecorators: { items: [{ type: i0.Input, args: [{ isSignal: true, alias: "items", required: true }] }], dividers: [{ type: i0.Input, args: [{ isSignal: true, alias: "dividers", required: false }] }], template: [{ type: i0.Input, args: [{ isSignal: true, alias: "template", required: false }] }], hostClasses: [{
|
|
@@ -1422,8 +1497,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.0", ngImpor
|
|
|
1422
1497
|
}] } });
|
|
1423
1498
|
|
|
1424
1499
|
class StrataAutoResizeDirective {
|
|
1425
|
-
minimumRows = input(1,
|
|
1426
|
-
|
|
1500
|
+
minimumRows = input(1, /* @ts-ignore */
|
|
1501
|
+
...(ngDevMode ? [{ debugName: "minimumRows" }] : /* istanbul ignore next */ []));
|
|
1502
|
+
maximumRows = input(/* @ts-ignore */
|
|
1503
|
+
...(ngDevMode ? [undefined, { debugName: "maximumRows" }] : /* istanbul ignore next */ []));
|
|
1427
1504
|
lineHeight = 0;
|
|
1428
1505
|
element = inject(ElementRef);
|
|
1429
1506
|
onInput() {
|
|
@@ -1463,13 +1540,13 @@ class StrataAutoResizeDirective {
|
|
|
1463
1540
|
textarea.style.height = `${newHeight}px`;
|
|
1464
1541
|
textarea.style.overflowY = scrollHeight > maxHeight ? 'auto' : 'hidden';
|
|
1465
1542
|
}
|
|
1466
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1467
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "
|
|
1543
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataAutoResizeDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
1544
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "22.0.1", type: StrataAutoResizeDirective, isStandalone: true, selector: "[stAutoResize]", inputs: { minimumRows: { classPropertyName: "minimumRows", publicName: "minimumRows", isSignal: true, isRequired: false, transformFunction: null }, maximumRows: { classPropertyName: "maximumRows", publicName: "maximumRows", isSignal: true, isRequired: false, transformFunction: null } }, host: { listeners: { "input": "onInput()", "window:resize": "onWindowResize()" } }, usesOnChanges: true, ngImport: i0 });
|
|
1468
1545
|
}
|
|
1469
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1546
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataAutoResizeDirective, decorators: [{
|
|
1470
1547
|
type: Directive,
|
|
1471
1548
|
args: [{
|
|
1472
|
-
selector: '[stAutoResize]'
|
|
1549
|
+
selector: '[stAutoResize]'
|
|
1473
1550
|
}]
|
|
1474
1551
|
}], propDecorators: { minimumRows: [{ type: i0.Input, args: [{ isSignal: true, alias: "minimumRows", required: false }] }], maximumRows: [{ type: i0.Input, args: [{ isSignal: true, alias: "maximumRows", required: false }] }], onInput: [{
|
|
1475
1552
|
type: HostListener,
|
|
@@ -1480,11 +1557,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.0", ngImpor
|
|
|
1480
1557
|
}] } });
|
|
1481
1558
|
|
|
1482
1559
|
class StrataPaginationComponent {
|
|
1483
|
-
currentPage = model(1,
|
|
1484
|
-
|
|
1560
|
+
currentPage = model(1, /* @ts-ignore */
|
|
1561
|
+
...(ngDevMode ? [{ debugName: "currentPage" }] : /* istanbul ignore next */ []));
|
|
1562
|
+
totalPages = input.required(/* @ts-ignore */
|
|
1563
|
+
...(ngDevMode ? [{ debugName: "totalPages" }] : /* istanbul ignore next */ []));
|
|
1485
1564
|
pageSelected = output();
|
|
1486
|
-
pageButtons = computed(() => this.calculatePageButtons(this.currentPage(), this.totalPages()),
|
|
1487
|
-
|
|
1565
|
+
pageButtons = computed(() => this.calculatePageButtons(this.currentPage(), this.totalPages()), /* @ts-ignore */
|
|
1566
|
+
...(ngDevMode ? [{ debugName: "pageButtons" }] : /* istanbul ignore next */ []));
|
|
1567
|
+
hideNextPreviousAtStartEnd = input(false, /* @ts-ignore */
|
|
1568
|
+
...(ngDevMode ? [{ debugName: "hideNextPreviousAtStartEnd" }] : /* istanbul ignore next */ []));
|
|
1488
1569
|
changePage(newPage) {
|
|
1489
1570
|
this.currentPage.set(newPage);
|
|
1490
1571
|
this.pageSelected.emit(this.currentPage());
|
|
@@ -1545,13 +1626,13 @@ class StrataPaginationComponent {
|
|
|
1545
1626
|
return {
|
|
1546
1627
|
page: page,
|
|
1547
1628
|
text: page + '',
|
|
1548
|
-
clickable: true
|
|
1629
|
+
clickable: true
|
|
1549
1630
|
};
|
|
1550
1631
|
}
|
|
1551
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1552
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "
|
|
1632
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataPaginationComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1633
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.1", type: StrataPaginationComponent, isStandalone: true, selector: "st-pagination", inputs: { currentPage: { classPropertyName: "currentPage", publicName: "currentPage", isSignal: true, isRequired: false, transformFunction: null }, totalPages: { classPropertyName: "totalPages", publicName: "totalPages", isSignal: true, isRequired: true, transformFunction: null }, hideNextPreviousAtStartEnd: { classPropertyName: "hideNextPreviousAtStartEnd", publicName: "hideNextPreviousAtStartEnd", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { currentPage: "currentPageChange", pageSelected: "pageSelected" }, ngImport: i0, template: "<button\n [disabled]=\"currentPage() === 1\"\n [class.clickable]=\"true\"\n [class.hideOnDisabled]=\"hideNextPreviousAtStartEnd()\"\n (click)=\"changePage(currentPage() - 1)\"\n>\n Previous\n</button>\n@for (page of pageButtons(); track page) {\n <button\n [class.selected]=\"page.page === currentPage()\"\n [class.clickable]=\"page.clickable\"\n (click)=\"page.page ? changePage(page.page) : null\"\n >\n {{ page.text }}\n </button>\n}\n<button\n [disabled]=\"currentPage() === totalPages()\"\n (click)=\"changePage(currentPage() + 1)\"\n [class.clickable]=\"true\"\n [class.hideOnDisabled]=\"hideNextPreviousAtStartEnd()\"\n>\n Next\n</button>\n" });
|
|
1553
1634
|
}
|
|
1554
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1635
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataPaginationComponent, decorators: [{
|
|
1555
1636
|
type: Component,
|
|
1556
1637
|
args: [{ selector: 'st-pagination', imports: [], template: "<button\n [disabled]=\"currentPage() === 1\"\n [class.clickable]=\"true\"\n [class.hideOnDisabled]=\"hideNextPreviousAtStartEnd()\"\n (click)=\"changePage(currentPage() - 1)\"\n>\n Previous\n</button>\n@for (page of pageButtons(); track page) {\n <button\n [class.selected]=\"page.page === currentPage()\"\n [class.clickable]=\"page.clickable\"\n (click)=\"page.page ? changePage(page.page) : null\"\n >\n {{ page.text }}\n </button>\n}\n<button\n [disabled]=\"currentPage() === totalPages()\"\n (click)=\"changePage(currentPage() + 1)\"\n [class.clickable]=\"true\"\n [class.hideOnDisabled]=\"hideNextPreviousAtStartEnd()\"\n>\n Next\n</button>\n" }]
|
|
1557
1638
|
}], propDecorators: { currentPage: [{ type: i0.Input, args: [{ isSignal: true, alias: "currentPage", required: false }] }, { type: i0.Output, args: ["currentPageChange"] }], totalPages: [{ type: i0.Input, args: [{ isSignal: true, alias: "totalPages", required: true }] }], pageSelected: [{ type: i0.Output, args: ["pageSelected"] }], hideNextPreviousAtStartEnd: [{ type: i0.Input, args: [{ isSignal: true, alias: "hideNextPreviousAtStartEnd", required: false }] }] } });
|
|
@@ -1563,25 +1644,31 @@ class CapitalizePipe {
|
|
|
1563
1644
|
transform(value, ..._args) {
|
|
1564
1645
|
return CapitalizePipe.capitalize(value);
|
|
1565
1646
|
}
|
|
1566
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1567
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
1647
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: CapitalizePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
1648
|
+
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "22.0.1", ngImport: i0, type: CapitalizePipe, isStandalone: true, name: "capitalize" });
|
|
1568
1649
|
}
|
|
1569
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1650
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: CapitalizePipe, decorators: [{
|
|
1570
1651
|
type: Pipe,
|
|
1571
1652
|
args: [{
|
|
1572
1653
|
name: 'capitalize',
|
|
1573
1654
|
standalone: true,
|
|
1574
|
-
pure: true
|
|
1655
|
+
pure: true
|
|
1575
1656
|
}]
|
|
1576
1657
|
}] });
|
|
1577
1658
|
|
|
1578
1659
|
class StrataProgressLinearComponent {
|
|
1579
|
-
min = input(0,
|
|
1580
|
-
|
|
1581
|
-
|
|
1582
|
-
|
|
1583
|
-
|
|
1584
|
-
|
|
1660
|
+
min = input(0, /* @ts-ignore */
|
|
1661
|
+
...(ngDevMode ? [{ debugName: "min" }] : /* istanbul ignore next */ []));
|
|
1662
|
+
max = input(100, /* @ts-ignore */
|
|
1663
|
+
...(ngDevMode ? [{ debugName: "max" }] : /* istanbul ignore next */ []));
|
|
1664
|
+
value = input.required(/* @ts-ignore */
|
|
1665
|
+
...(ngDevMode ? [{ debugName: "value" }] : /* istanbul ignore next */ []));
|
|
1666
|
+
showLabel = input(true, /* @ts-ignore */
|
|
1667
|
+
...(ngDevMode ? [{ debugName: "showLabel" }] : /* istanbul ignore next */ []));
|
|
1668
|
+
labelFormat = input('percentage', /* @ts-ignore */
|
|
1669
|
+
...(ngDevMode ? [{ debugName: "labelFormat" }] : /* istanbul ignore next */ []));
|
|
1670
|
+
growDirection = input('right', /* @ts-ignore */
|
|
1671
|
+
...(ngDevMode ? [{ debugName: "growDirection" }] : /* istanbul ignore next */ []));
|
|
1585
1672
|
percentage = computed(() => {
|
|
1586
1673
|
if (this.max() <= this.min()) {
|
|
1587
1674
|
return 0;
|
|
@@ -1590,17 +1677,18 @@ class StrataProgressLinearComponent {
|
|
|
1590
1677
|
const progressedValue = clampedValue - this.min();
|
|
1591
1678
|
const progressableValues = this.max() - this.min();
|
|
1592
1679
|
return (progressedValue / progressableValues) * 100;
|
|
1593
|
-
},
|
|
1680
|
+
}, /* @ts-ignore */
|
|
1681
|
+
...(ngDevMode ? [{ debugName: "percentage" }] : /* istanbul ignore next */ []));
|
|
1594
1682
|
get cssClasses() {
|
|
1595
1683
|
return [`grow-${this.growDirection()}`];
|
|
1596
1684
|
}
|
|
1597
1685
|
get percentageProperty() {
|
|
1598
1686
|
return this.percentage();
|
|
1599
1687
|
}
|
|
1600
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1601
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "
|
|
1688
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataProgressLinearComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1689
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.1", type: StrataProgressLinearComponent, isStandalone: true, selector: "st-progress-linear", inputs: { min: { classPropertyName: "min", publicName: "min", isSignal: true, isRequired: false, transformFunction: null }, max: { classPropertyName: "max", publicName: "max", isSignal: true, isRequired: false, transformFunction: null }, value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: true, transformFunction: null }, showLabel: { classPropertyName: "showLabel", publicName: "showLabel", isSignal: true, isRequired: false, transformFunction: null }, labelFormat: { classPropertyName: "labelFormat", publicName: "labelFormat", isSignal: true, isRequired: false, transformFunction: null }, growDirection: { classPropertyName: "growDirection", publicName: "growDirection", isSignal: true, isRequired: false, transformFunction: null } }, host: { properties: { "class": "this.cssClasses", "style.--st-progress-percentage": "this.percentageProperty" } }, ngImport: i0, template: "<div class=\"linear-container\">\n <div class=\"linear-bar\" [style.width.%]=\"percentage()\"></div>\n</div>\n\n<ng-container [ngTemplateOutlet]=\"label\"></ng-container>\n\n<ng-template #label>\n @if (showLabel()) {\n <span class=\"label\">\n @switch (labelFormat()) {\n @case (\"percentage\") {\n {{ percentage() | number: \"1.0-0\" }}%\n }\n @case (\"value\") {\n {{ value() | number: \"1.0-0\" }}\n }\n }\n </span>\n }\n</ng-template>\n", dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "pipe", type: DecimalPipe, name: "number" }] });
|
|
1602
1690
|
}
|
|
1603
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1691
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataProgressLinearComponent, decorators: [{
|
|
1604
1692
|
type: Component,
|
|
1605
1693
|
args: [{ selector: 'st-progress-linear', imports: [DecimalPipe, NgTemplateOutlet], template: "<div class=\"linear-container\">\n <div class=\"linear-bar\" [style.width.%]=\"percentage()\"></div>\n</div>\n\n<ng-container [ngTemplateOutlet]=\"label\"></ng-container>\n\n<ng-template #label>\n @if (showLabel()) {\n <span class=\"label\">\n @switch (labelFormat()) {\n @case (\"percentage\") {\n {{ percentage() | number: \"1.0-0\" }}%\n }\n @case (\"value\") {\n {{ value() | number: \"1.0-0\" }}\n }\n }\n </span>\n }\n</ng-template>\n" }]
|
|
1606
1694
|
}], propDecorators: { min: [{ type: i0.Input, args: [{ isSignal: true, alias: "min", required: false }] }], max: [{ type: i0.Input, args: [{ isSignal: true, alias: "max", required: false }] }], value: [{ type: i0.Input, args: [{ isSignal: true, alias: "value", required: true }] }], showLabel: [{ type: i0.Input, args: [{ isSignal: true, alias: "showLabel", required: false }] }], labelFormat: [{ type: i0.Input, args: [{ isSignal: true, alias: "labelFormat", required: false }] }], growDirection: [{ type: i0.Input, args: [{ isSignal: true, alias: "growDirection", required: false }] }], cssClasses: [{
|
|
@@ -1612,13 +1700,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.0", ngImpor
|
|
|
1612
1700
|
}] } });
|
|
1613
1701
|
|
|
1614
1702
|
class StrataProgressRadialComponent {
|
|
1615
|
-
min = input(0,
|
|
1616
|
-
|
|
1617
|
-
|
|
1618
|
-
|
|
1619
|
-
|
|
1620
|
-
|
|
1621
|
-
|
|
1703
|
+
min = input(0, /* @ts-ignore */
|
|
1704
|
+
...(ngDevMode ? [{ debugName: "min" }] : /* istanbul ignore next */ []));
|
|
1705
|
+
max = input(100, /* @ts-ignore */
|
|
1706
|
+
...(ngDevMode ? [{ debugName: "max" }] : /* istanbul ignore next */ []));
|
|
1707
|
+
value = input.required(/* @ts-ignore */
|
|
1708
|
+
...(ngDevMode ? [{ debugName: "value" }] : /* istanbul ignore next */ []));
|
|
1709
|
+
showLabel = input(true, /* @ts-ignore */
|
|
1710
|
+
...(ngDevMode ? [{ debugName: "showLabel" }] : /* istanbul ignore next */ []));
|
|
1711
|
+
labelFormat = input('percentage', /* @ts-ignore */
|
|
1712
|
+
...(ngDevMode ? [{ debugName: "labelFormat" }] : /* istanbul ignore next */ []));
|
|
1713
|
+
size = input(120, /* @ts-ignore */
|
|
1714
|
+
...(ngDevMode ? [{ debugName: "size" }] : /* istanbul ignore next */ []));
|
|
1715
|
+
strokeWidth = input(10, /* @ts-ignore */
|
|
1716
|
+
...(ngDevMode ? [{ debugName: "strokeWidth" }] : /* istanbul ignore next */ []));
|
|
1622
1717
|
percentage = computed(() => {
|
|
1623
1718
|
if (this.max() <= this.min()) {
|
|
1624
1719
|
return 0;
|
|
@@ -1627,17 +1722,21 @@ class StrataProgressRadialComponent {
|
|
|
1627
1722
|
const progressedValue = clampedValue - this.min();
|
|
1628
1723
|
const progressableValues = this.max() - this.min();
|
|
1629
1724
|
return (progressedValue / progressableValues) * 100;
|
|
1630
|
-
},
|
|
1631
|
-
|
|
1632
|
-
|
|
1633
|
-
|
|
1725
|
+
}, /* @ts-ignore */
|
|
1726
|
+
...(ngDevMode ? [{ debugName: "percentage" }] : /* istanbul ignore next */ []));
|
|
1727
|
+
radius = computed(() => (this.size() - this.strokeWidth()) / 2, /* @ts-ignore */
|
|
1728
|
+
...(ngDevMode ? [{ debugName: "radius" }] : /* istanbul ignore next */ []));
|
|
1729
|
+
circumference = computed(() => 2 * Math.PI * this.radius(), /* @ts-ignore */
|
|
1730
|
+
...(ngDevMode ? [{ debugName: "circumference" }] : /* istanbul ignore next */ []));
|
|
1731
|
+
dashOffset = computed(() => this.circumference() * (1 - this.percentage() / 100), /* @ts-ignore */
|
|
1732
|
+
...(ngDevMode ? [{ debugName: "dashOffset" }] : /* istanbul ignore next */ []));
|
|
1634
1733
|
get percentageProperty() {
|
|
1635
1734
|
return this.percentage();
|
|
1636
1735
|
}
|
|
1637
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1638
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "
|
|
1736
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataProgressRadialComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1737
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.1", type: StrataProgressRadialComponent, isStandalone: true, selector: "st-progress-radial", inputs: { min: { classPropertyName: "min", publicName: "min", isSignal: true, isRequired: false, transformFunction: null }, max: { classPropertyName: "max", publicName: "max", isSignal: true, isRequired: false, transformFunction: null }, value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: true, transformFunction: null }, showLabel: { classPropertyName: "showLabel", publicName: "showLabel", isSignal: true, isRequired: false, transformFunction: null }, labelFormat: { classPropertyName: "labelFormat", publicName: "labelFormat", isSignal: true, isRequired: false, transformFunction: null }, size: { classPropertyName: "size", publicName: "size", isSignal: true, isRequired: false, transformFunction: null }, strokeWidth: { classPropertyName: "strokeWidth", publicName: "strokeWidth", isSignal: true, isRequired: false, transformFunction: null } }, host: { properties: { "style.--st-progress-percentage": "this.percentageProperty" } }, ngImport: i0, template: "<div class=\"radial-container\">\n <svg width=\"100%\" height=\"100%\">\n <circle class=\"background\"></circle>\n\n <circle class=\"progress\" stroke-linecap=\"round\"></circle>\n </svg>\n\n <ng-container [ngTemplateOutlet]=\"label\"></ng-container>\n</div>\n\n<ng-template #label>\n @if (showLabel()) {\n <span class=\"label\">\n @switch (labelFormat()) {\n @case (\"percentage\") {\n {{ percentage() | number: \"1.0-0\" }}%\n }\n @case (\"value\") {\n {{ value() | number: \"1.0-0\" }}\n }\n }\n </span>\n }\n</ng-template>\n", dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "pipe", type: DecimalPipe, name: "number" }] });
|
|
1639
1738
|
}
|
|
1640
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1739
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataProgressRadialComponent, decorators: [{
|
|
1641
1740
|
type: Component,
|
|
1642
1741
|
args: [{ selector: 'st-progress-radial', imports: [DecimalPipe, NgTemplateOutlet], template: "<div class=\"radial-container\">\n <svg width=\"100%\" height=\"100%\">\n <circle class=\"background\"></circle>\n\n <circle class=\"progress\" stroke-linecap=\"round\"></circle>\n </svg>\n\n <ng-container [ngTemplateOutlet]=\"label\"></ng-container>\n</div>\n\n<ng-template #label>\n @if (showLabel()) {\n <span class=\"label\">\n @switch (labelFormat()) {\n @case (\"percentage\") {\n {{ percentage() | number: \"1.0-0\" }}%\n }\n @case (\"value\") {\n {{ value() | number: \"1.0-0\" }}\n }\n }\n </span>\n }\n</ng-template>\n" }]
|
|
1643
1742
|
}], propDecorators: { min: [{ type: i0.Input, args: [{ isSignal: true, alias: "min", required: false }] }], max: [{ type: i0.Input, args: [{ isSignal: true, alias: "max", required: false }] }], value: [{ type: i0.Input, args: [{ isSignal: true, alias: "value", required: true }] }], showLabel: [{ type: i0.Input, args: [{ isSignal: true, alias: "showLabel", required: false }] }], labelFormat: [{ type: i0.Input, args: [{ isSignal: true, alias: "labelFormat", required: false }] }], size: [{ type: i0.Input, args: [{ isSignal: true, alias: "size", required: false }] }], strokeWidth: [{ type: i0.Input, args: [{ isSignal: true, alias: "strokeWidth", required: false }] }], percentageProperty: [{
|
|
@@ -1646,8 +1745,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.0", ngImpor
|
|
|
1646
1745
|
}] } });
|
|
1647
1746
|
|
|
1648
1747
|
class StrataRadioGroupComponent {
|
|
1649
|
-
value = model('',
|
|
1650
|
-
|
|
1748
|
+
value = model('', /* @ts-ignore */
|
|
1749
|
+
...(ngDevMode ? [{ debugName: "value" }] : /* istanbul ignore next */ []));
|
|
1750
|
+
radios = contentChildren(StrataRadioComponent, { ...(ngDevMode ? { debugName: "radios" } : /* istanbul ignore next */ {}), descendants: true });
|
|
1651
1751
|
constructor() {
|
|
1652
1752
|
// Sync group value -> children checked state
|
|
1653
1753
|
effect(() => {
|
|
@@ -1659,7 +1759,7 @@ class StrataRadioGroupComponent {
|
|
|
1659
1759
|
// Handle child selection -> update group value
|
|
1660
1760
|
effect((onCleanup) => {
|
|
1661
1761
|
const radios = this.radios();
|
|
1662
|
-
const subs = radios.map((radio) => radio.
|
|
1762
|
+
const subs = radios.map((radio) => radio.selected.subscribe(() => {
|
|
1663
1763
|
this.value.set(radio.value());
|
|
1664
1764
|
}));
|
|
1665
1765
|
onCleanup(() => {
|
|
@@ -1667,22 +1767,25 @@ class StrataRadioGroupComponent {
|
|
|
1667
1767
|
});
|
|
1668
1768
|
});
|
|
1669
1769
|
}
|
|
1670
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1671
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "
|
|
1770
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataRadioGroupComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1771
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "22.0.1", type: StrataRadioGroupComponent, isStandalone: true, selector: "st-radio-group", inputs: { value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { value: "valueChange" }, queries: [{ propertyName: "radios", predicate: StrataRadioComponent, descendants: true, isSignal: true }], ngImport: i0, template: `<ng-content></ng-content>`, isInline: true });
|
|
1672
1772
|
}
|
|
1673
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1773
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataRadioGroupComponent, decorators: [{
|
|
1674
1774
|
type: Component,
|
|
1675
1775
|
args: [{
|
|
1676
1776
|
selector: 'st-radio-group',
|
|
1677
1777
|
imports: [],
|
|
1678
|
-
template: `<ng-content></ng-content
|
|
1778
|
+
template: `<ng-content></ng-content>`
|
|
1679
1779
|
}]
|
|
1680
1780
|
}], ctorParameters: () => [], propDecorators: { value: [{ type: i0.Input, args: [{ isSignal: true, alias: "value", required: false }] }, { type: i0.Output, args: ["valueChange"] }], radios: [{ type: i0.ContentChildren, args: [i0.forwardRef(() => StrataRadioComponent), { ...{ descendants: true }, isSignal: true }] }] } });
|
|
1681
1781
|
|
|
1682
1782
|
class StrataSegmentedControlItemComponent {
|
|
1683
|
-
text = input.required(
|
|
1684
|
-
|
|
1685
|
-
|
|
1783
|
+
text = input.required(/* @ts-ignore */
|
|
1784
|
+
...(ngDevMode ? [{ debugName: "text" }] : /* istanbul ignore next */ []));
|
|
1785
|
+
selected = model(false, /* @ts-ignore */
|
|
1786
|
+
...(ngDevMode ? [{ debugName: "selected" }] : /* istanbul ignore next */ []));
|
|
1787
|
+
disabled = input(false, /* @ts-ignore */
|
|
1788
|
+
...(ngDevMode ? [{ debugName: "disabled" }] : /* istanbul ignore next */ []));
|
|
1686
1789
|
selectionChanged = output();
|
|
1687
1790
|
get tabIndex() {
|
|
1688
1791
|
return this.selected() || this.disabled() ? null : 0;
|
|
@@ -1694,13 +1797,13 @@ class StrataSegmentedControlItemComponent {
|
|
|
1694
1797
|
this.selected.set(true);
|
|
1695
1798
|
this.selectionChanged.emit();
|
|
1696
1799
|
}
|
|
1697
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1698
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "
|
|
1800
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataSegmentedControlItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1801
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.1", type: StrataSegmentedControlItemComponent, isStandalone: true, selector: "st-segmented-control-item", inputs: { text: { classPropertyName: "text", publicName: "text", isSignal: true, isRequired: true, transformFunction: null }, selected: { classPropertyName: "selected", publicName: "selected", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { selected: "selectedChange", selectionChanged: "selectionChanged" }, host: { listeners: { "click": "onClick()" }, properties: { "attr.tabindex": "this.tabIndex", "attr.disabled": "this.disabledAttribute" } }, ngImport: i0, template: "{{ text() }}\n", styles: [""] });
|
|
1699
1802
|
}
|
|
1700
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1803
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataSegmentedControlItemComponent, decorators: [{
|
|
1701
1804
|
type: Component,
|
|
1702
1805
|
args: [{ selector: 'st-segmented-control-item', imports: [], host: {
|
|
1703
|
-
'(click)': 'onClick()'
|
|
1806
|
+
'(click)': 'onClick()'
|
|
1704
1807
|
}, template: "{{ text() }}\n" }]
|
|
1705
1808
|
}], propDecorators: { text: [{ type: i0.Input, args: [{ isSignal: true, alias: "text", required: true }] }], selected: [{ type: i0.Input, args: [{ isSignal: true, alias: "selected", required: false }] }, { type: i0.Output, args: ["selectedChange"] }], disabled: [{ type: i0.Input, args: [{ isSignal: true, alias: "disabled", required: false }] }], selectionChanged: [{ type: i0.Output, args: ["selectionChanged"] }], tabIndex: [{
|
|
1706
1809
|
type: HostBinding,
|
|
@@ -1713,19 +1816,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.0", ngImpor
|
|
|
1713
1816
|
class StrataSegmentedControlComponent {
|
|
1714
1817
|
elementRef = inject(ElementRef);
|
|
1715
1818
|
destroyRef = inject(DestroyRef);
|
|
1716
|
-
fullWidth = input(false, { ...(ngDevMode ? { debugName: "fullWidth" } : {}), transform: booleanAttribute });
|
|
1717
|
-
segmentItems = contentChildren(StrataSegmentedControlItemComponent,
|
|
1718
|
-
|
|
1719
|
-
|
|
1720
|
-
|
|
1721
|
-
|
|
1722
|
-
|
|
1723
|
-
|
|
1724
|
-
|
|
1725
|
-
|
|
1726
|
-
|
|
1727
|
-
|
|
1728
|
-
|
|
1819
|
+
fullWidth = input(false, { ...(ngDevMode ? { debugName: "fullWidth" } : /* istanbul ignore next */ {}), transform: booleanAttribute });
|
|
1820
|
+
segmentItems = contentChildren(StrataSegmentedControlItemComponent, /* @ts-ignore */
|
|
1821
|
+
...(ngDevMode ? [{ debugName: "segmentItems" }] : /* istanbul ignore next */ []));
|
|
1822
|
+
segmentItemsRefs = contentChildren(StrataSegmentedControlItemComponent, { ...(ngDevMode ? { debugName: "segmentItemsRefs" } : /* istanbul ignore next */ {}), read: ElementRef });
|
|
1823
|
+
selectedItem = signal(null, /* @ts-ignore */
|
|
1824
|
+
...(ngDevMode ? [{ debugName: "selectedItem" }] : /* istanbul ignore next */ []));
|
|
1825
|
+
selectedIndex = signal(0, /* @ts-ignore */
|
|
1826
|
+
...(ngDevMode ? [{ debugName: "selectedIndex" }] : /* istanbul ignore next */ []));
|
|
1827
|
+
offsets = signal([], /* @ts-ignore */
|
|
1828
|
+
...(ngDevMode ? [{ debugName: "offsets" }] : /* istanbul ignore next */ []));
|
|
1829
|
+
itemWidths = signal([], /* @ts-ignore */
|
|
1830
|
+
...(ngDevMode ? [{ debugName: "itemWidths" }] : /* istanbul ignore next */ []));
|
|
1831
|
+
tops = signal([], /* @ts-ignore */
|
|
1832
|
+
...(ngDevMode ? [{ debugName: "tops" }] : /* istanbul ignore next */ []));
|
|
1833
|
+
heights = signal([], /* @ts-ignore */
|
|
1834
|
+
...(ngDevMode ? [{ debugName: "heights" }] : /* istanbul ignore next */ []));
|
|
1835
|
+
offset = computed(() => this.offsets()[this.selectedIndex()] ?? 0, /* @ts-ignore */
|
|
1836
|
+
...(ngDevMode ? [{ debugName: "offset" }] : /* istanbul ignore next */ []));
|
|
1837
|
+
indicatorWidth = computed(() => this.itemWidths()[this.selectedIndex()] ?? 0, /* @ts-ignore */
|
|
1838
|
+
...(ngDevMode ? [{ debugName: "indicatorWidth" }] : /* istanbul ignore next */ []));
|
|
1839
|
+
indicatorTop = computed(() => this.tops()[this.selectedIndex()] ?? 0, /* @ts-ignore */
|
|
1840
|
+
...(ngDevMode ? [{ debugName: "indicatorTop" }] : /* istanbul ignore next */ []));
|
|
1841
|
+
indicatorHeight = computed(() => this.heights()[this.selectedIndex()] ?? 0, /* @ts-ignore */
|
|
1842
|
+
...(ngDevMode ? [{ debugName: "indicatorHeight" }] : /* istanbul ignore next */ []));
|
|
1729
1843
|
ngAfterViewInit() {
|
|
1730
1844
|
if (this.segmentItems().length === 0) {
|
|
1731
1845
|
return;
|
|
@@ -1776,46 +1890,48 @@ class StrataSegmentedControlComponent {
|
|
|
1776
1890
|
this.tops.set(tops);
|
|
1777
1891
|
this.heights.set(heights);
|
|
1778
1892
|
}
|
|
1779
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1780
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "
|
|
1893
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataSegmentedControlComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1894
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "22.0.1", type: StrataSegmentedControlComponent, isStandalone: true, selector: "st-segmented-control", inputs: { fullWidth: { classPropertyName: "fullWidth", publicName: "fullWidth", isSignal: true, isRequired: false, transformFunction: null } }, host: { properties: { "class.st-segmented-control-full-width": "fullWidth()" } }, queries: [{ propertyName: "segmentItems", predicate: StrataSegmentedControlItemComponent, isSignal: true }, { propertyName: "segmentItemsRefs", predicate: StrataSegmentedControlItemComponent, read: ElementRef, isSignal: true }], ngImport: i0, template: "<ng-content select=\"st-segmented-control-item\"></ng-content>\n<div class=\"selection-item\" id=\"selection-indicator\" \n [style.left]=\"this.offset() + 'px'\"\n [style.top]=\"this.indicatorTop() + 'px'\"\n [style.width]=\"this.indicatorWidth() + 'px'\"\n [style.height]=\"this.indicatorHeight() + 'px'\">\n {{ this.selectedItem()?.text() }}\n</div>\n" });
|
|
1781
1895
|
}
|
|
1782
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1896
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataSegmentedControlComponent, decorators: [{
|
|
1783
1897
|
type: Component,
|
|
1784
1898
|
args: [{ selector: 'st-segmented-control', imports: [], host: {
|
|
1785
|
-
'[class.st-segmented-control-full-width]': 'fullWidth()'
|
|
1899
|
+
'[class.st-segmented-control-full-width]': 'fullWidth()'
|
|
1786
1900
|
}, template: "<ng-content select=\"st-segmented-control-item\"></ng-content>\n<div class=\"selection-item\" id=\"selection-indicator\" \n [style.left]=\"this.offset() + 'px'\"\n [style.top]=\"this.indicatorTop() + 'px'\"\n [style.width]=\"this.indicatorWidth() + 'px'\"\n [style.height]=\"this.indicatorHeight() + 'px'\">\n {{ this.selectedItem()?.text() }}\n</div>\n" }]
|
|
1787
1901
|
}], ctorParameters: () => [], propDecorators: { fullWidth: [{ type: i0.Input, args: [{ isSignal: true, alias: "fullWidth", required: false }] }], segmentItems: [{ type: i0.ContentChildren, args: [i0.forwardRef(() => StrataSegmentedControlItemComponent), { isSignal: true }] }], segmentItemsRefs: [{ type: i0.ContentChildren, args: [i0.forwardRef(() => StrataSegmentedControlItemComponent), { ...{
|
|
1788
|
-
read: ElementRef
|
|
1902
|
+
read: ElementRef
|
|
1789
1903
|
}, isSignal: true }] }] } });
|
|
1790
1904
|
|
|
1791
1905
|
class StrataSidemenuComponent {
|
|
1792
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1793
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1906
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataSidemenuComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1907
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.1", type: StrataSidemenuComponent, isStandalone: true, selector: "st-sidemenu", ngImport: i0, template: "<div class=\"st-sidemenu-header\">\n <ng-content select=\"[st-sidemenu-header]\"></ng-content>\n</div>\n<div class=\"st-sidemenu-content\">\n <ng-content></ng-content>\n</div>\n<div class=\"st-sidemenu-footer\">\n <ng-content select=\"[st-sidemenu-footer]\"></ng-content>\n</div>\n", styles: [":host{--st-sidemenu-min-width: 200px;--st-sidemenu-padding: var(--st-size-xs, 12px);--st-sidemenu-header-spacing: var(--st-size-sm, 16px);--st-sidemenu-footer-spacing: var(--st-size-sm, 16px);--st-sidemenu-bg: var(--st-color-bg-default);display:flex;flex-direction:column;height:100%;width:max-content;min-width:var(--st-sidemenu-min-width);box-sizing:border-box;background-color:var(--st-sidemenu-bg)}:host .st-sidemenu-header{display:flex;flex-direction:column;margin-bottom:var(--st-sidemenu-header-spacing)}:host .st-sidemenu-header:empty{display:none;margin-bottom:0}:host .st-sidemenu-content{display:flex;flex-direction:column;flex:1;overflow-y:auto;padding:var(--st-sidemenu-padding)}:host .st-sidemenu-footer{display:flex;flex-direction:column;margin-top:auto;padding-top:var(--st-sidemenu-footer-spacing)}:host .st-sidemenu-footer:empty{display:none;padding-top:0}\n"] });
|
|
1794
1908
|
}
|
|
1795
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1909
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataSidemenuComponent, decorators: [{
|
|
1796
1910
|
type: Component,
|
|
1797
1911
|
args: [{ selector: 'st-sidemenu', template: "<div class=\"st-sidemenu-header\">\n <ng-content select=\"[st-sidemenu-header]\"></ng-content>\n</div>\n<div class=\"st-sidemenu-content\">\n <ng-content></ng-content>\n</div>\n<div class=\"st-sidemenu-footer\">\n <ng-content select=\"[st-sidemenu-footer]\"></ng-content>\n</div>\n", styles: [":host{--st-sidemenu-min-width: 200px;--st-sidemenu-padding: var(--st-size-xs, 12px);--st-sidemenu-header-spacing: var(--st-size-sm, 16px);--st-sidemenu-footer-spacing: var(--st-size-sm, 16px);--st-sidemenu-bg: var(--st-color-bg-default);display:flex;flex-direction:column;height:100%;width:max-content;min-width:var(--st-sidemenu-min-width);box-sizing:border-box;background-color:var(--st-sidemenu-bg)}:host .st-sidemenu-header{display:flex;flex-direction:column;margin-bottom:var(--st-sidemenu-header-spacing)}:host .st-sidemenu-header:empty{display:none;margin-bottom:0}:host .st-sidemenu-content{display:flex;flex-direction:column;flex:1;overflow-y:auto;padding:var(--st-sidemenu-padding)}:host .st-sidemenu-footer{display:flex;flex-direction:column;margin-top:auto;padding-top:var(--st-sidemenu-footer-spacing)}:host .st-sidemenu-footer:empty{display:none;padding-top:0}\n"] }]
|
|
1798
1912
|
}] });
|
|
1799
1913
|
|
|
1800
1914
|
class StrataSidemenuSectionComponent {
|
|
1801
|
-
label = input(
|
|
1802
|
-
|
|
1803
|
-
static
|
|
1915
|
+
label = input(/* @ts-ignore */
|
|
1916
|
+
...(ngDevMode ? [undefined, { debugName: "label" }] : /* istanbul ignore next */ []));
|
|
1917
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataSidemenuSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1918
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.1", type: StrataSidemenuSectionComponent, isStandalone: true, selector: "st-sidemenu-section", inputs: { label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: "@if (label()) {\n<p class=\"st-sidemenu-section-header st-label\">{{ label() }}</p>\n}\n<div class=\"st-sidemenu-section-content\">\n <ng-content></ng-content>\n</div>", styles: [":host{--st-sidemenu-section-spacing: var(--st-size-sm, 16px);--st-sidemenu-section-header-padding: var(--st-size-xxs, 8px) var(--st-size-xs, 12px);--st-sidemenu-section-header-spacing: var(--st-size-xxxs, 4px);--st-sidemenu-section-gap: var(--st-size-xxxs, 4px);display:flex;flex-direction:column;width:100%;margin-block-end:var(--st-sidemenu-section-spacing)}.st-sidemenu-section-header{padding:var(--st-sidemenu-section-header-padding);margin-block-end:var(--st-sidemenu-section-header-spacing)}.st-sidemenu-section-content{display:flex;flex-direction:column;gap:var(--st-sidemenu-section-gap)}\n"] });
|
|
1804
1919
|
}
|
|
1805
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1920
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataSidemenuSectionComponent, decorators: [{
|
|
1806
1921
|
type: Component,
|
|
1807
1922
|
args: [{ selector: 'st-sidemenu-section', template: "@if (label()) {\n<p class=\"st-sidemenu-section-header st-label\">{{ label() }}</p>\n}\n<div class=\"st-sidemenu-section-content\">\n <ng-content></ng-content>\n</div>", styles: [":host{--st-sidemenu-section-spacing: var(--st-size-sm, 16px);--st-sidemenu-section-header-padding: var(--st-size-xxs, 8px) var(--st-size-xs, 12px);--st-sidemenu-section-header-spacing: var(--st-size-xxxs, 4px);--st-sidemenu-section-gap: var(--st-size-xxxs, 4px);display:flex;flex-direction:column;width:100%;margin-block-end:var(--st-sidemenu-section-spacing)}.st-sidemenu-section-header{padding:var(--st-sidemenu-section-header-padding);margin-block-end:var(--st-sidemenu-section-header-spacing)}.st-sidemenu-section-content{display:flex;flex-direction:column;gap:var(--st-sidemenu-section-gap)}\n"] }]
|
|
1808
1923
|
}], propDecorators: { label: [{ type: i0.Input, args: [{ isSignal: true, alias: "label", required: false }] }] } });
|
|
1809
1924
|
|
|
1810
1925
|
class StrataSidemenuItemDirective {
|
|
1811
|
-
active = input(false,
|
|
1926
|
+
active = input(false, /* @ts-ignore */
|
|
1927
|
+
...(ngDevMode ? [{ debugName: "active" }] : /* istanbul ignore next */ []));
|
|
1812
1928
|
elementRef = inject(ElementRef);
|
|
1813
1929
|
constructor() {
|
|
1814
1930
|
effect(() => {
|
|
1815
1931
|
if (this.active()) {
|
|
1816
1932
|
this.elementRef.nativeElement.scrollIntoView({
|
|
1817
1933
|
block: 'nearest',
|
|
1818
|
-
inline: 'nearest'
|
|
1934
|
+
inline: 'nearest'
|
|
1819
1935
|
});
|
|
1820
1936
|
}
|
|
1821
1937
|
});
|
|
@@ -1824,10 +1940,10 @@ class StrataSidemenuItemDirective {
|
|
|
1824
1940
|
get isSelected() {
|
|
1825
1941
|
return this.active();
|
|
1826
1942
|
}
|
|
1827
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1828
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "
|
|
1943
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataSidemenuItemDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
1944
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "22.0.1", type: StrataSidemenuItemDirective, isStandalone: true, selector: "[stSidemenuItem]", inputs: { active: { classPropertyName: "active", publicName: "active", isSignal: true, isRequired: false, transformFunction: null } }, host: { properties: { "class.st-sidemenu-item": "this.isSidemenuItem", "class.selected": "this.isSelected" } }, ngImport: i0 });
|
|
1829
1945
|
}
|
|
1830
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1946
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataSidemenuItemDirective, decorators: [{
|
|
1831
1947
|
type: Directive,
|
|
1832
1948
|
args: [{
|
|
1833
1949
|
selector: '[stSidemenuItem]'
|
|
@@ -1841,9 +1957,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.0", ngImpor
|
|
|
1841
1957
|
}] } });
|
|
1842
1958
|
|
|
1843
1959
|
class StrataSidemenuItemGroupComponent {
|
|
1844
|
-
label = input.required(
|
|
1845
|
-
|
|
1846
|
-
|
|
1960
|
+
label = input.required(/* @ts-ignore */
|
|
1961
|
+
...(ngDevMode ? [{ debugName: "label" }] : /* istanbul ignore next */ []));
|
|
1962
|
+
expanded = signal(false, /* @ts-ignore */
|
|
1963
|
+
...(ngDevMode ? [{ debugName: "expanded" }] : /* istanbul ignore next */ []));
|
|
1964
|
+
hasActiveChild = signal(false, /* @ts-ignore */
|
|
1965
|
+
...(ngDevMode ? [{ debugName: "hasActiveChild" }] : /* istanbul ignore next */ []));
|
|
1847
1966
|
router = inject(Router, { optional: true });
|
|
1848
1967
|
destroyRef = inject(DestroyRef);
|
|
1849
1968
|
routerLinks;
|
|
@@ -1874,10 +1993,10 @@ class StrataSidemenuItemGroupComponent {
|
|
|
1874
1993
|
this.expanded.set(true);
|
|
1875
1994
|
}
|
|
1876
1995
|
}
|
|
1877
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1878
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "
|
|
1996
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataSidemenuItemGroupComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1997
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.1", type: StrataSidemenuItemGroupComponent, isStandalone: true, selector: "st-sidemenu-item-group", inputs: { label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: true, transformFunction: null } }, queries: [{ propertyName: "routerLinks", predicate: RouterLinkActive, descendants: true }], ngImport: i0, template: "<button stSidemenuItem type=\"button\" [active]=\"hasActiveChild()\" (click)=\"toggle()\">\n <span class=\"st-sidemenu-item-group-label\">{{ label() }}</span>\n <st-icon name=\"arrow-down\" size=\"sm\" class=\"st-sidemenu-item-group-icon\" [class.expanded]=\"expanded()\"></st-icon>\n</button>\n\n<div class=\"st-sidemenu-item-group-content\" [hidden]=\"!expanded()\">\n <ng-content></ng-content>\n</div>\n", styles: [":host{--st-sidemenu-item-group-gap: var(--st-size-xxxs, 4px);--st-sidemenu-item-group-indent: var(--st-size-sm, 16px);--st-sidemenu-item-group-spacing: var(--st-size-xxxs, 4px);display:flex;flex-direction:column;width:100%}.st-sidemenu-item-group-icon{margin-left:auto;color:var(--st-color-text-secondary);transition:transform .2s ease}.st-sidemenu-item-group-icon.expanded{transform:rotate(180deg)}.st-sidemenu-item-group-content{display:flex;flex-direction:column;gap:var(--st-sidemenu-item-group-gap);padding-left:var(--st-sidemenu-item-group-indent);margin-top:var(--st-sidemenu-item-group-spacing)}.st-sidemenu-item-group-content[hidden]{display:none!important}\n"], dependencies: [{ kind: "directive", type: StrataSidemenuItemDirective, selector: "[stSidemenuItem]", inputs: ["active"] }, { kind: "component", type: StrataIconComponent, selector: "st-icon", inputs: ["name", "size"], outputs: ["sizeChange"] }] });
|
|
1879
1998
|
}
|
|
1880
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1999
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataSidemenuItemGroupComponent, decorators: [{
|
|
1881
2000
|
type: Component,
|
|
1882
2001
|
args: [{ selector: 'st-sidemenu-item-group', imports: [StrataSidemenuItemDirective, StrataIconComponent], template: "<button stSidemenuItem type=\"button\" [active]=\"hasActiveChild()\" (click)=\"toggle()\">\n <span class=\"st-sidemenu-item-group-label\">{{ label() }}</span>\n <st-icon name=\"arrow-down\" size=\"sm\" class=\"st-sidemenu-item-group-icon\" [class.expanded]=\"expanded()\"></st-icon>\n</button>\n\n<div class=\"st-sidemenu-item-group-content\" [hidden]=\"!expanded()\">\n <ng-content></ng-content>\n</div>\n", styles: [":host{--st-sidemenu-item-group-gap: var(--st-size-xxxs, 4px);--st-sidemenu-item-group-indent: var(--st-size-sm, 16px);--st-sidemenu-item-group-spacing: var(--st-size-xxxs, 4px);display:flex;flex-direction:column;width:100%}.st-sidemenu-item-group-icon{margin-left:auto;color:var(--st-color-text-secondary);transition:transform .2s ease}.st-sidemenu-item-group-icon.expanded{transform:rotate(180deg)}.st-sidemenu-item-group-content{display:flex;flex-direction:column;gap:var(--st-sidemenu-item-group-gap);padding-left:var(--st-sidemenu-item-group-indent);margin-top:var(--st-sidemenu-item-group-spacing)}.st-sidemenu-item-group-content[hidden]{display:none!important}\n"] }]
|
|
1883
2002
|
}], propDecorators: { label: [{ type: i0.Input, args: [{ isSignal: true, alias: "label", required: true }] }], routerLinks: [{
|
|
@@ -1888,19 +2007,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.0", ngImpor
|
|
|
1888
2007
|
class StrataSliderComponent {
|
|
1889
2008
|
wrapper = viewChild.required('wrapper');
|
|
1890
2009
|
resizeObserver;
|
|
1891
|
-
value = model(
|
|
1892
|
-
|
|
1893
|
-
|
|
1894
|
-
|
|
1895
|
-
|
|
2010
|
+
value = model(/* @ts-ignore */
|
|
2011
|
+
...(ngDevMode ? [undefined, { debugName: "value" }] : /* istanbul ignore next */ []));
|
|
2012
|
+
minimum = input.required(/* @ts-ignore */
|
|
2013
|
+
...(ngDevMode ? [{ debugName: "minimum" }] : /* istanbul ignore next */ []));
|
|
2014
|
+
maximum = input.required(/* @ts-ignore */
|
|
2015
|
+
...(ngDevMode ? [{ debugName: "maximum" }] : /* istanbul ignore next */ []));
|
|
2016
|
+
step = input(/* @ts-ignore */
|
|
2017
|
+
...(ngDevMode ? [undefined, { debugName: "step" }] : /* istanbul ignore next */ []));
|
|
2018
|
+
computedStep = computed(() => this.step() === 'none' || this.step() === undefined ? 'any' : this.step(), /* @ts-ignore */
|
|
2019
|
+
...(ngDevMode ? [{ debugName: "computedStep" }] : /* istanbul ignore next */ []));
|
|
1896
2020
|
steps = computed(() => {
|
|
1897
2021
|
const step = this.computedStep();
|
|
1898
2022
|
if (step === 'any' || step === undefined) {
|
|
1899
2023
|
return 0;
|
|
1900
2024
|
}
|
|
1901
2025
|
return Math.floor((this.maximum() - this.minimum()) / step) + 1;
|
|
1902
|
-
},
|
|
1903
|
-
|
|
2026
|
+
}, /* @ts-ignore */
|
|
2027
|
+
...(ngDevMode ? [{ debugName: "steps" }] : /* istanbul ignore next */ []));
|
|
2028
|
+
isStepped = computed(() => this.computedStep() !== 'any' && this.computedStep() !== undefined && this.computedStep() !== 0, /* @ts-ignore */
|
|
2029
|
+
...(ngDevMode ? [{ debugName: "isStepped" }] : /* istanbul ignore next */ []));
|
|
1904
2030
|
ngAfterViewInit() {
|
|
1905
2031
|
this.resizeObserver = new ResizeObserver(() => {
|
|
1906
2032
|
this.updateTickMath();
|
|
@@ -1930,23 +2056,24 @@ class StrataSliderComponent {
|
|
|
1930
2056
|
const size = styles.getPropertyValue('--st-slider-thumb-size');
|
|
1931
2057
|
return parseFloat(size);
|
|
1932
2058
|
}
|
|
1933
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1934
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "
|
|
2059
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataSliderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2060
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "22.0.1", type: StrataSliderComponent, isStandalone: true, selector: "st-slider", inputs: { value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: false, transformFunction: null }, minimum: { classPropertyName: "minimum", publicName: "minimum", isSignal: true, isRequired: true, transformFunction: null }, maximum: { classPropertyName: "maximum", publicName: "maximum", isSignal: true, isRequired: true, transformFunction: null }, step: { classPropertyName: "step", publicName: "step", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { value: "valueChange" }, viewQueries: [{ propertyName: "wrapper", first: true, predicate: ["wrapper"], descendants: true, isSignal: true }], ngImport: i0, template: "<div\n #wrapper\n class=\"range-wrapper\"\n [style.--steps]=\"steps()\"\n [class.stepped]=\"isStepped()\"\n>\n <input\n type=\"range\"\n [(ngModel)]=\"value\"\n [min]=\"minimum()\"\n [max]=\"maximum()\"\n [step]=\"computedStep()\"\n />\n</div>\n", dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.DefaultValueAccessor, selector: "input:not([type=checkbox]):not([ngNoCva])[formControlName],textarea:not([ngNoCva])[formControlName],input:not([type=checkbox]):not([ngNoCva])[formControl],textarea:not([ngNoCva])[formControl],input:not([type=checkbox]):not([ngNoCva])[ngModel],textarea:not([ngNoCva])[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1$1.RangeValueAccessor, selector: "input[type=range]:not([ngNoCva])[formControlName],input[type=range]:not([ngNoCva])[formControl],input[type=range]:not([ngNoCva])[ngModel]" }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }] });
|
|
1935
2061
|
}
|
|
1936
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2062
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataSliderComponent, decorators: [{
|
|
1937
2063
|
type: Component,
|
|
1938
2064
|
args: [{ selector: 'st-slider', imports: [FormsModule], template: "<div\n #wrapper\n class=\"range-wrapper\"\n [style.--steps]=\"steps()\"\n [class.stepped]=\"isStepped()\"\n>\n <input\n type=\"range\"\n [(ngModel)]=\"value\"\n [min]=\"minimum()\"\n [max]=\"maximum()\"\n [step]=\"computedStep()\"\n />\n</div>\n" }]
|
|
1939
2065
|
}], propDecorators: { wrapper: [{ type: i0.ViewChild, args: ['wrapper', { isSignal: true }] }], value: [{ type: i0.Input, args: [{ isSignal: true, alias: "value", required: false }] }, { type: i0.Output, args: ["valueChange"] }], minimum: [{ type: i0.Input, args: [{ isSignal: true, alias: "minimum", required: true }] }], maximum: [{ type: i0.Input, args: [{ isSignal: true, alias: "maximum", required: true }] }], step: [{ type: i0.Input, args: [{ isSignal: true, alias: "step", required: false }] }] } });
|
|
1940
2066
|
|
|
1941
2067
|
class StrataSpinnerComponent {
|
|
1942
|
-
size = input('md',
|
|
2068
|
+
size = input('md', /* @ts-ignore */
|
|
2069
|
+
...(ngDevMode ? [{ debugName: "size" }] : /* istanbul ignore next */ []));
|
|
1943
2070
|
get cssClasses() {
|
|
1944
2071
|
return [this.size()];
|
|
1945
2072
|
}
|
|
1946
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1947
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "
|
|
2073
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataSpinnerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2074
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.1", type: StrataSpinnerComponent, isStandalone: true, selector: "st-spinner", inputs: { size: { classPropertyName: "size", publicName: "size", isSignal: true, isRequired: false, transformFunction: null } }, host: { properties: { "class": "this.cssClasses" } }, ngImport: i0, template: "<span class=\"st-spinner\"></span>\n" });
|
|
1948
2075
|
}
|
|
1949
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2076
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataSpinnerComponent, decorators: [{
|
|
1950
2077
|
type: Component,
|
|
1951
2078
|
args: [{ selector: 'st-spinner', imports: [], template: "<span class=\"st-spinner\"></span>\n" }]
|
|
1952
2079
|
}], propDecorators: { size: [{ type: i0.Input, args: [{ isSignal: true, alias: "size", required: false }] }], cssClasses: [{
|
|
@@ -1959,15 +2086,18 @@ class StrataTabItemComponent {
|
|
|
1959
2086
|
* The text label for the tab.
|
|
1960
2087
|
* Can also be provided via content projection.
|
|
1961
2088
|
*/
|
|
1962
|
-
text = input(
|
|
2089
|
+
text = input(/* @ts-ignore */
|
|
2090
|
+
...(ngDevMode ? [undefined, { debugName: "text" }] : /* istanbul ignore next */ []));
|
|
1963
2091
|
/**
|
|
1964
2092
|
* Whether the tab is currently selected.
|
|
1965
2093
|
*/
|
|
1966
|
-
selected = model(false,
|
|
2094
|
+
selected = model(false, /* @ts-ignore */
|
|
2095
|
+
...(ngDevMode ? [{ debugName: "selected" }] : /* istanbul ignore next */ []));
|
|
1967
2096
|
/**
|
|
1968
2097
|
* Whether the tab is disabled.
|
|
1969
2098
|
*/
|
|
1970
|
-
disabled = input(false,
|
|
2099
|
+
disabled = input(false, /* @ts-ignore */
|
|
2100
|
+
...(ngDevMode ? [{ debugName: "disabled" }] : /* istanbul ignore next */ []));
|
|
1971
2101
|
/**
|
|
1972
2102
|
* Emitted when the tab is clicked.
|
|
1973
2103
|
*/
|
|
@@ -1994,14 +2124,14 @@ class StrataTabItemComponent {
|
|
|
1994
2124
|
this.selected.set(true);
|
|
1995
2125
|
this.selectionChanged.emit();
|
|
1996
2126
|
}
|
|
1997
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1998
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "
|
|
2127
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataTabItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2128
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.1", type: StrataTabItemComponent, isStandalone: true, selector: "st-tab-item", inputs: { text: { classPropertyName: "text", publicName: "text", isSignal: true, isRequired: false, transformFunction: null }, selected: { classPropertyName: "selected", publicName: "selected", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { selected: "selectedChange", selectionChanged: "selectionChanged" }, host: { attributes: { "role": "tab" }, listeners: { "click": "onClick()" }, properties: { "attr.aria-selected": "this.isSelected", "attr.aria-disabled": "this.isDisabled", "attr.tabindex": "this.tabIndex", "class.active": "this.activeClass", "class.disabled": "this.disabledClass" } }, ngImport: i0, template: "@if (text()) {\n {{ text() }}\n} @else {\n <ng-content></ng-content>\n}\n" });
|
|
1999
2129
|
}
|
|
2000
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2130
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataTabItemComponent, decorators: [{
|
|
2001
2131
|
type: Component,
|
|
2002
2132
|
args: [{ selector: 'st-tab-item', imports: [], host: {
|
|
2003
2133
|
'role': 'tab',
|
|
2004
|
-
'(click)': 'onClick()'
|
|
2134
|
+
'(click)': 'onClick()'
|
|
2005
2135
|
}, template: "@if (text()) {\n {{ text() }}\n} @else {\n <ng-content></ng-content>\n}\n" }]
|
|
2006
2136
|
}], propDecorators: { text: [{ type: i0.Input, args: [{ isSignal: true, alias: "text", required: false }] }], selected: [{ type: i0.Input, args: [{ isSignal: true, alias: "selected", required: false }] }, { type: i0.Output, args: ["selectedChange"] }], disabled: [{ type: i0.Input, args: [{ isSignal: true, alias: "disabled", required: false }] }], selectionChanged: [{ type: i0.Output, args: ["selectionChanged"] }], isSelected: [{
|
|
2007
2137
|
type: HostBinding,
|
|
@@ -2021,12 +2151,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.0", ngImpor
|
|
|
2021
2151
|
}] } });
|
|
2022
2152
|
|
|
2023
2153
|
class StrataTabsComponent {
|
|
2024
|
-
tabItems = contentChildren(StrataTabItemComponent, { ...(ngDevMode ? { debugName: "tabItems" } : {}), descendants: true });
|
|
2025
|
-
tabItemsRefs = contentChildren(StrataTabItemComponent, { ...(ngDevMode ? { debugName: "tabItemsRefs" } : {}), descendants: true,
|
|
2154
|
+
tabItems = contentChildren(StrataTabItemComponent, { ...(ngDevMode ? { debugName: "tabItems" } : /* istanbul ignore next */ {}), descendants: true });
|
|
2155
|
+
tabItemsRefs = contentChildren(StrataTabItemComponent, { ...(ngDevMode ? { debugName: "tabItemsRefs" } : /* istanbul ignore next */ {}), descendants: true,
|
|
2026
2156
|
read: ElementRef });
|
|
2027
|
-
indicator = viewChild('indicator',
|
|
2028
|
-
|
|
2029
|
-
|
|
2157
|
+
indicator = viewChild('indicator', /* @ts-ignore */
|
|
2158
|
+
...(ngDevMode ? [{ debugName: "indicator" }] : /* istanbul ignore next */ []));
|
|
2159
|
+
selectedTab = signal(null, /* @ts-ignore */
|
|
2160
|
+
...(ngDevMode ? [{ debugName: "selectedTab" }] : /* istanbul ignore next */ []));
|
|
2161
|
+
selectedIndex = signal(0, /* @ts-ignore */
|
|
2162
|
+
...(ngDevMode ? [{ debugName: "selectedIndex" }] : /* istanbul ignore next */ []));
|
|
2030
2163
|
resizeObserver;
|
|
2031
2164
|
constructor() {
|
|
2032
2165
|
// Coordinate child selection
|
|
@@ -2085,48 +2218,37 @@ class StrataTabsComponent {
|
|
|
2085
2218
|
this.selectedTab.set(tab);
|
|
2086
2219
|
this.selectedIndex.set(index);
|
|
2087
2220
|
}
|
|
2088
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2089
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "
|
|
2221
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataTabsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2222
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "22.0.1", type: StrataTabsComponent, isStandalone: true, selector: "st-tabs", host: { classAttribute: "st-tabs-host" }, queries: [{ propertyName: "tabItems", predicate: StrataTabItemComponent, descendants: true, isSignal: true }, { propertyName: "tabItemsRefs", predicate: StrataTabItemComponent, descendants: true, read: ElementRef, isSignal: true }], viewQueries: [{ propertyName: "indicator", first: true, predicate: ["indicator"], descendants: true, isSignal: true }], ngImport: i0, template: "<div class=\"tabs-container\" role=\"tablist\">\n <ng-content></ng-content>\n <div #indicator class=\"selection-indicator\"></div>\n</div>\n" });
|
|
2090
2223
|
}
|
|
2091
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2224
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataTabsComponent, decorators: [{
|
|
2092
2225
|
type: Component,
|
|
2093
2226
|
args: [{ selector: 'st-tabs', imports: [], host: {
|
|
2094
|
-
'class': 'st-tabs-host'
|
|
2227
|
+
'class': 'st-tabs-host'
|
|
2095
2228
|
}, template: "<div class=\"tabs-container\" role=\"tablist\">\n <ng-content></ng-content>\n <div #indicator class=\"selection-indicator\"></div>\n</div>\n" }]
|
|
2096
2229
|
}], ctorParameters: () => [], propDecorators: { tabItems: [{ type: i0.ContentChildren, args: [i0.forwardRef(() => StrataTabItemComponent), { ...{ descendants: true }, isSignal: true }] }], tabItemsRefs: [{ type: i0.ContentChildren, args: [i0.forwardRef(() => StrataTabItemComponent), { ...{
|
|
2097
2230
|
descendants: true,
|
|
2098
|
-
read: ElementRef
|
|
2231
|
+
read: ElementRef
|
|
2099
2232
|
}, isSignal: true }] }], indicator: [{ type: i0.ViewChild, args: ['indicator', { isSignal: true }] }] } });
|
|
2100
2233
|
|
|
2101
|
-
class
|
|
2102
|
-
|
|
2103
|
-
|
|
2234
|
+
class ModalService {
|
|
2235
|
+
_modals = signal([], /* @ts-ignore */
|
|
2236
|
+
...(ngDevMode ? [{ debugName: "_modals" }] : /* istanbul ignore next */ []));
|
|
2237
|
+
modals = this._modals.asReadonly();
|
|
2238
|
+
document = inject(DOCUMENT$1);
|
|
2104
2239
|
constructor() {
|
|
2105
2240
|
effect(() => {
|
|
2106
|
-
const
|
|
2107
|
-
|
|
2108
|
-
|
|
2109
|
-
|
|
2110
|
-
if (cls.startsWith('st-theme-')) {
|
|
2111
|
-
el.classList.remove(cls);
|
|
2241
|
+
const body = this.document?.body;
|
|
2242
|
+
if (body) {
|
|
2243
|
+
if (this.modals().length > 0) {
|
|
2244
|
+
body.classList.add('st-scroll-lock');
|
|
2112
2245
|
}
|
|
2113
|
-
|
|
2114
|
-
|
|
2246
|
+
else {
|
|
2247
|
+
body.classList.remove('st-scroll-lock');
|
|
2248
|
+
}
|
|
2249
|
+
}
|
|
2115
2250
|
});
|
|
2116
2251
|
}
|
|
2117
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.0", ngImport: i0, type: StrataThemeDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
2118
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "21.2.0", type: StrataThemeDirective, isStandalone: true, selector: "[stTheme]", inputs: { stTheme: { classPropertyName: "stTheme", publicName: "stTheme", isSignal: true, isRequired: true, transformFunction: null } }, ngImport: i0 });
|
|
2119
|
-
}
|
|
2120
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.0", ngImport: i0, type: StrataThemeDirective, decorators: [{
|
|
2121
|
-
type: Directive,
|
|
2122
|
-
args: [{
|
|
2123
|
-
selector: '[stTheme]',
|
|
2124
|
-
}]
|
|
2125
|
-
}], ctorParameters: () => [], propDecorators: { stTheme: [{ type: i0.Input, args: [{ isSignal: true, alias: "stTheme", required: true }] }] } });
|
|
2126
|
-
|
|
2127
|
-
class ModalService {
|
|
2128
|
-
_modals = signal([], ...(ngDevMode ? [{ debugName: "_modals" }] : []));
|
|
2129
|
-
modals = this._modals.asReadonly();
|
|
2130
2252
|
showModal(config) {
|
|
2131
2253
|
if (!config.size) {
|
|
2132
2254
|
config.size = 'md';
|
|
@@ -2146,8 +2268,8 @@ class ModalService {
|
|
|
2146
2268
|
affirmativeButton: config.affirmativeButton,
|
|
2147
2269
|
cancelButton: config.cancelButton,
|
|
2148
2270
|
theme: config.theme,
|
|
2149
|
-
icon: config.icon
|
|
2150
|
-
}
|
|
2271
|
+
icon: config.icon
|
|
2272
|
+
}
|
|
2151
2273
|
});
|
|
2152
2274
|
}
|
|
2153
2275
|
closeCurrentModal(value) {
|
|
@@ -2173,40 +2295,71 @@ class ModalService {
|
|
|
2173
2295
|
config.onModalClosed(value);
|
|
2174
2296
|
}
|
|
2175
2297
|
}
|
|
2176
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2177
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2298
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: ModalService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2299
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: ModalService, providedIn: 'root' });
|
|
2178
2300
|
}
|
|
2179
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2301
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: ModalService, decorators: [{
|
|
2180
2302
|
type: Injectable,
|
|
2181
2303
|
args: [{
|
|
2182
|
-
providedIn: 'root'
|
|
2304
|
+
providedIn: 'root'
|
|
2183
2305
|
}]
|
|
2184
|
-
}] });
|
|
2306
|
+
}], ctorParameters: () => [] });
|
|
2307
|
+
|
|
2308
|
+
class StrataThemeDirective {
|
|
2309
|
+
element = inject(ElementRef);
|
|
2310
|
+
stTheme = input.required(/* @ts-ignore */
|
|
2311
|
+
...(ngDevMode ? [{ debugName: "stTheme" }] : /* istanbul ignore next */ []));
|
|
2312
|
+
constructor() {
|
|
2313
|
+
effect(() => {
|
|
2314
|
+
const theme = this.stTheme();
|
|
2315
|
+
const el = this.element.nativeElement;
|
|
2316
|
+
// remove previous theme classes
|
|
2317
|
+
el.classList.forEach((cls) => {
|
|
2318
|
+
if (cls.startsWith('st-theme-')) {
|
|
2319
|
+
el.classList.remove(cls);
|
|
2320
|
+
}
|
|
2321
|
+
});
|
|
2322
|
+
el.classList.add(`st-theme-${theme}`);
|
|
2323
|
+
});
|
|
2324
|
+
}
|
|
2325
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataThemeDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
2326
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "22.0.1", type: StrataThemeDirective, isStandalone: true, selector: "[stTheme]", inputs: { stTheme: { classPropertyName: "stTheme", publicName: "stTheme", isSignal: true, isRequired: true, transformFunction: null } }, ngImport: i0 });
|
|
2327
|
+
}
|
|
2328
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataThemeDirective, decorators: [{
|
|
2329
|
+
type: Directive,
|
|
2330
|
+
args: [{
|
|
2331
|
+
selector: '[stTheme]'
|
|
2332
|
+
}]
|
|
2333
|
+
}], ctorParameters: () => [], propDecorators: { stTheme: [{ type: i0.Input, args: [{ isSignal: true, alias: "stTheme", required: true }] }] } });
|
|
2185
2334
|
|
|
2186
2335
|
class StrataAlertContentComponent {
|
|
2187
|
-
modalService;
|
|
2188
|
-
title = input.required(
|
|
2189
|
-
|
|
2190
|
-
|
|
2336
|
+
modalService = inject(ModalService);
|
|
2337
|
+
title = input.required(/* @ts-ignore */
|
|
2338
|
+
...(ngDevMode ? [{ debugName: "title" }] : /* istanbul ignore next */ []));
|
|
2339
|
+
message = input(/* @ts-ignore */
|
|
2340
|
+
...(ngDevMode ? [undefined, { debugName: "message" }] : /* istanbul ignore next */ []));
|
|
2341
|
+
icon = input(undefined, /* @ts-ignore */
|
|
2342
|
+
...(ngDevMode ? [{ debugName: "icon" }] : /* istanbul ignore next */ []));
|
|
2191
2343
|
computedIcon = computed(() => {
|
|
2192
2344
|
return this.icon() ?? '';
|
|
2193
|
-
},
|
|
2194
|
-
|
|
2195
|
-
|
|
2196
|
-
|
|
2197
|
-
|
|
2198
|
-
|
|
2199
|
-
|
|
2345
|
+
}, /* @ts-ignore */
|
|
2346
|
+
...(ngDevMode ? [{ debugName: "computedIcon" }] : /* istanbul ignore next */ []));
|
|
2347
|
+
theme = input('info', /* @ts-ignore */
|
|
2348
|
+
...(ngDevMode ? [{ debugName: "theme" }] : /* istanbul ignore next */ []));
|
|
2349
|
+
affirmativeButton = input.required(/* @ts-ignore */
|
|
2350
|
+
...(ngDevMode ? [{ debugName: "affirmativeButton" }] : /* istanbul ignore next */ []));
|
|
2351
|
+
cancelButton = input(undefined, /* @ts-ignore */
|
|
2352
|
+
...(ngDevMode ? [{ debugName: "cancelButton" }] : /* istanbul ignore next */ []));
|
|
2200
2353
|
onAffirmation() {
|
|
2201
2354
|
this.modalService.closeCurrentModal(true);
|
|
2202
2355
|
}
|
|
2203
2356
|
onCancel() {
|
|
2204
2357
|
this.modalService.closeCurrentModal(false);
|
|
2205
2358
|
}
|
|
2206
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2207
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "
|
|
2359
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataAlertContentComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2360
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.1", type: StrataAlertContentComponent, isStandalone: true, selector: "st-alert-content", inputs: { title: { classPropertyName: "title", publicName: "title", isSignal: true, isRequired: true, transformFunction: null }, message: { classPropertyName: "message", publicName: "message", isSignal: true, isRequired: false, transformFunction: null }, icon: { classPropertyName: "icon", publicName: "icon", isSignal: true, isRequired: false, transformFunction: null }, theme: { classPropertyName: "theme", publicName: "theme", isSignal: true, isRequired: false, transformFunction: null }, affirmativeButton: { classPropertyName: "affirmativeButton", publicName: "affirmativeButton", isSignal: true, isRequired: true, transformFunction: null }, cancelButton: { classPropertyName: "cancelButton", publicName: "cancelButton", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: "<div class=\"alert-content\">\n @if (icon() !== undefined) {\n <st-avatar size=\"lg\" [stTheme]=\"theme()\">\n <st-icon [name]=\"computedIcon()\"></st-icon>\n </st-avatar>\n }\n\n <p class=\"alert-title\">{{ title() }}</p>\n @if (message()) {\n <p class=\"alert-message\">{{ message() }}</p>\n }\n</div>\n<st-button-group justification=\"expand\">\n @if (cancelButton()) {\n <button stButton (click)=\"onCancel()\">{{ cancelButton() }}</button>\n }\n <button stButton [stTheme]=\"theme()\" variant=\"primary\" (click)=\"onAffirmation()\">{{ affirmativeButton() }}</button>\n</st-button-group>\n", dependencies: [{ kind: "component", type: StrataAvatarComponent, selector: "st-avatar", inputs: ["text", "size"], outputs: ["sizeChange"] }, { kind: "component", type: StrataIconComponent, selector: "st-icon", inputs: ["name", "size"], outputs: ["sizeChange"] }, { kind: "directive", type: StrataThemeDirective, selector: "[stTheme]", inputs: ["stTheme"] }, { kind: "component", type: StrataButtonGroupComponent, selector: "st-button-group", inputs: ["justification"] }, { kind: "directive", type: StrataButtonDirective, selector: "[stButton]", inputs: ["variant", "size", "fullWidth"] }] });
|
|
2208
2361
|
}
|
|
2209
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2362
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataAlertContentComponent, decorators: [{
|
|
2210
2363
|
type: Component,
|
|
2211
2364
|
args: [{ selector: 'st-alert-content', imports: [
|
|
2212
2365
|
StrataAvatarComponent,
|
|
@@ -2215,23 +2368,25 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.0", ngImpor
|
|
|
2215
2368
|
StrataButtonGroupComponent,
|
|
2216
2369
|
StrataButtonDirective,
|
|
2217
2370
|
], template: "<div class=\"alert-content\">\n @if (icon() !== undefined) {\n <st-avatar size=\"lg\" [stTheme]=\"theme()\">\n <st-icon [name]=\"computedIcon()\"></st-icon>\n </st-avatar>\n }\n\n <p class=\"alert-title\">{{ title() }}</p>\n @if (message()) {\n <p class=\"alert-message\">{{ message() }}</p>\n }\n</div>\n<st-button-group justification=\"expand\">\n @if (cancelButton()) {\n <button stButton (click)=\"onCancel()\">{{ cancelButton() }}</button>\n }\n <button stButton [stTheme]=\"theme()\" variant=\"primary\" (click)=\"onAffirmation()\">{{ affirmativeButton() }}</button>\n</st-button-group>\n" }]
|
|
2218
|
-
}],
|
|
2371
|
+
}], propDecorators: { title: [{ type: i0.Input, args: [{ isSignal: true, alias: "title", required: true }] }], message: [{ type: i0.Input, args: [{ isSignal: true, alias: "message", required: false }] }], icon: [{ type: i0.Input, args: [{ isSignal: true, alias: "icon", required: false }] }], theme: [{ type: i0.Input, args: [{ isSignal: true, alias: "theme", required: false }] }], affirmativeButton: [{ type: i0.Input, args: [{ isSignal: true, alias: "affirmativeButton", required: true }] }], cancelButton: [{ type: i0.Input, args: [{ isSignal: true, alias: "cancelButton", required: false }] }] } });
|
|
2219
2372
|
|
|
2220
2373
|
class StrataModalRef {
|
|
2221
2374
|
}
|
|
2222
2375
|
|
|
2223
2376
|
class StrataModalHeaderComponent {
|
|
2224
2377
|
modalService = inject(ModalService);
|
|
2225
|
-
title = input(null,
|
|
2226
|
-
|
|
2378
|
+
title = input(null, /* @ts-ignore */
|
|
2379
|
+
...(ngDevMode ? [{ debugName: "title" }] : /* istanbul ignore next */ []));
|
|
2380
|
+
showCloseButton = input(true, /* @ts-ignore */
|
|
2381
|
+
...(ngDevMode ? [{ debugName: "showCloseButton" }] : /* istanbul ignore next */ []));
|
|
2227
2382
|
onCloseButtonClicked(event) {
|
|
2228
2383
|
this.modalService.closeCurrentModal();
|
|
2229
2384
|
event.stopPropagation();
|
|
2230
2385
|
}
|
|
2231
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2232
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "
|
|
2386
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataModalHeaderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2387
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.1", type: StrataModalHeaderComponent, isStandalone: true, selector: "st-modal-header", inputs: { title: { classPropertyName: "title", publicName: "title", isSignal: true, isRequired: false, transformFunction: null }, showCloseButton: { classPropertyName: "showCloseButton", publicName: "showCloseButton", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: "@if (title()) {\n<span class=\"st-body-l-bold\">{{ title() }}</span>\n}\n@if (showCloseButton()) {\n<button stButton (click)=\"onCloseButtonClicked($event)\" variant=\"ghost\">\n <st-icon name=\"close\" size=\"sm\"></st-icon>\n</button>\n}", dependencies: [{ kind: "directive", type: StrataButtonDirective, selector: "[stButton]", inputs: ["variant", "size", "fullWidth"] }, { kind: "component", type: StrataIconComponent, selector: "st-icon", inputs: ["name", "size"], outputs: ["sizeChange"] }] });
|
|
2233
2388
|
}
|
|
2234
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2389
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataModalHeaderComponent, decorators: [{
|
|
2235
2390
|
type: Component,
|
|
2236
2391
|
args: [{ selector: 'st-modal-header', imports: [StrataButtonDirective, StrataIconComponent], template: "@if (title()) {\n<span class=\"st-body-l-bold\">{{ title() }}</span>\n}\n@if (showCloseButton()) {\n<button stButton (click)=\"onCloseButtonClicked($event)\" variant=\"ghost\">\n <st-icon name=\"close\" size=\"sm\"></st-icon>\n</button>\n}" }]
|
|
2237
2392
|
}], propDecorators: { title: [{ type: i0.Input, args: [{ isSignal: true, alias: "title", required: false }] }], showCloseButton: [{ type: i0.Input, args: [{ isSignal: true, alias: "showCloseButton", required: false }] }] } });
|
|
@@ -2240,10 +2395,12 @@ class StrataModalComponent {
|
|
|
2240
2395
|
modalService = inject(ModalService);
|
|
2241
2396
|
injector = inject(Injector);
|
|
2242
2397
|
modalContents = viewChild.required('modalBody', {
|
|
2243
|
-
read: ViewContainerRef
|
|
2398
|
+
read: ViewContainerRef
|
|
2244
2399
|
});
|
|
2245
|
-
configuration = input.required(
|
|
2246
|
-
|
|
2400
|
+
configuration = input.required(/* @ts-ignore */
|
|
2401
|
+
...(ngDevMode ? [{ debugName: "configuration" }] : /* istanbul ignore next */ []));
|
|
2402
|
+
size = model('md', /* @ts-ignore */
|
|
2403
|
+
...(ngDevMode ? [{ debugName: "size" }] : /* istanbul ignore next */ []));
|
|
2247
2404
|
get sizeClass() {
|
|
2248
2405
|
return `st-modal-size-${this.size()}`;
|
|
2249
2406
|
}
|
|
@@ -2252,14 +2409,14 @@ class StrataModalComponent {
|
|
|
2252
2409
|
this.size.set('md');
|
|
2253
2410
|
}
|
|
2254
2411
|
const modalRef = {
|
|
2255
|
-
close: (value) => this.modalService.close(this.configuration(), value)
|
|
2412
|
+
close: (value) => this.modalService.close(this.configuration(), value)
|
|
2256
2413
|
};
|
|
2257
2414
|
const customInjector = Injector.create({
|
|
2258
2415
|
providers: [{ provide: StrataModalRef, useValue: modalRef }],
|
|
2259
|
-
parent: this.injector
|
|
2416
|
+
parent: this.injector
|
|
2260
2417
|
});
|
|
2261
2418
|
const injectedComponent = this.modalContents().createComponent(this.configuration().component, {
|
|
2262
|
-
injector: customInjector
|
|
2419
|
+
injector: customInjector
|
|
2263
2420
|
});
|
|
2264
2421
|
if (this.configuration().inputs) {
|
|
2265
2422
|
this.setInputsOnInjectedComponent(injectedComponent, this.configuration().inputs);
|
|
@@ -2273,24 +2430,21 @@ class StrataModalComponent {
|
|
|
2273
2430
|
onCardClick(event) {
|
|
2274
2431
|
event.stopPropagation();
|
|
2275
2432
|
}
|
|
2276
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2277
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "
|
|
2433
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataModalComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2434
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.1", type: StrataModalComponent, isStandalone: true, selector: "st-modal", inputs: { configuration: { classPropertyName: "configuration", publicName: "configuration", isSignal: true, isRequired: true, transformFunction: null }, size: { classPropertyName: "size", publicName: "size", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { size: "sizeChange" }, host: { properties: { "class": "this.sizeClass" } }, viewQueries: [{ propertyName: "modalContents", first: true, predicate: ["modalBody"], descendants: true, read: ViewContainerRef, isSignal: true }], ngImport: i0, template: "@if (configuration().title || !configuration().hideCloseButton) {\n <st-modal-header\n [title]=\"configuration().title\"\n [showCloseButton]=\"configuration().hideCloseButton === true ? false : true\"\n (click)=\"onCardClick($event)\"></st-modal-header>\n}\n\n<div class=\"modal-content\">\n <ng-template #modalBody></ng-template>\n</div>\n", dependencies: [{ kind: "component", type: StrataModalHeaderComponent, selector: "st-modal-header", inputs: ["title", "showCloseButton"] }] });
|
|
2278
2435
|
}
|
|
2279
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2436
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataModalComponent, decorators: [{
|
|
2280
2437
|
type: Component,
|
|
2281
2438
|
args: [{ selector: 'st-modal', imports: [StrataModalHeaderComponent], template: "@if (configuration().title || !configuration().hideCloseButton) {\n <st-modal-header\n [title]=\"configuration().title\"\n [showCloseButton]=\"configuration().hideCloseButton === true ? false : true\"\n (click)=\"onCardClick($event)\"></st-modal-header>\n}\n\n<div class=\"modal-content\">\n <ng-template #modalBody></ng-template>\n</div>\n" }]
|
|
2282
2439
|
}], propDecorators: { modalContents: [{ type: i0.ViewChild, args: ['modalBody', { ...{
|
|
2283
|
-
read: ViewContainerRef
|
|
2440
|
+
read: ViewContainerRef
|
|
2284
2441
|
}, isSignal: true }] }], configuration: [{ type: i0.Input, args: [{ isSignal: true, alias: "configuration", required: true }] }], size: [{ type: i0.Input, args: [{ isSignal: true, alias: "size", required: false }] }, { type: i0.Output, args: ["sizeChange"] }], sizeClass: [{
|
|
2285
2442
|
type: HostBinding,
|
|
2286
2443
|
args: ['class']
|
|
2287
2444
|
}] } });
|
|
2288
2445
|
|
|
2289
2446
|
class StrataModalContainerComponent {
|
|
2290
|
-
modalService;
|
|
2291
|
-
constructor(modalService) {
|
|
2292
|
-
this.modalService = modalService;
|
|
2293
|
-
}
|
|
2447
|
+
modalService = inject(ModalService);
|
|
2294
2448
|
onBackdropClick(event) {
|
|
2295
2449
|
event.stopPropagation();
|
|
2296
2450
|
const modals = this.modalService.modals();
|
|
@@ -2300,19 +2454,20 @@ class StrataModalContainerComponent {
|
|
|
2300
2454
|
}
|
|
2301
2455
|
this.modalService.closeCurrentModal();
|
|
2302
2456
|
}
|
|
2303
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2304
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "
|
|
2457
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataModalContainerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2458
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.1", type: StrataModalContainerComponent, isStandalone: true, selector: "st-modal-container", ngImport: i0, template: "<div class=\"modal-wrapper\">\n @for (modal of modalService.modals(); track modal; let last = $last) {\n <st-modal [ngClass]=\"{ 'hidden-under-other-modal': !last }\" [configuration]=\"modal\" [size]=\"modal.size\"> </st-modal>\n }\n</div>\n@if (modalService.modals().length > 0) {\n <div class=\"st-internal-backdrop active\" (click)=\"onBackdropClick($event)\"></div>\n}\n", dependencies: [{ kind: "component", type: StrataModalComponent, selector: "st-modal", inputs: ["configuration", "size"], outputs: ["sizeChange"] }, { kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
|
|
2305
2459
|
}
|
|
2306
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2460
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataModalContainerComponent, decorators: [{
|
|
2307
2461
|
type: Component,
|
|
2308
2462
|
args: [{ selector: 'st-modal-container', imports: [StrataModalComponent, CommonModule], template: "<div class=\"modal-wrapper\">\n @for (modal of modalService.modals(); track modal; let last = $last) {\n <st-modal [ngClass]=\"{ 'hidden-under-other-modal': !last }\" [configuration]=\"modal\" [size]=\"modal.size\"> </st-modal>\n }\n</div>\n@if (modalService.modals().length > 0) {\n <div class=\"st-internal-backdrop active\" (click)=\"onBackdropClick($event)\"></div>\n}\n" }]
|
|
2309
|
-
}]
|
|
2463
|
+
}] });
|
|
2310
2464
|
|
|
2311
2465
|
const DEFAULT_THEME = 'info';
|
|
2312
2466
|
const DEFAULT_DURATION = 3000;
|
|
2313
2467
|
|
|
2314
2468
|
class NotificationService {
|
|
2315
|
-
notificationStack = signal([],
|
|
2469
|
+
notificationStack = signal([], /* @ts-ignore */
|
|
2470
|
+
...(ngDevMode ? [{ debugName: "notificationStack" }] : /* istanbul ignore next */ []));
|
|
2316
2471
|
showNotification(config) {
|
|
2317
2472
|
const newNotificationId = crypto.randomUUID();
|
|
2318
2473
|
const duration = config.duration ?? DEFAULT_DURATION;
|
|
@@ -2324,7 +2479,7 @@ class NotificationService {
|
|
|
2324
2479
|
message: config.message,
|
|
2325
2480
|
duration: duration,
|
|
2326
2481
|
theme: config.theme ?? DEFAULT_THEME,
|
|
2327
|
-
icon: config.icon
|
|
2482
|
+
icon: config.icon
|
|
2328
2483
|
}
|
|
2329
2484
|
]);
|
|
2330
2485
|
this.hideNotification(newNotificationId, duration);
|
|
@@ -2335,23 +2490,23 @@ class NotificationService {
|
|
|
2335
2490
|
this.notificationStack.set(currentStack);
|
|
2336
2491
|
}, duration);
|
|
2337
2492
|
}
|
|
2338
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2339
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2493
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: NotificationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2494
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: NotificationService, providedIn: 'root' });
|
|
2340
2495
|
}
|
|
2341
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2496
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: NotificationService, decorators: [{
|
|
2342
2497
|
type: Injectable,
|
|
2343
2498
|
args: [{
|
|
2344
|
-
providedIn: 'root'
|
|
2499
|
+
providedIn: 'root'
|
|
2345
2500
|
}]
|
|
2346
2501
|
}] });
|
|
2347
2502
|
|
|
2348
2503
|
class StrataNotificationComponent {
|
|
2349
2504
|
icon;
|
|
2350
2505
|
message;
|
|
2351
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2352
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "
|
|
2506
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataNotificationComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2507
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.1", type: StrataNotificationComponent, isStandalone: true, selector: "st-notification", inputs: { icon: "icon", message: "message" }, ngImport: i0, template: "@if (icon) {\n <st-icon [name]=\"icon\"></st-icon>\n}\n{{ message }}\n", dependencies: [{ kind: "component", type: StrataIconComponent, selector: "st-icon", inputs: ["name", "size"], outputs: ["sizeChange"] }] });
|
|
2353
2508
|
}
|
|
2354
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2509
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataNotificationComponent, decorators: [{
|
|
2355
2510
|
type: Component,
|
|
2356
2511
|
args: [{ selector: 'st-notification', imports: [StrataIconComponent], template: "@if (icon) {\n <st-icon [name]=\"icon\"></st-icon>\n}\n{{ message }}\n" }]
|
|
2357
2512
|
}], propDecorators: { icon: [{
|
|
@@ -2363,62 +2518,76 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.0", ngImpor
|
|
|
2363
2518
|
class StrataNotificationContainerComponent {
|
|
2364
2519
|
notificationService = inject(NotificationService);
|
|
2365
2520
|
notifications = this.notificationService.notificationStack;
|
|
2366
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2367
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "
|
|
2521
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataNotificationContainerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2522
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.1", type: StrataNotificationContainerComponent, isStandalone: true, selector: "st-notification-container", ngImport: i0, template: "@for (notification of notifications(); track notification.id) {\n <st-notification [icon]=\"notification.icon\" [message]=\"notification.message\" [stTheme]=\"notification.theme ?? 'info'\">\n </st-notification>\n}\n", dependencies: [{ kind: "component", type: StrataNotificationComponent, selector: "st-notification", inputs: ["icon", "message"] }, { kind: "directive", type: StrataThemeDirective, selector: "[stTheme]", inputs: ["stTheme"] }] });
|
|
2368
2523
|
}
|
|
2369
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2524
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataNotificationContainerComponent, decorators: [{
|
|
2370
2525
|
type: Component,
|
|
2371
2526
|
args: [{ selector: 'st-notification-container', imports: [StrataNotificationComponent, StrataThemeDirective], template: "@for (notification of notifications(); track notification.id) {\n <st-notification [icon]=\"notification.icon\" [message]=\"notification.message\" [stTheme]=\"notification.theme ?? 'info'\">\n </st-notification>\n}\n" }]
|
|
2372
2527
|
}] });
|
|
2373
2528
|
|
|
2374
2529
|
class StrataNumberDisplayComponent {
|
|
2375
2530
|
locale = inject(LOCALE_ID);
|
|
2376
|
-
value = input.required(
|
|
2377
|
-
|
|
2531
|
+
value = input.required(/* @ts-ignore */
|
|
2532
|
+
...(ngDevMode ? [{ debugName: "value" }] : /* istanbul ignore next */ []));
|
|
2533
|
+
decimals = input(2, /* @ts-ignore */
|
|
2534
|
+
...(ngDevMode ? [{ debugName: "decimals" }] : /* istanbul ignore next */ []));
|
|
2378
2535
|
digitsInfo = computed(() => {
|
|
2379
2536
|
return `1.${this.decimals()}-${this.decimals()}`;
|
|
2380
|
-
},
|
|
2381
|
-
|
|
2537
|
+
}, /* @ts-ignore */
|
|
2538
|
+
...(ngDevMode ? [{ debugName: "digitsInfo" }] : /* istanbul ignore next */ []));
|
|
2539
|
+
formattedNumber = computed(() => formatNumber(this.value(), this.locale, this.digitsInfo()), /* @ts-ignore */
|
|
2540
|
+
...(ngDevMode ? [{ debugName: "formattedNumber" }] : /* istanbul ignore next */ []));
|
|
2382
2541
|
separatedDigits = computed(() => {
|
|
2383
2542
|
const parts = this.formattedNumber().split(this.decimalPoint());
|
|
2384
2543
|
return {
|
|
2385
2544
|
integer: parts[0],
|
|
2386
|
-
decimals: parts[1] ?? undefined
|
|
2545
|
+
decimals: parts[1] ?? undefined
|
|
2387
2546
|
};
|
|
2388
|
-
},
|
|
2389
|
-
|
|
2390
|
-
|
|
2391
|
-
|
|
2392
|
-
|
|
2393
|
-
|
|
2394
|
-
|
|
2395
|
-
}
|
|
2396
|
-
|
|
2547
|
+
}, /* @ts-ignore */
|
|
2548
|
+
...(ngDevMode ? [{ debugName: "separatedDigits" }] : /* istanbul ignore next */ []));
|
|
2549
|
+
changedValue = input(false, /* @ts-ignore */
|
|
2550
|
+
...(ngDevMode ? [{ debugName: "changedValue" }] : /* istanbul ignore next */ []));
|
|
2551
|
+
showPlus = input(false, /* @ts-ignore */
|
|
2552
|
+
...(ngDevMode ? [{ debugName: "showPlus" }] : /* istanbul ignore next */ []));
|
|
2553
|
+
deemphasizeDecimals = input(true, /* @ts-ignore */
|
|
2554
|
+
...(ngDevMode ? [{ debugName: "deemphasizeDecimals" }] : /* istanbul ignore next */ []));
|
|
2555
|
+
decimalPoint = computed(() => getLocaleNumberSymbol(this.locale, NumberSymbol.Decimal), /* @ts-ignore */
|
|
2556
|
+
...(ngDevMode ? [{ debugName: "decimalPoint" }] : /* istanbul ignore next */ []));
|
|
2557
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataNumberDisplayComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2558
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.1", type: StrataNumberDisplayComponent, isStandalone: true, selector: "st-number-display", inputs: { value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: true, transformFunction: null }, decimals: { classPropertyName: "decimals", publicName: "decimals", isSignal: true, isRequired: false, transformFunction: null }, changedValue: { classPropertyName: "changedValue", publicName: "changedValue", isSignal: true, isRequired: false, transformFunction: null }, showPlus: { classPropertyName: "showPlus", publicName: "showPlus", isSignal: true, isRequired: false, transformFunction: null }, deemphasizeDecimals: { classPropertyName: "deemphasizeDecimals", publicName: "deemphasizeDecimals", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: "<p\n [ngClass]=\"{\n positive: changedValue() && value() > 0,\n negative: changedValue() && value() < 0,\n }\"\n>\n @if (showPlus() && this.value() > 0) {\n +\n }\n <span class=\"integer-value\">{{ separatedDigits().integer }}</span>\n @if (separatedDigits().decimals) {\n <span\n class=\"decimal-number\"\n [ngClass]=\"{ deemphasize: deemphasizeDecimals }\"\n >{{ decimalPoint() }}{{ separatedDigits().decimals }}</span\n >\n }\n</p>\n", dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
|
|
2559
|
+
}
|
|
2560
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataNumberDisplayComponent, decorators: [{
|
|
2397
2561
|
type: Component,
|
|
2398
2562
|
args: [{ selector: 'st-number-display', imports: [CommonModule], template: "<p\n [ngClass]=\"{\n positive: changedValue() && value() > 0,\n negative: changedValue() && value() < 0,\n }\"\n>\n @if (showPlus() && this.value() > 0) {\n +\n }\n <span class=\"integer-value\">{{ separatedDigits().integer }}</span>\n @if (separatedDigits().decimals) {\n <span\n class=\"decimal-number\"\n [ngClass]=\"{ deemphasize: deemphasizeDecimals }\"\n >{{ decimalPoint() }}{{ separatedDigits().decimals }}</span\n >\n }\n</p>\n" }]
|
|
2399
2563
|
}], propDecorators: { value: [{ type: i0.Input, args: [{ isSignal: true, alias: "value", required: true }] }], decimals: [{ type: i0.Input, args: [{ isSignal: true, alias: "decimals", required: false }] }], changedValue: [{ type: i0.Input, args: [{ isSignal: true, alias: "changedValue", required: false }] }], showPlus: [{ type: i0.Input, args: [{ isSignal: true, alias: "showPlus", required: false }] }], deemphasizeDecimals: [{ type: i0.Input, args: [{ isSignal: true, alias: "deemphasizeDecimals", required: false }] }] } });
|
|
2400
2564
|
|
|
2401
2565
|
class StrataShellComponent {
|
|
2402
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2403
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2566
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataShellComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2567
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.1", type: StrataShellComponent, isStandalone: true, selector: "st-shell", ngImport: i0, template: "<st-notification-container></st-notification-container>\n<st-modal-container></st-modal-container>\n<ng-content></ng-content>", dependencies: [{ kind: "component", type: StrataModalContainerComponent, selector: "st-modal-container" }, { kind: "component", type: StrataNotificationContainerComponent, selector: "st-notification-container" }] });
|
|
2404
2568
|
}
|
|
2405
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2569
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataShellComponent, decorators: [{
|
|
2406
2570
|
type: Component,
|
|
2407
2571
|
args: [{ selector: 'st-shell', imports: [StrataModalContainerComponent, StrataNotificationContainerComponent], template: "<st-notification-container></st-notification-container>\n<st-modal-container></st-modal-container>\n<ng-content></ng-content>" }]
|
|
2408
2572
|
}] });
|
|
2409
2573
|
|
|
2410
2574
|
class StrataMessageStateComponent {
|
|
2411
|
-
header = input.required(
|
|
2412
|
-
|
|
2413
|
-
|
|
2414
|
-
|
|
2415
|
-
|
|
2575
|
+
header = input.required(/* @ts-ignore */
|
|
2576
|
+
...(ngDevMode ? [{ debugName: "header" }] : /* istanbul ignore next */ []));
|
|
2577
|
+
subtitle = input(undefined, /* @ts-ignore */
|
|
2578
|
+
...(ngDevMode ? [{ debugName: "subtitle" }] : /* istanbul ignore next */ []));
|
|
2579
|
+
primaryActionText = input(undefined, /* @ts-ignore */
|
|
2580
|
+
...(ngDevMode ? [{ debugName: "primaryActionText" }] : /* istanbul ignore next */ []));
|
|
2581
|
+
primaryActionTheme = input(undefined, /* @ts-ignore */
|
|
2582
|
+
...(ngDevMode ? [{ debugName: "primaryActionTheme" }] : /* istanbul ignore next */ []));
|
|
2583
|
+
secondaryActionText = input(undefined, /* @ts-ignore */
|
|
2584
|
+
...(ngDevMode ? [{ debugName: "secondaryActionText" }] : /* istanbul ignore next */ []));
|
|
2416
2585
|
primaryAction = output();
|
|
2417
2586
|
secondaryAction = output();
|
|
2418
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2419
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "
|
|
2587
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataMessageStateComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2588
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.1", type: StrataMessageStateComponent, isStandalone: true, selector: "st-message-state", inputs: { header: { classPropertyName: "header", publicName: "header", isSignal: true, isRequired: true, transformFunction: null }, subtitle: { classPropertyName: "subtitle", publicName: "subtitle", isSignal: true, isRequired: false, transformFunction: null }, primaryActionText: { classPropertyName: "primaryActionText", publicName: "primaryActionText", isSignal: true, isRequired: false, transformFunction: null }, primaryActionTheme: { classPropertyName: "primaryActionTheme", publicName: "primaryActionTheme", isSignal: true, isRequired: false, transformFunction: null }, secondaryActionText: { classPropertyName: "secondaryActionText", publicName: "secondaryActionText", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { primaryAction: "primaryAction", secondaryAction: "secondaryAction" }, ngImport: i0, template: "<div class=\"st-message-state-graphic\">\n <ng-content></ng-content>\n</div>\n\n<st-text-stack>\n <h3 class=\"st-message-state-header\">{{ header() }}</h3>\n @if (subtitle()) {\n <p class=\"st-message-state-subtitle\">{{ subtitle() }}</p>\n }\n</st-text-stack>\n\n@if (primaryActionText() || secondaryActionText()) {\n <div class=\"st-message-state-actions\">\n @if (secondaryActionText()) {\n <button \n stButton \n variant=\"secondary\" \n (click)=\"secondaryAction.emit()\">\n {{ secondaryActionText() }}\n </button>\n }\n @if (primaryActionText()) {\n <button \n stButton \n variant=\"primary\" \n [stTheme]=\"primaryActionTheme() || 'default'\" \n (click)=\"primaryAction.emit()\">\n {{ primaryActionText() }}\n </button>\n }\n </div>\n}\n", styles: [":host{--st-message-state-align-items: center;--st-message-state-text-align: center;--st-message-state-gap: var(--st-size-lg, 32px);--st-message-state-content-gap: var(--st-size-xxs, 8px);--st-message-state-actions-gap: var(--st-size-sm, 16px);--st-message-state-padding: var(--st-size-lg, 32px);display:flex;flex-direction:column;align-items:var(--st-message-state-align-items);text-align:var(--st-message-state-text-align);gap:var(--st-message-state-gap);padding:var(--st-message-state-padding);width:100%;box-sizing:border-box}.st-message-state-graphic{display:flex;justify-content:center;align-items:center}.st-message-state-content{display:flex;flex-direction:column;align-items:var(--st-message-state-align-items);gap:var(--st-message-state-content-gap);width:100%}.st-message-state-header{color:var(--st-color-text-primary);margin:0}.st-message-state-subtitle{color:var(--st-color-text-secondary);margin:0}.st-message-state-actions{display:flex;justify-content:center;gap:var(--st-message-state-actions-gap)}\n"], dependencies: [{ kind: "component", type: StrataTextStackComponent, selector: "st-text-stack", inputs: ["overflow"] }, { kind: "directive", type: StrataButtonDirective, selector: "[stButton]", inputs: ["variant", "size", "fullWidth"] }, { kind: "directive", type: StrataThemeDirective, selector: "[stTheme]", inputs: ["stTheme"] }] });
|
|
2420
2589
|
}
|
|
2421
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2590
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImport: i0, type: StrataMessageStateComponent, decorators: [{
|
|
2422
2591
|
type: Component,
|
|
2423
2592
|
args: [{ selector: 'st-message-state', imports: [StrataTextStackComponent, StrataButtonDirective, StrataThemeDirective], template: "<div class=\"st-message-state-graphic\">\n <ng-content></ng-content>\n</div>\n\n<st-text-stack>\n <h3 class=\"st-message-state-header\">{{ header() }}</h3>\n @if (subtitle()) {\n <p class=\"st-message-state-subtitle\">{{ subtitle() }}</p>\n }\n</st-text-stack>\n\n@if (primaryActionText() || secondaryActionText()) {\n <div class=\"st-message-state-actions\">\n @if (secondaryActionText()) {\n <button \n stButton \n variant=\"secondary\" \n (click)=\"secondaryAction.emit()\">\n {{ secondaryActionText() }}\n </button>\n }\n @if (primaryActionText()) {\n <button \n stButton \n variant=\"primary\" \n [stTheme]=\"primaryActionTheme() || 'default'\" \n (click)=\"primaryAction.emit()\">\n {{ primaryActionText() }}\n </button>\n }\n </div>\n}\n", styles: [":host{--st-message-state-align-items: center;--st-message-state-text-align: center;--st-message-state-gap: var(--st-size-lg, 32px);--st-message-state-content-gap: var(--st-size-xxs, 8px);--st-message-state-actions-gap: var(--st-size-sm, 16px);--st-message-state-padding: var(--st-size-lg, 32px);display:flex;flex-direction:column;align-items:var(--st-message-state-align-items);text-align:var(--st-message-state-text-align);gap:var(--st-message-state-gap);padding:var(--st-message-state-padding);width:100%;box-sizing:border-box}.st-message-state-graphic{display:flex;justify-content:center;align-items:center}.st-message-state-content{display:flex;flex-direction:column;align-items:var(--st-message-state-align-items);gap:var(--st-message-state-content-gap);width:100%}.st-message-state-header{color:var(--st-color-text-primary);margin:0}.st-message-state-subtitle{color:var(--st-color-text-secondary);margin:0}.st-message-state-actions{display:flex;justify-content:center;gap:var(--st-message-state-actions-gap)}\n"] }]
|
|
2424
2593
|
}], propDecorators: { header: [{ type: i0.Input, args: [{ isSignal: true, alias: "header", required: true }] }], subtitle: [{ type: i0.Input, args: [{ isSignal: true, alias: "subtitle", required: false }] }], primaryActionText: [{ type: i0.Input, args: [{ isSignal: true, alias: "primaryActionText", required: false }] }], primaryActionTheme: [{ type: i0.Input, args: [{ isSignal: true, alias: "primaryActionTheme", required: false }] }], secondaryActionText: [{ type: i0.Input, args: [{ isSignal: true, alias: "secondaryActionText", required: false }] }], primaryAction: [{ type: i0.Output, args: ["primaryAction"] }], secondaryAction: [{ type: i0.Output, args: ["secondaryAction"] }] } });
|