@woosmap/ui 3.48.0 → 3.53.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/package.json
CHANGED
|
@@ -145,6 +145,7 @@ import { ReactComponent as MultiSearch } from '../../icons/multisearch.svg';
|
|
|
145
145
|
import { ReactComponent as Mapping } from '../../icons/mapping.svg';
|
|
146
146
|
import { ReactComponent as Connectors } from '../../icons/connectors.svg';
|
|
147
147
|
import { ReactComponent as Showcases } from '../../icons/showcases.svg';
|
|
148
|
+
import { ReactComponent as Indoor } from '../../icons/indoor.svg';
|
|
148
149
|
|
|
149
150
|
import { ReactComponent as SocialFacebook } from '../../icons/social-facebook.svg';
|
|
150
151
|
import { ReactComponent as SocialLinkedin } from '../../icons/social-linkedin.svg';
|
|
@@ -295,6 +296,7 @@ const Icons = {
|
|
|
295
296
|
mapping: Mapping,
|
|
296
297
|
connectors: Connectors,
|
|
297
298
|
showcases: Showcases,
|
|
299
|
+
indoor: Indoor,
|
|
298
300
|
'social-facebook': SocialFacebook,
|
|
299
301
|
'social-linkedin': SocialLinkedin,
|
|
300
302
|
'social-twitter': SocialTwitter,
|
|
@@ -14,6 +14,7 @@ export default class Tooltip extends Component {
|
|
|
14
14
|
noDelay && 'tooltipped-no-delay',
|
|
15
15
|
wrap && 'tooltipped-multiline'
|
|
16
16
|
);
|
|
17
|
+
delete rest.closeCb; // Avoid none DOM props
|
|
17
18
|
return (
|
|
18
19
|
<div aria-label={text} data-testid={testId} {...rest} className={classes}>
|
|
19
20
|
{children}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 70 70"><path d="M56.094 6.994H13.906A6.919 6.919 0 0 0 7 13.905V56.1a6.919 6.919 0 0 0 6.911 6.911h42.183a6.919 6.919 0 0 0 6.911-6.911V13.905a6.919 6.919 0 0 0-6.911-6.911Zm-1.146 22.317c0 .019-.011.036-.011.056v6.609H42.9v-6.665Zm1.978 0h4.079v6.665h-4.068v-6.609c0-.02-.01-.037-.011-.056Zm4.079-15.406v13.406h-9.619V14.9a1 1 0 0 0-2 0v12.411H41.9a1 1 0 0 0-1 1v8.665a1 1 0 0 0 1 1H61v7.363H41.9a1 1 0 0 0-1 1v14.667H29.235V40.938a1 1 0 0 0-1-1H8.995V28.794h14.913a1 1 0 0 0 1-1v-18.8H34v8.9a1 1 0 0 0 1 1h6.33a1 1 0 0 0 1-1v-8.9h13.764a4.916 4.916 0 0 1 4.911 4.911ZM42.9 55.172h6.485v5.834H42.9Zm6.485-2H42.9v-5.833h6.485ZM18.817 41.938h8.418v9.57h-8.418ZM8.995 20.031h13.913v6.763H8.995Zm31.335-11V16.9H36V9.026Zm-26.424-.037h9v9.037H8.995v-4.126a4.916 4.916 0 0 1 4.911-4.911ZM8.995 56.1V41.938h7.822v10.57a1 1 0 0 0 1 1h9.418v7.5H13.906A4.916 4.916 0 0 1 8.995 56.1Zm47.1 4.911h-4.709V47.339h9.619V56.1a4.916 4.916 0 0 1-4.911 4.906Z"/></svg>
|