@sk-web-gui/core 2.0.1 → 2.1.0
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/button.js +6 -6
- package/dist/cjs/components/button.js.map +1 -1
- package/dist/cjs/components/context-menu.js +30 -2
- package/dist/cjs/components/context-menu.js.map +1 -1
- package/dist/cjs/components/label.js +13 -4
- package/dist/cjs/components/label.js.map +1 -1
- package/dist/cjs/components/notification.js +2 -2
- package/dist/cjs/components/notification.js.map +1 -1
- 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 +112 -20
- package/dist/cjs/components/table-autotable.js.map +1 -1
- package/dist/cjs/components/zebratable.js +0 -17
- package/dist/cjs/components/zebratable.js.map +1 -1
- package/dist/cjs/preset.js +3 -1
- package/dist/cjs/preset.js.map +1 -1
- package/dist/cjs/theme.js +6 -2
- package/dist/cjs/theme.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/button.js +6 -6
- package/dist/esm/components/button.js.map +1 -1
- package/dist/esm/components/context-menu.js +30 -2
- package/dist/esm/components/context-menu.js.map +1 -1
- package/dist/esm/components/label.js +13 -4
- package/dist/esm/components/label.js.map +1 -1
- package/dist/esm/components/notification.js +2 -2
- package/dist/esm/components/notification.js.map +1 -1
- 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 +112 -20
- package/dist/esm/components/table-autotable.js.map +1 -1
- package/dist/esm/components/zebratable.js +0 -17
- package/dist/esm/components/zebratable.js.map +1 -1
- package/dist/esm/preset.js +3 -1
- package/dist/esm/preset.js.map +1 -1
- package/dist/esm/theme.js +3 -0
- package/dist/esm/theme.js.map +1 -1
- package/dist/types/components/alert-banner.d.ts +24 -0
- package/dist/types/components/button.d.ts +6 -6
- package/dist/types/components/comments.d.ts +30 -0
- package/dist/types/components/context-menu.d.ts +39 -0
- package/dist/types/components/dropdown-filter.d.ts +58 -0
- package/dist/types/components/label.d.ts +11 -3
- package/dist/types/components/notification.d.ts +48 -0
- package/dist/types/components/side-menu.d.ts +219 -0
- package/dist/types/components/tab-menu.d.ts +57 -0
- package/dist/types/components/table-autotable.d.ts +107 -15
- package/dist/types/components/zebratable.d.ts +0 -17
- package/dist/types/preset.d.ts +3 -2
- package/package.json +4 -2
- package/dist/cjs/components/calendar.js +0 -67
- package/dist/cjs/components/calendar.js.map +0 -1
- package/dist/cjs/components/message.js +0 -52
- package/dist/cjs/components/message.js.map +0 -1
- package/dist/cjs/components/profile-picture.js +0 -15
- package/dist/cjs/components/profile-picture.js.map +0 -1
- package/dist/cjs/components/profile.js +0 -34
- package/dist/cjs/components/profile.js.map +0 -1
- package/dist/cjs/components/search-bar.js +0 -8
- package/dist/cjs/components/search-bar.js.map +0 -1
- package/dist/cjs/components/tag.js +0 -72
- package/dist/cjs/components/tag.js.map +0 -1
- package/dist/esm/components/calendar.js +0 -65
- package/dist/esm/components/calendar.js.map +0 -1
- package/dist/esm/components/message.js +0 -50
- package/dist/esm/components/message.js.map +0 -1
- package/dist/esm/components/profile-picture.js +0 -13
- package/dist/esm/components/profile-picture.js.map +0 -1
- package/dist/esm/components/profile.js +0 -32
- package/dist/esm/components/profile.js.map +0 -1
- package/dist/esm/components/search-bar.js +0 -6
- package/dist/esm/components/search-bar.js.map +0 -1
- package/dist/esm/components/tag.js +0 -79
- package/dist/esm/components/tag.js.map +0 -1
|
@@ -0,0 +1,39 @@
|
|
|
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;
|
|
@@ -0,0 +1,58 @@
|
|
|
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,19 +1,27 @@
|
|
|
1
1
|
export declare const Label: (colors: string[]) => {
|
|
2
2
|
'.sk-label': {
|
|
3
|
+
'&[data-color="tertiary"]': {
|
|
4
|
+
'@apply bg-dark-primary': {};
|
|
5
|
+
'@apply text-light-primary': {};
|
|
6
|
+
'&[data-inverted="true"]': {
|
|
7
|
+
'@apply bg-tertiary-surface': {};
|
|
8
|
+
'@apply text-dark-primary': {};
|
|
9
|
+
};
|
|
10
|
+
};
|
|
3
11
|
'@apply inline-flex flex-row': {};
|
|
4
12
|
'@apply justify-center items-center': {};
|
|
5
13
|
'@apply gap-6 px-10 py-4': {};
|
|
6
14
|
'@apply h-24 max-h-24': {};
|
|
7
15
|
'@apply text-label-small': {};
|
|
8
16
|
'@apply rounded-utility-sm md:rounded-utility-md xl:rounded-utility-lg': {};
|
|
9
|
-
'@apply bg-primary
|
|
17
|
+
'@apply bg-dark-primary': {};
|
|
10
18
|
'@apply text-light-primary': {};
|
|
11
19
|
'&[data-rounded="true"]': {
|
|
12
20
|
'@apply rounded-full': {};
|
|
13
21
|
};
|
|
14
22
|
'&[data-inverted="true"]': {
|
|
15
|
-
'@apply bg-
|
|
16
|
-
'@apply text-
|
|
23
|
+
'@apply bg-tertiary-surface': {};
|
|
24
|
+
'@apply text-dark-primary': {};
|
|
17
25
|
};
|
|
18
26
|
};
|
|
19
27
|
};
|
|
@@ -0,0 +1,48 @@
|
|
|
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;
|
|
@@ -0,0 +1,219 @@
|
|
|
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;
|
|
@@ -0,0 +1,57 @@
|
|
|
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;
|
|
@@ -1,11 +1,22 @@
|
|
|
1
1
|
export declare const TableAutoTable: () => {
|
|
2
2
|
'.sk-table-wrapper': {
|
|
3
3
|
'@apply rounded-groups': {};
|
|
4
|
-
'@apply border-1': {};
|
|
4
|
+
'@apply border-1 border-divider': {};
|
|
5
5
|
'@apply bg-background-content': {};
|
|
6
|
+
'@apply relative': {};
|
|
6
7
|
'&-inside': {
|
|
7
8
|
'@apply border-0 rounded-t-groups': {};
|
|
8
9
|
'@apply overflow-hidden': {};
|
|
10
|
+
'@apply w-full': {};
|
|
11
|
+
'&[data-scroll="x"]': {
|
|
12
|
+
'@apply overflow-x-auto': {};
|
|
13
|
+
};
|
|
14
|
+
'&[data-scroll="y"]': {
|
|
15
|
+
'@apply overflow-y-auto': {};
|
|
16
|
+
};
|
|
17
|
+
'&[data-scroll="true"]': {
|
|
18
|
+
'@apply overflow-auto': {};
|
|
19
|
+
};
|
|
9
20
|
};
|
|
10
21
|
'&:not([data-background="true"])': {
|
|
11
22
|
'@apply border-0': {};
|
|
@@ -21,13 +32,29 @@ export declare const TableAutoTable: () => {
|
|
|
21
32
|
'&-thead': {
|
|
22
33
|
'@apply border-b-1 border-dark-primary': {};
|
|
23
34
|
'@apply h-[5.6rem]': {};
|
|
35
|
+
'.sk-table-sticky-col': {
|
|
36
|
+
'@apply top-0': {};
|
|
37
|
+
'@apply h-[5.6rem]': {};
|
|
38
|
+
};
|
|
24
39
|
'&-tr': {
|
|
25
40
|
'@apply table-row': {};
|
|
26
41
|
'@apply text-label-small': {};
|
|
27
42
|
};
|
|
28
43
|
'.sk-table-th': {
|
|
29
|
-
'
|
|
30
|
-
|
|
44
|
+
'&:first-of-type': {
|
|
45
|
+
'.sk-table-sticky-col': {
|
|
46
|
+
'@apply rounded-tl-groups': {};
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
'&:last-of-type': {
|
|
50
|
+
'.sk-table-sticky-col': {
|
|
51
|
+
'@apply rounded-tr-groups': {};
|
|
52
|
+
};
|
|
53
|
+
};
|
|
54
|
+
'.sk-table-col-content': {
|
|
55
|
+
'@apply py-4': {};
|
|
56
|
+
'@apply px-16': {};
|
|
57
|
+
};
|
|
31
58
|
"&[data-isColumnSortable='true']": {
|
|
32
59
|
'@apply cursor-pointer': {};
|
|
33
60
|
};
|
|
@@ -35,6 +62,9 @@ export declare const TableAutoTable: () => {
|
|
|
35
62
|
'@apply bg-transparent': {};
|
|
36
63
|
'&[data-background="true"]': {
|
|
37
64
|
'@apply bg-vattjom-background-200 border-b-transparent': {};
|
|
65
|
+
'.sk-table-sticky-col': {
|
|
66
|
+
'@apply bg-vattjom-background-200': {};
|
|
67
|
+
};
|
|
38
68
|
};
|
|
39
69
|
};
|
|
40
70
|
'&-sortbutton': {
|
|
@@ -72,52 +102,114 @@ export declare const TableAutoTable: () => {
|
|
|
72
102
|
'&-tr': {
|
|
73
103
|
'@apply bg-transparent': {};
|
|
74
104
|
'@apply hover:bg-background-100': {};
|
|
75
|
-
'@apply border-b-1': {};
|
|
105
|
+
'@apply border-b-1 border-divider': {};
|
|
76
106
|
'@apply last-of-type:border-b-transparent': {};
|
|
77
107
|
'@apply focus-visible:shadow-insetring': {};
|
|
108
|
+
'&:hover': {
|
|
109
|
+
'.sk-table-sticky-col': {
|
|
110
|
+
'@apply bg-background-100': {};
|
|
111
|
+
};
|
|
112
|
+
};
|
|
78
113
|
};
|
|
79
114
|
'&-td, .sk-table-th': {
|
|
80
115
|
'@apply text-small': {};
|
|
81
|
-
'@apply justify-start items-center': {};
|
|
82
|
-
'@apply gap-8': {};
|
|
83
|
-
'@apply py-8 px-18': {};
|
|
84
116
|
'@apply h-[6.3rem]': {};
|
|
85
117
|
'@apply min-h-[6.3rem]': {};
|
|
118
|
+
'.sk-table-sticky-col': {
|
|
119
|
+
'@apply h-[6.1rem]': {};
|
|
120
|
+
'@apply min-h-[6.1rem]': {};
|
|
121
|
+
};
|
|
86
122
|
'@apply focus-visible:shadow-insetring': {};
|
|
123
|
+
'.sk-table-col-content': {
|
|
124
|
+
'@apply py-8 px-18': {};
|
|
125
|
+
'@apply gap-8': {};
|
|
126
|
+
};
|
|
87
127
|
};
|
|
88
128
|
};
|
|
129
|
+
'&-col-content': {
|
|
130
|
+
'@apply flex': {};
|
|
131
|
+
'@apply w-full': {};
|
|
132
|
+
'@apply justify-start items-center': {};
|
|
133
|
+
'@apply h-full': {};
|
|
134
|
+
};
|
|
89
135
|
'&[data-dense="dense"]': {
|
|
90
136
|
'.sk-table': {
|
|
137
|
+
'&-col-content': {
|
|
138
|
+
'@apply py-0': {};
|
|
139
|
+
};
|
|
91
140
|
'&-thead': {
|
|
92
141
|
'@apply h-[4.8rem]': {};
|
|
93
|
-
'.sk-table-
|
|
94
|
-
'@apply
|
|
142
|
+
'.sk-table-sticky-col': {
|
|
143
|
+
'@apply h-[4.6rem]': {};
|
|
95
144
|
};
|
|
96
145
|
};
|
|
97
146
|
'&-tbody': {
|
|
98
147
|
'&-td, .sk-table-th': {
|
|
99
|
-
'@apply py-0': {};
|
|
100
148
|
'@apply h-[4.7rem]': {};
|
|
101
149
|
'@apply min-h-[4.7rem]': {};
|
|
150
|
+
'.sk-table-sticky-col': {
|
|
151
|
+
'@apply h-[4.5rem]': {};
|
|
152
|
+
'@apply min-h-[4.5rem]': {};
|
|
153
|
+
};
|
|
102
154
|
};
|
|
103
155
|
};
|
|
104
156
|
};
|
|
105
157
|
};
|
|
158
|
+
'.sk-table-sticky-col': {
|
|
159
|
+
'@apply absolute': {};
|
|
160
|
+
'@apply bg-background-content': {};
|
|
161
|
+
};
|
|
162
|
+
'[data-sticky="true"]': {
|
|
163
|
+
'> .sk-table-col-content': {
|
|
164
|
+
'@apply collapse': {};
|
|
165
|
+
};
|
|
166
|
+
};
|
|
167
|
+
'&[data-hasscroll="true"]': {
|
|
168
|
+
'.sk-table-sticky-col': {
|
|
169
|
+
'@apply box-content': {};
|
|
170
|
+
};
|
|
171
|
+
'.sk-table-tbody': {
|
|
172
|
+
'.sk-table-sticky-col': {
|
|
173
|
+
'@apply border-b-primitives-overlay-darken-2 dark:border-b-primitives-overlay-lighten-3 border-b-1': {};
|
|
174
|
+
};
|
|
175
|
+
};
|
|
176
|
+
'td:first-of-type, th:first-of-type': {
|
|
177
|
+
'.sk-table-sticky-col': {
|
|
178
|
+
'@apply left-0': {};
|
|
179
|
+
'@apply border-r-1 border-r-divider': {};
|
|
180
|
+
};
|
|
181
|
+
};
|
|
182
|
+
'td:last-of-type, th:last-of-type': {
|
|
183
|
+
'.sk-table-sticky-col': {
|
|
184
|
+
'@apply border-l-1 border-r-divider': {};
|
|
185
|
+
'@apply right-0': {};
|
|
186
|
+
};
|
|
187
|
+
};
|
|
188
|
+
};
|
|
106
189
|
'&-paginationwrapper': {
|
|
107
|
-
'@apply
|
|
108
|
-
'@apply shrink': {};
|
|
190
|
+
'@apply max-w-[60rem]': {};
|
|
191
|
+
'@apply shrink grow': {};
|
|
192
|
+
'@apply hidden @screen-md/footer:flex': {};
|
|
109
193
|
};
|
|
110
194
|
'&-bottom': {
|
|
195
|
+
'@apply @container/footer': {};
|
|
111
196
|
'@apply py-14 px-16': {};
|
|
112
|
-
'@apply border-t-1': {};
|
|
197
|
+
'@apply border-t-1 border-divider': {};
|
|
113
198
|
'@apply flex flex-row': {};
|
|
114
|
-
'@apply
|
|
199
|
+
'@apply flex-wrap': {};
|
|
200
|
+
'@apply @screen-lg/footer:gap-32': {};
|
|
201
|
+
'@apply @screen-md/footer:gap-16': {};
|
|
202
|
+
'@apply gap-8': {};
|
|
115
203
|
'@apply justify-between items-center': {};
|
|
116
204
|
'&-section': {
|
|
117
205
|
'@apply shrink-0': {};
|
|
118
|
-
'@apply flex flex-
|
|
206
|
+
'@apply flex flex-col': {};
|
|
119
207
|
'@apply justify-start items-center': {};
|
|
208
|
+
'@apply @screen-sm/footer:flex-row': {};
|
|
120
209
|
'@apply gap-8': {};
|
|
210
|
+
'&.sk-table-pagination-mobile': {
|
|
211
|
+
'@apply @screen-md/footer:hidden': {};
|
|
212
|
+
};
|
|
121
213
|
'&-label': {
|
|
122
214
|
'@apply font-normal': {};
|
|
123
215
|
'@apply text-small': {};
|
|
@@ -33,13 +33,6 @@ export declare const ZebraTable: () => {
|
|
|
33
33
|
'@apply cursor-pointer': {};
|
|
34
34
|
};
|
|
35
35
|
};
|
|
36
|
-
'&-manualth': {
|
|
37
|
-
'@apply py-4': {};
|
|
38
|
-
'@apply px-16': {};
|
|
39
|
-
"&[data-isColumnSortable='true']": {
|
|
40
|
-
'@apply cursor-pointer': {};
|
|
41
|
-
};
|
|
42
|
-
};
|
|
43
36
|
'@apply bg-transparent': {};
|
|
44
37
|
'&[data-background="true"]': {
|
|
45
38
|
'@apply bg-vattjom-background-200 border-b-transparent': {};
|
|
@@ -94,16 +87,6 @@ export declare const ZebraTable: () => {
|
|
|
94
87
|
'@apply min-h-[6.3rem]': {};
|
|
95
88
|
};
|
|
96
89
|
};
|
|
97
|
-
'&-manualtd': {
|
|
98
|
-
'@apply text-small': {};
|
|
99
|
-
'&-content': {
|
|
100
|
-
'@apply justify-start items-center': {};
|
|
101
|
-
'@apply gap-8': {};
|
|
102
|
-
'@apply py-8 px-18': {};
|
|
103
|
-
'@apply h-[6.3rem]': {};
|
|
104
|
-
'@apply min-h-[6.3rem]': {};
|
|
105
|
-
};
|
|
106
|
-
};
|
|
107
90
|
};
|
|
108
91
|
'&[data-dense="true"]': {
|
|
109
92
|
'.sk-zebratable': {
|