@sk-web-gui/core 2.2.1 → 2.2.2
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/cjs/components/alert-banner.js +1 -1
- package/dist/cjs/components/alert-banner.js.map +1 -1
- package/dist/cjs/components/calendar.js +67 -0
- package/dist/cjs/components/calendar.js.map +1 -0
- package/dist/cjs/components/context-menu.js +2 -30
- package/dist/cjs/components/context-menu.js.map +1 -1
- package/dist/cjs/components/message.js +52 -0
- package/dist/cjs/components/message.js.map +1 -0
- package/dist/cjs/components/notification.js +2 -2
- package/dist/cjs/components/notification.js.map +1 -1
- package/dist/cjs/components/profile-picture.js +15 -0
- package/dist/cjs/components/profile-picture.js.map +1 -0
- package/dist/cjs/components/profile.js +34 -0
- package/dist/cjs/components/profile.js.map +1 -0
- package/dist/cjs/components/search-bar.js +8 -0
- package/dist/cjs/components/search-bar.js.map +1 -0
- package/dist/cjs/components/side-menu.js +7 -7
- package/dist/cjs/components/side-menu.js.map +1 -1
- package/dist/cjs/components/table-autotable.js +39 -43
- package/dist/cjs/components/table-autotable.js.map +1 -1
- package/dist/cjs/components/tag.js +72 -0
- package/dist/cjs/components/tag.js.map +1 -0
- package/dist/cjs/components/zebratable.js +17 -0
- package/dist/cjs/components/zebratable.js.map +1 -1
- package/dist/esm/components/alert-banner.js +1 -1
- package/dist/esm/components/alert-banner.js.map +1 -1
- package/dist/esm/components/calendar.js +65 -0
- package/dist/esm/components/calendar.js.map +1 -0
- package/dist/esm/components/context-menu.js +2 -30
- package/dist/esm/components/context-menu.js.map +1 -1
- package/dist/esm/components/message.js +50 -0
- package/dist/esm/components/message.js.map +1 -0
- package/dist/esm/components/notification.js +2 -2
- package/dist/esm/components/notification.js.map +1 -1
- package/dist/esm/components/profile-picture.js +13 -0
- package/dist/esm/components/profile-picture.js.map +1 -0
- package/dist/esm/components/profile.js +32 -0
- package/dist/esm/components/profile.js.map +1 -0
- package/dist/esm/components/search-bar.js +6 -0
- package/dist/esm/components/search-bar.js.map +1 -0
- package/dist/esm/components/side-menu.js +7 -7
- package/dist/esm/components/side-menu.js.map +1 -1
- package/dist/esm/components/table-autotable.js +39 -43
- package/dist/esm/components/table-autotable.js.map +1 -1
- package/dist/esm/components/tag.js +79 -0
- package/dist/esm/components/tag.js.map +1 -0
- package/dist/esm/components/zebratable.js +17 -0
- package/dist/esm/components/zebratable.js.map +1 -1
- package/dist/types/components/table-autotable.d.ts +36 -40
- package/dist/types/components/zebratable.d.ts +17 -0
- package/package.json +2 -2
- package/dist/types/components/alert-banner.d.ts +0 -24
- package/dist/types/components/comments.d.ts +0 -30
- package/dist/types/components/context-menu.d.ts +0 -39
- package/dist/types/components/dropdown-filter.d.ts +0 -58
- package/dist/types/components/notification.d.ts +0 -48
- package/dist/types/components/side-menu.d.ts +0 -219
- package/dist/types/components/tab-menu.d.ts +0 -57
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
declare function _exports(): {
|
|
2
|
-
'.alert-banner': {
|
|
3
|
-
'@apply p-md': {};
|
|
4
|
-
'&-content': {
|
|
5
|
-
'@apply w-full m-auto flex': {};
|
|
6
|
-
'&-wrapper': {
|
|
7
|
-
'@apply flex-grow flex': {};
|
|
8
|
-
};
|
|
9
|
-
};
|
|
10
|
-
'&-icon': {
|
|
11
|
-
'@apply mr-[10px]': {};
|
|
12
|
-
};
|
|
13
|
-
'&-children': {
|
|
14
|
-
'@apply w-full underline inline-block max-w-[800px] text-body text-base': {};
|
|
15
|
-
};
|
|
16
|
-
'&-close': {
|
|
17
|
-
'@apply p-4 -m-4 flex flex-col': {};
|
|
18
|
-
};
|
|
19
|
-
};
|
|
20
|
-
'.tab': {
|
|
21
|
-
'@apply mr-[10px] bg-white pt-4 pb-3 px-4 rounded-b-button shadow-[rgba(0,_0,_0,_0.24)_0px_1.5px_4px]': {};
|
|
22
|
-
};
|
|
23
|
-
};
|
|
24
|
-
export = _exports;
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
declare function _exports(): {
|
|
2
|
-
'.comment-header': {
|
|
3
|
-
'@apply w-full flex items-center gap-8 p-16 border-b-4 border-gray-200': {};
|
|
4
|
-
};
|
|
5
|
-
'.comment-item': {
|
|
6
|
-
'@apply w-full': {};
|
|
7
|
-
'&-container': {
|
|
8
|
-
'@apply flex justify-between relative': {};
|
|
9
|
-
'&-textpic': {
|
|
10
|
-
'@apply flex gap-2': {};
|
|
11
|
-
};
|
|
12
|
-
};
|
|
13
|
-
'&-text': {
|
|
14
|
-
'@apply text-base font-bold mx-0 mb-0 mt-4': {};
|
|
15
|
-
};
|
|
16
|
-
'&-commentorpublished': {
|
|
17
|
-
'@apply float-right text-neutral-600 m-0': {};
|
|
18
|
-
};
|
|
19
|
-
};
|
|
20
|
-
'.comment-input': {
|
|
21
|
-
'@apply w-full flex gap-4 px-10 pt-8 pb-10': {};
|
|
22
|
-
'&-inactive': {
|
|
23
|
-
'@apply text-neutral-300 !text-3xl': {};
|
|
24
|
-
};
|
|
25
|
-
'&-active': {
|
|
26
|
-
'@apply text-primary !text-3xl': {};
|
|
27
|
-
};
|
|
28
|
-
};
|
|
29
|
-
};
|
|
30
|
-
export = _exports;
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
declare function _exports(): {
|
|
2
|
-
'.context-menu-wrapper': {
|
|
3
|
-
'@apply relative inline': {};
|
|
4
|
-
'> a, > button': {
|
|
5
|
-
'@apply inline-flex': {};
|
|
6
|
-
};
|
|
7
|
-
'.context-menu-items': {
|
|
8
|
-
'@apply absolute rounded bg-white border border-body z-10 drop-shadow-md mt-sm flex flex-col justify-start items-start': {};
|
|
9
|
-
'.context-menu-item': {
|
|
10
|
-
'@apply text-base text-body hover:text-white focus-within:text-white min-h-[3.5rem] w-full flex justify-start items-center': {};
|
|
11
|
-
'a, button': {
|
|
12
|
-
'@apply text-base font-normal min-h-[3.5rem] py-[0.6rem] items-center w-full rounded-none border-transparent px-md flex justify-start': {};
|
|
13
|
-
'&.active': {
|
|
14
|
-
'@apply bg-primary text-white': {};
|
|
15
|
-
};
|
|
16
|
-
'.MuiSvgIcon-root': {
|
|
17
|
-
'@apply text-base': {};
|
|
18
|
-
};
|
|
19
|
-
};
|
|
20
|
-
'&:first-child a,&:first-child button': {
|
|
21
|
-
'@apply pt-[0.675rem] pb-[0.525rem]': {};
|
|
22
|
-
};
|
|
23
|
-
'&:last-child a,&:last-child button': {
|
|
24
|
-
'@apply pt-[0.525rem] pb-[0.675rem]': {};
|
|
25
|
-
};
|
|
26
|
-
'&:only-child a,&:only-child button': {
|
|
27
|
-
'@apply py-[0.6rem]': {};
|
|
28
|
-
};
|
|
29
|
-
};
|
|
30
|
-
hr: {
|
|
31
|
-
'@apply mx-sm w-[calc(100%_-_16px)]': {};
|
|
32
|
-
};
|
|
33
|
-
'&.right': {
|
|
34
|
-
'@apply right-0': {};
|
|
35
|
-
};
|
|
36
|
-
};
|
|
37
|
-
};
|
|
38
|
-
};
|
|
39
|
-
export = _exports;
|
|
@@ -1,58 +0,0 @@
|
|
|
1
|
-
declare function _exports(): {
|
|
2
|
-
'.dropdown-filter': {
|
|
3
|
-
position: string;
|
|
4
|
-
height: number;
|
|
5
|
-
border: string;
|
|
6
|
-
display: string;
|
|
7
|
-
background: string;
|
|
8
|
-
borderRadius: number;
|
|
9
|
-
'.dropdown-button': {
|
|
10
|
-
'@apply flex justify-between items-center grow': {};
|
|
11
|
-
'.dropdown-button-icon': {
|
|
12
|
-
'@apply justify-self-end grow-0': {};
|
|
13
|
-
};
|
|
14
|
-
};
|
|
15
|
-
'.filter-container': {
|
|
16
|
-
position: string;
|
|
17
|
-
top: string;
|
|
18
|
-
left: string;
|
|
19
|
-
zIndex: number;
|
|
20
|
-
width: string;
|
|
21
|
-
background: string;
|
|
22
|
-
border: string;
|
|
23
|
-
borderRadius: number;
|
|
24
|
-
'.filter-controls': {
|
|
25
|
-
display: string;
|
|
26
|
-
justifyContent: string;
|
|
27
|
-
button: {
|
|
28
|
-
marginLeft: string;
|
|
29
|
-
textDecoration: string;
|
|
30
|
-
};
|
|
31
|
-
};
|
|
32
|
-
'.filter-item': {
|
|
33
|
-
'@apply px-md': {};
|
|
34
|
-
height: number;
|
|
35
|
-
display: string;
|
|
36
|
-
justifyContent: string;
|
|
37
|
-
alignItems: string;
|
|
38
|
-
borderBottom: string;
|
|
39
|
-
'> label': {
|
|
40
|
-
'@apply w-full': {};
|
|
41
|
-
'> .form-checkbox-label': {
|
|
42
|
-
'@apply flex-grow': {};
|
|
43
|
-
};
|
|
44
|
-
};
|
|
45
|
-
'&.disabled': {
|
|
46
|
-
color: string;
|
|
47
|
-
};
|
|
48
|
-
'&:first-of-type': {
|
|
49
|
-
borderTop: string;
|
|
50
|
-
};
|
|
51
|
-
'&:last-child': {
|
|
52
|
-
borderBottom: string;
|
|
53
|
-
};
|
|
54
|
-
};
|
|
55
|
-
};
|
|
56
|
-
};
|
|
57
|
-
};
|
|
58
|
-
export = _exports;
|
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
declare function _exports(): {
|
|
2
|
-
'.notification': {
|
|
3
|
-
'@apply relative flex p-4 text-small 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
|
-
'@apply dark:text-neutral-100 dark:bg-neutral-700 dark:border-neutral-600': {};
|
|
6
|
-
};
|
|
7
|
-
'.notification-icon': {
|
|
8
|
-
'@apply flex-shrink-0 w-5 h-5 mr-3': {};
|
|
9
|
-
'&-info': {
|
|
10
|
-
'--tw-text-opacity': string;
|
|
11
|
-
color: string;
|
|
12
|
-
};
|
|
13
|
-
'&-success': {
|
|
14
|
-
'--tw-text-opacity': string;
|
|
15
|
-
color: string;
|
|
16
|
-
};
|
|
17
|
-
'&-error': {
|
|
18
|
-
'--tw-text-opacity': string;
|
|
19
|
-
color: string;
|
|
20
|
-
};
|
|
21
|
-
'&-warning': {
|
|
22
|
-
'--tw-text-opacity': string;
|
|
23
|
-
color: string;
|
|
24
|
-
};
|
|
25
|
-
};
|
|
26
|
-
'.notification-content': {
|
|
27
|
-
'@apply flex flex-col items-start flex-1 mr-2 -mt-px text-left': {};
|
|
28
|
-
'&-title': {
|
|
29
|
-
'@apply font-semibold': {};
|
|
30
|
-
};
|
|
31
|
-
'&-description': {
|
|
32
|
-
'@apply text-neutral-500 dark:text-neutral-400': {};
|
|
33
|
-
};
|
|
34
|
-
};
|
|
35
|
-
'.notification-action': {
|
|
36
|
-
'@apply absolute space-x-2': {};
|
|
37
|
-
right: number;
|
|
38
|
-
top: number;
|
|
39
|
-
'&-undo': {
|
|
40
|
-
'@apply h-auto p-0 text-small': {};
|
|
41
|
-
};
|
|
42
|
-
'&-close-button': {
|
|
43
|
-
'@apply cursor-base text-neutral-700 hover:text-body': {};
|
|
44
|
-
'@apply dark:text-neutral-400 dark:hover:text-neutral-100': {};
|
|
45
|
-
};
|
|
46
|
-
};
|
|
47
|
-
};
|
|
48
|
-
export = _exports;
|
|
@@ -1,219 +0,0 @@
|
|
|
1
|
-
declare function _exports(): {
|
|
2
|
-
'.sk-sidemenu': {
|
|
3
|
-
'@apply w-[440px]': {};
|
|
4
|
-
'&-header': {
|
|
5
|
-
'@apply relative py-[2rem] px-[1.6rem] rounded-t-[.2rem] bg-primary text-white': {};
|
|
6
|
-
'.label-small': {
|
|
7
|
-
'@apply text-[1.6rem]': {};
|
|
8
|
-
};
|
|
9
|
-
'.label-button': {
|
|
10
|
-
'@apply w-full justify-between p-0 leading-[inherit]': {};
|
|
11
|
-
'&-icon': {
|
|
12
|
-
'@apply !text-xl': {};
|
|
13
|
-
};
|
|
14
|
-
};
|
|
15
|
-
'&-label': {
|
|
16
|
-
'@apply flex items-center': {};
|
|
17
|
-
'label, .label': {
|
|
18
|
-
'@apply text-xl font-bold flex items-center w-full': {};
|
|
19
|
-
};
|
|
20
|
-
span: {
|
|
21
|
-
'@apply ml-auto': {};
|
|
22
|
-
};
|
|
23
|
-
};
|
|
24
|
-
};
|
|
25
|
-
'&-item': {
|
|
26
|
-
'@apply bg-white h-full': {};
|
|
27
|
-
'> ul.items': {
|
|
28
|
-
'@apply hidden': {};
|
|
29
|
-
};
|
|
30
|
-
'&.open > ul.items': {
|
|
31
|
-
'@apply block': {};
|
|
32
|
-
};
|
|
33
|
-
'&-label': {
|
|
34
|
-
'@apply flex-grow select-none flex items-center': {};
|
|
35
|
-
};
|
|
36
|
-
'&.active': {
|
|
37
|
-
'> .sk-sidemenu-wrapper': {
|
|
38
|
-
boxShadow: string;
|
|
39
|
-
'.sk-sidemenu-item-label': {
|
|
40
|
-
'@apply underline': {};
|
|
41
|
-
};
|
|
42
|
-
};
|
|
43
|
-
};
|
|
44
|
-
'& .sk-sidemenu-wrapper': {
|
|
45
|
-
'@apply min-h-[48px] max-h-[48px] relative flex flex-wrap items-center': {};
|
|
46
|
-
'.sk-sidemenu-item-link': {
|
|
47
|
-
'@apply flex-grow relative flex items-center text-base text-left justify-start pr-sm h-full': {};
|
|
48
|
-
'@apply focus-visible:z-base': {};
|
|
49
|
-
'&[aria-disabled="true"]': {
|
|
50
|
-
'@apply text-neutral-600 cursor-not-allowed': {};
|
|
51
|
-
'.sk-sidemenu-item-label': {
|
|
52
|
-
'@apply text-neutral-600': {};
|
|
53
|
-
};
|
|
54
|
-
};
|
|
55
|
-
};
|
|
56
|
-
'.expand': {
|
|
57
|
-
'@apply w-[50px] h-full flex justify-center items-center ml-auto p-0': {};
|
|
58
|
-
'&[aria-disabled="true"]': {
|
|
59
|
-
'@apply !text-gray-stroke cursor-not-allowed !bg-transparent': {};
|
|
60
|
-
path: {
|
|
61
|
-
'@apply fill-gray-stroke': {};
|
|
62
|
-
};
|
|
63
|
-
};
|
|
64
|
-
path: {
|
|
65
|
-
'@apply fill-primary': {};
|
|
66
|
-
};
|
|
67
|
-
'&-button': {
|
|
68
|
-
'@apply fill-primary flex justify-center items-center border-l border-gray-stroke h-[24px] w-[45px]': {};
|
|
69
|
-
};
|
|
70
|
-
};
|
|
71
|
-
};
|
|
72
|
-
'&.open': {
|
|
73
|
-
'& + .menu-item > .sk-sidemenu-wrapper': {
|
|
74
|
-
'@apply border-t': {};
|
|
75
|
-
};
|
|
76
|
-
};
|
|
77
|
-
'&.draggable': {
|
|
78
|
-
'&.dragenter': {
|
|
79
|
-
'> .sk-sidemenu-wrapper': {
|
|
80
|
-
'@apply h-full max-h-full': {};
|
|
81
|
-
};
|
|
82
|
-
"> .sk-sidemenu-wrapper > *:not([draggable='true'])": {
|
|
83
|
-
'@apply pointer-events-none': {};
|
|
84
|
-
};
|
|
85
|
-
'& > .sk-sidemenu-wrapper::after': {
|
|
86
|
-
'@apply bg-info-surface-accent block relative w-full h-[44px]': {};
|
|
87
|
-
content: string;
|
|
88
|
-
};
|
|
89
|
-
};
|
|
90
|
-
'&.moving': {
|
|
91
|
-
'@apply hidden': {};
|
|
92
|
-
};
|
|
93
|
-
'& .sk-sidemenu-menuitem-movebutton': {
|
|
94
|
-
'@apply -translate-x-full no-underline text-gray-stroke absolute py-sm inset-y-0 my-auto': {};
|
|
95
|
-
svg: {
|
|
96
|
-
'@apply h-full': {};
|
|
97
|
-
};
|
|
98
|
-
'&[aria-disabled="true"]': {
|
|
99
|
-
'@apply !text-gray-stroke cursor-not-allowed !bg-transparent': {};
|
|
100
|
-
};
|
|
101
|
-
};
|
|
102
|
-
'&.separator': {
|
|
103
|
-
'@apply bg-transparent relative': {};
|
|
104
|
-
'> div.sk-sidemenu-wrapper, > .sk-sidemenu-item-link': {
|
|
105
|
-
'@apply h-[44px]': {};
|
|
106
|
-
};
|
|
107
|
-
};
|
|
108
|
-
};
|
|
109
|
-
'&-separator': {
|
|
110
|
-
'@apply text-divider': {};
|
|
111
|
-
height: string;
|
|
112
|
-
width: string;
|
|
113
|
-
backgroundImage: string;
|
|
114
|
-
backgroundSize: string;
|
|
115
|
-
backgroundPosition: string;
|
|
116
|
-
backgroundRepeat: string;
|
|
117
|
-
};
|
|
118
|
-
'&.lvl-0': {
|
|
119
|
-
'&:first-child > .sk-sidemenu-wrapper': {
|
|
120
|
-
'@apply border-t-0': {};
|
|
121
|
-
};
|
|
122
|
-
'> .sk-sidemenu-wrapper': {
|
|
123
|
-
'@apply h-[64px] max-h-[64px] border border-divider': {};
|
|
124
|
-
'> .sk-sidemenu-item-link': {
|
|
125
|
-
'@apply py-md': {};
|
|
126
|
-
paddingLeft: string;
|
|
127
|
-
};
|
|
128
|
-
};
|
|
129
|
-
'.sk-sidemenu-item-link': {
|
|
130
|
-
'@apply h-[64px] max-h-[64px]': {};
|
|
131
|
-
};
|
|
132
|
-
'& + .sk-sidemenu-item > .sk-sidemenu-wrapper': {
|
|
133
|
-
'@apply border-t-0': {};
|
|
134
|
-
};
|
|
135
|
-
'> .items': {
|
|
136
|
-
'@apply border-l border-r border-divider': {};
|
|
137
|
-
};
|
|
138
|
-
'&.open > .items': {
|
|
139
|
-
'@apply border-b border-divider': {};
|
|
140
|
-
};
|
|
141
|
-
'&.separator': {
|
|
142
|
-
'& + .lvl-0': {
|
|
143
|
-
'@apply border-t border-divider': {};
|
|
144
|
-
};
|
|
145
|
-
};
|
|
146
|
-
'&.separator > .sk-sidemenu-wrapper': {
|
|
147
|
-
'@apply border-0': {};
|
|
148
|
-
};
|
|
149
|
-
};
|
|
150
|
-
'&.lvl-1': {
|
|
151
|
-
'@apply bg-gray-lighter': {};
|
|
152
|
-
'> .sk-sidemenu-wrapper, .sk-sidemenu-item-link': {
|
|
153
|
-
'@apply h-[56px] max-h-[56px]': {};
|
|
154
|
-
};
|
|
155
|
-
'&.open > .sk-sidemenu-wrapper': {
|
|
156
|
-
'@apply border-b border-divider': {};
|
|
157
|
-
};
|
|
158
|
-
'> .sk-sidemenu-wrapper > .sk-sidemenu-item-link': {
|
|
159
|
-
paddingLeft: string;
|
|
160
|
-
};
|
|
161
|
-
};
|
|
162
|
-
'&.lvl-2': {
|
|
163
|
-
'.sk-sidemenu-wrapper': {
|
|
164
|
-
'@apply bg-gray-middle h-[48px] max-h-[48px]': {};
|
|
165
|
-
'> .sk-sidemenu-item-link': {
|
|
166
|
-
'@apply h-[48px] max-h-[48px]': {};
|
|
167
|
-
};
|
|
168
|
-
};
|
|
169
|
-
'> .sk-sidemenu-wrapper > .sk-sidemenu-item-link': {
|
|
170
|
-
paddingLeft: string;
|
|
171
|
-
};
|
|
172
|
-
};
|
|
173
|
-
'&.lvl-3': {
|
|
174
|
-
'> .sk-sidemenu-wrapper > .sk-sidemenu-item-link': {
|
|
175
|
-
paddingLeft: string;
|
|
176
|
-
};
|
|
177
|
-
};
|
|
178
|
-
'&.lvl-4': {
|
|
179
|
-
'.sk-sidemenu-wrapper': {
|
|
180
|
-
'@apply bg-[#d4d4d4]': {};
|
|
181
|
-
};
|
|
182
|
-
'> .sk-sidemenu-wrapper > .sk-sidemenu-item-link': {
|
|
183
|
-
paddingLeft: string;
|
|
184
|
-
};
|
|
185
|
-
};
|
|
186
|
-
'&.lvl-5': {
|
|
187
|
-
'> .sk-sidemenu-wrapper > .sk-sidemenu-item-link': {
|
|
188
|
-
paddingLeft: string;
|
|
189
|
-
};
|
|
190
|
-
};
|
|
191
|
-
'&.lvl-6': {
|
|
192
|
-
'> .sk-sidemenu-wrapper > .sk-sidemenu-item-link': {
|
|
193
|
-
paddingLeft: string;
|
|
194
|
-
};
|
|
195
|
-
};
|
|
196
|
-
'&.lvl-7': {
|
|
197
|
-
'> .sk-sidemenu-wrapper > .sk-sidemenu-item-link': {
|
|
198
|
-
paddingLeft: string;
|
|
199
|
-
};
|
|
200
|
-
};
|
|
201
|
-
'&.lvl-8': {
|
|
202
|
-
'> .sk-sidemenu-wrapper > .sk-sidemenu-item-link': {
|
|
203
|
-
paddingLeft: string;
|
|
204
|
-
};
|
|
205
|
-
};
|
|
206
|
-
'&.lvl-9': {
|
|
207
|
-
'> .sk-sidemenu-wrapper > .sk-sidemenu-item-link': {
|
|
208
|
-
paddingLeft: string;
|
|
209
|
-
};
|
|
210
|
-
};
|
|
211
|
-
'&.lvl-10': {
|
|
212
|
-
'> .sk-sidemenu-wrapper > .sk-sidemenu-item-link': {
|
|
213
|
-
paddingLeft: string;
|
|
214
|
-
};
|
|
215
|
-
};
|
|
216
|
-
};
|
|
217
|
-
};
|
|
218
|
-
};
|
|
219
|
-
export = _exports;
|
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
declare function _exports(): {
|
|
2
|
-
'.sk-tab-menu': {
|
|
3
|
-
'&-wrapper': {
|
|
4
|
-
display: string;
|
|
5
|
-
flexDirection: string;
|
|
6
|
-
margin: string;
|
|
7
|
-
};
|
|
8
|
-
'&-right': {
|
|
9
|
-
'@apply justify-end': {};
|
|
10
|
-
};
|
|
11
|
-
'&-center': {
|
|
12
|
-
'@apply justify-center': {};
|
|
13
|
-
};
|
|
14
|
-
'&-list': {
|
|
15
|
-
all: string;
|
|
16
|
-
display: string;
|
|
17
|
-
'&-stretch': {
|
|
18
|
-
'@apply w-full justify-between': {};
|
|
19
|
-
};
|
|
20
|
-
};
|
|
21
|
-
'&-underline': {
|
|
22
|
-
width: string;
|
|
23
|
-
height: number;
|
|
24
|
-
'@apply bg-gray-light': {};
|
|
25
|
-
};
|
|
26
|
-
'&-item': {
|
|
27
|
-
all: string;
|
|
28
|
-
height: number;
|
|
29
|
-
display: string;
|
|
30
|
-
padding: string;
|
|
31
|
-
marginRight: string;
|
|
32
|
-
alignItems: string;
|
|
33
|
-
position: string;
|
|
34
|
-
cursor: string;
|
|
35
|
-
'&-stretch': {
|
|
36
|
-
'@apply mr-0': {};
|
|
37
|
-
};
|
|
38
|
-
'&-right': {
|
|
39
|
-
'@apply mr-0 ml-[5rem]': {};
|
|
40
|
-
};
|
|
41
|
-
'&-center:last-of-type': {
|
|
42
|
-
'@apply mr-0': {};
|
|
43
|
-
};
|
|
44
|
-
'&.active::after': {
|
|
45
|
-
content: string;
|
|
46
|
-
display: string;
|
|
47
|
-
position: string;
|
|
48
|
-
width: string;
|
|
49
|
-
height: number;
|
|
50
|
-
top: string;
|
|
51
|
-
left: number;
|
|
52
|
-
'@apply bg-primary': {};
|
|
53
|
-
};
|
|
54
|
-
};
|
|
55
|
-
};
|
|
56
|
-
};
|
|
57
|
-
export = _exports;
|