mosuk-ui 1.0.8 → 1.0.9
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/components/collections/breadcrumbs/component/.partials/styles/style.module.css +60 -0
- package/components/collections/breadcrumbs/skeleton/.partials/styles/style.module.css +56 -0
- package/components/display/image/component/styles/styles.module.css +15 -0
- package/components/display/image/skeleton/index.d.ts +2 -2
- package/components/layouts/header/component/.partials/styles/style.module.css +17 -0
- package/components/layouts/tabbar/component/.partials/styles/style.module.css +23 -0
- package/package.json +1 -1
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
@layer mosuk-ui {
|
|
2
|
+
@layer index-14 {
|
|
3
|
+
.slide {
|
|
4
|
+
width: fit-content;
|
|
5
|
+
height: calc(var(--spacing, .25rem) * 6);
|
|
6
|
+
|
|
7
|
+
display: flex;
|
|
8
|
+
align-items: center;
|
|
9
|
+
justify-content: start;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.icon {
|
|
13
|
+
width: calc(var(--spacing, .25rem) * 6);
|
|
14
|
+
height: calc(var(--spacing, .25rem) * 6);
|
|
15
|
+
min-width: calc(var(--spacing, .25rem) * 6);
|
|
16
|
+
min-height: calc(var(--spacing, .25rem) * 6);
|
|
17
|
+
|
|
18
|
+
padding: calc(var(--spacing, .25rem) * 1.75);
|
|
19
|
+
|
|
20
|
+
font-size: var(--text-sm, 0.875rem);
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.button {
|
|
24
|
+
height: calc(var(--spacing, 0.25rem) * 6);
|
|
25
|
+
|
|
26
|
+
display: flex;
|
|
27
|
+
align-items: center;
|
|
28
|
+
justify-content: center;
|
|
29
|
+
gap: calc(var(--spacing, 0.25rem) * 1.75);
|
|
30
|
+
|
|
31
|
+
font-size: var(--text-xs, 0.75rem);
|
|
32
|
+
|
|
33
|
+
padding-left: calc(var(--spacing, 0.25rem) * 2.75);
|
|
34
|
+
padding-right: calc(var(--spacing, 0.25rem) * 2.75);
|
|
35
|
+
|
|
36
|
+
& svg {
|
|
37
|
+
width: calc(var(--spacing, 0.25rem) * 2.5);
|
|
38
|
+
height: calc(var(--spacing, 0.25rem) * 2.5);
|
|
39
|
+
min-width: calc(var(--spacing, 0.25rem) * 2.5);
|
|
40
|
+
min-height: calc(var(--spacing, 0.25rem) * 2.5);
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.breadcrumbs {
|
|
45
|
+
.slide {
|
|
46
|
+
&:last-child {
|
|
47
|
+
.icon {
|
|
48
|
+
background-color: var(--color-gray-100, oklch(0.967 0.003 264.542));
|
|
49
|
+
color: var(--color-primary-500, #0074e7);
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.button {
|
|
53
|
+
background-color: var(--color-gray-100, oklch(0.967 0.003 264.542));
|
|
54
|
+
color: var(--color-primary-500, #0074e7);
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
@layer mosuk-ui {
|
|
2
|
+
@layer index-14 {
|
|
3
|
+
.breadcrumbs {
|
|
4
|
+
overflow: visible;
|
|
5
|
+
|
|
6
|
+
height: calc(var(--spacing, .25rem) * 6);
|
|
7
|
+
|
|
8
|
+
display: flex;
|
|
9
|
+
align-items: center;
|
|
10
|
+
justify-content: start;
|
|
11
|
+
gap: calc(var(--spacing, .25rem) * 4);
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.slide {
|
|
15
|
+
width: fit-content;
|
|
16
|
+
height: calc(var(--spacing, .25rem) * 6);
|
|
17
|
+
|
|
18
|
+
display: flex;
|
|
19
|
+
align-items: center;
|
|
20
|
+
justify-content: start;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.icon {
|
|
24
|
+
width: calc(var(--spacing, .25rem) * 3);
|
|
25
|
+
height: calc(var(--spacing, .25rem) * 3);
|
|
26
|
+
min-width: calc(var(--spacing, .25rem) * 3);
|
|
27
|
+
min-height: calc(var(--spacing, .25rem) * 3);
|
|
28
|
+
|
|
29
|
+
padding: calc(var(--spacing, .25rem) * 1.75);
|
|
30
|
+
|
|
31
|
+
font-size: var(--text-sm, 0.875rem);
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.button {
|
|
35
|
+
width: calc(var(--spacing, 0.25rem) * 18);
|
|
36
|
+
height: calc(var(--spacing, 0.25rem) * 3);
|
|
37
|
+
|
|
38
|
+
display: flex;
|
|
39
|
+
align-items: center;
|
|
40
|
+
justify-content: center;
|
|
41
|
+
gap: calc(var(--spacing, 0.25rem) * 1.75);
|
|
42
|
+
|
|
43
|
+
font-size: var(--text-xs, 0.75rem);
|
|
44
|
+
|
|
45
|
+
padding-left: calc(var(--spacing, 0.25rem) * 2.75);
|
|
46
|
+
padding-right: calc(var(--spacing, 0.25rem) * 2.75);
|
|
47
|
+
|
|
48
|
+
& svg {
|
|
49
|
+
width: calc(var(--spacing, 0.25rem) * 2.5);
|
|
50
|
+
height: calc(var(--spacing, 0.25rem) * 2.5);
|
|
51
|
+
min-width: calc(var(--spacing, 0.25rem) * 2.5);
|
|
52
|
+
min-height: calc(var(--spacing, 0.25rem) * 2.5);
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { ImagesSkeletonProps } from '../(images)/skeleton/component.interface';
|
|
2
1
|
import { ImageSkeleton as ImageSkeletonComponent } from './components/component';
|
|
2
|
+
import { ImageSkeletonProps } from './components/component.interface';
|
|
3
3
|
export declare const ImageSkeleton: typeof ImageSkeletonComponent;
|
|
4
4
|
export declare namespace ImageSkeleton {
|
|
5
|
-
type Props =
|
|
5
|
+
type Props = ImageSkeletonProps;
|
|
6
6
|
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
@layer mosuk-ui {
|
|
2
|
+
@layer index-16 {
|
|
3
|
+
.tabbar {
|
|
4
|
+
position: fixed;
|
|
5
|
+
top: auto;
|
|
6
|
+
right: 0;
|
|
7
|
+
bottom: 0;
|
|
8
|
+
left: 0;
|
|
9
|
+
z-index: 100;
|
|
10
|
+
|
|
11
|
+
width: 100%;
|
|
12
|
+
height: calc(var(--spacing, .25rem) * 16);
|
|
13
|
+
|
|
14
|
+
margin: auto;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
@media (min-width: 1024px) {
|
|
18
|
+
.tabbar {
|
|
19
|
+
display: none;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
}
|