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="relative w-64">
13710
- <input type="text" [(ngModel)]="searchText" placeholder="Search shortcuts"
13711
- class="w-full h-8 px-3 rounded-md border border-outline-gray-2 bg-surface-base text-[13px] text-ink-gray-8 focus:outline-none focus:ring-1 focus:ring-outline-gray-4 focus:border-outline-gray-4 transition-colors">
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: "directive", type: i1.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.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { 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"] }] });
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="relative w-64">
13755
- <input type="text" [(ngModel)]="searchText" placeholder="Search shortcuts"
13756
- class="w-full h-8 px-3 rounded-md border border-outline-gray-2 bg-surface-base text-[13px] text-ink-gray-8 focus:outline-none focus:ring-1 focus:ring-outline-gray-4 focus:border-outline-gray-4 transition-colors">
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