@koobiq/components 17.0.0-rc.4 → 17.0.0-rc.6

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 (75) hide show
  1. package/alert/_alert-theme.scss +28 -16
  2. package/alert/alert.component.scss +140 -41
  3. package/code-block/README.md +1 -0
  4. package/code-block/code-block.scss +9 -0
  5. package/core/option/_option-action-theme.scss +6 -8
  6. package/core/styles/theming/_components-theming.scss +7 -0
  7. package/core/styles/theming/_theming.scss +1 -4
  8. package/dropdown/_dropdown-theme.scss +9 -3
  9. package/esm2022/alert/alert.component.mjs +2 -2
  10. package/esm2022/code-block/code-block.component.mjs +2 -2
  11. package/esm2022/core/version.mjs +2 -2
  12. package/esm2022/datepicker/datepicker-animations.mjs +2 -2
  13. package/esm2022/input/input-number.mjs +2 -2
  14. package/esm2022/modal/modal.component.mjs +4 -4
  15. package/esm2022/navbar/vertical-navbar.component.mjs +2 -2
  16. package/esm2022/select/select.component.mjs +34 -7
  17. package/esm2022/splitter/splitter.component.mjs +2 -2
  18. package/esm2022/table/table.component.mjs +29 -6
  19. package/esm2022/table/table.module.mjs +14 -6
  20. package/esm2022/tabs/tab-body.component.mjs +1 -1
  21. package/esm2022/tabs/tab-group.component.mjs +2 -2
  22. package/esm2022/tags/tag.component.mjs +2 -2
  23. package/esm2022/timepicker/timepicker.directive.mjs +2 -2
  24. package/esm2022/tree/tree-base.mjs +2 -2
  25. package/fesm2022/koobiq-components-alert.mjs +2 -2
  26. package/fesm2022/koobiq-components-alert.mjs.map +1 -1
  27. package/fesm2022/koobiq-components-code-block.mjs +2 -2
  28. package/fesm2022/koobiq-components-code-block.mjs.map +1 -1
  29. package/fesm2022/koobiq-components-core.mjs +1 -1
  30. package/fesm2022/koobiq-components-core.mjs.map +1 -1
  31. package/fesm2022/koobiq-components-datepicker.mjs +1 -1
  32. package/fesm2022/koobiq-components-datepicker.mjs.map +1 -1
  33. package/fesm2022/koobiq-components-input.mjs +1 -1
  34. package/fesm2022/koobiq-components-input.mjs.map +1 -1
  35. package/fesm2022/koobiq-components-modal.mjs +3 -3
  36. package/fesm2022/koobiq-components-modal.mjs.map +1 -1
  37. package/fesm2022/koobiq-components-navbar.mjs +2 -2
  38. package/fesm2022/koobiq-components-navbar.mjs.map +1 -1
  39. package/fesm2022/koobiq-components-select.mjs +34 -7
  40. package/fesm2022/koobiq-components-select.mjs.map +1 -1
  41. package/fesm2022/koobiq-components-splitter.mjs +1 -1
  42. package/fesm2022/koobiq-components-splitter.mjs.map +1 -1
  43. package/fesm2022/koobiq-components-table.mjs +41 -10
  44. package/fesm2022/koobiq-components-table.mjs.map +1 -1
  45. package/fesm2022/koobiq-components-tabs.mjs +1 -1
  46. package/fesm2022/koobiq-components-tabs.mjs.map +1 -1
  47. package/fesm2022/koobiq-components-tags.mjs +1 -1
  48. package/fesm2022/koobiq-components-tags.mjs.map +1 -1
  49. package/fesm2022/koobiq-components-timepicker.mjs +1 -1
  50. package/fesm2022/koobiq-components-timepicker.mjs.map +1 -1
  51. package/fesm2022/koobiq-components-tree.mjs +1 -1
  52. package/fesm2022/koobiq-components-tree.mjs.map +1 -1
  53. package/icon/_icon-item-theme.scss +6 -0
  54. package/icon/_icon-theme.scss +5 -0
  55. package/input/_input-theme.scss +4 -0
  56. package/list/_list-theme.scss +5 -3
  57. package/modal/modal.component.d.ts +1 -1
  58. package/modal/modal.scss +1 -1
  59. package/navbar/vertical-navbar.scss +1 -0
  60. package/package.json +7 -7
  61. package/popover/README.md +1 -0
  62. package/prebuilt-themes/dark-theme.css +1 -1
  63. package/prebuilt-themes/light-theme.css +1 -1
  64. package/schematics/ng-add/index.js +5 -5
  65. package/select/select.component.d.ts +5 -1
  66. package/table/_table-theme.scss +10 -10
  67. package/table/table.component.d.ts +8 -1
  68. package/table/table.module.d.ts +1 -1
  69. package/table/table.scss +39 -40
  70. package/tabs/tab-body.component.d.ts +1 -1
  71. package/tabs/tab-nav-bar/tab-nav-bar.scss +0 -1
  72. package/tags/tag.component.d.ts +1 -1
  73. package/textarea/textarea.scss +2 -2
  74. package/timepicker/timepicker.directive.d.ts +1 -1
  75. package/tree/tree-base.d.ts +1 -1
@@ -10,6 +10,7 @@
10
10
  $contrast: map.get($icon-item, contrast);
11
11
  $fade-contrast: map.get($icon-item, fade-contrast);
12
12
  $error: map.get($icon-item, error);
13
+ $warning: map.get($icon-item, warning);
13
14
  $success: map.get($icon-item, success);
14
15
 
15
16
  .kbq-icon-item {
@@ -33,6 +34,11 @@
33
34
  background: map.get($error, background);
34
35
  }
