karafka-web 0.11.0.beta2 → 0.11.0.rc1
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +2 -0
- data/Gemfile.lock +14 -14
- data/Rakefile +4 -0
- data/karafka-web.gemspec +0 -5
- data/lib/karafka/web/pro/ui/views/scheduled_messages/explorer/_message.erb +26 -116
- data/lib/karafka/web/pro/ui/views/scheduled_messages/explorer/message/_cancel.erb +49 -0
- data/lib/karafka/web/pro/ui/views/scheduled_messages/explorer/message/_compacted.erb +16 -0
- data/lib/karafka/web/pro/ui/views/scheduled_messages/explorer/message/_schedule.erb +83 -0
- data/lib/karafka/web/pro/ui/views/scheduled_messages/explorer/message/_tombstone.erb +69 -0
- data/lib/karafka/web/pro/ui/views/scheduled_messages/explorer/message/_unknown.erb +26 -0
- data/lib/karafka/web/pro/ui/views/scheduled_messages/schedules/show.erb +14 -1
- data/lib/karafka/web/ui/public/javascripts/application.min.js.gz +0 -0
- data/lib/karafka/web/ui/public/stylesheets/application.min.css +61 -48
- data/lib/karafka/web/ui/public/stylesheets/application.min.css.br +0 -0
- data/lib/karafka/web/ui/public/stylesheets/application.min.css.gz +0 -0
- data/lib/karafka/web/version.rb +1 -1
- data/package-lock.json +176 -131
- metadata +9 -31
- checksums.yaml.gz.sig +0 -0
- data/certs/cert.pem +0 -26
- data.tar.gz.sig +0 -0
- metadata.gz.sig +0 -0
@@ -21,7 +21,6 @@
|
|
21
21
|
--font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
|
22
22
|
"Courier New", monospace;
|
23
23
|
--color-red-500: oklch(63.7% 0.237 25.331);
|
24
|
-
--color-orange-500: oklch(70.5% 0.213 47.604);
|
25
24
|
--color-blue-500: oklch(62.3% 0.214 259.815);
|
26
25
|
--color-blue-600: oklch(54.6% 0.245 262.881);
|
27
26
|
--color-gray-50: oklch(98.5% 0.002 247.839);
|
@@ -452,7 +451,7 @@
|
|
452
451
|
--tab-radius-min: calc(0.75rem - var(--border));
|
453
452
|
border-color: #0000;
|
454
453
|
order: var(--tab-order);
|
455
|
-
height:
|
454
|
+
height: var(--tab-height);
|
456
455
|
font-size: 0.875rem;
|
457
456
|
padding-inline-start: var(--tab-p);
|
458
457
|
padding-inline-end: var(--tab-p);
|
@@ -475,7 +474,7 @@
|
|
475
474
|
&:checked, &:is(label:has(:checked)), &:is(.tab-active, [aria-selected="true"]) {
|
476
475
|
& + .tab-content {
|
477
476
|
display: block;
|
478
|
-
height: 100
|
477
|
+
height: calc(100% - var(--tab-height) + var(--border));
|
479
478
|
}
|
480
479
|
}
|
481
480
|
&:not(:checked, label:has(:checked), :hover, .tab-active, [aria-selected="true"]) {
|
@@ -895,7 +894,7 @@
|
|
895
894
|
--input-color: var(--color-success);
|
896
895
|
}
|
897
896
|
}
|
898
|
-
&:user-invalid, &:has(:user-invalid), &[aria-invalid] {
|
897
|
+
&:user-invalid, &:has(:user-invalid), &[aria-invalid]:not([aria-invalid="false"]) {
|
899
898
|
&, &:focus, &:checked, &[aria-checked="true"], &:focus-within {
|
900
899
|
--input-color: var(--color-error);
|
901
900
|
}
|
@@ -1114,6 +1113,7 @@
|
|
1114
1113
|
width: clamp(3rem, 20rem, 100%);
|
1115
1114
|
height: var(--size);
|
1116
1115
|
font-size: 0.875rem;
|
1116
|
+
touch-action: manipulation;
|
1117
1117
|
border-start-start-radius: var(--join-ss, var(--radius-field));
|
1118
1118
|
border-start-end-radius: var(--join-se, var(--radius-field));
|
1119
1119
|
border-end-start-radius: var(--join-es, var(--radius-field));
|
@@ -1147,6 +1147,9 @@
|
|
1147
1147
|
}
|
1148
1148
|
}
|
1149
1149
|
}
|
1150
|
+
:where(input[type="url"]), :where(input[type="email"]) {
|
1151
|
+
direction: ltr;
|
1152
|
+
}
|
1150
1153
|
:where(input[type="date"]) {
|
1151
1154
|
display: inline-block;
|
1152
1155
|
}
|
@@ -1729,6 +1732,7 @@
|
|
1729
1732
|
width: clamp(3rem, 20rem, 100%);
|
1730
1733
|
height: var(--size);
|
1731
1734
|
font-size: 0.875rem;
|
1735
|
+
touch-action: manipulation;
|
1732
1736
|
border-start-start-radius: var(--join-ss, var(--radius-field));
|
1733
1737
|
border-start-end-radius: var(--join-se, var(--radius-field));
|
1734
1738
|
border-end-start-radius: var(--join-es, var(--radius-field));
|
@@ -3084,6 +3088,7 @@
|
|
3084
3088
|
flex-wrap: wrap;
|
3085
3089
|
--tabs-height: auto;
|
3086
3090
|
--tabs-direction: row;
|
3091
|
+
--tab-height: calc(var(--size-field, 0.25rem) * 10);
|
3087
3092
|
height: var(--tabs-height);
|
3088
3093
|
flex-direction: var(--tabs-direction);
|
3089
3094
|
}
|
@@ -3836,13 +3841,6 @@
|
|
3836
3841
|
border-left-color: var(--color-error);
|
3837
3842
|
}
|
3838
3843
|
}
|
3839
|
-
.status-row-incompatible {
|
3840
|
-
table & td:first-child {
|
3841
|
-
border-left-style: var(--tw-border-style);
|
3842
|
-
border-left-width: 1px;
|
3843
|
-
border-left-color: var(--color-secondary);
|
3844
|
-
}
|
3845
|
-
}
|
3846
3844
|
.status-row-quiet {
|
3847
3845
|
table & td:first-child {
|
3848
3846
|
border-left-style: var(--tw-border-style);
|
@@ -4185,9 +4183,6 @@
|
|
4185
4183
|
.text-muted {
|
4186
4184
|
color: var(--color-gray-500);
|
4187
4185
|
}
|
4188
|
-
.text-orange-500 {
|
4189
|
-
color: var(--color-orange-500);
|
4190
|
-
}
|
4191
4186
|
.text-red-500 {
|
4192
4187
|
color: var(--color-red-500);
|
4193
4188
|
}
|
@@ -4224,6 +4219,15 @@
|
|
4224
4219
|
--btn-fg: currentColor;
|
4225
4220
|
}
|
4226
4221
|
}
|
4222
|
+
@media (hover: none) {
|
4223
|
+
&:hover:not(.btn-active, :active, :focus-visible, :disabled, [disabled], .btn-disabled) {
|
4224
|
+
--btn-shadow: "";
|
4225
|
+
--btn-bg: #0000;
|
4226
|
+
--btn-border: #0000;
|
4227
|
+
--btn-noise: none;
|
4228
|
+
--btn-fg: currentColor;
|
4229
|
+
}
|
4230
|
+
}
|
4227
4231
|
}
|
4228
4232
|
.blur {
|
4229
4233
|
--tw-blur: blur(8px);
|
@@ -4595,6 +4599,15 @@ tr:not(:first-child) th[colspan]:not([colspan="1"]) {
|
|
4595
4599
|
--btn-fg: currentColor;
|
4596
4600
|
}
|
4597
4601
|
}
|
4602
|
+
@media (hover: none) {
|
4603
|
+
&:hover:not(.btn-active, :active, :focus-visible, :disabled, [disabled], .btn-disabled) {
|
4604
|
+
--btn-shadow: "";
|
4605
|
+
--btn-bg: #0000;
|
4606
|
+
--btn-border: #0000;
|
4607
|
+
--btn-noise: none;
|
4608
|
+
--btn-fg: currentColor;
|
4609
|
+
}
|
4610
|
+
}
|
4598
4611
|
--fontsize: 0.75rem;
|
4599
4612
|
--btn-p: 0.75rem;
|
4600
4613
|
--size: calc(var(--size-field, 0.25rem) * 8);
|
@@ -4738,14 +4751,10 @@ tr:not(:first-child) th[colspan]:not([colspan="1"]) {
|
|
4738
4751
|
}
|
4739
4752
|
}
|
4740
4753
|
@layer base {
|
4741
|
-
|
4742
|
-
|
4743
|
-
|
4744
|
-
|
4745
|
-
@layer base {
|
4746
|
-
:root, [data-theme] {
|
4747
|
-
background-color: var(--root-bg, var(--color-base-100));
|
4748
|
-
color: var(--color-base-content);
|
4754
|
+
@property --radialprogress {
|
4755
|
+
syntax: "<percentage>";
|
4756
|
+
inherits: true;
|
4757
|
+
initial-value: 0%;
|
4749
4758
|
}
|
4750
4759
|
}
|
4751
4760
|
@layer base {
|
@@ -4757,10 +4766,16 @@ tr:not(:first-child) th[colspan]:not([colspan="1"]) {
|
|
4757
4766
|
}
|
4758
4767
|
}
|
4759
4768
|
@layer base {
|
4760
|
-
|
4761
|
-
|
4762
|
-
|
4763
|
-
|
4769
|
+
:root {
|
4770
|
+
--fx-noise: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='a'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.34' numOctaves='4' stitchTiles='stitch'%3E%3C/feTurbulence%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23a)' opacity='0.2'%3E%3C/rect%3E%3C/svg%3E");
|
4771
|
+
}
|
4772
|
+
.chat {
|
4773
|
+
--mask-chat: url("data:image/svg+xml,%3csvg width='13' height='13' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='M0 11.5004C0 13.0004 2 13.0004 2 13.0004H12H13V0.00036329L12.5 0C12.5 0 11.977 2.09572 11.8581 2.50033C11.6075 3.35237 10.9149 4.22374 9 5.50036C6 7.50036 0 10.0004 0 11.5004Z'/%3e%3c/svg%3e");
|
4774
|
+
}
|
4775
|
+
}
|
4776
|
+
@layer base {
|
4777
|
+
:root:has( .modal-open, .modal[open], .modal:target, .modal-toggle:checked, .drawer:not([class*="drawer-open"]) > .drawer-toggle:checked ) {
|
4778
|
+
overflow: hidden;
|
4764
4779
|
}
|
4765
4780
|
}
|
4766
4781
|
@layer base {
|
@@ -4777,16 +4792,25 @@ tr:not(:first-child) th[colspan]:not([colspan="1"]) {
|
|
4777
4792
|
}
|
4778
4793
|
}
|
4779
4794
|
@layer base {
|
4780
|
-
:root {
|
4781
|
-
|
4795
|
+
:root, [data-theme] {
|
4796
|
+
background-color: var(--root-bg, var(--color-base-100));
|
4797
|
+
color: var(--color-base-content);
|
4782
4798
|
}
|
4783
|
-
|
4784
|
-
|
4799
|
+
}
|
4800
|
+
@keyframes radio {
|
4801
|
+
0% {
|
4802
|
+
padding: 5px;
|
4803
|
+
}
|
4804
|
+
50% {
|
4805
|
+
padding: 3px;
|
4785
4806
|
}
|
4786
4807
|
}
|
4787
|
-
@keyframes
|
4808
|
+
@keyframes skeleton {
|
4788
4809
|
0% {
|
4789
|
-
|
4810
|
+
background-position: 150%;
|
4811
|
+
}
|
4812
|
+
100% {
|
4813
|
+
background-position: -50%;
|
4790
4814
|
}
|
4791
4815
|
}
|
4792
4816
|
@keyframes progress {
|
@@ -4804,28 +4828,17 @@ tr:not(:first-child) th[colspan]:not([colspan="1"]) {
|
|
4804
4828
|
opacity: 1;
|
4805
4829
|
}
|
4806
4830
|
}
|
4831
|
+
@keyframes dropdown {
|
4832
|
+
0% {
|
4833
|
+
opacity: 0;
|
4834
|
+
}
|
4835
|
+
}
|
4807
4836
|
@keyframes rating {
|
4808
4837
|
0%, 40% {
|
4809
4838
|
scale: 1.1;
|
4810
4839
|
filter: brightness(1.05) contrast(1.05);
|
4811
4840
|
}
|
4812
4841
|
}
|
4813
|
-
@keyframes radio {
|
4814
|
-
0% {
|
4815
|
-
padding: 5px;
|
4816
|
-
}
|
4817
|
-
50% {
|
4818
|
-
padding: 3px;
|
4819
|
-
}
|
4820
|
-
}
|
4821
|
-
@keyframes skeleton {
|
4822
|
-
0% {
|
4823
|
-
background-position: 150%;
|
4824
|
-
}
|
4825
|
-
100% {
|
4826
|
-
background-position: -50%;
|
4827
|
-
}
|
4828
|
-
}
|
4829
4842
|
@property --tw-border-style {
|
4830
4843
|
syntax: "*";
|
4831
4844
|
inherits: false;
|
Binary file
|
Binary file
|