@ojiepermana/angular-component 22.0.43 → 22.0.45
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/fesm2022/ojiepermana-angular-component-accordion.mjs +21 -23
- package/fesm2022/ojiepermana-angular-component-alert-dialog.mjs +111 -50
- package/fesm2022/ojiepermana-angular-component-alert.mjs +13 -17
- package/fesm2022/ojiepermana-angular-component-aspect-ratio.mjs +4 -5
- package/fesm2022/ojiepermana-angular-component-avatar.mjs +20 -26
- package/fesm2022/ojiepermana-angular-component-badge.mjs +4 -5
- package/fesm2022/ojiepermana-angular-component-breadcrumb.mjs +32 -35
- package/fesm2022/ojiepermana-angular-component-button-group.mjs +10 -13
- package/fesm2022/ojiepermana-angular-component-button.mjs +4 -5
- package/fesm2022/ojiepermana-angular-component-calendar.mjs +10 -8
- package/fesm2022/ojiepermana-angular-component-card.mjs +22 -29
- package/fesm2022/ojiepermana-angular-component-carousel.mjs +31 -34
- package/fesm2022/ojiepermana-angular-component-checkbox.mjs +42 -13
- package/fesm2022/ojiepermana-angular-component-collapsible.mjs +19 -17
- package/fesm2022/ojiepermana-angular-component-combobox.mjs +30 -17
- package/fesm2022/ojiepermana-angular-component-command.mjs +29 -37
- package/fesm2022/ojiepermana-angular-component-composer.mjs +31 -34
- package/fesm2022/ojiepermana-angular-component-context-menu.mjs +3 -3
- package/fesm2022/ojiepermana-angular-component-date-picker.mjs +39 -14
- package/fesm2022/ojiepermana-angular-component-dialog.mjs +100 -45
- package/fesm2022/ojiepermana-angular-component-dropdown-menu.mjs +61 -56
- package/fesm2022/ojiepermana-angular-component-editor.mjs +52 -43
- package/fesm2022/ojiepermana-angular-component-empty.mjs +19 -25
- package/fesm2022/ojiepermana-angular-component-form.mjs +41 -49
- package/fesm2022/ojiepermana-angular-component-hover-card.mjs +10 -11
- package/fesm2022/ojiepermana-angular-component-icon.mjs +56 -11
- package/fesm2022/ojiepermana-angular-component-input-group.mjs +29 -27
- package/fesm2022/ojiepermana-angular-component-input-otp.mjs +29 -28
- package/fesm2022/ojiepermana-angular-component-input.mjs +4 -5
- package/fesm2022/ojiepermana-angular-component-item.mjs +31 -41
- package/fesm2022/ojiepermana-angular-component-kanban.mjs +47 -46
- package/fesm2022/ojiepermana-angular-component-kbd.mjs +7 -9
- package/fesm2022/ojiepermana-angular-component-label.mjs +4 -5
- package/fesm2022/ojiepermana-angular-component-menubar.mjs +16 -16
- package/fesm2022/ojiepermana-angular-component-native-select.mjs +11 -11
- package/fesm2022/ojiepermana-angular-component-navigation-menu.mjs +41 -28
- package/fesm2022/ojiepermana-angular-component-pagination.mjs +25 -16
- package/fesm2022/ojiepermana-angular-component-pillbox.mjs +78 -50
- package/fesm2022/ojiepermana-angular-component-popover.mjs +6 -6
- package/fesm2022/ojiepermana-angular-component-progress.mjs +10 -8
- package/fesm2022/ojiepermana-angular-component-radio.mjs +17 -13
- package/fesm2022/ojiepermana-angular-component-resizable.mjs +32 -21
- package/fesm2022/ojiepermana-angular-component-scroll-area.mjs +11 -9
- package/fesm2022/ojiepermana-angular-component-select.mjs +35 -23
- package/fesm2022/ojiepermana-angular-component-separator.mjs +4 -5
- package/fesm2022/ojiepermana-angular-component-sheet.mjs +101 -45
- package/fesm2022/ojiepermana-angular-component-skeleton.mjs +4 -5
- package/fesm2022/ojiepermana-angular-component-slider.mjs +30 -18
- package/fesm2022/ojiepermana-angular-component-spinner.mjs +9 -8
- package/fesm2022/ojiepermana-angular-component-switch.mjs +19 -10
- package/fesm2022/ojiepermana-angular-component-table.mjs +26 -34
- package/fesm2022/ojiepermana-angular-component-tabs.mjs +20 -24
- package/fesm2022/ojiepermana-angular-component-textarea.mjs +4 -5
- package/fesm2022/ojiepermana-angular-component-timeline.mjs +28 -28
- package/fesm2022/ojiepermana-angular-component-toast.mjs +3 -3
- package/fesm2022/ojiepermana-angular-component-toggle-group.mjs +18 -13
- package/fesm2022/ojiepermana-angular-component-toggle.mjs +4 -5
- package/fesm2022/ojiepermana-angular-component-tooltip.mjs +20 -19
- package/package.json +10 -1
- package/types/ojiepermana-angular-component-alert-dialog.d.ts +42 -3
- package/types/ojiepermana-angular-component-dialog.d.ts +33 -3
- package/types/ojiepermana-angular-component-icon.d.ts +48 -1
- package/types/ojiepermana-angular-component-sheet.d.ts +33 -3
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { DOCUMENT, NgTemplateOutlet } from '@angular/common';
|
|
2
2
|
import * as i0 from '@angular/core';
|
|
3
|
-
import { inject, TemplateRef, Directive, ElementRef, contentChild, input, booleanAttribute, output, computed,
|
|
3
|
+
import { inject, TemplateRef, Directive, ElementRef, contentChild, input, booleanAttribute, output, computed, Component, numberAttribute, DestroyRef, signal, viewChild, contentChildren, forwardRef } from '@angular/core';
|
|
4
4
|
import { NG_VALUE_ACCESSOR } from '@angular/forms';
|
|
5
5
|
import { cn, uniqueId } from '@ojiepermana/angular-component/utils';
|
|
6
6
|
|
|
@@ -16,10 +16,10 @@ const pillboxPillSizeClasses = {
|
|
|
16
16
|
};
|
|
17
17
|
class PillboxSelectedDirective {
|
|
18
18
|
template = inject(TemplateRef);
|
|
19
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.
|
|
20
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "22.0.
|
|
19
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.4", ngImport: i0, type: PillboxSelectedDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
20
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "22.0.4", type: PillboxSelectedDirective, isStandalone: true, selector: "ng-template[PillboxSelected]", exportAs: ["PillboxSelected"], ngImport: i0 });
|
|
21
21
|
}
|
|
22
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.
|
|
22
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.4", ngImport: i0, type: PillboxSelectedDirective, decorators: [{
|
|
23
23
|
type: Directive,
|
|
24
24
|
args: [{
|
|
25
25
|
selector: 'ng-template[PillboxSelected]',
|
|
@@ -64,8 +64,8 @@ class PillboxOptionComponent {
|
|
|
64
64
|
event.preventDefault();
|
|
65
65
|
this.context.chooseOption(this, event);
|
|
66
66
|
}
|
|
67
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.
|
|
68
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.
|
|
67
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.4", ngImport: i0, type: PillboxOptionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
68
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.4", type: PillboxOptionComponent, isStandalone: true, selector: "PillboxOption, button[PillboxOption]", inputs: { value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: true, transformFunction: null }, label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: false, transformFunction: null }, selectedLabel: { classPropertyName: "selectedLabel", publicName: "selectedLabel", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, filterable: { classPropertyName: "filterable", publicName: "filterable", isSignal: true, isRequired: false, transformFunction: null }, class: { classPropertyName: "class", publicName: "class", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { selectedChange: "selectedChange" }, host: { attributes: { "type": "button" }, listeners: { "click": "handleClick($event)", "keydown.enter": "handleKeydown($any($event))", "keydown.space": "handleKeydown($any($event))" }, properties: { "class": "classes()", "attr.data-slot": "\"pillbox-option\"", "attr.data-selected": "selected() ? \"\" : null", "attr.data-disabled": "disabled() ? \"\" : null", "attr.role": "\"option\"", "attr.aria-selected": "selected()", "attr.aria-disabled": "disabled() ? \"true\" : null", "attr.tabindex": "disabled() ? -1 : 0", "hidden": "!visible()" } }, queries: [{ propertyName: "selectedTemplate", first: true, predicate: PillboxSelectedDirective, descendants: true, isSignal: true }], ngImport: i0, template: `
|
|
69
69
|
<span class="min-w-0 flex-1 truncate text-left"><ng-content /></span>
|
|
70
70
|
@if (selected()) {
|
|
71
71
|
<svg
|
|
@@ -76,17 +76,17 @@ class PillboxOptionComponent {
|
|
|
76
76
|
stroke="currentColor"
|
|
77
77
|
stroke-width="1.75"
|
|
78
78
|
stroke-linecap="round"
|
|
79
|
-
stroke-linejoin="round"
|
|
79
|
+
stroke-linejoin="round"
|
|
80
|
+
>
|
|
80
81
|
<path d="M20 6 9 17l-5-5" />
|
|
81
82
|
</svg>
|
|
82
83
|
}
|
|
83
|
-
`, isInline: true
|
|
84
|
+
`, isInline: true });
|
|
84
85
|
}
|
|
85
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.
|
|
86
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.4", ngImport: i0, type: PillboxOptionComponent, decorators: [{
|
|
86
87
|
type: Component,
|
|
87
88
|
args: [{
|
|
88
89
|
selector: 'PillboxOption, button[PillboxOption]',
|
|
89
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
90
90
|
host: {
|
|
91
91
|
type: 'button',
|
|
92
92
|
'[class]': 'classes()',
|
|
@@ -113,7 +113,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.3", ngImpor
|
|
|
113
113
|
stroke="currentColor"
|
|
114
114
|
stroke-width="1.75"
|
|
115
115
|
stroke-linecap="round"
|
|
116
|
-
stroke-linejoin="round"
|
|
116
|
+
stroke-linejoin="round"
|
|
117
|
+
>
|
|
117
118
|
<path d="M20 6 9 17l-5-5" />
|
|
118
119
|
</svg>
|
|
119
120
|
}
|
|
@@ -138,14 +139,13 @@ class PillboxOptionCreateComponent {
|
|
|
138
139
|
event.preventDefault();
|
|
139
140
|
this.context.chooseCreate(this, event);
|
|
140
141
|
}
|
|
141
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.
|
|
142
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.
|
|
142
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.4", ngImport: i0, type: PillboxOptionCreateComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
143
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.4", type: PillboxOptionCreateComponent, isStandalone: true, selector: "PillboxOptionCreate, button[PillboxOptionCreate]", inputs: { minLength: { classPropertyName: "minLength", publicName: "minLength", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, class: { classPropertyName: "class", publicName: "class", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { selected: "selected" }, host: { attributes: { "type": "button" }, listeners: { "click": "handleClick($event)", "keydown.enter": "handleKeydown($any($event))", "keydown.space": "handleKeydown($any($event))" }, properties: { "class": "classes()", "attr.data-slot": "\"pillbox-option-create\"", "attr.role": "\"option\"", "attr.tabindex": "disabled() ? -1 : 0", "attr.aria-disabled": "disabled() ? \"true\" : null", "hidden": "!visible()" } }, ngImport: i0, template: `<ng-content />`, isInline: true });
|
|
143
144
|
}
|
|
144
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.
|
|
145
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.4", ngImport: i0, type: PillboxOptionCreateComponent, decorators: [{
|
|
145
146
|
type: Component,
|
|
146
147
|
args: [{
|
|
147
148
|
selector: 'PillboxOptionCreate, button[PillboxOptionCreate]',
|
|
148
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
149
149
|
host: {
|
|
150
150
|
type: 'button',
|
|
151
151
|
'[class]': 'classes()',
|
|
@@ -169,20 +169,19 @@ class PillboxOptionEmptyComponent {
|
|
|
169
169
|
...(ngDevMode ? [{ debugName: "class" }] : /* istanbul ignore next */ []));
|
|
170
170
|
classes = computed(() => cn('px-2 py-6 text-center text-sm text-muted-foreground', this.class()), /* @ts-ignore */
|
|
171
171
|
...(ngDevMode ? [{ debugName: "classes" }] : /* istanbul ignore next */ []));
|
|
172
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.
|
|
173
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.
|
|
172
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.4", ngImport: i0, type: PillboxOptionEmptyComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
173
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.4", type: PillboxOptionEmptyComponent, isStandalone: true, selector: "PillboxOptionEmpty", inputs: { whenLoading: { classPropertyName: "whenLoading", publicName: "whenLoading", isSignal: true, isRequired: false, transformFunction: null }, class: { classPropertyName: "class", publicName: "class", isSignal: true, isRequired: false, transformFunction: null } }, host: { attributes: { "role": "presentation" }, properties: { "class": "classes()", "attr.data-slot": "\"pillbox-option-empty\"", "hidden": "!context.emptyVisible()" } }, ngImport: i0, template: `
|
|
174
174
|
@if (context.emptyMessage()) {
|
|
175
175
|
{{ context.emptyMessage() }}
|
|
176
176
|
} @else {
|
|
177
177
|
<ng-content />
|
|
178
178
|
}
|
|
179
|
-
`, isInline: true
|
|
179
|
+
`, isInline: true });
|
|
180
180
|
}
|
|
181
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.
|
|
181
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.4", ngImport: i0, type: PillboxOptionEmptyComponent, decorators: [{
|
|
182
182
|
type: Component,
|
|
183
183
|
args: [{
|
|
184
184
|
selector: 'PillboxOptionEmpty',
|
|
185
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
186
185
|
host: {
|
|
187
186
|
'[class]': 'classes()',
|
|
188
187
|
'[attr.data-slot]': '"pillbox-option-empty"',
|
|
@@ -424,7 +423,9 @@ class PillboxComponent extends PillboxContext {
|
|
|
424
423
|
this.disabledFromControl.set(disabled);
|
|
425
424
|
}
|
|
426
425
|
emitValue() {
|
|
427
|
-
const nextValue = this.multiple()
|
|
426
|
+
const nextValue = this.multiple()
|
|
427
|
+
? [...this.selectedValues()]
|
|
428
|
+
: (this.selectedValues()[0] ?? null);
|
|
428
429
|
this.onChange(nextValue);
|
|
429
430
|
this.valueChange.emit(nextValue);
|
|
430
431
|
}
|
|
@@ -444,7 +445,9 @@ class PillboxComponent extends PillboxContext {
|
|
|
444
445
|
return Object.is(left, right);
|
|
445
446
|
}
|
|
446
447
|
focusSearchInput() {
|
|
447
|
-
const searchInput = this.variant() === 'combobox'
|
|
448
|
+
const searchInput = this.variant() === 'combobox'
|
|
449
|
+
? this.inlineSearch()?.nativeElement
|
|
450
|
+
: this.panelSearch()?.nativeElement;
|
|
448
451
|
searchInput?.focus();
|
|
449
452
|
}
|
|
450
453
|
bindOutsideListener() {
|
|
@@ -461,8 +464,8 @@ class PillboxComponent extends PillboxContext {
|
|
|
461
464
|
this.removeDocumentListener?.();
|
|
462
465
|
this.removeDocumentListener = null;
|
|
463
466
|
}
|
|
464
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.
|
|
465
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.
|
|
467
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.4", ngImport: i0, type: PillboxComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
468
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.4", type: PillboxComponent, isStandalone: true, selector: "Pillbox", inputs: { id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null }, placeholder: { classPropertyName: "placeholder", publicName: "placeholder", isSignal: true, isRequired: false, transformFunction: null }, searchPlaceholder: { classPropertyName: "searchPlaceholder", publicName: "searchPlaceholder", isSignal: true, isRequired: false, transformFunction: null }, size: { classPropertyName: "size", publicName: "size", isSignal: true, isRequired: false, transformFunction: null }, variant: { classPropertyName: "variant", publicName: "variant", isSignal: true, isRequired: false, transformFunction: null }, multiple: { classPropertyName: "multiple", publicName: "multiple", isSignal: true, isRequired: false, transformFunction: null }, searchable: { classPropertyName: "searchable", publicName: "searchable", isSignal: true, isRequired: false, transformFunction: null }, filter: { classPropertyName: "filter", publicName: "filter", isSignal: true, isRequired: false, transformFunction: null }, clearable: { classPropertyName: "clearable", publicName: "clearable", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, invalid: { classPropertyName: "invalid", publicName: "invalid", isSignal: true, isRequired: false, transformFunction: null }, loading: { classPropertyName: "loading", publicName: "loading", isSignal: true, isRequired: false, transformFunction: null }, emptyText: { classPropertyName: "emptyText", publicName: "emptyText", isSignal: true, isRequired: false, transformFunction: null }, loadingText: { classPropertyName: "loadingText", publicName: "loadingText", isSignal: true, isRequired: false, transformFunction: null }, ariaLabel: { classPropertyName: "ariaLabel", publicName: "aria-label", isSignal: true, isRequired: false, transformFunction: null }, ariaDescribedby: { classPropertyName: "ariaDescribedby", publicName: "aria-describedby", isSignal: true, isRequired: false, transformFunction: null }, ariaLabelledby: { classPropertyName: "ariaLabelledby", publicName: "aria-labelledby", isSignal: true, isRequired: false, transformFunction: null }, class: { classPropertyName: "class", publicName: "class", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { valueChange: "valueChange", searchChange: "searchChange", create: "create", openedChange: "openedChange" }, host: { properties: { "class": "classes()", "attr.data-slot": "\"pillbox\"", "attr.data-open": "openState() ? \"\" : null", "attr.data-size": "size()", "attr.data-variant": "variant()" } }, providers: [
|
|
466
469
|
{ provide: PillboxContext, useExisting: forwardRef(() => PillboxComponent) },
|
|
467
470
|
{ provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => PillboxComponent), multi: true },
|
|
468
471
|
], queries: [{ propertyName: "options", predicate: PillboxOptionComponent, descendants: true, isSignal: true }, { propertyName: "createOptions", predicate: PillboxOptionCreateComponent, descendants: true, isSignal: true }, { propertyName: "emptyOptions", predicate: PillboxOptionEmptyComponent, descendants: true, isSignal: true }], viewQueries: [{ propertyName: "trigger", first: true, predicate: ["trigger"], descendants: true, isSignal: true }, { propertyName: "inlineSearch", first: true, predicate: ["inlineSearch"], descendants: true, isSignal: true }, { propertyName: "panelSearch", first: true, predicate: ["panelSearch"], descendants: true, isSignal: true }], usesInheritance: true, ngImport: i0, template: `
|
|
@@ -484,7 +487,8 @@ class PillboxComponent extends PillboxContext {
|
|
|
484
487
|
(keydown.enter)="handleTriggerKeydown($any($event))"
|
|
485
488
|
(keydown.space)="handleTriggerKeydown($any($event))"
|
|
486
489
|
(keydown.arrowDown)="handleTriggerKeydown($any($event))"
|
|
487
|
-
(keydown.escape)="close()"
|
|
490
|
+
(keydown.escape)="close()"
|
|
491
|
+
>
|
|
488
492
|
<div class="flex min-w-0 flex-1 flex-wrap items-center gap-1.5">
|
|
489
493
|
@if (selectedItems().length > 0) {
|
|
490
494
|
@for (item of selectedItems(); track item.track) {
|
|
@@ -501,7 +505,8 @@ class PillboxComponent extends PillboxContext {
|
|
|
501
505
|
class="-mr-1 inline-flex size-4 items-center justify-center rounded-full text-muted-foreground hover:bg-muted hover:text-foreground focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring"
|
|
502
506
|
[attr.aria-label]="'Remove ' + item.label"
|
|
503
507
|
[disabled]="disabledState() || null"
|
|
504
|
-
(click)="removeSelected(item.value, $event)"
|
|
508
|
+
(click)="removeSelected(item.value, $event)"
|
|
509
|
+
>
|
|
505
510
|
<svg
|
|
506
511
|
aria-hidden="true"
|
|
507
512
|
class="size-3"
|
|
@@ -510,7 +515,8 @@ class PillboxComponent extends PillboxContext {
|
|
|
510
515
|
stroke="currentColor"
|
|
511
516
|
stroke-width="2"
|
|
512
517
|
stroke-linecap="round"
|
|
513
|
-
stroke-linejoin="round"
|
|
518
|
+
stroke-linejoin="round"
|
|
519
|
+
>
|
|
514
520
|
<path d="M18 6 6 18" />
|
|
515
521
|
<path d="m6 6 12 12" />
|
|
516
522
|
</svg>
|
|
@@ -530,7 +536,8 @@ class PillboxComponent extends PillboxContext {
|
|
|
530
536
|
(focus)="open()"
|
|
531
537
|
(input)="handleSearchInput($event)"
|
|
532
538
|
(keydown.backspace)="handleInlineBackspace($any($event))"
|
|
533
|
-
(keydown.escape)="close()"
|
|
539
|
+
(keydown.escape)="close()"
|
|
540
|
+
/>
|
|
534
541
|
} @else if (selectedItems().length === 0) {
|
|
535
542
|
<span class="truncate text-muted-foreground">{{ placeholder() }}</span>
|
|
536
543
|
}
|
|
@@ -541,7 +548,8 @@ class PillboxComponent extends PillboxContext {
|
|
|
541
548
|
type="button"
|
|
542
549
|
class="inline-flex size-5 shrink-0 items-center justify-center rounded-full text-muted-foreground hover:bg-muted hover:text-foreground focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring"
|
|
543
550
|
aria-label="Clear selected options"
|
|
544
|
-
(click)="clear($event)"
|
|
551
|
+
(click)="clear($event)"
|
|
552
|
+
>
|
|
545
553
|
<svg
|
|
546
554
|
aria-hidden="true"
|
|
547
555
|
class="size-3.5"
|
|
@@ -550,7 +558,8 @@ class PillboxComponent extends PillboxContext {
|
|
|
550
558
|
stroke="currentColor"
|
|
551
559
|
stroke-width="2"
|
|
552
560
|
stroke-linecap="round"
|
|
553
|
-
stroke-linejoin="round"
|
|
561
|
+
stroke-linejoin="round"
|
|
562
|
+
>
|
|
554
563
|
<path d="M18 6 6 18" />
|
|
555
564
|
<path d="m6 6 12 12" />
|
|
556
565
|
</svg>
|
|
@@ -566,7 +575,8 @@ class PillboxComponent extends PillboxContext {
|
|
|
566
575
|
stroke="currentColor"
|
|
567
576
|
stroke-width="1.75"
|
|
568
577
|
stroke-linecap="round"
|
|
569
|
-
stroke-linejoin="round"
|
|
578
|
+
stroke-linejoin="round"
|
|
579
|
+
>
|
|
570
580
|
<path d="m6 9 6 6 6-6" />
|
|
571
581
|
</svg>
|
|
572
582
|
</div>
|
|
@@ -583,7 +593,8 @@ class PillboxComponent extends PillboxContext {
|
|
|
583
593
|
stroke="currentColor"
|
|
584
594
|
stroke-width="1.75"
|
|
585
595
|
stroke-linecap="round"
|
|
586
|
-
stroke-linejoin="round"
|
|
596
|
+
stroke-linejoin="round"
|
|
597
|
+
>
|
|
587
598
|
<circle cx="11" cy="11" r="8" />
|
|
588
599
|
<path d="m21 21-4.35-4.35" />
|
|
589
600
|
</svg>
|
|
@@ -593,13 +604,15 @@ class PillboxComponent extends PillboxContext {
|
|
|
593
604
|
[placeholder]="searchPlaceholder()"
|
|
594
605
|
[value]="query()"
|
|
595
606
|
(input)="handleSearchInput($event)"
|
|
596
|
-
(keydown.escape)="close()"
|
|
607
|
+
(keydown.escape)="close()"
|
|
608
|
+
/>
|
|
597
609
|
@if (query().length > 0) {
|
|
598
610
|
<button
|
|
599
611
|
type="button"
|
|
600
612
|
class="inline-flex size-6 shrink-0 items-center justify-center rounded-md text-muted-foreground hover:bg-muted hover:text-foreground"
|
|
601
613
|
aria-label="Clear search"
|
|
602
|
-
(click)="clearSearch($event)"
|
|
614
|
+
(click)="clearSearch($event)"
|
|
615
|
+
>
|
|
603
616
|
<svg
|
|
604
617
|
aria-hidden="true"
|
|
605
618
|
class="size-3.5"
|
|
@@ -608,7 +621,8 @@ class PillboxComponent extends PillboxContext {
|
|
|
608
621
|
stroke="currentColor"
|
|
609
622
|
stroke-width="2"
|
|
610
623
|
stroke-linecap="round"
|
|
611
|
-
stroke-linejoin="round"
|
|
624
|
+
stroke-linejoin="round"
|
|
625
|
+
>
|
|
612
626
|
<path d="M18 6 6 18" />
|
|
613
627
|
<path d="m6 6 12 12" />
|
|
614
628
|
</svg>
|
|
@@ -622,13 +636,12 @@ class PillboxComponent extends PillboxContext {
|
|
|
622
636
|
<ng-content />
|
|
623
637
|
</div>
|
|
624
638
|
</div>
|
|
625
|
-
`, isInline: true, dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }]
|
|
639
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] });
|
|
626
640
|
}
|
|
627
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.
|
|
641
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.4", ngImport: i0, type: PillboxComponent, decorators: [{
|
|
628
642
|
type: Component,
|
|
629
643
|
args: [{
|
|
630
644
|
selector: 'Pillbox',
|
|
631
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
632
645
|
imports: [NgTemplateOutlet],
|
|
633
646
|
providers: [
|
|
634
647
|
{ provide: PillboxContext, useExisting: forwardRef(() => PillboxComponent) },
|
|
@@ -660,7 +673,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.3", ngImpor
|
|
|
660
673
|
(keydown.enter)="handleTriggerKeydown($any($event))"
|
|
661
674
|
(keydown.space)="handleTriggerKeydown($any($event))"
|
|
662
675
|
(keydown.arrowDown)="handleTriggerKeydown($any($event))"
|
|
663
|
-
(keydown.escape)="close()"
|
|
676
|
+
(keydown.escape)="close()"
|
|
677
|
+
>
|
|
664
678
|
<div class="flex min-w-0 flex-1 flex-wrap items-center gap-1.5">
|
|
665
679
|
@if (selectedItems().length > 0) {
|
|
666
680
|
@for (item of selectedItems(); track item.track) {
|
|
@@ -677,7 +691,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.3", ngImpor
|
|
|
677
691
|
class="-mr-1 inline-flex size-4 items-center justify-center rounded-full text-muted-foreground hover:bg-muted hover:text-foreground focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring"
|
|
678
692
|
[attr.aria-label]="'Remove ' + item.label"
|
|
679
693
|
[disabled]="disabledState() || null"
|
|
680
|
-
(click)="removeSelected(item.value, $event)"
|
|
694
|
+
(click)="removeSelected(item.value, $event)"
|
|
695
|
+
>
|
|
681
696
|
<svg
|
|
682
697
|
aria-hidden="true"
|
|
683
698
|
class="size-3"
|
|
@@ -686,7 +701,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.3", ngImpor
|
|
|
686
701
|
stroke="currentColor"
|
|
687
702
|
stroke-width="2"
|
|
688
703
|
stroke-linecap="round"
|
|
689
|
-
stroke-linejoin="round"
|
|
704
|
+
stroke-linejoin="round"
|
|
705
|
+
>
|
|
690
706
|
<path d="M18 6 6 18" />
|
|
691
707
|
<path d="m6 6 12 12" />
|
|
692
708
|
</svg>
|
|
@@ -706,7 +722,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.3", ngImpor
|
|
|
706
722
|
(focus)="open()"
|
|
707
723
|
(input)="handleSearchInput($event)"
|
|
708
724
|
(keydown.backspace)="handleInlineBackspace($any($event))"
|
|
709
|
-
(keydown.escape)="close()"
|
|
725
|
+
(keydown.escape)="close()"
|
|
726
|
+
/>
|
|
710
727
|
} @else if (selectedItems().length === 0) {
|
|
711
728
|
<span class="truncate text-muted-foreground">{{ placeholder() }}</span>
|
|
712
729
|
}
|
|
@@ -717,7 +734,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.3", ngImpor
|
|
|
717
734
|
type="button"
|
|
718
735
|
class="inline-flex size-5 shrink-0 items-center justify-center rounded-full text-muted-foreground hover:bg-muted hover:text-foreground focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring"
|
|
719
736
|
aria-label="Clear selected options"
|
|
720
|
-
(click)="clear($event)"
|
|
737
|
+
(click)="clear($event)"
|
|
738
|
+
>
|
|
721
739
|
<svg
|
|
722
740
|
aria-hidden="true"
|
|
723
741
|
class="size-3.5"
|
|
@@ -726,7 +744,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.3", ngImpor
|
|
|
726
744
|
stroke="currentColor"
|
|
727
745
|
stroke-width="2"
|
|
728
746
|
stroke-linecap="round"
|
|
729
|
-
stroke-linejoin="round"
|
|
747
|
+
stroke-linejoin="round"
|
|
748
|
+
>
|
|
730
749
|
<path d="M18 6 6 18" />
|
|
731
750
|
<path d="m6 6 12 12" />
|
|
732
751
|
</svg>
|
|
@@ -742,7 +761,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.3", ngImpor
|
|
|
742
761
|
stroke="currentColor"
|
|
743
762
|
stroke-width="1.75"
|
|
744
763
|
stroke-linecap="round"
|
|
745
|
-
stroke-linejoin="round"
|
|
764
|
+
stroke-linejoin="round"
|
|
765
|
+
>
|
|
746
766
|
<path d="m6 9 6 6 6-6" />
|
|
747
767
|
</svg>
|
|
748
768
|
</div>
|
|
@@ -759,7 +779,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.3", ngImpor
|
|
|
759
779
|
stroke="currentColor"
|
|
760
780
|
stroke-width="1.75"
|
|
761
781
|
stroke-linecap="round"
|
|
762
|
-
stroke-linejoin="round"
|
|
782
|
+
stroke-linejoin="round"
|
|
783
|
+
>
|
|
763
784
|
<circle cx="11" cy="11" r="8" />
|
|
764
785
|
<path d="m21 21-4.35-4.35" />
|
|
765
786
|
</svg>
|
|
@@ -769,13 +790,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.3", ngImpor
|
|
|
769
790
|
[placeholder]="searchPlaceholder()"
|
|
770
791
|
[value]="query()"
|
|
771
792
|
(input)="handleSearchInput($event)"
|
|
772
|
-
(keydown.escape)="close()"
|
|
793
|
+
(keydown.escape)="close()"
|
|
794
|
+
/>
|
|
773
795
|
@if (query().length > 0) {
|
|
774
796
|
<button
|
|
775
797
|
type="button"
|
|
776
798
|
class="inline-flex size-6 shrink-0 items-center justify-center rounded-md text-muted-foreground hover:bg-muted hover:text-foreground"
|
|
777
799
|
aria-label="Clear search"
|
|
778
|
-
(click)="clearSearch($event)"
|
|
800
|
+
(click)="clearSearch($event)"
|
|
801
|
+
>
|
|
779
802
|
<svg
|
|
780
803
|
aria-hidden="true"
|
|
781
804
|
class="size-3.5"
|
|
@@ -784,7 +807,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.3", ngImpor
|
|
|
784
807
|
stroke="currentColor"
|
|
785
808
|
stroke-width="2"
|
|
786
809
|
stroke-linecap="round"
|
|
787
|
-
stroke-linejoin="round"
|
|
810
|
+
stroke-linejoin="round"
|
|
811
|
+
>
|
|
788
812
|
<path d="M18 6 6 18" />
|
|
789
813
|
<path d="m6 6 12 12" />
|
|
790
814
|
</svg>
|
|
@@ -800,7 +824,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.3", ngImpor
|
|
|
800
824
|
</div>
|
|
801
825
|
`,
|
|
802
826
|
}]
|
|
803
|
-
}], ctorParameters: () => [], propDecorators: { id: [{ type: i0.Input, args: [{ isSignal: true, alias: "id", required: false }] }], placeholder: [{ type: i0.Input, args: [{ isSignal: true, alias: "placeholder", required: false }] }], searchPlaceholder: [{ type: i0.Input, args: [{ isSignal: true, alias: "searchPlaceholder", required: false }] }], size: [{ type: i0.Input, args: [{ isSignal: true, alias: "size", required: false }] }], variant: [{ type: i0.Input, args: [{ isSignal: true, alias: "variant", required: false }] }], multiple: [{ type: i0.Input, args: [{ isSignal: true, alias: "multiple", required: false }] }], searchable: [{ type: i0.Input, args: [{ isSignal: true, alias: "searchable", required: false }] }], filter: [{ type: i0.Input, args: [{ isSignal: true, alias: "filter", required: false }] }], clearable: [{ type: i0.Input, args: [{ isSignal: true, alias: "clearable", required: false }] }], disabled: [{ type: i0.Input, args: [{ isSignal: true, alias: "disabled", required: false }] }], invalid: [{ type: i0.Input, args: [{ isSignal: true, alias: "invalid", required: false }] }], loading: [{ type: i0.Input, args: [{ isSignal: true, alias: "loading", required: false }] }], emptyText: [{ type: i0.Input, args: [{ isSignal: true, alias: "emptyText", required: false }] }], loadingText: [{ type: i0.Input, args: [{ isSignal: true, alias: "loadingText", required: false }] }], ariaLabel: [{ type: i0.Input, args: [{ isSignal: true, alias: "aria-label", required: false }] }], ariaDescribedby: [{ type: i0.Input, args: [{ isSignal: true, alias: "aria-describedby", required: false }] }], ariaLabelledby: [{ type: i0.Input, args: [{ isSignal: true, alias: "aria-labelledby", required: false }] }], class: [{ type: i0.Input, args: [{ isSignal: true, alias: "class", required: false }] }], valueChange: [{ type: i0.Output, args: ["valueChange"] }], searchChange: [{ type: i0.Output, args: ["searchChange"] }], create: [{ type: i0.Output, args: ["create"] }], openedChange: [{ type: i0.Output, args: ["openedChange"] }], trigger: [{ type: i0.ViewChild, args: ['trigger', { isSignal: true }] }], inlineSearch: [{ type: i0.ViewChild, args: ['inlineSearch', { isSignal: true }] }], panelSearch: [{ type: i0.ViewChild, args: ['panelSearch', { isSignal: true }] }], options: [{ type: i0.ContentChildren, args: [i0.forwardRef(() => PillboxOptionComponent), { ...{ descendants: true }, isSignal: true }] }], createOptions: [{ type: i0.ContentChildren, args: [i0.forwardRef(() => PillboxOptionCreateComponent), { ...{
|
|
827
|
+
}], ctorParameters: () => [], propDecorators: { id: [{ type: i0.Input, args: [{ isSignal: true, alias: "id", required: false }] }], placeholder: [{ type: i0.Input, args: [{ isSignal: true, alias: "placeholder", required: false }] }], searchPlaceholder: [{ type: i0.Input, args: [{ isSignal: true, alias: "searchPlaceholder", required: false }] }], size: [{ type: i0.Input, args: [{ isSignal: true, alias: "size", required: false }] }], variant: [{ type: i0.Input, args: [{ isSignal: true, alias: "variant", required: false }] }], multiple: [{ type: i0.Input, args: [{ isSignal: true, alias: "multiple", required: false }] }], searchable: [{ type: i0.Input, args: [{ isSignal: true, alias: "searchable", required: false }] }], filter: [{ type: i0.Input, args: [{ isSignal: true, alias: "filter", required: false }] }], clearable: [{ type: i0.Input, args: [{ isSignal: true, alias: "clearable", required: false }] }], disabled: [{ type: i0.Input, args: [{ isSignal: true, alias: "disabled", required: false }] }], invalid: [{ type: i0.Input, args: [{ isSignal: true, alias: "invalid", required: false }] }], loading: [{ type: i0.Input, args: [{ isSignal: true, alias: "loading", required: false }] }], emptyText: [{ type: i0.Input, args: [{ isSignal: true, alias: "emptyText", required: false }] }], loadingText: [{ type: i0.Input, args: [{ isSignal: true, alias: "loadingText", required: false }] }], ariaLabel: [{ type: i0.Input, args: [{ isSignal: true, alias: "aria-label", required: false }] }], ariaDescribedby: [{ type: i0.Input, args: [{ isSignal: true, alias: "aria-describedby", required: false }] }], ariaLabelledby: [{ type: i0.Input, args: [{ isSignal: true, alias: "aria-labelledby", required: false }] }], class: [{ type: i0.Input, args: [{ isSignal: true, alias: "class", required: false }] }], valueChange: [{ type: i0.Output, args: ["valueChange"] }], searchChange: [{ type: i0.Output, args: ["searchChange"] }], create: [{ type: i0.Output, args: ["create"] }], openedChange: [{ type: i0.Output, args: ["openedChange"] }], trigger: [{ type: i0.ViewChild, args: ['trigger', { isSignal: true }] }], inlineSearch: [{ type: i0.ViewChild, args: ['inlineSearch', { isSignal: true }] }], panelSearch: [{ type: i0.ViewChild, args: ['panelSearch', { isSignal: true }] }], options: [{ type: i0.ContentChildren, args: [i0.forwardRef(() => PillboxOptionComponent), { ...{ descendants: true }, isSignal: true }] }], createOptions: [{ type: i0.ContentChildren, args: [i0.forwardRef(() => PillboxOptionCreateComponent), { ...{
|
|
828
|
+
descendants: true,
|
|
829
|
+
}, isSignal: true }] }], emptyOptions: [{ type: i0.ContentChildren, args: [i0.forwardRef(() => PillboxOptionEmptyComponent), { ...{
|
|
830
|
+
descendants: true,
|
|
831
|
+
}, isSignal: true }] }] } });
|
|
804
832
|
|
|
805
833
|
/**
|
|
806
834
|
* Generated bundle index. Do not edit.
|
|
@@ -15,10 +15,10 @@ class PopoverContentDirective {
|
|
|
15
15
|
...(ngDevMode ? [{ debugName: "radiusBase" }] : /* istanbul ignore next */ []));
|
|
16
16
|
densityBase = computed(() => densityBaseValue(this.density()), /* @ts-ignore */
|
|
17
17
|
...(ngDevMode ? [{ debugName: "densityBase" }] : /* istanbul ignore next */ []));
|
|
18
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.
|
|
19
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "22.0.
|
|
18
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.4", ngImport: i0, type: PopoverContentDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
19
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "22.0.4", type: PopoverContentDirective, isStandalone: true, selector: "ng-template[PopoverContent]", inputs: { radius: { classPropertyName: "radius", publicName: "radius", isSignal: true, isRequired: false, transformFunction: null }, density: { classPropertyName: "density", publicName: "density", isSignal: true, isRequired: false, transformFunction: null } }, host: { properties: { "style.--radius-base": "radiusBase()", "style.--spacing-base": "densityBase()" } }, exportAs: ["PopoverContent"], ngImport: i0 });
|
|
20
20
|
}
|
|
21
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.
|
|
21
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.4", ngImport: i0, type: PopoverContentDirective, decorators: [{
|
|
22
22
|
type: Directive,
|
|
23
23
|
args: [{
|
|
24
24
|
selector: 'ng-template[PopoverContent]',
|
|
@@ -130,10 +130,10 @@ class PopoverTriggerDirective {
|
|
|
130
130
|
tagName === 'SUMMARY' ||
|
|
131
131
|
(tagName === 'A' && host.hasAttribute('href')));
|
|
132
132
|
}
|
|
133
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.
|
|
134
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "22.0.
|
|
133
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.4", ngImport: i0, type: PopoverTriggerDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
134
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "22.0.4", type: PopoverTriggerDirective, isStandalone: true, selector: "[PopoverTrigger]", inputs: { PopoverTrigger: { classPropertyName: "PopoverTrigger", publicName: "PopoverTrigger", isSignal: true, isRequired: true, transformFunction: null }, side: { classPropertyName: "side", publicName: "side", isSignal: true, isRequired: false, transformFunction: null }, align: { classPropertyName: "align", publicName: "align", isSignal: true, isRequired: false, transformFunction: null }, sideOffset: { classPropertyName: "sideOffset", publicName: "sideOffset", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { openedChange: "openedChange" }, host: { listeners: { "click": "toggle()", "keydown.enter": "onKeyboardToggle($event)", "keydown.space": "onKeyboardToggle($event)", "keydown.escape": "close()" }, properties: { "attr.aria-expanded": "isOpen()", "attr.aria-haspopup": "\"dialog\"" } }, exportAs: ["PopoverTrigger"], ngImport: i0 });
|
|
135
135
|
}
|
|
136
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.
|
|
136
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.4", ngImport: i0, type: PopoverTriggerDirective, decorators: [{
|
|
137
137
|
type: Directive,
|
|
138
138
|
args: [{
|
|
139
139
|
selector: '[PopoverTrigger]',
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { input, computed,
|
|
2
|
+
import { input, computed, Component } from '@angular/core';
|
|
3
3
|
import { cn } from '@ojiepermana/angular-component/utils';
|
|
4
4
|
|
|
5
5
|
class ProgressComponent {
|
|
@@ -27,16 +27,17 @@ class ProgressComponent {
|
|
|
27
27
|
...(ngDevMode ? [{ debugName: "indicatorTransform" }] : /* istanbul ignore next */ []));
|
|
28
28
|
classes = computed(() => cn('relative h-2 w-full overflow-hidden rounded-full bg-secondary', this.class()), /* @ts-ignore */
|
|
29
29
|
...(ngDevMode ? [{ debugName: "classes" }] : /* istanbul ignore next */ []));
|
|
30
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.
|
|
31
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.
|
|
30
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.4", ngImport: i0, type: ProgressComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
31
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.4", type: ProgressComponent, isStandalone: true, selector: "ProgressBar", inputs: { value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: false, transformFunction: null }, max: { classPropertyName: "max", publicName: "max", isSignal: true, isRequired: false, transformFunction: null }, indeterminate: { classPropertyName: "indeterminate", publicName: "indeterminate", isSignal: true, isRequired: false, transformFunction: null }, ariaLabel: { classPropertyName: "ariaLabel", publicName: "aria-label", isSignal: true, isRequired: false, transformFunction: null }, ariaLabelledby: { classPropertyName: "ariaLabelledby", publicName: "aria-labelledby", isSignal: true, isRequired: false, transformFunction: null }, class: { classPropertyName: "class", publicName: "class", isSignal: true, isRequired: false, transformFunction: null } }, host: { properties: { "class": "classes()", "attr.role": "\"progressbar\"", "attr.aria-valuemin": "0", "attr.aria-valuemax": "max()", "attr.aria-valuenow": "indeterminate() ? null : clamped()", "attr.aria-label": "ariaLabel()", "attr.aria-labelledby": "ariaLabelledby()", "attr.data-state": "indeterminate() ? \"indeterminate\" : \"determinate\"" } }, ngImport: i0, template: `
|
|
32
32
|
<div
|
|
33
33
|
class="progress-indicator h-full w-full flex-1 bg-primary transition-transform"
|
|
34
|
-
[style.transform]="indicatorTransform()"
|
|
35
|
-
|
|
34
|
+
[style.transform]="indicatorTransform()"
|
|
35
|
+
></div>
|
|
36
|
+
`, isInline: true, styles: [":host{display:block}:host[data-state=indeterminate] .progress-indicator{animation:progress-indeterminate 1.5s cubic-bezier(.65,.815,.735,.395) infinite}@keyframes progress-indeterminate{0%{transform:translate(-100%)}to{transform:translate(100%)}}@media(prefers-reduced-motion:reduce){:host[data-state=indeterminate] .progress-indicator{animation:none}}\n"] });
|
|
36
37
|
}
|
|
37
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.
|
|
38
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.4", ngImport: i0, type: ProgressComponent, decorators: [{
|
|
38
39
|
type: Component,
|
|
39
|
-
args: [{ selector: 'ProgressBar',
|
|
40
|
+
args: [{ selector: 'ProgressBar', host: {
|
|
40
41
|
'[class]': 'classes()',
|
|
41
42
|
'[attr.role]': '"progressbar"',
|
|
42
43
|
'[attr.aria-valuemin]': '0',
|
|
@@ -48,7 +49,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.3", ngImpor
|
|
|
48
49
|
}, template: `
|
|
49
50
|
<div
|
|
50
51
|
class="progress-indicator h-full w-full flex-1 bg-primary transition-transform"
|
|
51
|
-
[style.transform]="indicatorTransform()"
|
|
52
|
+
[style.transform]="indicatorTransform()"
|
|
53
|
+
></div>
|
|
52
54
|
`, styles: [":host{display:block}:host[data-state=indeterminate] .progress-indicator{animation:progress-indeterminate 1.5s cubic-bezier(.65,.815,.735,.395) infinite}@keyframes progress-indeterminate{0%{transform:translate(-100%)}to{transform:translate(100%)}}@media(prefers-reduced-motion:reduce){:host[data-state=indeterminate] .progress-indicator{animation:none}}\n"] }]
|
|
53
55
|
}], propDecorators: { value: [{ type: i0.Input, args: [{ isSignal: true, alias: "value", required: false }] }], max: [{ type: i0.Input, args: [{ isSignal: true, alias: "max", required: false }] }], indeterminate: [{ type: i0.Input, args: [{ isSignal: true, alias: "indeterminate", required: false }] }], ariaLabel: [{ type: i0.Input, args: [{ isSignal: true, alias: "aria-label", required: false }] }], ariaLabelledby: [{ type: i0.Input, args: [{ isSignal: true, alias: "aria-labelledby", required: false }] }], class: [{ type: i0.Input, args: [{ isSignal: true, alias: "class", required: false }] }] } });
|
|
54
56
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { input, output, contentChildren, forwardRef, signal, computed,
|
|
2
|
+
import { input, output, contentChildren, forwardRef, signal, computed, Component, inject, viewChild } from '@angular/core';
|
|
3
3
|
import { NG_VALUE_ACCESSOR } from '@angular/forms';
|
|
4
4
|
import { uniqueId, cn } from '@ojiepermana/angular-component/utils';
|
|
5
5
|
|
|
@@ -66,15 +66,18 @@ class RadioGroupComponent {
|
|
|
66
66
|
setDisabledState(d) {
|
|
67
67
|
this.disabled.set(d);
|
|
68
68
|
}
|
|
69
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.
|
|
70
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "22.0.
|
|
69
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.4", ngImport: i0, type: RadioGroupComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
70
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "22.0.4", type: RadioGroupComponent, isStandalone: true, selector: "RadioGroup", inputs: { name: { classPropertyName: "name", publicName: "name", isSignal: true, isRequired: false, transformFunction: null }, orientation: { classPropertyName: "orientation", publicName: "orientation", isSignal: true, isRequired: false, transformFunction: null }, ariaLabel: { classPropertyName: "ariaLabel", publicName: "aria-label", isSignal: true, isRequired: false, transformFunction: null }, ariaLabelledby: { classPropertyName: "ariaLabelledby", publicName: "aria-labelledby", isSignal: true, isRequired: false, transformFunction: null }, ariaDescribedby: { classPropertyName: "ariaDescribedby", publicName: "aria-describedby", isSignal: true, isRequired: false, transformFunction: null }, ariaInvalid: { classPropertyName: "ariaInvalid", publicName: "aria-invalid", isSignal: true, isRequired: false, transformFunction: null }, class: { classPropertyName: "class", publicName: "class", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { valueChange: "valueChange" }, host: { attributes: { "role": "radiogroup" }, properties: { "class": "classes()", "attr.aria-label": "ariaLabel()", "attr.aria-labelledby": "ariaLabelledby()", "attr.aria-describedby": "ariaDescribedby()", "attr.aria-invalid": "ariaInvalidAttr()" } }, providers: [
|
|
71
|
+
{ provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => RadioGroupComponent), multi: true },
|
|
72
|
+
], queries: [{ propertyName: "radios", predicate: i0.forwardRef(() => RadioComponent), descendants: true, isSignal: true }], ngImport: i0, template: `<ng-content />`, isInline: true });
|
|
71
73
|
}
|
|
72
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.
|
|
74
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.4", ngImport: i0, type: RadioGroupComponent, decorators: [{
|
|
73
75
|
type: Component,
|
|
74
76
|
args: [{
|
|
75
77
|
selector: 'RadioGroup',
|
|
76
|
-
|
|
77
|
-
|
|
78
|
+
providers: [
|
|
79
|
+
{ provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => RadioGroupComponent), multi: true },
|
|
80
|
+
],
|
|
78
81
|
host: {
|
|
79
82
|
role: 'radiogroup',
|
|
80
83
|
'[class]': 'classes()',
|
|
@@ -114,8 +117,8 @@ class RadioComponent {
|
|
|
114
117
|
focus() {
|
|
115
118
|
this.ref().nativeElement.focus();
|
|
116
119
|
}
|
|
117
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.
|
|
118
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.
|
|
120
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.4", ngImport: i0, type: RadioComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
121
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.4", type: RadioComponent, isStandalone: true, selector: "Radio", inputs: { value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: true, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, class: { classPropertyName: "class", publicName: "class", isSignal: true, isRequired: false, transformFunction: null } }, host: { properties: { "class": "hostClasses()" } }, viewQueries: [{ propertyName: "ref", first: true, predicate: ["ref"], descendants: true, isSignal: true }], ngImport: i0, template: `
|
|
119
122
|
<label [class]="labelClasses()">
|
|
120
123
|
<input
|
|
121
124
|
#ref
|
|
@@ -126,7 +129,8 @@ class RadioComponent {
|
|
|
126
129
|
[checked]="selected()"
|
|
127
130
|
[disabled]="isDisabled()"
|
|
128
131
|
(change)="handleChange()"
|
|
129
|
-
(blur)="handleBlur()"
|
|
132
|
+
(blur)="handleBlur()"
|
|
133
|
+
/>
|
|
130
134
|
<span aria-hidden="true" [class]="circleClasses()">
|
|
131
135
|
@if (selected()) {
|
|
132
136
|
<span class="size-2 rounded-full bg-primary"></span>
|
|
@@ -134,13 +138,12 @@ class RadioComponent {
|
|
|
134
138
|
</span>
|
|
135
139
|
<ng-content />
|
|
136
140
|
</label>
|
|
137
|
-
`, isInline: true
|
|
141
|
+
`, isInline: true });
|
|
138
142
|
}
|
|
139
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.
|
|
143
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.4", ngImport: i0, type: RadioComponent, decorators: [{
|
|
140
144
|
type: Component,
|
|
141
145
|
args: [{
|
|
142
146
|
selector: 'Radio',
|
|
143
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
144
147
|
host: { '[class]': 'hostClasses()' },
|
|
145
148
|
template: `
|
|
146
149
|
<label [class]="labelClasses()">
|
|
@@ -153,7 +156,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.3", ngImpor
|
|
|
153
156
|
[checked]="selected()"
|
|
154
157
|
[disabled]="isDisabled()"
|
|
155
158
|
(change)="handleChange()"
|
|
156
|
-
(blur)="handleBlur()"
|
|
159
|
+
(blur)="handleBlur()"
|
|
160
|
+
/>
|
|
157
161
|
<span aria-hidden="true" [class]="circleClasses()">
|
|
158
162
|
@if (selected()) {
|
|
159
163
|
<span class="size-2 rounded-full bg-primary"></span>
|