@stackoverflow/stacks 1.2.0 → 1.3.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.
@@ -197,7 +197,11 @@
197
197
  border-color: var(--theme-button-filled-border-color);
198
198
  box-shadow: inset 0 1px 0 0 hsla(0, 0, 100%, 0.7);
199
199
 
200
- .dark-mode({ box-shadow: none; });
200
+ .dark-mode({
201
+ &:not(:focus) {
202
+ box-shadow: none;
203
+ }
204
+ });
201
205
 
202
206
  &:hover,
203
207
  &:focus,
@@ -278,7 +282,11 @@
278
282
  border-color: transparent;
279
283
  box-shadow: inset 0 1px 0 0 hsla(0, 0%, 100%, 0.4);
280
284
 
281
- .dark-mode({ box-shadow: none; });
285
+ .dark-mode({
286
+ &:not(:focus) {
287
+ box-shadow: none;
288
+ }
289
+ });
282
290
 
283
291
  .highcontrast-mode({
284
292
  background-color: var(--black-400);
@@ -380,7 +388,11 @@
380
388
  border-color: transparent;
381
389
  box-shadow: inset 0 1px 0 0 hsla(0, 0%, 100%, 0.4);
382
390
 
383
- .dark-mode({ box-shadow: none; });
391
+ .dark-mode({
392
+ &:not(:focus) {
393
+ box-shadow: none;
394
+ }
395
+ });
384
396
 
385
397
  .highcontrast-mode({
386
398
  color: var(--white);
@@ -440,15 +452,19 @@
440
452
  box-shadow: inset 0 1px 0 0 hsla(0, 0%, 100%, 0.4);
441
453
 
442
454
  .dark-mode({
443
- box-shadow: none;
455
+ &:not(:focus) {
456
+ box-shadow: none;
457
+ }
444
458
 
445
459
  &:not(.is-selected) {
460
+ background-color: var(--theme-secondary-300);
446
461
  color: var(--black);
447
462
  }
448
463
  });
449
464
  .highcontrast-mode({
450
465
  &:not(.is-selected) {
451
466
  border-color: transparent;
467
+ background-color: var(--theme-secondary-400);
452
468
  color: var(--white);
453
469
  }
454
470
  });
@@ -560,7 +576,7 @@
560
576
  .s-btn__unset:focus {
561
577
  padding: 0;
562
578
  border: none;
563
- outline: none;
579
+ outline: initial;
564
580
  font: unset;
565
581
  border-radius: 0;
566
582
  color: unset;
@@ -575,7 +591,7 @@
575
591
  padding: 0;
576
592
  border: none;
577
593
  border-radius: 0;
578
- outline: none;
594
+ outline: initial;
579
595
  font: inherit;
580
596
  background: none;
581
597
  box-shadow: none;
@@ -600,6 +616,14 @@
600
616
  }
601
617
  }
602
618
 
619
+ .s-btn__unset,
620
+ .s-btn__link {
621
+ &:focus,
622
+ &:focus-visible {
623
+ outline-style: auto;
624
+ }
625
+ }
626
+
603
627
  .s-btn__icon {
604
628
  // -- BUTTONS WITH ICONS
605
629
  // ------------------------------------------------------------------------
@@ -377,10 +377,9 @@ fieldset {
377
377
  background-repeat: no-repeat;
378
378
  background-size: contain;
379
379
 
380
- &:checked {
380
+ &:checked, &:indeterminate {
381
381
  border-color: var(--theme-secondary-400) !important;
382
382
  background-color: var(--theme-secondary-400);
383
- background-image: url("data:image/svg+xml,%3Csvg width='11' height='11' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 3.41L8.59 2 4 6.59 2.41 5 1 6.41l3 3z' fill='%23fff'/%3E%3C/svg%3E");
384
383
 
385
384
  .highcontrast-dark-mode({
386
385
  border-color: var(--blue-700) !important;
@@ -392,6 +391,13 @@ fieldset {
392
391
  }
393
392
  }
394
393
 
394
+ &:checked {
395
+ background-image: url("data:image/svg+xml,%3Csvg width='11' height='11' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 3.41L8.59 2 4 6.59 2.41 5 1 6.41l3 3z' fill='%23fff'/%3E%3C/svg%3E");
396
+ }
397
+ &:indeterminate {
398
+ background-image: url("data:image/svg+xml,%3Csvg width='11' height='11' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 4.5 h7 v2 h-7 z' fill='%23fff'/%3E%3C/svg%3E");
399
+ }
400
+
395
401
  &:focus {
396
402
  border-color: var(--theme-secondary-300);
397
403
  box-shadow: 0 0 0 var(--su-static4) var(--focus-ring);
@@ -616,11 +622,7 @@ fieldset {
616
622
  }
617
623
 
618
624
  .s-input-icon {
619
- color: var(--black-200);
620
-
621
- .highcontrast-mode({
622
- color: var(--black-400);
623
- });
625
+ color: var(--black-400);
624
626
  }
625
627
 
626
628
  .s-label {
@@ -641,11 +643,7 @@ fieldset {
641
643
  &.s-input-icon__creditcard {
642
644
  right: auto;
643
645
  left: 0.7em;
644
- color: var(--black-200);
645
-
646
- .highcontrast-mode({
647
- color: var(--black-400);
648
- });
646
+ color: var(--black-400);
649
647
  }
650
648
  }
651
649
 
@@ -34,87 +34,6 @@
34
34
  width: 100%;
35
35
  }
36
36
  }
37
-
38
- &.s-post-summary__legacy {
39
- padding-left: 0; // Since stats have padding, we don't need it on the parent
40
-
41
- #stacks-internals #screen-md({
42
- padding-left: var(--su16);
43
- });
44
-
45
- .s-post-summary--stats {
46
- width: auto;
47
- flex-direction: row;
48
- align-items: center;
49
- gap: var(--su2);
50
-
51
- .s-post-summary--stats-item {
52
- min-width: var(--su64);
53
- height: var(--su48);
54
- flex-direction: column;
55
- gap: 0;
56
- font-size: var(--fs-caption);
57
-
58
- &.s-post-summary--stats-item__emphasized {
59
- color: inherit;
60
- }
61
-
62
- &.has-accepted-answer .svg-icon {
63
- display: none;
64
- }
65
-
66
- .s-post-summary--stats-item-number {
67
- font-weight: normal;
68
- font-size: var(--fs-body3);
69
- }
70
-
71
- &.is-deleted,
72
- &.is-published,
73
- &.is-draft,
74
- &.is-review,
75
- &.is-closed,
76
- &.is-archived,
77
- &.is-pinned {
78
- display: none;
79
- }
80
- }
81
-
82
- #stacks-internals #screen-md({
83
- flex-direction: row;
84
- align-items: center;
85
- gap: var(--su8);
86
-
87
- .s-post-summary--stats-item {
88
- min-width: auto;
89
- height: auto;
90
- flex-direction: row;
91
- gap: 3px; // HTML spacing
92
-
93
- .s-post-summary--stats-item-number {
94
- font-size: inherit;
95
- }
96
-
97
- &.s-post-summary--stats-item__emphasized {
98
- color: var(--fc-dark);
99
- }
100
-
101
- &.has-accepted-answer .svg-icon {
102
- display: block;
103
- }
104
-
105
- &.is-deleted,
106
- &.is-published,
107
- &.is-draft,
108
- &.is-review,
109
- &.is-closed,
110
- &.is-archived,
111
- &.is-pinned {
112
- display: block;
113
- }
114
- }
115
- });
116
- }
117
- }
118
37
  }
119
38
 
120
39
  // [1] To override .s-btn class attributes
@@ -403,10 +322,9 @@
403
322
 
404
323
  .s-post-summary__ignored,
405
324
  .s-post-summary__deleted {
406
- .s-post-summary--content > *:not(.s-post-summary--content-menu-button) {
325
+ .s-post-summary--content > *:not(.s-post-summary--content-menu-button):not(.s-post-summary--meta) {
407
326
  opacity: 0.6;
408
327
  }
409
-
410
328
  // TODO DEPRECATED remove `:not(.is-deleted)`
411
329
  .s-post-summary--stats-item:not(.s-badge):not(.is-deleted) {
412
330
  opacity: 0.6;
@@ -430,7 +348,13 @@
430
348
  color: var(--black-500);
431
349
  }
432
350
 
433
- .s-post-summary--meta {
351
+ .s-post-summary--meta > *:not(.s-post-summary--meta-tags) {
352
+ opacity: 0.6;
434
353
  filter: grayscale(100%);
435
354
  }
436
- }
355
+
356
+ .s-post-summary--meta-tags > a {
357
+ opacity: 0.6;
358
+ filter: grayscale(100%);
359
+ }
360
+ }
@@ -130,6 +130,9 @@
130
130
  }
131
131
 
132
132
  .s-navigation {
133
+ .s-navigation--item:focus-visible {
134
+ box-shadow: var(--theme-topbar-search-shadow-focus);
135
+ }
133
136
  .s-navigation--item:not(.is-selected) {
134
137
  color: var(--theme-topbar-item-color);
135
138
  }
@@ -153,7 +156,7 @@
153
156
  // Search input
154
157
  --theme-topbar-search-color: @black-700;
155
158
  --theme-topbar-search-background: @white;
156
- --theme-topbar-search-placeholder: @black-200;
159
+ --theme-topbar-search-placeholder: @black-400;
157
160
  --theme-topbar-search-border: @black-200;
158
161
  --theme-topbar-search-border-focus: @blue-300;
159
162
  --theme-topbar-search-shadow-focus: 0 0 0 var(--su-static4) var(--focus-ring);
@@ -247,7 +247,7 @@
247
247
  // Topbar Search input
248
248
  --theme-topbar-search-color: var(--black-700);
249
249
  --theme-topbar-search-background: var(--white);
250
- --theme-topbar-search-placeholder: var(--black-200);
250
+ --theme-topbar-search-placeholder: var(--black-400);
251
251
  --theme-topbar-search-border: var(--black-200);
252
252
  --theme-topbar-search-border-focus: var(--blue-300);
253
253
  --theme-topbar-search-shadow-focus: 0 0 0 var(--su-static4) var(--focus-ring);
@@ -709,10 +709,10 @@
709
709
  --black-900: hsl(@black-h, @black-s, 0%);
710
710
 
711
711
  // Orange
712
- --orange-050: hsl(@orange-h, 100%, 97.5%);
713
- --orange-100: hsl(@orange-h, 100%, 94%);
714
- --orange-200: hsl(@orange-h, 100%, 88%);
715
- --orange-300: hsl(@orange-h, 100%, 82%);
712
+ --orange-050: hsl(@orange-h, 100%, 93%);
713
+ --orange-100: hsl(@orange-h, 100%, 90%);
714
+ --orange-200: hsl(@orange-h, 100%, 86%);
715
+ --orange-300: hsl(@orange-h, 100%, 81%);
716
716
  --orange-400: hsl(@orange-h, 100%, 34%);
717
717
  --orange-500: hsl(@orange-h, 100%, 29%);
718
718
  --orange-600: hsl(@orange-h, 100%, 24%);
@@ -721,10 +721,10 @@
721
721
  --orange-900: hsl(@orange-h, 100%, 8%);
722
722
 
723
723
  // Blue
724
- --blue-050: hsl(@blue-h, 100%, 97.5%);
725
- --blue-100: hsl(@blue-h, 100%, 95%);
726
- --blue-200: hsl(@blue-h, 100%, 90%);
727
- --blue-300: hsl(@blue-h, 100%, 85%);
724
+ --blue-050: hsl(@blue-h, 100%, 94%);
725
+ --blue-100: hsl(@blue-h, 100%, 92%);
726
+ --blue-200: hsl(@blue-h, 100%, 89%);
727
+ --blue-300: hsl(@blue-h, 100%, 86%);
728
728
  --blue-400: hsl(@blue-h, 100%, 25%);
729
729
  --blue-500: hsl(@blue-h, 100%, 20%);
730
730
  --blue-600: hsl(@blue-h, 100%, 15%);
@@ -733,10 +733,10 @@
733
733
  --blue-900: hsl(@blue-h, 100%, 5%);
734
734
 
735
735
  // Powder
736
- --powder-050: hsl(@powder-h, 100%, 97.5%);
737
- --powder-100: hsl(@powder-h, 85%, 96%);
738
- --powder-200: hsl(@powder-h, 75%, 92%);
739
- --powder-300: hsl(@powder-h, 70%, 88%);
736
+ --powder-050: hsl(@powder-h, 100%, 95%);
737
+ --powder-100: hsl(@powder-h, 85%, 93%);
738
+ --powder-200: hsl(@powder-h, 75%, 89%);
739
+ --powder-300: hsl(@powder-h, 70%, 86%);
740
740
  --powder-400: hsl(@powder-h, 55%, 28%);
741
741
  --powder-500: hsl(@powder-h, 60%, 24%);
742
742
  --powder-600: hsl(@powder-h, 70%, 20%);
@@ -745,11 +745,11 @@
745
745
  --powder-900: hsl(@powder-h, 75%, 8%);
746
746
 
747
747
  // Green
748
- --green-025: hsl(@green-h, 100%, 97%);
749
- --green-050: hsl(@green-h, 100%, 96%);
750
- --green-100: hsl(@green-h, 100%, 94%);
751
- --green-200: hsl(@green-h, 100%, 88%);
752
- --green-300: hsl(@green-h, 100%, 82%);
748
+ --green-025: hsl(@green-h, 100%, 94%);
749
+ --green-050: hsl(@green-h, 100%, 91%);
750
+ --green-100: hsl(@green-h, 100%, 87%);
751
+ --green-200: hsl(@green-h, 100%, 83%);
752
+ --green-300: hsl(@green-h, 100%, 78%);
753
753
  --green-400: hsl(@green-h, 100%, 18%);
754
754
  --green-500: hsl(@green-h, 100%, 15%);
755
755
  --green-600: hsl(@green-h, 100%, 12%);
@@ -758,10 +758,10 @@
758
758
  --green-900: hsl(@green-h, 100%, 3%);
759
759
 
760
760
  // Yellow
761
- --yellow-050: hsl(@yellow-h, 100%, 95%);
762
- --yellow-100: hsl(@yellow-h, 100%, 92%);
763
- --yellow-200: hsl(@yellow-h, 95%, 85%);
764
- --yellow-300: hsl(@yellow-h, 95%, 78%);
761
+ --yellow-050: hsl(@yellow-h, 100%, 92%);
762
+ --yellow-100: hsl(@yellow-h, 100%, 88%);
763
+ --yellow-200: hsl(@yellow-h, 95%, 83%);
764
+ --yellow-300: hsl(@yellow-h, 95%, 75%);
765
765
  --yellow-400: hsl(@yellow-h, 100%, 28%);
766
766
  --yellow-500: hsl(@yellow-h, 100%, 26%);
767
767
  --yellow-600: hsl(@yellow-h, 100%, 23%);
@@ -770,10 +770,10 @@
770
770
  --yellow-900: hsl(@yellow-h, 100%, 7%);
771
771
 
772
772
  // Red
773
- --red-050: hsl(@red-h, 100%, 97.5%);
774
- --red-100: hsl(@red-h, 100%, 95%);
775
- --red-200: hsl(@red-h, 100%, 90%);
776
- --red-300: hsl(@red-h, 100%, 85%);
773
+ --red-050: hsl(@red-h, 100%, 94%);
774
+ --red-100: hsl(@red-h, 100%, 92%);
775
+ --red-200: hsl(@red-h, 100%, 89%);
776
+ --red-300: hsl(@red-h, 100%, 86%);
777
777
  --red-400: hsl(@red-h, 100%, 35%);
778
778
  --red-500: hsl(@red-h, 100%, 29%);
779
779
  --red-600: hsl(@red-h, 100%, 23%);
@@ -865,10 +865,10 @@
865
865
  --black-900: hsl(@black-h, @black-s, 100%);
866
866
 
867
867
  // Orange
868
- --orange-050: hsl(@orange-h, 100%, 4%);
869
- --orange-100: hsl(@orange-h, 100%, 8%);
870
- --orange-200: hsl(@orange-h, 100%, 16%);
871
- --orange-300: hsl(@orange-h, 100%, 24%);
868
+ --orange-050: hsl(@orange-h, 100%, 7%);
869
+ --orange-100: hsl(@orange-h, 100%, 9%);
870
+ --orange-200: hsl(@orange-h, 100%, 15%);
871
+ --orange-300: hsl(@orange-h, 100%, 22%);
872
872
  --orange-400: hsl(@orange-h, 100%, 64%);
873
873
  --orange-500: hsl(@orange-h, 100%, 71%);
874
874
  --orange-600: hsl(@orange-h, 100%, 77%);
@@ -877,10 +877,10 @@
877
877
  --orange-900: hsl(@orange-h, 100%, 91%);
878
878
 
879
879
  // Blue
880
- --blue-050: hsl(@blue-h, 100%, 4%);
880
+ --blue-050: hsl(@blue-h, 100%, 7%);
881
881
  --blue-100: hsl(@blue-h, 100%, 11%);
882
- --blue-200: hsl(@blue-h, 100%, 18%);
883
- --blue-300: hsl(@blue-h, 100%, 25%);
882
+ --blue-200: hsl(@blue-h, 100%, 17%);
883
+ --blue-300: hsl(@blue-h, 100%, 24%);
884
884
  --blue-400: hsl(@blue-h, 100%, 75%);
885
885
  --blue-500: hsl(@blue-h, 100%, 80%);
886
886
  --blue-600: hsl(@blue-h, 100%, 85%);
@@ -889,10 +889,10 @@
889
889
  --blue-900: hsl(@blue-h, 100%, 95%);
890
890
 
891
891
  // Powder
892
- --powder-050: hsl(@powder-h, 100%, 6%);
893
- --powder-100: hsl(@powder-h, 90%, 8%);
892
+ --powder-050: hsl(@powder-h, 100%, 7%);
893
+ --powder-100: hsl(@powder-h, 95%, 10%);
894
894
  --powder-200: hsl(@powder-h, 80%, 14%);
895
- --powder-300: hsl(@powder-h, 60%, 20%);
895
+ --powder-300: hsl(@powder-h, 76%, 19%);
896
896
  --powder-400: hsl(@powder-h, 55%, 72%);
897
897
  --powder-500: hsl(@powder-h, 60%, 76%);
898
898
  --powder-600: hsl(@powder-h, 70%, 80%);
@@ -901,11 +901,11 @@
901
901
  --powder-900: hsl(@powder-h, 75%, 92%);
902
902
 
903
903
  // Green
904
- --green-025: hsl(@green-h, 100%, 3%);
905
- --green-050: hsl(@green-h, 100%, 4%);
906
- --green-100: hsl(@green-h, 100%, 6%);
907
- --green-200: hsl(@green-h, 100%, 12%);
908
- --green-300: hsl(@green-h, 100%, 18%);
904
+ --green-025: hsl(@green-h, 100%, 5%);
905
+ --green-050: hsl(@green-h, 100%, 6%);
906
+ --green-100: hsl(@green-h, 100%, 7%);
907
+ --green-200: hsl(@green-h, 100%, 11%);
908
+ --green-300: hsl(@green-h, 100%, 15%);
909
909
  --green-400: hsl(@green-h, 100%, 65%);
910
910
  --green-500: hsl(@green-h, 100%, 71%);
911
911
  --green-600: hsl(@green-h, 100%, 77%);
@@ -914,10 +914,10 @@
914
914
  --green-900: hsl(@green-h, 100%, 94%);
915
915
 
916
916
  // Yellow
917
- --yellow-050: hsl(@yellow-h, 100%, 4%);
918
- --yellow-100: hsl(@yellow-h, 100%, 8%);
919
- --yellow-200: hsl(@yellow-h, 95%, 16%);
920
- --yellow-300: hsl(@yellow-h, 95%, 24%);
917
+ --yellow-050: hsl(@yellow-h, 100%, 6%);
918
+ --yellow-100: hsl(@yellow-h, 100%, 9%);
919
+ --yellow-200: hsl(@yellow-h, 100%, 14%);
920
+ --yellow-300: hsl(@yellow-h, 100%, 20%);
921
921
  --yellow-400: hsl(@yellow-h, 100%, 55%);
922
922
  --yellow-500: hsl(@yellow-h, 100%, 63%);
923
923
  --yellow-600: hsl(@yellow-h, 100%, 71%);
@@ -926,10 +926,10 @@
926
926
  --yellow-900: hsl(@yellow-h, 100%, 95%);
927
927
 
928
928
  // Red
929
- --red-050: hsl(@red-h, 100%, 4%);
930
- --red-100: hsl(@red-h, 100%, 8%);
931
- --red-200: hsl(@red-h, 100%, 16%);
932
- --red-300: hsl(@red-h, 100%, 24%);
929
+ --red-050: hsl(@red-h, 100%, 9%);
930
+ --red-100: hsl(@red-h, 100%, 12%);
931
+ --red-200: hsl(@red-h, 100%, 17%);
932
+ --red-300: hsl(@red-h, 100%, 22%);
933
933
  --red-400: hsl(@red-h, 100%, 70%);
934
934
  --red-500: hsl(@red-h, 100%, 75%);
935
935
  --red-600: hsl(@red-h, 100%, 80%);
@@ -12,8 +12,8 @@ export class UploaderController extends Stacks.StacksController {
12
12
  private previewsTarget!: HTMLElement;
13
13
  private uploaderTarget!: HTMLElement;
14
14
 
15
- private boundDragEnter!: any;
16
- private boundDragLeave!: any;
15
+ private boundDragEnter!: () => void;
16
+ private boundDragLeave!: () => void;
17
17
 
18
18
  private static readonly FILE_DISPLAY_LIMIT = 10;
19
19
  private static readonly MAX_FILE_SIZE = 1024 * 1024 * 10; // 10 MB
@@ -50,7 +50,7 @@ export class UploaderController extends Stacks.StacksController {
50
50
  const hasMultipleFiles = res.length > 1;
51
51
 
52
52
  if (hasMultipleFiles) {
53
- let headingElement = document.createElement("div");
53
+ const headingElement = document.createElement("div");
54
54
  headingElement.classList.add("s-uploader--previews-heading");
55
55
  headingElement.innerText = res.length < count ?
56
56
  `Showing ${res.length} of ${count} files` : `${count} items`;
@@ -61,7 +61,9 @@ export class UploaderController extends Stacks.StacksController {
61
61
  }
62
62
  res.forEach((file) => this.addFilePreview(file));
63
63
  this.handleUploaderActive(true);
64
- });
64
+ })
65
+ // TODO consider rendering an error message
66
+ .catch(() => null);
65
67
  }
66
68
 
67
69
  /**
@@ -84,13 +86,25 @@ export class UploaderController extends Stacks.StacksController {
84
86
  const enableElements = scope.findAllElements('[data-s-uploader-enable-on-input]');
85
87
 
86
88
  if (shouldPreview) {
87
- hideElements.map(el => el.classList.add("d-none"));
88
- showElements.map(el => el.classList.remove("d-none"));
89
- enableElements.map(el => el.removeAttribute("disabled"));
89
+ hideElements.forEach(el => {
90
+ el.classList.add("d-none");
91
+ });
92
+ showElements.forEach(el => {
93
+ el.classList.remove("d-none");
94
+ });
95
+ enableElements.forEach(el => {
96
+ el.removeAttribute("disabled");
97
+ });
90
98
  } else {
91
- hideElements.map(el => el.classList.remove("d-none"));
92
- showElements.map(el => el.classList.add("d-none"));
93
- enableElements.map(el => el.setAttribute("disabled", "true"))
99
+ hideElements.forEach(el => {
100
+ el.classList.remove("d-none");
101
+ });
102
+ showElements.forEach(el => {
103
+ el.classList.add("d-none");
104
+ });
105
+ enableElements.forEach(el => {
106
+ el.setAttribute("disabled", "true");
107
+ });
94
108
  this.handleUploaderActive(false);
95
109
  }
96
110
  }
@@ -104,7 +118,7 @@ export class UploaderController extends Stacks.StacksController {
104
118
  return;
105
119
  }
106
120
 
107
- let previewElement = document.createElement("div");
121
+ const previewElement = document.createElement("div");
108
122
  let thumbElement;
109
123
 
110
124
  if (file.type.match('image/*') && file.data) {
@@ -137,7 +151,7 @@ export class UploaderController extends Stacks.StacksController {
137
151
  * @returns an object containing a FilePreview object
138
152
  */
139
153
  private fileToDataURL(file: File): Promise<FilePreview> {
140
- var reader = new FileReader();
154
+ const reader = new FileReader();
141
155
  const { name, size, type } = file;
142
156
 
143
157
  if (size < UploaderController.MAX_FILE_SIZE && type.indexOf("image") > -1) {
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "type": "git",
6
6
  "url": "https://github.com/StackExchange/Stacks.git"
7
7
  },
8
- "version": "1.2.0",
8
+ "version": "1.3.0",
9
9
  "files": [
10
10
  "dist",
11
11
  "lib"
@@ -35,35 +35,35 @@
35
35
  },
36
36
  "devDependencies": {
37
37
  "@11ty/eleventy": "^1.0.1",
38
- "@highlightjs/cdn-assets": "^11.5.1",
39
- "@stackoverflow/stacks-editor": "^0.5.0",
40
- "@stackoverflow/stacks-icons": "^2.27.0",
41
- "@typescript-eslint/eslint-plugin": "^5.27.1",
42
- "@typescript-eslint/parser": "^5.27.1",
38
+ "@highlightjs/cdn-assets": "^11.6.0",
39
+ "@stackoverflow/stacks-editor": "^0.6.1",
40
+ "@stackoverflow/stacks-icons": "^3.0.0",
41
+ "@typescript-eslint/eslint-plugin": "^5.31.0",
42
+ "@typescript-eslint/parser": "^5.31.0",
43
43
  "backstopjs": "^6.1.0",
44
- "concurrently": "^7.2.1",
44
+ "concurrently": "^7.3.0",
45
45
  "css-loader": "^6.7.1",
46
- "cssnano": "^5.1.11",
46
+ "cssnano": "^5.1.12",
47
47
  "docsearch.js": "^2.6.3",
48
48
  "eleventy-plugin-highlightjs": "^1.1.0",
49
49
  "eleventy-plugin-nesting-toc": "^1.3.0",
50
- "eslint": "^8.17.0",
50
+ "eslint": "^8.20.0",
51
51
  "eslint-config-prettier": "^8.5.0",
52
52
  "eslint-plugin-no-unsanitized": "^4.0.1",
53
53
  "jquery": "^3.6.0",
54
54
  "less-loader": "^11.0.0",
55
55
  "list.js": "^2.3.1",
56
56
  "markdown-it": "^13.0.1",
57
- "mini-css-extract-plugin": "^2.6.0",
57
+ "mini-css-extract-plugin": "^2.6.1",
58
58
  "postcss-less": "^6.0.0",
59
- "postcss-loader": "^7.0.0",
60
- "prettier": "^2.6.2",
59
+ "postcss-loader": "^7.0.1",
60
+ "prettier": "^2.7.1",
61
61
  "stylelint": "^14.9.1",
62
62
  "stylelint-config-recommended": "^8.0.0",
63
63
  "stylelint-config-standard": "^26.0.0",
64
64
  "terser-webpack-plugin": "^5.3.3",
65
- "ts-loader": "^9.3.0",
66
- "typescript": "^4.7.3",
65
+ "ts-loader": "^9.3.1",
66
+ "typescript": "^4.7.4",
67
67
  "webpack": "^5.73.0",
68
68
  "webpack-cli": "^4.10.0",
69
69
  "webpack-merge": "^5.8.0"