@chekinapp/ui 0.0.34 → 0.0.36
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/Accordion.module-5SXQLE6L.module.css +71 -0
- package/dist/AlertBox.module-PL4N3ELX.module.css +36 -0
- package/dist/AudioPlayer.module-RDUQ533M.module.css +24 -0
- package/dist/Avatar.module-VPJKIZT3.module.css +4 -0
- package/dist/BetaBadge.module-W2AGK53A.module.css +9 -0
- package/dist/BoxOptionSelector.module-24AKP2OJ.module.css +17 -0
- package/dist/FormBox.module-WG4SQBRR.module.css +55 -0
- package/dist/MetricCard.module-LEV46BXD.module.css +88 -0
- package/dist/Section.module-6UJGBE6B.module.css +61 -0
- package/dist/TaskCard.module-AVGS4US3.module.css +99 -0
- package/dist/index.cjs +2198 -1552
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +252 -44
- package/dist/index.d.ts +252 -44
- package/dist/index.js +2101 -1471
- package/dist/index.js.map +1 -1
- package/dist/styles.css +1 -4
- package/dist/styles.module-4AVOK5SA.module.css +81 -0
- package/dist/styles.module-6FWQEZTQ.module.css +82 -0
- package/dist/styles.module-74HHIGIE.module.css +35 -0
- package/dist/styles.module-AAYSW4RF.module.css +64 -0
- package/dist/styles.module-H7R2VV2Q.module.css +30 -0
- package/dist/styles.module-I3PJNRXG.module.css +20 -0
- package/dist/styles.module-REEJNJNW.module.css +7 -0
- package/dist/styles.module-SHDCFZJR.module.css +151 -0
- package/dist/styles.module-VIYXJAAX.module.css +8 -0
- package/dist/styles.module-Y6YCV6UA.module.css +48 -0
- package/dist/textField.module-5W2LJGIC.module.css +17 -0
- package/package.json +4 -3
- package/dist/index.css +0 -934
- package/dist/index.css.map +0 -1
- package/dist/styles.css.map +0 -1
package/dist/styles.css
CHANGED
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
.selectorsWrapperTab {
|
|
2
|
+
@apply box-border flex h-auto max-h-none w-fit flex-wrap items-center rounded-md border border-[var(--chekin-color-gray-3)];
|
|
3
|
+
background: var(--chekin-color-surface-input-empty) 0 0 no-repeat padding-box;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.selectorsWrapperDefault {
|
|
7
|
+
@apply flex w-full flex-wrap;
|
|
8
|
+
margin-bottom: -10px;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.selectorsWrapperDefault .selectorButton {
|
|
12
|
+
@apply mb-[10px] mr-[10px];
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.selectorButton {
|
|
16
|
+
@apply box-border whitespace-nowrap border border-transparent bg-transparent text-[15px] font-medium;
|
|
17
|
+
color: var(--chekin-color-gray-1);
|
|
18
|
+
min-width: auto;
|
|
19
|
+
box-shadow: none;
|
|
20
|
+
padding: 8px 21px;
|
|
21
|
+
margin: 2px;
|
|
22
|
+
min-height: 36px;
|
|
23
|
+
transition-duration: 0s;
|
|
24
|
+
flex: 1;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.selectorButton > div {
|
|
28
|
+
@apply mx-auto my-0;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.selectorButton:not(.active):hover {
|
|
32
|
+
@apply border-transparent text-white;
|
|
33
|
+
background: var(--chekin-color-brand-blue);
|
|
34
|
+
opacity: 0.35;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.selectorButton.active {
|
|
38
|
+
@apply cursor-default font-semibold text-white;
|
|
39
|
+
background: var(--chekin-color-brand-blue);
|
|
40
|
+
box-shadow: 0 3px 4px #00020334;
|
|
41
|
+
border-color: var(--chekin-color-brand-blue);
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.selectorButton.active:hover {
|
|
45
|
+
@apply opacity-100;
|
|
46
|
+
box-shadow: 0 3px 4px #00020334;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.selectorButton.readOnly:not(.active) {
|
|
50
|
+
@apply cursor-default;
|
|
51
|
+
color: var(--chekin-color-gray-1);
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.selectorButton.readOnly:not(.active):hover {
|
|
55
|
+
background: initial;
|
|
56
|
+
color: var(--chekin-color-gray-1);
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.selectorButton.sizeSm {
|
|
60
|
+
@apply py-[7px] text-[14px] font-medium leading-6;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.selectorButton.active.sizeSm {
|
|
64
|
+
@apply py-[7px] text-[14px] font-bold leading-6;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.labelWrapper {
|
|
68
|
+
@apply flex;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.labelWrapper span {
|
|
72
|
+
@apply ml-[5px];
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.name {
|
|
76
|
+
@apply box-border select-none overflow-x-hidden whitespace-nowrap text-left font-normal text-[var(--chekin-color-brand-navy)];
|
|
77
|
+
font-size: 16px;
|
|
78
|
+
min-height: 20px;
|
|
79
|
+
margin-bottom: 6px;
|
|
80
|
+
text-overflow: ellipsis;
|
|
81
|
+
}
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
.container {
|
|
2
|
+
position: relative;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.label {
|
|
6
|
+
pointer-events: none;
|
|
7
|
+
position: absolute;
|
|
8
|
+
left: 0.75rem;
|
|
9
|
+
top: 1rem;
|
|
10
|
+
padding: 0 0.25rem;
|
|
11
|
+
color: #6b6b95;
|
|
12
|
+
transition: all 0.1s ease;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.container textarea:focus + .label,
|
|
16
|
+
.container textarea:not(:placeholder-shown) + .label {
|
|
17
|
+
top: -0.6rem;
|
|
18
|
+
left: 0.5rem;
|
|
19
|
+
background-color: white;
|
|
20
|
+
font-size: 14px;
|
|
21
|
+
font-weight: 500;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.container textarea:focus + .label {
|
|
25
|
+
color: #385bf8;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.labelError {
|
|
29
|
+
color: #ff2467;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.labelDisabled {
|
|
33
|
+
color: #9696b9;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.textarea {
|
|
37
|
+
box-sizing: border-box;
|
|
38
|
+
min-height: 120px;
|
|
39
|
+
width: 100%;
|
|
40
|
+
resize: none;
|
|
41
|
+
border: 1px solid #cecede;
|
|
42
|
+
border-radius: 8px;
|
|
43
|
+
background: #f4f6f8;
|
|
44
|
+
padding: 12px 16px;
|
|
45
|
+
color: #161643;
|
|
46
|
+
font: inherit;
|
|
47
|
+
outline: none;
|
|
48
|
+
scrollbar-color: #777e91 transparent;
|
|
49
|
+
scrollbar-gutter: stable;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.textarea:focus,
|
|
53
|
+
.textarea:not(:placeholder-shown) {
|
|
54
|
+
background-color: white;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.textarea::placeholder {
|
|
58
|
+
color: #6b6b95;
|
|
59
|
+
opacity: 1;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.textarea:focus {
|
|
63
|
+
border-color: #385bf8;
|
|
64
|
+
transition: background-color 0.1s ease-in-out;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.textareaError,
|
|
68
|
+
.textareaError:focus {
|
|
69
|
+
border-color: #ff2467;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.textareaDisabled {
|
|
73
|
+
cursor: not-allowed;
|
|
74
|
+
resize: none;
|
|
75
|
+
border-color: #9696b9;
|
|
76
|
+
background-color: #f4f6f8;
|
|
77
|
+
color: #9696b9;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.textareaDisabled::placeholder {
|
|
81
|
+
color: #9696b9;
|
|
82
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
.modal__content {
|
|
2
|
+
@apply flex h-auto min-w-[340px] w-auto flex-col items-center gap-y-6 rounded-md bg-[var(--chekin-color-white)] text-center;
|
|
3
|
+
color: var(--chekin-color-brand-navy);
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.modal__contentCompact {
|
|
7
|
+
@apply min-w-0;
|
|
8
|
+
width: 360px;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.modal__close {
|
|
12
|
+
@apply absolute right-4 top-4 z-10 rounded-full p-1 hover:bg-[#f4f6f8];
|
|
13
|
+
color: var(--chekin-color-brand-blue);
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.modal__icon {
|
|
17
|
+
@apply mx-auto mt-4;
|
|
18
|
+
user-select: none;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.modal__title {
|
|
22
|
+
@apply px-6 text-lg font-bold;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.modal__text {
|
|
26
|
+
@apply text-base;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.modal__buttonsWrapper {
|
|
30
|
+
@apply mb-2 mt-6 flex flex-col items-center justify-center gap-y-4;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.modal__button {
|
|
34
|
+
@apply min-w-[210px];
|
|
35
|
+
}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
.styledButton {
|
|
2
|
+
box-sizing: border-box;
|
|
3
|
+
display: flex;
|
|
4
|
+
align-items: center;
|
|
5
|
+
min-width: 117px;
|
|
6
|
+
height: 48px;
|
|
7
|
+
padding: 0 16px;
|
|
8
|
+
border: 1px solid #cecede;
|
|
9
|
+
border-radius: 6px;
|
|
10
|
+
background-color: #f2f2fa;
|
|
11
|
+
color: #9696b9;
|
|
12
|
+
cursor: pointer;
|
|
13
|
+
font-size: 15px;
|
|
14
|
+
font-weight: 600;
|
|
15
|
+
outline: none;
|
|
16
|
+
text-align: left;
|
|
17
|
+
user-select: none;
|
|
18
|
+
transition: all 75ms ease-in-out;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.styledButton input {
|
|
22
|
+
position: absolute;
|
|
23
|
+
width: 0;
|
|
24
|
+
height: 0;
|
|
25
|
+
opacity: 0;
|
|
26
|
+
cursor: pointer;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.styledButton.disabled {
|
|
30
|
+
cursor: not-allowed;
|
|
31
|
+
opacity: 0.3;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.styledButton.loading {
|
|
35
|
+
cursor: progress;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.styledButton:not(.disabled):hover {
|
|
39
|
+
border-color: #385bf8;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.styledButton:not(.disabled):active {
|
|
43
|
+
opacity: 1;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.styledButton.readOnly {
|
|
47
|
+
cursor: default;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.styledButton.readOnly:not(.active):hover {
|
|
51
|
+
border-color: transparent;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.styledButton.active {
|
|
55
|
+
border-color: #385bf8;
|
|
56
|
+
background: white;
|
|
57
|
+
color: #385bf8;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.content {
|
|
61
|
+
display: flex;
|
|
62
|
+
align-items: center;
|
|
63
|
+
height: 100%;
|
|
64
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
.RatingRadioGroup__input {
|
|
2
|
+
position: absolute;
|
|
3
|
+
width: 0;
|
|
4
|
+
height: 0;
|
|
5
|
+
opacity: 0;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.RatingRadioGroup__star {
|
|
9
|
+
cursor: pointer;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.RatingRadioGroup .RatingRadioGroup__legend {
|
|
13
|
+
margin-bottom: 8px;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.RatingRadioGroup {
|
|
17
|
+
all: unset;
|
|
18
|
+
position: relative;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.RatingRadioGroup__list {
|
|
22
|
+
display: flex;
|
|
23
|
+
gap: 8px;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.RatingRadioGroup__label input[type='radio']:focus-visible + .RatingRadioGroup__star {
|
|
27
|
+
outline: 2px solid #385bf8;
|
|
28
|
+
outline-offset: 2px;
|
|
29
|
+
border-radius: 4px;
|
|
30
|
+
}
|
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
.container {
|
|
2
|
+
position: relative;
|
|
3
|
+
display: flex;
|
|
4
|
+
flex-direction: column;
|
|
5
|
+
gap: 4px;
|
|
6
|
+
width: 300px;
|
|
7
|
+
font-family: var(--chekin-font-family-primary);
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.labelRow {
|
|
11
|
+
display: flex;
|
|
12
|
+
gap: 4px;
|
|
13
|
+
align-items: center;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.labelText,
|
|
17
|
+
.optionalText {
|
|
18
|
+
font-size: 16px;
|
|
19
|
+
line-height: 16px;
|
|
20
|
+
color: var(--chekin-color-brand-navy);
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.labelText {
|
|
24
|
+
font-weight: 500;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.optionalText em {
|
|
28
|
+
color: var(--chekin-color-gray-2);
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.tooltip {
|
|
32
|
+
width: 16px;
|
|
33
|
+
height: 16px;
|
|
34
|
+
flex-shrink: 0;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.fieldBox {
|
|
38
|
+
position: relative;
|
|
39
|
+
display: flex;
|
|
40
|
+
align-items: center;
|
|
41
|
+
gap: 10px;
|
|
42
|
+
height: 44px;
|
|
43
|
+
padding: 10px 14px;
|
|
44
|
+
border: 1px solid;
|
|
45
|
+
border-radius: 8px;
|
|
46
|
+
transition:
|
|
47
|
+
border-color 0.15s ease,
|
|
48
|
+
background-color 0.15s ease;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.fieldBoxEmpty {
|
|
52
|
+
background-color: var(--chekin-color-surface-input-empty);
|
|
53
|
+
border-color: rgba(22, 22, 67, 0.2);
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.fieldBoxFilled {
|
|
57
|
+
background-color: white;
|
|
58
|
+
border-color: var(--chekin-color-brand-navy);
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.fieldBoxErrorWrong {
|
|
62
|
+
background-color: white;
|
|
63
|
+
border-color: var(--error-message-color);
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.fieldBoxAutocompleted {
|
|
67
|
+
background-color: var(--chekin-color-surface-autocomplete);
|
|
68
|
+
border-color: var(--chekin-color-brand-navy);
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.fieldBoxFocused {
|
|
72
|
+
border-color: var(--chekin-color-brand-blue);
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.input {
|
|
76
|
+
flex: 1 0 0;
|
|
77
|
+
min-width: 0;
|
|
78
|
+
min-height: 1px;
|
|
79
|
+
padding: 0;
|
|
80
|
+
border: none;
|
|
81
|
+
background: transparent;
|
|
82
|
+
color: var(--chekin-color-brand-navy);
|
|
83
|
+
font: inherit;
|
|
84
|
+
font-size: 16px;
|
|
85
|
+
font-weight: 500;
|
|
86
|
+
line-height: 20px;
|
|
87
|
+
outline: none;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.input::placeholder {
|
|
91
|
+
color: var(--chekin-color-gray-1);
|
|
92
|
+
font-weight: 500;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.icon {
|
|
96
|
+
display: flex;
|
|
97
|
+
flex-shrink: 0;
|
|
98
|
+
align-items: center;
|
|
99
|
+
justify-content: center;
|
|
100
|
+
width: 24px;
|
|
101
|
+
height: 24px;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.supportingText {
|
|
105
|
+
margin: 0;
|
|
106
|
+
color: var(--chekin-color-gray-2);
|
|
107
|
+
font-size: 12px;
|
|
108
|
+
font-style: italic;
|
|
109
|
+
line-height: normal;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.errorText {
|
|
113
|
+
margin: 0;
|
|
114
|
+
color: var(--error-message-color);
|
|
115
|
+
font-size: 12px;
|
|
116
|
+
font-weight: 500;
|
|
117
|
+
line-height: 16px;
|
|
118
|
+
text-align: right;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.floatingLabel {
|
|
122
|
+
position: absolute;
|
|
123
|
+
top: -8px;
|
|
124
|
+
left: 13px;
|
|
125
|
+
display: flex;
|
|
126
|
+
align-items: center;
|
|
127
|
+
height: 16px;
|
|
128
|
+
padding: 0 3px;
|
|
129
|
+
background: linear-gradient(to bottom, transparent 50%, white 50%);
|
|
130
|
+
pointer-events: none;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.floatingLabelAutocompleted {
|
|
134
|
+
background: linear-gradient(
|
|
135
|
+
to bottom,
|
|
136
|
+
rgb(239 246 255 / 0%) 50%,
|
|
137
|
+
var(--chekin-color-surface-autocomplete) 50%
|
|
138
|
+
);
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.floatingLabelText {
|
|
142
|
+
color: var(--chekin-color-gray-1);
|
|
143
|
+
font-size: 14px;
|
|
144
|
+
font-weight: 500;
|
|
145
|
+
line-height: 24px;
|
|
146
|
+
white-space: nowrap;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
.floatingLabelTextError {
|
|
150
|
+
color: var(--error-message-color);
|
|
151
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
.Loader {
|
|
2
|
+
display: flex;
|
|
3
|
+
align-items: center;
|
|
4
|
+
justify-content: center;
|
|
5
|
+
column-gap: 13px;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.Loader > div {
|
|
9
|
+
color: #9696b9;
|
|
10
|
+
font-size: 14px;
|
|
11
|
+
font-weight: 700;
|
|
12
|
+
opacity: 0.5;
|
|
13
|
+
text-transform: uppercase;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.dots {
|
|
17
|
+
display: inline-flex;
|
|
18
|
+
align-items: center;
|
|
19
|
+
justify-content: center;
|
|
20
|
+
gap: 15%;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.dot {
|
|
24
|
+
width: 22%;
|
|
25
|
+
height: 22%;
|
|
26
|
+
border-radius: 9999px;
|
|
27
|
+
animation: three-dots 1.1s infinite ease-in-out both;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.dot:nth-child(1) {
|
|
31
|
+
animation-delay: -0.32s;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.dot:nth-child(2) {
|
|
35
|
+
animation-delay: -0.16s;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
@keyframes three-dots {
|
|
39
|
+
0%,
|
|
40
|
+
80%,
|
|
41
|
+
100% {
|
|
42
|
+
transform: scale(0);
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
40% {
|
|
46
|
+
transform: scale(1);
|
|
47
|
+
}
|
|
48
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
.root {
|
|
2
|
+
--text-field-height: 2.75rem;
|
|
3
|
+
--text-field-radius: 8px;
|
|
4
|
+
--text-field-padding-x: 0.875rem;
|
|
5
|
+
--text-field-padding-y: 0.625rem;
|
|
6
|
+
--text-field-bg-empty: #f4f6f8;
|
|
7
|
+
--text-field-bg-filled: #ffffff;
|
|
8
|
+
--text-field-border-empty: rgba(22, 22, 67, 0.2);
|
|
9
|
+
--text-field-border-filled: #161643;
|
|
10
|
+
--text-field-border-error: #ff2467;
|
|
11
|
+
--text-field-text: #161643;
|
|
12
|
+
--text-field-placeholder: #6b6b95;
|
|
13
|
+
--text-field-label: #161643;
|
|
14
|
+
--text-field-supporting: #9696b9;
|
|
15
|
+
--text-field-error: #ff2467;
|
|
16
|
+
--text-field-focus-ring: rgba(56, 91, 248, 0.2);
|
|
17
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chekinapp/ui",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.36",
|
|
4
4
|
"description": "Chekin UI — React components on Radix primitives, styled with Chekin tokens",
|
|
5
5
|
"private": false,
|
|
6
6
|
"license": "UNLICENSED",
|
|
@@ -17,7 +17,8 @@
|
|
|
17
17
|
"import": "./dist/index.js",
|
|
18
18
|
"require": "./dist/index.cjs"
|
|
19
19
|
},
|
|
20
|
-
"./styles.css": "./dist/styles.css"
|
|
20
|
+
"./styles.css": "./dist/styles.css",
|
|
21
|
+
"./index.css": "./dist/index.css"
|
|
21
22
|
},
|
|
22
23
|
"files": [
|
|
23
24
|
"dist"
|
|
@@ -55,7 +56,7 @@
|
|
|
55
56
|
"tailwind-merge": "^2.5.5",
|
|
56
57
|
"@tanstack/react-virtual": "^3.13.24",
|
|
57
58
|
"react-draggable": "^4.5.0",
|
|
58
|
-
"@chekinapp/tokens": "0.0.
|
|
59
|
+
"@chekinapp/tokens": "0.0.12"
|
|
59
60
|
},
|
|
60
61
|
"peerDependencies": {
|
|
61
62
|
"@tanstack/react-table": "^8.0.0",
|