@phillips/seldon 1.65.0 → 1.67.0

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.
Files changed (63) hide show
  1. package/dist/_virtual/attributes-to-props.js +4 -0
  2. package/dist/_virtual/constants.js +4 -0
  3. package/dist/_virtual/dom-to-react.js +4 -0
  4. package/dist/_virtual/domparser.js +4 -0
  5. package/dist/_virtual/html-to-dom.js +4 -0
  6. package/dist/_virtual/index10.js +4 -0
  7. package/dist/_virtual/index11.js +4 -0
  8. package/dist/_virtual/index7.js +4 -0
  9. package/dist/_virtual/index8.js +4 -0
  10. package/dist/_virtual/index9.js +4 -0
  11. package/dist/_virtual/node.js +4 -0
  12. package/dist/_virtual/possibleStandardNamesOptimized.js +4 -0
  13. package/dist/_virtual/utilities.js +4 -0
  14. package/dist/_virtual/utilities2.js +4 -0
  15. package/dist/_virtual/utilities3.js +4 -0
  16. package/dist/components/HTMLParser/HTMLParser.d.ts +24 -0
  17. package/dist/components/HTMLParser/HTMLParser.js +21 -0
  18. package/dist/components/HTMLParser/index.d.ts +1 -0
  19. package/dist/components/HTMLParser/utils.d.ts +7 -0
  20. package/dist/components/HTMLParser/utils.js +31 -0
  21. package/dist/components/Search/Search.js +23 -22
  22. package/dist/components/Search/SearchResults/SearchResults.d.ts +2 -1
  23. package/dist/components/Search/SearchResults/SearchResults.js +26 -16
  24. package/dist/components/Text/Text.d.ts +1 -2
  25. package/dist/components/Text/Text.js +13 -23
  26. package/dist/components/TextSymbol/TextSymbol.d.ts +9 -0
  27. package/dist/components/TextSymbol/TextSymbol.js +11 -0
  28. package/dist/components/TextSymbol/index.d.ts +2 -0
  29. package/dist/components/TextSymbol/types.d.ts +4 -0
  30. package/dist/components/TextSymbol/types.js +4 -0
  31. package/dist/index.d.ts +1 -0
  32. package/dist/index.js +76 -72
  33. package/dist/node_modules/domelementtype/lib/index.js +12 -0
  34. package/dist/node_modules/domhandler/lib/index.js +84 -0
  35. package/dist/node_modules/domhandler/lib/node.js +356 -0
  36. package/dist/node_modules/dompurify/dist/purify.es.js +522 -0
  37. package/dist/node_modules/html-dom-parser/lib/client/constants.js +38 -0
  38. package/dist/node_modules/html-dom-parser/lib/client/domparser.js +56 -0
  39. package/dist/node_modules/html-dom-parser/lib/client/html-to-dom.js +20 -0
  40. package/dist/node_modules/html-dom-parser/lib/client/utilities.js +55 -0
  41. package/dist/node_modules/html-react-parser/esm/index.js +7 -0
  42. package/dist/node_modules/html-react-parser/lib/attributes-to-props.js +40 -0
  43. package/dist/node_modules/html-react-parser/lib/dom-to-react.js +60 -0
  44. package/dist/node_modules/html-react-parser/lib/index.js +42 -0
  45. package/dist/node_modules/html-react-parser/lib/utilities.js +58 -0
  46. package/dist/node_modules/inline-style-parser/index.js +86 -0
  47. package/dist/node_modules/react-property/lib/index.js +440 -0
  48. package/dist/node_modules/react-property/lib/possibleStandardNamesOptimized.js +493 -0
  49. package/dist/node_modules/style-to-js/cjs/index.js +19 -0
  50. package/dist/node_modules/style-to-js/cjs/utilities.js +16 -0
  51. package/dist/node_modules/style-to-object/cjs/index.js +21 -0
  52. package/dist/patterns/Subscribe/Subscribe.d.ts +1 -1
  53. package/dist/patterns/Subscribe/Subscribe.js +40 -38
  54. package/dist/scss/componentStyles.scss +1 -0
  55. package/dist/scss/components/Dropdown/_dropdown.scss +2 -1
  56. package/dist/scss/components/Input/_input.scss +3 -1
  57. package/dist/scss/components/Search/SearchResults/_searchResults.scss +4 -0
  58. package/dist/scss/components/Search/_search.scss +17 -2
  59. package/dist/scss/components/Search/_searchButton.scss +15 -5
  60. package/dist/scss/components/Text/_text.scss +0 -5
  61. package/dist/scss/components/TextSymbol/_textSymbol.scss +14 -0
  62. package/dist/scss/site-furniture/Header/_header.scss +1 -1
  63. package/package.json +1 -1
