@koobiq/react-components 0.19.0 → 0.21.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.
- package/dist/components/Autocomplete/Autocomplete.js +8 -11
- package/dist/components/Breadcrumbs/Breadcrumbs.d.ts +2 -0
- package/dist/components/Breadcrumbs/Breadcrumbs.js +59 -0
- package/dist/components/Breadcrumbs/Breadcrumbs.module.css.js +32 -0
- package/dist/components/Breadcrumbs/BreadcrumbsContext.d.ts +7 -0
- package/dist/components/Breadcrumbs/BreadcrumbsContext.js +9 -0
- package/dist/components/Breadcrumbs/components/BreadcrumbItem/BreadcrumbItem.d.ts +4 -0
- package/dist/components/Breadcrumbs/components/BreadcrumbItem/BreadcrumbItem.js +70 -0
- package/dist/components/Breadcrumbs/components/BreadcrumbItem/BreadcrumbItem.module.css.js +32 -0
- package/dist/components/Breadcrumbs/components/BreadcrumbItem/index.d.ts +2 -0
- package/dist/components/Breadcrumbs/components/BreadcrumbItem/types.d.ts +14 -0
- package/dist/components/Breadcrumbs/components/BreadcrumbsCollapse/BreadcrumbsCollapse.d.ts +2 -0
- package/dist/components/Breadcrumbs/components/BreadcrumbsCollapse/BreadcrumbsCollapse.js +123 -0
- package/dist/components/Breadcrumbs/components/BreadcrumbsCollapse/index.d.ts +1 -0
- package/dist/components/Breadcrumbs/components/BreadcrumbsCollapse/utils.d.ts +2 -0
- package/dist/components/Breadcrumbs/components/BreadcrumbsCollapse/utils.js +11 -0
- package/dist/components/Breadcrumbs/components/BreadcrumbsWrap/BreadcrumbsWrap.d.ts +2 -0
- package/dist/components/Breadcrumbs/components/BreadcrumbsWrap/BreadcrumbsWrap.js +27 -0
- package/dist/components/Breadcrumbs/components/BreadcrumbsWrap/index.d.ts +1 -0
- package/dist/components/Breadcrumbs/components/index.d.ts +3 -0
- package/dist/components/Breadcrumbs/index.d.ts +3 -0
- package/dist/components/Breadcrumbs/types.d.ts +69 -0
- package/dist/components/Breadcrumbs/types.js +6 -0
- package/dist/components/Dialog/components/DialogBody.d.ts +3 -2
- package/dist/components/Dialog/components/DialogBody.js +6 -6
- package/dist/components/Dialog/components/DialogCloseButton.d.ts +1 -24
- package/dist/components/FormField/FormFieldCaption/FormFieldCaption.d.ts +1 -5
- package/dist/components/FormField/FormFieldClearButton/FormFieldClearButton.d.ts +6 -0
- package/dist/components/FormField/FormFieldClearButton/FormFieldClearButton.js +32 -0
- package/dist/components/FormField/FormFieldClearButton/FormFieldClearButton.module.css.js +8 -0
- package/dist/components/FormField/FormFieldClearButton/index.d.ts +1 -0
- package/dist/components/FormField/index.d.ts +1 -0
- package/dist/components/Input/Input.d.ts +4 -1
- package/dist/components/Input/Input.js +19 -2
- package/dist/components/Input/types.d.ts +6 -0
- package/dist/components/Menu/Menu.js +3 -1
- package/dist/components/Menu/types.d.ts +3 -2
- package/dist/components/Modal/Modal.js +5 -10
- package/dist/components/Popover/PopoverInner.d.ts +1 -1
- package/dist/components/Popover/PopoverInner.js +5 -9
- package/dist/components/SearchInput/SearchInput.js +13 -16
- package/dist/components/Select/Select.js +7 -10
- package/dist/components/Select/components/Tag/Tag.d.ts +4 -3
- package/dist/components/Select/components/Tag/Tag.js +3 -1
- package/dist/components/Select/components/TagGroup/TagGroup.module.css.js +1 -4
- package/dist/components/Select/components/TagGroup/TagGroupResponsive.js +4 -2
- package/dist/components/Select/intl.js +0 -2
- package/dist/components/SidePanel/SidePanel.js +5 -10
- package/dist/components/Tabs/utils.d.ts +1 -1
- package/dist/components/Textarea/Textarea.d.ts +1 -1
- package/dist/components/ToastProvider/components/Toast/Toast.js +1 -1
- package/dist/components/ToastProvider/components/ToastRegion/ToastRegion.js +3 -2
- package/dist/components/Tooltip/Tooltip.d.ts +2 -1
- package/dist/components/Tooltip/types.d.ts +3 -1
- package/dist/components/index.d.ts +1 -0
- package/dist/index.js +9 -0
- package/dist/style.css +342 -143
- package/package.json +7 -7
- /package/dist/components/{Autocomplete → FormField/FormFieldClearButton}/intl.json.js +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { ReactNode, RefObject, ComponentRef, ReactElement } from 'react';
|
|
1
|
+
import type { ReactNode, RefObject, ComponentRef, ReactElement, CSSProperties } from 'react';
|
|
2
2
|
import type { DataAttributeProps, ExtendableProps, FocusableElement, DOMAttributes } from '@koobiq/react-core';
|
|
3
3
|
import type { TooltipTriggerProps } from '@koobiq/react-primitives';
|
|
4
4
|
export type TooltipPropControl = (props: DOMAttributes<Element> & {
|
|
@@ -75,6 +75,8 @@ export type TooltipProps = ExtendableProps<{
|
|
|
75
75
|
id?: string;
|
|
76
76
|
/** Additional CSS-classes. */
|
|
77
77
|
className?: string;
|
|
78
|
+
/** Inline styles. */
|
|
79
|
+
style?: CSSProperties;
|
|
78
80
|
/**
|
|
79
81
|
* The container element in which the component portal will be placed.
|
|
80
82
|
* @default document.body
|
|
@@ -41,6 +41,7 @@ export * from './Form';
|
|
|
41
41
|
export * from './Tabs';
|
|
42
42
|
export * from './Autocomplete';
|
|
43
43
|
export * from './ToastProvider';
|
|
44
|
+
export * from './Breadcrumbs';
|
|
44
45
|
export * from './layout';
|
|
45
46
|
export { useListData, useAsyncList, type ListData, type ListOptions, type AsyncListData, type AsyncListOptions, type AsyncListLoadFunction, type AsyncListLoadOptions, type TimeValue, type DateValue, } from '@koobiq/react-primitives';
|
|
46
47
|
export { useRouter, useLocale, useFilter, type Locale, type SortDescriptor, type Selection, RouterProvider, useDateFormatter, } from '@koobiq/react-core';
|
package/dist/index.js
CHANGED
|
@@ -18,6 +18,7 @@ import { FormFieldControlGroupContext, useFormFieldControlGroup } from "./compon
|
|
|
18
18
|
import { formFieldControlGroupPropVariant } from "./components/FormField/FormFieldControlGroup/types.js";
|
|
19
19
|
import { FormFieldInputDate } from "./components/FormField/FormFieldInputDate/FormFieldInputDate.js";
|
|
20
20
|
import { FormField, FormFieldComponent } from "./components/FormField/FormField.js";
|
|
21
|
+
import { FormFieldClearButton } from "./components/FormField/FormFieldClearButton/FormFieldClearButton.js";
|
|
21
22
|
import { formFieldPropLabelAlign, formFieldPropLabelPlacement } from "./components/FormField/types.js";
|
|
22
23
|
import { Alert } from "./components/Alert/Alert.js";
|
|
23
24
|
import { alertPropStatus } from "./components/Alert/types.js";
|
|
@@ -100,6 +101,9 @@ import { Autocomplete, AutocompleteRender } from "./components/Autocomplete/Auto
|
|
|
100
101
|
import { autocompletePropLabelAlign, autocompletePropLabelPlacement, autocompletePropVariant } from "./components/Autocomplete/types.js";
|
|
101
102
|
import { ToastProvider, getToastQueue, toast } from "./components/ToastProvider/ToastProvider.js";
|
|
102
103
|
import { toastPlacement, toastPropStatus, toastStackDirection } from "./components/ToastProvider/types.js";
|
|
104
|
+
import { Breadcrumbs } from "./components/Breadcrumbs/Breadcrumbs.js";
|
|
105
|
+
import { breadcrumbsPropOverflowMode, breadcrumbsPropSize } from "./components/Breadcrumbs/types.js";
|
|
106
|
+
import { BreadcrumbItem } from "./components/Breadcrumbs/components/BreadcrumbItem/BreadcrumbItem.js";
|
|
103
107
|
import { flex, flexPropAlignItems, flexPropDirection, flexPropFlex, flexPropGap, flexPropJustifyContent, flexPropOrder, flexPropWrap } from "./components/layout/flex/flex.js";
|
|
104
108
|
import { spacing, spacingGap } from "./components/layout/spacing/spacing.js";
|
|
105
109
|
export {
|
|
@@ -108,6 +112,8 @@ export {
|
|
|
108
112
|
Autocomplete,
|
|
109
113
|
AutocompleteRender,
|
|
110
114
|
Badge,
|
|
115
|
+
BreadcrumbItem,
|
|
116
|
+
Breadcrumbs,
|
|
111
117
|
BreakpointsContext,
|
|
112
118
|
BreakpointsProvider,
|
|
113
119
|
Button,
|
|
@@ -127,6 +133,7 @@ export {
|
|
|
127
133
|
FormContext,
|
|
128
134
|
FormField,
|
|
129
135
|
FormFieldCaption,
|
|
136
|
+
FormFieldClearButton,
|
|
130
137
|
FormFieldComponent,
|
|
131
138
|
FormFieldControlGroup,
|
|
132
139
|
FormFieldControlGroupContext,
|
|
@@ -191,6 +198,8 @@ export {
|
|
|
191
198
|
autocompletePropVariant,
|
|
192
199
|
badgePropSize,
|
|
193
200
|
badgePropVariant,
|
|
201
|
+
breadcrumbsPropOverflowMode,
|
|
202
|
+
breadcrumbsPropSize,
|
|
194
203
|
buttonPropVariant,
|
|
195
204
|
checkboxGroupPropLabelAlign,
|
|
196
205
|
checkboxGroupPropLabelPlacement,
|
package/dist/style.css
CHANGED
|
@@ -606,6 +606,125 @@
|
|
|
606
606
|
.kbq-formfield-side-9d854f {
|
|
607
607
|
flex-direction: row;
|
|
608
608
|
}
|
|
609
|
+
.kbq-formfieldclearbutton-702863 {
|
|
610
|
+
opacity: 1;
|
|
611
|
+
transition: transform var(--kbq-transition-default), visibility var(--kbq-transition-default), opacity var(--kbq-transition-default);
|
|
612
|
+
transition-timing-function: cubic-bezier(.7, 0, .5, 1);
|
|
613
|
+
transform: scale(1);
|
|
614
|
+
}
|
|
615
|
+
|
|
616
|
+
.kbq-formfieldclearbutton-702863[aria-hidden="true"] {
|
|
617
|
+
opacity: 0;
|
|
618
|
+
pointer-events: none;
|
|
619
|
+
visibility: hidden;
|
|
620
|
+
transform: scale(.5);
|
|
621
|
+
}
|
|
622
|
+
.kbq-iconbutton-0ff1bd {
|
|
623
|
+
--icon-button-size: ;
|
|
624
|
+
--icon-button-color: ;
|
|
625
|
+
--icon-button-padding: ;
|
|
626
|
+
--icon-button-color-hover: ;
|
|
627
|
+
--icon-button-color-active: ;
|
|
628
|
+
--icon-button-outline-color: transparent;
|
|
629
|
+
--icon-button-outline-width: var(--kbq-size-3xs);
|
|
630
|
+
--icon-button-bg-color: var(--kbq-background-transparent);
|
|
631
|
+
--icon-button-color-disabled: var(--kbq-states-icon-disabled);
|
|
632
|
+
cursor: pointer;
|
|
633
|
+
vertical-align: middle;
|
|
634
|
+
box-sizing: border-box;
|
|
635
|
+
color: var(--icon-button-color);
|
|
636
|
+
block-size: var(--icon-button-size);
|
|
637
|
+
padding: var(--icon-button-padding);
|
|
638
|
+
inline-size: var(--icon-button-size);
|
|
639
|
+
background-color: var(--icon-button-bg-color);
|
|
640
|
+
outline-offset: calc(-1 * var(--icon-button-outline-width) / 2);
|
|
641
|
+
outline: var(--icon-button-outline-width) solid var(--icon-button-outline-color);
|
|
642
|
+
transition: outline-color var(--kbq-transition-default), color var(--kbq-transition-default);
|
|
643
|
+
font-size: var(--kbq-typography-text-normal-medium-font-size);
|
|
644
|
+
font-weight: var(--kbq-typography-text-normal-medium-font-weight);
|
|
645
|
+
line-height: var(--kbq-typography-text-normal-medium-line-height);
|
|
646
|
+
font-family: var(--kbq-typography-text-normal-medium-font-family);
|
|
647
|
+
font-style: var(--kbq-typography-text-normal-medium-font-style);
|
|
648
|
+
text-transform: var(--kbq-typography-text-normal-medium-text-transform);
|
|
649
|
+
font-feature-settings: var(--kbq-typography-text-normal-medium-font-feature-settings);
|
|
650
|
+
letter-spacing: var(--kbq-typography-text-normal-medium-letter-spacing);
|
|
651
|
+
text-underline-offset: calc(( var(--kbq-typography-text-normal-medium-line-height) - var(--kbq-typography-text-normal-medium-font-size)) / 2);
|
|
652
|
+
border: none;
|
|
653
|
+
flex-wrap: nowrap;
|
|
654
|
+
flex-shrink: 0;
|
|
655
|
+
justify-content: center;
|
|
656
|
+
align-items: center;
|
|
657
|
+
text-decoration: none;
|
|
658
|
+
display: inline-flex;
|
|
659
|
+
}
|
|
660
|
+
|
|
661
|
+
.kbq-iconbutton-l-2f8f66 {
|
|
662
|
+
--icon-button-size: 24px;
|
|
663
|
+
--icon-button-padding: var(--kbq-size-xxs);
|
|
664
|
+
}
|
|
665
|
+
|
|
666
|
+
.kbq-iconbutton-xl-7ea358 {
|
|
667
|
+
--icon-button-size: 24px;
|
|
668
|
+
--icon-button-padding: 0;
|
|
669
|
+
}
|
|
670
|
+
|
|
671
|
+
.kbq-iconbutton-compact-1a8941:where(.kbq-iconbutton-l-2f8f66) {
|
|
672
|
+
--icon-button-size: 16px;
|
|
673
|
+
--icon-button-padding: 0;
|
|
674
|
+
}
|
|
675
|
+
|
|
676
|
+
.kbq-iconbutton-hovered-daeb15 {
|
|
677
|
+
color: var(--icon-button-color-hover);
|
|
678
|
+
}
|
|
679
|
+
|
|
680
|
+
.kbq-iconbutton-pressed-cd5790 {
|
|
681
|
+
color: var(--icon-button-color-active);
|
|
682
|
+
}
|
|
683
|
+
|
|
684
|
+
.kbq-iconbutton-focusVisible-fe4d04 {
|
|
685
|
+
--icon-button-outline-color: var(--kbq-states-line-focus-theme);
|
|
686
|
+
}
|
|
687
|
+
|
|
688
|
+
.kbq-iconbutton-disabled-d2beb1 {
|
|
689
|
+
cursor: not-allowed;
|
|
690
|
+
color: var(--icon-button-color-disabled);
|
|
691
|
+
}
|
|
692
|
+
|
|
693
|
+
.kbq-iconbutton-theme-932771 {
|
|
694
|
+
--icon-button-color: var(--kbq-icon-theme);
|
|
695
|
+
--icon-button-color-hover: var(--kbq-states-icon-theme-hover);
|
|
696
|
+
--icon-button-color-active: var(--kbq-states-icon-theme-active);
|
|
697
|
+
}
|
|
698
|
+
|
|
699
|
+
.kbq-iconbutton-theme-contrast-6258bb {
|
|
700
|
+
--icon-button-color: var(--kbq-icon-contrast);
|
|
701
|
+
--icon-button-color-hover: var(--kbq-states-icon-contrast-hover);
|
|
702
|
+
--icon-button-color-active: var(--kbq-states-icon-contrast-active);
|
|
703
|
+
}
|
|
704
|
+
|
|
705
|
+
.kbq-iconbutton-fade-contrast-4e4d6d {
|
|
706
|
+
--icon-button-color: var(--kbq-icon-contrast-fade);
|
|
707
|
+
--icon-button-color-hover: var(--kbq-states-icon-contrast-fade-hover);
|
|
708
|
+
--icon-button-color-active: var(--kbq-states-icon-contrast-fade-active);
|
|
709
|
+
}
|
|
710
|
+
|
|
711
|
+
.kbq-iconbutton-error-8e5261 {
|
|
712
|
+
--icon-button-color: var(--kbq-icon-error);
|
|
713
|
+
--icon-button-color-hover: var(--kbq-states-icon-error-hover);
|
|
714
|
+
--icon-button-color-active: var(--kbq-states-icon-error-active);
|
|
715
|
+
}
|
|
716
|
+
|
|
717
|
+
.kbq-iconbutton-success-4c701d {
|
|
718
|
+
--icon-button-color: var(--kbq-icon-success);
|
|
719
|
+
--icon-button-color-hover: var(--kbq-states-icon-success-hover);
|
|
720
|
+
--icon-button-color-active: var(--kbq-states-icon-success-active);
|
|
721
|
+
}
|
|
722
|
+
|
|
723
|
+
.kbq-iconbutton-warning-a2092b {
|
|
724
|
+
--icon-button-color: var(--kbq-icon-warning);
|
|
725
|
+
--icon-button-color-hover: var(--kbq-states-icon-warning-hover);
|
|
726
|
+
--icon-button-color-active: var(--kbq-states-icon-warning-active);
|
|
727
|
+
}
|
|
609
728
|
.kbq-alert-bc5d04 {
|
|
610
729
|
--alert-padding: 0 var(--kbq-size-s) 0 var(--kbq-size-s);
|
|
611
730
|
--alert-content-padding: var(--kbq-size-l) var(--kbq-size-s) var(--kbq-size-l) var(--kbq-size-m);
|
|
@@ -727,112 +846,6 @@
|
|
|
727
846
|
--alert-icon-margin: calc(var(--kbq-size-m) + var(--kbq-size-3xs)) var(--kbq-size-s) 0 0;
|
|
728
847
|
background: none;
|
|
729
848
|
}
|
|
730
|
-
.kbq-iconbutton-0ff1bd {
|
|
731
|
-
--icon-button-size: ;
|
|
732
|
-
--icon-button-color: ;
|
|
733
|
-
--icon-button-padding: ;
|
|
734
|
-
--icon-button-color-hover: ;
|
|
735
|
-
--icon-button-color-active: ;
|
|
736
|
-
--icon-button-outline-color: transparent;
|
|
737
|
-
--icon-button-outline-width: var(--kbq-size-3xs);
|
|
738
|
-
--icon-button-bg-color: var(--kbq-background-transparent);
|
|
739
|
-
--icon-button-color-disabled: var(--kbq-states-icon-disabled);
|
|
740
|
-
cursor: pointer;
|
|
741
|
-
vertical-align: middle;
|
|
742
|
-
box-sizing: border-box;
|
|
743
|
-
color: var(--icon-button-color);
|
|
744
|
-
block-size: var(--icon-button-size);
|
|
745
|
-
padding: var(--icon-button-padding);
|
|
746
|
-
inline-size: var(--icon-button-size);
|
|
747
|
-
background-color: var(--icon-button-bg-color);
|
|
748
|
-
outline-offset: calc(-1 * var(--icon-button-outline-width) / 2);
|
|
749
|
-
outline: var(--icon-button-outline-width) solid var(--icon-button-outline-color);
|
|
750
|
-
transition: outline-color var(--kbq-transition-default), color var(--kbq-transition-default);
|
|
751
|
-
font-size: var(--kbq-typography-text-normal-medium-font-size);
|
|
752
|
-
font-weight: var(--kbq-typography-text-normal-medium-font-weight);
|
|
753
|
-
line-height: var(--kbq-typography-text-normal-medium-line-height);
|
|
754
|
-
font-family: var(--kbq-typography-text-normal-medium-font-family);
|
|
755
|
-
font-style: var(--kbq-typography-text-normal-medium-font-style);
|
|
756
|
-
text-transform: var(--kbq-typography-text-normal-medium-text-transform);
|
|
757
|
-
font-feature-settings: var(--kbq-typography-text-normal-medium-font-feature-settings);
|
|
758
|
-
letter-spacing: var(--kbq-typography-text-normal-medium-letter-spacing);
|
|
759
|
-
text-underline-offset: calc(( var(--kbq-typography-text-normal-medium-line-height) - var(--kbq-typography-text-normal-medium-font-size)) / 2);
|
|
760
|
-
border: none;
|
|
761
|
-
flex-wrap: nowrap;
|
|
762
|
-
flex-shrink: 0;
|
|
763
|
-
justify-content: center;
|
|
764
|
-
align-items: center;
|
|
765
|
-
text-decoration: none;
|
|
766
|
-
display: inline-flex;
|
|
767
|
-
}
|
|
768
|
-
|
|
769
|
-
.kbq-iconbutton-l-2f8f66 {
|
|
770
|
-
--icon-button-size: 24px;
|
|
771
|
-
--icon-button-padding: var(--kbq-size-xxs);
|
|
772
|
-
}
|
|
773
|
-
|
|
774
|
-
.kbq-iconbutton-xl-7ea358 {
|
|
775
|
-
--icon-button-size: 24px;
|
|
776
|
-
--icon-button-padding: 0;
|
|
777
|
-
}
|
|
778
|
-
|
|
779
|
-
.kbq-iconbutton-compact-1a8941:where(.kbq-iconbutton-l-2f8f66) {
|
|
780
|
-
--icon-button-size: 16px;
|
|
781
|
-
--icon-button-padding: 0;
|
|
782
|
-
}
|
|
783
|
-
|
|
784
|
-
.kbq-iconbutton-hovered-daeb15 {
|
|
785
|
-
color: var(--icon-button-color-hover);
|
|
786
|
-
}
|
|
787
|
-
|
|
788
|
-
.kbq-iconbutton-pressed-cd5790 {
|
|
789
|
-
color: var(--icon-button-color-active);
|
|
790
|
-
}
|
|
791
|
-
|
|
792
|
-
.kbq-iconbutton-focusVisible-fe4d04 {
|
|
793
|
-
--icon-button-outline-color: var(--kbq-states-line-focus-theme);
|
|
794
|
-
}
|
|
795
|
-
|
|
796
|
-
.kbq-iconbutton-disabled-d2beb1 {
|
|
797
|
-
cursor: not-allowed;
|
|
798
|
-
color: var(--icon-button-color-disabled);
|
|
799
|
-
}
|
|
800
|
-
|
|
801
|
-
.kbq-iconbutton-theme-932771 {
|
|
802
|
-
--icon-button-color: var(--kbq-icon-theme);
|
|
803
|
-
--icon-button-color-hover: var(--kbq-states-icon-theme-hover);
|
|
804
|
-
--icon-button-color-active: var(--kbq-states-icon-theme-active);
|
|
805
|
-
}
|
|
806
|
-
|
|
807
|
-
.kbq-iconbutton-theme-contrast-6258bb {
|
|
808
|
-
--icon-button-color: var(--kbq-icon-contrast);
|
|
809
|
-
--icon-button-color-hover: var(--kbq-states-icon-contrast-hover);
|
|
810
|
-
--icon-button-color-active: var(--kbq-states-icon-contrast-active);
|
|
811
|
-
}
|
|
812
|
-
|
|
813
|
-
.kbq-iconbutton-fade-contrast-4e4d6d {
|
|
814
|
-
--icon-button-color: var(--kbq-icon-contrast-fade);
|
|
815
|
-
--icon-button-color-hover: var(--kbq-states-icon-contrast-fade-hover);
|
|
816
|
-
--icon-button-color-active: var(--kbq-states-icon-contrast-fade-active);
|
|
817
|
-
}
|
|
818
|
-
|
|
819
|
-
.kbq-iconbutton-error-8e5261 {
|
|
820
|
-
--icon-button-color: var(--kbq-icon-error);
|
|
821
|
-
--icon-button-color-hover: var(--kbq-states-icon-error-hover);
|
|
822
|
-
--icon-button-color-active: var(--kbq-states-icon-error-active);
|
|
823
|
-
}
|
|
824
|
-
|
|
825
|
-
.kbq-iconbutton-success-4c701d {
|
|
826
|
-
--icon-button-color: var(--kbq-icon-success);
|
|
827
|
-
--icon-button-color-hover: var(--kbq-states-icon-success-hover);
|
|
828
|
-
--icon-button-color-active: var(--kbq-states-icon-success-active);
|
|
829
|
-
}
|
|
830
|
-
|
|
831
|
-
.kbq-iconbutton-warning-a2092b {
|
|
832
|
-
--icon-button-color: var(--kbq-icon-warning);
|
|
833
|
-
--icon-button-color-hover: var(--kbq-states-icon-warning-hover);
|
|
834
|
-
--icon-button-color-active: var(--kbq-states-icon-warning-active);
|
|
835
|
-
}
|
|
836
849
|
.kbq-button-d95067 {
|
|
837
850
|
--button-gap: var(--kbq-size-xxs);
|
|
838
851
|
--button-border-color: transparent;
|
|
@@ -2338,14 +2351,6 @@
|
|
|
2338
2351
|
--badge-bg-color: ;
|
|
2339
2352
|
--badge-color: var(--kbq-foreground-contrast);
|
|
2340
2353
|
}
|
|
2341
|
-
.kbq-input-hasStartAddon-fac70d {
|
|
2342
|
-
--field-padding-inline-start: 36px;
|
|
2343
|
-
}
|
|
2344
|
-
|
|
2345
|
-
.kbq-input-hasEndAddon-12fbf6 {
|
|
2346
|
-
--field-padding-inline-end: 36px;
|
|
2347
|
-
}
|
|
2348
|
-
|
|
2349
2354
|
.kbq-input-body-3b6f04 {
|
|
2350
2355
|
inline-size: 100%;
|
|
2351
2356
|
min-inline-size: fit-content;
|
|
@@ -3470,7 +3475,7 @@
|
|
|
3470
3475
|
align-self: center;
|
|
3471
3476
|
}
|
|
3472
3477
|
|
|
3473
|
-
.kbq-taggroup-
|
|
3478
|
+
:is(.kbq-taggroup-tag-b9306f, .kbq-taggroup-more-b2d6b9)[aria-hidden="true"] {
|
|
3474
3479
|
visibility: hidden;
|
|
3475
3480
|
position: absolute;
|
|
3476
3481
|
inset-inline-start: -300vw;
|
|
@@ -4680,6 +4685,7 @@
|
|
|
4680
4685
|
.kbq-toastregion-2d9efe {
|
|
4681
4686
|
z-index: var(--kbq-layer-toast);
|
|
4682
4687
|
border-radius: var(--kbq-size-s);
|
|
4688
|
+
flex-direction: column;
|
|
4683
4689
|
display: flex;
|
|
4684
4690
|
position: fixed;
|
|
4685
4691
|
}
|
|
@@ -4688,19 +4694,11 @@
|
|
|
4688
4694
|
outline: var(--kbq-size-3xs) solid var(--kbq-states-line-focus-theme);
|
|
4689
4695
|
}
|
|
4690
4696
|
|
|
4691
|
-
.kbq-toastregion-ascending-806126 {
|
|
4692
|
-
flex-direction: column-reverse;
|
|
4693
|
-
}
|
|
4694
|
-
|
|
4695
|
-
.kbq-toastregion-descending-4995b5 {
|
|
4696
|
-
flex-direction: column;
|
|
4697
|
-
}
|
|
4698
|
-
|
|
4699
4697
|
.kbq-toastregion-2d9efe:where([data-placement^="top"].kbq-toastregion-ascending-806126) > * {
|
|
4700
4698
|
margin-block-end: var(--kbq-size-s);
|
|
4701
4699
|
}
|
|
4702
4700
|
|
|
4703
|
-
.kbq-toastregion-2d9efe:where([data-placement^="top"].kbq-toastregion-ascending-806126) > *:
|
|
4701
|
+
.kbq-toastregion-2d9efe:where([data-placement^="top"].kbq-toastregion-ascending-806126) > *:last-child {
|
|
4704
4702
|
margin-block-end: 0;
|
|
4705
4703
|
}
|
|
4706
4704
|
|
|
@@ -4708,7 +4706,7 @@
|
|
|
4708
4706
|
margin-block-start: var(--kbq-size-s);
|
|
4709
4707
|
}
|
|
4710
4708
|
|
|
4711
|
-
.kbq-toastregion-2d9efe:where([data-placement^="bottom"].kbq-toastregion-ascending-806126) > *:
|
|
4709
|
+
.kbq-toastregion-2d9efe:where([data-placement^="bottom"].kbq-toastregion-ascending-806126) > *:first-child {
|
|
4712
4710
|
margin-block-start: 0;
|
|
4713
4711
|
}
|
|
4714
4712
|
|
|
@@ -4761,12 +4759,12 @@
|
|
|
4761
4759
|
}
|
|
4762
4760
|
.kbq-toast-1ed9c8 {
|
|
4763
4761
|
--toast-inline-size: 360px;
|
|
4762
|
+
--toast-transition-z-index: ;
|
|
4764
4763
|
--toast-transition-duration: .3s;
|
|
4765
|
-
--toast-outline-color: transparent;
|
|
4766
4764
|
--toast-transition-block-size: 0;
|
|
4767
|
-
--toast-outline-width: var(--kbq-size-3xs);
|
|
4768
4765
|
border-radius: var(--kbq-size-s);
|
|
4769
4766
|
inline-size: var(--toast-inline-size);
|
|
4767
|
+
z-index: var(--toast-transition-z-index);
|
|
4770
4768
|
transition: margin-block-end var(--kbq-transition-slow), margin-block-start var(--kbq-transition-slow), block-size var(--kbq-transition-slow);
|
|
4771
4769
|
will-change: margin-bottom, margin-top, block-size;
|
|
4772
4770
|
transition-duration: var(--toast-transition-duration);
|
|
@@ -4774,22 +4772,6 @@
|
|
|
4774
4772
|
position: relative;
|
|
4775
4773
|
}
|
|
4776
4774
|
|
|
4777
|
-
.kbq-toast-1ed9c8:focus-visible {
|
|
4778
|
-
--toast-outline-color: var(--kbq-states-line-focus-theme);
|
|
4779
|
-
}
|
|
4780
|
-
|
|
4781
|
-
.kbq-toast-1ed9c8:after {
|
|
4782
|
-
content: "";
|
|
4783
|
-
pointer-events: none;
|
|
4784
|
-
border-radius: inherit;
|
|
4785
|
-
z-index: var(--kbq-layer-absolute);
|
|
4786
|
-
transition: outline-color var(--kbq-transition-default);
|
|
4787
|
-
outline-offset: calc(-1 * var(--toast-outline-width) / 2);
|
|
4788
|
-
outline: var(--toast-outline-width) solid var(--toast-outline-color);
|
|
4789
|
-
position: absolute;
|
|
4790
|
-
inset: 0;
|
|
4791
|
-
}
|
|
4792
|
-
|
|
4793
4775
|
.kbq-toast-1ed9c8[data-placement^="bottom"] {
|
|
4794
4776
|
--toast-wrapper-inset-block-end: 0;
|
|
4795
4777
|
}
|
|
@@ -4884,6 +4866,223 @@
|
|
|
4884
4866
|
.kbq-toaststatusicon-success-acdec0 {
|
|
4885
4867
|
--kbq-toast-icon-color: var(--kbq-icon-success);
|
|
4886
4868
|
}
|
|
4869
|
+
.kbq-breadcrumbs-922b6f {
|
|
4870
|
+
--breadcrumbs-wrap: ;
|
|
4871
|
+
--breadcrumb-padding-inline: var(--kbq-size-xs);
|
|
4872
|
+
--breadcrumb-padding-block: var(--kbq-size-3xs);
|
|
4873
|
+
inline-size: 100%;
|
|
4874
|
+
}
|
|
4875
|
+
|
|
4876
|
+
.kbq-breadcrumbs-wrap-352442 {
|
|
4877
|
+
--breadcrumbs-wrap: wrap;
|
|
4878
|
+
}
|
|
4879
|
+
|
|
4880
|
+
.kbq-breadcrumbs-list-ab1ac2 {
|
|
4881
|
+
flex-wrap: var(--breadcrumbs-wrap);
|
|
4882
|
+
inline-size: 100%;
|
|
4883
|
+
margin: 0;
|
|
4884
|
+
padding: 0;
|
|
4885
|
+
list-style: none;
|
|
4886
|
+
display: flex;
|
|
4887
|
+
}
|
|
4888
|
+
|
|
4889
|
+
.kbq-breadcrumbs-compact-2a6f3a {
|
|
4890
|
+
font-size: var(--kbq-typography-text-normal-font-size);
|
|
4891
|
+
font-weight: var(--kbq-typography-text-normal-font-weight);
|
|
4892
|
+
line-height: var(--kbq-typography-text-normal-line-height);
|
|
4893
|
+
font-family: var(--kbq-typography-text-normal-font-family);
|
|
4894
|
+
font-style: var(--kbq-typography-text-normal-font-style);
|
|
4895
|
+
text-transform: var(--kbq-typography-text-normal-text-transform);
|
|
4896
|
+
font-feature-settings: var(--kbq-typography-text-normal-font-feature-settings);
|
|
4897
|
+
letter-spacing: var(--kbq-typography-text-normal-letter-spacing);
|
|
4898
|
+
text-underline-offset: calc(( var(--kbq-typography-text-normal-line-height) - var(--kbq-typography-text-normal-font-size)) / 2);
|
|
4899
|
+
}
|
|
4900
|
+
|
|
4901
|
+
.kbq-breadcrumbs-normal-47d2bc {
|
|
4902
|
+
font-size: var(--kbq-typography-text-big-font-size);
|
|
4903
|
+
font-weight: var(--kbq-typography-text-big-font-weight);
|
|
4904
|
+
line-height: var(--kbq-typography-text-big-line-height);
|
|
4905
|
+
font-family: var(--kbq-typography-text-big-font-family);
|
|
4906
|
+
font-style: var(--kbq-typography-text-big-font-style);
|
|
4907
|
+
text-transform: var(--kbq-typography-text-big-text-transform);
|
|
4908
|
+
font-feature-settings: var(--kbq-typography-text-big-font-feature-settings);
|
|
4909
|
+
letter-spacing: var(--kbq-typography-text-big-letter-spacing);
|
|
4910
|
+
text-underline-offset: calc(( var(--kbq-typography-text-big-line-height) - var(--kbq-typography-text-big-font-size)) / 2);
|
|
4911
|
+
}
|
|
4912
|
+
|
|
4913
|
+
.kbq-breadcrumbs-big-b56335 {
|
|
4914
|
+
font-size: var(--kbq-typography-subheading-font-size);
|
|
4915
|
+
font-weight: var(--kbq-typography-subheading-font-weight);
|
|
4916
|
+
line-height: var(--kbq-typography-subheading-line-height);
|
|
4917
|
+
font-family: var(--kbq-typography-subheading-font-family);
|
|
4918
|
+
font-style: var(--kbq-typography-subheading-font-style);
|
|
4919
|
+
text-transform: var(--kbq-typography-subheading-text-transform);
|
|
4920
|
+
font-feature-settings: var(--kbq-typography-subheading-font-feature-settings);
|
|
4921
|
+
letter-spacing: var(--kbq-typography-subheading-letter-spacing);
|
|
4922
|
+
text-underline-offset: calc(( var(--kbq-typography-subheading-line-height) - var(--kbq-typography-subheading-font-size)) / 2);
|
|
4923
|
+
}
|
|
4924
|
+
|
|
4925
|
+
.kbq-breadcrumbs-item-bcbc6b {
|
|
4926
|
+
white-space: nowrap;
|
|
4927
|
+
box-sizing: border-box;
|
|
4928
|
+
align-items: center;
|
|
4929
|
+
display: inline-flex;
|
|
4930
|
+
}
|
|
4931
|
+
|
|
4932
|
+
.kbq-breadcrumbs-ellipsis-60de4d {
|
|
4933
|
+
justify-content: center;
|
|
4934
|
+
align-items: center;
|
|
4935
|
+
display: inline-flex;
|
|
4936
|
+
}
|
|
4937
|
+
|
|
4938
|
+
:is(.kbq-breadcrumbs-item-bcbc6b, .kbq-breadcrumbs-ellipsis-60de4d)[aria-hidden="true"] {
|
|
4939
|
+
visibility: hidden;
|
|
4940
|
+
position: absolute;
|
|
4941
|
+
inset-inline-start: -300vw;
|
|
4942
|
+
}
|
|
4943
|
+
|
|
4944
|
+
.kbq-breadcrumbs-divider-31522f {
|
|
4945
|
+
-webkit-user-select: none;
|
|
4946
|
+
user-select: none;
|
|
4947
|
+
min-inline-size: var(--kbq-size-m);
|
|
4948
|
+
margin-inline: var(--breadcrumb-padding-inline);
|
|
4949
|
+
color: var(--kbq-states-foreground-disabled);
|
|
4950
|
+
flex-direction: column;
|
|
4951
|
+
justify-content: center;
|
|
4952
|
+
align-items: center;
|
|
4953
|
+
display: flex;
|
|
4954
|
+
}
|
|
4955
|
+
.kbq-breadcrumbitem-c1599d {
|
|
4956
|
+
--breadcrumb-color: var(--kbq-foreground-contrast-secondary);
|
|
4957
|
+
--breadcrumb-outline-width: var(--kbq-size-3xs);
|
|
4958
|
+
--breadcrumb-outline-color: transparent;
|
|
4959
|
+
--breadcrumb-size: ;
|
|
4960
|
+
--breadcrumb-inline-size: ;
|
|
4961
|
+
--breadcrumb-bg-color: ;
|
|
4962
|
+
cursor: pointer;
|
|
4963
|
+
box-sizing: border-box;
|
|
4964
|
+
justify-content: center;
|
|
4965
|
+
align-items: center;
|
|
4966
|
+
gap: var(--kbq-size-xs);
|
|
4967
|
+
color: var(--breadcrumb-color);
|
|
4968
|
+
border-radius: var(--kbq-size-xs);
|
|
4969
|
+
background-color: var(--breadcrumb-bg-color);
|
|
4970
|
+
outline: var(--breadcrumb-outline-width) solid;
|
|
4971
|
+
outline-color: var(--breadcrumb-outline-color);
|
|
4972
|
+
block-size: var(--breadcrumb-size);
|
|
4973
|
+
min-block-size: var(--breadcrumb-size);
|
|
4974
|
+
min-inline-size: var(--breadcrumb-size);
|
|
4975
|
+
margin-inline: calc(-1 * var(--breadcrumb-padding-inline));
|
|
4976
|
+
transition: color var(--kbq-transition-default), outline var(--kbq-transition-default), background-color var(--kbq-transition-default);
|
|
4977
|
+
padding: var(--breadcrumb-padding-block) var(--breadcrumb-padding-inline);
|
|
4978
|
+
border: none;
|
|
4979
|
+
flex-wrap: nowrap;
|
|
4980
|
+
text-decoration: none;
|
|
4981
|
+
display: flex;
|
|
4982
|
+
}
|
|
4983
|
+
|
|
4984
|
+
.kbq-breadcrumbitem-c1599d > * {
|
|
4985
|
+
flex-shrink: 0;
|
|
4986
|
+
}
|
|
4987
|
+
|
|
4988
|
+
.kbq-breadcrumbitem-hovered-985b33 {
|
|
4989
|
+
--breadcrumb-bg-color: var(--kbq-states-background-transparent-hover);
|
|
4990
|
+
}
|
|
4991
|
+
|
|
4992
|
+
.kbq-breadcrumbitem-pressed-80b3fe, [aria-expanded="true"] {
|
|
4993
|
+
--breadcrumb-bg-color: var(--kbq-states-background-transparent-active);
|
|
4994
|
+
}
|
|
4995
|
+
|
|
4996
|
+
.kbq-breadcrumbitem-focusVisible-16d3f1 {
|
|
4997
|
+
--breadcrumb-outline-color: var(--kbq-states-line-focus-theme);
|
|
4998
|
+
}
|
|
4999
|
+
|
|
5000
|
+
.kbq-breadcrumbitem-disabled-a307b2 {
|
|
5001
|
+
--breadcrumb-color: var(--kbq-states-foreground-disabled);
|
|
5002
|
+
cursor: not-allowed;
|
|
5003
|
+
text-decoration: none;
|
|
5004
|
+
}
|
|
5005
|
+
|
|
5006
|
+
.kbq-breadcrumbitem-current-f87edc {
|
|
5007
|
+
--breadcrumb-bg-color: ;
|
|
5008
|
+
--breadcrumb-color: var(--kbq-foreground-contrast);
|
|
5009
|
+
cursor: default;
|
|
5010
|
+
}
|
|
5011
|
+
|
|
5012
|
+
.kbq-breadcrumbitem-compact-71772d {
|
|
5013
|
+
font-size: var(--kbq-typography-text-normal-font-size);
|
|
5014
|
+
font-weight: var(--kbq-typography-text-normal-font-weight);
|
|
5015
|
+
line-height: var(--kbq-typography-text-normal-line-height);
|
|
5016
|
+
font-family: var(--kbq-typography-text-normal-font-family);
|
|
5017
|
+
font-style: var(--kbq-typography-text-normal-font-style);
|
|
5018
|
+
text-transform: var(--kbq-typography-text-normal-text-transform);
|
|
5019
|
+
font-feature-settings: var(--kbq-typography-text-normal-font-feature-settings);
|
|
5020
|
+
letter-spacing: var(--kbq-typography-text-normal-letter-spacing);
|
|
5021
|
+
text-underline-offset: calc(( var(--kbq-typography-text-normal-line-height) - var(--kbq-typography-text-normal-font-size)) / 2);
|
|
5022
|
+
--breadcrumb-size: var(--kbq-size-xxl);
|
|
5023
|
+
}
|
|
5024
|
+
|
|
5025
|
+
.kbq-breadcrumbitem-normal-548b3c {
|
|
5026
|
+
font-size: var(--kbq-typography-text-big-font-size);
|
|
5027
|
+
font-weight: var(--kbq-typography-text-big-font-weight);
|
|
5028
|
+
line-height: var(--kbq-typography-text-big-line-height);
|
|
5029
|
+
font-family: var(--kbq-typography-text-big-font-family);
|
|
5030
|
+
font-style: var(--kbq-typography-text-big-font-style);
|
|
5031
|
+
text-transform: var(--kbq-typography-text-big-text-transform);
|
|
5032
|
+
font-feature-settings: var(--kbq-typography-text-big-font-feature-settings);
|
|
5033
|
+
letter-spacing: var(--kbq-typography-text-big-letter-spacing);
|
|
5034
|
+
text-underline-offset: calc(( var(--kbq-typography-text-big-line-height) - var(--kbq-typography-text-big-font-size)) / 2);
|
|
5035
|
+
--breadcrumb-size: var(--kbq-size-3xl);
|
|
5036
|
+
}
|
|
5037
|
+
|
|
5038
|
+
.kbq-breadcrumbitem-big-7dc306 {
|
|
5039
|
+
font-size: var(--kbq-typography-subheading-font-size);
|
|
5040
|
+
font-weight: var(--kbq-typography-subheading-font-weight);
|
|
5041
|
+
line-height: var(--kbq-typography-subheading-line-height);
|
|
5042
|
+
font-family: var(--kbq-typography-subheading-font-family);
|
|
5043
|
+
font-style: var(--kbq-typography-subheading-font-style);
|
|
5044
|
+
text-transform: var(--kbq-typography-subheading-text-transform);
|
|
5045
|
+
font-feature-settings: var(--kbq-typography-subheading-font-feature-settings);
|
|
5046
|
+
letter-spacing: var(--kbq-typography-subheading-letter-spacing);
|
|
5047
|
+
text-underline-offset: calc(( var(--kbq-typography-subheading-line-height) - var(--kbq-typography-subheading-font-size)) / 2);
|
|
5048
|
+
--breadcrumb-size: var(--kbq-size-3xl);
|
|
5049
|
+
}
|
|
5050
|
+
|
|
5051
|
+
.kbq-breadcrumbitem-compact-71772d:where(.kbq-breadcrumbitem-current-f87edc) {
|
|
5052
|
+
font-size: var(--kbq-typography-text-normal-medium-font-size);
|
|
5053
|
+
font-weight: var(--kbq-typography-text-normal-medium-font-weight);
|
|
5054
|
+
line-height: var(--kbq-typography-text-normal-medium-line-height);
|
|
5055
|
+
font-family: var(--kbq-typography-text-normal-medium-font-family);
|
|
5056
|
+
font-style: var(--kbq-typography-text-normal-medium-font-style);
|
|
5057
|
+
text-transform: var(--kbq-typography-text-normal-medium-text-transform);
|
|
5058
|
+
font-feature-settings: var(--kbq-typography-text-normal-medium-font-feature-settings);
|
|
5059
|
+
letter-spacing: var(--kbq-typography-text-normal-medium-letter-spacing);
|
|
5060
|
+
text-underline-offset: calc(( var(--kbq-typography-text-normal-medium-line-height) - var(--kbq-typography-text-normal-medium-font-size)) / 2);
|
|
5061
|
+
}
|
|
5062
|
+
|
|
5063
|
+
.kbq-breadcrumbitem-normal-548b3c:where(.kbq-breadcrumbitem-current-f87edc) {
|
|
5064
|
+
font-size: var(--kbq-typography-text-big-medium-font-size);
|
|
5065
|
+
font-weight: var(--kbq-typography-text-big-medium-font-weight);
|
|
5066
|
+
line-height: var(--kbq-typography-text-big-medium-line-height);
|
|
5067
|
+
font-family: var(--kbq-typography-text-big-medium-font-family);
|
|
5068
|
+
font-style: var(--kbq-typography-text-big-medium-font-style);
|
|
5069
|
+
text-transform: var(--kbq-typography-text-big-medium-text-transform);
|
|
5070
|
+
font-feature-settings: var(--kbq-typography-text-big-medium-font-feature-settings);
|
|
5071
|
+
letter-spacing: var(--kbq-typography-text-big-medium-letter-spacing);
|
|
5072
|
+
text-underline-offset: calc(( var(--kbq-typography-text-big-medium-line-height) - var(--kbq-typography-text-big-medium-font-size)) / 2);
|
|
5073
|
+
}
|
|
5074
|
+
|
|
5075
|
+
.kbq-breadcrumbitem-big-7dc306:where(.kbq-breadcrumbitem-current-f87edc) {
|
|
5076
|
+
font-size: var(--kbq-typography-subheading-font-size);
|
|
5077
|
+
font-weight: var(--kbq-typography-subheading-font-weight);
|
|
5078
|
+
line-height: var(--kbq-typography-subheading-line-height);
|
|
5079
|
+
font-family: var(--kbq-typography-subheading-font-family);
|
|
5080
|
+
font-style: var(--kbq-typography-subheading-font-style);
|
|
5081
|
+
text-transform: var(--kbq-typography-subheading-text-transform);
|
|
5082
|
+
font-feature-settings: var(--kbq-typography-subheading-font-feature-settings);
|
|
5083
|
+
letter-spacing: var(--kbq-typography-subheading-letter-spacing);
|
|
5084
|
+
text-underline-offset: calc(( var(--kbq-typography-subheading-line-height) - var(--kbq-typography-subheading-font-size)) / 2);
|
|
5085
|
+
}
|
|
4887
5086
|
.kbq-spacing-mbs_0-be7021 {
|
|
4888
5087
|
margin-block-start: 0;
|
|
4889
5088
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@koobiq/react-components",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.21.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -25,16 +25,16 @@
|
|
|
25
25
|
},
|
|
26
26
|
"sideEffects": false,
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@koobiq/design-tokens": "^3.
|
|
28
|
+
"@koobiq/design-tokens": "^3.15.0",
|
|
29
29
|
"@types/react-transition-group": "^4.4.12",
|
|
30
30
|
"react-transition-group": "^4.4.5",
|
|
31
|
-
"@koobiq/
|
|
32
|
-
"@koobiq/
|
|
33
|
-
"@koobiq/react-
|
|
34
|
-
"@koobiq/react-
|
|
31
|
+
"@koobiq/logger": "0.21.0",
|
|
32
|
+
"@koobiq/react-core": "0.21.0",
|
|
33
|
+
"@koobiq/react-icons": "0.21.0",
|
|
34
|
+
"@koobiq/react-primitives": "0.21.0"
|
|
35
35
|
},
|
|
36
36
|
"peerDependencies": {
|
|
37
|
-
"@koobiq/design-tokens": "^3.
|
|
37
|
+
"@koobiq/design-tokens": "^3.15.0",
|
|
38
38
|
"react": "18.x || 19.x",
|
|
39
39
|
"react-dom": "18.x || 19.x"
|
|
40
40
|
},
|
|
File without changes
|