@rufous/ui 0.1.18 → 0.1.21
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/Buttons/{Button.cjs → addButton.cjs} +9 -12
- package/dist/Buttons/addButton.css +68 -0
- package/dist/Buttons/addButton.d.cts +8 -0
- package/dist/Buttons/addButton.d.ts +8 -0
- package/dist/Buttons/addButton.js +7 -0
- package/dist/Buttons/cancelButton.cjs +37 -0
- package/dist/Buttons/cancelButton.css +68 -0
- package/dist/Buttons/cancelButton.d.cts +8 -0
- package/dist/Buttons/cancelButton.d.ts +8 -0
- package/dist/Buttons/cancelButton.js +7 -0
- package/dist/Buttons/index.cjs +75 -0
- package/dist/Buttons/index.css +68 -0
- package/dist/Buttons/index.d.cts +4 -0
- package/dist/Buttons/index.d.ts +4 -0
- package/dist/Buttons/index.js +16 -0
- package/dist/Buttons/submitButton.cjs +53 -0
- package/dist/Buttons/submitButton.css +68 -0
- package/dist/Buttons/submitButton.d.cts +11 -0
- package/dist/Buttons/submitButton.d.ts +11 -0
- package/dist/Buttons/submitButton.js +7 -0
- package/dist/CheckBoxes/CheckBox.js +25 -3
- package/dist/TextFields/FloatingInput.js +28 -3
- package/dist/chunk-54KCNQAW.js +24 -0
- package/dist/chunk-5UEJAVFK.js +10 -0
- package/dist/chunk-7KARALMQ.js +8 -0
- package/dist/chunk-GESVGIAP.js +10 -0
- package/dist/chunk-N65GKZS6.js +10 -0
- package/dist/chunk-QIEQRNBE.js +10 -0
- package/dist/chunk-QPGJCRBS.js +0 -0
- package/dist/icons/helpOutlinedIcon.cjs +1 -53
- package/dist/icons/helpOutlinedIcon.js +1 -1
- package/dist/icons/index.cjs +3 -200
- package/dist/icons/index.js +35 -35
- package/dist/icons/nineDotMenuIcon.cjs +1 -146
- package/dist/icons/nineDotMenuIcon.js +1 -1
- package/dist/icons/notificationIcon.cjs +1 -1
- package/dist/icons/notificationIcon.js +1 -1
- package/dist/icons/rufousAiIcon.cjs +37 -0
- package/dist/icons/rufousAiIcon.d.cts +8 -0
- package/dist/icons/rufousAiIcon.d.ts +8 -0
- package/dist/icons/rufousAiIcon.js +7 -0
- package/dist/main.cjs +210 -435
- package/dist/main.css +69 -0
- package/dist/main.d.cts +3 -3
- package/dist/main.d.ts +3 -3
- package/dist/main.js +51 -49
- package/dist/styles/button.css +68 -0
- package/dist/styles/button.d.cts +2 -0
- package/dist/styles/button.d.ts +2 -0
- package/package.json +1 -1
- package/dist/Buttons/Button.d.cjs +0 -17
- package/dist/Buttons/Button.d.cts +0 -10
- package/dist/Buttons/Button.d.d.cts +0 -10
- package/dist/Buttons/Button.d.d.ts +0 -10
- package/dist/Buttons/Button.d.ts +0 -10
- package/dist/Buttons/Button.js +0 -6
- package/dist/chunk-ASP3DBRX.js +0 -9
- package/dist/chunk-AWA5Y5LH.js +0 -32
- package/dist/chunk-D7SFBVJY.js +0 -155
- package/dist/chunk-MWCKUVQG.js +0 -10
- package/dist/chunk-PULIGWAP.js +0 -62
- package/dist/chunk-QKDJLUKZ.js +0 -29
- /package/dist/{Buttons/Button.d.js → chunk-QGVJQLGY.js} +0 -0
package/dist/main.css
CHANGED
|
@@ -7,3 +7,72 @@
|
|
|
7
7
|
}
|
|
8
8
|
.act-icon {
|
|
9
9
|
}
|
|
10
|
+
|
|
11
|
+
/* lib/styles/button.css */
|
|
12
|
+
.cancel-btn {
|
|
13
|
+
text-transform: uppercase;
|
|
14
|
+
min-width: 84px;
|
|
15
|
+
font-weight: normal;
|
|
16
|
+
font-size: 12px;
|
|
17
|
+
padding: 7px 10px;
|
|
18
|
+
border: 1px solid rgb(164, 27, 6);
|
|
19
|
+
border-radius: 34px;
|
|
20
|
+
background: #fff;
|
|
21
|
+
color: rgb(164, 27, 6);
|
|
22
|
+
cursor: pointer;
|
|
23
|
+
transition:
|
|
24
|
+
background-color 250ms,
|
|
25
|
+
box-shadow 250ms,
|
|
26
|
+
border-color 250ms,
|
|
27
|
+
color 250ms;
|
|
28
|
+
box-shadow:
|
|
29
|
+
rgba(0, 0, 0, 0.2) 0px 3px 1px -2px,
|
|
30
|
+
rgba(0, 0, 0, 0.14) 0px 2px 2px 0px,
|
|
31
|
+
rgba(0, 0, 0, 0.12) 0px 1px 5px 0px;
|
|
32
|
+
}
|
|
33
|
+
.cancel-btn:hover {
|
|
34
|
+
box-shadow:
|
|
35
|
+
rgba(0, 0, 0, 0.2) 0px 2px 4px -1px,
|
|
36
|
+
rgba(0, 0, 0, 0.14) 0px 4px 5px 0px,
|
|
37
|
+
rgba(0, 0, 0, 0.12) 0px 1px 10px 0px;
|
|
38
|
+
}
|
|
39
|
+
.cancel-btn:disabled {
|
|
40
|
+
background-color: #e0e0e0;
|
|
41
|
+
cursor: not-allowed;
|
|
42
|
+
}
|
|
43
|
+
.submit-btn {
|
|
44
|
+
background-color: #9b1906;
|
|
45
|
+
color: #fff;
|
|
46
|
+
font-size: 12px;
|
|
47
|
+
text-transform: uppercase;
|
|
48
|
+
min-width: 92px;
|
|
49
|
+
height: 38px;
|
|
50
|
+
border: none;
|
|
51
|
+
border-radius: 6px;
|
|
52
|
+
cursor: pointer;
|
|
53
|
+
transition: background-color 250ms ease-in-out;
|
|
54
|
+
}
|
|
55
|
+
.submit-btn:hover {
|
|
56
|
+
background-color: #9b1906;
|
|
57
|
+
}
|
|
58
|
+
.submit-btn:disabled {
|
|
59
|
+
background-color: #e0e0e0;
|
|
60
|
+
cursor: not-allowed;
|
|
61
|
+
}
|
|
62
|
+
.add-btn {
|
|
63
|
+
background: #ffffff;
|
|
64
|
+
border: 1px solid #a41b06;
|
|
65
|
+
border-radius: 34px;
|
|
66
|
+
font-weight: normal;
|
|
67
|
+
font-size: 12px;
|
|
68
|
+
padding: 7px 12px;
|
|
69
|
+
color: #a41b06;
|
|
70
|
+
cursor: pointer;
|
|
71
|
+
transition: all 0.25s ease-in-out;
|
|
72
|
+
text-transform: uppercase;
|
|
73
|
+
box-shadow: none;
|
|
74
|
+
}
|
|
75
|
+
.add-btn:hover {
|
|
76
|
+
background: #a41b06;
|
|
77
|
+
color: #ffffff;
|
|
78
|
+
}
|
package/dist/main.d.cts
CHANGED
|
@@ -1,6 +1,3 @@
|
|
|
1
|
-
export { Button } from './Buttons/Button.d.cjs';
|
|
2
|
-
export { FloatingInput } from './TextFields/FloatingInput.d.cjs';
|
|
3
|
-
export { Checkbox } from './CheckBoxes/CheckBox.d.cjs';
|
|
4
1
|
export { APP_THEMES } from './utils/constants.cjs';
|
|
5
2
|
export { default as ArchivedIcon } from './icons/archivedIcon.cjs';
|
|
6
3
|
export { default as CopyIcon } from './icons/copyIcon.cjs';
|
|
@@ -51,5 +48,8 @@ export { default as IndustryIcon } from './icons/industryIcon.cjs';
|
|
|
51
48
|
export { default as MinExperienceIcon } from './icons/minExperienceIcon.cjs';
|
|
52
49
|
export { default as ProjectIcon } from './icons/projectIcon.cjs';
|
|
53
50
|
export { default as RolesIcon } from './icons/rolesIcon.cjs';
|
|
51
|
+
export { default as AddButton } from './Buttons/addButton.cjs';
|
|
52
|
+
export { default as SubmitButton } from './Buttons/submitButton.cjs';
|
|
53
|
+
export { default as CancelButton } from './Buttons/cancelButton.cjs';
|
|
54
54
|
export { RufousThemeProvider, useRufousTheme } from './Contexts/rufousThemeProvider.cjs';
|
|
55
55
|
import 'react';
|
package/dist/main.d.ts
CHANGED
|
@@ -1,6 +1,3 @@
|
|
|
1
|
-
export { Button } from './Buttons/Button.d.js';
|
|
2
|
-
export { FloatingInput } from './TextFields/FloatingInput.d.js';
|
|
3
|
-
export { Checkbox } from './CheckBoxes/CheckBox.d.js';
|
|
4
1
|
export { APP_THEMES } from './utils/constants.js';
|
|
5
2
|
export { default as ArchivedIcon } from './icons/archivedIcon.js';
|
|
6
3
|
export { default as CopyIcon } from './icons/copyIcon.js';
|
|
@@ -51,5 +48,8 @@ export { default as IndustryIcon } from './icons/industryIcon.js';
|
|
|
51
48
|
export { default as MinExperienceIcon } from './icons/minExperienceIcon.js';
|
|
52
49
|
export { default as ProjectIcon } from './icons/projectIcon.js';
|
|
53
50
|
export { default as RolesIcon } from './icons/rolesIcon.js';
|
|
51
|
+
export { default as AddButton } from './Buttons/addButton.js';
|
|
52
|
+
export { default as SubmitButton } from './Buttons/submitButton.js';
|
|
53
|
+
export { default as CancelButton } from './Buttons/cancelButton.js';
|
|
54
54
|
export { RufousThemeProvider, useRufousTheme } from './Contexts/rufousThemeProvider.js';
|
|
55
55
|
import 'react';
|
package/dist/main.js
CHANGED
|
@@ -1,4 +1,13 @@
|
|
|
1
1
|
import "./chunk-CC7BNJL3.js";
|
|
2
|
+
import {
|
|
3
|
+
unArchivedIcon_default
|
|
4
|
+
} from "./chunk-ZJAV3FEQ.js";
|
|
5
|
+
import {
|
|
6
|
+
unsubscribeIcon_default
|
|
7
|
+
} from "./chunk-NMMC4ATV.js";
|
|
8
|
+
import {
|
|
9
|
+
uploadIcon_default
|
|
10
|
+
} from "./chunk-DXJ745NZ.js";
|
|
2
11
|
import {
|
|
3
12
|
userAssignIcon_default
|
|
4
13
|
} from "./chunk-BH53P2UM.js";
|
|
@@ -8,6 +17,15 @@ import {
|
|
|
8
17
|
import {
|
|
9
18
|
workItemIcon_default
|
|
10
19
|
} from "./chunk-QJPQC544.js";
|
|
20
|
+
import {
|
|
21
|
+
rufousBirdIcon_default
|
|
22
|
+
} from "./chunk-DMP72IAP.js";
|
|
23
|
+
import {
|
|
24
|
+
rufousLauncherBird_default
|
|
25
|
+
} from "./chunk-QZFGQ5JM.js";
|
|
26
|
+
import {
|
|
27
|
+
sidebarIcon_default
|
|
28
|
+
} from "./chunk-CSKTBLQQ.js";
|
|
11
29
|
import {
|
|
12
30
|
subscribeIcon_default
|
|
13
31
|
} from "./chunk-ZDVP4SUD.js";
|
|
@@ -24,14 +42,11 @@ import {
|
|
|
24
42
|
trashIcon_default
|
|
25
43
|
} from "./chunk-6KIFTMUN.js";
|
|
26
44
|
import {
|
|
27
|
-
|
|
28
|
-
} from "./chunk-
|
|
29
|
-
import {
|
|
30
|
-
unsubscribeIcon_default
|
|
31
|
-
} from "./chunk-NMMC4ATV.js";
|
|
45
|
+
questionTypeCodingIcon_default
|
|
46
|
+
} from "./chunk-FOUXNPQA.js";
|
|
32
47
|
import {
|
|
33
|
-
|
|
34
|
-
} from "./chunk-
|
|
48
|
+
questionTypeDescriptiveIcon_default
|
|
49
|
+
} from "./chunk-C7B23GTE.js";
|
|
35
50
|
import {
|
|
36
51
|
questionTypeMultipleIcon_default
|
|
37
52
|
} from "./chunk-XCLXQOLP.js";
|
|
@@ -48,17 +63,14 @@ import {
|
|
|
48
63
|
rolesIcon_default
|
|
49
64
|
} from "./chunk-RJ43D3XB.js";
|
|
50
65
|
import {
|
|
51
|
-
|
|
52
|
-
} from "./chunk-
|
|
53
|
-
import {
|
|
54
|
-
rufousLauncherBird_default
|
|
55
|
-
} from "./chunk-QZFGQ5JM.js";
|
|
66
|
+
minExperienceIcon_default
|
|
67
|
+
} from "./chunk-MKK7M3BH.js";
|
|
56
68
|
import {
|
|
57
|
-
|
|
58
|
-
} from "./chunk-
|
|
69
|
+
nineDotMenuIcon_default
|
|
70
|
+
} from "./chunk-GESVGIAP.js";
|
|
59
71
|
import {
|
|
60
72
|
notificationIcon_default
|
|
61
|
-
} from "./chunk-
|
|
73
|
+
} from "./chunk-QIEQRNBE.js";
|
|
62
74
|
import {
|
|
63
75
|
projectIcon_default
|
|
64
76
|
} from "./chunk-BYJP2WNC.js";
|
|
@@ -75,11 +87,11 @@ import {
|
|
|
75
87
|
questionTypeAllIcon_default
|
|
76
88
|
} from "./chunk-WHGVO3HV.js";
|
|
77
89
|
import {
|
|
78
|
-
|
|
79
|
-
} from "./chunk-
|
|
90
|
+
functionIcon_default
|
|
91
|
+
} from "./chunk-ZAYWFYP4.js";
|
|
80
92
|
import {
|
|
81
|
-
|
|
82
|
-
} from "./chunk-
|
|
93
|
+
helpOutlinedIcon_default
|
|
94
|
+
} from "./chunk-5UEJAVFK.js";
|
|
83
95
|
import {
|
|
84
96
|
hierarchyIcon_default
|
|
85
97
|
} from "./chunk-WZAU77G7.js";
|
|
@@ -96,11 +108,11 @@ import {
|
|
|
96
108
|
logsIcon_default
|
|
97
109
|
} from "./chunk-N4EJKMJK.js";
|
|
98
110
|
import {
|
|
99
|
-
|
|
100
|
-
} from "./chunk-
|
|
111
|
+
difficultyEasyIcon_default
|
|
112
|
+
} from "./chunk-JI5XMLWT.js";
|
|
101
113
|
import {
|
|
102
|
-
|
|
103
|
-
} from "./chunk-
|
|
114
|
+
difficultyHardIcon_default
|
|
115
|
+
} from "./chunk-WXANSSXF.js";
|
|
104
116
|
import {
|
|
105
117
|
difficultyMediumIcon_default
|
|
106
118
|
} from "./chunk-XPJVVKOU.js";
|
|
@@ -120,14 +132,12 @@ import {
|
|
|
120
132
|
engagementIcon_default
|
|
121
133
|
} from "./chunk-FSRABKKC.js";
|
|
122
134
|
import {
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
helpOutlinedIcon_default
|
|
127
|
-
} from "./chunk-PULIGWAP.js";
|
|
135
|
+
RufousThemeProvider,
|
|
136
|
+
useRufousTheme
|
|
137
|
+
} from "./chunk-BCGCLMKA.js";
|
|
128
138
|
import {
|
|
129
|
-
|
|
130
|
-
} from "./chunk-
|
|
139
|
+
APP_THEMES
|
|
140
|
+
} from "./chunk-2FHTGYR4.js";
|
|
131
141
|
import {
|
|
132
142
|
activateUserIcon_default
|
|
133
143
|
} from "./chunk-AH6RCYDL.js";
|
|
@@ -143,32 +153,24 @@ import {
|
|
|
143
153
|
import {
|
|
144
154
|
difficultyAllIcon_default
|
|
145
155
|
} from "./chunk-PPNZC5ZQ.js";
|
|
156
|
+
import "./chunk-QPGJCRBS.js";
|
|
146
157
|
import {
|
|
147
|
-
|
|
148
|
-
} from "./chunk-
|
|
149
|
-
import {
|
|
150
|
-
difficultyHardIcon_default
|
|
151
|
-
} from "./chunk-WXANSSXF.js";
|
|
152
|
-
import {
|
|
153
|
-
Button
|
|
154
|
-
} from "./chunk-ASP3DBRX.js";
|
|
158
|
+
addButton_default
|
|
159
|
+
} from "./chunk-N65GKZS6.js";
|
|
155
160
|
import {
|
|
156
|
-
|
|
157
|
-
} from "./chunk-
|
|
161
|
+
cancelButton_default
|
|
162
|
+
} from "./chunk-7KARALMQ.js";
|
|
158
163
|
import {
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
import {
|
|
163
|
-
APP_THEMES
|
|
164
|
-
} from "./chunk-2FHTGYR4.js";
|
|
164
|
+
submitButton_default
|
|
165
|
+
} from "./chunk-54KCNQAW.js";
|
|
166
|
+
import "./chunk-QGVJQLGY.js";
|
|
165
167
|
export {
|
|
166
168
|
APP_THEMES,
|
|
167
169
|
activateUserIcon_default as ActivateUserIcon,
|
|
170
|
+
addButton_default as AddButton,
|
|
168
171
|
archivedIcon_default as ArchivedIcon,
|
|
169
172
|
assignGroupIcon_default as AssignGroupIcon,
|
|
170
|
-
|
|
171
|
-
Checkbox,
|
|
173
|
+
cancelButton_default as CancelButton,
|
|
172
174
|
copyIcon_default as CopyIcon,
|
|
173
175
|
difficultyAllIcon_default as DifficultyAllIcon,
|
|
174
176
|
difficultyEasyIcon_default as DifficultyEasyIcon,
|
|
@@ -179,7 +181,6 @@ export {
|
|
|
179
181
|
editChatIcon_default as EditChatIcon,
|
|
180
182
|
editIcon_default as EditIcon,
|
|
181
183
|
engagementIcon_default as EngagementIcon,
|
|
182
|
-
FloatingInput,
|
|
183
184
|
functionIcon_default as FunctionIcon,
|
|
184
185
|
helpOutlinedIcon_default as HelpOutlinedIcon,
|
|
185
186
|
hierarchyIcon_default as HierarchyIcon,
|
|
@@ -206,6 +207,7 @@ export {
|
|
|
206
207
|
rufousLauncherBird_default as RufousLauncherIcon,
|
|
207
208
|
RufousThemeProvider,
|
|
208
209
|
sidebarIcon_default as SidebarIcon,
|
|
210
|
+
submitButton_default as SubmitButton,
|
|
209
211
|
subscribeIcon_default as SubscribeIcon,
|
|
210
212
|
suspendUserIcon_default as SuspendUserIcon,
|
|
211
213
|
tickIcon_default as TickIcon,
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
/* lib/styles/button.css */
|
|
2
|
+
.cancel-btn {
|
|
3
|
+
text-transform: uppercase;
|
|
4
|
+
min-width: 84px;
|
|
5
|
+
font-weight: normal;
|
|
6
|
+
font-size: 12px;
|
|
7
|
+
padding: 7px 10px;
|
|
8
|
+
border: 1px solid rgb(164, 27, 6);
|
|
9
|
+
border-radius: 34px;
|
|
10
|
+
background: #fff;
|
|
11
|
+
color: rgb(164, 27, 6);
|
|
12
|
+
cursor: pointer;
|
|
13
|
+
transition:
|
|
14
|
+
background-color 250ms,
|
|
15
|
+
box-shadow 250ms,
|
|
16
|
+
border-color 250ms,
|
|
17
|
+
color 250ms;
|
|
18
|
+
box-shadow:
|
|
19
|
+
rgba(0, 0, 0, 0.2) 0px 3px 1px -2px,
|
|
20
|
+
rgba(0, 0, 0, 0.14) 0px 2px 2px 0px,
|
|
21
|
+
rgba(0, 0, 0, 0.12) 0px 1px 5px 0px;
|
|
22
|
+
}
|
|
23
|
+
.cancel-btn:hover {
|
|
24
|
+
box-shadow:
|
|
25
|
+
rgba(0, 0, 0, 0.2) 0px 2px 4px -1px,
|
|
26
|
+
rgba(0, 0, 0, 0.14) 0px 4px 5px 0px,
|
|
27
|
+
rgba(0, 0, 0, 0.12) 0px 1px 10px 0px;
|
|
28
|
+
}
|
|
29
|
+
.cancel-btn:disabled {
|
|
30
|
+
background-color: #e0e0e0;
|
|
31
|
+
cursor: not-allowed;
|
|
32
|
+
}
|
|
33
|
+
.submit-btn {
|
|
34
|
+
background-color: #9b1906;
|
|
35
|
+
color: #fff;
|
|
36
|
+
font-size: 12px;
|
|
37
|
+
text-transform: uppercase;
|
|
38
|
+
min-width: 92px;
|
|
39
|
+
height: 38px;
|
|
40
|
+
border: none;
|
|
41
|
+
border-radius: 6px;
|
|
42
|
+
cursor: pointer;
|
|
43
|
+
transition: background-color 250ms ease-in-out;
|
|
44
|
+
}
|
|
45
|
+
.submit-btn:hover {
|
|
46
|
+
background-color: #9b1906;
|
|
47
|
+
}
|
|
48
|
+
.submit-btn:disabled {
|
|
49
|
+
background-color: #e0e0e0;
|
|
50
|
+
cursor: not-allowed;
|
|
51
|
+
}
|
|
52
|
+
.add-btn {
|
|
53
|
+
background: #ffffff;
|
|
54
|
+
border: 1px solid #a41b06;
|
|
55
|
+
border-radius: 34px;
|
|
56
|
+
font-weight: normal;
|
|
57
|
+
font-size: 12px;
|
|
58
|
+
padding: 7px 12px;
|
|
59
|
+
color: #a41b06;
|
|
60
|
+
cursor: pointer;
|
|
61
|
+
transition: all 0.25s ease-in-out;
|
|
62
|
+
text-transform: uppercase;
|
|
63
|
+
box-shadow: none;
|
|
64
|
+
}
|
|
65
|
+
.add-btn:hover {
|
|
66
|
+
background: #a41b06;
|
|
67
|
+
color: #ffffff;
|
|
68
|
+
}
|
package/package.json
CHANGED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
var __defProp = Object.defineProperty;
|
|
2
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
-
var __copyProps = (to, from, except, desc) => {
|
|
6
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
|
7
|
-
for (let key of __getOwnPropNames(from))
|
|
8
|
-
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
9
|
-
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
10
|
-
}
|
|
11
|
-
return to;
|
|
12
|
-
};
|
|
13
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
14
|
-
|
|
15
|
-
// lib/Buttons/Button.d.ts
|
|
16
|
-
var Button_d_exports = {};
|
|
17
|
-
module.exports = __toCommonJS(Button_d_exports);
|
package/dist/Buttons/Button.d.ts
DELETED
package/dist/Buttons/Button.js
DELETED
package/dist/chunk-ASP3DBRX.js
DELETED
package/dist/chunk-AWA5Y5LH.js
DELETED
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
// lib/TextFields/FloatingInput.jsx
|
|
2
|
-
import React from "react";
|
|
3
|
-
var FloatingInput = ({
|
|
4
|
-
label,
|
|
5
|
-
name,
|
|
6
|
-
id,
|
|
7
|
-
type = "text",
|
|
8
|
-
value,
|
|
9
|
-
onChange,
|
|
10
|
-
required = false,
|
|
11
|
-
placeholder,
|
|
12
|
-
className = "",
|
|
13
|
-
...props
|
|
14
|
-
}) => {
|
|
15
|
-
return /* @__PURE__ */ React.createElement("div", { className: `form__group field ${className}`, ...props }, /* @__PURE__ */ React.createElement(
|
|
16
|
-
"input",
|
|
17
|
-
{
|
|
18
|
-
type,
|
|
19
|
-
className: "form__field",
|
|
20
|
-
placeholder: placeholder || label,
|
|
21
|
-
name,
|
|
22
|
-
id: id || name,
|
|
23
|
-
value,
|
|
24
|
-
onChange,
|
|
25
|
-
required
|
|
26
|
-
}
|
|
27
|
-
), /* @__PURE__ */ React.createElement("label", { htmlFor: id || name, className: "form__label" }, label));
|
|
28
|
-
};
|
|
29
|
-
|
|
30
|
-
export {
|
|
31
|
-
FloatingInput
|
|
32
|
-
};
|
package/dist/chunk-D7SFBVJY.js
DELETED
|
@@ -1,155 +0,0 @@
|
|
|
1
|
-
// lib/icons/nineDotMenuIcon.tsx
|
|
2
|
-
import React from "react";
|
|
3
|
-
var NineDotMenuIcon = ({ color = "#707070", ...props }) => {
|
|
4
|
-
return /* @__PURE__ */ React.createElement(
|
|
5
|
-
"svg",
|
|
6
|
-
{
|
|
7
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
8
|
-
width: "40",
|
|
9
|
-
height: "40",
|
|
10
|
-
viewBox: "0 0 40 40",
|
|
11
|
-
...props
|
|
12
|
-
},
|
|
13
|
-
/* @__PURE__ */ React.createElement(
|
|
14
|
-
"g",
|
|
15
|
-
{
|
|
16
|
-
id: "Group_24483",
|
|
17
|
-
"data-name": "Group 24483",
|
|
18
|
-
transform: "translate(-1600 -24)"
|
|
19
|
-
},
|
|
20
|
-
/* @__PURE__ */ React.createElement(
|
|
21
|
-
"circle",
|
|
22
|
-
{
|
|
23
|
-
id: "Ellipse_32",
|
|
24
|
-
"data-name": "Ellipse 32",
|
|
25
|
-
cx: "20",
|
|
26
|
-
cy: "20",
|
|
27
|
-
r: "20",
|
|
28
|
-
transform: "translate(1600 24)",
|
|
29
|
-
fill: "none"
|
|
30
|
-
}
|
|
31
|
-
),
|
|
32
|
-
/* @__PURE__ */ React.createElement(
|
|
33
|
-
"g",
|
|
34
|
-
{
|
|
35
|
-
id: "Group_24484",
|
|
36
|
-
"data-name": "Group 24484",
|
|
37
|
-
transform: "translate(2581 -2711)"
|
|
38
|
-
},
|
|
39
|
-
/* @__PURE__ */ React.createElement(
|
|
40
|
-
"rect",
|
|
41
|
-
{
|
|
42
|
-
id: "Rectangle_17638",
|
|
43
|
-
"data-name": "Rectangle 17638",
|
|
44
|
-
width: "7",
|
|
45
|
-
height: "7",
|
|
46
|
-
rx: "1",
|
|
47
|
-
transform: "translate(-973 2743)",
|
|
48
|
-
fill: color
|
|
49
|
-
}
|
|
50
|
-
),
|
|
51
|
-
/* @__PURE__ */ React.createElement(
|
|
52
|
-
"rect",
|
|
53
|
-
{
|
|
54
|
-
id: "Rectangle_17639",
|
|
55
|
-
"data-name": "Rectangle 17639",
|
|
56
|
-
width: "7",
|
|
57
|
-
height: "7",
|
|
58
|
-
rx: "1",
|
|
59
|
-
transform: "translate(-964 2743)",
|
|
60
|
-
fill: color
|
|
61
|
-
}
|
|
62
|
-
),
|
|
63
|
-
/* @__PURE__ */ React.createElement(
|
|
64
|
-
"rect",
|
|
65
|
-
{
|
|
66
|
-
id: "Rectangle_17640",
|
|
67
|
-
"data-name": "Rectangle 17640",
|
|
68
|
-
width: "7",
|
|
69
|
-
height: "7",
|
|
70
|
-
rx: "1",
|
|
71
|
-
transform: "translate(-955 2743)",
|
|
72
|
-
fill: color
|
|
73
|
-
}
|
|
74
|
-
),
|
|
75
|
-
/* @__PURE__ */ React.createElement(
|
|
76
|
-
"rect",
|
|
77
|
-
{
|
|
78
|
-
id: "Rectangle_17641",
|
|
79
|
-
"data-name": "Rectangle 17641",
|
|
80
|
-
width: "7",
|
|
81
|
-
height: "7",
|
|
82
|
-
rx: "1",
|
|
83
|
-
transform: "translate(-973 2752)",
|
|
84
|
-
fill: color
|
|
85
|
-
}
|
|
86
|
-
),
|
|
87
|
-
/* @__PURE__ */ React.createElement(
|
|
88
|
-
"rect",
|
|
89
|
-
{
|
|
90
|
-
id: "Rectangle_17642",
|
|
91
|
-
"data-name": "Rectangle 17642",
|
|
92
|
-
width: "7",
|
|
93
|
-
height: "7",
|
|
94
|
-
rx: "1",
|
|
95
|
-
transform: "translate(-964 2752)",
|
|
96
|
-
fill: color
|
|
97
|
-
}
|
|
98
|
-
),
|
|
99
|
-
/* @__PURE__ */ React.createElement(
|
|
100
|
-
"rect",
|
|
101
|
-
{
|
|
102
|
-
id: "Rectangle_17643",
|
|
103
|
-
"data-name": "Rectangle 17643",
|
|
104
|
-
width: "7",
|
|
105
|
-
height: "7",
|
|
106
|
-
rx: "1",
|
|
107
|
-
transform: "translate(-955 2752)",
|
|
108
|
-
fill: color
|
|
109
|
-
}
|
|
110
|
-
),
|
|
111
|
-
/* @__PURE__ */ React.createElement(
|
|
112
|
-
"rect",
|
|
113
|
-
{
|
|
114
|
-
id: "Rectangle_17644",
|
|
115
|
-
"data-name": "Rectangle 17644",
|
|
116
|
-
width: "7",
|
|
117
|
-
height: "7",
|
|
118
|
-
rx: "1",
|
|
119
|
-
transform: "translate(-973 2761)",
|
|
120
|
-
fill: color
|
|
121
|
-
}
|
|
122
|
-
),
|
|
123
|
-
/* @__PURE__ */ React.createElement(
|
|
124
|
-
"rect",
|
|
125
|
-
{
|
|
126
|
-
id: "Rectangle_17645",
|
|
127
|
-
"data-name": "Rectangle 17645",
|
|
128
|
-
width: "7",
|
|
129
|
-
height: "7",
|
|
130
|
-
rx: "1",
|
|
131
|
-
transform: "translate(-964 2761)",
|
|
132
|
-
fill: color
|
|
133
|
-
}
|
|
134
|
-
),
|
|
135
|
-
/* @__PURE__ */ React.createElement(
|
|
136
|
-
"rect",
|
|
137
|
-
{
|
|
138
|
-
id: "Rectangle_17646",
|
|
139
|
-
"data-name": "Rectangle 17646",
|
|
140
|
-
width: "7",
|
|
141
|
-
height: "7",
|
|
142
|
-
rx: "1",
|
|
143
|
-
transform: "translate(-955 2761)",
|
|
144
|
-
fill: color
|
|
145
|
-
}
|
|
146
|
-
)
|
|
147
|
-
)
|
|
148
|
-
)
|
|
149
|
-
);
|
|
150
|
-
};
|
|
151
|
-
var nineDotMenuIcon_default = NineDotMenuIcon;
|
|
152
|
-
|
|
153
|
-
export {
|
|
154
|
-
nineDotMenuIcon_default
|
|
155
|
-
};
|
package/dist/chunk-MWCKUVQG.js
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
// lib/icons/notificationIcon.tsx
|
|
2
|
-
import React from "react";
|
|
3
|
-
var NotificationIcon = ({ color = "#3a3a3a", ...props }) => {
|
|
4
|
-
return /* @__PURE__ */ React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "40", height: "40", viewBox: "0 0 40 40", ...props }, /* @__PURE__ */ React.createElement("g", { id: "Group_26345", "data-name": "Group 26345", transform: "translate(-1600 -24)" }, /* @__PURE__ */ React.createElement("circle", { id: "Ellipse_32", "data-name": "Ellipse 32", cx: "20", cy: "20", r: "20", transform: "translate(1600 24)", fill: "none" }), /* @__PURE__ */ React.createElement("g", { id: "bell", transform: "translate(1594.537 28.951)" }, /* @__PURE__ */ React.createElement("g", { id: "Group_26115", "data-name": "Group 26115", transform: "translate(12 -0.011)" }, /* @__PURE__ */ React.createElement("path", { id: "Path_60748", "data-name": "Path 60748", d: "M25.124,29.989a3.75,3.75,0,0,0,3.75-3.75h-7.5A3.75,3.75,0,0,0,25.124,29.989Zm0-26.4-1.494.3a7.5,7.5,0,0,0-6.005,7.351,40.688,40.688,0,0,1-.861,7.016,24.253,24.253,0,0,1-1.243,4.234H34.728a24.369,24.369,0,0,1-1.243-4.234,40.687,40.687,0,0,1-.861-7.016,7.5,7.5,0,0,0-6.005-7.35l-1.494-.306Zm11.662,18.9a4.771,4.771,0,0,0,1.462,1.875H12a4.771,4.771,0,0,0,1.462-1.875c1.687-3.375,2.287-9.6,2.287-11.249a9.378,9.378,0,0,1,7.509-9.189,1.875,1.875,0,1,1,3.731,0A9.378,9.378,0,0,1,34.5,11.241C34.5,12.89,35.1,19.115,36.786,22.49Z", transform: "translate(-12 0.011)", fill: color })))));
|
|
5
|
-
};
|
|
6
|
-
var notificationIcon_default = NotificationIcon;
|
|
7
|
-
|
|
8
|
-
export {
|
|
9
|
-
notificationIcon_default
|
|
10
|
-
};
|