@citizenplane/pimp 18.9.11 → 18.9.12

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@citizenplane/pimp",
3
- "version": "18.9.11",
3
+ "version": "18.9.12",
4
4
  "scripts": {
5
5
  "dev": "storybook dev -p 8081",
6
6
  "build-storybook": "storybook build --output-dir ./docs",
@@ -1,6 +1,6 @@
1
1
  <template>
2
2
  <div class="cpTable" :class="mainClasses">
3
- <div
3
+ <section
4
4
  ref="cpTableContainer"
5
5
  :aria-labelledby="uniqueId"
6
6
  class="cpTable__container"
@@ -91,7 +91,7 @@
91
91
  </tbody>
92
92
  </table>
93
93
  <cp-table-empty-state v-if="hasNoResult" class="cpTable__emptyState" :placeholder="noResultPlaceholder" />
94
- </div>
94
+ </section>
95
95
  <cp-table-footer
96
96
  v-if="hasPagination"
97
97
  :is-loading="isLoading"
@@ -574,7 +574,7 @@ defineExpose({ hideContextualMenu, resetPagination, currentRowData })
574
574
  }
575
575
 
576
576
  /* Scrolling Visual Cue */
577
- &__container[role='region'][aria-labelledby][tabindex] {
577
+ &__container[aria-labelledby][tabindex] {
578
578
  @extend %u-scrolling-visual-cue;
579
579
 
580
580
  overflow: auto;
@@ -616,12 +616,12 @@ defineExpose({ hideContextualMenu, resetPagination, currentRowData })
616
616
  var(--cp-dimensions-3_5) 100%;
617
617
  }
618
618
 
619
- &__container[role='region'][aria-labelledby][tabindex]:focus {
619
+ &__container[aria-labelledby][tabindex]:focus {
620
620
  border-radius: var(--cp-radius-md-lg);
621
621
  box-shadow: 0 0 0 calc(var(--cp-dimensions-0_5) * 1.5) var(--cp-focus);
622
622
  }
623
623
 
624
- &__container[role='region'][aria-labelledby][tabindex] &__table {
624
+ &__container[aria-labelledby][tabindex] &__table {
625
625
  border: none;
626
626
  margin: 0;
627
627
  }