@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.
- package/dist/_virtual/attributes-to-props.js +4 -0
- package/dist/_virtual/constants.js +4 -0
- package/dist/_virtual/dom-to-react.js +4 -0
- package/dist/_virtual/domparser.js +4 -0
- package/dist/_virtual/html-to-dom.js +4 -0
- package/dist/_virtual/index10.js +4 -0
- package/dist/_virtual/index11.js +4 -0
- package/dist/_virtual/index7.js +4 -0
- package/dist/_virtual/index8.js +4 -0
- package/dist/_virtual/index9.js +4 -0
- package/dist/_virtual/node.js +4 -0
- package/dist/_virtual/possibleStandardNamesOptimized.js +4 -0
- package/dist/_virtual/utilities.js +4 -0
- package/dist/_virtual/utilities2.js +4 -0
- package/dist/_virtual/utilities3.js +4 -0
- package/dist/components/HTMLParser/HTMLParser.d.ts +24 -0
- package/dist/components/HTMLParser/HTMLParser.js +21 -0
- package/dist/components/HTMLParser/index.d.ts +1 -0
- package/dist/components/HTMLParser/utils.d.ts +7 -0
- package/dist/components/HTMLParser/utils.js +31 -0
- package/dist/components/Search/Search.js +23 -22
- package/dist/components/Search/SearchResults/SearchResults.d.ts +2 -1
- package/dist/components/Search/SearchResults/SearchResults.js +26 -16
- package/dist/components/Text/Text.d.ts +1 -2
- package/dist/components/Text/Text.js +13 -23
- package/dist/components/TextSymbol/TextSymbol.d.ts +9 -0
- package/dist/components/TextSymbol/TextSymbol.js +11 -0
- package/dist/components/TextSymbol/index.d.ts +2 -0
- package/dist/components/TextSymbol/types.d.ts +4 -0
- package/dist/components/TextSymbol/types.js +4 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +76 -72
- package/dist/node_modules/domelementtype/lib/index.js +12 -0
- package/dist/node_modules/domhandler/lib/index.js +84 -0
- package/dist/node_modules/domhandler/lib/node.js +356 -0
- package/dist/node_modules/dompurify/dist/purify.es.js +522 -0
- package/dist/node_modules/html-dom-parser/lib/client/constants.js +38 -0
- package/dist/node_modules/html-dom-parser/lib/client/domparser.js +56 -0
- package/dist/node_modules/html-dom-parser/lib/client/html-to-dom.js +20 -0
- package/dist/node_modules/html-dom-parser/lib/client/utilities.js +55 -0
- package/dist/node_modules/html-react-parser/esm/index.js +7 -0
- package/dist/node_modules/html-react-parser/lib/attributes-to-props.js +40 -0
- package/dist/node_modules/html-react-parser/lib/dom-to-react.js +60 -0
- package/dist/node_modules/html-react-parser/lib/index.js +42 -0
- package/dist/node_modules/html-react-parser/lib/utilities.js +58 -0
- package/dist/node_modules/inline-style-parser/index.js +86 -0
- package/dist/node_modules/react-property/lib/index.js +440 -0
- package/dist/node_modules/react-property/lib/possibleStandardNamesOptimized.js +493 -0
- package/dist/node_modules/style-to-js/cjs/index.js +19 -0
- package/dist/node_modules/style-to-js/cjs/utilities.js +16 -0
- package/dist/node_modules/style-to-object/cjs/index.js +21 -0
- package/dist/patterns/Subscribe/Subscribe.d.ts +1 -1
- package/dist/patterns/Subscribe/Subscribe.js +40 -38
- package/dist/scss/componentStyles.scss +1 -0
- package/dist/scss/components/Dropdown/_dropdown.scss +2 -1
- package/dist/scss/components/Input/_input.scss +3 -1
- package/dist/scss/components/Search/SearchResults/_searchResults.scss +4 -0
- package/dist/scss/components/Search/_search.scss +17 -2
- package/dist/scss/components/Search/_searchButton.scss +15 -5
- package/dist/scss/components/Text/_text.scss +0 -5
- package/dist/scss/components/TextSymbol/_textSymbol.scss +14 -0
- package/dist/scss/site-furniture/Header/_header.scss +1 -1
- 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
|
-
|
|
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 {
|