@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.
- package/alert/_alert-theme.scss +28 -16
- package/alert/alert.component.scss +140 -41
- package/code-block/README.md +1 -0
- package/code-block/code-block.scss +9 -0
- package/core/option/_option-action-theme.scss +6 -8
- package/core/styles/theming/_components-theming.scss +7 -0
- package/core/styles/theming/_theming.scss +1 -4
- package/dropdown/_dropdown-theme.scss +9 -3
- package/esm2022/alert/alert.component.mjs +2 -2
- package/esm2022/code-block/code-block.component.mjs +2 -2
- package/esm2022/core/version.mjs +2 -2
- package/esm2022/datepicker/datepicker-animations.mjs +2 -2
- package/esm2022/input/input-number.mjs +2 -2
- package/esm2022/modal/modal.component.mjs +4 -4
- package/esm2022/navbar/vertical-navbar.component.mjs +2 -2
- package/esm2022/select/select.component.mjs +34 -7
- package/esm2022/splitter/splitter.component.mjs +2 -2
- package/esm2022/table/table.component.mjs +29 -6
- package/esm2022/table/table.module.mjs +14 -6
- package/esm2022/tabs/tab-body.component.mjs +1 -1
- package/esm2022/tabs/tab-group.component.mjs +2 -2
- package/esm2022/tags/tag.component.mjs +2 -2
- package/esm2022/timepicker/timepicker.directive.mjs +2 -2
- package/esm2022/tree/tree-base.mjs +2 -2
- package/fesm2022/koobiq-components-alert.mjs +2 -2
- package/fesm2022/koobiq-components-alert.mjs.map +1 -1
- package/fesm2022/koobiq-components-code-block.mjs +2 -2
- package/fesm2022/koobiq-components-code-block.mjs.map +1 -1
- package/fesm2022/koobiq-components-core.mjs +1 -1
- package/fesm2022/koobiq-components-core.mjs.map +1 -1
- package/fesm2022/koobiq-components-datepicker.mjs +1 -1
- package/fesm2022/koobiq-components-datepicker.mjs.map +1 -1
- package/fesm2022/koobiq-components-input.mjs +1 -1
- package/fesm2022/koobiq-components-input.mjs.map +1 -1
- package/fesm2022/koobiq-components-modal.mjs +3 -3
- package/fesm2022/koobiq-components-modal.mjs.map +1 -1
- package/fesm2022/koobiq-components-navbar.mjs +2 -2
- package/fesm2022/koobiq-components-navbar.mjs.map +1 -1
- package/fesm2022/koobiq-components-select.mjs +34 -7
- package/fesm2022/koobiq-components-select.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-table.mjs +41 -10
- package/fesm2022/koobiq-components-table.mjs.map +1 -1
- package/fesm2022/koobiq-components-tabs.mjs +1 -1
- package/fesm2022/koobiq-components-tabs.mjs.map +1 -1
- package/fesm2022/koobiq-components-tags.mjs +1 -1
- package/fesm2022/koobiq-components-tags.mjs.map +1 -1
- package/fesm2022/koobiq-components-timepicker.mjs +1 -1
- package/fesm2022/koobiq-components-timepicker.mjs.map +1 -1
- package/fesm2022/koobiq-components-tree.mjs +1 -1
- package/fesm2022/koobiq-components-tree.mjs.map +1 -1
- package/icon/_icon-item-theme.scss +6 -0
- package/icon/_icon-theme.scss +5 -0
- package/input/_input-theme.scss +4 -0
- package/list/_list-theme.scss +5 -3
- package/modal/modal.component.d.ts +1 -1
- package/modal/modal.scss +1 -1
- package/navbar/vertical-navbar.scss +1 -0
- package/package.json +7 -7
- package/popover/README.md +1 -0
- package/prebuilt-themes/dark-theme.css +1 -1
- package/prebuilt-themes/light-theme.css +1 -1
- package/schematics/ng-add/index.js +5 -5
- package/select/select.component.d.ts +5 -1
- package/table/_table-theme.scss +10 -10
- package/table/table.component.d.ts +8 -1
- package/table/table.module.d.ts +1 -1
- package/table/table.scss +39 -40
- package/tabs/tab-body.component.d.ts +1 -1
- package/tabs/tab-nav-bar/tab-nav-bar.scss +0 -1
- package/tags/tag.component.d.ts +1 -1
- package/textarea/textarea.scss +2 -2
- package/timepicker/timepicker.directive.d.ts +1 -1
- 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);
|
package/icon/_icon-theme.scss
CHANGED
|
@@ -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
|
}
|
package/input/_input-theme.scss
CHANGED
package/list/_list-theme.scss
CHANGED
|
@@ -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
|
-
|
|
64
|
-
|
|
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
|
|
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,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@koobiq/components",
|
|
3
|
-
"version": "17.0.0-rc.
|
|
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.
|
|
23
|
-
"@koobiq/angular-moment-adapter": "^17.0.0-rc.
|
|
24
|
-
"@koobiq/angular-luxon-adapter": "^17.0.0-rc.
|
|
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.
|
|
28
|
-
"@koobiq/design-tokens": "3.0.0-rc.
|
|
29
|
-
"marked": "^
|
|
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 км к востоку от Рейкьявика. Под этим ледником находится одноимённый вулкан конической формы.
|