orbiq-neural-ui-kit 1.0.28 → 1.0.29
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.
|
@@ -13706,9 +13706,15 @@ class NeuralKeyboardShortcutsDialogComponent {
|
|
|
13706
13706
|
<neural-dialog [(openModel)]="openModel" size="4xl" [hasTitleSlot]="true" [hasDefaultSlot]="true">
|
|
13707
13707
|
<div title class="flex items-center justify-between w-full pr-4">
|
|
13708
13708
|
<h3 class="text-[16px] font-semibold text-ink-gray-9">Keyboard Shortcuts</h3>
|
|
13709
|
-
<div class="
|
|
13710
|
-
<input
|
|
13711
|
-
|
|
13709
|
+
<div class="w-64">
|
|
13710
|
+
<neural-text-input
|
|
13711
|
+
[(valueModel)]="searchText"
|
|
13712
|
+
placeholder="Search shortcuts"
|
|
13713
|
+
variant="outline"
|
|
13714
|
+
size="sm"
|
|
13715
|
+
>
|
|
13716
|
+
<span prefix><i class="lucide-search size-4 text-ink-gray-4"></i></span>
|
|
13717
|
+
</neural-text-input>
|
|
13712
13718
|
</div>
|
|
13713
13719
|
</div>
|
|
13714
13720
|
|
|
@@ -13739,21 +13745,27 @@ class NeuralKeyboardShortcutsDialogComponent {
|
|
|
13739
13745
|
}
|
|
13740
13746
|
</div>
|
|
13741
13747
|
</neural-dialog>
|
|
13742
|
-
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "
|
|
13748
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "component", type: NeuralDialogComponent, selector: "neural-dialog", inputs: ["openModel", "title", "message", "icon", "size", "position", "paddingTop", "actions", "dismissible", "showCloseButton", "bare", "hasTitleSlot", "hasActionsSlot", "hasDefaultSlot"], outputs: ["openModelChange"] }, { kind: "component", type: NeuralKeyboardShortcutComponent, selector: "neural-keyboard-shortcut", inputs: ["combo", "bg", "showPlus", "useIcons"] }, { kind: "component", type: NeuralTextInputComponent, selector: "neural-text-input", inputs: ["valueModel", "type", "size", "variant", "placeholder", "disabled", "readonly", "required", "label", "description", "error", "id", "debounce", "wrapperClass", "wrapperStyle", "hasLabelSlot", "hasDescriptionSlot", "hasPrefixSlot", "hasSuffixSlot"], outputs: ["valueModelChange", "debounceChange"] }] });
|
|
13743
13749
|
}
|
|
13744
13750
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.4", ngImport: i0, type: NeuralKeyboardShortcutsDialogComponent, decorators: [{
|
|
13745
13751
|
type: Component,
|
|
13746
13752
|
args: [{
|
|
13747
13753
|
selector: 'neural-keyboard-shortcuts-dialog',
|
|
13748
13754
|
standalone: true,
|
|
13749
|
-
imports: [CommonModule, FormsModule, NeuralDialogComponent, NeuralKeyboardShortcutComponent],
|
|
13755
|
+
imports: [CommonModule, FormsModule, NeuralDialogComponent, NeuralKeyboardShortcutComponent, NeuralTextInputComponent],
|
|
13750
13756
|
template: `
|
|
13751
13757
|
<neural-dialog [(openModel)]="openModel" size="4xl" [hasTitleSlot]="true" [hasDefaultSlot]="true">
|
|
13752
13758
|
<div title class="flex items-center justify-between w-full pr-4">
|
|
13753
13759
|
<h3 class="text-[16px] font-semibold text-ink-gray-9">Keyboard Shortcuts</h3>
|
|
13754
|
-
<div class="
|
|
13755
|
-
<input
|
|
13756
|
-
|
|
13760
|
+
<div class="w-64">
|
|
13761
|
+
<neural-text-input
|
|
13762
|
+
[(valueModel)]="searchText"
|
|
13763
|
+
placeholder="Search shortcuts"
|
|
13764
|
+
variant="outline"
|
|
13765
|
+
size="sm"
|
|
13766
|
+
>
|
|
13767
|
+
<span prefix><i class="lucide-search size-4 text-ink-gray-4"></i></span>
|
|
13768
|
+
</neural-text-input>
|
|
13757
13769
|
</div>
|
|
13758
13770
|
</div>
|
|
13759
13771
|
|