@pocketprep/ui-kit 3.4.23 → 3.4.25

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.
@@ -413,10 +413,9 @@ export default class Table extends Vue {
413
413
  display: inline-grid;
414
414
  min-width: 100%;
415
415
  padding: 5px 22px 5px 11px;
416
- font-size: 11px;
417
- line-height: 15px;
418
- letter-spacing: 0.17px;
419
- color: $slate-03;
416
+ font-size: 12px;
417
+ line-height: 16px;
418
+ color: $brand-black;
420
419
  max-width: 100%;
421
420
  border-bottom: 1px solid $gray-divider;
422
421
 
@@ -454,6 +453,10 @@ export default class Table extends Vue {
454
453
  .table__sort-icon:not(.table__sort-icon--visible) {
455
454
  visibility: visible;
456
455
  }
456
+
457
+ .uikit-table__sort-icon {
458
+ visibility: visible;
459
+ }
457
460
  }
458
461
 
459
462
  &:focus:not(.table__column-label-content--sort-disabled) {
@@ -525,7 +528,7 @@ export default class Table extends Vue {
525
528
 
526
529
  &--hover-focus {
527
530
  &:hover {
528
- background-color: mix($barely-background, $brand-black, 96%);
531
+ background-color: $gray-background;
529
532
  }
530
533
 
531
534
  &:focus {
@@ -3,9 +3,13 @@
3
3
  v-dark="isDarkMode"
4
4
  class="uikit-tag"
5
5
  :class="{
6
- 'uikit-tag--small': isSmallTag,
6
+ 'uikit-tag--small': size === 'small',
7
+ 'uikit-tag--medium': size === 'medium',
7
8
  'uikit-tag--beta': isBetaTag,
8
9
  'uikit-tag--learning': isLearningTag,
10
+ 'uikit-tag--active': isActiveTag,
11
+ 'uikit-tag--pending': isPendingTag,
12
+ 'uikit-tag--archived': isArchivedTag,
9
13
  }"
10
14
  >
11
15
  <slot name="tagMessage" />
@@ -24,7 +28,10 @@ import { dark } from '../../directives'
24
28
  export default class Tag extends Vue {
25
29
  @Prop({ default: false }) isBetaTag!: boolean
26
30
  @Prop({ default: false }) isLearningTag!: boolean
27
- @Prop({ default: false }) isSmallTag!: boolean
31
+ @Prop({ default: false }) isActiveTag!: boolean
32
+ @Prop({ default: false }) isPendingTag!: boolean
33
+ @Prop({ default: false }) isArchivedTag!: boolean
34
+ @Prop({ default: 'large' }) size!: 'small' | 'medium' | 'large'
28
35
  @Prop({ default: false }) isDarkMode!: boolean
29
36
  }
30
37
  </script>
@@ -55,6 +62,13 @@ export default class Tag extends Vue {
55
62
  border: 1px solid $banana-bread;
56
63
  }
57
64
 
65
+ &--medium {
66
+ font-size: 12px;
67
+ height: 17px;
68
+ line-height: 16px;
69
+ padding: 0 3px;
70
+ }
71
+
58
72
  &--small {
59
73
  font-size: 12px;
60
74
  height: 16px;
@@ -81,5 +95,23 @@ export default class Tag extends Vue {
81
95
  background-color: $orchid;
82
96
  }
83
97
  }
98
+
99
+ &--active {
100
+ border: none;
101
+ background: $meadow;
102
+ color: $scifi-takeout
103
+ }
104
+
105
+ &--pending {
106
+ border: none;
107
+ background: $buttermilk;
108
+ color: $flat-brown
109
+ }
110
+
111
+ &--archived {
112
+ border: none;
113
+ background: $fog;
114
+ color: $pickled-bluewood
115
+ }
84
116
  }
85
117
  </style>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pocketprep/ui-kit",
3
- "version": "3.4.23",
3
+ "version": "3.4.25",
4
4
  "description": "Pocket Prep UI Kit",
5
5
  "author": "pocketprep",
6
6
  "scripts": {