@sk-web-gui/core 0.1.37 → 0.1.39
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/LICENSE +21 -21
- package/README.md +5 -5
- package/package.json +2 -2
- package/src/colors.js +145 -145
- package/src/components/accordion.js +89 -89
- package/src/components/alert.js +98 -98
- package/src/components/avatar.js +85 -85
- package/src/components/badge.js +60 -60
- package/src/components/breadcrumb.js +13 -13
- package/src/components/button-group.js +46 -46
- package/src/components/button.js +304 -304
- package/src/components/calendar.js +82 -82
- package/src/components/card.js +54 -54
- package/src/components/checkbox.js +127 -127
- package/src/components/code.js +9 -9
- package/src/components/cookie-consent.js +30 -30
- package/src/components/divider.js +12 -12
- package/src/components/dot.js +84 -84
- package/src/components/dropdown-filter.js +72 -72
- package/src/components/footer.js +42 -42
- package/src/components/forms.js +256 -256
- package/src/components/header.js +35 -35
- package/src/components/icon-button.js +5 -5
- package/src/components/icon.js +9 -9
- package/src/components/kbd.js +9 -9
- package/src/components/link.js +20 -20
- package/src/components/message.js +62 -62
- package/src/components/modal.js +30 -30
- package/src/components/notification.js +56 -56
- package/src/components/pagination.js +69 -69
- package/src/components/radio.js +104 -104
- package/src/components/search-bar.js +44 -44
- package/src/components/side-menu.js +186 -0
- package/src/components/switch.js +119 -119
- package/src/components/tab-menu.js +36 -36
- package/src/components/table.js +13 -13
- package/src/components/tag.js +97 -97
- package/src/components/user-menu.js +23 -23
- package/src/components/zebratable.js +77 -77
- package/src/index.js +272 -272
- package/src/with-opacity.js +6 -6
- package/src/components/menu.js +0 -171
package/src/components/link.js
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
module.exports = Link = () => ({
|
|
2
|
-
'.link': {
|
|
3
|
-
'@apply cursor-base underline outline-none hover:underline': {},
|
|
4
|
-
'@apply text-primary dark:text-primary': {},
|
|
5
|
-
'@apply focus-visible:ring-4 focus-visible:ring-primary': {},
|
|
6
|
-
|
|
7
|
-
'@apply hover:text-primary-active': {},
|
|
8
|
-
|
|
9
|
-
'&-external-icon': {
|
|
10
|
-
fontSize: '0.875em !important',
|
|
11
|
-
lineHeight: '1',
|
|
12
|
-
marginLeft: '.25em',
|
|
13
|
-
verticalAlign: 'text-top',
|
|
14
|
-
},
|
|
15
|
-
|
|
16
|
-
'&-disabled': {
|
|
17
|
-
'@apply disabled:opacity-60 disabled:cursor-not-allowed disabled:no-underline': {},
|
|
18
|
-
},
|
|
19
|
-
},
|
|
20
|
-
});
|
|
1
|
+
module.exports = Link = () => ({
|
|
2
|
+
'.link': {
|
|
3
|
+
'@apply cursor-base underline outline-none hover:underline': {},
|
|
4
|
+
'@apply text-primary dark:text-primary': {},
|
|
5
|
+
'@apply focus-visible:ring-4 focus-visible:ring-primary': {},
|
|
6
|
+
|
|
7
|
+
'@apply hover:text-primary-active': {},
|
|
8
|
+
|
|
9
|
+
'&-external-icon': {
|
|
10
|
+
fontSize: '0.875em !important',
|
|
11
|
+
lineHeight: '1',
|
|
12
|
+
marginLeft: '.25em',
|
|
13
|
+
verticalAlign: 'text-top',
|
|
14
|
+
},
|
|
15
|
+
|
|
16
|
+
'&-disabled': {
|
|
17
|
+
'@apply disabled:opacity-60 disabled:cursor-not-allowed disabled:no-underline': {},
|
|
18
|
+
},
|
|
19
|
+
},
|
|
20
|
+
});
|
|
@@ -1,62 +1,62 @@
|
|
|
1
|
-
module.exports = Message = () => ({
|
|
2
|
-
'.message': {
|
|
3
|
-
'@apply max-w-2xl flex items-center font-bold text-sm sm:text-base px-6 py-6 m-2 shadow-lg w-max break-words': {},
|
|
4
|
-
'@apply text-body bg-white border-l-4': {},
|
|
5
|
-
// dark
|
|
6
|
-
'@apply dark:text-neutral-100 dark:bg-neutral-700 dark:border-neutral-600': {},
|
|
7
|
-
|
|
8
|
-
'&-text': {
|
|
9
|
-
'@apply text-left flex-grow': {},
|
|
10
|
-
},
|
|
11
|
-
|
|
12
|
-
'&-info': {
|
|
13
|
-
'@apply border-info': {},
|
|
14
|
-
|
|
15
|
-
'.message-icon': {
|
|
16
|
-
'@apply text-info': {},
|
|
17
|
-
},
|
|
18
|
-
},
|
|
19
|
-
'&-success': {
|
|
20
|
-
'@apply border-success': {},
|
|
21
|
-
|
|
22
|
-
'.message-icon': {
|
|
23
|
-
'@apply text-success': {},
|
|
24
|
-
},
|
|
25
|
-
},
|
|
26
|
-
'&-error': {
|
|
27
|
-
'@apply border-error': {},
|
|
28
|
-
|
|
29
|
-
'.message-icon': {
|
|
30
|
-
'@apply text-error': {},
|
|
31
|
-
},
|
|
32
|
-
},
|
|
33
|
-
'&-warning': {
|
|
34
|
-
'@apply border-warning': {},
|
|
35
|
-
|
|
36
|
-
'.message-icon': {
|
|
37
|
-
'@apply text-warning': {},
|
|
38
|
-
},
|
|
39
|
-
},
|
|
40
|
-
},
|
|
41
|
-
|
|
42
|
-
'.message-icon': {
|
|
43
|
-
'@apply mr-4 flex-shrink-0 w-10 h-10': {},
|
|
44
|
-
},
|
|
45
|
-
|
|
46
|
-
'.message-close-button': {
|
|
47
|
-
'@apply text-body border-transparent flex items-center justify-center transition-all duration-150 rounded-full outline-none cursor-base':
|
|
48
|
-
{},
|
|
49
|
-
fontSize: '1.2em',
|
|
50
|
-
padding: '0.36em',
|
|
51
|
-
marginLeft: '0.25em',
|
|
52
|
-
marginRight: '-0.55em',
|
|
53
|
-
|
|
54
|
-
'&-icon': {
|
|
55
|
-
'@apply !text-xl': {},
|
|
56
|
-
},
|
|
57
|
-
|
|
58
|
-
'&-disabled': {
|
|
59
|
-
'@apply disabled:opacity-40 disabled:cursor-not-allowed disabled:shadow-none': {},
|
|
60
|
-
},
|
|
61
|
-
},
|
|
62
|
-
});
|
|
1
|
+
module.exports = Message = () => ({
|
|
2
|
+
'.message': {
|
|
3
|
+
'@apply max-w-2xl flex items-center font-bold text-sm sm:text-base px-6 py-6 m-2 shadow-lg w-max break-words': {},
|
|
4
|
+
'@apply text-body bg-white border-l-4': {},
|
|
5
|
+
// dark
|
|
6
|
+
'@apply dark:text-neutral-100 dark:bg-neutral-700 dark:border-neutral-600': {},
|
|
7
|
+
|
|
8
|
+
'&-text': {
|
|
9
|
+
'@apply text-left flex-grow': {},
|
|
10
|
+
},
|
|
11
|
+
|
|
12
|
+
'&-info': {
|
|
13
|
+
'@apply border-info': {},
|
|
14
|
+
|
|
15
|
+
'.message-icon': {
|
|
16
|
+
'@apply text-info': {},
|
|
17
|
+
},
|
|
18
|
+
},
|
|
19
|
+
'&-success': {
|
|
20
|
+
'@apply border-success': {},
|
|
21
|
+
|
|
22
|
+
'.message-icon': {
|
|
23
|
+
'@apply text-success': {},
|
|
24
|
+
},
|
|
25
|
+
},
|
|
26
|
+
'&-error': {
|
|
27
|
+
'@apply border-error': {},
|
|
28
|
+
|
|
29
|
+
'.message-icon': {
|
|
30
|
+
'@apply text-error': {},
|
|
31
|
+
},
|
|
32
|
+
},
|
|
33
|
+
'&-warning': {
|
|
34
|
+
'@apply border-warning': {},
|
|
35
|
+
|
|
36
|
+
'.message-icon': {
|
|
37
|
+
'@apply text-warning': {},
|
|
38
|
+
},
|
|
39
|
+
},
|
|
40
|
+
},
|
|
41
|
+
|
|
42
|
+
'.message-icon': {
|
|
43
|
+
'@apply mr-4 flex-shrink-0 w-10 h-10': {},
|
|
44
|
+
},
|
|
45
|
+
|
|
46
|
+
'.message-close-button': {
|
|
47
|
+
'@apply text-body border-transparent flex items-center justify-center transition-all duration-150 rounded-full outline-none cursor-base':
|
|
48
|
+
{},
|
|
49
|
+
fontSize: '1.2em',
|
|
50
|
+
padding: '0.36em',
|
|
51
|
+
marginLeft: '0.25em',
|
|
52
|
+
marginRight: '-0.55em',
|
|
53
|
+
|
|
54
|
+
'&-icon': {
|
|
55
|
+
'@apply !text-xl': {},
|
|
56
|
+
},
|
|
57
|
+
|
|
58
|
+
'&-disabled': {
|
|
59
|
+
'@apply disabled:opacity-40 disabled:cursor-not-allowed disabled:shadow-none': {},
|
|
60
|
+
},
|
|
61
|
+
},
|
|
62
|
+
});
|
package/src/components/modal.js
CHANGED
|
@@ -1,30 +1,30 @@
|
|
|
1
|
-
module.exports = Modal = () => ({
|
|
2
|
-
'.modal': {
|
|
3
|
-
'@apply fixed inset-0 z-10 flex items-center justify-center overflow-y-auto': {},
|
|
4
|
-
|
|
5
|
-
'&-backdrop': {
|
|
6
|
-
'@apply bg-black bg-opacity-30': {},
|
|
7
|
-
},
|
|
8
|
-
|
|
9
|
-
'&-wrapper': {
|
|
10
|
-
'@apply flex flex-col container py-8 px-4 text-center bg-white max-w-screen-sm relative': {},
|
|
11
|
-
},
|
|
12
|
-
|
|
13
|
-
'&-close-btn': {
|
|
14
|
-
'@apply cursor-pointer hover:text-primary-active absolute right-8 top-6 border border-transparent focus-visible:border-black flex self-center':
|
|
15
|
-
{},
|
|
16
|
-
},
|
|
17
|
-
|
|
18
|
-
'&-title': {
|
|
19
|
-
'@apply text-3xl p-4': {},
|
|
20
|
-
},
|
|
21
|
-
|
|
22
|
-
'&-description': {
|
|
23
|
-
'@apply text-base p-4': {},
|
|
24
|
-
},
|
|
25
|
-
|
|
26
|
-
'&-content-wrapper': {
|
|
27
|
-
'@apply p-4 space-y-10': {},
|
|
28
|
-
},
|
|
29
|
-
},
|
|
30
|
-
});
|
|
1
|
+
module.exports = Modal = () => ({
|
|
2
|
+
'.modal': {
|
|
3
|
+
'@apply fixed inset-0 z-10 flex items-center justify-center overflow-y-auto': {},
|
|
4
|
+
|
|
5
|
+
'&-backdrop': {
|
|
6
|
+
'@apply bg-black bg-opacity-30': {},
|
|
7
|
+
},
|
|
8
|
+
|
|
9
|
+
'&-wrapper': {
|
|
10
|
+
'@apply flex flex-col container py-8 px-4 text-center bg-white max-w-screen-sm relative': {},
|
|
11
|
+
},
|
|
12
|
+
|
|
13
|
+
'&-close-btn': {
|
|
14
|
+
'@apply cursor-pointer hover:text-primary-active absolute right-8 top-6 border border-transparent focus-visible:border-black flex self-center':
|
|
15
|
+
{},
|
|
16
|
+
},
|
|
17
|
+
|
|
18
|
+
'&-title': {
|
|
19
|
+
'@apply text-3xl p-4': {},
|
|
20
|
+
},
|
|
21
|
+
|
|
22
|
+
'&-description': {
|
|
23
|
+
'@apply text-base p-4': {},
|
|
24
|
+
},
|
|
25
|
+
|
|
26
|
+
'&-content-wrapper': {
|
|
27
|
+
'@apply p-4 space-y-10': {},
|
|
28
|
+
},
|
|
29
|
+
},
|
|
30
|
+
});
|
|
@@ -1,56 +1,56 @@
|
|
|
1
|
-
module.exports = Notification = () => ({
|
|
2
|
-
'.notification': {
|
|
3
|
-
'@apply relative flex p-4 text-sm w-96 m-2 max-w-full rounded-base shadow-sm sm:max-w-md': {},
|
|
4
|
-
'@apply text-body bg-white border border-neutral-200': {},
|
|
5
|
-
// dark
|
|
6
|
-
'@apply dark:text-neutral-100 dark:bg-neutral-700 dark:border-neutral-600': {},
|
|
7
|
-
},
|
|
8
|
-
|
|
9
|
-
'.notification-icon': {
|
|
10
|
-
'@apply flex-shrink-0 w-5 h-5 mr-3': {},
|
|
11
|
-
|
|
12
|
-
'&-info': {
|
|
13
|
-
'--tw-text-opacity': '1',
|
|
14
|
-
color: 'rgba(59, 130, 246, var(--tw-text-opacity))',
|
|
15
|
-
},
|
|
16
|
-
'&-success': {
|
|
17
|
-
'--tw-text-opacity': '1',
|
|
18
|
-
color: 'rgba(34, 197, 94, var(--tw-text-opacity))',
|
|
19
|
-
},
|
|
20
|
-
'&-error': {
|
|
21
|
-
'--tw-text-opacity': '1',
|
|
22
|
-
color: 'rgba(239, 68, 68, var(--tw-text-opacity))',
|
|
23
|
-
},
|
|
24
|
-
'&-warning': {
|
|
25
|
-
'--tw-text-opacity': '1',
|
|
26
|
-
color: 'rgba(234, 179, 8, var(--tw-text-opacity))',
|
|
27
|
-
},
|
|
28
|
-
},
|
|
29
|
-
|
|
30
|
-
'.notification-content': {
|
|
31
|
-
'@apply flex flex-col items-start flex-1 mr-2 -mt-px text-left': {},
|
|
32
|
-
|
|
33
|
-
'&-title': {
|
|
34
|
-
'@apply font-semibold': {},
|
|
35
|
-
},
|
|
36
|
-
|
|
37
|
-
'&-description': {
|
|
38
|
-
'@apply text-neutral-500 dark:text-neutral-400': {},
|
|
39
|
-
},
|
|
40
|
-
},
|
|
41
|
-
|
|
42
|
-
'.notification-action': {
|
|
43
|
-
'@apply absolute space-x-2': {},
|
|
44
|
-
right: 16,
|
|
45
|
-
top: 16,
|
|
46
|
-
|
|
47
|
-
'&-undo': {
|
|
48
|
-
'@apply h-auto p-0 text-sm': {},
|
|
49
|
-
},
|
|
50
|
-
|
|
51
|
-
'&-close-button': {
|
|
52
|
-
'@apply cursor-base text-neutral-700 hover:text-body': {},
|
|
53
|
-
'@apply dark:text-neutral-400 dark:hover:text-neutral-100': {},
|
|
54
|
-
},
|
|
55
|
-
},
|
|
56
|
-
});
|
|
1
|
+
module.exports = Notification = () => ({
|
|
2
|
+
'.notification': {
|
|
3
|
+
'@apply relative flex p-4 text-sm w-96 m-2 max-w-full rounded-base shadow-sm sm:max-w-md': {},
|
|
4
|
+
'@apply text-body bg-white border border-neutral-200': {},
|
|
5
|
+
// dark
|
|
6
|
+
'@apply dark:text-neutral-100 dark:bg-neutral-700 dark:border-neutral-600': {},
|
|
7
|
+
},
|
|
8
|
+
|
|
9
|
+
'.notification-icon': {
|
|
10
|
+
'@apply flex-shrink-0 w-5 h-5 mr-3': {},
|
|
11
|
+
|
|
12
|
+
'&-info': {
|
|
13
|
+
'--tw-text-opacity': '1',
|
|
14
|
+
color: 'rgba(59, 130, 246, var(--tw-text-opacity))',
|
|
15
|
+
},
|
|
16
|
+
'&-success': {
|
|
17
|
+
'--tw-text-opacity': '1',
|
|
18
|
+
color: 'rgba(34, 197, 94, var(--tw-text-opacity))',
|
|
19
|
+
},
|
|
20
|
+
'&-error': {
|
|
21
|
+
'--tw-text-opacity': '1',
|
|
22
|
+
color: 'rgba(239, 68, 68, var(--tw-text-opacity))',
|
|
23
|
+
},
|
|
24
|
+
'&-warning': {
|
|
25
|
+
'--tw-text-opacity': '1',
|
|
26
|
+
color: 'rgba(234, 179, 8, var(--tw-text-opacity))',
|
|
27
|
+
},
|
|
28
|
+
},
|
|
29
|
+
|
|
30
|
+
'.notification-content': {
|
|
31
|
+
'@apply flex flex-col items-start flex-1 mr-2 -mt-px text-left': {},
|
|
32
|
+
|
|
33
|
+
'&-title': {
|
|
34
|
+
'@apply font-semibold': {},
|
|
35
|
+
},
|
|
36
|
+
|
|
37
|
+
'&-description': {
|
|
38
|
+
'@apply text-neutral-500 dark:text-neutral-400': {},
|
|
39
|
+
},
|
|
40
|
+
},
|
|
41
|
+
|
|
42
|
+
'.notification-action': {
|
|
43
|
+
'@apply absolute space-x-2': {},
|
|
44
|
+
right: 16,
|
|
45
|
+
top: 16,
|
|
46
|
+
|
|
47
|
+
'&-undo': {
|
|
48
|
+
'@apply h-auto p-0 text-sm': {},
|
|
49
|
+
},
|
|
50
|
+
|
|
51
|
+
'&-close-button': {
|
|
52
|
+
'@apply cursor-base text-neutral-700 hover:text-body': {},
|
|
53
|
+
'@apply dark:text-neutral-400 dark:hover:text-neutral-100': {},
|
|
54
|
+
},
|
|
55
|
+
},
|
|
56
|
+
});
|
|
@@ -1,69 +1,69 @@
|
|
|
1
|
-
module.exports = Pagination = () => ({
|
|
2
|
-
'.pagination': {
|
|
3
|
-
'@apply select-none': {},
|
|
4
|
-
|
|
5
|
-
'&-sm': {
|
|
6
|
-
'@apply text-xs': {},
|
|
7
|
-
},
|
|
8
|
-
|
|
9
|
-
'&-md': {
|
|
10
|
-
'@apply text-lg': {},
|
|
11
|
-
},
|
|
12
|
-
|
|
13
|
-
'&-lg': {
|
|
14
|
-
'@apply text-xl': {},
|
|
15
|
-
},
|
|
16
|
-
|
|
17
|
-
'&-list': {
|
|
18
|
-
'@apply flex items-baseline': {},
|
|
19
|
-
},
|
|
20
|
-
|
|
21
|
-
'&-pageLabel': {
|
|
22
|
-
'@apply cursor-pointer m-sm': {},
|
|
23
|
-
width: '1.5em',
|
|
24
|
-
height: '1.75em',
|
|
25
|
-
|
|
26
|
-
"&[aria-disabled='true']": {
|
|
27
|
-
'@apply border-primary border-b cursor-default text-primary': {},
|
|
28
|
-
},
|
|
29
|
-
},
|
|
30
|
-
|
|
31
|
-
'&-prevNextButton': {
|
|
32
|
-
'@apply text-body ml-4 inline-flex items-center sm:w-auto inline-flex flex-row leading-none': {},
|
|
33
|
-
|
|
34
|
-
'&[data-reverse=true]': {
|
|
35
|
-
'@apply mr-4 ml-0 flex-row-reverse': {},
|
|
36
|
-
|
|
37
|
-
'.pagination-prevNextButton-label': {
|
|
38
|
-
'@apply mr-sm ml-0': {},
|
|
39
|
-
},
|
|
40
|
-
},
|
|
41
|
-
|
|
42
|
-
'&[disabled]': {
|
|
43
|
-
'@apply opacity-50 cursor-default': {},
|
|
44
|
-
},
|
|
45
|
-
|
|
46
|
-
"&[disabled='false']": {
|
|
47
|
-
'&-label, &-icon': {
|
|
48
|
-
'@apply cursor-pointer': {},
|
|
49
|
-
},
|
|
50
|
-
},
|
|
51
|
-
|
|
52
|
-
'&-label': {
|
|
53
|
-
'@apply hidden sm:inline ml-sm leading-none': {},
|
|
54
|
-
},
|
|
55
|
-
|
|
56
|
-
'&-icon': {
|
|
57
|
-
'@apply m-1 align-text-bottom leading-none flex items-center': {},
|
|
58
|
-
|
|
59
|
-
'.MuiSvgIcon-root': {
|
|
60
|
-
fontSize: '1em',
|
|
61
|
-
},
|
|
62
|
-
},
|
|
63
|
-
},
|
|
64
|
-
|
|
65
|
-
'&-ellipsis': {
|
|
66
|
-
'@apply inline-block w-16 text-center': {},
|
|
67
|
-
},
|
|
68
|
-
},
|
|
69
|
-
});
|
|
1
|
+
module.exports = Pagination = () => ({
|
|
2
|
+
'.pagination': {
|
|
3
|
+
'@apply select-none': {},
|
|
4
|
+
|
|
5
|
+
'&-sm': {
|
|
6
|
+
'@apply text-xs': {},
|
|
7
|
+
},
|
|
8
|
+
|
|
9
|
+
'&-md': {
|
|
10
|
+
'@apply text-lg': {},
|
|
11
|
+
},
|
|
12
|
+
|
|
13
|
+
'&-lg': {
|
|
14
|
+
'@apply text-xl': {},
|
|
15
|
+
},
|
|
16
|
+
|
|
17
|
+
'&-list': {
|
|
18
|
+
'@apply flex items-baseline': {},
|
|
19
|
+
},
|
|
20
|
+
|
|
21
|
+
'&-pageLabel': {
|
|
22
|
+
'@apply cursor-pointer m-sm': {},
|
|
23
|
+
width: '1.5em',
|
|
24
|
+
height: '1.75em',
|
|
25
|
+
|
|
26
|
+
"&[aria-disabled='true']": {
|
|
27
|
+
'@apply border-primary border-b cursor-default text-primary': {},
|
|
28
|
+
},
|
|
29
|
+
},
|
|
30
|
+
|
|
31
|
+
'&-prevNextButton': {
|
|
32
|
+
'@apply text-body ml-4 inline-flex items-center sm:w-auto inline-flex flex-row leading-none': {},
|
|
33
|
+
|
|
34
|
+
'&[data-reverse=true]': {
|
|
35
|
+
'@apply mr-4 ml-0 flex-row-reverse': {},
|
|
36
|
+
|
|
37
|
+
'.pagination-prevNextButton-label': {
|
|
38
|
+
'@apply mr-sm ml-0': {},
|
|
39
|
+
},
|
|
40
|
+
},
|
|
41
|
+
|
|
42
|
+
'&[disabled]': {
|
|
43
|
+
'@apply opacity-50 cursor-default': {},
|
|
44
|
+
},
|
|
45
|
+
|
|
46
|
+
"&[disabled='false']": {
|
|
47
|
+
'&-label, &-icon': {
|
|
48
|
+
'@apply cursor-pointer': {},
|
|
49
|
+
},
|
|
50
|
+
},
|
|
51
|
+
|
|
52
|
+
'&-label': {
|
|
53
|
+
'@apply hidden sm:inline ml-sm leading-none': {},
|
|
54
|
+
},
|
|
55
|
+
|
|
56
|
+
'&-icon': {
|
|
57
|
+
'@apply m-1 align-text-bottom leading-none flex items-center': {},
|
|
58
|
+
|
|
59
|
+
'.MuiSvgIcon-root': {
|
|
60
|
+
fontSize: '1em',
|
|
61
|
+
},
|
|
62
|
+
},
|
|
63
|
+
},
|
|
64
|
+
|
|
65
|
+
'&-ellipsis': {
|
|
66
|
+
'@apply inline-block w-16 text-center': {},
|
|
67
|
+
},
|
|
68
|
+
},
|
|
69
|
+
});
|