@roadtrip/components 3.22.0 → 3.23.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 (34) hide show
  1. package/dist/cjs/road-badge_14.cjs.entry.js +1 -1
  2. package/dist/cjs/road-badge_14.cjs.entry.js.map +1 -1
  3. package/dist/cjs/road-select-filter.cjs.entry.js +1 -1
  4. package/dist/cjs/road-select-filter.cjs.entry.js.map +1 -1
  5. package/dist/cjs/road-tooltip.cjs.entry.js +1 -1
  6. package/dist/cjs/road-tooltip.cjs.entry.js.map +1 -1
  7. package/dist/collection/components/icon/icon.css +4 -4
  8. package/dist/collection/components/select-filter/select-filter.css +1 -0
  9. package/dist/collection/components/tooltip/tooltip.css +59 -2
  10. package/dist/collection/components/tooltip/tooltip.js +2 -2
  11. package/dist/collection/components/tooltip/tooltip.js.map +1 -1
  12. package/dist/collection/components/tooltip/tooltip.stories.js +1 -1
  13. package/dist/esm/road-badge_14.entry.js +1 -1
  14. package/dist/esm/road-badge_14.entry.js.map +1 -1
  15. package/dist/esm/road-select-filter.entry.js +1 -1
  16. package/dist/esm/road-select-filter.entry.js.map +1 -1
  17. package/dist/esm/road-tooltip.entry.js +1 -1
  18. package/dist/esm/road-tooltip.entry.js.map +1 -1
  19. package/dist/html.html-data.json +12 -0
  20. package/dist/roadtrip/{p-73b4f413.entry.js → p-bc217d07.entry.js} +2 -2
  21. package/dist/roadtrip/{p-73b4f413.entry.js.map → p-bc217d07.entry.js.map} +1 -1
  22. package/dist/roadtrip/p-c653d32d.entry.js +2 -0
  23. package/dist/roadtrip/p-c653d32d.entry.js.map +1 -0
  24. package/dist/roadtrip/p-d5f9dfea.entry.js +2 -0
  25. package/dist/roadtrip/p-d5f9dfea.entry.js.map +1 -0
  26. package/dist/roadtrip/roadtrip.esm.js +1 -1
  27. package/dist/types/components/tooltip/tooltip.d.ts +1 -1
  28. package/dist/types/components.d.ts +8 -0
  29. package/hydrate/index.js +3 -3
  30. package/package.json +1 -1
  31. package/dist/roadtrip/p-648aa41f.entry.js +0 -2
  32. package/dist/roadtrip/p-648aa41f.entry.js.map +0 -1
  33. package/dist/roadtrip/p-c096723c.entry.js +0 -2
  34. package/dist/roadtrip/p-c096723c.entry.js.map +0 -1
@@ -418,7 +418,7 @@ const getSvgContent = (url, sanitize) => {
418
418
  return req;
419
419
  };
420
420
 
421
- const iconCss = ":host{box-sizing:content-box;display:inline-block;color:var(--road-icon);transition:fill 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;fill:currentColor;contain:strict}:host svg{display:block;width:100%;height:100%}:host(.icon-sm){width:1.25rem;height:1.25rem}:host(.icon-md){width:1.5rem;height:1.5rem}:host(.icon-lg){width:2rem;height:2rem}:host(.icon-3x){width:3rem;height:3rem}:host(.icon-4x){width:4rem;height:4rem}:host(.icon-primary){color:var(--road-primary-50);fill:currentColor}:host(.icon-secondary){color:var(--road-secondary-50);fill:currentColor}:host(.icon-accent){color:var(--road-secondary-50);fill:currentColor}:host(.icon-info){color:var(--road-info-default);fill:currentColor}:host(.icon-success){color:var(--road-success-default);fill:currentColor}:host(.icon-warning){color:var(--road-warning-default);fill:currentColor}:host(.icon-danger){color:var(--road-danger-default);fill:currentColor}:host(.icon-default){color:var(--road-icon);fill:currentColor}:host(.icon-white){color:var(--road-icon-inverse);fill:currentColor}:host(.icon-rotate-90){transform:rotate(90deg)}:host(.icon-rotate-180){transform:rotate(180deg);transform:scaleX(-1)}:host(.icon-rotate-270){transform:rotate(270deg)}";
421
+ const iconCss = ":host{box-sizing:content-box;display:inline-block;color:var(--road-icon);transition:fill 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;fill:currentColor;contain:strict}:host svg{display:block;width:100%;height:100%}:host(.icon-sm){width:1.25rem;height:1.25rem}:host(.icon-md){width:1.5rem;height:1.5rem}:host(.icon-lg){width:2rem;height:2rem}:host(.icon-3x){width:3rem;height:3rem}:host(.icon-4x){width:4rem;height:4rem}:host(.icon-primary){color:var(--road-primary-50);fill:currentColor}:host(.icon-secondary){color:var(--road-secondary-50);fill:currentColor}:host(.icon-accent){color:var(--road-secondary-50);fill:currentColor}:host(.icon-info){color:var(--road-info-icon);fill:currentColor}:host(.icon-success){color:var(--road-success-icon);fill:currentColor}:host(.icon-warning){color:var(--road-warning-icon);fill:currentColor}:host(.icon-danger){color:var(--road-danger-icon);fill:currentColor}:host(.icon-default){color:var(--road-icon);fill:currentColor}:host(.icon-white){color:var(--road-icon-inverse);fill:currentColor}:host(.icon-rotate-90){transform:rotate(90deg)}:host(.icon-rotate-180){transform:rotate(180deg);transform:scaleX(-1)}:host(.icon-rotate-270){transform:rotate(270deg)}";
422
422
 
423
423
  const Icon = class {
424
424
  constructor(hostRef) {