@sydsoft/base 1.47.0 → 1.48.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 +8 -1
- package/dist/esm/_lib/baseFunctions.js +25 -38
- package/dist/esm/_lib/inputMask.js +66 -69
- package/dist/esm/_lib/listFunctions.js +12 -13
- package/dist/esm/_lib/storage/cookies.js +20 -21
- package/dist/esm/_lib/storage/encData.js +18 -20
- package/dist/esm/_lib/storage/localStorage.js +10 -10
- package/dist/esm/_lib/storage/sessionStorage.js +10 -10
- package/dist/esm/_lib/useInterval.js +5 -5
- package/dist/esm/alert/index.js +28 -30
- package/dist/esm/box/Box.js +6 -7
- package/dist/esm/box/BoxContent.js +2 -4
- package/dist/esm/box/BoxFooter.js +6 -4
- package/dist/esm/box/BoxHeader.js +6 -5
- package/dist/esm/countDown/index.js +28 -33
- package/dist/esm/dateTime/index.js +25 -31
- package/dist/esm/form/Button.js +28 -22
- package/dist/esm/form/Checkbox.js +7 -8
- package/dist/esm/form/Dialog.js +47 -34
- package/dist/esm/form/Form.js +3 -5
- package/dist/esm/form/FormOlustur.js +15 -17
- package/dist/esm/form/Input.js +57 -56
- package/dist/esm/form/Label.js +2 -4
- package/dist/esm/form/SearchableInput.js +77 -89
- package/dist/esm/form/UploadBase.js +30 -32
- package/dist/esm/grid/index.js +40 -41
- package/dist/esm/icon/icons.js +1 -1
- package/dist/esm/icon/index.js +16 -8
- package/dist/esm/menu/index.js +14 -16
- package/dist/esm/modal/index.js +14 -16
- package/dist/esm/popover/index.js +100 -100
- package/dist/esm/tooltip/index.js +117 -34
- package/package.json +12 -6
- package/dist/esm/alert/index.module.css +0 -119
- package/dist/esm/grid/index.module.css +0 -805
- package/dist/esm/menu/index.module.css +0 -92
- package/dist/esm/modal/index.module.css +0 -77
- /package/dist/esm/{box/Box.module.css → Box.module.css} +0 -0
- /package/dist/esm/{popover/index.module.css → index.module.css} +0 -0
- /package/dist/esm/{form/styles → styles}/Button.module.css +0 -0
- /package/dist/esm/{form/styles → styles}/Input.module.css +0 -0
- /package/dist/esm/{form/styles → styles}/Label.module.css +0 -0
- /package/dist/esm/{form/styles → styles}/SearchableInput.module.css +0 -0
|
@@ -1,92 +0,0 @@
|
|
|
1
|
-
.ul {
|
|
2
|
-
position: relative;
|
|
3
|
-
width: 100%;
|
|
4
|
-
max-height: calc(100vh - 94px);
|
|
5
|
-
list-style: none;
|
|
6
|
-
padding: 0;
|
|
7
|
-
margin: 0;
|
|
8
|
-
background: #fff;
|
|
9
|
-
letter-spacing: 0.2px;
|
|
10
|
-
outline: none;
|
|
11
|
-
border: 1px solid transparent;
|
|
12
|
-
border-radius: 4px;
|
|
13
|
-
box-shadow: 0 2px 6px 2px rgba(60, 64, 67, 0.15);
|
|
14
|
-
overflow-y: auto;
|
|
15
|
-
user-select: none;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
.ul > li {
|
|
19
|
-
cursor: pointer;
|
|
20
|
-
padding: 2px 6px;
|
|
21
|
-
min-height: 25px;
|
|
22
|
-
}
|
|
23
|
-
.ul > li,
|
|
24
|
-
.ul > li a {
|
|
25
|
-
display: flex;
|
|
26
|
-
flex-direction: row;
|
|
27
|
-
flex-wrap: nowrap;
|
|
28
|
-
width: 100%;
|
|
29
|
-
}
|
|
30
|
-
.ul > li a,
|
|
31
|
-
.ul > li a:visited {
|
|
32
|
-
color: inherit;
|
|
33
|
-
text-decoration: none;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
.ul > li:first-child {
|
|
37
|
-
margin-top: 5px;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
.ul > li:last-child {
|
|
41
|
-
margin-bottom: 5px;
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
.ul > li:hover {
|
|
45
|
-
background: #f0f2f5;
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
.ul > li:global(.spopover_active) {
|
|
49
|
-
background: #e8f0fe;
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
.menuicon {
|
|
53
|
-
display: inline-flex;
|
|
54
|
-
overflow: hidden;
|
|
55
|
-
width: 30px;
|
|
56
|
-
flex: 0 0 auto;
|
|
57
|
-
align-items: center;
|
|
58
|
-
justify-content: center;
|
|
59
|
-
color: #606060;
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
.menutitle {
|
|
63
|
-
display: inline-flex;
|
|
64
|
-
flex: 1;
|
|
65
|
-
align-items: center;
|
|
66
|
-
justify-content: flex-start;
|
|
67
|
-
margin: 0 10px;
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
.rightmenu {
|
|
71
|
-
display: inline-flex;
|
|
72
|
-
flex: 0 0 auto;
|
|
73
|
-
align-items: center;
|
|
74
|
-
justify-content: center;
|
|
75
|
-
color: #909090;
|
|
76
|
-
font-size: 12px;
|
|
77
|
-
width: 50px;
|
|
78
|
-
}
|
|
79
|
-
.rightmenu span {
|
|
80
|
-
user-select: none;
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
.seperator {
|
|
84
|
-
cursor: default !important;
|
|
85
|
-
background: #00000014 !important;
|
|
86
|
-
border: 0;
|
|
87
|
-
height: 1px;
|
|
88
|
-
min-height: 1px !important;
|
|
89
|
-
margin: 4px 0;
|
|
90
|
-
padding: 0 !important;
|
|
91
|
-
display: block !important;
|
|
92
|
-
}
|
|
@@ -1,77 +0,0 @@
|
|
|
1
|
-
.backdrop {
|
|
2
|
-
position: fixed;
|
|
3
|
-
z-index: 1300;
|
|
4
|
-
inset: 0;
|
|
5
|
-
display: none;
|
|
6
|
-
align-items: center;
|
|
7
|
-
justify-content: center;
|
|
8
|
-
background: rgba(0, 0, 0, 0.23);
|
|
9
|
-
width: 100%;
|
|
10
|
-
height: 100%;
|
|
11
|
-
outline: none;
|
|
12
|
-
}
|
|
13
|
-
.backdrop_open {
|
|
14
|
-
display: flex !important;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
.modal {
|
|
18
|
-
position: relative;
|
|
19
|
-
min-width: 200px;
|
|
20
|
-
max-width: 90%;
|
|
21
|
-
max-height: calc(100% - 64px);
|
|
22
|
-
overflow-x: hidden;
|
|
23
|
-
border-radius: 8px;
|
|
24
|
-
background: transparent;
|
|
25
|
-
box-shadow:
|
|
26
|
-
rgb(0 0 0 / 32%) 0 4px 8px,
|
|
27
|
-
rgb(0 0 0 / 40%) 0 8px 40px;
|
|
28
|
-
margin: 15px;
|
|
29
|
-
padding: 0;
|
|
30
|
-
z-index: 1;
|
|
31
|
-
outline: none;
|
|
32
|
-
}
|
|
33
|
-
.fullscreen {
|
|
34
|
-
width: 100vw;
|
|
35
|
-
max-width: 100vw;
|
|
36
|
-
height: 100vh;
|
|
37
|
-
max-height: 100vh;
|
|
38
|
-
border-radius: 0;
|
|
39
|
-
margin: 0;
|
|
40
|
-
}
|
|
41
|
-
.close_fixed {
|
|
42
|
-
position: absolute;
|
|
43
|
-
top: 2px;
|
|
44
|
-
right: 2px;
|
|
45
|
-
z-index: 1000;
|
|
46
|
-
text-align: right;
|
|
47
|
-
border-radius: inherit;
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
.close {
|
|
51
|
-
position: fixed;
|
|
52
|
-
background: linear-gradient(0deg, transparent, #00000026, transparent);
|
|
53
|
-
padding: 8px 10px;
|
|
54
|
-
font-size: 11px;
|
|
55
|
-
transform: scale(1) translateX(-100%);
|
|
56
|
-
border-radius: none;
|
|
57
|
-
cursor: pointer;
|
|
58
|
-
font-weight: bold;
|
|
59
|
-
text-shadow: 1px 0px 0px #000000;
|
|
60
|
-
transition: all 0.3s ease-in-out;
|
|
61
|
-
}
|
|
62
|
-
.close:hover {
|
|
63
|
-
transform: scale(1.3) translateX(-85%);
|
|
64
|
-
background: linear-gradient(180deg, transparent, #0000003a, transparent);
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
.sbox_header {
|
|
68
|
-
position: sticky;
|
|
69
|
-
top: 0;
|
|
70
|
-
z-index: 10;
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
.sbox_footer {
|
|
74
|
-
position: sticky;
|
|
75
|
-
bottom: 0;
|
|
76
|
-
z-index: 10;
|
|
77
|
-
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|