@nettyapps/ntyui 21.1.6 → 21.1.8
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nettyapps/ntyui",
|
|
3
|
-
"version": "21.1.
|
|
3
|
+
"version": "21.1.8",
|
|
4
4
|
"description": "This library contains the common UI components for the netty projects. This components should not have any dependencies out side of this library. The ntyui component library provides modern and reusable UI components for Angular applications. Developed with Material Design principles in mind, this library helps your application maintain a consistent and aesthetic look.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -240,6 +240,13 @@ declare class NettyUISearchInput extends UiBase {
|
|
|
240
240
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<NettyUISearchInput, "ntyui-search-input", never, {}, { "search": "search"; }, never, never, true, never>;
|
|
241
241
|
}
|
|
242
242
|
|
|
243
|
+
declare class NettyUIBarcodeInput extends UiBase {
|
|
244
|
+
onEnter: _angular_core.OutputEmitterRef<string>;
|
|
245
|
+
handleKeyUpEnter(): void;
|
|
246
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<NettyUIBarcodeInput, never>;
|
|
247
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<NettyUIBarcodeInput, "ntyui-barcode-input", never, {}, { "onEnter": "onEnter"; }, never, never, true, never>;
|
|
248
|
+
}
|
|
249
|
+
|
|
243
250
|
interface NettyEnum {
|
|
244
251
|
value: number;
|
|
245
252
|
text: string;
|
|
@@ -338,7 +345,7 @@ declare class NettyUIColorPicker {
|
|
|
338
345
|
hasCustomColors: _angular_core.Signal<boolean>;
|
|
339
346
|
/**
|
|
340
347
|
* Handles changes from the text input field, updating the model and emitting the event.
|
|
341
|
-
* @param newColor The new color value
|
|
348
|
+
* @param newColor The new color value
|
|
342
349
|
*/
|
|
343
350
|
onInputChange(newColor: string): void;
|
|
344
351
|
/**
|
|
@@ -393,5 +400,5 @@ declare class NettyEnumStorageProxy {
|
|
|
393
400
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<NettyEnumStorageProxy>;
|
|
394
401
|
}
|
|
395
402
|
|
|
396
|
-
export { NettyEnumStorageProxy, NettyEnumValues, NettyUIButton, NettyUICarousel, NettyUICheckboxToggle, NettyUIColorPicker, NettyUIDatePicker, NettyUIDateTime, NettyUIEmailInput, NettyUIFilterButton, NettyUIMaskedInput, NettyUINumberInput, NettyUISearchInput, NettyUISelect, NettyUITextInput, NettyUITimePicker, NettyUITree, NettyUIVisibleSwitchButton, NettyuUIDateTimeRange, Ntyui, NtyuiModule, UiBase };
|
|
403
|
+
export { NettyEnumStorageProxy, NettyEnumValues, NettyUIBarcodeInput, NettyUIButton, NettyUICarousel, NettyUICheckboxToggle, NettyUIColorPicker, NettyUIDatePicker, NettyUIDateTime, NettyUIEmailInput, NettyUIFilterButton, NettyUIMaskedInput, NettyUINumberInput, NettyUISearchInput, NettyUISelect, NettyUITextInput, NettyUITimePicker, NettyUITree, NettyUIVisibleSwitchButton, NettyuUIDateTimeRange, Ntyui, NtyuiModule, UiBase };
|
|
397
404
|
export type { NettyEnum, SelectionMode, TreeNode };
|