@salesforcedevs/dx-components 1.3.62-alpha01 → 1.3.63

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/LICENSE ADDED
@@ -0,0 +1,12 @@
1
+ Copyright (c) 2020, Salesforce.com, Inc.
2
+ All rights reserved.
3
+
4
+ Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
5
+
6
+ * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
7
+
8
+ * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
9
+
10
+ * Neither the name of Salesforce.com nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
11
+
12
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforcedevs/dx-components",
3
- "version": "1.3.62-alpha01",
3
+ "version": "1.3.63",
4
4
  "description": "DX Lightning web components",
5
5
  "license": "MIT",
6
6
  "engines": {
@@ -10,13 +10,13 @@
10
10
  "access": "public"
11
11
  },
12
12
  "dependencies": {
13
- "@coveo/headless": "^2.7.1",
13
+ "@coveo/headless": "^1.32.0",
14
14
  "@floating-ui/dom": "^1.0.4",
15
15
  "@sfdocs-internal/wires": "^0.6.3",
16
16
  "@types/throttle-debounce": "^5.0.0",
17
17
  "@vimeo/player": "^2.16.4",
18
18
  "classnames": "^2.2.6",
19
- "coveo-search-ui": "^2.10105.0",
19
+ "coveo-search-ui": "^2.10082.5",
20
20
  "debounce": "^1.2.0",
21
21
  "js-cookie": "^3.0.1",
22
22
  "lodash.defaults": "^4.2.0",
@@ -39,5 +39,6 @@
39
39
  "@types/vimeo__player": "^2.16.2",
40
40
  "eventsourcemock": "^2.0.0",
41
41
  "luxon": "^3.1.0"
42
- }
42
+ },
43
+ "gitHead": "95bd94abb10d1fa353a4e2988a7584209a164545"
43
44
  }
@@ -10,6 +10,10 @@
10
10
  flex-direction: column;
11
11
  }
12
12
 
13
+ .dx-card-base_layout-horizontal dx-card-title {
14
+ --dx-c-card-title-font-size: var(--dx-g-text-lg);
15
+ }
16
+
13
17
  .details {
14
18
  align-self: flex-start;
15
19
  display: flex;
@@ -58,6 +62,10 @@
58
62
  flex-wrap: wrap;
59
63
  }
60
64
 
