@koobiq/components 16.0.0-beta.8 → 16.0.0-beta.9
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/badge/_badge-theme.scss +13 -8
- package/badge/badge.component.d.ts +19 -1
- package/badge/badge.component.scss +28 -0
- package/badge/badge.module.d.ts +1 -1
- package/core/styles/_koobiq-theme.scss +2 -0
- package/core/styles/theming/_components-theming.scss +70 -26
- package/core/styles/theming/_theming.scss +199 -28
- package/core/styles/typography/_typography.scss +175 -5
- package/esm2022/badge/badge.component.mjs +65 -5
- package/esm2022/badge/badge.module.mjs +10 -6
- package/esm2022/core/version.mjs +2 -2
- package/esm2022/file-upload/multiple-file-upload.component.mjs +1 -1
- package/esm2022/file-upload/single-file-upload.component.mjs +1 -1
- package/esm2022/form-field/hint.mjs +15 -5
- package/esm2022/icon/icon-button.component.mjs +68 -0
- package/esm2022/icon/icon-item.component.mjs +27 -0
- package/esm2022/icon/icon.component.mjs +4 -89
- package/esm2022/icon/icon.module.mjs +4 -2
- package/esm2022/icon/public-api.mjs +3 -1
- package/esm2022/link/link.component.mjs +13 -2
- package/esm2022/select/select.component.mjs +6 -3
- package/esm2022/toast/toast-animations.mjs +2 -1
- package/esm2022/toast/toast-container.component.mjs +21 -7
- package/esm2022/toast/toast.component.mjs +7 -2
- package/esm2022/toast/toast.service.mjs +2 -1
- package/esm2022/tree/tree-base.mjs +1 -1
- package/esm2022/tree-select/tree-select.component.mjs +5 -5
- package/fesm2022/koobiq-components-badge.mjs +73 -9
- package/fesm2022/koobiq-components-badge.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-file-upload.mjs +2 -2
- package/fesm2022/koobiq-components-file-upload.mjs.map +1 -1
- package/fesm2022/koobiq-components-form-field.mjs +14 -4
- package/fesm2022/koobiq-components-form-field.mjs.map +1 -1
- package/fesm2022/koobiq-components-icon.mjs +9 -7
- package/fesm2022/koobiq-components-icon.mjs.map +1 -1
- package/fesm2022/koobiq-components-link.mjs +12 -1
- package/fesm2022/koobiq-components-link.mjs.map +1 -1
- package/fesm2022/koobiq-components-select.mjs +5 -2
- package/fesm2022/koobiq-components-select.mjs.map +1 -1
- package/fesm2022/koobiq-components-toast.mjs +25 -8
- package/fesm2022/koobiq-components-toast.mjs.map +1 -1
- package/fesm2022/koobiq-components-tree-select.mjs +4 -4
- package/fesm2022/koobiq-components-tree-select.mjs.map +1 -1
- package/fesm2022/koobiq-components-tree.mjs.map +1 -1
- package/form-field/_hint-theme.scss +5 -1
- package/form-field/hint.d.ts +4 -1
- package/form-field/hint.scss +9 -1
- package/icon/_icon-button-theme.scss +129 -0
- package/icon/_icon-item-theme.scss +41 -0
- package/icon/_icon-theme.scss +1 -222
- package/icon/icon-button.component.d.ts +22 -0
- package/icon/icon-button.scss +33 -0
- package/icon/icon-item.component.d.ts +10 -0
- package/icon/icon-item.scss +18 -0
- package/icon/icon.component.d.ts +1 -25
- package/icon/icon.module.d.ts +6 -4
- package/icon/icon.scss +0 -41
- package/icon/public-api.d.ts +2 -0
- package/link/_link-theme.scss +96 -89
- package/link/link.component.d.ts +4 -1
- package/package.json +22 -22
- package/prebuilt-themes/dark-theme.css +1 -1
- package/prebuilt-themes/light-theme.css +1 -1
- package/select/_select-theme.scss +6 -6
- package/select/select.component.d.ts +1 -1
- package/toast/toast-animations.d.ts +1 -0
- package/toast/toast-container.component.d.ts +7 -3
- package/toast/toast.component.d.ts +2 -0
- package/toast/toast.service.d.ts +2 -0
- package/tree-select/_tree-select-theme.scss +6 -4
- package/tree-select/tree-select.component.d.ts +2 -2
package/link/_link-theme.scss
CHANGED
|
@@ -4,160 +4,163 @@
|
|
|
4
4
|
@use '../core/styles/typography/typography-utils' as *;
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
@mixin kbq-link($
|
|
7
|
+
@mixin kbq-link-geometry($tokens) {
|
|
8
8
|
display: inline;
|
|
9
9
|
|
|
10
|
-
color: map.get($link, text);
|
|
11
10
|
text-decoration: none;
|
|
12
11
|
cursor: pointer;
|
|
13
12
|
|
|
14
|
-
|
|
13
|
+
outline-offset: var(
|
|
14
|
+
--kbq-link-size-state-focused-outline-offset, map.get($tokens, link-size-state-focused-outline-offset)
|
|
15
|
+
);
|
|
15
16
|
|
|
16
17
|
&:focus {
|
|
17
18
|
outline: none;
|
|
18
19
|
}
|
|
19
20
|
|
|
20
|
-
/* stylelint-disable no-descending-specificity */
|
|
21
|
-
&:hover {
|
|
22
|
-
color: map.get($link, state-hover-text);
|
|
23
|
-
transition: color 0ms;
|
|
24
|
-
|
|
25
|
-
&.kbq-text-only,
|
|
26
|
-
&.kbq-text-with-icon .kbq-link__text {
|
|
27
|
-
border-bottom-color: map.get($link, state-hover-border-bottom);
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
& .kbq-icon {
|
|
31
|
-
color: map.get($link, state-hover-text);
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
&:active {
|
|
36
|
-
color: map.get($link, state-active-text);
|
|
37
|
-
|
|
38
|
-
&.kbq-text-only,
|
|
39
|
-
&.kbq-text-with-icon .kbq-link__text {
|
|
40
|
-
border-bottom-color: map.get($link, state-active-border-bottom);
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
&.cdk-keyboard-focused {
|
|
45
|
-
outline: map.get($link, state-focused-outline) solid map.get($link, link-size-state-focused-outline-width);
|
|
46
|
-
|
|
47
|
-
outline-offset: map.get($link, link-size-state-focused-outline-offset);
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
& .kbq-icon {
|
|
51
|
-
color: inherit;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
21
|
&.kbq-text-only,
|
|
55
22
|
&.kbq-text-with-icon .kbq-link__text {
|
|
56
23
|
border-bottom-style: solid;
|
|
57
24
|
border-bottom-width: 1px;
|
|
58
|
-
border-bottom-color: map.get($link, border-bottom);
|
|
59
25
|
}
|
|
60
26
|
|
|
61
27
|
&.kbq-text-with-icon .kbq-link__text {
|
|
62
28
|
&:not(:first-child) {
|
|
63
|
-
margin-left:
|
|
29
|
+
margin-left: var(
|
|
30
|
+
--kbq-link-size-normal-content-padding, map.get($tokens, link-size-normal-content-padding)
|
|
31
|
+
);
|
|
64
32
|
}
|
|
65
33
|
|
|
66
34
|
&:not(:last-child) {
|
|
67
|
-
margin-right:
|
|
35
|
+
margin-right: var(
|
|
36
|
+
--kbq-link-size-normal-content-padding, map.get($tokens, link-size-normal-content-padding)
|
|
37
|
+
);
|
|
68
38
|
}
|
|
69
39
|
}
|
|
70
40
|
|
|
71
|
-
&.kbq-
|
|
72
|
-
&.kbq-text-only,
|
|
41
|
+
&.kbq-link_compact {
|
|
73
42
|
&.kbq-text-with-icon .kbq-link__text {
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
43
|
+
&:not(:first-child) {
|
|
44
|
+
margin-left: var(
|
|
45
|
+
--kbq-link-size-compact-content-padding, map.get($tokens, link-size-compact-content-padding)
|
|
46
|
+
);
|
|
47
|
+
}
|
|
77
48
|
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
49
|
+
&:not(:last-child) {
|
|
50
|
+
margin-right: var(
|
|
51
|
+
--kbq-link-size-compact-content-padding, map.get($tokens, link-size-compact-content-padding)
|
|
52
|
+
);
|
|
53
|
+
}
|
|
82
54
|
}
|
|
83
55
|
}
|
|
84
56
|
|
|
57
|
+
/* stylelint-disable no-descending-specificity */
|
|
85
58
|
&.kbq-link_big {
|
|
86
59
|
&.kbq-text-with-icon .kbq-link__text {
|
|
87
60
|
&:not(:first-child) {
|
|
88
|
-
margin-left: map.get($tokens, link-size-big-content-padding);
|
|
61
|
+
margin-left: var(--kbq-link-size-big-content-padding, map.get($tokens, link-size-big-content-padding));
|
|
89
62
|
}
|
|
90
63
|
|
|
91
64
|
&:not(:last-child) {
|
|
92
|
-
margin-right: map.get($tokens, link-size-big-content-padding);
|
|
65
|
+
margin-right: var(--kbq-link-size-big-content-padding, map.get($tokens, link-size-big-content-padding));
|
|
93
66
|
}
|
|
94
67
|
}
|
|
95
68
|
}
|
|
96
69
|
|
|
97
|
-
&[disabled] {
|
|
98
|
-
color: map.get($foreground, text-disabled);
|
|
99
|
-
|
|
100
|
-
cursor: default;
|
|
101
|
-
pointer-events: none;
|
|
102
70
|
|
|
71
|
+
&.kbq-link_pseudo {
|
|
103
72
|
&.kbq-text-only,
|
|
104
73
|
&.kbq-text-with-icon .kbq-link__text {
|
|
105
|
-
border-bottom
|
|
74
|
+
border-bottom: none;
|
|
106
75
|
}
|
|
76
|
+
}
|
|
107
77
|
|
|
108
|
-
|
|
109
|
-
|
|
78
|
+
&.kbq-link_no-underline {
|
|
79
|
+
&.kbq-text-only,
|
|
80
|
+
&.kbq-text-with-icon .kbq-link__text {
|
|
81
|
+
border-bottom-color: transparent;
|
|
110
82
|
}
|
|
111
|
-
/* stylelint-enable no-descending-specificity */
|
|
112
83
|
}
|
|
84
|
+
/* stylelint-enable no-descending-specificity */
|
|
113
85
|
}
|
|
114
86
|
|
|
115
|
-
@mixin kbq-link-
|
|
116
|
-
|
|
87
|
+
@mixin kbq-link-state($state) {
|
|
88
|
+
color: map.get($state, text);
|
|
89
|
+
|
|
90
|
+
&.kbq-text-only,
|
|
91
|
+
&.kbq-text-with-icon .kbq-link__text {
|
|
92
|
+
border-bottom-color: map.get($state, border-bottom);
|
|
93
|
+
}
|
|
117
94
|
|
|
95
|
+
& .kbq-icon {
|
|
96
|
+
color: map.get($state, text) !important;
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
@mixin kbq-link-theme($theme) {
|
|
118
101
|
$link: map.get(map.get($theme, components), link);
|
|
119
102
|
|
|
120
103
|
$tokens: map.get($theme, tokens);
|
|
121
104
|
|
|
122
|
-
.kbq-link
|
|
123
|
-
|
|
124
|
-
|
|
105
|
+
.kbq-link {
|
|
106
|
+
@include kbq-link-geometry($tokens);
|
|
107
|
+
|
|
108
|
+
$default: map.get($link, default);
|
|
109
|
+
@include kbq-link-state($default);
|
|
110
|
+
|
|
111
|
+
transition: color ease-out 300ms;
|
|
112
|
+
|
|
113
|
+
&:hover {
|
|
114
|
+
transition: color 0ms;
|
|
115
|
+
|
|
116
|
+
$hover: map.get($link, hover);
|
|
117
|
+
@include kbq-link-state($hover);
|
|
125
118
|
}
|
|
126
119
|
|
|
127
|
-
|
|
128
|
-
|
|
120
|
+
&:active {
|
|
121
|
+
$active: map.get($link, active);
|
|
122
|
+
@include kbq-link-state($active);
|
|
123
|
+
}
|
|
129
124
|
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
125
|
+
&.kbq-link_use-visited:not(.kbq-disabled):visited {
|
|
126
|
+
$visited: map.get($link, visited);
|
|
127
|
+
@include kbq-link-state($visited);
|
|
133
128
|
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
129
|
+
&:hover {
|
|
130
|
+
$visited-hover: map.get($link, visited-hover);
|
|
131
|
+
@include kbq-link-state($visited-hover);
|
|
137
132
|
}
|
|
138
133
|
|
|
139
|
-
|
|
140
|
-
|
|
134
|
+
&:active {
|
|
135
|
+
$visited-active: map.get($link, visited-active);
|
|
136
|
+
@include kbq-link-state($visited-active);
|
|
141
137
|
}
|
|
142
138
|
}
|
|
143
139
|
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
.kbq-link_print:not([disabled]) {
|
|
149
|
-
color: map.get($foreground, contrast);
|
|
140
|
+
&.cdk-keyboard-focused {
|
|
141
|
+
$focused: map.get($link, focused);
|
|
142
|
+
outline: map.get($focused, outline) solid;
|
|
143
|
+
}
|
|
150
144
|
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
}
|
|
145
|
+
&.kbq-disabled {
|
|
146
|
+
cursor: default;
|
|
147
|
+
pointer-events: none;
|
|
155
148
|
|
|
156
|
-
|
|
157
|
-
|
|
149
|
+
$disabled: map.get($link, disabled);
|
|
150
|
+
@include kbq-link-state($disabled);
|
|
151
|
+
}
|
|
158
152
|
|
|
159
|
-
|
|
160
|
-
|
|
153
|
+
@media print {
|
|
154
|
+
.kbq-link_print:not(.kbq-disabled) {
|
|
155
|
+
&.kbq-text-only,
|
|
156
|
+
&.kbq-text-with-icon .kbq-link__text {
|
|
157
|
+
border-bottom: none;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
&::after {
|
|
161
|
+
content: ":\a" attr(print);
|
|
162
|
+
white-space: pre;
|
|
163
|
+
}
|
|
161
164
|
}
|
|
162
165
|
}
|
|
163
166
|
}
|
|
@@ -174,6 +177,10 @@
|
|
|
174
177
|
}
|
|
175
178
|
}
|
|
176
179
|
|
|
180
|
+
.kbq-link.kbq-link_compact {
|
|
181
|
+
@include kbq-typography-level-to-styles($config, map.get($tokens, link-font-compact));
|
|
182
|
+
}
|
|
183
|
+
|
|
177
184
|
.kbq-link.kbq-link_big {
|
|
178
185
|
@include kbq-typography-level-to-styles($config, map.get($tokens, link-font-big));
|
|
179
186
|
}
|
package/link/link.component.d.ts
CHANGED
|
@@ -25,6 +25,9 @@ export declare class KbqLink extends KbqLinkMixinBase implements OnDestroy, HasT
|
|
|
25
25
|
get big(): any;
|
|
26
26
|
set big(value: any);
|
|
27
27
|
private _big;
|
|
28
|
+
get compact(): any;
|
|
29
|
+
set compact(value: any);
|
|
30
|
+
private _compact;
|
|
28
31
|
get useVisited(): any;
|
|
29
32
|
set useVisited(value: any);
|
|
30
33
|
private _useVisited;
|
|
@@ -40,5 +43,5 @@ export declare class KbqLink extends KbqLinkMixinBase implements OnDestroy, HasT
|
|
|
40
43
|
getHostElement(): any;
|
|
41
44
|
private updatePrintUrl;
|
|
42
45
|
static ɵfac: i0.ɵɵFactoryDeclaration<KbqLink, never>;
|
|
43
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<KbqLink, "[kbq-link]", ["kbqLink"], { "tabIndex": { "alias": "tabIndex"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "pseudo": { "alias": "pseudo"; "required": false; }; "noUnderline": { "alias": "noUnderline"; "required": false; }; "big": { "alias": "big"; "required": false; }; "useVisited": { "alias": "useVisited"; "required": false; }; "print": { "alias": "print"; "required": false; }; }, {}, ["icon"], never, false, never>;
|
|
46
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<KbqLink, "[kbq-link]", ["kbqLink"], { "tabIndex": { "alias": "tabIndex"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "pseudo": { "alias": "pseudo"; "required": false; }; "noUnderline": { "alias": "noUnderline"; "required": false; }; "big": { "alias": "big"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "useVisited": { "alias": "useVisited"; "required": false; }; "print": { "alias": "print"; "required": false; }; }, {}, ["icon"], never, false, never>;
|
|
44
47
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@koobiq/components",
|
|
3
|
-
"version": "16.0.0-beta.
|
|
3
|
+
"version": "16.0.0-beta.9",
|
|
4
4
|
"description": "koobiq",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -19,9 +19,9 @@
|
|
|
19
19
|
"peerDependencies": {
|
|
20
20
|
"@angular/cdk": "^16.1.5",
|
|
21
21
|
"@angular/forms": "^16.1.5",
|
|
22
|
-
"@koobiq/cdk": "^16.0.0-beta.
|
|
23
|
-
"@koobiq/angular-moment-adapter": "^16.0.0-beta.
|
|
24
|
-
"@koobiq/angular-luxon-adapter": "^16.0.0-beta.
|
|
22
|
+
"@koobiq/cdk": "^16.0.0-beta.9",
|
|
23
|
+
"@koobiq/angular-moment-adapter": "^16.0.0-beta.9",
|
|
24
|
+
"@koobiq/angular-luxon-adapter": "^16.0.0-beta.9",
|
|
25
25
|
"@mosaic-design/date-formatter": "^2.1.1",
|
|
26
26
|
"@koobiq/icons": "^7.1.0",
|
|
27
27
|
"@koobiq/tokens-builder": "^3.0.0-beta.6",
|
|
@@ -62,18 +62,18 @@
|
|
|
62
62
|
"esm": "./esm2022/alert/koobiq-components-alert.mjs",
|
|
63
63
|
"default": "./fesm2022/koobiq-components-alert.mjs"
|
|
64
64
|
},
|
|
65
|
-
"./badge": {
|
|
66
|
-
"types": "./badge/index.d.ts",
|
|
67
|
-
"esm2022": "./esm2022/badge/koobiq-components-badge.mjs",
|
|
68
|
-
"esm": "./esm2022/badge/koobiq-components-badge.mjs",
|
|
69
|
-
"default": "./fesm2022/koobiq-components-badge.mjs"
|
|
70
|
-
},
|
|
71
65
|
"./autocomplete": {
|
|
72
66
|
"types": "./autocomplete/index.d.ts",
|
|
73
67
|
"esm2022": "./esm2022/autocomplete/koobiq-components-autocomplete.mjs",
|
|
74
68
|
"esm": "./esm2022/autocomplete/koobiq-components-autocomplete.mjs",
|
|
75
69
|
"default": "./fesm2022/koobiq-components-autocomplete.mjs"
|
|
76
70
|
},
|
|
71
|
+
"./badge": {
|
|
72
|
+
"types": "./badge/index.d.ts",
|
|
73
|
+
"esm2022": "./esm2022/badge/koobiq-components-badge.mjs",
|
|
74
|
+
"esm": "./esm2022/badge/koobiq-components-badge.mjs",
|
|
75
|
+
"default": "./fesm2022/koobiq-components-badge.mjs"
|
|
76
|
+
},
|
|
77
77
|
"./button": {
|
|
78
78
|
"types": "./button/index.d.ts",
|
|
79
79
|
"esm2022": "./esm2022/button/koobiq-components-button.mjs",
|
|
@@ -182,18 +182,18 @@
|
|
|
182
182
|
"esm": "./esm2022/loader-overlay/koobiq-components-loader-overlay.mjs",
|
|
183
183
|
"default": "./fesm2022/koobiq-components-loader-overlay.mjs"
|
|
184
184
|
},
|
|
185
|
-
"./modal": {
|
|
186
|
-
"types": "./modal/index.d.ts",
|
|
187
|
-
"esm2022": "./esm2022/modal/koobiq-components-modal.mjs",
|
|
188
|
-
"esm": "./esm2022/modal/koobiq-components-modal.mjs",
|
|
189
|
-
"default": "./fesm2022/koobiq-components-modal.mjs"
|
|
190
|
-
},
|
|
191
185
|
"./markdown": {
|
|
192
186
|
"types": "./markdown/index.d.ts",
|
|
193
187
|
"esm2022": "./esm2022/markdown/koobiq-components-markdown.mjs",
|
|
194
188
|
"esm": "./esm2022/markdown/koobiq-components-markdown.mjs",
|
|
195
189
|
"default": "./fesm2022/koobiq-components-markdown.mjs"
|
|
196
190
|
},
|
|
191
|
+
"./modal": {
|
|
192
|
+
"types": "./modal/index.d.ts",
|
|
193
|
+
"esm2022": "./esm2022/modal/koobiq-components-modal.mjs",
|
|
194
|
+
"esm": "./esm2022/modal/koobiq-components-modal.mjs",
|
|
195
|
+
"default": "./fesm2022/koobiq-components-modal.mjs"
|
|
196
|
+
},
|
|
197
197
|
"./navbar": {
|
|
198
198
|
"types": "./navbar/index.d.ts",
|
|
199
199
|
"esm2022": "./esm2022/navbar/koobiq-components-navbar.mjs",
|
|
@@ -254,18 +254,18 @@
|
|
|
254
254
|
"esm": "./esm2022/splitter/koobiq-components-splitter.mjs",
|
|
255
255
|
"default": "./fesm2022/koobiq-components-splitter.mjs"
|
|
256
256
|
},
|
|
257
|
-
"./tabs": {
|
|
258
|
-
"types": "./tabs/index.d.ts",
|
|
259
|
-
"esm2022": "./esm2022/tabs/koobiq-components-tabs.mjs",
|
|
260
|
-
"esm": "./esm2022/tabs/koobiq-components-tabs.mjs",
|
|
261
|
-
"default": "./fesm2022/koobiq-components-tabs.mjs"
|
|
262
|
-
},
|
|
263
257
|
"./table": {
|
|
264
258
|
"types": "./table/index.d.ts",
|
|
265
259
|
"esm2022": "./esm2022/table/koobiq-components-table.mjs",
|
|
266
260
|
"esm": "./esm2022/table/koobiq-components-table.mjs",
|
|
267
261
|
"default": "./fesm2022/koobiq-components-table.mjs"
|
|
268
262
|
},
|
|
263
|
+
"./tabs": {
|
|
264
|
+
"types": "./tabs/index.d.ts",
|
|
265
|
+
"esm2022": "./esm2022/tabs/koobiq-components-tabs.mjs",
|
|
266
|
+
"esm": "./esm2022/tabs/koobiq-components-tabs.mjs",
|
|
267
|
+
"default": "./fesm2022/koobiq-components-tabs.mjs"
|
|
268
|
+
},
|
|
269
269
|
"./tags": {
|
|
270
270
|
"types": "./tags/index.d.ts",
|
|
271
271
|
"esm2022": "./esm2022/tags/koobiq-components-tags.mjs",
|