@sydsoft/base 1.44.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.
Files changed (48) hide show
  1. package/README.md +8 -1
  2. package/dist/esm/_lib/baseFunctions.js +25 -38
  3. package/dist/esm/_lib/inputMask.js +66 -68
  4. package/dist/esm/_lib/listFunctions.js +12 -13
  5. package/dist/esm/_lib/storage/cookies.js +20 -21
  6. package/dist/esm/_lib/storage/encData.js +19 -21
  7. package/dist/esm/_lib/storage/localStorage.js +10 -10
  8. package/dist/esm/_lib/storage/sessionStorage.js +10 -10
  9. package/dist/esm/_lib/useInterval.js +5 -5
  10. package/dist/esm/alert/index.js +28 -30
  11. package/dist/esm/box/Box.js +6 -7
  12. package/dist/esm/box/BoxContent.js +2 -4
  13. package/dist/esm/box/BoxFooter.js +6 -4
  14. package/dist/esm/box/BoxHeader.js +6 -5
  15. package/dist/esm/countDown/index.js +28 -33
  16. package/dist/esm/dateTime/index.js +25 -31
  17. package/dist/esm/form/Button.js +28 -22
  18. package/dist/esm/form/Checkbox.js +7 -8
  19. package/dist/esm/form/Dialog.d.ts +7 -6
  20. package/dist/esm/form/Dialog.js +51 -38
  21. package/dist/esm/form/Form.js +3 -5
  22. package/dist/esm/form/FormOlustur.js +15 -17
  23. package/dist/esm/form/Input.d.ts +12 -7
  24. package/dist/esm/form/Input.js +68 -77
  25. package/dist/esm/form/Label.d.ts +1 -1
  26. package/dist/esm/form/Label.js +5 -10
  27. package/dist/esm/form/SearchableInput.js +77 -89
  28. package/dist/esm/form/UploadBase.js +30 -32
  29. package/dist/esm/grid/index.js +40 -41
  30. package/dist/esm/icon/icons.js +1 -1
  31. package/dist/esm/icon/index.js +21 -10
  32. package/dist/esm/index.module.css +89 -0
  33. package/dist/esm/menu/index.d.ts +30 -4
  34. package/dist/esm/menu/index.js +32 -14
  35. package/dist/esm/modal/index.js +14 -16
  36. package/dist/esm/popover/index.d.ts +21 -7
  37. package/dist/esm/popover/index.js +320 -119
  38. package/dist/esm/tooltip/index.js +117 -34
  39. package/package.json +12 -6
  40. package/dist/esm/alert/index.module.css +0 -119
  41. package/dist/esm/grid/index.module.css +0 -805
  42. package/dist/esm/menu/index.module.css +0 -67
  43. package/dist/esm/modal/index.module.css +0 -76
  44. /package/dist/esm/{box/Box.module.css → Box.module.css} +0 -0
  45. /package/dist/esm/{form/styles → styles}/Button.module.css +0 -0
  46. /package/dist/esm/{form/styles → styles}/Input.module.css +0 -0
  47. /package/dist/esm/{form/styles → styles}/Label.module.css +0 -0
  48. /package/dist/esm/{form/styles → styles}/SearchableInput.module.css +0 -0
@@ -1,67 +0,0 @@
1
- .ul {
2
- position: relative;
3
- width: 100%;
4
- background-color: #fff;
5
- box-shadow: 0 2px 4px rgb(0 0 0 / 40%), 0 8px 16px rgb(0 0 0 / 10%);
6
- border-radius: 8px;
7
- margin: 0;
8
- padding: 4px 0;
9
- list-style: none;
10
- }
11
- .li {
12
- cursor: pointer;
13
- padding: 7px 15px;
14
- min-height: 25px;
15
- }
16
- .li,
17
- .li a {
18
- display: flex;
19
- flex-direction: row;
20
- flex-wrap: nowrap;
21
- width: 100%;
22
- }
23
- .li a,
24
- .li a:visited {
25
- color: inherit;
26
- text-decoration: none;
27
- }
28
-
29
- .li.seperator {
30
- display: block;
31
- border-bottom: 1px #ced0d4 solid;
32
- margin: 4px;
33
- padding: 0;
34
- cursor: default;
35
- min-height: unset;
36
- }
37
-
38
- .li:first-child {
39
- margin-top: 5px;
40
- }
41
-
42
- .li:last-child {
43
- margin-bottom: 5px;
44
- }
45
-
46
- .li:hover {
47
- background: #f0f2f5;
48
- }
49
-
50
- .menuicon {
51
- display: inline-flex;
52
- overflow: hidden;
53
- width: 35px;
54
- flex: 0 0 auto;
55
- align-items: center;
56
- justify-content: center;
57
- margin-right: 15px;
58
- color: #606060;
59
- }
60
-
61
- .menutitle {
62
- display: inline-flex;
63
- flex: 1;
64
- align-items: center;
65
- justify-content: flex-start;
66
- margin-right: 10px;
67
- }
@@ -1,76 +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: rgb(0 0 0 / 32%) 0 4px 8px, rgb(0 0 0 / 40%) 0 8px 40px;
26
- margin: 15px;
27
- padding: 0;
28
- z-index: 1;
29
- outline: none;
30
- }
31
- .fullscreen {
32
- width: 100vw;
33
- max-width: 100vw;
34
- height: 100vh;
35
- max-height: 100vh;
36
- border-radius: 0;
37
- margin: 0;
38
- }
39
- .close_fixed {
40
- position: absolute;
41
- top: 1px;
42
- right: 1px;
43
- z-index: 1000;
44
- text-align: right;
45
- border-radius: inherit;
46
- }
47
-
48
- .close {
49
- position: fixed;
50
- background: #e7e7e7;
51
- padding: 8px 10px;
52
- font-size: 11px;
53
- transform: translateX(-100%);
54
- border-radius: inherit;
55
- border-top-left-radius: 0;
56
- border-bottom-right-radius: 0;
57
- border-bottom-left-radius: 50%;
58
- cursor: pointer;
59
- font-weight: bold;
60
- text-shadow: 1px 0px 0px #000000;
61
- }
62
- .close:hover {
63
- zoom: 1.3;
64
- }
65
-
66
- .sbox_header {
67
- position: sticky;
68
- top: 0;
69
- z-index: 10;
70
- }
71
-
72
- .sbox_footer {
73
- position: sticky;
74
- bottom: 0;
75
- z-index: 10;
76
- }
File without changes