@koobiq/components 18.33.0 → 18.35.0

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.
Files changed (309) hide show
  1. package/actions-panel/actions-panel-config.d.ts +4 -3
  2. package/actions-panel/actions-panel-container.scss +0 -6
  3. package/actions-panel/actions-panel-ref.d.ts +13 -0
  4. package/actions-panel/actions-panel.d.ts +1 -7
  5. package/button/_button-theme.scss +1 -0
  6. package/clamped-text/clamped-text.d.ts +61 -0
  7. package/clamped-text/clamped-text.scss +17 -0
  8. package/clamped-text/constants.d.ts +14 -0
  9. package/clamped-text/index.d.ts +3 -0
  10. package/clamped-text/module.d.ts +7 -0
  11. package/content-panel/content-panel-aside.scss +9 -0
  12. package/content-panel/content-panel-body.scss +9 -0
  13. package/content-panel/content-panel-container.scss +32 -0
  14. package/content-panel/content-panel-footer.scss +5 -0
  15. package/content-panel/content-panel-header.scss +30 -0
  16. package/content-panel/content-panel-tokens.scss +9 -0
  17. package/content-panel/content-panel.d.ts +149 -0
  18. package/content-panel/content-panel.scss +25 -0
  19. package/content-panel/index.d.ts +3 -0
  20. package/content-panel/module.d.ts +7 -0
  21. package/content-panel/resizable.d.ts +70 -0
  22. package/core/form-field/field-sizing-content.d.ts +21 -0
  23. package/core/form-field/index.d.ts +1 -0
  24. package/core/locales/en-US.d.ts +10 -0
  25. package/core/locales/es-LA.d.ts +10 -0
  26. package/core/locales/fa-IR.d.ts +10 -0
  27. package/core/locales/locale-service.d.ts +70 -0
  28. package/core/locales/pt-BR.d.ts +10 -0
  29. package/core/locales/ru-RU.d.ts +10 -0
  30. package/core/locales/tk-TM.d.ts +10 -0
  31. package/core/locales/types.d.ts +5 -0
  32. package/core/locales/zh-CN.d.ts +10 -0
  33. package/core/navbar/index.d.ts +1 -0
  34. package/core/navbar/rectangle-item.d.ts +14 -0
  35. package/core/option/option.d.ts +3 -1
  36. package/core/pop-up/pop-up-trigger.d.ts +2 -0
  37. package/core/public-api.d.ts +1 -0
  38. package/core/styles/common/_select.scss +6 -3
  39. package/core/utils/dom.d.ts +9 -0
  40. package/core/utils/index.d.ts +1 -0
  41. package/core/utils/utils.d.ts +4 -0
  42. package/datepicker/calendar.component.d.ts +1 -1
  43. package/datepicker/datepicker-input.directive.d.ts +19 -8
  44. package/datepicker/datepicker-toggle.component.d.ts +1 -1
  45. package/datepicker/datepicker.component.d.ts +2 -2
  46. package/dropdown/dropdown-item.scss +1 -0
  47. package/dropdown/dropdown-trigger.directive.d.ts +7 -1
  48. package/dynamic-translation/dynamic-translation.d.ts +72 -0
  49. package/dynamic-translation/index.d.ts +2 -0
  50. package/dynamic-translation/module.d.ts +7 -0
  51. package/esm2022/actions-panel/actions-panel-config.mjs +1 -1
  52. package/esm2022/actions-panel/actions-panel-container.mjs +7 -7
  53. package/esm2022/actions-panel/actions-panel-ref.mjs +17 -1
  54. package/esm2022/actions-panel/actions-panel.mjs +34 -24
  55. package/esm2022/breadcrumbs/breadcrumbs.mjs +2 -2
  56. package/esm2022/button/button.component.mjs +2 -2
  57. package/esm2022/button-toggle/button-toggle.component.mjs +9 -9
  58. package/esm2022/clamped-text/clamped-text.mjs +202 -0
  59. package/esm2022/clamped-text/constants.mjs +20 -0
  60. package/esm2022/clamped-text/index.mjs +4 -0
  61. package/esm2022/clamped-text/koobiq-components-clamped-text.mjs +5 -0
  62. package/esm2022/clamped-text/module.mjs +19 -0
  63. package/esm2022/content-panel/content-panel.mjs +432 -0
  64. package/esm2022/content-panel/index.mjs +4 -0
  65. package/esm2022/content-panel/koobiq-components-content-panel.mjs +5 -0
  66. package/esm2022/content-panel/module.mjs +42 -0
  67. package/esm2022/content-panel/resizable.mjs +138 -0
  68. package/esm2022/core/form-field/field-sizing-content.mjs +114 -0
  69. package/esm2022/core/form-field/index.mjs +2 -1
  70. package/esm2022/core/locales/en-US.mjs +11 -1
  71. package/esm2022/core/locales/es-LA.mjs +11 -1
  72. package/esm2022/core/locales/fa-IR.mjs +11 -1
  73. package/esm2022/core/locales/pt-BR.mjs +11 -1
  74. package/esm2022/core/locales/ru-RU.mjs +11 -1
  75. package/esm2022/core/locales/tk-TM.mjs +11 -1
  76. package/esm2022/core/locales/types.mjs +1 -1
  77. package/esm2022/core/locales/zh-CN.mjs +11 -1
  78. package/esm2022/core/navbar/index.mjs +2 -0
  79. package/esm2022/core/navbar/rectangle-item.mjs +39 -0
  80. package/esm2022/core/option/option.mjs +8 -4
  81. package/esm2022/core/pop-up/pop-up-trigger.mjs +5 -1
  82. package/esm2022/core/public-api.mjs +2 -1
  83. package/esm2022/core/utils/dom.mjs +14 -0
  84. package/esm2022/core/utils/index.mjs +2 -1
  85. package/esm2022/core/utils/utils.mjs +9 -1
  86. package/esm2022/core/version.mjs +2 -2
  87. package/esm2022/datepicker/calendar-header.component.mjs +6 -3
  88. package/esm2022/datepicker/calendar.component.mjs +9 -9
  89. package/esm2022/datepicker/datepicker-input.directive.mjs +24 -21
  90. package/esm2022/datepicker/datepicker-toggle.component.mjs +8 -8
  91. package/esm2022/datepicker/datepicker.component.mjs +3 -3
  92. package/esm2022/dropdown/dropdown-item.component.mjs +2 -2
  93. package/esm2022/dropdown/dropdown-trigger.directive.mjs +30 -10
  94. package/esm2022/dropdown/dropdown.component.mjs +3 -3
  95. package/esm2022/dynamic-translation/dynamic-translation.mjs +175 -0
  96. package/esm2022/dynamic-translation/index.mjs +3 -0
  97. package/esm2022/dynamic-translation/koobiq-components-dynamic-translation.mjs +5 -0
  98. package/esm2022/dynamic-translation/module.mjs +25 -0
  99. package/esm2022/file-upload/file-drop.mjs +1 -1
  100. package/esm2022/file-upload/file-upload.mjs +6 -1
  101. package/esm2022/file-upload/multiple-file-upload.component.mjs +21 -16
  102. package/esm2022/file-upload/single-file-upload.component.mjs +23 -16
  103. package/esm2022/filter-bar/filter-bar.mjs +3 -3
  104. package/esm2022/filter-bar/filter-refresher.mjs +5 -5
  105. package/esm2022/filter-bar/filter-reset.mjs +3 -3
  106. package/esm2022/filter-bar/filter-search.mjs +11 -11
  107. package/esm2022/filter-bar/filters.mjs +16 -4
  108. package/esm2022/filter-bar/pipe-add.mjs +6 -6
  109. package/esm2022/filter-bar/pipes/base-pipe.mjs +2 -2
  110. package/esm2022/filter-bar/pipes/pipe-button.mjs +7 -7
  111. package/esm2022/filter-bar/pipes/pipe-date.mjs +10 -2
  112. package/esm2022/filter-bar/pipes/pipe-datetime.mjs +10 -2
  113. package/esm2022/filter-bar/pipes/pipe-multi-select.mjs +11 -17
  114. package/esm2022/filter-bar/pipes/pipe-multi-tree-select.mjs +10 -9
  115. package/esm2022/filter-bar/pipes/pipe-readonly.mjs +7 -7
  116. package/esm2022/filter-bar/pipes/pipe-select.mjs +3 -4
  117. package/esm2022/filter-bar/pipes/pipe-text.mjs +9 -3
  118. package/esm2022/filter-bar/pipes/pipe-tree-select.mjs +9 -3
  119. package/esm2022/form-field/cleaner.mjs +16 -11
  120. package/esm2022/form-field/fieldset.mjs +2 -2
  121. package/esm2022/form-field/form-field.mjs +5 -5
  122. package/esm2022/form-field/password-hint.mjs +14 -3
  123. package/esm2022/form-field/password-toggle.mjs +45 -10
  124. package/esm2022/form-field/reactive-password-hint.mjs +18 -17
  125. package/esm2022/form-field/stepper.mjs +9 -9
  126. package/esm2022/icon/icon-button.component.mjs +2 -2
  127. package/esm2022/input/input-number.mjs +15 -10
  128. package/esm2022/markdown/markdown.component.mjs +3 -3
  129. package/esm2022/modal/modal.component.mjs +14 -14
  130. package/esm2022/modal/modal.directive.mjs +7 -5
  131. package/esm2022/navbar/navbar-item.component.mjs +3 -3
  132. package/esm2022/navbar-ic/index.mjs +2 -0
  133. package/esm2022/navbar-ic/koobiq-components-navbar-ic.mjs +5 -0
  134. package/esm2022/navbar-ic/navbar-ic-header.mjs +58 -0
  135. package/esm2022/navbar-ic/navbar-ic-item.mjs +399 -0
  136. package/esm2022/navbar-ic/navbar-ic.animation.mjs +9 -0
  137. package/esm2022/navbar-ic/navbar-ic.mjs +281 -0
  138. package/esm2022/navbar-ic/navbar-ic.module.mjs +74 -0
  139. package/esm2022/navbar-ic/public-api.mjs +5 -0
  140. package/esm2022/popover/popover-confirm.component.mjs +3 -3
  141. package/esm2022/popover/popover.component.mjs +10 -5
  142. package/esm2022/scrollbar/scrollbar.component.mjs +5 -5
  143. package/esm2022/select/select.component.mjs +24 -11
  144. package/esm2022/sidebar/sidebar.component.mjs +46 -27
  145. package/esm2022/sidepanel/sidepanel-container.component.mjs +15 -4
  146. package/esm2022/sidepanel/sidepanel-directives.mjs +5 -5
  147. package/esm2022/sidepanel/sidepanel-ref.mjs +8 -6
  148. package/esm2022/splitter/splitter.component.mjs +1 -1
  149. package/esm2022/tabs/tab-body.component.mjs +3 -3
  150. package/esm2022/tabs/tab-group.component.mjs +27 -27
  151. package/esm2022/tabs/tab.component.mjs +4 -4
  152. package/esm2022/tags/tag-input.mjs +2 -2
  153. package/esm2022/tags/tag-list.component.mjs +36 -17
  154. package/esm2022/tags/tag.component.mjs +231 -22
  155. package/esm2022/tags/tag.module.mjs +16 -6
  156. package/esm2022/textarea/textarea.component.mjs +6 -4
  157. package/esm2022/timepicker/timepicker.directive.mjs +1 -1
  158. package/esm2022/timezone/timezone-select.component.mjs +3 -3
  159. package/esm2022/tooltip/tooltip.component.mjs +3 -3
  160. package/esm2022/tree/tree-selection.component.mjs +4 -4
  161. package/esm2022/tree-select/tree-select.component.mjs +11 -9
  162. package/esm2022/username/constants.mjs +25 -0
  163. package/esm2022/username/index.mjs +6 -0
  164. package/esm2022/username/koobiq-components-username.mjs +5 -0
  165. package/esm2022/username/module.mjs +35 -0
  166. package/esm2022/username/types.mjs +32 -0
  167. package/esm2022/username/username.mjs +129 -0
  168. package/esm2022/username/username.pipe.mjs +92 -0
  169. package/fesm2022/koobiq-components-actions-panel.mjs +56 -31
  170. package/fesm2022/koobiq-components-actions-panel.mjs.map +1 -1
  171. package/fesm2022/koobiq-components-breadcrumbs.mjs +1 -1
  172. package/fesm2022/koobiq-components-breadcrumbs.mjs.map +1 -1
  173. package/fesm2022/koobiq-components-button-toggle.mjs +8 -8
  174. package/fesm2022/koobiq-components-button-toggle.mjs.map +1 -1
  175. package/fesm2022/koobiq-components-button.mjs +2 -2
  176. package/fesm2022/koobiq-components-button.mjs.map +1 -1
  177. package/fesm2022/koobiq-components-clamped-text.mjs +242 -0
  178. package/fesm2022/koobiq-components-clamped-text.mjs.map +1 -0
  179. package/fesm2022/koobiq-components-content-panel.mjs +612 -0
  180. package/fesm2022/koobiq-components-content-panel.mjs.map +1 -0
  181. package/fesm2022/koobiq-components-core.mjs +271 -31
  182. package/fesm2022/koobiq-components-core.mjs.map +1 -1
  183. package/fesm2022/koobiq-components-datepicker.mjs +45 -40
  184. package/fesm2022/koobiq-components-datepicker.mjs.map +1 -1
  185. package/fesm2022/koobiq-components-dropdown.mjs +33 -13
  186. package/fesm2022/koobiq-components-dropdown.mjs.map +1 -1
  187. package/fesm2022/koobiq-components-dynamic-translation.mjs +204 -0
  188. package/fesm2022/koobiq-components-dynamic-translation.mjs.map +1 -0
  189. package/fesm2022/koobiq-components-file-upload.mjs +44 -27
  190. package/fesm2022/koobiq-components-file-upload.mjs.map +1 -1
  191. package/fesm2022/koobiq-components-filter-bar.mjs +100 -71
  192. package/fesm2022/koobiq-components-filter-bar.mjs.map +1 -1
  193. package/fesm2022/koobiq-components-form-field.mjs +100 -49
  194. package/fesm2022/koobiq-components-form-field.mjs.map +1 -1
  195. package/fesm2022/koobiq-components-icon.mjs +2 -2
  196. package/fesm2022/koobiq-components-icon.mjs.map +1 -1
  197. package/fesm2022/koobiq-components-input.mjs +14 -9
  198. package/fesm2022/koobiq-components-input.mjs.map +1 -1
  199. package/fesm2022/koobiq-components-markdown.mjs +2 -2
  200. package/fesm2022/koobiq-components-markdown.mjs.map +1 -1
  201. package/fesm2022/koobiq-components-modal.mjs +19 -17
  202. package/fesm2022/koobiq-components-modal.mjs.map +1 -1
  203. package/fesm2022/koobiq-components-navbar-ic.mjs +800 -0
  204. package/fesm2022/koobiq-components-navbar-ic.mjs.map +1 -0
  205. package/fesm2022/koobiq-components-navbar.mjs +2 -2
  206. package/fesm2022/koobiq-components-navbar.mjs.map +1 -1
  207. package/fesm2022/koobiq-components-popover.mjs +11 -6
  208. package/fesm2022/koobiq-components-popover.mjs.map +1 -1
  209. package/fesm2022/koobiq-components-scrollbar.mjs +4 -4
  210. package/fesm2022/koobiq-components-scrollbar.mjs.map +1 -1
  211. package/fesm2022/koobiq-components-select.mjs +23 -10
  212. package/fesm2022/koobiq-components-select.mjs.map +1 -1
  213. package/fesm2022/koobiq-components-sidebar.mjs +45 -26
  214. package/fesm2022/koobiq-components-sidebar.mjs.map +1 -1
  215. package/fesm2022/koobiq-components-sidepanel.mjs +24 -12
  216. package/fesm2022/koobiq-components-sidepanel.mjs.map +1 -1
  217. package/fesm2022/koobiq-components-splitter.mjs.map +1 -1
  218. package/fesm2022/koobiq-components-tabs.mjs +31 -31
  219. package/fesm2022/koobiq-components-tabs.mjs.map +1 -1
  220. package/fesm2022/koobiq-components-tags.mjs +284 -47
  221. package/fesm2022/koobiq-components-tags.mjs.map +1 -1
  222. package/fesm2022/koobiq-components-textarea.mjs +5 -3
  223. package/fesm2022/koobiq-components-textarea.mjs.map +1 -1
  224. package/fesm2022/koobiq-components-timepicker.mjs.map +1 -1
  225. package/fesm2022/koobiq-components-timezone.mjs +2 -2
  226. package/fesm2022/koobiq-components-timezone.mjs.map +1 -1
  227. package/fesm2022/koobiq-components-tooltip.mjs +2 -2
  228. package/fesm2022/koobiq-components-tooltip.mjs.map +1 -1
  229. package/fesm2022/koobiq-components-tree-select.mjs +10 -8
  230. package/fesm2022/koobiq-components-tree-select.mjs.map +1 -1
  231. package/fesm2022/koobiq-components-tree.mjs +3 -3
  232. package/fesm2022/koobiq-components-tree.mjs.map +1 -1
  233. package/fesm2022/koobiq-components-username.mjs +308 -0
  234. package/fesm2022/koobiq-components-username.mjs.map +1 -0
  235. package/file-upload/_file-upload-theme.scss +1 -1
  236. package/file-upload/file-drop.d.ts +1 -1
  237. package/file-upload/file-upload.d.ts +5 -2
  238. package/file-upload/multiple-file-upload.component.d.ts +4 -2
  239. package/file-upload/single-file-upload.component.d.ts +5 -3
  240. package/filter-bar/_filter-bar-theme.scss +2 -2
  241. package/filter-bar/filters.d.ts +1 -0
  242. package/filter-bar/pipes/pipe-date.d.ts +3 -1
  243. package/filter-bar/pipes/pipe-datetime.d.ts +3 -1
  244. package/filter-bar/pipes/pipe-multi-select.d.ts +0 -1
  245. package/filter-bar/pipes/pipe-multi-tree-select.d.ts +3 -2
  246. package/filter-bar/pipes/pipe-select.d.ts +0 -1
  247. package/filter-bar/pipes/pipe-tree-select.d.ts +3 -2
  248. package/form-field/_form-field-theme.scss +27 -18
  249. package/form-field/cleaner.d.ts +4 -2
  250. package/form-field/cleaner.scss +6 -2
  251. package/form-field/form-field.scss +12 -2
  252. package/form-field/password-hint.d.ts +7 -0
  253. package/form-field/password-toggle.d.ts +23 -3
  254. package/form-field/password-toggle.scss +4 -8
  255. package/form-field/reactive-password-hint.d.ts +1 -0
  256. package/icon/_icon-button-theme.scss +8 -2
  257. package/modal/modal.component.d.ts +6 -6
  258. package/navbar-ic/_navbar-ic-theme.scss +81 -0
  259. package/navbar-ic/index.d.ts +1 -0
  260. package/navbar-ic/navbar-ic-divider.scss +7 -0
  261. package/navbar-ic/navbar-ic-header.d.ts +18 -0
  262. package/navbar-ic/navbar-ic-header.scss +53 -0
  263. package/navbar-ic/navbar-ic-item.d.ts +125 -0
  264. package/navbar-ic/navbar-ic-item.scss +96 -0
  265. package/navbar-ic/navbar-ic-tokens.scss +22 -0
  266. package/navbar-ic/navbar-ic.animation.d.ts +2 -0
  267. package/navbar-ic/navbar-ic.d.ts +103 -0
  268. package/navbar-ic/navbar-ic.module.d.ts +14 -0
  269. package/navbar-ic/navbar-ic.scss +32 -0
  270. package/navbar-ic/public-api.d.ts +4 -0
  271. package/package.json +34 -4
  272. package/popover/_popover-theme.scss +6 -2
  273. package/popover/popover-confirm.component.d.ts +1 -1
  274. package/popover/popover-tokens.scss +2 -0
  275. package/popover/popover.component.d.ts +6 -3
  276. package/prebuilt-themes/dark-theme.css +1 -1
  277. package/prebuilt-themes/light-theme.css +1 -1
  278. package/prebuilt-themes/theme.css +1 -1
  279. package/schematics/ng-add/index.js +4 -4
  280. package/scrollbar/scrollbar.component.d.ts +4 -4
  281. package/select/select.component.d.ts +14 -2
  282. package/sidebar/sidebar.component.d.ts +31 -5
  283. package/sidepanel/sidepanel-container.component.d.ts +9 -0
  284. package/sidepanel/sidepanel-ref.d.ts +3 -3
  285. package/splitter/splitter.component.d.ts +2 -2
  286. package/tabs/tab-group.component.d.ts +1 -1
  287. package/tabs/tab.component.d.ts +1 -1
  288. package/tags/_tag-theme.scss +10 -1
  289. package/tags/tag-input.d.ts +1 -1
  290. package/tags/tag-list.component.d.ts +11 -3
  291. package/tags/tag-list.scss +5 -0
  292. package/tags/tag.component.d.ts +78 -8
  293. package/tags/tag.module.d.ts +1 -1
  294. package/tags/tag.scss +18 -0
  295. package/textarea/textarea-tokens.scss +1 -1
  296. package/timepicker/timepicker.directive.d.ts +1 -1
  297. package/tooltip/_tooltip-theme.scss +9 -2
  298. package/tooltip/tooltip-tokens.scss +2 -0
  299. package/tooltip/tooltip.component.d.ts +2 -2
  300. package/tree/tree-selection.component.d.ts +1 -1
  301. package/tree-select/tree-select.component.d.ts +1 -1
  302. package/username/constants.d.ts +15 -0
  303. package/username/index.d.ts +5 -0
  304. package/username/module.d.ts +8 -0
  305. package/username/types.d.ts +62 -0
  306. package/username/username-tokens.scss +6 -0
  307. package/username/username.d.ts +68 -0
  308. package/username/username.pipe.d.ts +23 -0
  309. package/username/username.scss +107 -0
