@rufous/ui 0.1.21 → 0.1.22
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/addButton.js +1 -2
- package/dist/Buttons/cancelButton.js +1 -2
- package/dist/Buttons/index.js +4 -5
- package/dist/Buttons/submitButton.js +1 -2
- package/dist/main.css +10 -10
- package/dist/main.js +4 -5
- package/dist/style.css +69 -0
- package/package.json +1 -1
- package/dist/Buttons/addButton.css +0 -68
- package/dist/Buttons/cancelButton.css +0 -68
- package/dist/Buttons/index.css +0 -68
- package/dist/Buttons/submitButton.css +0 -68
- package/dist/chunk-QPGJCRBS.js +0 -0
- /package/dist/{chunk-N65GKZS6.js → chunk-5TL73FV7.js} +0 -0
- /package/dist/{chunk-54KCNQAW.js → chunk-7DL4MCF7.js} +0 -0
- /package/dist/{chunk-QGVJQLGY.js → chunk-JSGUIKOH.js} +0 -0
- /package/dist/{chunk-7KARALMQ.js → chunk-UF3Q3GWG.js} +0 -0
package/dist/Buttons/index.js
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
|
-
import "../chunk-
|
|
1
|
+
import "../chunk-JSGUIKOH.js";
|
|
2
2
|
import {
|
|
3
3
|
addButton_default
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-5TL73FV7.js";
|
|
5
5
|
import {
|
|
6
6
|
cancelButton_default
|
|
7
|
-
} from "../chunk-
|
|
7
|
+
} from "../chunk-UF3Q3GWG.js";
|
|
8
8
|
import {
|
|
9
9
|
submitButton_default
|
|
10
|
-
} from "../chunk-
|
|
11
|
-
import "../chunk-QGVJQLGY.js";
|
|
10
|
+
} from "../chunk-7DL4MCF7.js";
|
|
12
11
|
export {
|
|
13
12
|
addButton_default as AddButton,
|
|
14
13
|
cancelButton_default as CancelButton,
|
package/dist/main.css
CHANGED
|
@@ -1,13 +1,3 @@
|
|
|
1
|
-
/* lib/style.css */
|
|
2
|
-
.theme-rufous .act-icon svg {
|
|
3
|
-
color: #a81c08 !important;
|
|
4
|
-
}
|
|
5
|
-
.theme-default .act-icon svg {
|
|
6
|
-
color: #707070 !important;
|
|
7
|
-
}
|
|
8
|
-
.act-icon {
|
|
9
|
-
}
|
|
10
|
-
|
|
11
1
|
/* lib/styles/button.css */
|
|
12
2
|
.cancel-btn {
|
|
13
3
|
text-transform: uppercase;
|
|
@@ -76,3 +66,13 @@
|
|
|
76
66
|
background: #a41b06;
|
|
77
67
|
color: #ffffff;
|
|
78
68
|
}
|
|
69
|
+
|
|
70
|
+
/* lib/style.css */
|
|
71
|
+
.theme-rufous .act-icon svg {
|
|
72
|
+
color: #a81c08 !important;
|
|
73
|
+
}
|
|
74
|
+
.theme-default .act-icon svg {
|
|
75
|
+
color: #707070 !important;
|
|
76
|
+
}
|
|
77
|
+
.act-icon {
|
|
78
|
+
}
|
package/dist/main.js
CHANGED
|
@@ -153,17 +153,16 @@ import {
|
|
|
153
153
|
import {
|
|
154
154
|
difficultyAllIcon_default
|
|
155
155
|
} from "./chunk-PPNZC5ZQ.js";
|
|
156
|
-
import "./chunk-
|
|
156
|
+
import "./chunk-JSGUIKOH.js";
|
|
157
157
|
import {
|
|
158
158
|
addButton_default
|
|
159
|
-
} from "./chunk-
|
|
159
|
+
} from "./chunk-5TL73FV7.js";
|
|
160
160
|
import {
|
|
161
161
|
cancelButton_default
|
|
162
|
-
} from "./chunk-
|
|
162
|
+
} from "./chunk-UF3Q3GWG.js";
|
|
163
163
|
import {
|
|
164
164
|
submitButton_default
|
|
165
|
-
} from "./chunk-
|
|
166
|
-
import "./chunk-QGVJQLGY.js";
|
|
165
|
+
} from "./chunk-7DL4MCF7.js";
|
|
167
166
|
export {
|
|
168
167
|
APP_THEMES,
|
|
169
168
|
activateUserIcon_default as ActivateUserIcon,
|
package/dist/style.css
CHANGED
|
@@ -1,3 +1,72 @@
|
|
|
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
|
+
}
|
|
69
|
+
|
|
1
70
|
/* lib/style.css */
|
|
2
71
|
.theme-rufous .act-icon svg {
|
|
3
72
|
color: #a81c08 !important;
|
package/package.json
CHANGED
|
@@ -1,68 +0,0 @@
|
|
|
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
|
-
}
|
|
@@ -1,68 +0,0 @@
|
|
|
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/dist/Buttons/index.css
DELETED
|
@@ -1,68 +0,0 @@
|
|
|
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
|
-
}
|
|
@@ -1,68 +0,0 @@
|
|
|
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/dist/chunk-QPGJCRBS.js
DELETED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|