@koobiq/components 17.8.2 → 17.8.3
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/esm2022/core/version.mjs +2 -2
- package/esm2022/input/input-number.mjs +3 -3
- package/esm2022/input/input.mjs +3 -3
- package/esm2022/tree/tree-option.component.mjs +3 -2
- package/esm2022/tree-select/tree-select.component.mjs +10 -3
- package/fesm2022/koobiq-components-core.mjs +1 -1
- package/fesm2022/koobiq-components-core.mjs.map +1 -1
- package/fesm2022/koobiq-components-input.mjs +4 -4
- package/fesm2022/koobiq-components-input.mjs.map +1 -1
- package/fesm2022/koobiq-components-tree-select.mjs +9 -2
- package/fesm2022/koobiq-components-tree-select.mjs.map +1 -1
- package/fesm2022/koobiq-components-tree.mjs +2 -1
- package/fesm2022/koobiq-components-tree.mjs.map +1 -1
- package/input/input-number.d.ts +1 -1
- package/input/input.d.ts +1 -1
- package/package.json +4 -4
- package/schematics/ng-add/index.js +2 -2
- package/tree/tree-option.component.d.ts +1 -0
- package/tree-select/tree-select.component.d.ts +2 -0
package/input/input-number.d.ts
CHANGED
|
@@ -81,5 +81,5 @@ export declare class KbqNumberInput implements KbqFormFieldControl<any>, Control
|
|
|
81
81
|
private updateLocaleParams;
|
|
82
82
|
private checkAndNormalizeLocalizedNumber;
|
|
83
83
|
static ɵfac: i0.ɵɵFactoryDeclaration<KbqNumberInput, [null, null, { attribute: "step"; }, { attribute: "big-step"; }, { attribute: "min"; }, { attribute: "max"; }, { optional: true; }]>;
|
|
84
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<KbqNumberInput, "input[
|
|
84
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<KbqNumberInput, "input[kbqNumberInput]", ["kbqNumericalInput"], { "bigStep": { "alias": "bigStep"; "required": false; }; "step": { "alias": "step"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "withThousandSeparator": { "alias": "withThousandSeparator"; "required": false; }; "startFormattingFrom": { "alias": "startFormattingFrom"; "required": false; }; "value": { "alias": "value"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, {}, never, never, false, never>;
|
|
85
85
|
}
|
package/input/input.d.ts
CHANGED
|
@@ -109,7 +109,7 @@ export declare class KbqInput extends KbqInputMixinBase implements KbqFormFieldC
|
|
|
109
109
|
/** Checks whether the input is invalid based on the native validation. */
|
|
110
110
|
protected isBadInput(): boolean;
|
|
111
111
|
static ɵfac: i0.ɵɵFactoryDeclaration<KbqInput, [null, { optional: true; self: true; }, { optional: true; self: true; }, { optional: true; }, { optional: true; }, null, { optional: true; self: true; }]>;
|
|
112
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<KbqInput, "input[kbqInput]", ["kbqInput"], { "errorStateMatcher": { "alias": "errorStateMatcher"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "id": { "alias": "id"; "required": false; }; "required": { "alias": "required"; "required": false; }; "type": { "alias": "type"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, never, false, never>;
|
|
112
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<KbqInput, "input[kbqInput],input[kbqNumberInput]", ["kbqInput"], { "errorStateMatcher": { "alias": "errorStateMatcher"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "id": { "alias": "id"; "required": false; }; "required": { "alias": "required"; "required": false; }; "type": { "alias": "type"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, never, false, never>;
|
|
113
113
|
}
|
|
114
114
|
export declare class KbqInputMono {
|
|
115
115
|
static ɵfac: i0.ɵɵFactoryDeclaration<KbqInputMono, never>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@koobiq/components",
|
|
3
|
-
"version": "17.8.
|
|
3
|
+
"version": "17.8.3",
|
|
4
4
|
"description": "koobiq",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -23,9 +23,9 @@
|
|
|
23
23
|
"peerDependencies": {
|
|
24
24
|
"@angular/cdk": "^17.0.0",
|
|
25
25
|
"@angular/forms": "^17.0.0",
|
|
26
|
-
"@koobiq/cdk": "17.8.
|
|
27
|
-
"@koobiq/angular-moment-adapter": "17.8.
|
|
28
|
-
"@koobiq/angular-luxon-adapter": "17.8.
|
|
26
|
+
"@koobiq/cdk": "17.8.3",
|
|
27
|
+
"@koobiq/angular-moment-adapter": "17.8.3",
|
|
28
|
+
"@koobiq/angular-luxon-adapter": "17.8.3",
|
|
29
29
|
"@koobiq/date-formatter": "^3.1.2",
|
|
30
30
|
"@koobiq/icons": "^7.1.0",
|
|
31
31
|
"@koobiq/tokens-builder": "3.5.1",
|
|
@@ -52,8 +52,8 @@ function ngAdd(options) {
|
|
|
52
52
|
}
|
|
53
53
|
// Installing dependencies
|
|
54
54
|
addPackageToPackageJson(tree, '@angular/cdk', "^17.2.0");
|
|
55
|
-
addPackageToPackageJson(tree, '@koobiq/cdk', "^17.8.
|
|
56
|
-
addPackageToPackageJson(tree, '@koobiq/angular-luxon-adapter', "^17.8.
|
|
55
|
+
addPackageToPackageJson(tree, '@koobiq/cdk', "^17.8.3");
|
|
56
|
+
addPackageToPackageJson(tree, '@koobiq/angular-luxon-adapter', "^17.8.3");
|
|
57
57
|
addPackageToPackageJson(tree, '@koobiq/date-formatter', "^3.1.2");
|
|
58
58
|
addPackageToPackageJson(tree, '@koobiq/date-adapter', "^3.1.2");
|
|
59
59
|
addPackageToPackageJson(tree, '@koobiq/icons', "^7.1.1");
|
|
@@ -45,6 +45,7 @@ export declare class KbqTreeOption extends KbqTreeNode<KbqTreeOption> implements
|
|
|
45
45
|
set showCheckbox(value: any);
|
|
46
46
|
private _showCheckbox;
|
|
47
47
|
readonly onSelectionChange: EventEmitter<KbqTreeOptionChange>;
|
|
48
|
+
readonly userInteraction: EventEmitter<void>;
|
|
48
49
|
get selected(): boolean;
|
|
49
50
|
set selected(value: boolean);
|
|
50
51
|
private _selected;
|
|
@@ -119,6 +119,8 @@ export declare class KbqTreeSelect extends KbqTreeSelectMixinBase implements Aft
|
|
|
119
119
|
sortComparator: (a: KbqTreeOption, b: KbqTreeOption, options: KbqTreeOption[]) => number;
|
|
120
120
|
/** Combined stream of all of the child options' change events. */
|
|
121
121
|
readonly optionSelectionChanges: Observable<KbqTreeSelectChange>;
|
|
122
|
+
/** Combined stream of all of the child options userInteraction events. */
|
|
123
|
+
readonly userInteractionChanges: Observable<void>;
|
|
122
124
|
get placeholder(): string;
|
|
123
125
|
set placeholder(value: string);
|
|
124
126
|
private _placeholder;
|