@team-frieeren/components 1.0.0 → 1.0.2

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/index.css CHANGED
@@ -1669,75 +1669,6 @@ button {
1669
1669
  .toggle-thumb[data-state=checked] {
1670
1670
  transform: translateX(26px);
1671
1671
  }
1672
- .popup {
1673
- background-color: var(--seed-ui-color-background-white);
1674
- border-radius: 16px;
1675
- box-shadow: 0px 4px 16px 0px rgba(109, 109, 109, 0.07);
1676
- position: fixed;
1677
- top: 50%;
1678
- left: 50%;
1679
- transform: translate(-50%, -50%);
1680
- width: 100%;
1681
- max-width: 450px;
1682
- max-height: 85vh;
1683
- padding: 24px 16px;
1684
- animation: popup-content-show 150ms cubic-bezier(0.16, 1, 0.3, 1);
1685
- overflow-y: auto;
1686
- }
1687
- .popup:focus {
1688
- outline: none;
1689
- }
1690
- .popup--actions {
1691
- display: flex;
1692
- justify-content: flex-end;
1693
- gap: 8px;
1694
- margin-top: 24px;
1695
- }
1696
- .popup--actions > * {
1697
- flex: 1;
1698
- }
1699
- .popup--actions-typeB {
1700
- display: flex;
1701
- justify-content: space-between;
1702
- gap: 8px;
1703
- }
1704
- .popup--actions-left {
1705
- min-width: 76px;
1706
- flex: 0 0 auto;
1707
- }
1708
- .popup--actions-right {
1709
- flex: 1 1 auto;
1710
- }
1711
- @keyframes popup-overlay-show {
1712
- from {
1713
- opacity: 0;
1714
- }
1715
- to {
1716
- opacity: 1;
1717
- }
1718
- }
1719
- @keyframes popup-content-show {
1720
- from {
1721
- opacity: 0;
1722
- transform: translate(-50%, -48%) scale(0.96);
1723
- }
1724
- to {
1725
- opacity: 1;
1726
- transform: translate(-50%, -50%) scale(1);
1727
- }
1728
- }
1729
- .visually-hidden {
1730
- border: 0;
1731
- clip: rect(0 0 0 0);
1732
- height: 1px;
1733
- margin: -1px;
1734
- overflow: hidden;
1735
- padding: 0;
1736
- position: absolute;
1737
- width: 1px;
1738
- white-space: nowrap;
1739
- word-wrap: normal;
1740
- }
1741
1672
  @charset "UTF-8";
1742
1673
  :root {
1743
1674
  --input-transition: 0.2s ease-in-out;
package/dist/index.d.ts CHANGED
@@ -1,5 +1,4 @@
1
1
  import "./style/index.scss";
2
- export { useFunnel } from "./components/Funnel";
3
2
  export { Box } from "./components/layout/Box";
4
3
  export { Container } from "./components/layout/Container";
5
4
  export { Flex } from "./components/layout/Flex";
@@ -10,12 +9,5 @@ export { RadioGroup } from "./components/RadioGroup";
10
9
  export { Checkbox } from "./components/Checkbox";
11
10
  export { Toggle } from "./components/Toggle";
12
11
  export { Select } from "./components/Select";
13
- export { Popup } from "./components/Popup";
14
- export { BottomSheet } from "./components/BottomSheet";
15
12
  export { Input } from "./components/Input";
16
13
  export { Tabs } from "./components/Tabs";
17
- export { ToastProvider } from "./components/Toast";
18
- export { safeLocalStorage, safeSessionStorage } from "./shared/storage";
19
- export { RouterProvider, useRouter } from "./hooks/useRouter";
20
- export { WindowRouter } from "./router/windowRouter";
21
- export { useToast } from "./components/Toast";