35
36
 
37
+ &.kbq-warning {
38
+ color: map.get($warning, color);
39
+ background: map.get($warning, background);
40
+ }
41
+
36
42
  &.kbq-success {
37
43
  color: map.get($success, color);
38
44
  background: map.get($success, background);
@@ -10,6 +10,7 @@
10
10
  $contrast: map.get($icon, contrast);
11
11
  $fade-contrast: map.get($icon, fade-contrast);
12
12
  $error: map.get($icon, error);
13
+ $warning: map.get($icon, warning);
13
14
  $success: map.get($icon, success);
14
15
 
15
16
  .kbq-icon:not(.kbq-icon-button, .kbq-icon-item) {
@@ -29,6 +30,10 @@
29
30
  color: map.get($error, color);
30
31
  }
31
32
 
33
+ &.kbq-warning {
34
+ color: map.get($warning, color);
35
+ }
36
+
32
37
  &.kbq-success {
33
38
  color: map.get($success, color);
34
39
  }
@@ -11,4 +11,8 @@
11
11
  .kbq-input.kbq-input-password::placeholder {
12
12
  @include kbq-typography-level-to-styles($config, map.get($tokens, input-font-text));
13
13
  }
14
+
15
+ .kbq-input.kbq-input-password {
16
+ @include kbq-typography-level-to-styles($config, mono-normal);
17
+ }
14
18
  }
@@ -58,9 +58,11 @@
58
58
  .kbq-list-item,
59
59
  .kbq-list-option {
60
60
  @include kbq-typography-level-to-styles($config, map.get($tokens, list-font-text));
61
- }
62
61
 
63
- .kbq-list-option-caption {
64
- @include kbq-typography-level-to-styles($config, map.get($tokens, list-font-caption));
62
+ .kbq-list-text {
63
+ .kbq-list-option-caption {
64
+ @include kbq-typography-level-to-styles($config, map.get($tokens, list-font-caption));
65
+ }
66
+ }
65
67
  }
66
68
  }
@@ -122,7 +122,7 @@ export declare class KbqModalComponent<T = any, R = any> extends KbqModalRef<T,
122
122
  private createDynamicComponent;
123
123
  private updateTransformOrigin;
124
124
  /**
125
- * Take care of the body's overflow to decide the existense of scrollbar
125
+ * Take care of the body's overflow to decide the existence of scrollbar
126
126
  * @param plusNum The number that the openModals.length will increase soon
127
127
  */
128
128
  private changeBodyOverflow;
package/modal/modal.scss CHANGED
@@ -42,7 +42,7 @@ $tokens: meta.module-variables(tokens) !default;
42
42
  width: var(--kbq-modal-size-large-width, map.get($tokens, modal-size-large-width));
43
43
  }
44
44
 
45
- // todo реализуем когда будем делать 2.0, пока нет возможности отслеживать наличие/отстутствие футера
45
+ // todo реализуем когда будем делать 2.0, пока нет возможности отслеживать наличие/отсутствие футера
46
46
  //&.kbq-modal_no-footer .kbq-modal-body {
47
47
  // padding-bottom: var(
48
48
  // --kbq-modal-size-content-padding-bottom-without-footer,
@@ -27,6 +27,7 @@ $tokens: meta.module-variables(tokens) !default;
27
27
  justify-content: space-between;
28
28
  position: absolute;
29
29
  z-index: 998;
30
+ height: 100%;
30
31
 
31
32
  &.kbq-collapsed {
32
33
  width: map.get($tokens, size-5xl);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@koobiq/components",
3
- "version": "17.0.0-rc.4",
3
+ "version": "17.0.0-rc.6",
4
4
  "description": "koobiq",
5
5
  "repository": {
6
6
  "type": "git",
@@ -19,14 +19,14 @@
19
19
  "peerDependencies": {
20
20
  "@angular/cdk": "^17.2.0",
21
21
  "@angular/forms": "^17.2.0",
22
- "@koobiq/cdk": "^17.0.0-rc.4",
23
- "@koobiq/angular-moment-adapter": "^17.0.0-rc.4",
24
- "@koobiq/angular-luxon-adapter": "^17.0.0-rc.4",
22
+ "@koobiq/cdk": "^17.0.0-rc.6",
23
+ "@koobiq/angular-moment-adapter": "^17.0.0-rc.6",
24
+ "@koobiq/angular-luxon-adapter": "^17.0.0-rc.6",
25
25
  "@koobiq/date-formatter": "^3.0.2",
26
26
  "@koobiq/icons": "^7.1.0",
27
- "@koobiq/tokens-builder": "3.0.0-rc.4",
28
- "@koobiq/design-tokens": "3.0.0-rc.4",
29
- "marked": "^4.0.18",
27
+ "@koobiq/tokens-builder": "3.0.0-rc.6",
28
+ "@koobiq/design-tokens": "3.0.0-rc.8",
29
+ "marked": "^9.0.0",
30
30
  "overlayscrollbars": "^2.2.0",
31
31
  "ngx-highlightjs": "^10.0.0"
32
32
  },
package/popover/README.md CHANGED
@@ -16,6 +16,7 @@
16
16
 
17
17
  ## Example
18
18
 
19
+ <!-- cspell:ignore Э́йяфьядлайё̀кюдль, Эйяфьядлайёкюдль -->
19
20
  ```html
20
21
  <ng-template #customContent>
21
22
  Э́йяфьядлайё̀кюдль — шестой по величине ледник Исландии. Расположен на юге Исландии в 125 км к востоку от Рейкьявика. Под этим ледником находится одноимённый вулкан конической формы.