@koobiq/components 18.3.0 → 18.4.1
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/accordion/accordion-tokens.scss +0 -2
- package/alert/alert-tokens.scss +0 -2
- package/autocomplete/autocomplete-tokens.scss +0 -2
- package/badge/badge-tokens.scss +0 -2
- package/button/button-tokens.scss +7 -2
- package/button/button.scss +0 -2
- package/button-toggle/button-toggle-tokens.scss +0 -2
- package/checkbox/checkbox-tokens.scss +0 -2
- package/code-block/_code-block-theme.scss +1 -1
- package/code-block/actionbar.component.d.ts +14 -4
- package/code-block/code-block-tokens.scss +4 -6
- package/code-block/code-block.component.d.ts +12 -15
- package/code-block/code-block.types.d.ts +12 -0
- package/core/common-behaviors/color.d.ts +1 -1
- package/core/formatters/date/formatter.pipe.d.ts +82 -65
- package/core/formatters/index.d.ts +1 -1
- package/core/forms/forms-tokens.scss +0 -2
- package/core/forms/validators.d.ts +21 -0
- package/core/locales/en-US.d.ts +13 -0
- package/core/locales/es-LA.d.ts +13 -0
- package/core/locales/fa-IR.d.ts +13 -0
- package/core/locales/locale-service.d.ts +78 -0
- package/core/locales/pt-BR.d.ts +13 -0
- package/core/locales/ru-RU.d.ts +13 -0
- package/core/locales/zh-CN.d.ts +13 -0
- package/core/option/optgroup-tokens.scss +0 -2
- package/core/option/option-action-tokens.scss +0 -2
- package/core/option/option-tokens.scss +0 -2
- package/core/select/common.d.ts +2 -0
- package/core/selection/pseudo-checkbox/pseudo-checkbox-tokens.scss +0 -2
- package/core/services/theme.service.d.ts +2 -2
- package/core/styles/theming/_components-theming.scss +1 -1
- package/core/styles/theming/_theming.scss +1 -1
- package/core/styles/theming/scrollbar-tokens.scss +0 -2
- package/datepicker/_datepicker-theme.scss +1 -1
- package/datepicker/datepicker-tokens.scss +2 -4
- package/divider/divider-tokens.scss +0 -2
- package/dl/dl-tokens.scss +0 -2
- package/dropdown/_dropdown-theme.scss +1 -1
- package/dropdown/dropdown-tokens.scss +1 -3
- package/empty-state/empty-state-tokens.scss +0 -2
- package/esm2022/button/button.component.mjs +2 -2
- package/esm2022/code-block/actionbar.component.mjs +35 -8
- package/esm2022/code-block/code-block.component.mjs +28 -19
- package/esm2022/code-block/code-block.types.mjs +5 -2
- package/esm2022/core/common-behaviors/color.mjs +2 -2
- package/esm2022/core/formatters/date/formatter.pipe.mjs +280 -120
- package/esm2022/core/formatters/index.mjs +65 -12
- package/esm2022/core/forms/validators.mjs +32 -1
- package/esm2022/core/locales/en-US.mjs +14 -1
- package/esm2022/core/locales/es-LA.mjs +14 -1
- package/esm2022/core/locales/fa-IR.mjs +14 -1
- package/esm2022/core/locales/pt-BR.mjs +14 -1
- package/esm2022/core/locales/ru-RU.mjs +14 -1
- package/esm2022/core/locales/zh-CN.mjs +14 -1
- package/esm2022/core/select/common.mjs +7 -1
- package/esm2022/core/services/theme.service.mjs +3 -3
- package/esm2022/core/version.mjs +2 -2
- package/esm2022/datepicker/datepicker.component.mjs +3 -3
- package/esm2022/dropdown/dropdown.component.mjs +3 -3
- package/esm2022/file-upload/file-upload.mjs +2 -3
- package/esm2022/file-upload/multiple-file-upload.component.mjs +57 -17
- package/esm2022/file-upload/single-file-upload.component.mjs +31 -19
- package/esm2022/form-field/validate.directive.mjs +21 -1
- package/esm2022/markdown/markdown.values.mjs +4 -2
- package/esm2022/modal/modal.component.mjs +2 -2
- package/esm2022/navbar/navbar-item.component.mjs +2 -2
- package/esm2022/navbar/navbar.component.mjs +2 -2
- package/esm2022/navbar/vertical-navbar.component.mjs +2 -2
- package/esm2022/popover/popover-confirm.component.mjs +3 -3
- package/esm2022/popover/popover.component.mjs +3 -3
- package/esm2022/select/select.component.mjs +1 -1
- package/esm2022/sidepanel/sidepanel-container.component.mjs +3 -3
- package/esm2022/splitter/splitter.component.mjs +2 -2
- package/esm2022/timezone/timezone-select.component.mjs +20 -10
- package/esm2022/toast/toast.component.mjs +3 -3
- package/esm2022/tooltip/tooltip.component.mjs +13 -1
- package/fesm2022/koobiq-components-button.mjs +2 -2
- package/fesm2022/koobiq-components-button.mjs.map +1 -1
- package/fesm2022/koobiq-components-code-block.mjs +58 -24
- package/fesm2022/koobiq-components-code-block.mjs.map +1 -1
- package/fesm2022/koobiq-components-core.mjs +461 -131
- package/fesm2022/koobiq-components-core.mjs.map +1 -1
- package/fesm2022/koobiq-components-datepicker.mjs +2 -2
- package/fesm2022/koobiq-components-datepicker.mjs.map +1 -1
- package/fesm2022/koobiq-components-dropdown.mjs +2 -2
- package/fesm2022/koobiq-components-dropdown.mjs.map +1 -1
- package/fesm2022/koobiq-components-file-upload.mjs +76 -27
- package/fesm2022/koobiq-components-file-upload.mjs.map +1 -1
- package/fesm2022/koobiq-components-form-field.mjs +20 -0
- package/fesm2022/koobiq-components-form-field.mjs.map +1 -1
- package/fesm2022/koobiq-components-markdown.mjs +3 -1
- package/fesm2022/koobiq-components-markdown.mjs.map +1 -1
- package/fesm2022/koobiq-components-modal.mjs +2 -2
- package/fesm2022/koobiq-components-modal.mjs.map +1 -1
- package/fesm2022/koobiq-components-navbar.mjs +6 -6
- package/fesm2022/koobiq-components-navbar.mjs.map +1 -1
- package/fesm2022/koobiq-components-popover.mjs +4 -4
- package/fesm2022/koobiq-components-popover.mjs.map +1 -1
- package/fesm2022/koobiq-components-select.mjs.map +1 -1
- package/fesm2022/koobiq-components-sidepanel.mjs +2 -2
- package/fesm2022/koobiq-components-sidepanel.mjs.map +1 -1
- package/fesm2022/koobiq-components-splitter.mjs +1 -1
- package/fesm2022/koobiq-components-splitter.mjs.map +1 -1
- package/fesm2022/koobiq-components-timezone.mjs +18 -8
- package/fesm2022/koobiq-components-timezone.mjs.map +1 -1
- package/fesm2022/koobiq-components-toast.mjs +2 -2
- package/fesm2022/koobiq-components-toast.mjs.map +1 -1
- package/fesm2022/koobiq-components-tooltip.mjs +12 -0
- package/fesm2022/koobiq-components-tooltip.mjs.map +1 -1
- package/file-upload/_file-upload-theme.scss +6 -10
- package/file-upload/file-upload-tokens.scss +0 -2
- package/file-upload/file-upload.d.ts +3 -0
- package/file-upload/file-upload.scss +6 -0
- package/file-upload/multiple-file-upload.component.d.ts +28 -5
- package/file-upload/multiple-file-upload.component.scss +0 -4
- package/file-upload/single-file-upload.component.d.ts +13 -4
- package/file-upload/single-file-upload.component.scss +0 -12
- package/form-field/form-field-tokens.scss +0 -2
- package/form-field/hint-tokens.scss +0 -2
- package/form-field/validate.directive.d.ts +20 -0
- package/icon/icon-button-tokens.scss +0 -2
- package/icon/icon-item-tokens.scss +0 -2
- package/icon/icon-tokens.scss +0 -2
- package/input/input-tokens.scss +0 -2
- package/link/link-tokens.scss +0 -2
- package/list/list-tokens.scss +0 -2
- package/loader-overlay/loader-overlay-tokens.scss +0 -2
- package/markdown/markdown-tokens.scss +0 -2
- package/markdown/markdown.values.d.ts +3 -0
- package/modal/_modal-theme.scss +1 -1
- package/modal/modal-tokens.scss +2 -4
- package/navbar/_navbar-theme.scss +1 -1
- package/navbar/navbar-tokens.scss +2 -10
- package/package.json +4 -4
- package/popover/_popover-theme.scss +2 -2
- package/popover/popover-tokens.scss +2 -4
- package/popover/popover.scss +2 -2
- package/progress-bar/progress-bar-tokens.scss +0 -2
- package/progress-spinner/progress-spinner-tokens.scss +0 -2
- package/radio/radio-tokens.scss +0 -2
- package/risk-level/risk-level-tokens.scss +0 -2
- package/schematics/ng-add/index.js +2 -2
- package/scrollbar/scrollbar-tokens.scss +0 -2
- package/select/select-tokens.scss +0 -2
- package/select/select.component.d.ts +1 -1
- package/sidepanel/_sidepanel-theme.scss +1 -1
- package/sidepanel/sidepanel-tokens.scss +2 -4
- package/table/table-tokens.scss +0 -2
- package/tabs/tabs-tokens.scss +0 -2
- package/tags/tag-input-tokens.scss +0 -2
- package/tags/tag-tokens.scss +0 -2
- package/textarea/textarea-tokens.scss +0 -2
- package/timezone/timezone-option-tokens.scss +0 -2
- package/timezone/timezone-select.component.d.ts +5 -6
- package/toast/toast-tokens.scss +4 -3
- package/toggle/toggle-tokens.scss +0 -2
- package/tooltip/tooltip-tokens.scss +0 -2
- package/tooltip/tooltip.component.d.ts +9 -0
- package/tree/tree-tokens.scss +0 -2
- package/tree-select/tree-select-tokens.scss +0 -2
- package/splitter/splitter-tokens.scss +0 -1
|
@@ -3,6 +3,26 @@ import { AbstractControl, FormGroupDirective, NgControl, NgForm, Validator, Vali
|
|
|
3
3
|
import { KbqValidationOptions } from '@koobiq/components/core';
|
|
4
4
|
import { KbqFormFieldControl } from './form-field-control';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
|
+
/**
|
|
7
|
+
* @deprecated Will be removed in next major release (#DS-2838)
|
|
8
|
+
*
|
|
9
|
+
* Legacy mosaic validation
|
|
10
|
+
*
|
|
11
|
+
* ### How to disable?
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import { KBQ_VALIDATION, KbqValidationOptions } from '@koobiq/components/core';
|
|
15
|
+
*
|
|
16
|
+
* @NgModule({
|
|
17
|
+
* providers: [
|
|
18
|
+
* {
|
|
19
|
+
* provide: KBQ_VALIDATION,
|
|
20
|
+
* useValue: { useValidation: false } satisfies KbqValidationOptions
|
|
21
|
+
* }
|
|
22
|
+
* ]
|
|
23
|
+
* })
|
|
24
|
+
* ```
|
|
25
|
+
*/
|
|
6
26
|
export declare class KbqValidateDirective implements AfterContentInit {
|
|
7
27
|
private formFieldControl;
|
|
8
28
|
rawValidators: Validator[];
|
package/icon/icon-tokens.scss
CHANGED
package/input/input-tokens.scss
CHANGED
package/link/link-tokens.scss
CHANGED
package/list/list-tokens.scss
CHANGED
package/modal/_modal-theme.scss
CHANGED
package/modal/modal-tokens.scss
CHANGED
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
/* stylelint-disable no-unknown-custom-properties */
|
|
2
|
-
|
|
3
1
|
.kbq-modal {
|
|
4
2
|
--kbq-modal-size-small-width: 400px;
|
|
5
3
|
--kbq-modal-size-medium-width: 640px;
|
|
@@ -36,7 +34,7 @@
|
|
|
36
34
|
:where(.kbq-light, .theme-light, .kbq-theme-light) {
|
|
37
35
|
--kbq-modal-overlay-background: var(--kbq-background-overlay);
|
|
38
36
|
--kbq-modal-container-background: var(--kbq-background-card);
|
|
39
|
-
--kbq-modal-container-
|
|
37
|
+
--kbq-modal-container-shadow: var(--kbq-shadow-overlay);
|
|
40
38
|
--kbq-modal-close-button-color: var(--kbq-icon-contrast);
|
|
41
39
|
--kbq-modal-header-text-color: var(--kbq-foreground-contrast);
|
|
42
40
|
--kbq-modal-content-text-color: var(--kbq-foreground-contrast);
|
|
@@ -45,7 +43,7 @@
|
|
|
45
43
|
:where(.kbq-dark, .theme-dark, .kbq-theme-dark) {
|
|
46
44
|
--kbq-modal-overlay-background: var(--kbq-background-overlay);
|
|
47
45
|
--kbq-modal-container-background: var(--kbq-background-card);
|
|
48
|
-
--kbq-modal-container-
|
|
46
|
+
--kbq-modal-container-shadow: var(--kbq-shadow-overlay);
|
|
49
47
|
--kbq-modal-close-button-color: var(--kbq-icon-contrast);
|
|
50
48
|
--kbq-modal-header-text-color: var(--kbq-foreground-contrast);
|
|
51
49
|
--kbq-modal-content-text-color: var(--kbq-foreground-contrast);
|
|
@@ -1,13 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
.kbq-navbar {
|
|
4
|
-
--kbq-navbar-font-title-font-size: var(--kbq-typography-navbar-title-font-size);
|
|
5
|
-
--kbq-navbar-font-title-line-height: var(--kbq-typography-navbar-title-line-height);
|
|
6
|
-
--kbq-navbar-font-title-letter-spacing: var(--kbq-typography-navbar-title-letter-spacing);
|
|
7
|
-
--kbq-navbar-font-title-font-weight: var(--kbq-typography-navbar-title-font-weight);
|
|
8
|
-
--kbq-navbar-font-title-font-family: var(--kbq-typography-navbar-title-font-family);
|
|
9
|
-
--kbq-navbar-font-title-text-transform: var(--kbq-typography-navbar-title-text-transform);
|
|
10
|
-
--kbq-navbar-font-title-font-feature-settings: var(--kbq-typography-navbar-title-font-feature-settings);
|
|
1
|
+
.kbq-navbar,
|
|
2
|
+
.kbq-vertical-navbar {
|
|
11
3
|
--kbq-navbar-item-size-content-border-radius: var(--kbq-button-size-border-radius);
|
|
12
4
|
}
|
|
13
5
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@koobiq/components",
|
|
3
|
-
"version": "18.
|
|
3
|
+
"version": "18.4.1",
|
|
4
4
|
"description": "koobiq",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -24,9 +24,9 @@
|
|
|
24
24
|
"@angular/cdk": "^18.0.0",
|
|
25
25
|
"@angular/core": "^18.0.0",
|
|
26
26
|
"@angular/forms": "^18.0.0",
|
|
27
|
-
"@koobiq/cdk": "18.
|
|
28
|
-
"@koobiq/angular-moment-adapter": "18.
|
|
29
|
-
"@koobiq/angular-luxon-adapter": "18.
|
|
27
|
+
"@koobiq/cdk": "18.4.1",
|
|
28
|
+
"@koobiq/angular-moment-adapter": "18.4.1",
|
|
29
|
+
"@koobiq/angular-luxon-adapter": "18.4.1",
|
|
30
30
|
"@koobiq/date-formatter": "^3.1.3",
|
|
31
31
|
"@koobiq/icons": "^9.0.0",
|
|
32
32
|
"@koobiq/tokens-builder": "3.7.3",
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
@mixin kbq-popover-theme() {
|
|
4
4
|
.kbq-popover {
|
|
5
|
-
box-shadow: var(--kbq-popover-container-
|
|
5
|
+
box-shadow: var(--kbq-popover-container-shadow);
|
|
6
6
|
}
|
|
7
7
|
|
|
8
8
|
.kbq-popover__container {
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
}
|
|
11
11
|
|
|
12
12
|
.kbq-popover__arrow {
|
|
13
|
-
box-shadow: var(--kbq-popover-container-
|
|
13
|
+
box-shadow: var(--kbq-popover-container-shadow);
|
|
14
14
|
background: var(--kbq-popover-container-background);
|
|
15
15
|
}
|
|
16
16
|
|
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
/* stylelint-disable no-unknown-custom-properties */
|
|
2
|
-
|
|
3
1
|
.kbq-popover {
|
|
4
2
|
--kbq-button-size-border-radius: var(--kbq-size-s);
|
|
5
3
|
--kbq-popover-size-container-width-small: 200px;
|
|
@@ -38,7 +36,7 @@
|
|
|
38
36
|
|
|
39
37
|
:where(.kbq-light, .theme-light, .kbq-theme-light) {
|
|
40
38
|
--kbq-popover-container-background: var(--kbq-background-card);
|
|
41
|
-
--kbq-popover-container-
|
|
39
|
+
--kbq-popover-container-shadow: var(--kbq-shadow-popup);
|
|
42
40
|
--kbq-popover-header-text-color: var(--kbq-foreground-contrast);
|
|
43
41
|
--kbq-popover-header-scroll-shadow: var(--kbq-shadow-overflow-normal-bottom);
|
|
44
42
|
--kbq-popover-content-text-color: var(--kbq-foreground-contrast);
|
|
@@ -47,7 +45,7 @@
|
|
|
47
45
|
|
|
48
46
|
:where(.kbq-dark, .theme-dark, .kbq-theme-dark) {
|
|
49
47
|
--kbq-popover-container-background: var(--kbq-background-card);
|
|
50
|
-
--kbq-popover-container-
|
|
48
|
+
--kbq-popover-container-shadow: var(--kbq-shadow-popup);
|
|
51
49
|
--kbq-popover-header-text-color: var(--kbq-foreground-contrast);
|
|
52
50
|
--kbq-popover-header-scroll-shadow: var(--kbq-shadow-overflow-normal-bottom);
|
|
53
51
|
--kbq-popover-content-text-color: var(--kbq-foreground-contrast);
|
package/popover/popover.scss
CHANGED
|
@@ -92,7 +92,7 @@ $trigger-margin: 9px;
|
|
|
92
92
|
}
|
|
93
93
|
|
|
94
94
|
.kbq-popover__header_top-overflow {
|
|
95
|
-
box-shadow:
|
|
95
|
+
box-shadow: var(--kbq-shadow-overflow-normal-bottom);
|
|
96
96
|
}
|
|
97
97
|
|
|
98
98
|
.kbq-popover__header_with-close-button {
|
|
@@ -104,7 +104,7 @@ $trigger-margin: 9px;
|
|
|
104
104
|
}
|
|
105
105
|
|
|
106
106
|
.kbq-popover__footer_bottom-overflow {
|
|
107
|
-
box-shadow:
|
|
107
|
+
box-shadow: var(--kbq-shadow-overflow-normal-top);
|
|
108
108
|
}
|
|
109
109
|
|
|
110
110
|
.kbq-popover__arrow {
|
package/radio/radio-tokens.scss
CHANGED
|
@@ -42,8 +42,8 @@ function ngAdd(options) {
|
|
|
42
42
|
}
|
|
43
43
|
// Installing dependencies
|
|
44
44
|
utils_packageConfig.addPackageToPackageJson(tree, '@angular/cdk', "^18.2.6");
|
|
45
|
-
utils_packageConfig.addPackageToPackageJson(tree, '@koobiq/cdk', "^18.
|
|
46
|
-
utils_packageConfig.addPackageToPackageJson(tree, '@koobiq/angular-luxon-adapter', "^18.
|
|
45
|
+
utils_packageConfig.addPackageToPackageJson(tree, '@koobiq/cdk', "^18.4.1");
|
|
46
|
+
utils_packageConfig.addPackageToPackageJson(tree, '@koobiq/angular-luxon-adapter', "^18.4.1");
|
|
47
47
|
utils_packageConfig.addPackageToPackageJson(tree, '@koobiq/date-formatter', "^3.1.3");
|
|
48
48
|
utils_packageConfig.addPackageToPackageJson(tree, '@koobiq/date-adapter', "^3.1.3");
|
|
49
49
|
utils_packageConfig.addPackageToPackageJson(tree, '@koobiq/icons', "^9.1.0");
|
|
@@ -41,7 +41,7 @@ export declare class KbqSelect extends KbqSelectMixinBase implements AfterConten
|
|
|
41
41
|
private readonly _dir;
|
|
42
42
|
private readonly parentFormField;
|
|
43
43
|
private readonly scrollStrategyFactory;
|
|
44
|
-
|
|
44
|
+
protected localeService?: KbqLocaleService | undefined;
|
|
45
45
|
/** A name for this control that can be used by `kbq-form-field`. */
|
|
46
46
|
controlType: string;
|
|
47
47
|
hiddenItems: number;
|
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
/* stylelint-disable no-unknown-custom-properties */
|
|
2
|
-
|
|
3
1
|
.kbq-sidepanel-container {
|
|
4
2
|
--kbq-sidepanel-size-small-width: 400px;
|
|
5
3
|
--kbq-sidepanel-size-medium-width: 640px;
|
|
@@ -33,7 +31,7 @@
|
|
|
33
31
|
:where(.kbq-light, .theme-light, .kbq-theme-light) {
|
|
34
32
|
--kbq-sidepanel-overlay-background: var(--kbq-background-overlay);
|
|
35
33
|
--kbq-sidepanel-container-background: var(--kbq-background-card);
|
|
36
|
-
--kbq-sidepanel-container-
|
|
34
|
+
--kbq-sidepanel-container-shadow: var(--kbq-shadow-overlay);
|
|
37
35
|
--kbq-sidepanel-header-text-color: var(--kbq-foreground-contrast);
|
|
38
36
|
--kbq-sidepanel-content-text-color: var(--kbq-foreground-contrast);
|
|
39
37
|
}
|
|
@@ -41,7 +39,7 @@
|
|
|
41
39
|
:where(.kbq-dark, .theme-dark, .kbq-theme-dark) {
|
|
42
40
|
--kbq-sidepanel-overlay-background: var(--kbq-background-overlay);
|
|
43
41
|
--kbq-sidepanel-container-background: var(--kbq-background-card);
|
|
44
|
-
--kbq-sidepanel-container-
|
|
42
|
+
--kbq-sidepanel-container-shadow: var(--kbq-shadow-overlay);
|
|
45
43
|
--kbq-sidepanel-header-text-color: var(--kbq-foreground-contrast);
|
|
46
44
|
--kbq-sidepanel-content-text-color: var(--kbq-foreground-contrast);
|
|
47
45
|
}
|
package/table/table-tokens.scss
CHANGED
package/tabs/tabs-tokens.scss
CHANGED
package/tags/tag-tokens.scss
CHANGED
|
@@ -1,15 +1,14 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { KbqCleaner } from '@koobiq/components/form-field';
|
|
1
|
+
import { AfterContentInit } from '@angular/core';
|
|
3
2
|
import { KbqSelect } from '@koobiq/components/select';
|
|
4
3
|
import * as i0 from "@angular/core";
|
|
5
4
|
export declare class KbqTimezoneSelectTrigger {
|
|
6
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<KbqTimezoneSelectTrigger, never>;
|
|
7
6
|
static ɵdir: i0.ɵɵDirectiveDeclaration<KbqTimezoneSelectTrigger, "kbq-timezone-select-trigger", never, {}, {}, never, never, false, never>;
|
|
8
7
|
}
|
|
9
|
-
export declare class KbqTimezoneSelect extends KbqSelect {
|
|
8
|
+
export declare class KbqTimezoneSelect extends KbqSelect implements AfterContentInit {
|
|
10
9
|
customTrigger: KbqTimezoneSelectTrigger;
|
|
11
|
-
|
|
12
|
-
|
|
10
|
+
ngAfterContentInit(): void;
|
|
11
|
+
private updateLocaleParamsForSearch;
|
|
13
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<KbqTimezoneSelect, never>;
|
|
14
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KbqTimezoneSelect, "kbq-timezone-select", ["kbqTimezoneSelect"], {}, {}, ["customTrigger"
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KbqTimezoneSelect, "kbq-timezone-select", ["kbqTimezoneSelect"], {}, {}, ["customTrigger"], ["kbq-timezone-select-trigger", "kbq-cleaner", "[kbqSelectSearch]", "[kbq-select-search-empty-result]", "*"], false, never>;
|
|
15
14
|
}
|
package/toast/toast-tokens.scss
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
.kbq-toast-container {
|
|
2
|
+
--kbq-toast-stack-size-margin-top: var(--kbq-size-m);
|
|
3
|
+
--kbq-toast-stack-size-margin-right: var(--kbq-size-m);
|
|
4
|
+
--kbq-toast-stack-size-gap: var(--kbq-size-s);
|
|
4
5
|
--kbq-toast-size-container-width: 360px;
|
|
5
6
|
--kbq-toast-size-container-border-radius: var(--kbq-size-s);
|
|
6
7
|
--kbq-toast-size-container-padding-left: var(--kbq-size-m);
|
|
@@ -80,6 +80,15 @@ export declare class KbqTooltipTrigger extends KbqPopUpTrigger<KbqTooltipCompone
|
|
|
80
80
|
constructor();
|
|
81
81
|
ngOnDestroy(): void;
|
|
82
82
|
show(delay?: number): void;
|
|
83
|
+
/**
|
|
84
|
+
* method allows to show the tooltip relative to the element
|
|
85
|
+
* Use this approach when it is not possible to define a trigger in the template.
|
|
86
|
+
*
|
|
87
|
+
* For example:
|
|
88
|
+
* const tooltip = new KbqTooltipTrigger();
|
|
89
|
+
* tooltip.showForElement(element);
|
|
90
|
+
*/
|
|
91
|
+
showForElement(element: HTMLElement): void;
|
|
83
92
|
updateData(): void;
|
|
84
93
|
closingActions(): import("rxjs").Observable<void | MouseEvent>;
|
|
85
94
|
getOverlayHandleComponentType(): Type<KbqTooltipComponent>;
|
package/tree/tree-tokens.scss
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/* stylelint-disable no-unknown-custom-properties */
|