bianic-ui 2.10.1 → 2.11.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/README.md +49 -49
- package/dist/cjs/Empty.svg +12 -12
- package/dist/cjs/index.js +124 -70
- package/dist/cjs/lib.css +1 -1
- package/dist/cjs/types/components/Countdown/index.d.ts +1 -0
- package/dist/cjs/types/components/Forms/SelectInput/index.d.ts +1 -1
- package/dist/cjs/types/components/Icons/Unlinked.d.ts +4 -0
- package/dist/cjs/types/components/Icons/index.d.ts +2 -1
- package/dist/cjs/types/components/Popover/PropInterface.d.ts +2 -0
- package/dist/cjs/types/components/Popover/configs.d.ts +8 -8
- package/dist/cjs/types/components/Popover/index.d.ts +1 -1
- package/dist/cjs/types/components/Table/TableUtility/TableFooterController.d.ts +2 -1
- package/dist/cjs/types/components/Table/TableUtility/TableHeaderController.d.ts +2 -1
- package/dist/cjs/types/components/Tooltip/PropsInterface.d.ts +1 -0
- package/dist/cjs/types/stories/Banner.stories.d.ts +1 -0
- package/dist/cjs/types/stories/Icons/Unlinked.stories.d.ts +14 -0
- package/dist/esm/Empty.svg +12 -12
- package/dist/esm/index.js +125 -72
- package/dist/esm/lib.css +1 -1
- package/dist/esm/types/components/Countdown/index.d.ts +1 -0
- package/dist/esm/types/components/Forms/SelectInput/index.d.ts +1 -1
- package/dist/esm/types/components/Icons/Unlinked.d.ts +4 -0
- package/dist/esm/types/components/Icons/index.d.ts +2 -1
- package/dist/esm/types/components/Popover/PropInterface.d.ts +2 -0
- package/dist/esm/types/components/Popover/configs.d.ts +8 -8
- package/dist/esm/types/components/Popover/index.d.ts +1 -1
- package/dist/esm/types/components/Table/TableUtility/TableFooterController.d.ts +2 -1
- package/dist/esm/types/components/Table/TableUtility/TableHeaderController.d.ts +2 -1
- package/dist/esm/types/components/Tooltip/PropsInterface.d.ts +1 -0
- package/dist/esm/types/stories/Banner.stories.d.ts +1 -0
- package/dist/esm/types/stories/Icons/Unlinked.stories.d.ts +14 -0
- package/dist/index.d.ts +12 -6
- package/package.json +143 -143
- package/src/font/SansCode/README.txt +88 -88
- package/src/style/color.css +650 -650
- package/src/style/scrollbar.css +78 -78
- package/tailwind.config.js +592 -574
package/src/style/scrollbar.css
CHANGED
|
@@ -1,78 +1,78 @@
|
|
|
1
|
-
/* Original Scrollbar */
|
|
2
|
-
::-webkit-scrollbar {
|
|
3
|
-
height: 11px;
|
|
4
|
-
width: 11px;
|
|
5
|
-
background-color: var(--coolgrey-light-90);
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
::-webkit-scrollbar-thumb:vertical {
|
|
9
|
-
width: 100%;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
::-webkit-scrollbar-thumb:horizontal {
|
|
13
|
-
height: 100%;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
::-webkit-scrollbar-thumb {
|
|
17
|
-
background-color: var(--coolgrey-light-70);
|
|
18
|
-
border-radius: 10px;
|
|
19
|
-
border: 2px solid transparent;
|
|
20
|
-
background-clip: content-box;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
::-webkit-scrollbar-thumb:hover {
|
|
24
|
-
background-color: var(--coolgrey);
|
|
25
|
-
border-radius: 10px;
|
|
26
|
-
border: 2px solid transparent;
|
|
27
|
-
background-clip: content-box;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
/* Hidden Scrollbar */
|
|
31
|
-
.scrollbar-hidden {
|
|
32
|
-
overflow: scroll;
|
|
33
|
-
mask-image: linear-gradient(to top, transparent, black),
|
|
34
|
-
linear-gradient(to left, transparent 17px, black 17px);
|
|
35
|
-
mask-size: 100% 20000px;
|
|
36
|
-
mask-position: left bottom;
|
|
37
|
-
-webkit-mask-image: linear-gradient(to top, transparent, black),
|
|
38
|
-
linear-gradient(to left, transparent 17px, black 17px);
|
|
39
|
-
-webkit-mask-size: 100% 20000px;
|
|
40
|
-
-webkit-mask-position: left bottom;
|
|
41
|
-
transition:
|
|
42
|
-
mask-position 0.75s,
|
|
43
|
-
-webkit-mask-position 0.75s;
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
.scrollbar-hidden:hover {
|
|
47
|
-
-webkit-mask-position: left top;
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
.scrollbar-hidden::-webkit-scrollbar {
|
|
51
|
-
width: 7px;
|
|
52
|
-
height: 7px;
|
|
53
|
-
/* background-color: transparent; */
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
.scrollbar-hidden::-webkit-scrollbar-track {
|
|
57
|
-
/* background-color: transparent; */
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
.scrollbar-hidden::-webkit-scrollbar-thumb {
|
|
61
|
-
background-color: var(--coolgrey-light-30);
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
.scrollbar-hidden:hover::-webkit-scrollbar {
|
|
65
|
-
width: 7px;
|
|
66
|
-
background-color: var(--grey-light-80);
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
.scrollbar-hidden:hover::-webkit-scrollbar-track {
|
|
70
|
-
background-color: var(--grey-light-80);
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
.scrollbar-hidden:hover::-webkit-scrollbar-thumb {
|
|
74
|
-
background-color: var(--coolgrey-light-30);
|
|
75
|
-
border-radius: 10px;
|
|
76
|
-
border: 2px solid transparent;
|
|
77
|
-
background-clip: content-box;
|
|
78
|
-
}
|
|
1
|
+
/* Original Scrollbar */
|
|
2
|
+
::-webkit-scrollbar {
|
|
3
|
+
height: 11px;
|
|
4
|
+
width: 11px;
|
|
5
|
+
background-color: var(--coolgrey-light-90);
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
::-webkit-scrollbar-thumb:vertical {
|
|
9
|
+
width: 100%;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
::-webkit-scrollbar-thumb:horizontal {
|
|
13
|
+
height: 100%;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
::-webkit-scrollbar-thumb {
|
|
17
|
+
background-color: var(--coolgrey-light-70);
|
|
18
|
+
border-radius: 10px;
|
|
19
|
+
border: 2px solid transparent;
|
|
20
|
+
background-clip: content-box;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
::-webkit-scrollbar-thumb:hover {
|
|
24
|
+
background-color: var(--coolgrey);
|
|
25
|
+
border-radius: 10px;
|
|
26
|
+
border: 2px solid transparent;
|
|
27
|
+
background-clip: content-box;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
/* Hidden Scrollbar */
|
|
31
|
+
.scrollbar-hidden {
|
|
32
|
+
overflow: scroll;
|
|
33
|
+
mask-image: linear-gradient(to top, transparent, black),
|
|
34
|
+
linear-gradient(to left, transparent 17px, black 17px);
|
|
35
|
+
mask-size: 100% 20000px;
|
|
36
|
+
mask-position: left bottom;
|
|
37
|
+
-webkit-mask-image: linear-gradient(to top, transparent, black),
|
|
38
|
+
linear-gradient(to left, transparent 17px, black 17px);
|
|
39
|
+
-webkit-mask-size: 100% 20000px;
|
|
40
|
+
-webkit-mask-position: left bottom;
|
|
41
|
+
transition:
|
|
42
|
+
mask-position 0.75s,
|
|
43
|
+
-webkit-mask-position 0.75s;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.scrollbar-hidden:hover {
|
|
47
|
+
-webkit-mask-position: left top;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.scrollbar-hidden::-webkit-scrollbar {
|
|
51
|
+
width: 7px;
|
|
52
|
+
height: 7px;
|
|
53
|
+
/* background-color: transparent; */
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.scrollbar-hidden::-webkit-scrollbar-track {
|
|
57
|
+
/* background-color: transparent; */
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.scrollbar-hidden::-webkit-scrollbar-thumb {
|
|
61
|
+
background-color: var(--coolgrey-light-30);
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.scrollbar-hidden:hover::-webkit-scrollbar {
|
|
65
|
+
width: 7px;
|
|
66
|
+
background-color: var(--grey-light-80);
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.scrollbar-hidden:hover::-webkit-scrollbar-track {
|
|
70
|
+
background-color: var(--grey-light-80);
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.scrollbar-hidden:hover::-webkit-scrollbar-thumb {
|
|
74
|
+
background-color: var(--coolgrey-light-30);
|
|
75
|
+
border-radius: 10px;
|
|
76
|
+
border: 2px solid transparent;
|
|
77
|
+
background-clip: content-box;
|
|
78
|
+
}
|