@eturnity/eturnity_reusable_components 8.13.3 → 8.13.5

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": "@eturnity/eturnity_reusable_components",
3
- "version": "8.13.3",
3
+ "version": "8.13.5",
4
4
  "files": [
5
5
  "dist",
6
6
  "src"
@@ -265,7 +265,7 @@
265
265
  dotColor: {
266
266
  type: String,
267
267
  required: false,
268
- default: theme.colors.blue2,
268
+ default: theme.semanticColors.blue[400],
269
269
  },
270
270
  type: {
271
271
  type: String,
@@ -16,7 +16,11 @@
16
16
  <ContentContainer v-if="!isLoading">
17
17
  <slot></slot>
18
18
  </ContentContainer>
19
- <CloseButton v-if="!hideClose" class="close" @click="onCloseModal()" />
19
+ <CloseButton
20
+ v-if="!hideClose && !isLoading"
21
+ class="close"
22
+ @click="onCloseModal()"
23
+ />
20
24
  </ModalContainer>
21
25
  </PageWrapper>
22
26
  </template>