@bizy/core 19.0.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 (155) hide show
  1. package/fesm2022/bizy-core.mjs +6836 -0
  2. package/fesm2022/bizy-core.mjs.map +1 -0
  3. package/index.d.ts +5 -0
  4. package/lib/components/accordion/accordion.component.d.ts +15 -0
  5. package/lib/components/accordion/index.d.ts +2 -0
  6. package/lib/components/bar-line-chart/bar-line-chart.component.d.ts +29 -0
  7. package/lib/components/bar-line-chart/bar-line-chart.types.d.ts +17 -0
  8. package/lib/components/bar-line-chart/index.d.ts +3 -0
  9. package/lib/components/breadcrumb/breadcrumb.component.d.ts +15 -0
  10. package/lib/components/breadcrumb/breadcrumb.types.d.ts +6 -0
  11. package/lib/components/breadcrumb/index.d.ts +3 -0
  12. package/lib/components/button/button.component.d.ts +13 -0
  13. package/lib/components/button/index.d.ts +2 -0
  14. package/lib/components/calendar/calendar.component.d.ts +47 -0
  15. package/lib/components/calendar/calendar.formatter.d.ts +7 -0
  16. package/lib/components/calendar/calendar.types.d.ts +32 -0
  17. package/lib/components/calendar/index.d.ts +3 -0
  18. package/lib/components/card/card.component.d.ts +12 -0
  19. package/lib/components/card/index.d.ts +2 -0
  20. package/lib/components/checkbox/checkbox.component.d.ts +13 -0
  21. package/lib/components/checkbox/index.d.ts +2 -0
  22. package/lib/components/date-picker/date-picker.component.d.ts +45 -0
  23. package/lib/components/date-picker/index.d.ts +2 -0
  24. package/lib/components/file-uploader/file-uploader.component.d.ts +46 -0
  25. package/lib/components/file-uploader/file-uploader.service.d.ts +51 -0
  26. package/lib/components/file-uploader/index.d.ts +4 -0
  27. package/lib/components/filter/filter-content/filter-content.component.d.ts +5 -0
  28. package/lib/components/filter/filter-section/filter-section.component.d.ts +24 -0
  29. package/lib/components/filter/filter-section-checkbox-option/filter-section-checkbox-option.component.d.ts +17 -0
  30. package/lib/components/filter/filter-section-range-option/filter-section-range-option.component.d.ts +34 -0
  31. package/lib/components/filter/filter-section-search-option/filter-section-search-option.component.d.ts +21 -0
  32. package/lib/components/filter/filter-sections/filter-sections.component.d.ts +5 -0
  33. package/lib/components/filter/filter.component.d.ts +27 -0
  34. package/lib/components/filter/index.d.ts +10 -0
  35. package/lib/components/filter/pipes/filter.pipe.d.ts +10 -0
  36. package/lib/components/filter/pipes/index.d.ts +2 -0
  37. package/lib/components/filter/pipes/range-filter.pipe.d.ts +10 -0
  38. package/lib/components/form/form.component.d.ts +19 -0
  39. package/lib/components/form/index.d.ts +2 -0
  40. package/lib/components/grid/grid-row/grid-row.component.d.ts +12 -0
  41. package/lib/components/grid/grid.component.d.ts +26 -0
  42. package/lib/components/grid/grid.directive.d.ts +13 -0
  43. package/lib/components/grid/index.d.ts +5 -0
  44. package/lib/components/index.d.ts +26 -0
  45. package/lib/components/input/index.d.ts +3 -0
  46. package/lib/components/input/input-option/input-option.component.d.ts +16 -0
  47. package/lib/components/input/input.component.d.ts +56 -0
  48. package/lib/components/list/index.d.ts +2 -0
  49. package/lib/components/list/list.component.d.ts +7 -0
  50. package/lib/components/menu/index.d.ts +4 -0
  51. package/lib/components/menu/menu-option/menu-option.component.d.ts +20 -0
  52. package/lib/components/menu/menu-title/menu-title.component.d.ts +6 -0
  53. package/lib/components/menu/menu.component.d.ts +26 -0
  54. package/lib/components/pie-chart/index.d.ts +3 -0
  55. package/lib/components/pie-chart/pie-chart.component.d.ts +28 -0
  56. package/lib/components/pie-chart/pie-chart.types.d.ts +5 -0
  57. package/lib/components/radio/index.d.ts +2 -0
  58. package/lib/components/radio/radio.component.d.ts +13 -0
  59. package/lib/components/select/index.d.ts +3 -0
  60. package/lib/components/select/select-option/select-option.component.d.ts +21 -0
  61. package/lib/components/select/select.component.d.ts +37 -0
  62. package/lib/components/sidebar/index.d.ts +5 -0
  63. package/lib/components/sidebar/sidebar-floating-option/sidebar-floating-option.component.d.ts +34 -0
  64. package/lib/components/sidebar/sidebar-floating-option-title/sidebar-floating-option-title.component.d.ts +7 -0
  65. package/lib/components/sidebar/sidebar-option/sidebar-option.component.d.ts +23 -0
  66. package/lib/components/sidebar/sidebar.component.d.ts +19 -0
  67. package/lib/components/skeleton/index.d.ts +3 -0
  68. package/lib/components/skeleton/skeleton.component.d.ts +12 -0
  69. package/lib/components/skeleton/skeleton.types.d.ts +4 -0
  70. package/lib/components/slider/index.d.ts +2 -0
  71. package/lib/components/slider/slider.component.d.ts +20 -0
  72. package/lib/components/table/directives/index.d.ts +1 -0
  73. package/lib/components/table/directives/table-column-fixed.directive.d.ts +9 -0
  74. package/lib/components/table/index.d.ts +12 -0
  75. package/lib/components/table/table-column/table-column.component.d.ts +12 -0
  76. package/lib/components/table/table-column-arrows/table-column-arrows.component.d.ts +8 -0
  77. package/lib/components/table/table-footer/table-footer.component.d.ts +19 -0
  78. package/lib/components/table/table-header/table-header.component.d.ts +23 -0
  79. package/lib/components/table/table-row/table-row.component.d.ts +28 -0
  80. package/lib/components/table/table-row-expand-content/table-row-expand-content.component.d.ts +5 -0
  81. package/lib/components/table/table-scrolling/table-scrolling.component.d.ts +23 -0
  82. package/lib/components/table/table-scrolling/table-scrolling.directive.d.ts +15 -0
  83. package/lib/components/table/table.component.d.ts +30 -0
  84. package/lib/components/tabs/index.d.ts +3 -0
  85. package/lib/components/tabs/tab/tab.component.d.ts +16 -0
  86. package/lib/components/tabs/tabs.component.d.ts +21 -0
  87. package/lib/components/tag/index.d.ts +3 -0
  88. package/lib/components/tag/tag.component.d.ts +11 -0
  89. package/lib/components/tag/tag.types.d.ts +7 -0
  90. package/lib/components/toggle/index.d.ts +3 -0
  91. package/lib/components/toggle/toggle.component.d.ts +12 -0
  92. package/lib/components/toggle/toggle.types.d.ts +1 -0
  93. package/lib/components/toolbar/index.d.ts +2 -0
  94. package/lib/components/toolbar/toolbar.component.d.ts +5 -0
  95. package/lib/directives/copy-to-clipboard.directive.d.ts +16 -0
  96. package/lib/directives/currency-format.directive.d.ts +16 -0
  97. package/lib/directives/index.d.ts +11 -0
  98. package/lib/directives/loading.directive.d.ts +16 -0
  99. package/lib/directives/long-press.directive.d.ts +12 -0
  100. package/lib/directives/only-numbers.directive.d.ts +12 -0
  101. package/lib/directives/only-phone-digits.directive.d.ts +8 -0
  102. package/lib/directives/text-ellipsis.directive.d.ts +12 -0
  103. package/lib/directives/tooltip.directive.d.ts +24 -0
  104. package/lib/directives/track-by-id.directive.d.ts +12 -0
  105. package/lib/pipes/average.pipe.d.ts +7 -0
  106. package/lib/pipes/enum-to-array.pipe.d.ts +10 -0
  107. package/lib/pipes/format-seconds.pipe.d.ts +13 -0
  108. package/lib/pipes/index.d.ts +13 -0
  109. package/lib/pipes/order-by.pipe.d.ts +8 -0
  110. package/lib/pipes/reduce.pipe.d.ts +7 -0
  111. package/lib/pipes/repeat.pipe.d.ts +7 -0
  112. package/lib/pipes/safe.pipe.d.ts +10 -0
  113. package/lib/pipes/search/index.d.ts +2 -0
  114. package/lib/pipes/search/search.model.d.ts +45 -0
  115. package/lib/pipes/search/search.pipe.d.ts +16 -0
  116. package/lib/pipes/selected.pipe.d.ts +11 -0
  117. package/lib/pipes/set-to-array.pipe.d.ts +7 -0
  118. package/lib/pipes/translate.pipe.d.ts +10 -0
  119. package/lib/services/animation.service.d.ts +24 -0
  120. package/lib/services/cache.service.d.ts +13 -0
  121. package/lib/services/copy-to-clipboard.service.d.ts +10 -0
  122. package/lib/services/export-to-csv.service.d.ts +19 -0
  123. package/lib/services/format-seconds.service.d.ts +22 -0
  124. package/lib/services/index.d.ts +17 -0
  125. package/lib/services/keyboard.service.d.ts +11 -0
  126. package/lib/services/log.service.d.ts +27 -0
  127. package/lib/services/popup/index.d.ts +2 -0
  128. package/lib/services/popup/popup-wrapper/popup-wrapper.component.d.ts +11 -0
  129. package/lib/services/popup/popup.service.d.ts +24 -0
  130. package/lib/services/popup/popup.types.d.ts +4 -0
  131. package/lib/services/router.service.d.ts +29 -0
  132. package/lib/services/storage.service.d.ts +9 -0
  133. package/lib/services/toast/index.d.ts +1 -0
  134. package/lib/services/toast/toast-wrapper/toast-wrapper.component.d.ts +19 -0
  135. package/lib/services/toast/toast.service.d.ts +45 -0
  136. package/lib/services/translate/index.d.ts +2 -0
  137. package/lib/services/translate/translate.module.d.ts +7 -0
  138. package/lib/services/translate/translate.service.d.ts +23 -0
  139. package/lib/services/user-agent/uach-retrofill.d.ts +34 -0
  140. package/lib/services/user-agent/user-agent.service.d.ts +6 -0
  141. package/lib/services/validator.service.d.ts +16 -0
  142. package/lib/services/viewport.service.d.ts +17 -0
  143. package/package.json +41 -0
  144. package/public-api.d.ts +4 -0
  145. package/styles/animations.css +186 -0
  146. package/styles/calendar.css +851 -0
  147. package/styles/date-picker.css +2 -0
  148. package/styles/file-uploader.css +2 -0
  149. package/styles/loading.css +90 -0
  150. package/styles/normalize.css +102 -0
  151. package/styles/overlay.css +1 -0
  152. package/styles/popup.css +21 -0
  153. package/styles/toast.css +83 -0
  154. package/styles/tooltip.css +55 -0
  155. package/styles/variables.css +288 -0
