@chekinapp/ui 0.0.22 → 0.0.23
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/index.cjs +794 -593
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +83 -0
- package/dist/index.css.map +1 -1
- package/dist/index.d.cts +73 -2
- package/dist/index.d.ts +73 -2
- package/dist/index.js +709 -524
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.css
CHANGED
|
@@ -99,6 +99,89 @@
|
|
|
99
99
|
padding: 0;
|
|
100
100
|
}
|
|
101
101
|
|
|
102
|
+
/* src/alert-box/AlertBox.module.css */
|
|
103
|
+
.alertBox {
|
|
104
|
+
border-radius: var(--alert-box-radius);
|
|
105
|
+
}
|
|
106
|
+
.alertBox--info {
|
|
107
|
+
background: var(--alert-box-info-bg);
|
|
108
|
+
}
|
|
109
|
+
.alertBox--info svg {
|
|
110
|
+
color: var(--alert-box-info-icon);
|
|
111
|
+
}
|
|
112
|
+
.alertBox--warning {
|
|
113
|
+
background: var(--alert-box-warning-bg);
|
|
114
|
+
}
|
|
115
|
+
.alertBox--warning svg {
|
|
116
|
+
color: var(--alert-box-warning-icon);
|
|
117
|
+
}
|
|
118
|
+
.alertBox--success {
|
|
119
|
+
background: var(--alert-box-success-bg);
|
|
120
|
+
color: var(--alert-box-success-text);
|
|
121
|
+
}
|
|
122
|
+
.alertBox--success svg {
|
|
123
|
+
color: var(--alert-box-success-icon);
|
|
124
|
+
}
|
|
125
|
+
.alertBox--error {
|
|
126
|
+
background: var(--alert-box-error-bg);
|
|
127
|
+
}
|
|
128
|
+
.alertBox--error svg {
|
|
129
|
+
color: var(--alert-box-error-icon);
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
/* src/audio-player/AudioPlayer.module.css */
|
|
133
|
+
.playButton {
|
|
134
|
+
background: var(--audio-player-button-bg);
|
|
135
|
+
border-radius: var(--audio-player-button-radius);
|
|
136
|
+
}
|
|
137
|
+
.playButton:hover {
|
|
138
|
+
background: var(--audio-player-button-hover-bg);
|
|
139
|
+
}
|
|
140
|
+
.playButton svg {
|
|
141
|
+
color: var(--audio-player-icon-color);
|
|
142
|
+
}
|
|
143
|
+
.track {
|
|
144
|
+
background: var(--audio-player-track-bg);
|
|
145
|
+
}
|
|
146
|
+
.progress {
|
|
147
|
+
background: var(--audio-player-progress-bg);
|
|
148
|
+
}
|
|
149
|
+
.time {
|
|
150
|
+
color: var(--audio-player-time-color);
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
/* src/avatar/Avatar.module.css */
|
|
154
|
+
.fallback {
|
|
155
|
+
background: var(--avatar-fallback-bg);
|
|
156
|
+
color: var(--avatar-fallback-text);
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
/* src/beta-badge/BetaBadge.module.css */
|
|
160
|
+
.betaBadge {
|
|
161
|
+
background: var(--beta-badge-bg);
|
|
162
|
+
color: var(--beta-badge-text);
|
|
163
|
+
}
|
|
164
|
+
.betaBadge--readonly {
|
|
165
|
+
background: var(--beta-badge-readonly-bg);
|
|
166
|
+
color: var(--beta-badge-readonly-text);
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
/* src/box-option-selector/BoxOptionSelector.module.css */
|
|
170
|
+
.boxOption {
|
|
171
|
+
border-color: var(--box-option-border);
|
|
172
|
+
background: var(--box-option-bg);
|
|
173
|
+
}
|
|
174
|
+
.boxOption:hover {
|
|
175
|
+
background: var(--box-option-hover-bg);
|
|
176
|
+
}
|
|
177
|
+
.boxOption--selected {
|
|
178
|
+
border-color: var(--box-option-selected-border);
|
|
179
|
+
background: var(--box-option-selected-bg);
|
|
180
|
+
}
|
|
181
|
+
.boxOption--selected:hover {
|
|
182
|
+
background: var(--box-option-selected-bg);
|
|
183
|
+
}
|
|
184
|
+
|
|
102
185
|
/* src/error-message/styles.module.css */
|
|
103
186
|
.ErrorMessage {
|
|
104
187
|
@apply mt-0.5 text-left text-sm font-medium text-chekin-red;
|
package/dist/index.css.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/accordion/Accordion.module.css","../src/error-message/styles.module.css","../src/loading-bar/styles.module.css","../src/form-box/FormBox.module.css","../src/free-text-field/styles.module.css","../src/metric-card/MetricCard.module.css","../src/modal/styles.module.css","../src/radio/styles.module.css","../src/rating-radio-group/styles.module.css","../src/section/Section.module.css","../src/selector-button/styles.module.css","../src/selectors/styles.module.css","../src/task-card/TaskCard.module.css","../src/text-field/textField.module.css","../src/textarea/styles.module.css","../src/three-dots-loader/styles.module.css"],"sourcesContent":[".accordion__item {\n @apply transition-colors duration-200 ease-in-out;\n background: var(--accordion-item-bg);\n border-color: var(--accordion-item-border);\n border-radius: var(--accordion-item-radius);\n border-style: solid;\n border-width: 1px;\n border-top-color: var(--accordion-item-divider);\n box-shadow: 0 0 10px 0 rgba(143, 143, 143, 0.2);\n}\n\n:root[data-surface='guest'] .accordion__item {\n border-width: 0;\n border-top-width: 1px;\n box-shadow: none;\n}\n\n:root[data-surface='guest'] .accordion__item:first-child {\n border-top-width: 0;\n}\n\n.accordion__item[data-state='open'] {\n background: var(--accordion-item-open-bg);\n}\n\n.accordion__item[data-state='closed'] {\n background: var(--accordion-item-bg);\n}\n\n.accordion__item[data-state='closed']:hover {\n background: var(--accordion-item-hover-bg);\n}\n\n.accordion__trigger {\n @apply flex h-auto w-full flex-1 items-center justify-between text-left outline-none transition-colors duration-200;\n @apply hover:no-underline disabled:pointer-events-none;\n color: var(--accordion-trigger-color);\n font-family: var(--accordion-trigger-font-family);\n font-size: 18px;\n font-weight: var(--accordion-trigger-font-weight);\n gap: var(--accordion-trigger-gap);\n line-height: 28px;\n padding: 24px;\n}\n\n:root[data-surface='guest'] .accordion__trigger {\n font-size: 14px;\n line-height: 20px;\n padding: 16px 0;\n}\n\n@media (min-width: 479px) {\n :root[data-surface='guest'] .accordion__trigger {\n padding-bottom: 24px;\n padding-top: 24px;\n }\n}\n\n.accordion__trigger:focus-visible {\n box-shadow: var(--accordion-trigger-focus-shadow);\n}\n\n.accordion__trigger:disabled {\n opacity: var(--accordion-trigger-disabled-opacity);\n}\n\n.accordion__icon {\n color: var(--accordion-icon-color-closed);\n height: var(--accordion-icon-size);\n margin-left: auto;\n min-width: initial;\n width: 16px;\n}\n\n.accordion__trigger[data-state='open'] .accordion__icon {\n color: var(--accordion-icon-color-open);\n}\n\n:root[data-surface='guest'] .accordion__icon {\n width: 12px;\n}\n\n.accordion__icon svg {\n height: var(--accordion-icon-size);\n transition: transform 0.2s;\n width: var(--accordion-icon-size);\n}\n\n:root[data-surface='guest'] .accordion__icon svg {\n transform: rotate(270deg);\n}\n\n:root[data-surface='guest'] .accordion__trigger[data-state='open'] .accordion__icon svg {\n transform: rotate(90deg);\n}\n\n.accordion__content {\n @apply transition-all;\n @apply data-[state=closed]:animate-accordion-up;\n @apply data-[state=open]:animate-accordion-down;\n color: var(--accordion-content-color);\n font-size: var(--accordion-content-font-size);\n line-height: var(--accordion-content-line-height);\n}\n\n.accordion__content[data-state='closed'] {\n display: block;\n}\n\n:root[data-surface='guest'] .accordion__content[data-state='closed'] {\n display: none;\n}\n\n.accordion__contentItem {\n padding: 8px 24px 24px;\n}\n\n:root[data-surface='guest'] .accordion__contentItem {\n padding: 0;\n}\n",".ErrorMessage {\n @apply mt-0.5 text-left text-sm font-medium text-chekin-red;\n}\n\n.ErrorMessage__disabled {\n opacity: 0.3;\n}\n",".bar {\n animation: loading-bar 0.9s linear infinite;\n}\n\n@keyframes loading-bar {\n 0% {\n left: -43%;\n width: 43%;\n }\n\n 70% {\n left: 42%;\n width: 58%;\n }\n\n 100% {\n left: 100%;\n width: 58%;\n }\n}\n",".wrapper {\n display: flex;\n max-width: 1400px;\n padding: 24px;\n flex-direction: column;\n align-items: flex-start;\n gap: 24px;\n align-self: stretch;\n border: 1px solid #cecede;\n border-radius: 10px;\n container-type: inline-size;\n}\n\n.wrapperNested {\n border: initial;\n padding: 0;\n}\n\n.header {\n display: flex;\n margin: 0;\n padding: 0;\n align-items: center;\n gap: 8px;\n align-self: stretch;\n color: #161643;\n font-size: 24px;\n font-style: normal;\n font-weight: 600;\n line-height: normal;\n}\n\n.subHeader {\n display: flex;\n margin: 0;\n padding: 8px 0;\n align-items: center;\n gap: 8px;\n align-self: stretch;\n border-bottom: 1px solid #cecede;\n color: #161643;\n font-size: 16px;\n font-style: normal;\n font-weight: 600;\n line-height: normal;\n}\n\n.content {\n display: flex;\n align-items: flex-start;\n align-content: flex-start;\n gap: 16px;\n align-self: stretch;\n flex-wrap: wrap;\n}\n",".container {\n position: relative;\n display: flex;\n flex-direction: column;\n gap: 4px;\n width: 300px;\n}\n\n.labelRow {\n display: flex;\n gap: 4px;\n align-items: center;\n}\n\n.labelText,\n.optionalText {\n font-size: 16px;\n line-height: 16px;\n color: #161643;\n}\n\n.labelText {\n font-weight: 500;\n}\n\n.optionalText em {\n color: #9696b9;\n}\n\n.tooltip {\n width: 16px;\n height: 16px;\n flex-shrink: 0;\n}\n\n.fieldBox {\n position: relative;\n display: flex;\n align-items: center;\n gap: 10px;\n height: 44px;\n padding: 10px 14px;\n border: 1px solid;\n border-radius: 8px;\n transition:\n border-color 0.15s ease,\n background-color 0.15s ease;\n}\n\n.fieldBoxEmpty {\n background-color: #f4f6f8;\n border-color: rgba(22, 22, 67, 0.2);\n}\n\n.fieldBoxFilled {\n background-color: white;\n border-color: #161643;\n}\n\n.fieldBoxErrorWrong {\n background-color: white;\n border-color: #ff2467;\n}\n\n.fieldBoxAutocompleted {\n background-color: #eff6ff;\n border-color: #161643;\n}\n\n.fieldBoxFocused {\n border-color: #385bf8;\n}\n\n.input {\n flex: 1 0 0;\n min-width: 0;\n min-height: 1px;\n padding: 0;\n border: none;\n background: transparent;\n color: #161643;\n font: inherit;\n font-size: 16px;\n font-weight: 500;\n line-height: 20px;\n outline: none;\n}\n\n.input::placeholder {\n color: #6b6b95;\n font-weight: 500;\n}\n\n.icon {\n display: flex;\n flex-shrink: 0;\n align-items: center;\n justify-content: center;\n width: 24px;\n height: 24px;\n}\n\n.supportingText {\n margin: 0;\n color: #9696b9;\n font-size: 12px;\n font-style: italic;\n line-height: normal;\n}\n\n.errorText {\n margin: 0;\n color: #ff2467;\n font-size: 12px;\n font-weight: 500;\n line-height: 16px;\n text-align: right;\n}\n\n.floatingLabel {\n position: absolute;\n top: -8px;\n left: 13px;\n display: flex;\n align-items: center;\n height: 16px;\n padding: 0 3px;\n background: linear-gradient(to bottom, transparent 50%, white 50%);\n pointer-events: none;\n}\n\n.floatingLabelAutocompleted {\n background: linear-gradient(to bottom, rgb(239 246 255 / 0%) 50%, #eff6ff 50%);\n}\n\n.floatingLabelText {\n color: #6b6b95;\n font-size: 14px;\n font-weight: 500;\n line-height: 24px;\n white-space: nowrap;\n}\n\n.floatingLabelTextError {\n color: #ff2467;\n}\n",".MetricCard {\n @apply flex w-full min-w-52 gap-2 rounded-lg border border-chekin-gray-3 p-4;\n}\n\n.MetricCard--loading {\n @apply cursor-progress opacity-60;\n}\n\n.MetricCard__iconContainer {\n @apply flex h-6 w-6 shrink-0 items-center justify-center rounded-full mix-blend-multiply;\n}\n\n.MetricCard__content {\n @apply flex flex-1 flex-col gap-4;\n}\n\n.MetricCard__header {\n @apply flex items-center gap-1;\n}\n\n.MetricCard__title {\n @apply whitespace-nowrap text-base font-medium leading-6 text-chekin-navy;\n}\n\n.MetricCard__tooltip {\n @apply text-chekin-gray-1;\n}\n\n.MetricCard__footer {\n @apply flex items-center justify-between gap-2;\n}\n\n.MetricCard__value {\n @apply text-2xl font-bold leading-6;\n}\n\n.MetricCard--blue {\n color: #385cf8;\n background: linear-gradient(122deg, #e6f0ff 36.37%, #f6f9ff 86.4%);\n}\n\n.MetricCard--blue .MetricCard__iconContainer {\n background: #dbeafe;\n}\n\n.MetricCard--green {\n color: #2bc29f;\n background: linear-gradient(122deg, #ddfbf4 36.37%, #f5fefc 86.4%);\n}\n\n.MetricCard--green .MetricCard__iconContainer {\n background: #cff9ef;\n}\n\n.MetricCard--orange {\n color: #f5721a;\n background: linear-gradient(122deg, #ffeddc 36.37%, #fffaf5 86.4%);\n}\n\n.MetricCard--orange .MetricCard__iconContainer {\n background: #ffe5cd;\n}\n\n.MetricCard--purple {\n color: #9a51ff;\n background: linear-gradient(122deg, #f5edff 36.37%, #fcfaff 86.4%);\n}\n\n.MetricCard--purple .MetricCard__iconContainer {\n background: #f0e5ff;\n}\n\n.MetricCard--yellow {\n color: #ce8b0b;\n background: linear-gradient(122deg, #fff8e5 36.37%, #fffbef 86.4%);\n}\n\n.MetricCard--yellow .MetricCard__iconContainer {\n background: #ffeeb2;\n}\n\n.MetricCard__percentage {\n @apply inline-flex items-center gap-x-1 text-base font-semibold leading-6 text-emerald-600;\n}\n\n.MetricCard__percentage.--negative {\n @apply text-chekin-red;\n}\n",".modal__content {\n @apply flex h-auto min-w-[340px] flex-col items-center gap-y-6 rounded-md bg-white text-center;\n color: var(--chekin-navy);\n}\n\n.modal__close {\n @apply absolute right-4 top-4 z-10 rounded-full p-1 hover:bg-[#f4f6f8];\n color: var(--chekin-blue);\n}\n\n.modal__icon {\n @apply mx-auto mt-4;\n user-select: none;\n}\n\n.modal__title {\n @apply px-6 text-lg font-bold;\n}\n\n.modal__text {\n @apply text-base;\n}\n\n.modal__buttonsWrapper {\n @apply mb-2 mt-6 flex flex-col items-center justify-center gap-y-4;\n}\n\n.modal__button {\n @apply min-w-[210px];\n}\n",".radio__wrapper {\n @apply flex cursor-pointer items-center gap-2;\n}\n\n.radio__wrapper_disabled {\n @apply cursor-default opacity-50 peer-disabled:cursor-not-allowed peer-disabled:opacity-70;\n}\n",".RatingRadioGroup__input {\n position: absolute;\n width: 0;\n height: 0;\n opacity: 0;\n}\n\n.RatingRadioGroup__star {\n cursor: pointer;\n}\n\n.RatingRadioGroup .RatingRadioGroup__legend {\n margin-bottom: 8px;\n}\n\n.RatingRadioGroup {\n all: unset;\n position: relative;\n}\n\n.RatingRadioGroup__list {\n display: flex;\n gap: 8px;\n}\n\n.RatingRadioGroup__label input[type='radio']:focus-visible + .RatingRadioGroup__star {\n outline: 2px solid #385bf8;\n outline-offset: 2px;\n border-radius: 4px;\n}\n",".section {\n @apply mb-6 box-border flex w-full cursor-default flex-col gap-6 rounded-lg border border-solid border-chekin-gray-3 bg-white px-6 py-10;\n}\n\n.section_loading {\n @apply cursor-progress;\n}\n\n.section_disabled {\n @apply pointer-events-none opacity-50;\n}\n\n.section__header {\n @apply flex flex-col gap-2;\n}\n\n.section__title {\n @apply flex max-w-[85%] items-center text-lg font-bold text-chekin-navy md:max-w-full;\n}\n\n.section__titleTooltip {\n @apply ml-2.5;\n}\n\n.section__titleLink {\n @apply ml-6 text-sm font-semibold text-chekin-blue no-underline hover:opacity-70 active:opacity-100;\n}\n\n.section__subtitleWrapper {\n @apply w-full max-w-[720px] md:max-w-full;\n}\n\n.section__subtitle {\n @apply inline text-base font-normal text-chekin-gray-1;\n}\n\n.section__subtitleTooltip {\n @apply ml-1.5 inline-block align-text-top;\n}\n\n.section__loader {\n @apply mx-auto mb-3 mt-2.5;\n}\n\n.section_sub {\n @apply m-0 box-border rounded-none border-none bg-transparent p-0;\n}\n\n.section_sub .section__title {\n @apply text-base font-semibold;\n}\n\n.section_sub .section__titleLarge {\n @apply text-lg font-bold;\n}\n\n.section_dividing {\n border: none;\n border-top: 1px solid var(--hr-line-color, #f1f1f1);\n padding-top: var(--section-gap, 24px);\n}\n",".styledButton {\n box-sizing: border-box;\n display: flex;\n align-items: center;\n min-width: 117px;\n height: 48px;\n padding: 0 16px;\n border: 1px solid #cecede;\n border-radius: 6px;\n background-color: #f2f2fa;\n color: #9696b9;\n cursor: pointer;\n font-size: 15px;\n font-weight: 600;\n outline: none;\n text-align: left;\n user-select: none;\n transition: all 75ms ease-in-out;\n}\n\n.styledButton input {\n position: absolute;\n width: 0;\n height: 0;\n opacity: 0;\n cursor: pointer;\n}\n\n.styledButton.disabled {\n cursor: not-allowed;\n opacity: 0.3;\n}\n\n.styledButton.loading {\n cursor: progress;\n}\n\n.styledButton:not(.disabled):hover {\n border-color: #385bf8;\n}\n\n.styledButton:not(.disabled):active {\n opacity: 1;\n}\n\n.styledButton.readOnly {\n cursor: default;\n}\n\n.styledButton.readOnly:not(.active):hover {\n border-color: transparent;\n}\n\n.styledButton.active {\n border-color: #385bf8;\n background: white;\n color: #385bf8;\n}\n\n.content {\n display: flex;\n align-items: center;\n height: 100%;\n}\n",".selectorsWrapperTab {\n @apply box-border flex h-auto max-h-none w-fit flex-wrap items-center rounded-md border border-chekin-gray-3;\n background: var(--field-empty-bq-color, #f4f6f8) 0 0 no-repeat padding-box;\n}\n\n.selectorsWrapperDefault {\n @apply flex w-full flex-wrap;\n margin-bottom: -10px;\n}\n\n.selectorsWrapperDefault .selectorButton {\n @apply mb-[10px] mr-[10px];\n}\n\n.selectorButton {\n @apply box-border whitespace-nowrap border border-transparent bg-transparent text-[15px] font-medium;\n color: var(--text-dark-grey, #6b6b95);\n min-width: auto;\n box-shadow: none;\n padding: 8px 21px;\n margin: 2px;\n min-height: 36px;\n transition-duration: 0s;\n flex: 1;\n}\n\n.selectorButton > div {\n @apply mx-auto my-0;\n}\n\n.selectorButton:not(.active):hover {\n @apply border-transparent text-white;\n background: var(--chekin-blue);\n opacity: 0.35;\n}\n\n.selectorButton.active {\n @apply cursor-default font-semibold text-white;\n background: var(--chekin-blue);\n box-shadow: 0 3px 4px var(--box-shadow-color, #00020334);\n border-color: var(--chekin-blue);\n}\n\n.selectorButton.active:hover {\n @apply opacity-100;\n box-shadow: 0 3px 4px var(--box-shadow-color, #00020334);\n}\n\n.selectorButton.readOnly:not(.active) {\n @apply cursor-default;\n color: var(--text-dark-grey, #6b6b95);\n}\n\n.selectorButton.readOnly:not(.active):hover {\n background: initial;\n color: var(--text-dark-grey, #6b6b95);\n}\n\n.selectorButton.sizeSm {\n @apply py-[7px] text-[14px] font-medium leading-6;\n}\n\n.selectorButton.active.sizeSm {\n @apply py-[7px] text-[14px] font-bold leading-6;\n}\n\n.labelWrapper {\n @apply flex;\n}\n\n.labelWrapper span {\n @apply ml-[5px];\n}\n\n.name {\n @apply box-border select-none overflow-x-hidden whitespace-nowrap text-left font-normal text-chekin-navy;\n font-size: 16px;\n min-height: 20px;\n margin-bottom: 6px;\n text-overflow: ellipsis;\n}\n",".TaskCard {\n @apply relative box-border flex min-h-[48px] min-w-[360px] items-center gap-4 overflow-hidden rounded-lg p-2 transition-colors duration-200;\n}\n\n.TaskCard--error {\n @apply bg-red-50;\n}\n\n.TaskCard--warning {\n @apply bg-amber-50;\n}\n\n.TaskCard--clickable {\n @apply cursor-pointer;\n}\n\n.TaskCard--clickable:hover::before {\n @apply pointer-events-none absolute inset-0 rounded-lg content-[''];\n}\n\n.TaskCard--error.TaskCard--clickable:hover::before {\n @apply bg-red-100 mix-blend-multiply;\n}\n\n.TaskCard--warning.TaskCard--clickable:hover::before {\n @apply bg-amber-100 mix-blend-multiply;\n}\n\n.TaskCard__indicator {\n @apply relative w-1 flex-shrink-0 self-stretch rounded-sm;\n}\n\n.TaskCard--error .TaskCard__indicator {\n @apply bg-chekin-red;\n}\n\n.TaskCard--warning .TaskCard__indicator {\n @apply bg-amber-500;\n}\n\n.TaskCard__content {\n @apply flex min-w-0 flex-1 flex-col items-start;\n}\n\n.TaskCard__title {\n @apply m-0 w-full break-words text-base font-semibold leading-6 text-chekin-navy;\n}\n\n.TaskCard__date {\n @apply m-0 w-full text-sm font-medium leading-6 text-chekin-gray-1;\n}\n\n.TaskCard__actions {\n @apply flex flex-shrink-0 items-center gap-1;\n}\n\n.TaskCard__count {\n @apply relative flex h-6 w-6 items-center justify-center rounded-full text-center text-sm font-semibold leading-6;\n}\n\n.TaskCard__count::before {\n @apply absolute inset-0 rounded-full mix-blend-multiply content-[''];\n}\n\n.TaskCard__count--error {\n @apply text-chekin-red;\n}\n\n.TaskCard__count--error::before {\n @apply bg-red-100;\n}\n\n.TaskCard__count--warning {\n @apply text-amber-700;\n}\n\n.TaskCard__count--warning::before {\n @apply bg-amber-100;\n}\n\n.TaskCard__arrowButton {\n @apply flex h-8 w-0 min-w-0 cursor-pointer items-center justify-center overflow-hidden rounded-md border-0 bg-transparent p-0 text-chekin-gray-1 opacity-0;\n transition:\n width 0.3s ease-in-out,\n opacity 0.3s ease-in-out,\n min-width 0.3s ease-in-out;\n}\n\n.TaskCard--clickable:hover .TaskCard__arrowButton {\n @apply w-8 min-w-8 opacity-100;\n}\n\n.TaskCard__arrowButton:hover {\n @apply bg-black/5;\n}\n\n.TaskCard__arrowButton:focus-visible {\n @apply w-8 min-w-8 opacity-100 outline outline-2 outline-offset-2 outline-chekin-blue;\n}\n",".root {\n --text-field-height: 2.75rem;\n --text-field-radius: 8px;\n --text-field-padding-x: 0.875rem;\n --text-field-padding-y: 0.625rem;\n --text-field-bg-empty: #f4f6f8;\n --text-field-bg-filled: #ffffff;\n --text-field-border-empty: rgba(22, 22, 67, 0.2);\n --text-field-border-filled: #161643;\n --text-field-border-error: #ff2467;\n --text-field-text: #161643;\n --text-field-placeholder: #6b6b95;\n --text-field-label: #161643;\n --text-field-supporting: #9696b9;\n --text-field-error: #ff2467;\n --text-field-focus-ring: rgba(56, 91, 248, 0.2);\n}\n",".container {\n position: relative;\n}\n\n.label {\n pointer-events: none;\n position: absolute;\n left: 0.75rem;\n top: 1rem;\n padding: 0 0.25rem;\n color: #6b6b95;\n transition: all 0.1s ease;\n}\n\n.container textarea:focus + .label,\n.container textarea:not(:placeholder-shown) + .label {\n top: -0.6rem;\n left: 0.5rem;\n background-color: white;\n font-size: 14px;\n font-weight: 500;\n}\n\n.container textarea:focus + .label {\n color: #385bf8;\n}\n\n.labelError {\n color: #ff2467;\n}\n\n.labelDisabled {\n color: #9696b9;\n}\n\n.textarea {\n box-sizing: border-box;\n min-height: 120px;\n width: 100%;\n resize: none;\n border: 1px solid #cecede;\n border-radius: 8px;\n background: #f4f6f8;\n padding: 12px 16px;\n color: #161643;\n font: inherit;\n outline: none;\n scrollbar-color: #777e91 transparent;\n scrollbar-gutter: stable;\n}\n\n.textarea:focus,\n.textarea:not(:placeholder-shown) {\n background-color: white;\n}\n\n.textarea::placeholder {\n color: #6b6b95;\n opacity: 1;\n}\n\n.textarea:focus {\n border-color: #385bf8;\n transition: background-color 0.1s ease-in-out;\n}\n\n.textareaError,\n.textareaError:focus {\n border-color: #ff2467;\n}\n\n.textareaDisabled {\n cursor: not-allowed;\n resize: none;\n border-color: #9696b9;\n background-color: #f4f6f8;\n color: #9696b9;\n}\n\n.textareaDisabled::placeholder {\n color: #9696b9;\n}\n",".Loader {\n display: flex;\n align-items: center;\n justify-content: center;\n column-gap: 13px;\n}\n\n.Loader > div {\n color: #9696b9;\n font-size: 14px;\n font-weight: 700;\n opacity: 0.5;\n text-transform: uppercase;\n}\n\n.dots {\n display: inline-flex;\n align-items: center;\n justify-content: center;\n gap: 15%;\n}\n\n.dot {\n width: 22%;\n height: 22%;\n border-radius: 9999px;\n animation: three-dots 1.1s infinite ease-in-out both;\n}\n\n.dot:nth-child(1) {\n animation-delay: -0.32s;\n}\n\n.dot:nth-child(2) {\n animation-delay: -0.16s;\n}\n\n@keyframes three-dots {\n 0%,\n 80%,\n 100% {\n transform: scale(0);\n }\n\n 40% {\n transform: scale(1);\n }\n}\n"],"mappings":"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","names":[]}
|
|
1
|
+
{"version":3,"sources":["../src/accordion/Accordion.module.css","../src/alert-box/AlertBox.module.css","../src/audio-player/AudioPlayer.module.css","../src/avatar/Avatar.module.css","../src/beta-badge/BetaBadge.module.css","../src/box-option-selector/BoxOptionSelector.module.css","../src/error-message/styles.module.css","../src/loading-bar/styles.module.css","../src/form-box/FormBox.module.css","../src/free-text-field/styles.module.css","../src/metric-card/MetricCard.module.css","../src/modal/styles.module.css","../src/radio/styles.module.css","../src/rating-radio-group/styles.module.css","../src/section/Section.module.css","../src/selector-button/styles.module.css","../src/selectors/styles.module.css","../src/task-card/TaskCard.module.css","../src/text-field/textField.module.css","../src/textarea/styles.module.css","../src/three-dots-loader/styles.module.css"],"sourcesContent":[".accordion__item {\n @apply transition-colors duration-200 ease-in-out;\n background: var(--accordion-item-bg);\n border-color: var(--accordion-item-border);\n border-radius: var(--accordion-item-radius);\n border-style: solid;\n border-width: 1px;\n border-top-color: var(--accordion-item-divider);\n box-shadow: 0 0 10px 0 rgba(143, 143, 143, 0.2);\n}\n\n:root[data-surface='guest'] .accordion__item {\n border-width: 0;\n border-top-width: 1px;\n box-shadow: none;\n}\n\n:root[data-surface='guest'] .accordion__item:first-child {\n border-top-width: 0;\n}\n\n.accordion__item[data-state='open'] {\n background: var(--accordion-item-open-bg);\n}\n\n.accordion__item[data-state='closed'] {\n background: var(--accordion-item-bg);\n}\n\n.accordion__item[data-state='closed']:hover {\n background: var(--accordion-item-hover-bg);\n}\n\n.accordion__trigger {\n @apply flex h-auto w-full flex-1 items-center justify-between text-left outline-none transition-colors duration-200;\n @apply hover:no-underline disabled:pointer-events-none;\n color: var(--accordion-trigger-color);\n font-family: var(--accordion-trigger-font-family);\n font-size: 18px;\n font-weight: var(--accordion-trigger-font-weight);\n gap: var(--accordion-trigger-gap);\n line-height: 28px;\n padding: 24px;\n}\n\n:root[data-surface='guest'] .accordion__trigger {\n font-size: 14px;\n line-height: 20px;\n padding: 16px 0;\n}\n\n@media (min-width: 479px) {\n :root[data-surface='guest'] .accordion__trigger {\n padding-bottom: 24px;\n padding-top: 24px;\n }\n}\n\n.accordion__trigger:focus-visible {\n box-shadow: var(--accordion-trigger-focus-shadow);\n}\n\n.accordion__trigger:disabled {\n opacity: var(--accordion-trigger-disabled-opacity);\n}\n\n.accordion__icon {\n color: var(--accordion-icon-color-closed);\n height: var(--accordion-icon-size);\n margin-left: auto;\n min-width: initial;\n width: 16px;\n}\n\n.accordion__trigger[data-state='open'] .accordion__icon {\n color: var(--accordion-icon-color-open);\n}\n\n:root[data-surface='guest'] .accordion__icon {\n width: 12px;\n}\n\n.accordion__icon svg {\n height: var(--accordion-icon-size);\n transition: transform 0.2s;\n width: var(--accordion-icon-size);\n}\n\n:root[data-surface='guest'] .accordion__icon svg {\n transform: rotate(270deg);\n}\n\n:root[data-surface='guest'] .accordion__trigger[data-state='open'] .accordion__icon svg {\n transform: rotate(90deg);\n}\n\n.accordion__content {\n @apply transition-all;\n @apply data-[state=closed]:animate-accordion-up;\n @apply data-[state=open]:animate-accordion-down;\n color: var(--accordion-content-color);\n font-size: var(--accordion-content-font-size);\n line-height: var(--accordion-content-line-height);\n}\n\n.accordion__content[data-state='closed'] {\n display: block;\n}\n\n:root[data-surface='guest'] .accordion__content[data-state='closed'] {\n display: none;\n}\n\n.accordion__contentItem {\n padding: 8px 24px 24px;\n}\n\n:root[data-surface='guest'] .accordion__contentItem {\n padding: 0;\n}\n",".alertBox {\n border-radius: var(--alert-box-radius);\n}\n\n.alertBox--info {\n background: var(--alert-box-info-bg);\n}\n\n.alertBox--info svg {\n color: var(--alert-box-info-icon);\n}\n\n.alertBox--warning {\n background: var(--alert-box-warning-bg);\n}\n\n.alertBox--warning svg {\n color: var(--alert-box-warning-icon);\n}\n\n.alertBox--success {\n background: var(--alert-box-success-bg);\n color: var(--alert-box-success-text);\n}\n\n.alertBox--success svg {\n color: var(--alert-box-success-icon);\n}\n\n.alertBox--error {\n background: var(--alert-box-error-bg);\n}\n\n.alertBox--error svg {\n color: var(--alert-box-error-icon);\n}\n",".playButton {\n background: var(--audio-player-button-bg);\n border-radius: var(--audio-player-button-radius);\n}\n\n.playButton:hover {\n background: var(--audio-player-button-hover-bg);\n}\n\n.playButton svg {\n color: var(--audio-player-icon-color);\n}\n\n.track {\n background: var(--audio-player-track-bg);\n}\n\n.progress {\n background: var(--audio-player-progress-bg);\n}\n\n.time {\n color: var(--audio-player-time-color);\n}\n",".fallback {\n background: var(--avatar-fallback-bg);\n color: var(--avatar-fallback-text);\n}\n",".betaBadge {\n background: var(--beta-badge-bg);\n color: var(--beta-badge-text);\n}\n\n.betaBadge--readonly {\n background: var(--beta-badge-readonly-bg);\n color: var(--beta-badge-readonly-text);\n}\n",".boxOption {\n border-color: var(--box-option-border);\n background: var(--box-option-bg);\n}\n\n.boxOption:hover {\n background: var(--box-option-hover-bg);\n}\n\n.boxOption--selected {\n border-color: var(--box-option-selected-border);\n background: var(--box-option-selected-bg);\n}\n\n.boxOption--selected:hover {\n background: var(--box-option-selected-bg);\n}\n",".ErrorMessage {\n @apply mt-0.5 text-left text-sm font-medium text-chekin-red;\n}\n\n.ErrorMessage__disabled {\n opacity: 0.3;\n}\n",".bar {\n animation: loading-bar 0.9s linear infinite;\n}\n\n@keyframes loading-bar {\n 0% {\n left: -43%;\n width: 43%;\n }\n\n 70% {\n left: 42%;\n width: 58%;\n }\n\n 100% {\n left: 100%;\n width: 58%;\n }\n}\n",".wrapper {\n display: flex;\n max-width: 1400px;\n padding: 24px;\n flex-direction: column;\n align-items: flex-start;\n gap: 24px;\n align-self: stretch;\n border: 1px solid #cecede;\n border-radius: 10px;\n container-type: inline-size;\n}\n\n.wrapperNested {\n border: initial;\n padding: 0;\n}\n\n.header {\n display: flex;\n margin: 0;\n padding: 0;\n align-items: center;\n gap: 8px;\n align-self: stretch;\n color: #161643;\n font-size: 24px;\n font-style: normal;\n font-weight: 600;\n line-height: normal;\n}\n\n.subHeader {\n display: flex;\n margin: 0;\n padding: 8px 0;\n align-items: center;\n gap: 8px;\n align-self: stretch;\n border-bottom: 1px solid #cecede;\n color: #161643;\n font-size: 16px;\n font-style: normal;\n font-weight: 600;\n line-height: normal;\n}\n\n.content {\n display: flex;\n align-items: flex-start;\n align-content: flex-start;\n gap: 16px;\n align-self: stretch;\n flex-wrap: wrap;\n}\n",".container {\n position: relative;\n display: flex;\n flex-direction: column;\n gap: 4px;\n width: 300px;\n}\n\n.labelRow {\n display: flex;\n gap: 4px;\n align-items: center;\n}\n\n.labelText,\n.optionalText {\n font-size: 16px;\n line-height: 16px;\n color: #161643;\n}\n\n.labelText {\n font-weight: 500;\n}\n\n.optionalText em {\n color: #9696b9;\n}\n\n.tooltip {\n width: 16px;\n height: 16px;\n flex-shrink: 0;\n}\n\n.fieldBox {\n position: relative;\n display: flex;\n align-items: center;\n gap: 10px;\n height: 44px;\n padding: 10px 14px;\n border: 1px solid;\n border-radius: 8px;\n transition:\n border-color 0.15s ease,\n background-color 0.15s ease;\n}\n\n.fieldBoxEmpty {\n background-color: #f4f6f8;\n border-color: rgba(22, 22, 67, 0.2);\n}\n\n.fieldBoxFilled {\n background-color: white;\n border-color: #161643;\n}\n\n.fieldBoxErrorWrong {\n background-color: white;\n border-color: #ff2467;\n}\n\n.fieldBoxAutocompleted {\n background-color: #eff6ff;\n border-color: #161643;\n}\n\n.fieldBoxFocused {\n border-color: #385bf8;\n}\n\n.input {\n flex: 1 0 0;\n min-width: 0;\n min-height: 1px;\n padding: 0;\n border: none;\n background: transparent;\n color: #161643;\n font: inherit;\n font-size: 16px;\n font-weight: 500;\n line-height: 20px;\n outline: none;\n}\n\n.input::placeholder {\n color: #6b6b95;\n font-weight: 500;\n}\n\n.icon {\n display: flex;\n flex-shrink: 0;\n align-items: center;\n justify-content: center;\n width: 24px;\n height: 24px;\n}\n\n.supportingText {\n margin: 0;\n color: #9696b9;\n font-size: 12px;\n font-style: italic;\n line-height: normal;\n}\n\n.errorText {\n margin: 0;\n color: #ff2467;\n font-size: 12px;\n font-weight: 500;\n line-height: 16px;\n text-align: right;\n}\n\n.floatingLabel {\n position: absolute;\n top: -8px;\n left: 13px;\n display: flex;\n align-items: center;\n height: 16px;\n padding: 0 3px;\n background: linear-gradient(to bottom, transparent 50%, white 50%);\n pointer-events: none;\n}\n\n.floatingLabelAutocompleted {\n background: linear-gradient(to bottom, rgb(239 246 255 / 0%) 50%, #eff6ff 50%);\n}\n\n.floatingLabelText {\n color: #6b6b95;\n font-size: 14px;\n font-weight: 500;\n line-height: 24px;\n white-space: nowrap;\n}\n\n.floatingLabelTextError {\n color: #ff2467;\n}\n",".MetricCard {\n @apply flex w-full min-w-52 gap-2 rounded-lg border border-chekin-gray-3 p-4;\n}\n\n.MetricCard--loading {\n @apply cursor-progress opacity-60;\n}\n\n.MetricCard__iconContainer {\n @apply flex h-6 w-6 shrink-0 items-center justify-center rounded-full mix-blend-multiply;\n}\n\n.MetricCard__content {\n @apply flex flex-1 flex-col gap-4;\n}\n\n.MetricCard__header {\n @apply flex items-center gap-1;\n}\n\n.MetricCard__title {\n @apply whitespace-nowrap text-base font-medium leading-6 text-chekin-navy;\n}\n\n.MetricCard__tooltip {\n @apply text-chekin-gray-1;\n}\n\n.MetricCard__footer {\n @apply flex items-center justify-between gap-2;\n}\n\n.MetricCard__value {\n @apply text-2xl font-bold leading-6;\n}\n\n.MetricCard--blue {\n color: #385cf8;\n background: linear-gradient(122deg, #e6f0ff 36.37%, #f6f9ff 86.4%);\n}\n\n.MetricCard--blue .MetricCard__iconContainer {\n background: #dbeafe;\n}\n\n.MetricCard--green {\n color: #2bc29f;\n background: linear-gradient(122deg, #ddfbf4 36.37%, #f5fefc 86.4%);\n}\n\n.MetricCard--green .MetricCard__iconContainer {\n background: #cff9ef;\n}\n\n.MetricCard--orange {\n color: #f5721a;\n background: linear-gradient(122deg, #ffeddc 36.37%, #fffaf5 86.4%);\n}\n\n.MetricCard--orange .MetricCard__iconContainer {\n background: #ffe5cd;\n}\n\n.MetricCard--purple {\n color: #9a51ff;\n background: linear-gradient(122deg, #f5edff 36.37%, #fcfaff 86.4%);\n}\n\n.MetricCard--purple .MetricCard__iconContainer {\n background: #f0e5ff;\n}\n\n.MetricCard--yellow {\n color: #ce8b0b;\n background: linear-gradient(122deg, #fff8e5 36.37%, #fffbef 86.4%);\n}\n\n.MetricCard--yellow .MetricCard__iconContainer {\n background: #ffeeb2;\n}\n\n.MetricCard__percentage {\n @apply inline-flex items-center gap-x-1 text-base font-semibold leading-6 text-emerald-600;\n}\n\n.MetricCard__percentage.--negative {\n @apply text-chekin-red;\n}\n",".modal__content {\n @apply flex h-auto min-w-[340px] flex-col items-center gap-y-6 rounded-md bg-white text-center;\n color: var(--chekin-navy);\n}\n\n.modal__close {\n @apply absolute right-4 top-4 z-10 rounded-full p-1 hover:bg-[#f4f6f8];\n color: var(--chekin-blue);\n}\n\n.modal__icon {\n @apply mx-auto mt-4;\n user-select: none;\n}\n\n.modal__title {\n @apply px-6 text-lg font-bold;\n}\n\n.modal__text {\n @apply text-base;\n}\n\n.modal__buttonsWrapper {\n @apply mb-2 mt-6 flex flex-col items-center justify-center gap-y-4;\n}\n\n.modal__button {\n @apply min-w-[210px];\n}\n",".radio__wrapper {\n @apply flex cursor-pointer items-center gap-2;\n}\n\n.radio__wrapper_disabled {\n @apply cursor-default opacity-50 peer-disabled:cursor-not-allowed peer-disabled:opacity-70;\n}\n",".RatingRadioGroup__input {\n position: absolute;\n width: 0;\n height: 0;\n opacity: 0;\n}\n\n.RatingRadioGroup__star {\n cursor: pointer;\n}\n\n.RatingRadioGroup .RatingRadioGroup__legend {\n margin-bottom: 8px;\n}\n\n.RatingRadioGroup {\n all: unset;\n position: relative;\n}\n\n.RatingRadioGroup__list {\n display: flex;\n gap: 8px;\n}\n\n.RatingRadioGroup__label input[type='radio']:focus-visible + .RatingRadioGroup__star {\n outline: 2px solid #385bf8;\n outline-offset: 2px;\n border-radius: 4px;\n}\n",".section {\n @apply mb-6 box-border flex w-full cursor-default flex-col gap-6 rounded-lg border border-solid border-chekin-gray-3 bg-white px-6 py-10;\n}\n\n.section_loading {\n @apply cursor-progress;\n}\n\n.section_disabled {\n @apply pointer-events-none opacity-50;\n}\n\n.section__header {\n @apply flex flex-col gap-2;\n}\n\n.section__title {\n @apply flex max-w-[85%] items-center text-lg font-bold text-chekin-navy md:max-w-full;\n}\n\n.section__titleTooltip {\n @apply ml-2.5;\n}\n\n.section__titleLink {\n @apply ml-6 text-sm font-semibold text-chekin-blue no-underline hover:opacity-70 active:opacity-100;\n}\n\n.section__subtitleWrapper {\n @apply w-full max-w-[720px] md:max-w-full;\n}\n\n.section__subtitle {\n @apply inline text-base font-normal text-chekin-gray-1;\n}\n\n.section__subtitleTooltip {\n @apply ml-1.5 inline-block align-text-top;\n}\n\n.section__loader {\n @apply mx-auto mb-3 mt-2.5;\n}\n\n.section_sub {\n @apply m-0 box-border rounded-none border-none bg-transparent p-0;\n}\n\n.section_sub .section__title {\n @apply text-base font-semibold;\n}\n\n.section_sub .section__titleLarge {\n @apply text-lg font-bold;\n}\n\n.section_dividing {\n border: none;\n border-top: 1px solid var(--hr-line-color, #f1f1f1);\n padding-top: var(--section-gap, 24px);\n}\n",".styledButton {\n box-sizing: border-box;\n display: flex;\n align-items: center;\n min-width: 117px;\n height: 48px;\n padding: 0 16px;\n border: 1px solid #cecede;\n border-radius: 6px;\n background-color: #f2f2fa;\n color: #9696b9;\n cursor: pointer;\n font-size: 15px;\n font-weight: 600;\n outline: none;\n text-align: left;\n user-select: none;\n transition: all 75ms ease-in-out;\n}\n\n.styledButton input {\n position: absolute;\n width: 0;\n height: 0;\n opacity: 0;\n cursor: pointer;\n}\n\n.styledButton.disabled {\n cursor: not-allowed;\n opacity: 0.3;\n}\n\n.styledButton.loading {\n cursor: progress;\n}\n\n.styledButton:not(.disabled):hover {\n border-color: #385bf8;\n}\n\n.styledButton:not(.disabled):active {\n opacity: 1;\n}\n\n.styledButton.readOnly {\n cursor: default;\n}\n\n.styledButton.readOnly:not(.active):hover {\n border-color: transparent;\n}\n\n.styledButton.active {\n border-color: #385bf8;\n background: white;\n color: #385bf8;\n}\n\n.content {\n display: flex;\n align-items: center;\n height: 100%;\n}\n",".selectorsWrapperTab {\n @apply box-border flex h-auto max-h-none w-fit flex-wrap items-center rounded-md border border-chekin-gray-3;\n background: var(--field-empty-bq-color, #f4f6f8) 0 0 no-repeat padding-box;\n}\n\n.selectorsWrapperDefault {\n @apply flex w-full flex-wrap;\n margin-bottom: -10px;\n}\n\n.selectorsWrapperDefault .selectorButton {\n @apply mb-[10px] mr-[10px];\n}\n\n.selectorButton {\n @apply box-border whitespace-nowrap border border-transparent bg-transparent text-[15px] font-medium;\n color: var(--text-dark-grey, #6b6b95);\n min-width: auto;\n box-shadow: none;\n padding: 8px 21px;\n margin: 2px;\n min-height: 36px;\n transition-duration: 0s;\n flex: 1;\n}\n\n.selectorButton > div {\n @apply mx-auto my-0;\n}\n\n.selectorButton:not(.active):hover {\n @apply border-transparent text-white;\n background: var(--chekin-blue);\n opacity: 0.35;\n}\n\n.selectorButton.active {\n @apply cursor-default font-semibold text-white;\n background: var(--chekin-blue);\n box-shadow: 0 3px 4px var(--box-shadow-color, #00020334);\n border-color: var(--chekin-blue);\n}\n\n.selectorButton.active:hover {\n @apply opacity-100;\n box-shadow: 0 3px 4px var(--box-shadow-color, #00020334);\n}\n\n.selectorButton.readOnly:not(.active) {\n @apply cursor-default;\n color: var(--text-dark-grey, #6b6b95);\n}\n\n.selectorButton.readOnly:not(.active):hover {\n background: initial;\n color: var(--text-dark-grey, #6b6b95);\n}\n\n.selectorButton.sizeSm {\n @apply py-[7px] text-[14px] font-medium leading-6;\n}\n\n.selectorButton.active.sizeSm {\n @apply py-[7px] text-[14px] font-bold leading-6;\n}\n\n.labelWrapper {\n @apply flex;\n}\n\n.labelWrapper span {\n @apply ml-[5px];\n}\n\n.name {\n @apply box-border select-none overflow-x-hidden whitespace-nowrap text-left font-normal text-chekin-navy;\n font-size: 16px;\n min-height: 20px;\n margin-bottom: 6px;\n text-overflow: ellipsis;\n}\n",".TaskCard {\n @apply relative box-border flex min-h-[48px] min-w-[360px] items-center gap-4 overflow-hidden rounded-lg p-2 transition-colors duration-200;\n}\n\n.TaskCard--error {\n @apply bg-red-50;\n}\n\n.TaskCard--warning {\n @apply bg-amber-50;\n}\n\n.TaskCard--clickable {\n @apply cursor-pointer;\n}\n\n.TaskCard--clickable:hover::before {\n @apply pointer-events-none absolute inset-0 rounded-lg content-[''];\n}\n\n.TaskCard--error.TaskCard--clickable:hover::before {\n @apply bg-red-100 mix-blend-multiply;\n}\n\n.TaskCard--warning.TaskCard--clickable:hover::before {\n @apply bg-amber-100 mix-blend-multiply;\n}\n\n.TaskCard__indicator {\n @apply relative w-1 flex-shrink-0 self-stretch rounded-sm;\n}\n\n.TaskCard--error .TaskCard__indicator {\n @apply bg-chekin-red;\n}\n\n.TaskCard--warning .TaskCard__indicator {\n @apply bg-amber-500;\n}\n\n.TaskCard__content {\n @apply flex min-w-0 flex-1 flex-col items-start;\n}\n\n.TaskCard__title {\n @apply m-0 w-full break-words text-base font-semibold leading-6 text-chekin-navy;\n}\n\n.TaskCard__date {\n @apply m-0 w-full text-sm font-medium leading-6 text-chekin-gray-1;\n}\n\n.TaskCard__actions {\n @apply flex flex-shrink-0 items-center gap-1;\n}\n\n.TaskCard__count {\n @apply relative flex h-6 w-6 items-center justify-center rounded-full text-center text-sm font-semibold leading-6;\n}\n\n.TaskCard__count::before {\n @apply absolute inset-0 rounded-full mix-blend-multiply content-[''];\n}\n\n.TaskCard__count--error {\n @apply text-chekin-red;\n}\n\n.TaskCard__count--error::before {\n @apply bg-red-100;\n}\n\n.TaskCard__count--warning {\n @apply text-amber-700;\n}\n\n.TaskCard__count--warning::before {\n @apply bg-amber-100;\n}\n\n.TaskCard__arrowButton {\n @apply flex h-8 w-0 min-w-0 cursor-pointer items-center justify-center overflow-hidden rounded-md border-0 bg-transparent p-0 text-chekin-gray-1 opacity-0;\n transition:\n width 0.3s ease-in-out,\n opacity 0.3s ease-in-out,\n min-width 0.3s ease-in-out;\n}\n\n.TaskCard--clickable:hover .TaskCard__arrowButton {\n @apply w-8 min-w-8 opacity-100;\n}\n\n.TaskCard__arrowButton:hover {\n @apply bg-black/5;\n}\n\n.TaskCard__arrowButton:focus-visible {\n @apply w-8 min-w-8 opacity-100 outline outline-2 outline-offset-2 outline-chekin-blue;\n}\n",".root {\n --text-field-height: 2.75rem;\n --text-field-radius: 8px;\n --text-field-padding-x: 0.875rem;\n --text-field-padding-y: 0.625rem;\n --text-field-bg-empty: #f4f6f8;\n --text-field-bg-filled: #ffffff;\n --text-field-border-empty: rgba(22, 22, 67, 0.2);\n --text-field-border-filled: #161643;\n --text-field-border-error: #ff2467;\n --text-field-text: #161643;\n --text-field-placeholder: #6b6b95;\n --text-field-label: #161643;\n --text-field-supporting: #9696b9;\n --text-field-error: #ff2467;\n --text-field-focus-ring: rgba(56, 91, 248, 0.2);\n}\n",".container {\n position: relative;\n}\n\n.label {\n pointer-events: none;\n position: absolute;\n left: 0.75rem;\n top: 1rem;\n padding: 0 0.25rem;\n color: #6b6b95;\n transition: all 0.1s ease;\n}\n\n.container textarea:focus + .label,\n.container textarea:not(:placeholder-shown) + .label {\n top: -0.6rem;\n left: 0.5rem;\n background-color: white;\n font-size: 14px;\n font-weight: 500;\n}\n\n.container textarea:focus + .label {\n color: #385bf8;\n}\n\n.labelError {\n color: #ff2467;\n}\n\n.labelDisabled {\n color: #9696b9;\n}\n\n.textarea {\n box-sizing: border-box;\n min-height: 120px;\n width: 100%;\n resize: none;\n border: 1px solid #cecede;\n border-radius: 8px;\n background: #f4f6f8;\n padding: 12px 16px;\n color: #161643;\n font: inherit;\n outline: none;\n scrollbar-color: #777e91 transparent;\n scrollbar-gutter: stable;\n}\n\n.textarea:focus,\n.textarea:not(:placeholder-shown) {\n background-color: white;\n}\n\n.textarea::placeholder {\n color: #6b6b95;\n opacity: 1;\n}\n\n.textarea:focus {\n border-color: #385bf8;\n transition: background-color 0.1s ease-in-out;\n}\n\n.textareaError,\n.textareaError:focus {\n border-color: #ff2467;\n}\n\n.textareaDisabled {\n cursor: not-allowed;\n resize: none;\n border-color: #9696b9;\n background-color: #f4f6f8;\n color: #9696b9;\n}\n\n.textareaDisabled::placeholder {\n color: #9696b9;\n}\n",".Loader {\n display: flex;\n align-items: center;\n justify-content: center;\n column-gap: 13px;\n}\n\n.Loader > div {\n color: #9696b9;\n font-size: 14px;\n font-weight: 700;\n opacity: 0.5;\n text-transform: uppercase;\n}\n\n.dots {\n display: inline-flex;\n align-items: center;\n justify-content: center;\n gap: 15%;\n}\n\n.dot {\n width: 22%;\n height: 22%;\n border-radius: 9999px;\n animation: three-dots 1.1s infinite ease-in-out both;\n}\n\n.dot:nth-child(1) {\n animation-delay: -0.32s;\n}\n\n.dot:nth-child(2) {\n animation-delay: -0.16s;\n}\n\n@keyframes three-dots {\n 0%,\n 80%,\n 100% {\n transform: scale(0);\n }\n\n 40% {\n transform: scale(1);\n }\n}\n"],"mappings":"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","names":[]}
|
package/dist/index.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React$1 from 'react';
|
|
2
|
-
import React__default, { ReactNode, ElementType, InputHTMLAttributes, ComponentProps, PropsWithChildren, MouseEvent, SVGProps, FC, ImgHTMLAttributes, ComponentType, AnchorHTMLAttributes, ForwardedRef, ButtonHTMLAttributes, HTMLAttributes, TdHTMLAttributes, ThHTMLAttributes, ComponentPropsWithoutRef, ReactElement, TextareaHTMLAttributes, FocusEventHandler } from 'react';
|
|
2
|
+
import React__default, { ReactNode, ElementType, InputHTMLAttributes, ComponentProps, PropsWithChildren, MouseEvent, SVGProps, FC, ImgHTMLAttributes, ComponentType, AnchorHTMLAttributes, ForwardedRef, ButtonHTMLAttributes, HTMLAttributes, TdHTMLAttributes, ThHTMLAttributes, ComponentPropsWithoutRef, ReactElement, TextareaHTMLAttributes, FocusEventHandler, Ref, RefCallback, RefObject } from 'react';
|
|
3
3
|
import * as AccordionPrimitive from '@radix-ui/react-accordion';
|
|
4
4
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
5
5
|
import * as AvatarPrimitive from '@radix-ui/react-avatar';
|
|
@@ -2526,6 +2526,77 @@ type SearchableSelectProps<T = undefined, V extends SearchableSelectValue = stri
|
|
|
2526
2526
|
type SearchableSelectComponent = <T = undefined, V extends SearchableSelectValue = string, L extends ReactNode = string>(props: SearchableSelectProps<T, V, L> & React$1.RefAttributes<HTMLButtonElement>) => React$1.ReactElement | null;
|
|
2527
2527
|
declare const SearchableSelect: SearchableSelectComponent;
|
|
2528
2528
|
|
|
2529
|
+
declare function useScrollToTop(): void;
|
|
2530
|
+
|
|
2531
|
+
declare function useAbortController(): {
|
|
2532
|
+
abortController: AbortController;
|
|
2533
|
+
setupAbortController: () => AbortSignal;
|
|
2534
|
+
};
|
|
2535
|
+
|
|
2536
|
+
type UseClickEscapeProps = {
|
|
2537
|
+
enabled?: boolean;
|
|
2538
|
+
onClick?: () => void;
|
|
2539
|
+
};
|
|
2540
|
+
declare function useClickEscape({ enabled, onClick }: UseClickEscapeProps): void;
|
|
2541
|
+
|
|
2542
|
+
declare function useCombinedRef<T>(...refs: Array<Ref<T> | undefined>): RefCallback<T>;
|
|
2543
|
+
|
|
2544
|
+
declare function useEvent<Args extends unknown[], Return>(fn?: (...args: Args) => Return): NonNullable<typeof fn>;
|
|
2545
|
+
|
|
2546
|
+
type UseIsMobileProps = {
|
|
2547
|
+
breakpoint?: number;
|
|
2548
|
+
};
|
|
2549
|
+
declare function useIsMobile({ breakpoint }?: UseIsMobileProps): boolean;
|
|
2550
|
+
|
|
2551
|
+
declare function useIsMounted(): React$1.MutableRefObject<boolean>;
|
|
2552
|
+
|
|
2553
|
+
declare function useModalControls(initState?: boolean, { disabled }?: {
|
|
2554
|
+
disabled?: boolean;
|
|
2555
|
+
}): {
|
|
2556
|
+
isOpen: boolean;
|
|
2557
|
+
openModal: () => void;
|
|
2558
|
+
closeModal: () => void;
|
|
2559
|
+
toggleModal: () => void;
|
|
2560
|
+
setIsOpen: React$1.Dispatch<React$1.SetStateAction<boolean>>;
|
|
2561
|
+
};
|
|
2562
|
+
|
|
2563
|
+
declare function useOutsideClick<T extends Element>(elementRef: RefObject<T> | null, onOutsideClick: ((event: Event) => void) | null, nested?: string[] | string): void;
|
|
2564
|
+
|
|
2565
|
+
declare function useScreenResize(maxWidth: string): {
|
|
2566
|
+
isMatch: boolean;
|
|
2567
|
+
isInitialized: boolean;
|
|
2568
|
+
};
|
|
2569
|
+
|
|
2570
|
+
type UseScrollFrameIntoViewOptions = {
|
|
2571
|
+
behavior?: ScrollBehavior;
|
|
2572
|
+
elementRef?: RefObject<HTMLElement | null>;
|
|
2573
|
+
};
|
|
2574
|
+
declare function useScrollFrameIntoView(active?: boolean, options?: UseScrollFrameIntoViewOptions): void;
|
|
2575
|
+
|
|
2576
|
+
declare function useDebounce<ValueType = string>(value: ValueType, delayMs?: number, handleChange?: (value: ValueType) => void): [ValueType, (value: ValueType) => void];
|
|
2577
|
+
|
|
2578
|
+
declare function usePrevious<T>(value: T, defaultValue?: T): T | undefined;
|
|
2579
|
+
|
|
2580
|
+
type Props = {
|
|
2581
|
+
seconds: number;
|
|
2582
|
+
};
|
|
2583
|
+
declare const useTimer: ({ seconds }: Props) => {
|
|
2584
|
+
timeLeft: number;
|
|
2585
|
+
isTimerRunning: boolean;
|
|
2586
|
+
resetTimer: () => void;
|
|
2587
|
+
};
|
|
2588
|
+
|
|
2589
|
+
declare function useTimeout(): {
|
|
2590
|
+
scheduleTimeout: (callback: () => void, delay: number) => void;
|
|
2591
|
+
clearTimeoutRef: () => void;
|
|
2592
|
+
};
|
|
2593
|
+
|
|
2594
|
+
declare function useHover(): {
|
|
2595
|
+
isHovering: boolean;
|
|
2596
|
+
handleMouseEnter: () => void;
|
|
2597
|
+
handleMouseLeave: () => void;
|
|
2598
|
+
};
|
|
2599
|
+
|
|
2529
2600
|
declare function cn(...inputs: ClassValue[]): string;
|
|
2530
2601
|
|
|
2531
|
-
export { Accordion, AccordionContent, type AccordionContentProps, AccordionItem, AccordionTrigger, type AccordionTriggerProps, AirbnbInput, type AirbnbInputProps, AirbnbSearchInput, AirbnbSelect, type AirbnbSelectProps, AlertBox, type AlertBoxProps, AlertSize, AlertSizes, AlertType, AlertTypes, AudioPlayer, type AudioPlayerProps, Avatar, type AvatarProps, Badge, type BadgeProps, BaseCheckbox, type BaseCheckboxProps, BetaBadge, type BetaBadgeProps, BookmarkTabsList, type BookmarkTabsListProps, BookmarkTabsTrigger, type BookmarkTabsTriggerProps, BoxOptionSelector, type BoxOptionSelectorProps, type BoxOptionSelectorSwitchProps, Breadcrumb, type BreadcrumbProps, type BreadcrumbType, Breadcrumbs, type BreadcrumbsProps, Button, ButtonGroup, type ButtonGroupProps, ButtonGroupText, type ButtonGroupTextProps, type ButtonProps, type ButtonStatuses, ButtonsGroupLabel, type ButtonsGroupLabelProps, Calendar, type CalendarProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, type ChannelOption, ChannelSelector, type ChannelSelectorProps, Checkbox, CheckboxGroup, type CheckboxGroupProps, type CheckboxOption, type CheckboxProps, CircularLoader, CommingSoonBadge, type CommingSoonBadgeProps, ConfirmationDialog, type ConfirmationDialogProps, CopyIcon, type CopyIconProps, CopyLinkButton, type CopyLinkButtonProps, type CustomIconEntry, DataTable, type DataTableProps, DatePicker, type DatePickerProps, type DatePickerValue, DefaultSelectTrigger, type DefaultSelectTriggerProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DialogVisuallyHidden, DividingSubsection, DownloadEntryFormsButton, type DownloadEntryFormsButtonProps, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownButton, type DropdownButtonProps, DropdownMenu, DropdownMenuContent, type DropdownMenuContentSide, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuSeparator, DropdownMenuTrigger, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptySectionPlaceholder, type EmptySectionPlaceholderProps, EmptyTitle, ErrorMessage, type ErrorMessageProps, ExternalLink, type ExternalLinkProps, FeatureCard, type FeatureCardProps, FieldErrorMessage, type FieldErrorMessageProps, FieldTrigger, type FieldTriggerProps, FileInputButton, type FileInputButtonProps, FormBox, Content as FormBoxContent, type FormBoxContentProps, Header as FormBoxHeader, type FormBoxHeaderProps, Root as FormBoxRoot, type FormBoxRootProps, SubHeader as FormBoxSubHeader, type FormBoxSubHeaderProps, FramedIcon, type FramedIconProps, FreeTextField, type FreeTextFieldProps, GridItems, type GridItemsProps, type GuestVerificationStatus, HALO_ICON_STATUS, HaloIcon, type HaloIconProps, HelpTooltip, type HelpTooltipProps, IVStatusBadge, type IVStatusBadgeProps, IV_BADGE_STATUS, Icon$1 as Icon, IconButton, type IconButtonProps, type IconEntry, type IconNames, type IconProps, IconRegistry, IconsDropdown, type IconsDropdownProps, Image, ImageFullScreenView, type ImageFullScreenViewProps, type ImageProps, InfoBox, type InfoBoxProps, Input, InputOTP, InputOTPGroup, type InputOTPProps, InputOTPSeparator, InputOTPSlot, type InputProps, LABEL_PLACEMENT, Label, type LabelProps, LargeModal, type LargeModalProps, LearnMoreButton, type LearnMoreButtonProps, Link, type LinkProps, Loader, type LoaderProps, LoadingBar, type LoadingBarProps, type LucideIconEntry, METRIC_CARD_VARIANTS, MetricCard, type MetricCardProps, Modal, ModalButton, ModalLoader, type ModalLoaderProps, type ModalProps, OverlayLoader, type OverlayLoaderProps, PageLoader, type PageLoaderProps, Pagination, type PaginationProps, type PaginationVariant, PhoneField, type PhoneFieldOption, type PhoneFieldProps, type PhoneFieldValue, Popover, PopoverAnchor, PopoverClose, PopoverContent, PopoverPortal, PopoverTrigger, Radio, RadioGroup, RadioGroupItem, type RadioOption, type RadioProps, RadioWithBorder, RatingProgress, type RatingProgressProps, RatingRadioGroup, type RatingRadioGroupProps, RatingStars, type RatingStarsProps, RegistryIcon, ResponsiveSheet, type ResponsiveSheetProps, RotateIcon, type RotateIconProps, ScrollArea, type ScrollAreaProps, ScrollBar, type ScrollBarProps, SearchButton, type SearchButtonProps, SearchInput, type SearchInputProps, SearchableSelect, type SearchableSelectProps, type SearchableSelectValue, Section, type SectionProps, SectionTag, SectionTagColors, type SectionTagProps, Select, SelectContent, type SelectForwardType, SelectGroup, SelectItem, SelectLabel, type SelectOption, SelectPortal, type SelectProps, SelectRoot, SelectSeparator, SelectTrigger, SelectValue$1 as SelectValue, SelectorButton, type SelectorButtonProps, type SelectorOption, Selectors, type SelectorsProps, Separator, type SeparatorProps, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarIcon, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, type SkeletonProps, SmallGridSingleItem, type SmallGridSingleItemProps, SortingAction, type SortingActionProps, type SortingActionValue, type SortingByVariant, StatusBadge, type StatusBadgeProps, type StatusBadgeVariant, StatusBox, type StatusBoxProps, StatusButton, type StatusButtonProps, Stepper, type StepperProps, SubSection, SubSectionSize, Switch, SwitchBlocks, type SwitchBlocksOption, type SwitchBlocksProps, SwitchGroup, type SwitchGroupProps, type SwitchOption, type SwitchProps, TASK_VARIANTS, TabbedSection, type TabbedSectionProps, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TablePlaceholder, type TablePlaceholderProps, TableRow, Tabs, TabsContent, TabsList, type TabsListProps, TabsTrigger, type TabsTriggerProps, TaskCard, type TaskCardProps, TextField, type TextFieldProps, Textarea, type TextareaProps, ThreeDotsLoader, type ThreeDotsLoaderProps, ToggleGroup, ToggleGroupItem, Toggles, type TogglesForwardType, type TogglesProps, Tooltip, TooltipContent, type TooltipContentProps, type TooltipProps, TooltipProvider, TooltipRoot, type TooltipRootProps, TooltipRootWrapper, TooltipTrigger, type UiKitLocale, UploadedFilesList, type UploadedFilesListProps, VideoPlayer, type VideoPlayerProps, WideButton, type WideButtonProps, badgeVariants, bookmarkTabsListVariants, bookmarkTabsTriggerVariants, buttonGroupVariants, buttonVariants, calendarClassNames, cn, emptyMediaVariants, getSidebarState, inputVariants, labelVariants, sectionTagVariants, switchThumbVariants, switchVariants, tabsListVariants, tabsTriggerVariants, toggleVariants, uiKitI18nResources, uiKitTranslations, useRadioOptions, useSidebar, useSidebarMenuButton, useSidebarSafe, useUpdateToast };
|
|
2602
|
+
export { Accordion, AccordionContent, type AccordionContentProps, AccordionItem, AccordionTrigger, type AccordionTriggerProps, AirbnbInput, type AirbnbInputProps, AirbnbSearchInput, AirbnbSelect, type AirbnbSelectProps, AlertBox, type AlertBoxProps, AlertSize, AlertSizes, AlertType, AlertTypes, AudioPlayer, type AudioPlayerProps, Avatar, type AvatarProps, Badge, type BadgeProps, BaseCheckbox, type BaseCheckboxProps, BetaBadge, type BetaBadgeProps, BookmarkTabsList, type BookmarkTabsListProps, BookmarkTabsTrigger, type BookmarkTabsTriggerProps, BoxOptionSelector, type BoxOptionSelectorProps, type BoxOptionSelectorSwitchProps, Breadcrumb, type BreadcrumbProps, type BreadcrumbType, Breadcrumbs, type BreadcrumbsProps, Button, ButtonGroup, type ButtonGroupProps, ButtonGroupText, type ButtonGroupTextProps, type ButtonProps, type ButtonStatuses, ButtonsGroupLabel, type ButtonsGroupLabelProps, Calendar, type CalendarProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, type ChannelOption, ChannelSelector, type ChannelSelectorProps, Checkbox, CheckboxGroup, type CheckboxGroupProps, type CheckboxOption, type CheckboxProps, CircularLoader, CommingSoonBadge, type CommingSoonBadgeProps, ConfirmationDialog, type ConfirmationDialogProps, CopyIcon, type CopyIconProps, CopyLinkButton, type CopyLinkButtonProps, type CustomIconEntry, DataTable, type DataTableProps, DatePicker, type DatePickerProps, type DatePickerValue, DefaultSelectTrigger, type DefaultSelectTriggerProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DialogVisuallyHidden, DividingSubsection, DownloadEntryFormsButton, type DownloadEntryFormsButtonProps, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownButton, type DropdownButtonProps, DropdownMenu, DropdownMenuContent, type DropdownMenuContentSide, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuSeparator, DropdownMenuTrigger, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptySectionPlaceholder, type EmptySectionPlaceholderProps, EmptyTitle, ErrorMessage, type ErrorMessageProps, ExternalLink, type ExternalLinkProps, FeatureCard, type FeatureCardProps, FieldErrorMessage, type FieldErrorMessageProps, FieldTrigger, type FieldTriggerProps, FileInputButton, type FileInputButtonProps, FormBox, Content as FormBoxContent, type FormBoxContentProps, Header as FormBoxHeader, type FormBoxHeaderProps, Root as FormBoxRoot, type FormBoxRootProps, SubHeader as FormBoxSubHeader, type FormBoxSubHeaderProps, FramedIcon, type FramedIconProps, FreeTextField, type FreeTextFieldProps, GridItems, type GridItemsProps, type GuestVerificationStatus, HALO_ICON_STATUS, HaloIcon, type HaloIconProps, HelpTooltip, type HelpTooltipProps, IVStatusBadge, type IVStatusBadgeProps, IV_BADGE_STATUS, Icon$1 as Icon, IconButton, type IconButtonProps, type IconEntry, type IconNames, type IconProps, IconRegistry, IconsDropdown, type IconsDropdownProps, Image, ImageFullScreenView, type ImageFullScreenViewProps, type ImageProps, InfoBox, type InfoBoxProps, Input, InputOTP, InputOTPGroup, type InputOTPProps, InputOTPSeparator, InputOTPSlot, type InputProps, LABEL_PLACEMENT, Label, type LabelProps, LargeModal, type LargeModalProps, LearnMoreButton, type LearnMoreButtonProps, Link, type LinkProps, Loader, type LoaderProps, LoadingBar, type LoadingBarProps, type LucideIconEntry, METRIC_CARD_VARIANTS, MetricCard, type MetricCardProps, Modal, ModalButton, ModalLoader, type ModalLoaderProps, type ModalProps, OverlayLoader, type OverlayLoaderProps, PageLoader, type PageLoaderProps, Pagination, type PaginationProps, type PaginationVariant, PhoneField, type PhoneFieldOption, type PhoneFieldProps, type PhoneFieldValue, Popover, PopoverAnchor, PopoverClose, PopoverContent, PopoverPortal, PopoverTrigger, Radio, RadioGroup, RadioGroupItem, type RadioOption, type RadioProps, RadioWithBorder, RatingProgress, type RatingProgressProps, RatingRadioGroup, type RatingRadioGroupProps, RatingStars, type RatingStarsProps, RegistryIcon, ResponsiveSheet, type ResponsiveSheetProps, RotateIcon, type RotateIconProps, ScrollArea, type ScrollAreaProps, ScrollBar, type ScrollBarProps, SearchButton, type SearchButtonProps, SearchInput, type SearchInputProps, SearchableSelect, type SearchableSelectProps, type SearchableSelectValue, Section, type SectionProps, SectionTag, SectionTagColors, type SectionTagProps, Select, SelectContent, type SelectForwardType, SelectGroup, SelectItem, SelectLabel, type SelectOption, SelectPortal, type SelectProps, SelectRoot, SelectSeparator, SelectTrigger, SelectValue$1 as SelectValue, SelectorButton, type SelectorButtonProps, type SelectorOption, Selectors, type SelectorsProps, Separator, type SeparatorProps, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarIcon, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, type SkeletonProps, SmallGridSingleItem, type SmallGridSingleItemProps, SortingAction, type SortingActionProps, type SortingActionValue, type SortingByVariant, StatusBadge, type StatusBadgeProps, type StatusBadgeVariant, StatusBox, type StatusBoxProps, StatusButton, type StatusButtonProps, Stepper, type StepperProps, SubSection, SubSectionSize, Switch, SwitchBlocks, type SwitchBlocksOption, type SwitchBlocksProps, SwitchGroup, type SwitchGroupProps, type SwitchOption, type SwitchProps, TASK_VARIANTS, TabbedSection, type TabbedSectionProps, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TablePlaceholder, type TablePlaceholderProps, TableRow, Tabs, TabsContent, TabsList, type TabsListProps, TabsTrigger, type TabsTriggerProps, TaskCard, type TaskCardProps, TextField, type TextFieldProps, Textarea, type TextareaProps, ThreeDotsLoader, type ThreeDotsLoaderProps, ToggleGroup, ToggleGroupItem, Toggles, type TogglesForwardType, type TogglesProps, Tooltip, TooltipContent, type TooltipContentProps, type TooltipProps, TooltipProvider, TooltipRoot, type TooltipRootProps, TooltipRootWrapper, TooltipTrigger, type UiKitLocale, UploadedFilesList, type UploadedFilesListProps, VideoPlayer, type VideoPlayerProps, WideButton, type WideButtonProps, badgeVariants, bookmarkTabsListVariants, bookmarkTabsTriggerVariants, buttonGroupVariants, buttonVariants, calendarClassNames, cn, emptyMediaVariants, getSidebarState, inputVariants, labelVariants, sectionTagVariants, switchThumbVariants, switchVariants, tabsListVariants, tabsTriggerVariants, toggleVariants, uiKitI18nResources, uiKitTranslations, useAbortController, useClickEscape, useCombinedRef, useDebounce, useEvent, useHover, useIsMobile, useIsMounted, useModalControls, useOutsideClick, usePrevious, useRadioOptions, useScreenResize, useScrollFrameIntoView, useScrollToTop, useSidebar, useSidebarMenuButton, useSidebarSafe, useTimeout, useTimer, useUpdateToast };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React$1 from 'react';
|
|
2
|
-
import React__default, { ReactNode, ElementType, InputHTMLAttributes, ComponentProps, PropsWithChildren, MouseEvent, SVGProps, FC, ImgHTMLAttributes, ComponentType, AnchorHTMLAttributes, ForwardedRef, ButtonHTMLAttributes, HTMLAttributes, TdHTMLAttributes, ThHTMLAttributes, ComponentPropsWithoutRef, ReactElement, TextareaHTMLAttributes, FocusEventHandler } from 'react';
|
|
2
|
+
import React__default, { ReactNode, ElementType, InputHTMLAttributes, ComponentProps, PropsWithChildren, MouseEvent, SVGProps, FC, ImgHTMLAttributes, ComponentType, AnchorHTMLAttributes, ForwardedRef, ButtonHTMLAttributes, HTMLAttributes, TdHTMLAttributes, ThHTMLAttributes, ComponentPropsWithoutRef, ReactElement, TextareaHTMLAttributes, FocusEventHandler, Ref, RefCallback, RefObject } from 'react';
|
|
3
3
|
import * as AccordionPrimitive from '@radix-ui/react-accordion';
|
|
4
4
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
5
5
|
import * as AvatarPrimitive from '@radix-ui/react-avatar';
|
|
@@ -2526,6 +2526,77 @@ type SearchableSelectProps<T = undefined, V extends SearchableSelectValue = stri
|
|
|
2526
2526
|
type SearchableSelectComponent = <T = undefined, V extends SearchableSelectValue = string, L extends ReactNode = string>(props: SearchableSelectProps<T, V, L> & React$1.RefAttributes<HTMLButtonElement>) => React$1.ReactElement | null;
|
|
2527
2527
|
declare const SearchableSelect: SearchableSelectComponent;
|
|
2528
2528
|
|
|
2529
|
+
declare function useScrollToTop(): void;
|
|
2530
|
+
|
|
2531
|
+
declare function useAbortController(): {
|
|
2532
|
+
abortController: AbortController;
|
|
2533
|
+
setupAbortController: () => AbortSignal;
|
|
2534
|
+
};
|
|
2535
|
+
|
|
2536
|
+
type UseClickEscapeProps = {
|
|
2537
|
+
enabled?: boolean;
|
|
2538
|
+
onClick?: () => void;
|
|
2539
|
+
};
|
|
2540
|
+
declare function useClickEscape({ enabled, onClick }: UseClickEscapeProps): void;
|
|
2541
|
+
|
|
2542
|
+
declare function useCombinedRef<T>(...refs: Array<Ref<T> | undefined>): RefCallback<T>;
|
|
2543
|
+
|
|
2544
|
+
declare function useEvent<Args extends unknown[], Return>(fn?: (...args: Args) => Return): NonNullable<typeof fn>;
|
|
2545
|
+
|
|
2546
|
+
type UseIsMobileProps = {
|
|
2547
|
+
breakpoint?: number;
|
|
2548
|
+
};
|
|
2549
|
+
declare function useIsMobile({ breakpoint }?: UseIsMobileProps): boolean;
|
|
2550
|
+
|
|
2551
|
+
declare function useIsMounted(): React$1.MutableRefObject<boolean>;
|
|
2552
|
+
|
|
2553
|
+
declare function useModalControls(initState?: boolean, { disabled }?: {
|
|
2554
|
+
disabled?: boolean;
|
|
2555
|
+
}): {
|
|
2556
|
+
isOpen: boolean;
|
|
2557
|
+
openModal: () => void;
|
|
2558
|
+
closeModal: () => void;
|
|
2559
|
+
toggleModal: () => void;
|
|
2560
|
+
setIsOpen: React$1.Dispatch<React$1.SetStateAction<boolean>>;
|
|
2561
|
+
};
|
|
2562
|
+
|
|
2563
|
+
declare function useOutsideClick<T extends Element>(elementRef: RefObject<T> | null, onOutsideClick: ((event: Event) => void) | null, nested?: string[] | string): void;
|
|
2564
|
+
|
|
2565
|
+
declare function useScreenResize(maxWidth: string): {
|
|
2566
|
+
isMatch: boolean;
|
|
2567
|
+
isInitialized: boolean;
|
|
2568
|
+
};
|
|
2569
|
+
|
|
2570
|
+
type UseScrollFrameIntoViewOptions = {
|
|
2571
|
+
behavior?: ScrollBehavior;
|
|
2572
|
+
elementRef?: RefObject<HTMLElement | null>;
|
|
2573
|
+
};
|
|
2574
|
+
declare function useScrollFrameIntoView(active?: boolean, options?: UseScrollFrameIntoViewOptions): void;
|
|
2575
|
+
|
|
2576
|
+
declare function useDebounce<ValueType = string>(value: ValueType, delayMs?: number, handleChange?: (value: ValueType) => void): [ValueType, (value: ValueType) => void];
|
|
2577
|
+
|
|
2578
|
+
declare function usePrevious<T>(value: T, defaultValue?: T): T | undefined;
|
|
2579
|
+
|
|
2580
|
+
type Props = {
|
|
2581
|
+
seconds: number;
|
|
2582
|
+
};
|
|
2583
|
+
declare const useTimer: ({ seconds }: Props) => {
|
|
2584
|
+
timeLeft: number;
|
|
2585
|
+
isTimerRunning: boolean;
|
|
2586
|
+
resetTimer: () => void;
|
|
2587
|
+
};
|
|
2588
|
+
|
|
2589
|
+
declare function useTimeout(): {
|
|
2590
|
+
scheduleTimeout: (callback: () => void, delay: number) => void;
|
|
2591
|
+
clearTimeoutRef: () => void;
|
|
2592
|
+
};
|
|
2593
|
+
|
|
2594
|
+
declare function useHover(): {
|
|
2595
|
+
isHovering: boolean;
|
|
2596
|
+
handleMouseEnter: () => void;
|
|
2597
|
+
handleMouseLeave: () => void;
|
|
2598
|
+
};
|
|
2599
|
+
|
|
2529
2600
|
declare function cn(...inputs: ClassValue[]): string;
|
|
2530
2601
|
|
|
2531
|
-
export { Accordion, AccordionContent, type AccordionContentProps, AccordionItem, AccordionTrigger, type AccordionTriggerProps, AirbnbInput, type AirbnbInputProps, AirbnbSearchInput, AirbnbSelect, type AirbnbSelectProps, AlertBox, type AlertBoxProps, AlertSize, AlertSizes, AlertType, AlertTypes, AudioPlayer, type AudioPlayerProps, Avatar, type AvatarProps, Badge, type BadgeProps, BaseCheckbox, type BaseCheckboxProps, BetaBadge, type BetaBadgeProps, BookmarkTabsList, type BookmarkTabsListProps, BookmarkTabsTrigger, type BookmarkTabsTriggerProps, BoxOptionSelector, type BoxOptionSelectorProps, type BoxOptionSelectorSwitchProps, Breadcrumb, type BreadcrumbProps, type BreadcrumbType, Breadcrumbs, type BreadcrumbsProps, Button, ButtonGroup, type ButtonGroupProps, ButtonGroupText, type ButtonGroupTextProps, type ButtonProps, type ButtonStatuses, ButtonsGroupLabel, type ButtonsGroupLabelProps, Calendar, type CalendarProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, type ChannelOption, ChannelSelector, type ChannelSelectorProps, Checkbox, CheckboxGroup, type CheckboxGroupProps, type CheckboxOption, type CheckboxProps, CircularLoader, CommingSoonBadge, type CommingSoonBadgeProps, ConfirmationDialog, type ConfirmationDialogProps, CopyIcon, type CopyIconProps, CopyLinkButton, type CopyLinkButtonProps, type CustomIconEntry, DataTable, type DataTableProps, DatePicker, type DatePickerProps, type DatePickerValue, DefaultSelectTrigger, type DefaultSelectTriggerProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DialogVisuallyHidden, DividingSubsection, DownloadEntryFormsButton, type DownloadEntryFormsButtonProps, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownButton, type DropdownButtonProps, DropdownMenu, DropdownMenuContent, type DropdownMenuContentSide, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuSeparator, DropdownMenuTrigger, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptySectionPlaceholder, type EmptySectionPlaceholderProps, EmptyTitle, ErrorMessage, type ErrorMessageProps, ExternalLink, type ExternalLinkProps, FeatureCard, type FeatureCardProps, FieldErrorMessage, type FieldErrorMessageProps, FieldTrigger, type FieldTriggerProps, FileInputButton, type FileInputButtonProps, FormBox, Content as FormBoxContent, type FormBoxContentProps, Header as FormBoxHeader, type FormBoxHeaderProps, Root as FormBoxRoot, type FormBoxRootProps, SubHeader as FormBoxSubHeader, type FormBoxSubHeaderProps, FramedIcon, type FramedIconProps, FreeTextField, type FreeTextFieldProps, GridItems, type GridItemsProps, type GuestVerificationStatus, HALO_ICON_STATUS, HaloIcon, type HaloIconProps, HelpTooltip, type HelpTooltipProps, IVStatusBadge, type IVStatusBadgeProps, IV_BADGE_STATUS, Icon$1 as Icon, IconButton, type IconButtonProps, type IconEntry, type IconNames, type IconProps, IconRegistry, IconsDropdown, type IconsDropdownProps, Image, ImageFullScreenView, type ImageFullScreenViewProps, type ImageProps, InfoBox, type InfoBoxProps, Input, InputOTP, InputOTPGroup, type InputOTPProps, InputOTPSeparator, InputOTPSlot, type InputProps, LABEL_PLACEMENT, Label, type LabelProps, LargeModal, type LargeModalProps, LearnMoreButton, type LearnMoreButtonProps, Link, type LinkProps, Loader, type LoaderProps, LoadingBar, type LoadingBarProps, type LucideIconEntry, METRIC_CARD_VARIANTS, MetricCard, type MetricCardProps, Modal, ModalButton, ModalLoader, type ModalLoaderProps, type ModalProps, OverlayLoader, type OverlayLoaderProps, PageLoader, type PageLoaderProps, Pagination, type PaginationProps, type PaginationVariant, PhoneField, type PhoneFieldOption, type PhoneFieldProps, type PhoneFieldValue, Popover, PopoverAnchor, PopoverClose, PopoverContent, PopoverPortal, PopoverTrigger, Radio, RadioGroup, RadioGroupItem, type RadioOption, type RadioProps, RadioWithBorder, RatingProgress, type RatingProgressProps, RatingRadioGroup, type RatingRadioGroupProps, RatingStars, type RatingStarsProps, RegistryIcon, ResponsiveSheet, type ResponsiveSheetProps, RotateIcon, type RotateIconProps, ScrollArea, type ScrollAreaProps, ScrollBar, type ScrollBarProps, SearchButton, type SearchButtonProps, SearchInput, type SearchInputProps, SearchableSelect, type SearchableSelectProps, type SearchableSelectValue, Section, type SectionProps, SectionTag, SectionTagColors, type SectionTagProps, Select, SelectContent, type SelectForwardType, SelectGroup, SelectItem, SelectLabel, type SelectOption, SelectPortal, type SelectProps, SelectRoot, SelectSeparator, SelectTrigger, SelectValue$1 as SelectValue, SelectorButton, type SelectorButtonProps, type SelectorOption, Selectors, type SelectorsProps, Separator, type SeparatorProps, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarIcon, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, type SkeletonProps, SmallGridSingleItem, type SmallGridSingleItemProps, SortingAction, type SortingActionProps, type SortingActionValue, type SortingByVariant, StatusBadge, type StatusBadgeProps, type StatusBadgeVariant, StatusBox, type StatusBoxProps, StatusButton, type StatusButtonProps, Stepper, type StepperProps, SubSection, SubSectionSize, Switch, SwitchBlocks, type SwitchBlocksOption, type SwitchBlocksProps, SwitchGroup, type SwitchGroupProps, type SwitchOption, type SwitchProps, TASK_VARIANTS, TabbedSection, type TabbedSectionProps, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TablePlaceholder, type TablePlaceholderProps, TableRow, Tabs, TabsContent, TabsList, type TabsListProps, TabsTrigger, type TabsTriggerProps, TaskCard, type TaskCardProps, TextField, type TextFieldProps, Textarea, type TextareaProps, ThreeDotsLoader, type ThreeDotsLoaderProps, ToggleGroup, ToggleGroupItem, Toggles, type TogglesForwardType, type TogglesProps, Tooltip, TooltipContent, type TooltipContentProps, type TooltipProps, TooltipProvider, TooltipRoot, type TooltipRootProps, TooltipRootWrapper, TooltipTrigger, type UiKitLocale, UploadedFilesList, type UploadedFilesListProps, VideoPlayer, type VideoPlayerProps, WideButton, type WideButtonProps, badgeVariants, bookmarkTabsListVariants, bookmarkTabsTriggerVariants, buttonGroupVariants, buttonVariants, calendarClassNames, cn, emptyMediaVariants, getSidebarState, inputVariants, labelVariants, sectionTagVariants, switchThumbVariants, switchVariants, tabsListVariants, tabsTriggerVariants, toggleVariants, uiKitI18nResources, uiKitTranslations, useRadioOptions, useSidebar, useSidebarMenuButton, useSidebarSafe, useUpdateToast };
|
|
2602
|
+
export { Accordion, AccordionContent, type AccordionContentProps, AccordionItem, AccordionTrigger, type AccordionTriggerProps, AirbnbInput, type AirbnbInputProps, AirbnbSearchInput, AirbnbSelect, type AirbnbSelectProps, AlertBox, type AlertBoxProps, AlertSize, AlertSizes, AlertType, AlertTypes, AudioPlayer, type AudioPlayerProps, Avatar, type AvatarProps, Badge, type BadgeProps, BaseCheckbox, type BaseCheckboxProps, BetaBadge, type BetaBadgeProps, BookmarkTabsList, type BookmarkTabsListProps, BookmarkTabsTrigger, type BookmarkTabsTriggerProps, BoxOptionSelector, type BoxOptionSelectorProps, type BoxOptionSelectorSwitchProps, Breadcrumb, type BreadcrumbProps, type BreadcrumbType, Breadcrumbs, type BreadcrumbsProps, Button, ButtonGroup, type ButtonGroupProps, ButtonGroupText, type ButtonGroupTextProps, type ButtonProps, type ButtonStatuses, ButtonsGroupLabel, type ButtonsGroupLabelProps, Calendar, type CalendarProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, type ChannelOption, ChannelSelector, type ChannelSelectorProps, Checkbox, CheckboxGroup, type CheckboxGroupProps, type CheckboxOption, type CheckboxProps, CircularLoader, CommingSoonBadge, type CommingSoonBadgeProps, ConfirmationDialog, type ConfirmationDialogProps, CopyIcon, type CopyIconProps, CopyLinkButton, type CopyLinkButtonProps, type CustomIconEntry, DataTable, type DataTableProps, DatePicker, type DatePickerProps, type DatePickerValue, DefaultSelectTrigger, type DefaultSelectTriggerProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DialogVisuallyHidden, DividingSubsection, DownloadEntryFormsButton, type DownloadEntryFormsButtonProps, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownButton, type DropdownButtonProps, DropdownMenu, DropdownMenuContent, type DropdownMenuContentSide, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuSeparator, DropdownMenuTrigger, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptySectionPlaceholder, type EmptySectionPlaceholderProps, EmptyTitle, ErrorMessage, type ErrorMessageProps, ExternalLink, type ExternalLinkProps, FeatureCard, type FeatureCardProps, FieldErrorMessage, type FieldErrorMessageProps, FieldTrigger, type FieldTriggerProps, FileInputButton, type FileInputButtonProps, FormBox, Content as FormBoxContent, type FormBoxContentProps, Header as FormBoxHeader, type FormBoxHeaderProps, Root as FormBoxRoot, type FormBoxRootProps, SubHeader as FormBoxSubHeader, type FormBoxSubHeaderProps, FramedIcon, type FramedIconProps, FreeTextField, type FreeTextFieldProps, GridItems, type GridItemsProps, type GuestVerificationStatus, HALO_ICON_STATUS, HaloIcon, type HaloIconProps, HelpTooltip, type HelpTooltipProps, IVStatusBadge, type IVStatusBadgeProps, IV_BADGE_STATUS, Icon$1 as Icon, IconButton, type IconButtonProps, type IconEntry, type IconNames, type IconProps, IconRegistry, IconsDropdown, type IconsDropdownProps, Image, ImageFullScreenView, type ImageFullScreenViewProps, type ImageProps, InfoBox, type InfoBoxProps, Input, InputOTP, InputOTPGroup, type InputOTPProps, InputOTPSeparator, InputOTPSlot, type InputProps, LABEL_PLACEMENT, Label, type LabelProps, LargeModal, type LargeModalProps, LearnMoreButton, type LearnMoreButtonProps, Link, type LinkProps, Loader, type LoaderProps, LoadingBar, type LoadingBarProps, type LucideIconEntry, METRIC_CARD_VARIANTS, MetricCard, type MetricCardProps, Modal, ModalButton, ModalLoader, type ModalLoaderProps, type ModalProps, OverlayLoader, type OverlayLoaderProps, PageLoader, type PageLoaderProps, Pagination, type PaginationProps, type PaginationVariant, PhoneField, type PhoneFieldOption, type PhoneFieldProps, type PhoneFieldValue, Popover, PopoverAnchor, PopoverClose, PopoverContent, PopoverPortal, PopoverTrigger, Radio, RadioGroup, RadioGroupItem, type RadioOption, type RadioProps, RadioWithBorder, RatingProgress, type RatingProgressProps, RatingRadioGroup, type RatingRadioGroupProps, RatingStars, type RatingStarsProps, RegistryIcon, ResponsiveSheet, type ResponsiveSheetProps, RotateIcon, type RotateIconProps, ScrollArea, type ScrollAreaProps, ScrollBar, type ScrollBarProps, SearchButton, type SearchButtonProps, SearchInput, type SearchInputProps, SearchableSelect, type SearchableSelectProps, type SearchableSelectValue, Section, type SectionProps, SectionTag, SectionTagColors, type SectionTagProps, Select, SelectContent, type SelectForwardType, SelectGroup, SelectItem, SelectLabel, type SelectOption, SelectPortal, type SelectProps, SelectRoot, SelectSeparator, SelectTrigger, SelectValue$1 as SelectValue, SelectorButton, type SelectorButtonProps, type SelectorOption, Selectors, type SelectorsProps, Separator, type SeparatorProps, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarIcon, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, type SkeletonProps, SmallGridSingleItem, type SmallGridSingleItemProps, SortingAction, type SortingActionProps, type SortingActionValue, type SortingByVariant, StatusBadge, type StatusBadgeProps, type StatusBadgeVariant, StatusBox, type StatusBoxProps, StatusButton, type StatusButtonProps, Stepper, type StepperProps, SubSection, SubSectionSize, Switch, SwitchBlocks, type SwitchBlocksOption, type SwitchBlocksProps, SwitchGroup, type SwitchGroupProps, type SwitchOption, type SwitchProps, TASK_VARIANTS, TabbedSection, type TabbedSectionProps, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TablePlaceholder, type TablePlaceholderProps, TableRow, Tabs, TabsContent, TabsList, type TabsListProps, TabsTrigger, type TabsTriggerProps, TaskCard, type TaskCardProps, TextField, type TextFieldProps, Textarea, type TextareaProps, ThreeDotsLoader, type ThreeDotsLoaderProps, ToggleGroup, ToggleGroupItem, Toggles, type TogglesForwardType, type TogglesProps, Tooltip, TooltipContent, type TooltipContentProps, type TooltipProps, TooltipProvider, TooltipRoot, type TooltipRootProps, TooltipRootWrapper, TooltipTrigger, type UiKitLocale, UploadedFilesList, type UploadedFilesListProps, VideoPlayer, type VideoPlayerProps, WideButton, type WideButtonProps, badgeVariants, bookmarkTabsListVariants, bookmarkTabsTriggerVariants, buttonGroupVariants, buttonVariants, calendarClassNames, cn, emptyMediaVariants, getSidebarState, inputVariants, labelVariants, sectionTagVariants, switchThumbVariants, switchVariants, tabsListVariants, tabsTriggerVariants, toggleVariants, uiKitI18nResources, uiKitTranslations, useAbortController, useClickEscape, useCombinedRef, useDebounce, useEvent, useHover, useIsMobile, useIsMounted, useModalControls, useOutsideClick, usePrevious, useRadioOptions, useScreenResize, useScrollFrameIntoView, useScrollToTop, useSidebar, useSidebarMenuButton, useSidebarSafe, useTimeout, useTimer, useUpdateToast };
|