@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
|
@@ -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.4");
|
|
56
|
+
addPackageToPackageJson(tree, '@koobiq/angular-luxon-adapter', "^17.8.4");
|
|
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;
|