@kouji-ui/components 0.1.3 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -6810,6 +6810,12 @@ class KjInputComponent {
|
|
|
6810
6810
|
...(ngDevMode ? [{ debugName: "invalid" }] : /* istanbul ignore next */ []));
|
|
6811
6811
|
disabled = input(false, /* @ts-ignore */
|
|
6812
6812
|
...(ngDevMode ? [{ debugName: "disabled" }] : /* istanbul ignore next */ []));
|
|
6813
|
+
/** Native `autocomplete` attribute passthrough. Empty string omits the attribute. */
|
|
6814
|
+
autocomplete = input('', /* @ts-ignore */
|
|
6815
|
+
...(ngDevMode ? [{ debugName: "autocomplete" }] : /* istanbul ignore next */ []));
|
|
6816
|
+
/** Native `inputmode` attribute passthrough. Empty string omits the attribute. */
|
|
6817
|
+
inputmode = input('', /* @ts-ignore */
|
|
6818
|
+
...(ngDevMode ? [{ debugName: "inputmode" }] : /* istanbul ignore next */ []));
|
|
6813
6819
|
innerInput;
|
|
6814
6820
|
/** Native `<input>` element, queried via template-ref. Used by callers
|
|
6815
6821
|
* (cell editors, focus-trapping consumers) that need to move keyboard
|
|
@@ -6833,7 +6839,7 @@ class KjInputComponent {
|
|
|
6833
6839
|
this.innerInput?.formCtrl.setDisabledState(isDisabled);
|
|
6834
6840
|
}
|
|
6835
6841
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: KjInputComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
6836
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "22.0.5", type: KjInputComponent, isStandalone: true, selector: "kj-input", inputs: { type: { classPropertyName: "type", publicName: "type", isSignal: true, isRequired: false, transformFunction: null }, variant: { classPropertyName: "variant", publicName: "variant", isSignal: true, isRequired: false, transformFunction: null }, kjSize: { classPropertyName: "kjSize", publicName: "kjSize", isSignal: true, isRequired: false, transformFunction: null }, value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: false, transformFunction: null }, placeholder: { classPropertyName: "placeholder", publicName: "placeholder", isSignal: true, isRequired: false, transformFunction: null }, invalid: { classPropertyName: "invalid", publicName: "invalid", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null } }, host: { properties: { "attr.data-type": "type()" }, styleAttribute: "display: contents;" }, providers: [
|
|
6842
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "22.0.5", type: KjInputComponent, isStandalone: true, selector: "kj-input", inputs: { type: { classPropertyName: "type", publicName: "type", isSignal: true, isRequired: false, transformFunction: null }, variant: { classPropertyName: "variant", publicName: "variant", isSignal: true, isRequired: false, transformFunction: null }, kjSize: { classPropertyName: "kjSize", publicName: "kjSize", isSignal: true, isRequired: false, transformFunction: null }, value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: false, transformFunction: null }, placeholder: { classPropertyName: "placeholder", publicName: "placeholder", isSignal: true, isRequired: false, transformFunction: null }, invalid: { classPropertyName: "invalid", publicName: "invalid", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, autocomplete: { classPropertyName: "autocomplete", publicName: "autocomplete", isSignal: true, isRequired: false, transformFunction: null }, inputmode: { classPropertyName: "inputmode", publicName: "inputmode", isSignal: true, isRequired: false, transformFunction: null } }, host: { properties: { "attr.data-type": "type()" }, styleAttribute: "display: contents;" }, providers: [
|
|
6837
6843
|
{
|
|
6838
6844
|
provide: NG_VALUE_ACCESSOR,
|
|
6839
6845
|
useExisting: forwardRef(() => KjInputComponent),
|
|
@@ -6847,6 +6853,8 @@ class KjInputComponent {
|
|
|
6847
6853
|
[type]="type()"
|
|
6848
6854
|
[value]="value()"
|
|
6849
6855
|
[placeholder]="placeholder()"
|
|
6856
|
+
[attr.autocomplete]="autocomplete() || null"
|
|
6857
|
+
[attr.inputmode]="inputmode() || null"
|
|
6850
6858
|
[attr.data-variant]="variant()"
|
|
6851
6859
|
[attr.data-size]="kjSize() === 'md' ? null : kjSize()"
|
|
6852
6860
|
[kjInvalid]="invalid()"
|
|
@@ -6870,6 +6878,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImpor
|
|
|
6870
6878
|
[type]="type()"
|
|
6871
6879
|
[value]="value()"
|
|
6872
6880
|
[placeholder]="placeholder()"
|
|
6881
|
+
[attr.autocomplete]="autocomplete() || null"
|
|
6882
|
+
[attr.inputmode]="inputmode() || null"
|
|
6873
6883
|
[attr.data-variant]="variant()"
|
|
6874
6884
|
[attr.data-size]="kjSize() === 'md' ? null : kjSize()"
|
|
6875
6885
|
[kjInvalid]="invalid()"
|
|
@@ -6879,7 +6889,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImpor
|
|
|
6879
6889
|
'style': 'display: contents;',
|
|
6880
6890
|
'[attr.data-type]': 'type()',
|
|
6881
6891
|
}, changeDetection: ChangeDetectionStrategy.OnPush, styles: ["@layer kj.component{.kj-input{--kj-input-bg: var(--kj-bg-field);--kj-input-fg: var(--kj-fg-default);--kj-input-border-color: var(--kj-border-default);--kj-input-border-style: solid;--kj-input-border-width: var(--kj-border);--kj-input-radius: var(--kj-radius-field);--kj-input-padding-x: var(--kj-space-md);--kj-input-padding-y: var(--kj-space-sm);--kj-input-font: var(--kj-font-sans);--kj-input-font-size: var(--kj-text-sm);--kj-input-placeholder-fg: var(--kj-fg-muted);--kj-input-height: 2.25rem;display:inline-flex;width:100%;height:var(--kj-input-height);background:var(--kj-input-bg);color:var(--kj-input-fg);border:var(--kj-input-border-width) var(--kj-input-border-style) var(--kj-input-border-color);border-radius:var(--kj-input-radius);padding:var(--kj-input-padding-y) var(--kj-input-padding-x);font:var(--kj-input-font-size) / 1.4 var(--kj-input-font);transition:var(--kj-transition)}.kj-input[data-size=xs]{--kj-input-height: 1.75rem;--kj-input-font-size: .75rem;--kj-input-padding-x: var(--kj-space-sm);--kj-input-padding-y: 0}.kj-input[data-size=sm]{--kj-input-height: 2rem;--kj-input-font-size: .8125rem}.kj-input[data-size=lg]{--kj-input-height: 2.75rem;--kj-input-font-size: 1rem}.kj-input[data-variant=sunken]{--kj-input-bg: var(--kj-bg-body)}.kj-input::placeholder{color:var(--kj-input-placeholder-fg)}.kj-input:focus-visible{outline:2px solid var(--kj-bg-primary);outline-offset:2px;--kj-input-border-color: var(--kj-border-focus, var(--kj-bg-primary))}.kj-input[aria-invalid=true]{--kj-input-border-color: var(--kj-border-danger, var(--kj-fg-danger))}.kj-input[aria-disabled=true],.kj-input:disabled{opacity:.55;cursor:not-allowed}.kj-input[type=color]{inline-size:44px;block-size:32px;padding:2px;cursor:pointer}}\n"] }]
|
|
6882
|
-
}], propDecorators: { type: [{ type: i0.Input, args: [{ isSignal: true, alias: "type", required: false }] }], variant: [{ type: i0.Input, args: [{ isSignal: true, alias: "variant", required: false }] }], kjSize: [{ type: i0.Input, args: [{ isSignal: true, alias: "kjSize", required: false }] }], value: [{ type: i0.Input, args: [{ isSignal: true, alias: "value", required: false }] }], placeholder: [{ type: i0.Input, args: [{ isSignal: true, alias: "placeholder", required: false }] }], invalid: [{ type: i0.Input, args: [{ isSignal: true, alias: "invalid", required: false }] }], disabled: [{ type: i0.Input, args: [{ isSignal: true, alias: "disabled", required: false }] }], innerInput: [{
|
|
6892
|
+
}], propDecorators: { type: [{ type: i0.Input, args: [{ isSignal: true, alias: "type", required: false }] }], variant: [{ type: i0.Input, args: [{ isSignal: true, alias: "variant", required: false }] }], kjSize: [{ type: i0.Input, args: [{ isSignal: true, alias: "kjSize", required: false }] }], value: [{ type: i0.Input, args: [{ isSignal: true, alias: "value", required: false }] }], placeholder: [{ type: i0.Input, args: [{ isSignal: true, alias: "placeholder", required: false }] }], invalid: [{ type: i0.Input, args: [{ isSignal: true, alias: "invalid", required: false }] }], disabled: [{ type: i0.Input, args: [{ isSignal: true, alias: "disabled", required: false }] }], autocomplete: [{ type: i0.Input, args: [{ isSignal: true, alias: "autocomplete", required: false }] }], inputmode: [{ type: i0.Input, args: [{ isSignal: true, alias: "inputmode", required: false }] }], innerInput: [{
|
|
6883
6893
|
type: ViewChild,
|
|
6884
6894
|
args: [KjInput, { static: true }]
|
|
6885
6895
|
}], nativeInput: [{ type: i0.ViewChild, args: ['nativeInput', { isSignal: true }] }] } });
|
|
@@ -6980,7 +6990,7 @@ class KjIconGalleryExample {
|
|
|
6980
6990
|
<div class="visually-hidden" role="status" aria-live="polite">
|
|
6981
6991
|
{{ announcement() }}
|
|
6982
6992
|
</div>
|
|
6983
|
-
`, isInline: true, styles: ["kj-icon-gallery-example{display:block}kj-icon-gallery-example .gallery-header{display:flex;flex-direction:column;gap:var(--kj-space-sm);margin-bottom:var(--kj-space-lg)}kj-icon-gallery-example .gallery-title{display:flex;align-items:baseline;justify-content:space-between;gap:var(--kj-space-md);flex-wrap:wrap}kj-icon-gallery-example .gallery-title h3{margin:0;font-size:var(--kj-font-size-lg, 1.125rem);font-weight:600;color:var(--kj-fg-default, currentColor)}kj-icon-gallery-example .gallery-count{font-size:var(--kj-font-size-sm, .875rem);color:var(--kj-fg-muted, currentColor);font-variant-numeric:tabular-nums}kj-icon-gallery-example .gallery-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(120px,1fr));gap:var(--kj-space-md)}kj-icon-gallery-example .gallery-tile{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:var(--kj-space-xs);min-height:88px;padding:var(--kj-space-md);border:1px solid var(--kj-border-default, rgba(0, 0, 0, .12));border-radius:var(--kj-radius-md, 8px);background:var(--kj-bg-body, transparent);color:inherit;font:inherit;cursor:pointer;transition:background-color .12s ease,border-color .12s ease}kj-icon-gallery-example .gallery-tile:hover,kj-icon-gallery-example .gallery-tile:focus-visible{background:var(--kj-bg-surface, rgba(0, 0, 0, .04));border-color:var(--kj-border-default, rgba(0, 0, 0, .24));outline:none}kj-icon-gallery-example .gallery-tile:focus-visible{box-shadow:0 0 0 2px var(--kj-bg-primary, #5b8def)}kj-icon-gallery-example .gallery-tile i.kj-icon{font-size:24px}kj-icon-gallery-example .gallery-tile .name{font-size:11px;letter-spacing:.04em;text-transform:lowercase;color:var(--kj-fg-muted, currentColor);word-break:break-all;text-align:center;line-height:1.2}kj-icon-gallery-example .gallery-empty{text-align:center;color:var(--kj-fg-muted, currentColor);border:1px dashed var(--kj-border-default, rgba(0, 0, 0, .12));border-radius:var(--kj-radius-md, 8px)}kj-icon-gallery-example .visually-hidden{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}\n"], dependencies: [{ kind: "ngmodule", type: FormsModule }, { 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"] }, { kind: "directive", type: KjIconDirective, selector: "span[kjIcon], i[kjIcon]", inputs: ["kjIcon", "kjIconLabel", "kjIconColor", "kjIconSize"] }, { kind: "component", type: KjInputComponent, selector: "kj-input", inputs: ["type", "variant", "kjSize", "value", "placeholder", "invalid", "disabled"] }, { kind: "component", type: KjButtonComponent, selector: "kj-button", inputs: ["kjVariant", "kjSize", "kjDisabled", "kjLoading", "kjFullWidth", "kjPressed", "kjType", "kjAriaLabel"], outputs: ["kjPressedChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
6993
|
+
`, isInline: true, styles: ["kj-icon-gallery-example{display:block}kj-icon-gallery-example .gallery-header{display:flex;flex-direction:column;gap:var(--kj-space-sm);margin-bottom:var(--kj-space-lg)}kj-icon-gallery-example .gallery-title{display:flex;align-items:baseline;justify-content:space-between;gap:var(--kj-space-md);flex-wrap:wrap}kj-icon-gallery-example .gallery-title h3{margin:0;font-size:var(--kj-font-size-lg, 1.125rem);font-weight:600;color:var(--kj-fg-default, currentColor)}kj-icon-gallery-example .gallery-count{font-size:var(--kj-font-size-sm, .875rem);color:var(--kj-fg-muted, currentColor);font-variant-numeric:tabular-nums}kj-icon-gallery-example .gallery-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(120px,1fr));gap:var(--kj-space-md)}kj-icon-gallery-example .gallery-tile{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:var(--kj-space-xs);min-height:88px;padding:var(--kj-space-md);border:1px solid var(--kj-border-default, rgba(0, 0, 0, .12));border-radius:var(--kj-radius-md, 8px);background:var(--kj-bg-body, transparent);color:inherit;font:inherit;cursor:pointer;transition:background-color .12s ease,border-color .12s ease}kj-icon-gallery-example .gallery-tile:hover,kj-icon-gallery-example .gallery-tile:focus-visible{background:var(--kj-bg-surface, rgba(0, 0, 0, .04));border-color:var(--kj-border-default, rgba(0, 0, 0, .24));outline:none}kj-icon-gallery-example .gallery-tile:focus-visible{box-shadow:0 0 0 2px var(--kj-bg-primary, #5b8def)}kj-icon-gallery-example .gallery-tile i.kj-icon{font-size:24px}kj-icon-gallery-example .gallery-tile .name{font-size:11px;letter-spacing:.04em;text-transform:lowercase;color:var(--kj-fg-muted, currentColor);word-break:break-all;text-align:center;line-height:1.2}kj-icon-gallery-example .gallery-empty{text-align:center;color:var(--kj-fg-muted, currentColor);border:1px dashed var(--kj-border-default, rgba(0, 0, 0, .12));border-radius:var(--kj-radius-md, 8px)}kj-icon-gallery-example .visually-hidden{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}\n"], dependencies: [{ kind: "ngmodule", type: FormsModule }, { 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"] }, { kind: "directive", type: KjIconDirective, selector: "span[kjIcon], i[kjIcon]", inputs: ["kjIcon", "kjIconLabel", "kjIconColor", "kjIconSize"] }, { kind: "component", type: KjInputComponent, selector: "kj-input", inputs: ["type", "variant", "kjSize", "value", "placeholder", "invalid", "disabled", "autocomplete", "inputmode"] }, { kind: "component", type: KjButtonComponent, selector: "kj-button", inputs: ["kjVariant", "kjSize", "kjDisabled", "kjLoading", "kjFullWidth", "kjPressed", "kjType", "kjAriaLabel"], outputs: ["kjPressedChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
6984
6994
|
}
|
|
6985
6995
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: KjIconGalleryExample, decorators: [{
|
|
6986
6996
|
type: Component,
|
|
@@ -12044,7 +12054,7 @@ class KjTextEditor {
|
|
|
12044
12054
|
(keydown.escape)="cancel(); $event.stopPropagation()"
|
|
12045
12055
|
(focusout)="onFocusOut($event)"
|
|
12046
12056
|
/>
|
|
12047
|
-
`, isInline: true, dependencies: [{ kind: "component", type: KjInputComponent, selector: "kj-input", inputs: ["type", "variant", "kjSize", "value", "placeholder", "invalid", "disabled"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
12057
|
+
`, isInline: true, dependencies: [{ kind: "component", type: KjInputComponent, selector: "kj-input", inputs: ["type", "variant", "kjSize", "value", "placeholder", "invalid", "disabled", "autocomplete", "inputmode"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
12048
12058
|
}
|
|
12049
12059
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: KjTextEditor, decorators: [{
|
|
12050
12060
|
type: Component,
|
|
@@ -12647,7 +12657,7 @@ class KjTextFilter {
|
|
|
12647
12657
|
[formControl]="control"
|
|
12648
12658
|
/>
|
|
12649
12659
|
</div>
|
|
12650
|
-
`, isInline: true, styles: [".kj-text-filter,.kj-number-filter,.kj-date-filter,.kj-select-filter{display:flex;align-items:center;gap:var(--kj-base-space-xs, .25rem);width:100%}.kj-text-filter__label,.kj-select-filter__label{display:flex;width:100%;align-items:center}.kj-number-filter__operator{flex:0 0 auto;min-width:4.25rem}.kj-number-filter__input{flex:1 1 0;min-width:0}.kj-date-filter__label{display:flex;flex:1 1 0;min-width:0;align-items:center}.kj-date-filter .kj-date-picker{flex:1 1 0;min-width:0}.kj-select-filter .kj-select{width:100%}\n"], dependencies: [{ kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "component", type: KjInputComponent, selector: "kj-input", inputs: ["type", "variant", "kjSize", "value", "placeholder", "invalid", "disabled"] }, { kind: "directive", type: KjVisuallyHidden, selector: "[kjVisuallyHidden]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
12660
|
+
`, isInline: true, styles: [".kj-text-filter,.kj-number-filter,.kj-date-filter,.kj-select-filter{display:flex;align-items:center;gap:var(--kj-base-space-xs, .25rem);width:100%}.kj-text-filter__label,.kj-select-filter__label{display:flex;width:100%;align-items:center}.kj-number-filter__operator{flex:0 0 auto;min-width:4.25rem}.kj-number-filter__input{flex:1 1 0;min-width:0}.kj-date-filter__label{display:flex;flex:1 1 0;min-width:0;align-items:center}.kj-date-filter .kj-date-picker{flex:1 1 0;min-width:0}.kj-select-filter .kj-select{width:100%}\n"], dependencies: [{ kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "component", type: KjInputComponent, selector: "kj-input", inputs: ["type", "variant", "kjSize", "value", "placeholder", "invalid", "disabled", "autocomplete", "inputmode"] }, { kind: "directive", type: KjVisuallyHidden, selector: "[kjVisuallyHidden]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
12651
12661
|
}
|
|
12652
12662
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: KjTextFilter, decorators: [{
|
|
12653
12663
|
type: Component,
|
|
@@ -14754,7 +14764,7 @@ class KjTableToolbarComponent {
|
|
|
14754
14764
|
<ng-content select="[kjBulkAction]" />
|
|
14755
14765
|
</div>
|
|
14756
14766
|
}
|
|
14757
|
-
`, isInline: true, styles: [":host{display:flex;flex-wrap:nowrap;align-items:center;gap:var(--kj-base-space-md, .75rem);padding:var(--kj-base-space-md, .75rem)}.kj-table-toolbar__filter{flex:1 1 16rem;min-width:6rem;display:flex;align-items:center}.kj-table-toolbar__filter .kj-input{width:100%}.kj-table-toolbar__filter .kj-visually-hidden{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.kj-table-toolbar__bulk{display:flex;gap:var(--kj-base-space-sm, .5rem);margin-inline-start:auto}\n"], dependencies: [{ kind: "component", type: KjInputComponent, selector: "kj-input", inputs: ["type", "variant", "kjSize", "value", "placeholder", "invalid", "disabled"] }, { kind: "component", type: KjButtonComponent, selector: "kj-button", inputs: ["kjVariant", "kjSize", "kjDisabled", "kjLoading", "kjFullWidth", "kjPressed", "kjType", "kjAriaLabel"], outputs: ["kjPressedChange"] }, { kind: "component", type: KjButtonGroupComponent, selector: "kj-button-group", inputs: ["kjOrientation", "kjVariant", "kjSize", "kjDisabled", "kjAriaLabel"] }, { kind: "component", type: KjCheckboxComponent, selector: "kj-checkbox", inputs: ["checked", "disabled", "indeterminate", "size"], outputs: ["checkedChange"] }, { kind: "directive", type: KjDropdownMenuTrigger, selector: "[kjDropdownMenuTrigger]", inputs: ["kjTrigger", "kjMount", "kjDisabled", "kjCloseOnSelect"], outputs: ["kjMenuClosed"], exportAs: ["kjDropdownMenuTrigger"] }, { kind: "component", type: KjDropdownMenuContent, selector: "kj-dropdown-menu-content", inputs: ["kjSide", "kjAlign", "kjMount"] }, { kind: "directive", type: KjDropdownMenuItem, selector: "[kjDropdownMenuItem]", outputs: ["kjSelect"] }, { kind: "directive", type: KjDropdownMenuSeparator, selector: "[kjDropdownMenuSeparator]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
14767
|
+
`, isInline: true, styles: [":host{display:flex;flex-wrap:nowrap;align-items:center;gap:var(--kj-base-space-md, .75rem);padding:var(--kj-base-space-md, .75rem)}.kj-table-toolbar__filter{flex:1 1 16rem;min-width:6rem;display:flex;align-items:center}.kj-table-toolbar__filter .kj-input{width:100%}.kj-table-toolbar__filter .kj-visually-hidden{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.kj-table-toolbar__bulk{display:flex;gap:var(--kj-base-space-sm, .5rem);margin-inline-start:auto}\n"], dependencies: [{ kind: "component", type: KjInputComponent, selector: "kj-input", inputs: ["type", "variant", "kjSize", "value", "placeholder", "invalid", "disabled", "autocomplete", "inputmode"] }, { kind: "component", type: KjButtonComponent, selector: "kj-button", inputs: ["kjVariant", "kjSize", "kjDisabled", "kjLoading", "kjFullWidth", "kjPressed", "kjType", "kjAriaLabel"], outputs: ["kjPressedChange"] }, { kind: "component", type: KjButtonGroupComponent, selector: "kj-button-group", inputs: ["kjOrientation", "kjVariant", "kjSize", "kjDisabled", "kjAriaLabel"] }, { kind: "component", type: KjCheckboxComponent, selector: "kj-checkbox", inputs: ["checked", "disabled", "indeterminate", "size"], outputs: ["checkedChange"] }, { kind: "directive", type: KjDropdownMenuTrigger, selector: "[kjDropdownMenuTrigger]", inputs: ["kjTrigger", "kjMount", "kjDisabled", "kjCloseOnSelect"], outputs: ["kjMenuClosed"], exportAs: ["kjDropdownMenuTrigger"] }, { kind: "component", type: KjDropdownMenuContent, selector: "kj-dropdown-menu-content", inputs: ["kjSide", "kjAlign", "kjMount"] }, { kind: "directive", type: KjDropdownMenuItem, selector: "[kjDropdownMenuItem]", outputs: ["kjSelect"] }, { kind: "directive", type: KjDropdownMenuSeparator, selector: "[kjDropdownMenuSeparator]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
14758
14768
|
}
|
|
14759
14769
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: KjTableToolbarComponent, decorators: [{
|
|
14760
14770
|
type: Component,
|