@@ -11,6 +11,18 @@
11
11
  top: $padding-md;
12
12
  transition: left 0.25s ease-in;
13
13
 
14
+ &::after {
15
+ border-bottom: 1px solid #000;
16
+ bottom: 0;
17
+ content: '';
18
+ display: flex;
19
+ margin-bottom: -1px;
20
+ position: absolute;
21
+ right: 0;
22
+ transition: width 0.25s ease-in;
23
+ width: 0;
24
+ }
25
+
14
26
  @include isHeaderDesktop {
15
27
  top: 0;
16
28
  }
@@ -25,13 +37,17 @@
25
37
  left: 0;
26
38
  transition: left 0.25s ease-in 0.2s;
27
39
 
40
+ &::after {
41
+ transition: width 0.25s ease-in 0.2s;
42
+ width: 100%;
43
+ }
44
+
28
45
  @include isHeaderMobile {
29
46
  left: $spacing-md;
30
47
  }
31
48
  }
32
49
 
33
50
  &__input-status-icon {
34
- border-bottom: 1px solid $pure-black;
35
51
  height: $search-size;
36
52
  width: $search-size;
37
53
 
@@ -81,7 +97,6 @@
81
97
  &__input {
82
98
  background: transparent;
83
99
  border: 0;
84
- border-bottom: 1px solid $pure-black;
85
100
  border-radius: unset;
86
101
  color: $pure-black;
87
102
  font-size: $string-size1;
@@ -26,10 +26,6 @@
26
26
  padding: 0 0 0.125rem;
27
27
  }
28
28
 
29
- &--close {
30
- border-bottom: 1px solid $pure-black;
31
- }
32
-
33
29
  svg {
34
30
  height: 1.5rem;
35
31
  width: 1.5rem;
@@ -38,7 +34,21 @@
38
34
  &:hover,
39
35
  &:focus-visible,
40
36
  &:active {
41
- border-bottom: 1px solid $pure-black;
37
+ &::after {
38
+ border-bottom: 1px solid #000;
39
+ bottom: 0;
40
+ content: '';
41
+ display: flex;
42
+ margin-bottom: -2px;
43
+ position: absolute;
44
+ right: 0;
45
+ width: 102%;
46
+
47
+ @include isHeaderMobile {
48
+ margin-bottom: -1px;
49
+ width: 52%;
50
+ }
51
+ }
42
52
  }
43
53
 
44
54
  &__icon {
@@ -27,8 +27,3 @@ h6.#{$px}-text {
27
27
  p.#{$px}-text {
28
28
  margin-bottom: $spacing-md;
29
29
  }
30
- .#{$px}-text--super-script {
31
- font-size: 60%;
32
- margin-left: $spacing-xsm;
33
- vertical-align: super;
34
- }
@@ -0,0 +1,14 @@
1
+ @use '../../allPartials' as *;
2
+
3
+ .#{$px}-text-symbol {
4
+ &--estimation {
5
+ margin-left: 0.25rem;
6
+ vertical-align: middle;
7
+ }
8
+
9
+ &--lotNumber {
10
+ font-size: 60%;
11
+ margin-left: $spacing-xsm;
12
+ vertical-align: super;
13
+ }
14
+ }
@@ -174,7 +174,7 @@
174
174
  height: 100vh;
175
175
  left: 0;
176
176
  position: absolute;
177
- top: $header-height;
177
+ top: calc($header-height + 1px);
178
178
  width: 100%;
179
179
  }
180
180
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@phillips/seldon",
3
- "version": "1.65.0",
3
+ "version": "1.67.0",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/PhillipsAuctionHouse/seldon"