@@ -0,0 +1,2 @@
1
+ @import 'flatpickr/dist/flatpickr.min.css';
2
+ @import 'flatpickr/dist/plugins/confirmDate/confirmDate.css';
@@ -0,0 +1,2 @@
1
+ @import "@uppy/core/dist/style.min.css";
2
+ @import "@uppy/dashboard/dist/style.min.css";
@@ -0,0 +1,90 @@
1
+ .bizy-loading--spinner {
2
+ border-radius: 50%;
3
+ display: inline-block;
4
+ position: relative;
5
+ border: 3px solid;
6
+ border-color: var(--bizy-loading-spinner-color-3rd-line) var(--bizy-loading-spinner-color-3rd-line) transparent transparent;
7
+ box-sizing: border-box;
8
+ animation: rotation 1s linear infinite;
9
+ }
10
+
11
+ .bizy-loading--spinner::after,
12
+ .bizy-loading--spinner::before {
13
+ content: '';
14
+ box-sizing: border-box;
15
+ position: absolute;
16
+ left: 0;
17
+ right: 0;
18
+ top: 0;
19
+ bottom: 0;
20
+ margin: auto;
21
+ border: 3px solid;
22
+ width: calc(100% * 0.83);
23
+ height: calc(100% * 0.83);
24
+ border-radius: 50%;
25
+ box-sizing: border-box;
26
+ animation: rotationBack 0.5s linear infinite;
27
+ transform-origin: center center;
28
+ }
29
+
30
+ .bizy-loading--spinner::after {
31
+ border-color: transparent transparent var(--bizy-loading-spinner-color-2nd-line) var(--bizy-loading-spinner-color-2nd-line);
32
+ }
33
+
34
+ .bizy-loading--spinner::before {
35
+ width: calc(100% * 0.67);
36
+ height: calc(100% * 0.67);
37
+ border-color: var(--bizy-loading-spinner-color-1st-line) var(--bizy-loading-spinner-color-1st-line) transparent transparent;
38
+ animation: rotation 1.5s linear infinite;
39
+ }
40
+
41
+ @keyframes rotation {
42
+ 0% {
43
+ transform: rotate(0deg);
44
+ }
45
+
46
+ 100% {
47
+ transform: rotate(360deg);
48
+ }
49
+ }
50
+
51
+ @keyframes rotationBack {
52
+ 0% {
53
+ transform: rotate(0deg);
54
+ }
55
+
56
+ 100% {
57
+ transform: rotate(-360deg);
58
+ }
59
+ }
60
+
61
+ .bizy-loading--bar {
62
+ width: 100%;
63
+ height: 100%;
64
+ display: inline-block;
65
+ position: relative;
66
+ }
67
+
68
+ .bizy-loading--bar::after {
69
+ content: '';
70
+ width: 100%;
71
+ height: 100%;
72
+ top: 0;
73
+ left: 0;
74
+ position: absolute;
75
+ background-image: linear-gradient(100deg, transparent, var(--bizy-loading-bright-color) 50%, transparent 80%), linear-gradient(var(--bizy-loading-bar-color) 100%, transparent 0);
76
+ background-repeat: no-repeat;
77
+ background-size: 45% 100%, 100% 100%;
78
+ box-sizing: border-box;
79
+ animation: bizy-loading-bar 1s linear infinite;
80
+ }
81
+
82
+ @keyframes bizy-loading-bar {
83
+ 0% {
84
+ background-position: 0% 0, 0 0;
85
+ }
86
+
87
+ 100% {
88
+ background-position: 150% 0, 0 0;
89
+ }
90
+ }
@@ -0,0 +1,102 @@
1
+ html,
2
+ body {
3
+ height: 100%;
4
+ }
5
+
6
+ body {
7
+ margin: 0;
8
+ font-family: var(--bizy-font-family);
9
+ font-size: clamp(12px, 1vmax, 16px) !important;
10
+ }
11
+
12
+ p,
13
+ h1,
14
+ h2,
15
+ h3,
16
+ h4,
17
+ h5,
18
+ h6 {
19
+ margin: 0 !important;
20
+ font-weight: normal;
21
+ text-align: start;
22
+ margin-block-start: 0;
23
+ margin-block-end: 0;
24
+ margin-inline-start: 0;
25
+ margin-inline-end: 0;
26
+ font-family: var(--bizy-font-family);
27
+ }
28
+
29
+ h1 {
30
+ font-size: 1.4rem !important;
31
+ line-height: 1.6rem !important;
32
+ }
33
+
34
+ h2 {
35
+ font-size: 1.3rem !important;
36
+ line-height: 1.5rem !important;
37
+ }
38
+
39
+ h3 {
40
+ font-size: 1.2rem !important;
41
+ line-height: 1.4rem !important;
42
+ }
43
+
44
+ h4 {
45
+ font-size: 1.1rem !important;
46
+ line-height: 1.3rem !important;
47
+ }
48
+
49
+ h5 {
50
+ font-size: 0.9rem !important;
51
+ line-height: 1.1rem !important;
52
+ }
53
+
54
+ h6 {
55
+ font-size: 0.8rem !important;
56
+ line-height: 1rem !important;
57
+ }
58
+
59
+ p {
60
+ font-size: 0.8rem !important;
61
+ line-height: 1rem !important;
62
+ }
63
+
64
+ ul {
65
+ margin-block-start: 0;
66
+ margin-block-end: 0;
67
+ }
68
+
69
+ label {
70
+ font-size: 1rem !important;
71
+ line-height: 1.2rem !important;
72
+ margin-bottom: 0;
73
+ font-family: var(--bizy-font-family);
74
+ }
75
+
76
+ textarea {
77
+ font-family: var(--bizy-font-family);
78
+ }
79
+
80
+ button {
81
+ font-size: 1rem !important;
82
+ padding: 0;
83
+ margin: 0;
84
+ font-family: var(--bizy-font-family);
85
+ }
86
+
87
+ pre {
88
+ display: inline-block;
89
+ font-family: var(--bizy-font-family);
90
+ unicode-bidi: normal;
91
+ margin: 0;
92
+ }
93
+
94
+ *,
95
+ *::before,
96
+ *::after {
97
+ box-sizing: border-box;
98
+ }
99
+
100
+ iframe {
101
+ border: none !important;
102
+ }
@@ -0,0 +1 @@
1
+ @import '@angular/cdk/overlay-prebuilt.css';
@@ -0,0 +1,21 @@
1
+ .bizy-popup {
2
+ position: fixed !important;
3
+ top: 50%;
4
+ left: 50%;
5
+ right: 50%;
6
+ bottom: 50%;
7
+ transform: translate(-50%, -50%);
8
+ min-height: 150px;
9
+ min-width: 150px;
10
+ width: fit-content;
11
+ height: fit-content;
12
+ z-index: 10;
13
+ }
14
+
15
+ .bizy-popup-backdrop {
16
+ width: 100vw;
17
+ height: 100vh;
18
+ background-color: #00000060;
19
+ position: absolute;
20
+ top: 0;
21
+ }
@@ -0,0 +1,83 @@
1
+ .bizy-toast {
2
+ position: fixed !important;
3
+ top: 0.5rem;
4
+ right: 0;
5
+ width: fit-content;
6
+ height: fit-content;
7
+ -webkit-animation-duration: 0.5s;
8
+ animation-duration: 0.5s;
9
+ -webkit-animation-fill-mode: both;
10
+ animation-fill-mode: both;
11
+ }
12
+
13
+ .bizy-toast--in {
14
+ -webkit-animation-name: slide-in-right;
15
+ animation-name: slide-in-right;
16
+ }
17
+
18
+ .bizy-toast--out {
19
+ -webkit-animation-name: slide-out-right;
20
+ animation-name: slide-out-right;
21
+ }
22
+
23
+ @-webkit-keyframes slide-in-right {
24
+ from {
25
+ -webkit-transform: translate3d(100%, 0, 0);
26
+ transform: translate3d(100%, 0, 0);
27
+ visibility: visible;
28
+ }
29
+
30
+ to {
31
+ -webkit-transform: translate3d(0, 0, 0);
32
+ transform: translate3d(0, 0, 0);
33
+ }
34
+ }
35
+
36
+ @keyframes slide-in-right {
37
+ from {
38
+ -webkit-transform: translate3d(100%, 0, 0);
39
+ transform: translate3d(100%, 0, 0);
40
+ visibility: visible;
41
+ }
42
+
43
+ to {
44
+ -webkit-transform: translate3d(0, 0, 0);
45
+ transform: translate3d(0, 0, 0);
46
+ }
47
+ }
48
+
49
+ .slide-in-right {
50
+ -webkit-animation-name: slide-in-right;
51
+ animation-name: slide-in-right;
52
+ }
53
+
54
+ @-webkit-keyframes slide-out-right {
55
+ from {
56
+ -webkit-transform: translate3d(0, 0, 0);
57
+ transform: translate3d(0, 0, 0);
58
+ }
59
+
60
+ to {
61
+ visibility: hidden;
62
+ -webkit-transform: translate3d(100%, 0, 0);
63
+ transform: translate3d(100%, 0, 0);
64
+ }
65
+ }
66
+
67
+ @keyframes slide-out-right {
68
+ from {
69
+ -webkit-transform: translate3d(0, 0, 0);
70
+ transform: translate3d(0, 0, 0);
71
+ }
72
+
73
+ to {
74
+ visibility: hidden;
75
+ -webkit-transform: translate3d(100%, 0, 0);
76
+ transform: translate3d(100%, 0, 0);
77
+ }
78
+ }
79
+
80
+ .slide-out-right {
81
+ -webkit-animation-name: slide-out-right;
82
+ animation-name: slide-out-right;
83
+ }
@@ -0,0 +1,55 @@
1
+ .bizy-tooltip {
2
+ max-width: 15rem;
3
+ position: absolute;
4
+ text-align: center;
5
+ color: var(--bizy-tooltip-color);
6
+ padding: 0.5rem;
7
+ background: var(--bizy-tooltip-background-color);
8
+ border-radius: 0.5rem;
9
+ z-index: 99999999;
10
+ opacity: 0;
11
+ word-wrap: break-word;
12
+ border: 0.1rem solid var(--bizy-tooltip-border-color);
13
+ }
14
+
15
+ .bizy-tooltip::after {
16
+ content: "";
17
+ position: absolute;
18
+ border-style: solid;
19
+ }
20
+
21
+ .bizy-tooltip-top::after {
22
+ top: 100%;
23
+ left: 50%;
24
+ margin-left: -5px;
25
+ border-width: 5px;
26
+ border-color: var(--bizy-tooltip-border-color) transparent transparent transparent;
27
+ }
28
+
29
+ .bizy-tooltip-bottom::after {
30
+ bottom: 100%;
31
+ left: 50%;
32
+ margin-left: -5px;
33
+ border-width: 5px;
34
+ border-color: transparent transparent var(--bizy-tooltip-border-color) transparent;
35
+ }
36
+
37
+ .bizy-tooltip-left::after {
38
+ top: 50%;
39
+ left: 100%;
40
+ margin-top: -5px;
41
+ border-width: 5px;
42
+ border-color: transparent transparent transparent var(--bizy-tooltip-border-color);
43
+ }
44
+
45
+ .bizy-tooltip-right::after {
46
+ top: 50%;
47
+ right: 100%;
48
+ margin-top: -5px;
49
+ border-width: 5px;
50
+ border-color: transparent var(--bizy-tooltip-border-color) transparent transparent;
51
+ }
52
+
53
+ .bizy-tooltip--show {
54
+ opacity: 1;
55
+ }
@@ -0,0 +1,288 @@
1
+ :root {
2
+ --bizy-success-color: #5fbc5a;
3
+ --bizy-light-success-color: #eaf6e8;
4
+ --bizy-dark-success-color: #3f8e3a;
5
+ --bizy-default-color: #666;
6
+ --bizy-light-default-color: #eee;
7
+ --bizy-dark-default-color: #333;
8
+ --bizy-info-color: #2484c6;
9
+ --bizy-light-info-color: #e6eff6;
10
+ --bizy-dark-info-color: #355b7f;
11
+ --bizy-alert-color: #fffe56;
12
+ --bizy-light-alert-color: #fffdc8;
13
+ --bizy-dark-alert-color: #7e7915;
14
+ --bizy-warning-color: #f7a64c;
15
+ --bizy-light-warning-color: #fde5c9;
16
+ --bizy-dark-warning-color: #c07b2d;
17
+ --bizy-danger-color: #e76565;
18
+ --bizy-light-danger-color: #f3c5c5;
19
+ --bizy-dark-danger-color: #c34b4b;
20
+ --bizy-accent-color: #16aa88;
21
+ --bizy-light-accent-color: #c4f6ea;
22
+ --bizy-dark-accent-color: #0a5745;
23
+ --bizy-accent-hover-color: #16aa8844;
24
+ --bizy-hover-color: #2484c644;
25
+
26
+ --bizy-accordion-background-color: transparent;
27
+ --bizy-accordion-border: none;
28
+ --bizy-accordion-border-bottom: none;
29
+ --bizy-accordion-arrow-color: var(--bizy-default-color);
30
+ --bizy-accordion-padding-left: 0.5rem;
31
+ --bizy-accordion-arrow-height: 0.9rem;
32
+
33
+ --bizy-animation-timeout: 500ms;
34
+
35
+ --bizy-audio-player-playback-rate-background-color: #f3f3f3;
36
+ --bizy-audio-player-playback-rate-color: var(--bizy-dark-default-color);
37
+ --bizy-audio-player-download-button-background-color: var(--bizy-accent-color);
38
+ --bizy-audio-player-download-button-color: #fff;
39
+
40
+ --bizy-breadcrumb-link-color: var(--bizy-info-color);
41
+ --bizy-breadcrumb-path-color: var(--bizy-default-color);
42
+
43
+ --bizy-button-color: #fff;
44
+ --bizy-button-background-color: var(--bizy-default-color);
45
+ --bizy-button-padding: 0.5rem;
46
+ --bizy-button-border-radius: 0.3rem;
47
+ --bizy-button-border: none;
48
+
49
+ --bizy-card-background-color: #fff;
50
+ --bizy-card-cursor: default;
51
+ --bizy-card-height: 100%;
52
+ --bizy-card-width: 100%;
53
+ --bizy-card-border: none;
54
+ --bizy-card-border-radius: 0.3rem;
55
+ --bizy-card-padding: 0.5rem;
56
+ --bizy-card-box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
57
+ --bizy-card-hover-box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
58
+
59
+ --bizy-calendar-event-color: var(--bizy-dark-default-color);
60
+ --bizy-calendar-event-delete-action-color: var(--bizy-danger-color);
61
+ --bizy-calendar-event-delete-action-hover-color: var(--bizy-dark-danger-color);
62
+ --bizy-calendar-event-delete-action-line-color: var(--bizy-light-default-color);
63
+ --bizy-calendar-event-delete-action-width: 1rem;
64
+ --bizy-calendar-event-delete-action-height: 1rem;
65
+
66
+ --bizy-checkbox-border-color: #ccc;
67
+ --bizy-checkbox-hover-color: var(--bizy-accent-hover-color);
68
+ --bizy-checkbox-color: var(--bizy-accent-color);
69
+
70
+ --bizy-copy-to-clipboard-default-color: #2484c6;
71
+ --bizy-copy-to-clipboard-success-color: #5fbc5a;
72
+ --bizy-copy-to-clipboard-danger-color: #e76565;
73
+
74
+ --bizy-filter-padding: 0;
75
+ --bizy-filter-color: var(--bizy-default-color);
76
+ --bizy-filter-background-color: #fff;
77
+ --bizy-filter-badge-color: var(--bizy-danger-color);
78
+ --bizy-filter-section-clear-color: var(--bizy-danger-color);
79
+ --bizy-filter-section-min-width: 8rem;
80
+
81
+ --bizy-font-family: Roboto, "Helvetica Neue", sans-serif;
82
+
83
+ --bizy-form-max-width: 40rem;
84
+ --bizy-form-row-gap: 1rem;
85
+
86
+ --bizy-grid-height: 100%;
87
+ --bizy-grid-min-height: 5rem;
88
+ --bizy-grid-max-height: 100%;
89
+ --bizy-grid-scroll-bar-color: var(--bizy-default-color);
90
+ --bizy-grid-scroll-bar-hover-color: #999;
91
+ --bizy-grid-width: 100%;
92
+ --bizy-grid-background-color: transparent;
93
+ --bizy-grid-row-background-color: transparent;
94
+ --bizy-grid-row-height: 3rem;
95
+ --bizy-grid-column-width: 18rem;
96
+ --bizy-grid-gap: 0.6rem;
97
+
98
+ --bizy-input-background-color: #fff;
99
+ --bizy-input-focus-color: var(--bizy-info-color);
100
+ --bizy-input-invalid-color: var(--bizy-danger-color);
101
+ --bizy-input-negative-background-color: var(--bizy-light-danger-color);
102
+ --bizy-input-color: var(--bizy-default-color);
103
+ --bizy-input-cursor: default;
104
+ --bizy-input-width: 100%;
105
+ --bizy-input-min-width: 14rem;
106
+ --bizy-input-max-width: 40rem;
107
+ --bizy-input-options-height: 20rem;
108
+ --bizy-input-option-hover-background-color: var(--bizy-hover-color);
109
+ --bizy-input-option-selected-color: #fff;
110
+ --bizy-input-option-selected-background-color: var(--bizy-info-color);
111
+
112
+ --bizy-list-height: fit-content;
113
+ --bizy-list-width: 100%;
114
+ --bizy-list-flex-direction: column;
115
+ --bizy-list-column-gap: 0.5rem;
116
+ --bizy-list-row-gap: 0.5rem;
117
+
118
+ --bizy-loading-bright-color: #fffa;
119
+ --bizy-loading-bar-color: #e5e5e5;
120
+ --bizy-loading-spinner-color-1st-line: #2484c6;
121
+ --bizy-loading-spinner-color-2nd-line: #2484c6;
122
+ --bizy-loading-spinner-color-3rd-line: #2484c6;
123
+
124
+ --bizy-menu-option-background-color: transparent;
125
+ --bizy-menu-option-hover-background-color: var(--bizy-light-info-color);
126
+ --bizy-menu-option-selected-background-color: var(--bizy-info-color);
127
+ --bizy-menu-option-color: #000;
128
+ --bizy-menu-option-selected-color: #fff;
129
+
130
+ --bizy-menu-title-background-color: transparent;
131
+ --bizy-menu-title-color: #000;
132
+ --bizy-menu-title-underline-color: var(--bizy-info-color);
133
+
134
+ --bizy-menu-padding: 0;
135
+ --bizy-menu-color: #fff;
136
+ --bizy-menu-background-color: #fff;
137
+ --bizy-menu-arrow-height: 0.9rem;
138
+ --bizy-menu-max-width: 90vw;
139
+ --bizy-menu-max-height: 90vh;
140
+ --bizy-menu-scroll-bar-color: var(--bizy-default-color);
141
+ --bizy-menu-scroll-bar-hover-color: #999;
142
+
143
+ --bizy-popup-background-color: #fff;
144
+ --bizy-popup-min-width: 20rem;
145
+ --bizy-popup-width: fit-content;
146
+ --bizy-popup-max-width: 90vw;
147
+ --bizy-popup-drag-button-color: #666;
148
+ --bizy-popup-drag-button-border-color: #ccc;
149
+ --bizy-popup-drag-button-background-color: #fff;
150
+ --bizy-popup-close-button-border-color: #ccc;
151
+ --bizy-popup-close-button-background-color: #fff;
152
+ --bizy-popup-close-button-color: #666;
153
+ --bizy-popup-close-button-hover-color: #e76565;
154
+
155
+ --bizy-radio-color: var(--bizy-accent-color);
156
+
157
+ --bizy-select-height: 20rem;
158
+ --bizy-select-width: 100%;
159
+ --bizy-select-min-width: 14rem;
160
+ --bizy-select-max-width: 40rem;
161
+ --bizy-select-background-color: #fff;
162
+ --bizy-select-color: #000;
163
+ --bizy-select-option-color: #000;
164
+ --bizy-select-option-hover-background-color: var(--bizy-hover-color);
165
+ --bizy-select-option-selected-color: #fff;
166
+ --bizy-select-option-selected-background-color: var(--bizy-info-color);
167
+ --bizy-select-arrow-height: 0.9rem;
168
+ --bizy-select-scroll-bar-color: var(--bizy-default-color);
169
+ --bizy-select-scroll-bar-hover-color: #999;
170
+
171
+ --bizy-sidebar-background-color: #fff;
172
+ --bizy-sidebar-shrinked-width: 3rem;
173
+ --bizy-sidebar-tab-height: 2.6rem;
174
+ --bizy-sidebar-tab-width: 1.2rem;
175
+ --bizy-sidebar-tab-top: 0.25rem;
176
+ --bizy-sidebar-tab-background-color: #fff;
177
+ --bizy-sidebar-tab-color: var(--bizy-default-color);
178
+ --bizy-sidebar-width: 8rem;
179
+ --bizy-sidebar-padding: 0 0 0 0.5rem;
180
+ --bizy-sidebar-section-min-height: 3rem;
181
+ --bizy-sidebar-option-selected-color: var(--bizy-info-color);
182
+ --bizy-sidebar-option-hover-color: var(--bizy-dark-info-color);
183
+ --bizy-sidebar-floating-option-title-color: #000;
184
+ --bizy-sidebar-floating-option-title-background-color: var(--bizy-sidebar-floating-option-background-color);
185
+ --bizy-sidebar-floating-option-title-underline-color: var(--bizy-info-color);
186
+ --bizy-sidebar-floating-option-color: #000;
187
+ --bizy-sidebar-floating-option-background-color: #fff;
188
+ --bizy-sidebar-scroll-bar-color: var(--bizy-default-color);
189
+ --bizy-sidebar-scroll-bar-hover-color: #999;
190
+
191
+ --bizy-skeleton-height: 1rem;
192
+ --bizy-skeleton-width: 100%;
193
+
194
+ --bizy-slider-color: var(--bizy-default-color);
195
+ --bizy-slider-background-color: #fff;
196
+ --bizy-slider-range-color: var(--bizy-accent-color);
197
+ --bizy-slider-accent-color: var(--bizy-info-color);
198
+
199
+ --bizy-table-height: 100%;
200
+ --bizy-table-min-height: 5rem;
201
+ --bizy-table-max-height: 100%;
202
+ --bizy-table-scroll-bar-color: var(--bizy-default-color);
203
+ --bizy-table-scroll-bar-hover-color: #999;
204
+ --bizy-table-width: 100%;
205
+ --bizy-table-background-color: #f3f3f3;
206
+ --bizy-table-footer-height: 2.4rem;
207
+ --bizy-table-footer-background-color: #fff;
208
+ --bizy-table-header-height: 2.4rem;
209
+ --bizy-table-row-hover-background-color: var(--bizy-hover-color);
210
+ --bizy-table-row-background-color: #fff;
211
+ --bizy-table-row-height: 2rem;
212
+ --bizy-table-row-selected-background-color: var(--bizy-info-color);
213
+ --bizy-table-row-selected-color: #fff;
214
+ --bizy-table-header-background-color: #c9d9e0;
215
+ --bizy-table-row-expand-content-background-color: #c9d9e0;
216
+ --bizy-table-row-opened-background-color: #c9d9e0;
217
+ --bizy-table-column-border-top: none;
218
+ --bizy-table-column-border-right: none;
219
+ --bizy-table-column-border-bottom: none;
220
+ --bizy-table-column-border-left: none;
221
+ --bizy-table-column-background-color: inherit;
222
+ --bizy-table-column-cursor: default;
223
+ --bizy-table-column-min-width: 2rem;
224
+ --bizy-table-column-justify-content: flex-start;
225
+ --bizy-table-column-arrows-color: var(--bizy-info-color);
226
+ --bizy-table-column-arrow-color: var(--bizy-default-color);
227
+
228
+ --bizy-tabs-column-gap: 0;
229
+ --bizy-tabs-background-color: transparent;
230
+ --bizy-tabs-scroll-bar-color: var(--bizy-default-color);
231
+ --bizy-tabs-scroll-bar-hover-color: #999;
232
+ --bizy-tab-border-top: 0.1rem solid #ddd;
233
+ --bizy-tab-border-right: 0.1rem solid #ddd;
234
+ --bizy-tab-border-left: 0.1rem solid #ddd;
235
+ --bizy-tab-border-bottom: 0.1rem solid #ddd;
236
+ --bizy-tab-border-radius: 0;
237
+ --bizy-tab-padding: 0.5rem 1rem;
238
+ --bizy-tab-background-color: transparent;
239
+ --bizy-tab-color: var(--bizy-default-color);
240
+ --bizy-tab-selected-color: var(--bizy-accent-color);
241
+ --bizy-tab-selected-background-color: #fff;
242
+ --bizy-tab-selected-bar-height: 0.2rem;
243
+ --bizy-tab-selected-bar-color: var(--bizy-accent-color);
244
+ --bizy-tabs-arrow-button-color: var(--bizy-default-color);
245
+ --bizy-tabs-arrow-button-background-color: #fff;
246
+
247
+ --bizy-tag-background-color: var(--bizy-light-default-color);
248
+ --bizy-tag-color: var(--bizy-dark-default-color);
249
+ --bizy-tag-default-background-color: var(--bizy-light-default-color);
250
+ --bizy-tag-default-color: var(--bizy-dark-default-color);
251
+ --bizy-tag-success-background-color: var(--bizy-light-success-color);
252
+ --bizy-tag-success-color: var(--bizy-dark-success-color);
253
+ --bizy-tag-info-background-color: var(--bizy-light-info-color);
254
+ --bizy-tag-info-color: var(--bizy-dark-info-color);
255
+ --bizy-tag-warning-background-color: var(--bizy-light-warning-color);
256
+ --bizy-tag-warning-color: var(--bizy-dark-warning-color);
257
+ --bizy-tag-danger-background-color: var(--bizy-light-danger-color);
258
+ --bizy-tag-danger-color: var(--bizy-dark-danger-color);
259
+ --bizy-tag-padding: 0.1rem 0.3rem;
260
+
261
+ --bizy-toast-border-left: 0.4rem solid #fff;
262
+ --bizy-toast-default-background-color: #fff;
263
+ --bizy-toast-default-color: #666;
264
+ --bizy-toast-info-background-color: #fff;
265
+ --bizy-toast-info-color: #2484c6;
266
+ --bizy-toast-success-background-color: #fff;
267
+ --bizy-toast-success-color: #5fbc5a;
268
+ --bizy-toast-warning-background-color: #fff;
269
+ --bizy-toast-warning-color: #f7a64c;
270
+ --bizy-toast-danger-background-color: #fff;
271
+ --bizy-toast-danger-color: #e76565;
272
+ --bizy-toast-close-button-color: #666;
273
+ --bizy-toast-close-button-hover-color: #333;
274
+
275
+ --bizy-toggle-color: var(--bizy-danger-color);
276
+ --bizy-toggle-background-color: #f2d5d7;
277
+ --bizy-toggle-selected-color: var(--bizy-success-color);
278
+ --bizy-toggle-selected-background-color: #abd8b0;
279
+
280
+ --bizy-toolbar-height: 3.2rem;
281
+ --bizy-toolbar-column-gap: 0.5rem;
282
+ --bizy-toolbar-background-color: #f3f3f3;
283
+ --bizy-toolbar-padding: 0 0.5rem 0 2rem;
284
+
285
+ --bizy-tooltip-color: #355b7f;
286
+ --bizy-tooltip-background-color: #d0e8fc;
287
+ --bizy-tooltip-border-color: #355b7f;
288
+ }