@vitrosoftware/common-ui-ts 1.1.17 → 1.1.19
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/css/std/controls/checkbox/checkbox.css +54 -0
- package/css/std/controls/date-picker/date-picker.css +16 -6
- package/css/std/controls/input/input.css +8 -2
- package/css/std/controls/label/label.css +6 -0
- package/css/std/controls/login/login.css +8 -0
- package/css/std/controls/lookup-picker/lookup-picker-selected-item.css +1 -2
- package/css/std/controls/lookup-picker/lookup-picker.css +10 -3
- package/css/std/controls/tab-group/tab-group.css +5 -1
- package/css/std/controls/time-picker/time-picker.css +8 -1
- package/dist/controls/Checkbox/Checkbox.d.ts +11 -0
- package/dist/controls/Login/Login.d.ts +1 -1
- package/dist/index.css +117 -15
- package/dist/index.d.ts +2 -0
- package/dist/index.js +161 -124
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +161 -125
- package/dist/index.modern.js.map +1 -1
- package/package.json +2 -2
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
.vitro-control {
|
|
2
|
+
width: 100%;
|
|
3
|
+
position: relative;
|
|
4
|
+
margin-bottom: 32px;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.vitro-checkbox-content {
|
|
8
|
+
width: 100%;
|
|
9
|
+
display: flex;
|
|
10
|
+
align-items: center;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.vitro-checkbox-content input {
|
|
14
|
+
width: 24px;
|
|
15
|
+
height: 24px;
|
|
16
|
+
margin-right: 6px;
|
|
17
|
+
cursor: pointer;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.vitro-checkbox-content input::before,
|
|
21
|
+
.vitro-checkbox-content input:checked::before {
|
|
22
|
+
content: '';
|
|
23
|
+
display: block;
|
|
24
|
+
width: 24px;
|
|
25
|
+
height: 24px;
|
|
26
|
+
background: #fff;
|
|
27
|
+
background-size: 100%;
|
|
28
|
+
background-position: center;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.vitro-checkbox-content input::before {
|
|
32
|
+
/* checkbox-big-empty.svg URL-encoder for SVG */
|
|
33
|
+
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='Checkbox-big'%3E%3Crect id='Background' x='2.5' y='2.5' width='19' height='19' rx='3.5' stroke='%23C0CAD5'/%3E%3C/g%3E%3C/svg%3E%0A");
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.vitro-checkbox-content input:checked::before {
|
|
37
|
+
/* checkbox-big-active.svg URL-encoder for SVG */
|
|
38
|
+
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='2' y='2' width='20' height='20' rx='2.5' fill='%234292F7'/%3E%3Cpath d='M16.7062 8.50593C17.0826 8.86144 17.0996 9.45479 16.7441 9.83121L11.4316 15.4562C11.2577 15.6404 11.0166 15.7463 10.7634 15.7499C10.5101 15.7535 10.2662 15.6545 10.0871 15.4754L7.27459 12.6629C6.90847 12.2968 6.90847 11.7032 7.27459 11.3371C7.6407 10.971 8.2343 10.971 8.60041 11.3371L10.7308 13.4675L15.3809 8.54379C15.7364 8.16737 16.3298 8.15042 16.7062 8.50593Z' fill='white'/%3E%3C/svg%3E%0A");
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.vitro-label {
|
|
42
|
+
color: #222D44;
|
|
43
|
+
font-size: 14px;
|
|
44
|
+
line-height: 135%;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.vitro-left-label {
|
|
48
|
+
display: flex;
|
|
49
|
+
align-items: center;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.vitro-left-label .vitro-label {
|
|
53
|
+
margin-right: 6px;
|
|
54
|
+
}
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
}
|
|
62
62
|
|
|
63
63
|
.vitro-read-only :global(.k-picker-wrap .k-select) {
|
|
64
|
-
display: none;
|
|
64
|
+
display: none !important;
|
|
65
65
|
}
|
|
66
66
|
|
|
67
67
|
.vitro-error .vitro-label {
|
|
@@ -89,12 +89,16 @@
|
|
|
89
89
|
}
|
|
90
90
|
|
|
91
91
|
.vitro-error-text {
|
|
92
|
-
display:
|
|
93
|
-
align
|
|
92
|
+
display: inline-block;
|
|
93
|
+
vertical-align: text-top;
|
|
94
94
|
color: #D13438;
|
|
95
95
|
font-size: 14px;
|
|
96
96
|
line-height: 135%;
|
|
97
97
|
margin-top: 2px;
|
|
98
|
+
width: 100%;
|
|
99
|
+
text-overflow: ellipsis;
|
|
100
|
+
white-space: nowrap;
|
|
101
|
+
overflow: hidden;
|
|
98
102
|
}
|
|
99
103
|
|
|
100
104
|
.vitro-focus .vitro-error-text {
|
|
@@ -104,8 +108,11 @@
|
|
|
104
108
|
.vitro-error-text::before {
|
|
105
109
|
content: '';
|
|
106
110
|
display: inline-block;
|
|
111
|
+
vertical-align: text-top;
|
|
107
112
|
height: 16px;
|
|
108
113
|
width: 16px;
|
|
114
|
+
min-width: 16px;
|
|
115
|
+
min-height: 16px;
|
|
109
116
|
margin-right: 4px;
|
|
110
117
|
background-size: 100%;
|
|
111
118
|
background-position: center;
|
|
@@ -159,8 +166,11 @@
|
|
|
159
166
|
}
|
|
160
167
|
|
|
161
168
|
:global(.k-i-calendar) {
|
|
162
|
-
|
|
163
|
-
|
|
169
|
+
height: 20px !important;
|
|
170
|
+
width: 20px !important;
|
|
171
|
+
display: flex !important;
|
|
172
|
+
align-items: center;
|
|
173
|
+
justify-content: center;
|
|
164
174
|
}
|
|
165
175
|
|
|
166
176
|
:global(.k-i-calendar)::before {
|
|
@@ -172,7 +182,7 @@
|
|
|
172
182
|
background-size: 100%;
|
|
173
183
|
background-position: center;
|
|
174
184
|
/* date-picker.svg URL-encoder for SVG */
|
|
175
|
-
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0
|
|
185
|
+
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='Vector'%3E%3Cpath d='M12.1216 8.06594C12.1725 8.11674 12.2129 8.17709 12.2405 8.24353C12.268 8.30997 12.2822 8.38119 12.2822 8.45312C12.2822 8.52506 12.268 8.59628 12.2405 8.66272C12.2129 8.72916 12.1725 8.78951 12.1216 8.84031L8.84031 12.1216C8.78951 12.1725 8.72916 12.2129 8.66272 12.2405C8.59628 12.268 8.52506 12.2822 8.45312 12.2822C8.38119 12.2822 8.30997 12.268 8.24353 12.2405C8.17709 12.2129 8.11674 12.1725 8.06594 12.1216L6.42531 10.4809C6.37447 10.4301 6.33413 10.3697 6.30661 10.3033C6.2791 10.2369 6.26493 10.1657 6.26493 10.0938C6.26493 10.0218 6.2791 9.95064 6.30661 9.88421C6.33413 9.81777 6.37447 9.75741 6.42531 9.70656C6.528 9.60387 6.66728 9.54618 6.8125 9.54618C6.88441 9.54618 6.95561 9.56035 7.02204 9.58786C7.08848 9.61538 7.14884 9.65572 7.19969 9.70656L8.45312 10.9611L11.3472 8.06594C11.398 8.01501 11.4583 7.9746 11.5248 7.94703C11.5912 7.91946 11.6624 7.90527 11.7344 7.90527C11.8063 7.90527 11.8775 7.91946 11.944 7.94703C12.0104 7.9746 12.0708 8.01501 12.1216 8.06594Z' fill='%234A556C'/%3E%3Cpath d='M4.07812 0.25C4.22317 0.25 4.36227 0.307617 4.46482 0.410176C4.56738 0.512735 4.625 0.651835 4.625 0.796875V1.34375H13.375V0.796875C13.375 0.651835 13.4326 0.512735 13.5352 0.410176C13.6377 0.307617 13.7768 0.25 13.9219 0.25C14.0669 0.25 14.206 0.307617 14.3086 0.410176C14.4111 0.512735 14.4688 0.651835 14.4688 0.796875V1.34375H15.5625C16.1427 1.34375 16.6991 1.57422 17.1093 1.98445C17.5195 2.39469 17.75 2.95109 17.75 3.53125V15.5625C17.75 16.1427 17.5195 16.6991 17.1093 17.1093C16.6991 17.5195 16.1427 17.75 15.5625 17.75H2.4375C1.85734 17.75 1.30094 17.5195 0.890704 17.1093C0.480468 16.6991 0.25 16.1427 0.25 15.5625V3.53125C0.25 2.95109 0.480468 2.39469 0.890704 1.98445C1.30094 1.57422 1.85734 1.34375 2.4375 1.34375H3.53125V0.796875C3.53125 0.651835 3.58887 0.512735 3.69143 0.410176C3.79398 0.307617 3.93308 0.25 4.07812 0.25ZM1.34375 4.625V15.5625C1.34375 15.8526 1.45898 16.1308 1.6641 16.3359C1.86922 16.541 2.14742 16.6562 2.4375 16.6562H15.5625C15.8526 16.6562 16.1308 16.541 16.3359 16.3359C16.541 16.1308 16.6562 15.8526 16.6562 15.5625V4.625H1.34375Z' fill='%234A556C'/%3E%3C/g%3E%3C/svg%3E%0A");
|
|
176
186
|
}
|
|
177
187
|
|
|
178
188
|
:global(.k-picker-wrap.k-state-default > .k-select) {
|
|
@@ -106,12 +106,15 @@
|
|
|
106
106
|
}
|
|
107
107
|
|
|
108
108
|
.vitro-error-text {
|
|
109
|
-
display:
|
|
110
|
-
align-items: center;
|
|
109
|
+
display: inline-block;
|
|
111
110
|
color: #D13438;
|
|
112
111
|
font-size: 14px;
|
|
113
112
|
line-height: 135%;
|
|
114
113
|
margin-top: 2px;
|
|
114
|
+
width: 100%;
|
|
115
|
+
text-overflow: ellipsis;
|
|
116
|
+
white-space: nowrap;
|
|
117
|
+
overflow: hidden;
|
|
115
118
|
}
|
|
116
119
|
|
|
117
120
|
.vitro-focus .vitro-error-text {
|
|
@@ -121,8 +124,11 @@
|
|
|
121
124
|
.vitro-error-text::before {
|
|
122
125
|
content: '';
|
|
123
126
|
display: inline-block;
|
|
127
|
+
vertical-align: text-top;
|
|
124
128
|
height: 16px;
|
|
125
129
|
width: 16px;
|
|
130
|
+
min-width: 16px;
|
|
131
|
+
min-height: 16px;
|
|
126
132
|
margin-right: 4px;
|
|
127
133
|
background-size: 100%;
|
|
128
134
|
background-position: center;
|
|
@@ -1,8 +1,14 @@
|
|
|
1
1
|
.vitro-label {
|
|
2
2
|
font-size: inherit;
|
|
3
3
|
margin-left: 0;
|
|
4
|
+
display: inline-block;
|
|
5
|
+
white-space: nowrap;
|
|
6
|
+
text-overflow: ellipsis;
|
|
7
|
+
overflow: hidden;
|
|
8
|
+
max-width: calc(100% - 20px);
|
|
4
9
|
}
|
|
5
10
|
|
|
6
11
|
.vitro-label .vitro-required {
|
|
7
12
|
color: red;
|
|
13
|
+
margin-left: 2px;
|
|
8
14
|
}
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
border-radius: 4px;
|
|
9
9
|
display: flex;
|
|
10
10
|
width: 100%;
|
|
11
|
-
flex-wrap:
|
|
11
|
+
flex-wrap: nowrap;
|
|
12
12
|
align-items: center;
|
|
13
13
|
height: 40px;
|
|
14
14
|
padding: 8px 32px 8px 16px;
|
|
@@ -52,12 +52,16 @@
|
|
|
52
52
|
}
|
|
53
53
|
|
|
54
54
|
.vitro-error-text {
|
|
55
|
-
display:
|
|
55
|
+
display: inline-block;
|
|
56
56
|
align-items: center;
|
|
57
57
|
color: #D13438;
|
|
58
58
|
font-size: 14px;
|
|
59
59
|
line-height: 135%;
|
|
60
60
|
margin-top: 2px;
|
|
61
|
+
width: 100%;
|
|
62
|
+
text-overflow: ellipsis;
|
|
63
|
+
white-space: nowrap;
|
|
64
|
+
overflow: hidden;
|
|
61
65
|
}
|
|
62
66
|
|
|
63
67
|
.vitro-focus .vitro-error-text {
|
|
@@ -67,8 +71,11 @@
|
|
|
67
71
|
.vitro-error-text::before {
|
|
68
72
|
content: '';
|
|
69
73
|
display: inline-block;
|
|
74
|
+
vertical-align: text-top;
|
|
70
75
|
height: 16px;
|
|
71
76
|
width: 16px;
|
|
77
|
+
min-width: 16px;
|
|
78
|
+
min-height: 16px;
|
|
72
79
|
margin-right: 4px;
|
|
73
80
|
background-size: 100%;
|
|
74
81
|
background-position: center;
|
|
@@ -80,7 +87,7 @@
|
|
|
80
87
|
width: 20px;
|
|
81
88
|
display: inline-block;
|
|
82
89
|
right: 0;
|
|
83
|
-
/* copy.svg URL-encoder for SVG */
|
|
90
|
+
/* copy.svg URL-encoder for SVG */
|
|
84
91
|
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='copy-icon'%3E%3Cpath id='Vector' d='M4.33594 4.14517V3.27214C4.33594 2.0877 4.75567 1.66797 5.9401 1.66797H12.7318C13.9162 1.66797 14.3359 2.0877 14.3359 3.27214V10.0638C14.3359 11.2482 13.9162 11.668 12.7318 11.668H11.8414' stroke='%238E98A3' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath id='Vector_2' d='M10.0599 4.33203H3.26823C2.0838 4.33203 1.66406 4.75176 1.66406 5.9362V12.7279C1.66406 13.9123 2.0838 14.332 3.26823 14.332H10.0599C11.2443 14.332 11.6641 13.9123 11.6641 12.7279V5.9362C11.6641 4.75176 11.2443 4.33203 10.0599 4.33203Z' stroke='%238E98A3' stroke-linejoin='round'/%3E%3C/g%3E%3C/svg%3E%0A");
|
|
85
92
|
background-repeat: no-repeat;
|
|
86
93
|
background-position: center;
|
|
@@ -20,7 +20,11 @@
|
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
.vitro-tab :global(.ps) > div:first-child {
|
|
23
|
-
padding:
|
|
23
|
+
padding: 30px 16px 0 16px;
|
|
24
|
+
display: flex;
|
|
25
|
+
flex-wrap: wrap;
|
|
26
|
+
grid-gap: 0 16px;
|
|
27
|
+
align-content: flex-start;
|
|
24
28
|
}
|
|
25
29
|
|
|
26
30
|
.vitro-tab :global(.nav) :global(.dropdown-menu) {
|
|
@@ -97,12 +97,16 @@
|
|
|
97
97
|
}
|
|
98
98
|
|
|
99
99
|
.vitro-error-text {
|
|
100
|
-
display:
|
|
100
|
+
display: inline-block;
|
|
101
101
|
align-items: center;
|
|
102
102
|
color: #D13438;
|
|
103
103
|
font-size: 14px;
|
|
104
104
|
line-height: 135%;
|
|
105
105
|
margin-top: 2px;
|
|
106
|
+
width: 100%;
|
|
107
|
+
text-overflow: ellipsis;
|
|
108
|
+
white-space: nowrap;
|
|
109
|
+
overflow: hidden;
|
|
106
110
|
}
|
|
107
111
|
|
|
108
112
|
.vitro-focus .vitro-error-text {
|
|
@@ -112,8 +116,11 @@
|
|
|
112
116
|
.vitro-error-text::before {
|
|
113
117
|
content: '';
|
|
114
118
|
display: inline-block;
|
|
119
|
+
vertical-align: text-top;
|
|
115
120
|
height: 16px;
|
|
116
121
|
width: 16px;
|
|
122
|
+
min-width: 16px;
|
|
123
|
+
min-height: 16px;
|
|
117
124
|
margin-right: 4px;
|
|
118
125
|
background-size: 100%;
|
|
119
126
|
background-position: center;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export interface CheckboxProps {
|
|
3
|
+
value?: any;
|
|
4
|
+
onChange?: (value: any[] | any, name?: string) => void;
|
|
5
|
+
labelPosition?: string;
|
|
6
|
+
label: string;
|
|
7
|
+
isDisabled?: boolean;
|
|
8
|
+
name: string;
|
|
9
|
+
className?: string;
|
|
10
|
+
}
|
|
11
|
+
export declare const Checkbox: (props: CheckboxProps) => JSX.Element;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
interface LoginProps {
|
|
3
3
|
onSubmit: (userName: string, password: string) => any;
|
|
4
4
|
onResetPassword?: () => any;
|
|
5
|
-
onSaveData?: () => any;
|
|
5
|
+
onSaveData?: (value: any[] | any, name?: string) => any;
|
|
6
6
|
onRegister?: () => any;
|
|
7
7
|
userNameErrorText?: string;
|
|
8
8
|
passwordErrorText?: string;
|
package/dist/index.css
CHANGED
|
@@ -1503,7 +1503,11 @@
|
|
|
1503
1503
|
}
|
|
1504
1504
|
|
|
1505
1505
|
._tab-group_vitro-tab_1Qb50HL .ps > div:first-child {
|
|
1506
|
-
padding:
|
|
1506
|
+
padding: 30px 16px 0 16px;
|
|
1507
|
+
display: flex;
|
|
1508
|
+
flex-wrap: wrap;
|
|
1509
|
+
grid-gap: 0 16px;
|
|
1510
|
+
align-content: flex-start;
|
|
1507
1511
|
}
|
|
1508
1512
|
|
|
1509
1513
|
._tab-group_vitro-tab_1Qb50HL .nav .dropdown-menu {
|
|
@@ -1630,10 +1634,16 @@
|
|
|
1630
1634
|
._label_vitro-label_it8WNUE {
|
|
1631
1635
|
font-size: inherit;
|
|
1632
1636
|
margin-left: 0;
|
|
1637
|
+
display: inline-block;
|
|
1638
|
+
white-space: nowrap;
|
|
1639
|
+
text-overflow: ellipsis;
|
|
1640
|
+
overflow: hidden;
|
|
1641
|
+
max-width: calc(100% - 20px);
|
|
1633
1642
|
}
|
|
1634
1643
|
|
|
1635
1644
|
._label_vitro-label_it8WNUE ._label_vitro-required_2-bSGif {
|
|
1636
1645
|
color: red;
|
|
1646
|
+
margin-left: 2px;
|
|
1637
1647
|
}
|
|
1638
1648
|
|
|
1639
1649
|
._input_vitro-control_1DmPFkF {
|
|
@@ -1758,12 +1768,15 @@
|
|
|
1758
1768
|
}
|
|
1759
1769
|
|
|
1760
1770
|
._input_vitro-error-text_QpZK56k {
|
|
1761
|
-
display:
|
|
1762
|
-
align-items: center;
|
|
1771
|
+
display: inline-block;
|
|
1763
1772
|
color: #D13438;
|
|
1764
1773
|
font-size: 14px;
|
|
1765
1774
|
line-height: 135%;
|
|
1766
1775
|
margin-top: 2px;
|
|
1776
|
+
width: 100%;
|
|
1777
|
+
text-overflow: ellipsis;
|
|
1778
|
+
white-space: nowrap;
|
|
1779
|
+
overflow: hidden;
|
|
1767
1780
|
}
|
|
1768
1781
|
|
|
1769
1782
|
._input_vitro-focus_1txynr8 ._input_vitro-error-text_QpZK56k {
|
|
@@ -1773,8 +1786,11 @@
|
|
|
1773
1786
|
._input_vitro-error-text_QpZK56k::before {
|
|
1774
1787
|
content: '';
|
|
1775
1788
|
display: inline-block;
|
|
1789
|
+
vertical-align: text-top;
|
|
1776
1790
|
height: 16px;
|
|
1777
1791
|
width: 16px;
|
|
1792
|
+
min-width: 16px;
|
|
1793
|
+
min-height: 16px;
|
|
1778
1794
|
margin-right: 4px;
|
|
1779
1795
|
background-size: 100%;
|
|
1780
1796
|
background-position: center;
|
|
@@ -1940,6 +1956,61 @@
|
|
|
1940
1956
|
._issue-tile_vitro-issue-tile_2D7E9Y-.vitro-active ._issue-tile_vitro-control_3V6_Ze7 textarea {
|
|
1941
1957
|
background: #F3F8FF;
|
|
1942
1958
|
}
|
|
1959
|
+
._checkbox_vitro-control_DfB5DDM {
|
|
1960
|
+
width: 100%;
|
|
1961
|
+
position: relative;
|
|
1962
|
+
margin-bottom: 32px;
|
|
1963
|
+
}
|
|
1964
|
+
|
|
1965
|
+
._checkbox_vitro-checkbox-content_2fBG1zl {
|
|
1966
|
+
width: 100%;
|
|
1967
|
+
display: flex;
|
|
1968
|
+
align-items: center;
|
|
1969
|
+
}
|
|
1970
|
+
|
|
1971
|
+
._checkbox_vitro-checkbox-content_2fBG1zl input {
|
|
1972
|
+
width: 24px;
|
|
1973
|
+
height: 24px;
|
|
1974
|
+
margin-right: 6px;
|
|
1975
|
+
cursor: pointer;
|
|
1976
|
+
}
|
|
1977
|
+
|
|
1978
|
+
._checkbox_vitro-checkbox-content_2fBG1zl input::before,
|
|
1979
|
+
._checkbox_vitro-checkbox-content_2fBG1zl input:checked::before {
|
|
1980
|
+
content: '';
|
|
1981
|
+
display: block;
|
|
1982
|
+
width: 24px;
|
|
1983
|
+
height: 24px;
|
|
1984
|
+
background: #fff;
|
|
1985
|
+
background-size: 100%;
|
|
1986
|
+
background-position: center;
|
|
1987
|
+
}
|
|
1988
|
+
|
|
1989
|
+
._checkbox_vitro-checkbox-content_2fBG1zl input::before {
|
|
1990
|
+
/* checkbox-big-empty.svg URL-encoder for SVG */
|
|
1991
|
+
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='Checkbox-big'%3E%3Crect id='Background' x='2.5' y='2.5' width='19' height='19' rx='3.5' stroke='%23C0CAD5'/%3E%3C/g%3E%3C/svg%3E%0A");
|
|
1992
|
+
}
|
|
1993
|
+
|
|
1994
|
+
._checkbox_vitro-checkbox-content_2fBG1zl input:checked::before {
|
|
1995
|
+
/* checkbox-big-active.svg URL-encoder for SVG */
|
|
1996
|
+
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='2' y='2' width='20' height='20' rx='2.5' fill='%234292F7'/%3E%3Cpath d='M16.7062 8.50593C17.0826 8.86144 17.0996 9.45479 16.7441 9.83121L11.4316 15.4562C11.2577 15.6404 11.0166 15.7463 10.7634 15.7499C10.5101 15.7535 10.2662 15.6545 10.0871 15.4754L7.27459 12.6629C6.90847 12.2968 6.90847 11.7032 7.27459 11.3371C7.6407 10.971 8.2343 10.971 8.60041 11.3371L10.7308 13.4675L15.3809 8.54379C15.7364 8.16737 16.3298 8.15042 16.7062 8.50593Z' fill='white'/%3E%3C/svg%3E%0A");
|
|
1997
|
+
}
|
|
1998
|
+
|
|
1999
|
+
._checkbox_vitro-label_qZxCbCP {
|
|
2000
|
+
color: #222D44;
|
|
2001
|
+
font-size: 14px;
|
|
2002
|
+
line-height: 135%;
|
|
2003
|
+
}
|
|
2004
|
+
|
|
2005
|
+
._checkbox_vitro-left-label_Uu1Tp31 {
|
|
2006
|
+
display: flex;
|
|
2007
|
+
align-items: center;
|
|
2008
|
+
}
|
|
2009
|
+
|
|
2010
|
+
._checkbox_vitro-left-label_Uu1Tp31 ._checkbox_vitro-label_qZxCbCP {
|
|
2011
|
+
margin-right: 6px;
|
|
2012
|
+
}
|
|
2013
|
+
|
|
1943
2014
|
._login_vitro-login-layout_1C8owlz {
|
|
1944
2015
|
width: 100vw;
|
|
1945
2016
|
height: 100vh;
|
|
@@ -2088,6 +2159,14 @@
|
|
|
2088
2159
|
line-height: 135%;
|
|
2089
2160
|
}
|
|
2090
2161
|
|
|
2162
|
+
._login_vitro-login-checkbox_39NOnZg {
|
|
2163
|
+
margin-bottom: 0;
|
|
2164
|
+
}
|
|
2165
|
+
|
|
2166
|
+
._login_vitro-login-checkbox_39NOnZg div {
|
|
2167
|
+
font-size: 16px;
|
|
2168
|
+
}
|
|
2169
|
+
|
|
2091
2170
|
._login_vitro-button_2OCqKtD {
|
|
2092
2171
|
font-family: 'InterMedium' !important;
|
|
2093
2172
|
width: 100%;
|
|
@@ -2255,7 +2334,7 @@
|
|
|
2255
2334
|
}
|
|
2256
2335
|
|
|
2257
2336
|
._date-picker_vitro-read-only_2NZoMN5 .k-picker-wrap .k-select {
|
|
2258
|
-
display: none;
|
|
2337
|
+
display: none !important;
|
|
2259
2338
|
}
|
|
2260
2339
|
|
|
2261
2340
|
._date-picker_vitro-error_3DkgZiN ._date-picker_vitro-label_2jh9qxb {
|
|
@@ -2283,12 +2362,16 @@
|
|
|
2283
2362
|
}
|
|
2284
2363
|
|
|
2285
2364
|
._date-picker_vitro-error-text_15CdrRj {
|
|
2286
|
-
display:
|
|
2287
|
-
align
|
|
2365
|
+
display: inline-block;
|
|
2366
|
+
vertical-align: text-top;
|
|
2288
2367
|
color: #D13438;
|
|
2289
2368
|
font-size: 14px;
|
|
2290
2369
|
line-height: 135%;
|
|
2291
2370
|
margin-top: 2px;
|
|
2371
|
+
width: 100%;
|
|
2372
|
+
text-overflow: ellipsis;
|
|
2373
|
+
white-space: nowrap;
|
|
2374
|
+
overflow: hidden;
|
|
2292
2375
|
}
|
|
2293
2376
|
|
|
2294
2377
|
._date-picker_vitro-focus_2cJKcKr ._date-picker_vitro-error-text_15CdrRj {
|
|
@@ -2298,8 +2381,11 @@
|
|
|
2298
2381
|
._date-picker_vitro-error-text_15CdrRj::before {
|
|
2299
2382
|
content: '';
|
|
2300
2383
|
display: inline-block;
|
|
2384
|
+
vertical-align: text-top;
|
|
2301
2385
|
height: 16px;
|
|
2302
2386
|
width: 16px;
|
|
2387
|
+
min-width: 16px;
|
|
2388
|
+
min-height: 16px;
|
|
2303
2389
|
margin-right: 4px;
|
|
2304
2390
|
background-size: 100%;
|
|
2305
2391
|
background-position: center;
|
|
@@ -2353,8 +2439,11 @@
|
|
|
2353
2439
|
}
|
|
2354
2440
|
|
|
2355
2441
|
.k-i-calendar {
|
|
2356
|
-
|
|
2357
|
-
|
|
2442
|
+
height: 20px !important;
|
|
2443
|
+
width: 20px !important;
|
|
2444
|
+
display: flex !important;
|
|
2445
|
+
align-items: center;
|
|
2446
|
+
justify-content: center;
|
|
2358
2447
|
}
|
|
2359
2448
|
|
|
2360
2449
|
.k-i-calendar::before {
|
|
@@ -2366,7 +2455,7 @@
|
|
|
2366
2455
|
background-size: 100%;
|
|
2367
2456
|
background-position: center;
|
|
2368
2457
|
/* date-picker.svg URL-encoder for SVG */
|
|
2369
|
-
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0
|
|
2458
|
+
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='Vector'%3E%3Cpath d='M12.1216 8.06594C12.1725 8.11674 12.2129 8.17709 12.2405 8.24353C12.268 8.30997 12.2822 8.38119 12.2822 8.45312C12.2822 8.52506 12.268 8.59628 12.2405 8.66272C12.2129 8.72916 12.1725 8.78951 12.1216 8.84031L8.84031 12.1216C8.78951 12.1725 8.72916 12.2129 8.66272 12.2405C8.59628 12.268 8.52506 12.2822 8.45312 12.2822C8.38119 12.2822 8.30997 12.268 8.24353 12.2405C8.17709 12.2129 8.11674 12.1725 8.06594 12.1216L6.42531 10.4809C6.37447 10.4301 6.33413 10.3697 6.30661 10.3033C6.2791 10.2369 6.26493 10.1657 6.26493 10.0938C6.26493 10.0218 6.2791 9.95064 6.30661 9.88421C6.33413 9.81777 6.37447 9.75741 6.42531 9.70656C6.528 9.60387 6.66728 9.54618 6.8125 9.54618C6.88441 9.54618 6.95561 9.56035 7.02204 9.58786C7.08848 9.61538 7.14884 9.65572 7.19969 9.70656L8.45312 10.9611L11.3472 8.06594C11.398 8.01501 11.4583 7.9746 11.5248 7.94703C11.5912 7.91946 11.6624 7.90527 11.7344 7.90527C11.8063 7.90527 11.8775 7.91946 11.944 7.94703C12.0104 7.9746 12.0708 8.01501 12.1216 8.06594Z' fill='%234A556C'/%3E%3Cpath d='M4.07812 0.25C4.22317 0.25 4.36227 0.307617 4.46482 0.410176C4.56738 0.512735 4.625 0.651835 4.625 0.796875V1.34375H13.375V0.796875C13.375 0.651835 13.4326 0.512735 13.5352 0.410176C13.6377 0.307617 13.7768 0.25 13.9219 0.25C14.0669 0.25 14.206 0.307617 14.3086 0.410176C14.4111 0.512735 14.4688 0.651835 14.4688 0.796875V1.34375H15.5625C16.1427 1.34375 16.6991 1.57422 17.1093 1.98445C17.5195 2.39469 17.75 2.95109 17.75 3.53125V15.5625C17.75 16.1427 17.5195 16.6991 17.1093 17.1093C16.6991 17.5195 16.1427 17.75 15.5625 17.75H2.4375C1.85734 17.75 1.30094 17.5195 0.890704 17.1093C0.480468 16.6991 0.25 16.1427 0.25 15.5625V3.53125C0.25 2.95109 0.480468 2.39469 0.890704 1.98445C1.30094 1.57422 1.85734 1.34375 2.4375 1.34375H3.53125V0.796875C3.53125 0.651835 3.58887 0.512735 3.69143 0.410176C3.79398 0.307617 3.93308 0.25 4.07812 0.25ZM1.34375 4.625V15.5625C1.34375 15.8526 1.45898 16.1308 1.6641 16.3359C1.86922 16.541 2.14742 16.6562 2.4375 16.6562H15.5625C15.8526 16.6562 16.1308 16.541 16.3359 16.3359C16.541 16.1308 16.6562 15.8526 16.6562 15.5625V4.625H1.34375Z' fill='%234A556C'/%3E%3C/g%3E%3C/svg%3E%0A");
|
|
2370
2459
|
}
|
|
2371
2460
|
|
|
2372
2461
|
.k-picker-wrap.k-state-default > .k-select {
|
|
@@ -2615,12 +2704,16 @@
|
|
|
2615
2704
|
}
|
|
2616
2705
|
|
|
2617
2706
|
._time-picker_vitro-error-text_2BNoBKW {
|
|
2618
|
-
display:
|
|
2707
|
+
display: inline-block;
|
|
2619
2708
|
align-items: center;
|
|
2620
2709
|
color: #D13438;
|
|
2621
2710
|
font-size: 14px;
|
|
2622
2711
|
line-height: 135%;
|
|
2623
2712
|
margin-top: 2px;
|
|
2713
|
+
width: 100%;
|
|
2714
|
+
text-overflow: ellipsis;
|
|
2715
|
+
white-space: nowrap;
|
|
2716
|
+
overflow: hidden;
|
|
2624
2717
|
}
|
|
2625
2718
|
|
|
2626
2719
|
._time-picker_vitro-focus_wmhPjvE ._time-picker_vitro-error-text_2BNoBKW {
|
|
@@ -2630,8 +2723,11 @@
|
|
|
2630
2723
|
._time-picker_vitro-error-text_2BNoBKW::before {
|
|
2631
2724
|
content: '';
|
|
2632
2725
|
display: inline-block;
|
|
2726
|
+
vertical-align: text-top;
|
|
2633
2727
|
height: 16px;
|
|
2634
2728
|
width: 16px;
|
|
2729
|
+
min-width: 16px;
|
|
2730
|
+
min-height: 16px;
|
|
2635
2731
|
margin-right: 4px;
|
|
2636
2732
|
background-size: 100%;
|
|
2637
2733
|
background-position: center;
|
|
@@ -2805,8 +2901,7 @@
|
|
|
2805
2901
|
._lookup-picker-selected-item_vitro-selected-item_hw-euth {
|
|
2806
2902
|
display: inline;
|
|
2807
2903
|
margin: 0 6px 0 0;
|
|
2808
|
-
|
|
2809
|
-
align-items: center;
|
|
2904
|
+
white-space: nowrap;
|
|
2810
2905
|
}
|
|
2811
2906
|
|
|
2812
2907
|
._lookup-picker-html-value_vitro-item-html-value_2QBoTey {
|
|
@@ -2899,7 +2994,7 @@
|
|
|
2899
2994
|
border-radius: 4px;
|
|
2900
2995
|
display: flex;
|
|
2901
2996
|
width: 100%;
|
|
2902
|
-
flex-wrap:
|
|
2997
|
+
flex-wrap: nowrap;
|
|
2903
2998
|
align-items: center;
|
|
2904
2999
|
height: 40px;
|
|
2905
3000
|
padding: 8px 32px 8px 16px;
|
|
@@ -2950,12 +3045,16 @@
|
|
|
2950
3045
|
}
|
|
2951
3046
|
|
|
2952
3047
|
._lookup-picker_vitro-error-text_273lqvD {
|
|
2953
|
-
display:
|
|
3048
|
+
display: inline-block;
|
|
2954
3049
|
align-items: center;
|
|
2955
3050
|
color: #D13438;
|
|
2956
3051
|
font-size: 14px;
|
|
2957
3052
|
line-height: 135%;
|
|
2958
3053
|
margin-top: 2px;
|
|
3054
|
+
width: 100%;
|
|
3055
|
+
text-overflow: ellipsis;
|
|
3056
|
+
white-space: nowrap;
|
|
3057
|
+
overflow: hidden;
|
|
2959
3058
|
}
|
|
2960
3059
|
|
|
2961
3060
|
._lookup-picker_vitro-focus_2UGpxXD ._lookup-picker_vitro-error-text_273lqvD {
|
|
@@ -2965,8 +3064,11 @@
|
|
|
2965
3064
|
._lookup-picker_vitro-error-text_273lqvD::before {
|
|
2966
3065
|
content: '';
|
|
2967
3066
|
display: inline-block;
|
|
3067
|
+
vertical-align: text-top;
|
|
2968
3068
|
height: 16px;
|
|
2969
3069
|
width: 16px;
|
|
3070
|
+
min-width: 16px;
|
|
3071
|
+
min-height: 16px;
|
|
2970
3072
|
margin-right: 4px;
|
|
2971
3073
|
background-size: 100%;
|
|
2972
3074
|
background-position: center;
|
|
@@ -2978,7 +3080,7 @@
|
|
|
2978
3080
|
width: 20px;
|
|
2979
3081
|
display: inline-block;
|
|
2980
3082
|
right: 0;
|
|
2981
|
-
/* copy.svg URL-encoder for SVG */
|
|
3083
|
+
/* copy.svg URL-encoder for SVG */
|
|
2982
3084
|
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='copy-icon'%3E%3Cpath id='Vector' d='M4.33594 4.14517V3.27214C4.33594 2.0877 4.75567 1.66797 5.9401 1.66797H12.7318C13.9162 1.66797 14.3359 2.0877 14.3359 3.27214V10.0638C14.3359 11.2482 13.9162 11.668 12.7318 11.668H11.8414' stroke='%238E98A3' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath id='Vector_2' d='M10.0599 4.33203H3.26823C2.0838 4.33203 1.66406 4.75176 1.66406 5.9362V12.7279C1.66406 13.9123 2.0838 14.332 3.26823 14.332H10.0599C11.2443 14.332 11.6641 13.9123 11.6641 12.7279V5.9362C11.6641 4.75176 11.2443 4.33203 10.0599 4.33203Z' stroke='%238E98A3' stroke-linejoin='round'/%3E%3C/g%3E%3C/svg%3E%0A");
|
|
2983
3085
|
background-repeat: no-repeat;
|
|
2984
3086
|
background-position: center;
|
package/dist/index.d.ts
CHANGED
|
@@ -52,6 +52,7 @@ import { DialogFooter } from './controls/Dialog/DialogFooter';
|
|
|
52
52
|
import { Avatar } from './controls/Avatar/Avatar';
|
|
53
53
|
import { UserProfile } from './controls/UserProfile/UserProfile';
|
|
54
54
|
import { UserLookupPicker } from './controls/UserLookupPicker/UserLookupPicker';
|
|
55
|
+
import { Checkbox, CheckboxProps } from './controls/Checkbox/Checkbox';
|
|
55
56
|
import { IssueTile } from './controls/IssueTile/IssueTile';
|
|
56
57
|
import { DropdownButton } from './controls/DropdownButton/DropdownButton';
|
|
57
58
|
import { DropdownItem } from './controls/DropdownButton/DropdownItem';
|
|
@@ -82,5 +83,6 @@ export { Dialog, DialogContent, DialogFooter };
|
|
|
82
83
|
export { Avatar };
|
|
83
84
|
export { UserProfile };
|
|
84
85
|
export { UserLookupPicker };
|
|
86
|
+
export { Checkbox, CheckboxProps };
|
|
85
87
|
export { IssueTile };
|
|
86
88
|
export { DropdownButton, DropdownItem };
|