@asd20/ui 3.2.569 → 3.2.570

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
@@ -5,7 +5,7 @@
5
5
  "*.scss",
6
6
  "*.vue"
7
7
  ],
8
- "version": "3.2.569",
8
+ "version": "3.2.570",
9
9
  "private": false,
10
10
  "license": "MIT",
11
11
  "repository": {
@@ -89,9 +89,10 @@ $input-reversed-text-color: var(--color__accent-t100);
89
89
  align-items: center;
90
90
  font-size: 1em;
91
91
  font-weight: normal;
92
+ font-family: Ariel, Arial, Helvetica, sans-serif;
92
93
  border-radius: 2px;
93
94
  cursor: pointer;
94
- color: currentColor;
95
+ color: var(--website-page__foreground-color);
95
96
  padding: space(0.25) space(0.5);
96
97
  height: space(1.25);
97
98
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
@@ -150,7 +151,7 @@ $input-reversed-text-color: var(--color__accent-t100);
150
151
  }
151
152
 
152
153
  &__label {
153
- color: currentColor;
154
+ color: var(--website-page__foreground-color);
154
155
  }
155
156
 
156
157
  &__field-wrapper {
@@ -63,7 +63,10 @@
63
63
  v-if="publishDateTime"
64
64
  :dateTime="publishDateTime"
65
65
  />
66
- <div class="modified-meta" v-if="modifiedDateTime && showModifiedDateTime">
66
+ <div
67
+ class="modified-meta"
68
+ v-if="modifiedDateTime && showModifiedDateTime"
69
+ >
67
70
  <span class="date-prefix"> | Updated:</span>
68
71
  <asd20-formatted-date :dateTime="modifiedDateTime" />
69
72
  </div>
@@ -208,7 +211,9 @@ export default {
208
211
  const modifiedDateTimeString = new Date(this.modifiedDateTime)
209
212
  // console.log(publishDateTimeString, modifiedDateTimeString)
210
213
 
211
- let publishDateTimePlusOne = new Date(publishDateTimeString.setDate(publishDateTimeString.getDate() + 1))
214
+ let publishDateTimePlusOne = new Date(
215
+ publishDateTimeString.setDate(publishDateTimeString.getDate() + 1)
216
+ )
212
217
  // console.log(publishDateTimePlusOne, modifiedDateTimeString)
213
218
  return modifiedDateTimeString > publishDateTimePlusOne ? true : false
214
219
  },
@@ -302,33 +307,36 @@ export default {
302
307
  color: var(--website-button__foreground-color);
303
308
  }
304
309
  }
310
+ &::v-deep .asd20-icon {
311
+ width: 24px !important;
312
+ height: 24px !important;
313
+ --line-color: currentColor !important;
314
+ --fill-color: var(--color__accent) !important;
315
+ g {
316
+ // --website-icon__line-color: var(--website-icon__line-color) !important;
317
+ --line-color: currentColor !important;
318
+ }
319
+ }
305
320
  .asd20-language-translation {
306
321
  flex-grow: 0;
307
322
  width: max-content;
308
323
  background: rgba(255, 255, 255, 0.9);
309
324
  border-radius: 3rem;
310
325
  padding: 0 0 0 0.5em;
311
- .asd20-select-input {
312
- margin-bottom: 0;
313
- color: var(--website-page__foreground-color) !important;
314
- &__select-wrapper {
315
- flex-grow: 0;
326
+ &::v-deep .asd20-icon {
327
+ width: 24px !important;
328
+ height: 24px !important;
329
+ --line-color: var(--website-page__foreground-color) !important;
330
+ --fill-color: var(--color__accent) !important;
331
+ g {
332
+ // --website-icon__line-color: var(--website-icon__line-color) !important;
333
+ --line-color: var(--website-page__foreground-color) !important;
316
334
  }
317
335
  }
318
336
  }
319
337
  .asd20-language-loader {
320
338
  order: 1;
321
339
  }
322
- &::v-deep .asd20-icon {
323
- width: 24px !important;
324
- height: 24px !important;
325
- --line-color: currentColor !important;
326
- --fill-color: var(--color__accent) !important;
327
- g {
328
- // --website-icon__line-color: var(--website-icon__line-color) !important;
329
- --line-color: currentColor !important;
330
- }
331
- }
332
340
  }
333
341
 
334
342
  &__top {
@@ -163,9 +163,9 @@ export default {
163
163
  Asd20QuicklinksMenu,
164
164
  Asd20MediaSection,
165
165
  },
166
- // props: {
167
- // languageCode: { type: String, default: 'en' },
168
- // },
166
+ props: {
167
+ languageCode: { type: String, default: 'en' },
168
+ },
169
169
  }
170
170
  </script>
171
171
 
@@ -286,7 +286,7 @@ export default {
286
286
  }
287
287
  .asd20-language-translation {
288
288
  right: space(1);
289
- top: space(1) !important;
289
+ top: space(0.5) !important;
290
290
  }
291
291
  .asd20-notification-group--floating {
292
292
  right: space(1);