@koobiq/components 17.8.2 → 17.8.4
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/core/styles/typography/_typography.scss +15 -0
- 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/prebuilt-themes/dark-theme.css +1 -1
- package/prebuilt-themes/light-theme.css +1 -1
- 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.4",
|
|
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.4",
|
|
27
|
+
"@koobiq/angular-moment-adapter": "17.8.4",
|
|
28
|
+
"@koobiq/angular-luxon-adapter": "17.8.4",
|
|
29
29
|
"@koobiq/date-formatter": "^3.1.2",
|
|
30
30
|
"@koobiq/icons": "^7.1.0",
|
|
31
31
|
"@koobiq/tokens-builder": "3.5.1",
|