65
+ .card-event_detail-datetime {
66
+ width: 100%;
67
+ }
68
+
61
69
  .card-event_detail-datetime-spacing {
62
70
  padding-right: var(--dx-g-spacing-xs);
63
71
  padding-left: var(--dx-g-spacing-xs);
@@ -81,10 +89,13 @@ dx-button {
81
89
  }
82
90
 
83
91
  dx-type-badge {
84
- margin-top: var(--dx-g-spacing-sm);
85
92
  margin-bottom: var(--dx-g-spacing-sm);
86
93
  }
87
94
 
95
+ dx-formatted-date-time {
96
+ --dx-g-text-body-color: var(--dx-g-indigo-vibrant-40);
97
+ }
98
+
88
99
  @media (max-width: 1024px) {
89
100
  .card-event:not(.dx-card-base_featured) .image-link {
90
101
  display: none;
@@ -28,6 +28,11 @@
28
28
  ></dx-formatted-date-time>
29
29
  </div>
30
30
  <div class="card-event_detail-section">
31
+ <dx-type-badge
32
+ color={typeBadgeColor}
33
+ value={type}
34
+ if:true={type}
35
+ ></dx-type-badge>
31
36
  <dx-card-title
32
37
  href={href}
33
38
  onmouseenter={setLinkHovered}
@@ -43,11 +48,6 @@
43
48
  >
44
49
  {location}
45
50
  </span>
46
- <dx-type-badge
47
- color={typeBadgeColor}
48
- value={type}
49
- if:true={type}
50
- ></dx-type-badge>
51
51
  </div>
52
52
  <span
53
53
  class="dx-text-body-2"
@@ -58,7 +58,7 @@
58
58
  </span>
59
59
  <span class="card-event_detail-datetime-row">
60
60
  <dx-formatted-date-time
61
- class="dx-text-body-3"
61
+ class="dx-text-body-3 card-event_detail-datetime"
62
62
  value={startDatetime}
63
63
  weekday="long"
64
64
  month="long"
@@ -66,7 +66,6 @@
66
66
  year="numeric"
67
67
  time-zone-name="short"
68
68
  ></dx-formatted-date-time>
69
- <div class="card-event_detail-datetime-spacing">•</div>
70
69
  <dx-formatted-date-time
71
70
  class="dx-text-body-3"
72
71
  value={startDatetime}
@@ -1,8 +1,6 @@
1
1
  /*
2
2
  Code generated by scripts/postinstall.js DO NOT EDIT
3
- */
4
-
5
- /*
3
+ *//*
6
4
  * @param direction vertical or horizontal
7
5
  * @param position type of positioning to apply (relative/absolute)
8
6
  */
@@ -1378,15 +1376,6 @@ Code generated by scripts/postinstall.js DO NOT EDIT
1378
1376
  .coveo-filetype-salesforce-standard-work-order-item,
1379
1377
  .coveo-filetype-salesforce-standard-work-order,
1380
1378
  .coveo-filetype-salesforce-standard-work-type,
1381
- .coveo-filetype-slack,
1382
- .coveo-icon.filetype.Slackmessage,
1383
- .coveo-icon.filetype.slackmessage,
1384
- .coveo-icon.filetype.Slackchannel,
1385
- .coveo-icon.filetype.slackchannel,
1386
- .coveo-icon.filetype.Slackfile,
1387
- .coveo-icon.filetype.slackfile,
1388
- .coveo-icon.filetype.Slackuser,
1389
- .coveo-icon.filetype.slackuser,
1390
1379
  .coveo-filetype-user,
1391
1380
  .coveo-icon.objecttype.People,
1392
1381
  .coveo-icon.objecttype.people,
@@ -1595,6 +1584,21 @@ Code generated by scripts/postinstall.js DO NOT EDIT
1595
1584
  background-size: 56px 64px;
1596
1585
  }
1597
1586
 
1587
+ .coveo-filetype-slack,
1588
+ .coveo-icon.filetype.Slackmessage,
1589
+ .coveo-icon.filetype.slackmessage,
1590
+ .coveo-icon.filetype.Slackchannel,
1591
+ .coveo-icon.filetype.slackchannel,
1592
+ .coveo-icon.filetype.Slackfile,
1593
+ .coveo-icon.filetype.slackfile,
1594
+ .coveo-icon.filetype.Slackuser,
1595
+ .coveo-icon.filetype.slackuser {
1596
+ display: inline-block;
1597
+ width: 124px;
1598
+ height: 124px;
1599
+ background-size: 124px 124px;
1600
+ }
1601
+
1598
1602
  .coveo-filetype-attachment-small,
1599
1603
  .coveo-icon.objecttype.coveo-small.Attachment,
1600
1604
  .coveo-icon.objecttype.coveo-small.attachment,
@@ -2120,15 +2124,6 @@ Code generated by scripts/postinstall.js DO NOT EDIT
2120
2124
  .coveo-filetype-salesforce-standard-work-order-item-small,
2121
2125
  .coveo-filetype-salesforce-standard-work-order-small,
2122
2126
  .coveo-filetype-salesforce-standard-work-type-small,
2123
- .coveo-filetype-slack-small,
2124
- .coveo-icon.filetype.coveo-small.Slackmessage,
2125
- .coveo-icon.filetype.coveo-small.slackmessage,
2126
- .coveo-icon.filetype.coveo-small.Slackchannel,
2127
- .coveo-icon.filetype.coveo-small.slackchannel,
2128
- .coveo-icon.filetype.coveo-small.Slackfile,
2129
- .coveo-icon.filetype.coveo-small.slackfile,
2130
- .coveo-icon.filetype.coveo-small.Slackuser,
2131
- .coveo-icon.filetype.coveo-small.slackuser,
2132
2127
  .coveo-filetype-user-small,
2133
2128
  .coveo-icon.objecttype.coveo-small.People,
2134
2129
  .coveo-icon.objecttype.coveo-small.people,
@@ -2337,6 +2332,21 @@ Code generated by scripts/postinstall.js DO NOT EDIT
2337
2332
  background-size: 28px 32px;
2338
2333
  }
2339
2334
 
2335
+ .coveo-filetype-slack-small,
2336
+ .coveo-icon.filetype.coveo-small.Slackmessage,
2337
+ .coveo-icon.filetype.coveo-small.slackmessage,
2338
+ .coveo-icon.filetype.coveo-small.Slackchannel,
2339
+ .coveo-icon.filetype.coveo-small.slackchannel,
2340
+ .coveo-icon.filetype.coveo-small.Slackfile,
2341
+ .coveo-icon.filetype.coveo-small.slackfile,
2342
+ .coveo-icon.filetype.coveo-small.Slackuser,
2343
+ .coveo-icon.filetype.coveo-small.slackuser {
2344
+ display: inline-block;
2345
+ width: 62px;
2346
+ height: 62px;
2347
+ background-size: 62px 62px;
2348
+ }
2349
+
2340
2350
  .coveo-filetype-attachment,
2341
2351
  .coveo-icon.objecttype.Attachment,
2342
2352
  .coveo-icon.objecttype.attachment,
@@ -8055,13 +8065,6 @@ select.coveo-dropdown::-ms-expand {
8055
8065
  * @param $size size of the icon to use
8056
8066
  */
8057
8067
 
8058
- @font-face {
8059
- font-family: 'Lato';
8060
- src: url('https://static.cloud.coveo.com/searchui/v2.10104/0/fonts/lato.woff2'), url('https://staticdev.cloud.coveo.com/searchui/v2.10104/0/fonts/lato.woff2'), url('../fonts/lato.woff2'), url('https://static.cloud.coveo.com/searchui/v2.10104/0/fonts/lato.woff'), url('https://staticdev.cloud.coveo.com/searchui/v2.10104/0/fonts/lato.woff'), url('../fonts/lato.woff');
8061
- font-weight: normal;
8062
- font-style: normal;
8063
- }
8064
-
8065
8068
  .CoveoSearchInterface {
8066
8069
  min-height: 100%;
8067
8070
  position: relative;
@@ -18735,10 +18738,6 @@ button.coveo-user-feedback-banner-explain-why-active {
18735
18738
  * @param $size size of the icon to use
18736
18739
  */
18737
18740
 
18738
- .coveo-user-explanation-modal .coveo-small-close {
18739
- display: none;
18740
- }
18741
-
18742
18741
  .coveo-user-explanation-modal-explanation-section {
18743
18742
  display: flex;
18744
18743
  flex-wrap: wrap;