@libs-ui/components-inputs-valid 0.2.357-8 → 0.2.357-9

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.
Files changed (2) hide show
  1. package/README.md +1 -9
  2. package/package.json +10 -10
package/README.md CHANGED
@@ -391,7 +391,7 @@ export class ContactFormComponent {
391
391
 
392
392
  | Output | Type | Mô tả | Handler TS | Binding HTML |
393
393
  |---|---|---|---|---|
394
- | `(outChangeValueByButtonUpDown)` | `void` | Phát ra khi giá trị thay đổi bởi nút tăng/giảm | `handlerChangeByUpDown(): void { event?.stopPropagation(); }` | `(outChangeValueByButtonUpDown)="handlerChangeByUpDown()"` |
394
+ | `(outChangeValueByButtonUpDown)` | `void` | Phát ra khi giá trị thay đổi bởi nút tăng/giảm | `handlerChangeByUpDown(): void { this.refreshSummary(); }` | `(outChangeValueByButtonUpDown)="handlerChangeByUpDown()"` |
395
395
  | `(outClickButtonLabel)` | `IButton` | Phát ra khi người dùng click vào button trong label | `handlerClickButtonLabel(button: IButton): void { button; }` | `(outClickButtonLabel)="handlerClickButtonLabel($event)"` |
396
396
  | `(outEnterInputEvent)` | `IEvent` | Phát ra khi nhấn phím Enter trong ô nhập liệu | `handlerEnterInput(e: IEvent): void { e; }` | `(outEnterInputEvent)="handlerEnterInput($event)"` |
397
397
  | `(outFocusAndBlur)` | `IFocusAndBlurEvent` | Phát ra khi input được focus hoặc blur | `handlerFocusAndBlur(e: IFocusAndBlurEvent): void { e; }` | `(outFocusAndBlur)="handlerFocusAndBlur($event)"` |
@@ -562,11 +562,3 @@ protected readonly checkUsernameAvailable: TYPE_FUNCTION_INPUT_VALID = async (va
562
562
  ⚠️ **`debounceTimeValidate` chỉ áp dụng cho `outValueChange`**: Validate vẫn chạy ngay khi gọi `checkIsValid()` programmatically, bất kể debounce.
563
563
 
564
564
  ⚠️ **Selector đúng là `libs_ui-components-inputs-valid`**: Lưu ý dùng dấu gạch dưới `_` không phải gạch ngang `-` sau `libs_ui`.
565
-
566
- ## Demo
567
-
568
- ```bash
569
- npx nx serve core-ui
570
- ```
571
-
572
- Truy cập: http://localhost:4500 và tìm phần demo của `inputs-valid` trong menu Components.
package/package.json CHANGED
@@ -1,17 +1,17 @@
1
1
  {
2
2
  "name": "@libs-ui/components-inputs-valid",
3
- "version": "0.2.357-8",
3
+ "version": "0.2.357-9",
4
4
  "peerDependencies": {
5
5
  "@angular/core": ">=18.0.0",
6
- "@libs-ui/components-inputs-input": "0.2.357-8",
7
- "@libs-ui/interfaces-types": "0.2.357-8",
8
- "@libs-ui/components-buttons-button": "0.2.357-8",
9
- "@libs-ui/components-checkbox-single": "0.2.357-8",
10
- "@libs-ui/components-label": "0.2.357-8",
11
- "@libs-ui/components-popover": "0.2.357-8",
12
- "@libs-ui/components-radio-single": "0.2.357-8",
13
- "@libs-ui/components-switch": "0.2.357-8",
14
- "@libs-ui/utils": "0.2.357-8",
6
+ "@libs-ui/components-inputs-input": "0.2.357-9",
7
+ "@libs-ui/interfaces-types": "0.2.357-9",
8
+ "@libs-ui/components-buttons-button": "0.2.357-9",
9
+ "@libs-ui/components-checkbox-single": "0.2.357-9",
10
+ "@libs-ui/components-label": "0.2.357-9",
11
+ "@libs-ui/components-popover": "0.2.357-9",
12
+ "@libs-ui/components-radio-single": "0.2.357-9",
13
+ "@libs-ui/components-switch": "0.2.357-9",
14
+ "@libs-ui/utils": "0.2.357-9",
15
15
  "@ngx-translate/core": "^15.0.0"
16
16
  },
17
17
  "sideEffects": false,