@@ -1,4 +1,4 @@
1
- import { OnInit } from '@angular/core';
1
+ import { AfterViewInit, OnInit } from '@angular/core';
2
2
  import { UntypedFormControl } from '@angular/forms';
3
3
  import { FlatTreeControl, KbqTreeFlatDataSource, KbqTreeFlattener, KbqTreeOption } from '@koobiq/components/tree';
4
4
  import { KbqTreeSelect } from '@koobiq/components/tree-select';
@@ -6,7 +6,7 @@ import { Observable } from 'rxjs';
6
6
  import { KbqPipeTemplate, KbqSelectValue, KbqTreeSelectFlatNode, KbqTreeSelectNode } from '../filter-bar.types';
7
7
  import { KbqBasePipe } from './base-pipe';
8
8
  import * as i0 from "@angular/core";
9
- export declare class KbqPipeTreeSelectComponent extends KbqBasePipe<KbqSelectValue> implements OnInit {
9
+ export declare class KbqPipeTreeSelectComponent extends KbqBasePipe<KbqSelectValue> implements OnInit, AfterViewInit {
10
10
  /** control for search options */
11
11
  searchControl: UntypedFormControl;
12
12
  /** filtered by search options */
@@ -23,6 +23,7 @@ export declare class KbqPipeTreeSelectComponent extends KbqBasePipe<KbqSelectVal
23
23
  get isEmpty(): boolean;
24
24
  constructor();
25
25
  ngOnInit(): void;
26
+ ngAfterViewInit(): void;
26
27
  hasChild(_: number, nodeData: any): any;
27
28
  onSelect(item: KbqTreeOption): void;
28
29
  /** updates values for selection and value template */
@@ -66,32 +66,41 @@
66
66
  &.kbq-form-field-type-datepicker,
67
67
  &.kbq-form-field-type-input-password,
68
68
  &.kbq-form-field-type-tag-list,
69
- &.kbq-form-field-type-select.cdk-keyboard-focused {
70
- &.cdk-focused {
71
- @include _kbq-form-field-state(states-focused);
72
-
73
- & .kbq-form-field__container {
74
- box-shadow: 0 0 0.1px 1px var(--kbq-form-field-states-focused-focus-outline);
69
+ &.kbq-form-field-type-select {
70
+ &:not(:has(.cdk-keyboard-focused, .kbq-focused)) {
71
+ &.cdk-focused {
72
+ @include _kbq-form-field-state(states-focused);
73
+
74
+ & .kbq-form-field__container {
75
+ box-shadow: 0 0 0.1px 1px var(--kbq-form-field-states-focused-focus-outline);
76
+ }
75
77
  }
76
- }
77
78
 
78
- // Invalid by control `ErrorStateMatcher`
79
- &.kbq-form-field_invalid,
80
- // Invalid by `KbqValidateDirective`
81
- &.kbq-form-field_has-validate-directive.ng-invalid {
82
- @include _kbq-form-field-state(states-error);
79
+ // Invalid by control `ErrorStateMatcher`
80
+ &.kbq-form-field_invalid,
81
+ // Invalid by `KbqValidateDirective`
82
+ &.kbq-form-field_has-validate-directive.ng-invalid {
83
+ @include _kbq-form-field-state(states-error);
83
84
 
84
- &.cdk-focused .kbq-form-field__container {
85
- box-shadow: 0 0 0.1px 1px var(--kbq-form-field-states-error-focused-focus-outline);
86
- }
85
+ &.cdk-focused .kbq-form-field__container {
86
+ box-shadow: 0 0 0.1px 1px var(--kbq-form-field-states-error-focused-focus-outline);
87
+ }
87
88
 
88
- & .kbq-icon.kbq-empty {
89
- color: var(--kbq-form-field-states-error-text);
90
- -webkit-text-fill-color: var(--kbq-form-field-states-error-text);
89
+ & .kbq-icon.kbq-empty {
90
+ color: var(--kbq-form-field-states-error-text);
91
+ -webkit-text-fill-color: var(--kbq-form-field-states-error-text);
92
+ }
91
93
  }
92
94
  }
93
95
  }
94
96
 
97
+ // todo quick fix for bug DS-4060. Technical debt DS-4096
98
+ & .kbq-form-field__container:has(.kbq-input:-webkit-autofill),
99
+ & .kbq-form-field__container:has(.kbq-input:-webkit-autofill:hover),
100
+ & .kbq-form-field__container:has(.kbq-input:-webkit-autofill:focus) {
101
+ background-color: var(--kbq-form-field-states-autofill-background) !important;
102
+ }
103
+
95
104
  &.kbq-disabled {
96
105
  @include _kbq-form-field-state(states-disabled);
97
106
 
@@ -1,9 +1,11 @@
1
+ import { KbqIconButton } from '@koobiq/components/icon';
1
2
  import * as i0 from "@angular/core";
2
3
  /**
3
4
  * Element to be placed in end of the form field.
4
5
  * Resets form control by click.
5
6
  */
6
- export declare class KbqCleaner {
7
+ export declare class KbqCleaner extends KbqIconButton {
8
+ constructor();
7
9
  static ɵfac: i0.ɵɵFactoryDeclaration<KbqCleaner, never>;
8
- static ɵcmp: i0.ɵɵComponentDeclaration<KbqCleaner, "kbq-cleaner", ["kbqCleaner"], {}, {}, never, never, true, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<KbqCleaner, "kbq-cleaner", ["kbqCleaner"], {}, {}, never, ["*"], true, never>;
9
11
  }
@@ -3,6 +3,10 @@
3
3
  align-items: center;
4
4
  justify-content: center;
5
5
 
6
- width: var(--kbq-form-field-size-addon-width);
7
- height: 100%;
6
+ width: 26px;
7
+ height: var(--kbq-size-xxl);
8
+
9
+ outline: none;
10
+
11
+ border-radius: var(--kbq-size-xxs);
8
12
  }
@@ -41,6 +41,11 @@
41
41
 
42
42
  padding-left: var(--kbq-form-field-size-container-left-padding);
43
43
  padding-right: var(--kbq-form-field-size-container-right-padding);
44
+
45
+ &:has(.kbq-textarea) {
46
+ --kbq-form-field-size-container-left-padding: 0;
47
+ --kbq-form-field-size-container-right-padding: 0;
48
+ }
44
49
  }
45
50
 
46
51
  .kbq-form-field:not(.kbq-form-field-type-textarea) {
@@ -55,7 +60,8 @@
55
60
  padding-left: var(--kbq-form-field-size-infix-left-padding);
56
61
 
57
62
  &:has(.kbq-select_multiple, .kbq-select_multiline):not(:has(.kbq-select__trigger_empty)),
58
- &:has(.kbq-tag-list) {
63
+ &:has(.kbq-tag-list),
64
+ &:has(.kbq-textarea) {
59
65
  padding-left: 0;
60
66
 
61
67
  max-width: 100%;
@@ -98,7 +104,11 @@
98
104
  justify-content: center;
99
105
  align-items: center;
100
106
 
101
- min-width: var(--kbq-form-field-size-addon-width);
107
+ & .kbq-prefix,
108
+ & .kbq-suffix {
109
+ min-width: var(--kbq-form-field-size-addon-width);
110
+ text-align: center;
111
+ }
102
112
  }
103
113
 
104
114
  .kbq-form-field__prefix {
@@ -1,4 +1,5 @@
1
1
  import { AfterContentInit, ChangeDetectorRef, QueryList } from '@angular/core';
2
+ import { KbqComponentColors } from '@koobiq/components/core';
2
3
  import { KbqFormField } from './form-field';
3
4
  import { KbqHint } from './hint';
4
5
  import * as i0 from "@angular/core";
@@ -31,6 +32,12 @@ export declare class KbqPasswordHint extends KbqHint implements AfterContentInit
31
32
  hasError: boolean;
32
33
  checked: boolean;
33
34
  get icon(): string;
35
+ /**
36
+ * The form field hint icon color.
37
+ *
38
+ * @docs-private
39
+ */
40
+ protected get iconColor(): KbqComponentColors;
34
41
  private checkRule;
35
42
  private get control();
36
43
  private lastControlValue;
@@ -1,10 +1,15 @@
1
- import { TemplateRef } from '@angular/core';
1
+ import { FocusMonitor } from '@angular/cdk/a11y';
2
+ import { AfterContentInit, AfterViewInit, ChangeDetectorRef, OnDestroy, TemplateRef } from '@angular/core';
2
3
  import { KbqIconButton } from '@koobiq/components/icon';
3
4
  import { KbqTooltipTrigger } from '@koobiq/components/tooltip';
4
5
  import * as i0 from "@angular/core";
5
6
  /** Component which changes password visibility. */
6
- export declare class KbqPasswordToggle extends KbqTooltipTrigger {
7
+ export declare class KbqPasswordToggle extends KbqTooltipTrigger implements AfterViewInit, OnDestroy, AfterContentInit {
8
+ protected readonly nativeElement: any;
9
+ protected readonly focusMonitor: FocusMonitor;
10
+ protected readonly changeDetectorRef: ChangeDetectorRef;
7
11
  private readonly formField;
12
+ tabindex: number;
8
13
  /**
9
14
  * @docs-private
10
15
  */
@@ -12,6 +17,7 @@ export declare class KbqPasswordToggle extends KbqTooltipTrigger {
12
17
  get content(): string | TemplateRef<any>;
13
18
  set content(content: string | TemplateRef<any>);
14
19
  kbqTooltipHidden: string | TemplateRef<any>;
20
+ protected hasError: boolean;
15
21
  /** Form field password control. */
16
22
  private get control();
17
23
  /**
@@ -27,10 +33,24 @@ export declare class KbqPasswordToggle extends KbqTooltipTrigger {
27
33
  */
28
34
  get visibility(): 'hidden' | 'visible';
29
35
  constructor();
36
+ /**
37
+ * @docs-private
38
+ */
39
+ ngAfterContentInit(): void;
40
+ /**
41
+ * @docs-private
42
+ */
43
+ ngAfterViewInit(): void;
44
+ /**
45
+ * @docs-private
46
+ */
47
+ ngOnDestroy(): void;
30
48
  /**
31
49
  * @docs-private
32
50
  */
33
51
  toggle(event: KeyboardEvent): void;
52
+ private updateState;
34
53
  static ɵfac: i0.ɵɵFactoryDeclaration<KbqPasswordToggle, never>;
35
- static ɵcmp: i0.ɵɵComponentDeclaration<KbqPasswordToggle, "kbq-password-toggle", ["kbqPasswordToggle"], { "content": { "alias": "kbqTooltipNotHidden"; "required": false; }; "kbqTooltipHidden": { "alias": "kbqTooltipHidden"; "required": false; }; }, {}, never, never, true, never>;
54
+ static ɵcmp: i0.ɵɵComponentDeclaration<KbqPasswordToggle, "kbq-password-toggle", ["kbqPasswordToggle"], { "tabindex": { "alias": "tabindex"; "required": false; }; "content": { "alias": "kbqTooltipNotHidden"; "required": false; }; "kbqTooltipHidden": { "alias": "kbqTooltipHidden"; "required": false; }; }, {}, never, ["*"], true, never>;
55
+ static ngAcceptInputType_tabindex: unknown;
36
56
  }
@@ -3,14 +3,10 @@
3
3
  align-items: center;
4
4
  justify-content: center;
5
5
 
6
- width: var(--kbq-form-field-size-addon-width);
7
- height: 100%;
6
+ width: 26px;
7
+ height: var(--kbq-size-xxl);
8
8
 
9
- &::-moz-focus-inner {
10
- border: 0;
11
- }
9
+ border-radius: var(--kbq-size-xxs);
12
10
 
13
- &:focus {
14
- outline: none;
15
- }
11
+ outline: none;
16
12
  }
@@ -4,6 +4,7 @@ import * as i0 from "@angular/core";
4
4
  export declare class KbqReactivePasswordHint extends KbqHint {
5
5
  private readonly formField;
6
6
  private readonly destroyRef;
7
+ private readonly changeDetectorRef;
7
8
  /** Whether the form field control has an error. */
8
9
  readonly hasError: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
9
10
  /**
@@ -91,8 +91,14 @@
91
91
 
92
92
  &.cdk-keyboard-focused {
93
93
  box-shadow:
94
- inset 0 0 0.1px 1px var(--kbq-states-line-focus-theme),
95
- 0 0 0.1px 1px var(--kbq-states-line-focus-theme);
94
+ inset 0 0 0 1px var(--kbq-states-line-focus-theme),
95
+ 0 0 0 1px var(--kbq-states-line-focus-theme);
96
+
97
+ &.kbq-error {
98
+ box-shadow:
99
+ inset 0 0 0 1px var(--kbq-states-line-focus-error),
100
+ 0 0 0 1px var(--kbq-states-line-focus-error);
101
+ }
96
102
  }
97
103
  }
98
104
  }
@@ -31,7 +31,7 @@ export declare class KbqModalComponent<T = any, R = any> extends KbqModalRef<T,
31
31
  get kbqVisible(): boolean;
32
32
  set kbqVisible(value: boolean);
33
33
  private _kbqVisible;
34
- kbqVisibleChange: EventEmitter<boolean>;
34
+ readonly kbqVisibleChange: EventEmitter<boolean>;
35
35
  kbqWidth: number | string;
36
36
  kbqSize: ModalSize;
37
37
  kbqWrapClassName: string;
@@ -50,20 +50,20 @@ export declare class KbqModalComponent<T = any, R = any> extends KbqModalRef<T,
50
50
  private _kbqMaskClosable;
51
51
  kbqMaskStyle: object;
52
52
  kbqBodyStyle: object;
53
- kbqAfterOpen: EventEmitter<void>;
54
- kbqAfterClose: EventEmitter<R | undefined>;
53
+ readonly kbqAfterOpen: EventEmitter<void>;
54
+ readonly kbqAfterClose: EventEmitter<R | undefined>;
55
55
  kbqOkText: string;
56
56
  kbqOkType: KbqComponentColors;
57
57
  kbqRestoreFocus: boolean;
58
58
  get kbqOkLoading(): boolean;
59
59
  set kbqOkLoading(value: boolean);
60
60
  private _kbqOkLoading;
61
- kbqOnOk: EventEmitter<T> | OnClickCallback<T>;
61
+ readonly kbqOnOk: EventEmitter<T> | OnClickCallback<T>;
62
62
  kbqCancelText: string;
63
63
  get kbqCancelLoading(): boolean;
64
64
  set kbqCancelLoading(value: boolean);
65
65
  private _kbqCancelLoading;
66
- kbqOnCancel: EventEmitter<T> | OnClickCallback<T>;
66
+ readonly kbqOnCancel: EventEmitter<T> | OnClickCallback<T>;
67
67
  modalContainer: ElementRef;
68
68
  bodyContainer: ViewContainerRef;
69
69
  autoFocusedButtons: QueryList<ElementRef>;
@@ -85,8 +85,8 @@ export declare class KbqModalComponent<T = any, R = any> extends KbqModalRef<T,
85
85
  private container;
86
86
  constructor(overlay: Overlay, renderer: Renderer2, cfr: ComponentFactoryResolver, elementRef: ElementRef, viewContainer: ViewContainerRef, modalControl: KbqModalControlService, changeDetector: ChangeDetectorRef, focusMonitor: FocusMonitor);
87
87
  kbqGetContainer: HTMLElement | OverlayRef | (() => HTMLElement | OverlayRef);
88
- ngOnInit(): void;
89
88
  ngOnChanges(changes: SimpleChanges): void;
89
+ ngOnInit(): void;
90
90
  ngAfterViewInit(): void;
91
91
  ngOnDestroy(): void;
92
92
  checkOverflow(): void;
@@ -0,0 +1,81 @@
1
+ @use '../core/styles/common/tokens';
2
+
3
+ @mixin kbq-navbar-ic-item($state-name) {
4
+ & .kbq-navbar-ic-item__inner,
5
+ & .kbq-navbar-ic-header__inner {
6
+ background: var(--kbq-navbar-ic-item-#{$state-name}-content-background);
7
+ }
8
+
9
+ .kbq-navbar-ic-title {
10
+ color: var(--kbq-navbar-ic-item-#{$state-name}-content-text);
11
+ }
12
+
13
+ & > .kbq-icon.kbq-empty {
14
+ color: var(--kbq-navbar-ic-item-#{$state-name}-content-icon-left);
15
+ }
16
+
17
+ .kbq-navbar-ic-item__arrow-icon {
18
+ color: var(--kbq-navbar-ic-item-#{$state-name}-content-icon-right);
19
+ }
20
+ }
21
+
22
+ @mixin kbq-navbar-ic-theme() {
23
+ .kbq-navbar-ic .kbq-navbar-ic__top-layer {
24
+ background-color: var(--kbq-navbar-ic-background);
25
+ box-shadow: var(--kbq-navbar-ic-border);
26
+ }
27
+
28
+ .kbq-navbar-ic-item,
29
+ .kbq-navbar-ic-header.kbq-navbar-ic-header_interactive,
30
+ .kbq-navbar-ic-toggle {
31
+ cursor: pointer;
32
+
33
+ @include kbq-navbar-ic-item(default);
34
+
35
+ &:not(.kbq-disabled) {
36
+ &:hover {
37
+ @include kbq-navbar-ic-item(states-hover);
38
+ }
39
+
40
+ &.cdk-keyboard-focused {
41
+ outline: none;
42
+
43
+ & .kbq-navbar-ic-item__inner,
44
+ & .kbq-navbar-ic-header__inner {
45
+ box-shadow: inset 0 0 0 2px var(--kbq-states-line-focus-theme);
46
+ }
47
+ }
48
+
49
+ &.kbq-active,
50
+ &:active {
51
+ @include kbq-navbar-ic-item(states-selected);
52
+ }
53
+ }
54
+
55
+ &.kbq-disabled {
56
+ @include kbq-navbar-ic-item(states-disabled);
57
+
58
+ pointer-events: none;
59
+ cursor: default;
60
+ }
61
+ }
62
+
63
+ .kbq-navbar-ic-divider {
64
+ background: var(--kbq-line-contrast-less);
65
+ }
66
+ }
67
+
68
+ @mixin kbq-navbar-ic-typography() {
69
+ .kbq-navbar-ic-title {
70
+ @include tokens.kbq-typography-level-to-styles-css-variables(typography, text-normal-medium);
71
+ }
72
+
73
+ .kbq-navbar-ic-header .kbq-navbar-ic-title {
74
+ @include tokens.kbq-typography-level-to-styles-css-variables(typography, text-big-strong);
75
+
76
+ &.kbq-navbar-ic-title_text-overflown {
77
+ @include tokens.kbq-typography-level-to-styles-css-variables(typography, text-compact-strong);
78
+ line-height: 12px;
79
+ }
80
+ }
81
+ }
@@ -0,0 +1 @@
1
+ export * from './public-api';
@@ -0,0 +1,7 @@
1
+ .kbq-navbar-ic-divider {
2
+ display: block;
3
+
4
+ height: 1px;
5
+
6
+ margin: var(--kbq-size-s) var(--kbq-size-l);
7
+ }
@@ -0,0 +1,18 @@
1
+ import { AfterContentInit, DestroyRef } from '@angular/core';
2
+ import { KbqTooltipTrigger } from '@koobiq/components/tooltip';
3
+ import { KbqNavbarIc } from './navbar-ic';
4
+ import { KbqNavbarIcLogo, KbqNavbarIcTitle } from './navbar-ic-item';
5
+ import * as i0 from "@angular/core";
6
+ export declare class KbqNavbarIcHeader extends KbqTooltipTrigger implements AfterContentInit {
7
+ protected readonly navbar: KbqNavbarIc;
8
+ protected readonly nativeElement: any;
9
+ protected readonly destroyRef: DestroyRef;
10
+ logo: KbqNavbarIcLogo;
11
+ title: KbqNavbarIcTitle;
12
+ get titleText(): string;
13
+ get isLink(): boolean;
14
+ constructor();
15
+ ngAfterContentInit(): void;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<KbqNavbarIcHeader, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<KbqNavbarIcHeader, "kbq-navbar-ic-header, [kbq-navbar-ic-header]", ["kbqNavbarIcHeader"], {}, {}, ["logo", "title"], ["*"], true, never>;
18
+ }
@@ -0,0 +1,53 @@
1
+ .kbq-navbar-ic-header {
2
+ display: block;
3
+
4
+ margin-top: var(--kbq-size-l);
5
+ margin-bottom: var(--kbq-size-l);
6
+
7
+ padding: var(--kbq-size-3xs) var(--kbq-size-m);
8
+
9
+ & .kbq-navbar-ic-header__inner {
10
+ display: flex;
11
+ flex-direction: row;
12
+
13
+ padding: var(--kbq-size-xs) var(--kbq-size-s);
14
+
15
+ gap: var(--kbq-size-s);
16
+
17
+ border-radius: var(--kbq-navbar-ic-item-size-content-border-radius);
18
+ }
19
+
20
+ & .kbq-navbar-ic-logo {
21
+ display: flex;
22
+ align-self: center;
23
+ }
24
+
25
+ & .kbq-navbar-ic-title {
26
+ display: block;
27
+ align-items: center;
28
+
29
+ text-overflow: ellipsis;
30
+ white-space: nowrap;
31
+ overflow: hidden;
32
+
33
+ &.kbq-navbar-ic-title_text-overflown {
34
+ display: -webkit-box;
35
+
36
+ -webkit-box-orient: vertical;
37
+ -webkit-line-clamp: 2;
38
+ white-space: normal;
39
+ }
40
+ }
41
+
42
+ &.kbq-navbar-ic-header_interactive {
43
+ cursor: pointer;
44
+ }
45
+
46
+ &.kbq-collapsed .kbq-navbar-ic-title {
47
+ display: none;
48
+ }
49
+ }
50
+
51
+ a.kbq-navbar-ic-header {
52
+ text-decoration: none;
53
+ }
@@ -0,0 +1,125 @@
1
+ import { FocusMonitor, FocusOrigin } from '@angular/cdk/a11y';
2
+ import { AfterContentInit, AfterViewInit, ChangeDetectorRef, ElementRef, NgZone, OnDestroy } from '@angular/core';
3
+ import { IFocusableOption } from '@koobiq/cdk/a11y';
4
+ import { KbqButton, KbqButtonCssStyler } from '@koobiq/components/button';
5
+ import { KbqRectangleItem } from '@koobiq/components/core';
6
+ import { KbqFormField } from '@koobiq/components/form-field';
7
+ import { KbqIcon } from '@koobiq/components/icon';
8
+ import { KbqTooltipTrigger, TooltipModifier } from '@koobiq/components/tooltip';
9
+ import { Subject } from 'rxjs';
10
+ import { KbqNavbarIc } from './navbar-ic';
11
+ import * as i0 from "@angular/core";
12
+ import * as i1 from "@koobiq/components/core";
13
+ /**
14
+ * The maximum number of characters that can be placed in a title without being wrapped.
15
+ */
16
+ export declare const kbqMaxSymbolsInHeaderTitle = 22;
17
+ export interface KbqNavbarFocusableItemEvent {
18
+ item: KbqNavbarIcFocusableItem;
19
+ }
20
+ export declare class KbqNavbarIcLogo {
21
+ static ɵfac: i0.ɵɵFactoryDeclaration<KbqNavbarIcLogo, never>;
22
+ static ɵdir: i0.ɵɵDirectiveDeclaration<KbqNavbarIcLogo, "[kbqNavbarIcLogo]", never, {}, {}, never, never, true, never>;
23
+ }
24
+ export declare class KbqNavbarIcTitle implements AfterViewInit {
25
+ protected readonly isBrowser: boolean;
26
+ protected readonly nativeElement: any;
27
+ private readonly window;
28
+ readonly hovered: Subject<boolean>;
29
+ outerElementWidth: number;
30
+ isTextOverflown: boolean;
31
+ get text(): string;
32
+ get isOverflown(): boolean;
33
+ ngAfterViewInit(): void;
34
+ getOuterElementWidth(): number;
35
+ checkTextOverflown(): void;
36
+ static ɵfac: i0.ɵɵFactoryDeclaration<KbqNavbarIcTitle, never>;
37
+ static ɵdir: i0.ɵɵDirectiveDeclaration<KbqNavbarIcTitle, "[kbqNavbarIcTitle]", never, {}, {}, never, never, true, never>;
38
+ }
39
+ export declare class KbqNavbarIcDivider {
40
+ static ɵfac: i0.ɵɵFactoryDeclaration<KbqNavbarIcDivider, never>;
41
+ static ɵdir: i0.ɵɵDirectiveDeclaration<KbqNavbarIcDivider, "[kbqNavbarIcDivider]", never, {}, {}, never, never, true, never>;
42
+ }
43
+ export declare class KbqNavbarIcFocusableItem implements AfterContentInit, AfterViewInit, OnDestroy, IFocusableOption {
44
+ protected readonly elementRef: ElementRef<any>;
45
+ protected readonly changeDetector: ChangeDetectorRef;
46
+ protected readonly focusMonitor: FocusMonitor;
47
+ protected readonly ngZone: NgZone;
48
+ /** @docs-private */
49
+ title: KbqNavbarIcTitle;
50
+ /** @docs-private */
51
+ button: KbqButton;
52
+ /** @docs-private */
53
+ formField: KbqFormField;
54
+ get tooltip(): KbqTooltipTrigger;
55
+ private _tooltip;
56
+ readonly onFocus: Subject<KbqNavbarFocusableItemEvent>;
57
+ readonly onBlur: Subject<KbqNavbarFocusableItemEvent>;
58
+ get hasFocus(): boolean;
59
+ set hasFocus(value: boolean);
60
+ private _hasFocus;
61
+ /** Whether the item is disabled. */
62
+ get disabled(): boolean;
63
+ set disabled(value: boolean);
64
+ private _disabled;
65
+ ngAfterViewInit(): void;
66
+ ngAfterContentInit(): void;
67
+ ngOnDestroy(): void;
68
+ setTooltip(value: KbqTooltipTrigger): void;
69
+ focus(origin?: FocusOrigin): void;
70
+ /** @docs-private */
71
+ focusHandler(): void;
72
+ /** @docs-private */
73
+ blurHandler(): void;
74
+ getLabel(): string;
75
+ static ɵfac: i0.ɵɵFactoryDeclaration<KbqNavbarIcFocusableItem, never>;
76
+ static ɵdir: i0.ɵɵDirectiveDeclaration<KbqNavbarIcFocusableItem, "kbq-navbar-ic-item, [kbq-navbar-ic-item], kbq-navbar-ic-header, [kbq-navbar-ic-header], kbq-navbar-ic-toggle", never, { "disabled": { "alias": "disabled"; "required": false; }; }, {}, ["title", "button", "formField"], never, true, never>;
77
+ static ngAcceptInputType_disabled: unknown;
78
+ }
79
+ export declare class KbqNavbarIcItem extends KbqTooltipTrigger implements AfterContentInit {
80
+ readonly rectangleElement: KbqRectangleItem;
81
+ readonly navbarFocusableItem: KbqNavbarIcFocusableItem;
82
+ private changeDetectorRef;
83
+ private dropdownTrigger;
84
+ private tooltip;
85
+ /** @docs-private */
86
+ title: KbqNavbarIcTitle;
87
+ /** @docs-private */
88
+ icon: KbqIcon;
89
+ /** @docs-private */
90
+ button: KbqButtonCssStyler;
91
+ get trigger(): string;
92
+ set trigger(value: string);
93
+ set collapsed(value: boolean);
94
+ private _collapsed;
95
+ get croppedText(): string;
96
+ get titleText(): string;
97
+ get disabled(): boolean;
98
+ set disabled(value: boolean);
99
+ get hasDropDownTrigger(): boolean;
100
+ get showDropDownAngle(): boolean;
101
+ get hasCroppedText(): boolean;
102
+ constructor();
103
+ ngAfterContentInit(): void;
104
+ /** @docs-private */
105
+ updateTooltip(): void;
106
+ /** @docs-private */
107
+ onKeyDown($event: KeyboardEvent): void;
108
+ static ɵfac: i0.ɵɵFactoryDeclaration<KbqNavbarIcItem, never>;
109
+ static ɵcmp: i0.ɵɵComponentDeclaration<KbqNavbarIcItem, "kbq-navbar-ic-item, [kbq-navbar-ic-item]", ["kbqNavbarIcItem"], { "trigger": { "alias": "kbqTrigger"; "required": false; }; }, {}, ["title", "icon", "button"], ["[kbq-icon]", "[kbqNavbarIcTitle]", "*"], true, [{ directive: typeof i1.KbqRectangleItem; inputs: {}; outputs: {}; }]>;
110
+ }
111
+ export declare class KbqNavbarIcToggle {
112
+ readonly navbar: KbqNavbarIc;
113
+ readonly rectangleElement: KbqRectangleItem;
114
+ protected readonly changeDetectorRef: ChangeDetectorRef;
115
+ protected modifier: TooltipModifier;
116
+ /** localized data
117
+ * @docs-private */
118
+ get localeData(): any;
119
+ constructor();
120
+ /** @docs-private */
121
+ onKeydown($event: KeyboardEvent): void;
122
+ toggle: () => void;
123
+ static ɵfac: i0.ɵɵFactoryDeclaration<KbqNavbarIcToggle, never>;
124
+ static ɵcmp: i0.ɵɵComponentDeclaration<KbqNavbarIcToggle, "kbq-navbar-ic-toggle", never, {}, {}, never, ["[kbqNavbarIcTitle]"], true, [{ directive: typeof i1.KbqRectangleItem; inputs: {}; outputs: {}; }]>;
125
+ }