@sito/ui 0.0.35 → 0.0.36

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.
@@ -1,8 +0,0 @@
1
- import { HTMLProps } from "react";
2
- export interface ButtonProps extends HTMLProps<HTMLButtonElement> {
3
- tooltip?: string | undefined;
4
- color?: "primary" | "secondary" | "ternary" | "inherit" | undefined;
5
- type?: "button" | "submit" | "reset" | undefined;
6
- }
7
- declare const Button: import("react").ForwardRefExoticComponent<Omit<ButtonProps, "ref"> & import("react").RefAttributes<HTMLButtonElement>>;
8
- export default Button;
@@ -1,13 +0,0 @@
1
- import { IconDefinition } from "@fortawesome/free-solid-svg-icons";
2
- import { ButtonProps } from "../Button/Button";
3
- export interface ErrorProps {
4
- onRetry?: () => void | undefined;
5
- icon?: IconDefinition | undefined;
6
- title?: string | undefined;
7
- text: string;
8
- button?: string | undefined;
9
- buttonProps?: ButtonProps;
10
- className?: string | undefined;
11
- }
12
- export declare const Error: (props: ErrorProps) => import("react/jsx-runtime").JSX.Element;
13
- export default Error;
@@ -1,10 +0,0 @@
1
- import { ReactNode } from "react";
2
- export interface ErrorFallbackProps {
3
- error: Error;
4
- resetErrorBoundary?: () => void | undefined;
5
- }
6
- export interface HandlerProps {
7
- children: ReactNode;
8
- onRetry?: () => void | undefined;
9
- }
10
- export default function Handler(props: HandlerProps): import("react/jsx-runtime").JSX.Element;
@@ -1,8 +0,0 @@
1
- /// <reference types="react" />
2
- import { IconProp } from "@fortawesome/fontawesome-svg-core";
3
- import { ButtonProps } from "../Button/Button";
4
- export interface IconButtonProps extends ButtonProps {
5
- icon: IconProp;
6
- }
7
- declare const IconButton: import("react").ForwardRefExoticComponent<Omit<IconButtonProps, "ref"> & import("react").RefAttributes<HTMLButtonElement>>;
8
- export default IconButton;
@@ -1,6 +0,0 @@
1
- import { HTMLProps } from "react";
2
- export interface ImageProps extends HTMLProps<HTMLImageElement> {
3
- container: HTMLProps<HTMLDivElement>;
4
- }
5
- declare function Image(props: ImageProps): import("react/jsx-runtime").JSX.Element;
6
- export default Image;
@@ -1,11 +0,0 @@
1
- import { HTMLProps, ReactNode } from "react";
2
- export interface InputControlProps extends HTMLProps<HTMLInputElement> {
3
- leftComponent?: ReactNode | undefined;
4
- rightComponent?: ReactNode | undefined;
5
- color?: "primary" | "secondary" | "ternary" | "inherit" | undefined;
6
- orientation?: "column" | "row" | undefined;
7
- label: string | undefined;
8
- type?: "date" | "datetime-local" | "email" | "number" | "password" | "search" | "tel" | "time" | "url" | "text" | undefined;
9
- }
10
- declare const InputControl: import("react").ForwardRefExoticComponent<Omit<InputControlProps, "ref"> & import("react").RefAttributes<HTMLInputElement>>;
11
- export default InputControl;
@@ -1,10 +0,0 @@
1
- import { HTMLProps, ReactNode } from "react";
2
- export interface SelectControlProps extends HTMLProps<HTMLSelectElement> {
3
- leftComponent?: ReactNode | undefined;
4
- rightComponent?: ReactNode | undefined;
5
- color?: "primary" | "secondary" | "ternary" | "inherit" | undefined;
6
- orientation?: "column" | "row" | undefined;
7
- label: string | undefined;
8
- }
9
- declare const SelectControl: import("react").ForwardRefExoticComponent<Omit<SelectControlProps, "ref"> & import("react").RefAttributes<HTMLSelectElement>>;
10
- export default SelectControl;
@@ -1,10 +0,0 @@
1
- import { HTMLProps, ReactNode } from "react";
2
- export interface TextareaControlProps extends HTMLProps<HTMLTextAreaElement> {
3
- leftComponent?: ReactNode | undefined;
4
- rightComponent?: ReactNode | undefined;
5
- color?: "primary" | "secondary" | "ternary" | "inherit" | undefined;
6
- orientation?: "column" | "row" | undefined;
7
- label: string | undefined;
8
- }
9
- declare const TextareaControl: import("react").ForwardRefExoticComponent<Omit<TextareaControlProps, "ref"> & import("react").RefAttributes<HTMLSelectElement>>;
10
- export default TextareaControl;
@@ -1,8 +0,0 @@
1
- import { HTMLProps } from "react";
2
- export interface LoadingProps extends HTMLProps<HTMLDivElement> {
3
- color?: "primary" | "secondary" | "ternary" | "inherit" | undefined;
4
- loaderClass?: "string" | undefined;
5
- strokeWidth?: "string" | undefined;
6
- }
7
- declare const Loading: (props: LoadingProps) => import("react/jsx-runtime").JSX.Element;
8
- export default Loading;
@@ -1,5 +0,0 @@
1
- import { IconButtonProps } from "../IconButton/IconButton";
2
- export interface NotificationProps {
3
- closeProps?: IconButtonProps | undefined;
4
- }
5
- export default function Notification(props: NotificationProps): import("react/jsx-runtime").JSX.Element;
@@ -1,8 +0,0 @@
1
- /// <reference types="react" />
2
- export interface PrintAfterProps {
3
- children: React.ReactNode;
4
- delay?: number | undefined;
5
- animation?: "string" | undefined;
6
- }
7
- declare const PrintAfter: import("react").MemoExoticComponent<(props: PrintAfterProps) => import("react/jsx-runtime").JSX.Element>;
8
- export default PrintAfter;
@@ -1,9 +0,0 @@
1
- import { InputHTMLAttributes } from "react";
2
- export interface SwitcherProps extends Omit<InputHTMLAttributes<HTMLInputElement>, "value"> {
3
- value?: boolean | undefined;
4
- activeColor?: "primary" | "secondary" | "ternary" | "inherit" | undefined;
5
- inactiveColor?: "primary" | "secondary" | "ternary" | "inherit" | undefined;
6
- label: string | undefined;
7
- }
8
- declare const Switcher: import("react").ForwardRefExoticComponent<SwitcherProps & import("react").RefAttributes<HTMLInputElement>>;
9
- export default Switcher;
@@ -1,3 +0,0 @@
1
- import { HTMLProps } from "react";
2
- declare const ToTop: import("react").ForwardRefExoticComponent<Omit<HTMLProps<HTMLButtonElement>, "ref"> & import("react").RefAttributes<HTMLButtonElement>>;
3
- export default ToTop;
@@ -1,15 +0,0 @@
1
- import Button, { ButtonProps } from "./Button/Button";
2
- import IconButton, { IconButtonProps } from "./IconButton/IconButton";
3
- import InputControl, { InputControlProps } from "./InputControl/Input";
4
- import SelectControl, { SelectControlProps } from "./InputControl/Select";
5
- import TextareaControl, { TextareaControlProps } from "./InputControl/Textarea";
6
- import Switcher, { SwitcherProps } from "./Switch/Switch";
7
- import Image, { ImageProps } from "./Image/Image";
8
- import PrintAfter, { PrintAfterProps } from "./PrintAfter/PrintAfter";
9
- import ToTop from "./ToTop/ToTop";
10
- import Notification, { NotificationProps } from "./Notification/Notification";
11
- import Loading, { LoadingProps } from "./Loading/Loading";
12
- import Handler, { ErrorFallbackProps, HandlerProps } from "./Error/Handler";
13
- import Error, { ErrorProps } from "./Error/Error";
14
- export { Button, IconButton, InputControl, SelectControl, TextareaControl, Switcher, Image, PrintAfter, ToTop, Notification, Loading, Handler, Error, };
15
- export type { ErrorFallbackProps, HandlerProps, ErrorProps, ButtonProps, IconButtonProps, InputControlProps, SelectControlProps, TextareaControlProps, SwitcherProps, ImageProps, PrintAfterProps, NotificationProps, LoadingProps, };
@@ -1,14 +0,0 @@
1
- /**
2
- *
3
- * @param data anything to encrypt
4
- * @param key key for encryption
5
- * @returns encrypted data
6
- */
7
- export declare function encrypt(data: unknown, key?: string): string;
8
- /**
9
- *
10
- * @param data string to decrypt
11
- * @param key key for encryption
12
- * @returns decrypted data
13
- */
14
- export declare function decrypt(data: string, key?: string): any;
package/dist/main.d.ts DELETED
@@ -1,2 +0,0 @@
1
- export * from "./components/components";
2
- export * from "./providers/providers";
@@ -1,11 +0,0 @@
1
- import { ReactNode } from "react";
2
- export interface ModeProviderData {
3
- mode: "dark" | "light" | "OS";
4
- setMode: React.Dispatch<React.SetStateAction<"dark" | "light" | "OS">>;
5
- toggleMode: () => void;
6
- }
7
- export interface ModeProviderProps {
8
- children: ReactNode;
9
- }
10
- export declare const ModeProvider: (props: ModeProviderProps) => import("react/jsx-runtime").JSX.Element;
11
- export declare const useMode: () => ModeProviderData;
@@ -1,19 +0,0 @@
1
- import { ReactNode } from "react";
2
- export interface NotificationProviderData {
3
- notification: NotificationType;
4
- setNotification: React.Dispatch<NotificationActionType>;
5
- }
6
- export interface NotificationProviderProps {
7
- children: ReactNode;
8
- }
9
- export interface NotificationType {
10
- visible: boolean;
11
- type: "success" | "error" | "info" | "warning" | "hide";
12
- message: string;
13
- }
14
- export interface NotificationActionType {
15
- type: "hide" | "success" | "error" | "info" | "warning";
16
- message?: "string";
17
- }
18
- export declare const NotificationProvider: (props: NotificationProviderProps) => import("react/jsx-runtime").JSX.Element;
19
- export declare const useNotification: () => NotificationProviderData;
@@ -1,6 +0,0 @@
1
- import { ReactNode } from "react";
2
- export interface StyleProviderProps {
3
- children: ReactNode;
4
- }
5
- export declare const StyleProvider: (props: StyleProviderProps) => import("react/jsx-runtime").JSX.Element;
6
- export declare const useStyle: () => {};
@@ -1,5 +0,0 @@
1
- import { ModeProviderData, ModeProviderProps, ModeProvider, useMode } from "./ModeProvider";
2
- import { NotificationProviderData, NotificationProviderProps, NotificationActionType, NotificationType, NotificationProvider, useNotification } from "./NotificationProvider";
3
- import { StyleProvider, StyleProviderProps, useStyle } from "./StyleProvider";
4
- export type { ModeProviderData, ModeProviderProps, NotificationProviderData, NotificationProviderProps, NotificationActionType, NotificationType, StyleProviderProps, };
5
- export { ModeProvider, useMode, NotificationProvider, useNotification, useStyle, StyleProvider, };
package/dist/style.css DELETED
@@ -1 +0,0 @@
1
- *,:before,:after{box-sizing:border-box;border-width:0;border-style:solid;border-color:#e5e7eb}:before,:after{--tw-content: ""}html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";font-feature-settings:normal;font-variation-settings:normal}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre{margin:0}fieldset{margin:0;padding:0}legend{padding:0}ol,ul,menu{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}button,[role=button]{cursor:pointer}:disabled{cursor:default}img,svg,video,canvas,audio,iframe,embed,object{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]{display:none}*,:before,:after{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }::backdrop{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }.visible{visibility:visible}.invisible{visibility:hidden}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.bottom-1{bottom:.25rem}.left-1{left:.25rem}.right-1{right:.25rem}.top-1{top:.25rem}.z-40{z-index:40}.mr-1{margin-right:.25rem}.inline{display:inline}.flex{display:flex}.min-h-screen{min-height:100vh}.w-full{width:100%}.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.flex-col{flex-direction:column}.items-center{align-items:center}.justify-start{justify-content:flex-start}.justify-center{justify-content:center}.gap-3{gap:.75rem}.rounded-xl{border-radius:.75rem}.p-5{padding:1.25rem}.\!pl-0{padding-left:0!important}.\!pr-0{padding-right:0!important}.pr-10{padding-right:2.5rem}.text-white{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.dark body{background:#262220}.light body{background:#fbfbfb}.appear{animation:appear .5s ease 1}.disappear{animation:disappear .5s ease 1}@keyframes appear{0%{opacity:0;transform:translateY(15px)}to{opacity:1;transform:translateY(0)}}@keyframes disappear{0%{opacity:1;transform:translateY(0)}to{opacity:0;transform:translateY(15px)}}.aGrow{animation:aGrow .5s ease 1}.aShrink{animation:aShrink .5s ease 1}@keyframes aGrow{0%{transform:scale(0)}80%{transform:scale(1.01)}to{transform:scale(1)}}@keyframes aShrink{0%{transform:scale(1)}to{transform:scale(0)}}.shake{animation:shake 1 .5s linear}.horizontal-shake{animation:horizontalShake 1 .5s linear}@keyframes shake{0%{transform:rotate(-15deg)}20%{transform:rotate(15deg)}30%{transform:rotate(-15deg)}50%{transform:rotate(0)}}@keyframes horizontalShake{0%{transform:translate(-10px)}20%{transform:translate(+10px)}30%{transform:translate(-10px)}50%{transform:translate(0)}}.button{display:flex;cursor:default;align-items:center;justify-content:center;border-radius:1.5rem;padding:.5rem 1.75rem;font-weight:600;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.3s}.outlined.button{border-width:2px}.primary.button{color:#ef476f}.primary.button:hover{color:#cc1f54}.primary.submit.button{background-color:#ef476f}.primary.submit.button:hover{background-color:#cc1f54}.primary.outlined.button{border-color:#ef476f}.primary.outlined.button:hover{background-color:#ef476f}.secondary.button{color:#06d6a0}.secondary.button:hover{color:#00ab78}.secondary.submit.button{background-color:#06d6a0}.secondary.submit.button:hover{background-color:#00ab78}.secondary.outlined.button{border-color:#06d6a0}.secondary.outlined.button:hover{background-color:#06d6a0}.ternary.button{color:#118ab2}.ternary.button:hover{color:#006f95}.ternary.submit.button{background-color:#118ab2}.ternary.submit.button:hover{background-color:#006f95}.ternary.outlined.button{border-color:#118ab2}.ternary.outlined:hover{background-color:#118ab2}.submit.button,.submit.button:hover,.outlined.button:hover{color:#fbfbfb}.icon-button{min-width:2.5rem;min-height:2.5rem;height:2.5rem;width:2.5rem;border-radius:9999px;padding:0;font-size:1.25rem;line-height:1.75rem}.icon-button:hover{background-color:#26222026}.primary.icon-button:hover{background-color:#65000926}.secondary.icon-button:hover{background-color:#00340f26}.ternary.icon-button:hover{background-color:#00254526}.image{font-style:italic;max-width:100%;height:auto;vertical-align:middle}.box{background-image:linear-gradient(to right,#cbcbcb calc(50% - 100px),#a5a5a5 50%,#cbcbcb calc(50% + 100px));background-size:0;opacity:1;position:relative;overflow:hidden}.box:before{content:"";position:absolute;height:100%;top:0;right:0;width:calc(200% + 200px);bottom:0;background-image:inherit;animation:move 2s linear infinite}@keyframes move{to{transform:translate(calc(50% + 100px))}}.input-control{display:flex;width:100%;align-items:flex-start;justify-content:flex-start;gap:.25rem}.column{flex-direction:column}.row{flex-direction:row}.input-control textarea{width:100%;resize:none;border-radius:.75rem;padding:.5rem 1rem}.input-control input,.input-control select{width:100%;border-radius:1.5rem;padding:.5rem 1rem}.input-control .sub{width:100%;border-radius:1.5rem}.input-control textarea:focus-visible,.input-control textarea,.input-control input:focus-visible,.input-control input{outline:none!important}.input-control .sub,.input-control textarea,.input-control input,.input-control select{color:#262220;background-color:#eaeaea;width:100%}.dark .input-control .sub,.dark .input-control textarea,.dark .input-control input,.dark .input-control select{color:#fbfbfb;background-color:#222333}.primary.input-control .sub,.primary.input-control textarea,.primary.input-control input,.primary.input-control select{color:#fbfbfb;background-color:#ef476f}.secondary.input-control .sub,.secondary.input-control textarea,.secondary.input-control input,.secondary.input-control select{color:#fbfbfb;background-color:#06d6a0}.ternary.input-control .sub,.ternary.input-control textarea,.ternary.input-control input,.ternary.input-control select{color:#fbfbfb;background-color:#118ab2}.loading{display:flex;height:100%;width:100%;align-items:center;justify-content:center}.light .loading{background-color:#fbfbfb}.dark .loading{background-color:#262220}.primary.loading .path{stroke:#ef476f}.secondary.loading .path{stroke:#06d6a0}.ternary.loading .path{stroke:#118ab2}.loader-container{padding:5%}.loader{position:relative;margin:0 auto;width:40px}.loader:before{content:"";display:block;padding-top:100%}.circular{animation:rotate 2s linear infinite;height:100%;transform-origin:center center;width:100%;position:absolute;top:0;bottom:0;left:0;right:0;margin:auto}.path{stroke-dasharray:1,200;stroke-dashoffset:0;animation:dash 1.5s ease-in-out infinite;stroke-linecap:round}@keyframes rotate{to{transform:rotate(360deg)}}@keyframes dash{0%{stroke-dasharray:1,200;stroke-dashoffset:0}50%{stroke-dasharray:89,200;stroke-dashoffset:-35px}to{stroke-dasharray:89,200;stroke-dashoffset:-124px}}@layer{.notification{min-width:150px;max-width:300px}.info.notification{background-color:#09c}.warning.notification{background-color:#f80}.success.notification{background-color:#073}.error.notification{background-color:#c00}}.container{width:100%}.check-input{height:0;width:0;display:none!important}.switcher{width:55px;height:25px;border-radius:100px;position:relative;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-duration:.3s;transition-timing-function:cubic-bezier(.4,0,.2,1)}.primary.switcher{background-color:#ef476f}.secondary.switcher{background-color:#06d6a0}.ternary.switcher{background-color:#118ab2}.ball{width:20px;height:15px;position:absolute;border-radius:20px;top:50%;transition:all .5s ease;background-color:#eaeaea}.deactivated{transform:translate(20%,-50%)}.activated{transform:translate(150%,-50%)}.to-top{position:fixed;bottom:.25rem;right:.25rem}
package/dist/vite.svg DELETED
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="31.88" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 257"><defs><linearGradient id="IconifyId1813088fe1fbc01fb466" x1="-.828%" x2="57.636%" y1="7.652%" y2="78.411%"><stop offset="0%" stop-color="#41D1FF"></stop><stop offset="100%" stop-color="#BD34FE"></stop></linearGradient><linearGradient id="IconifyId1813088fe1fbc01fb467" x1="43.376%" x2="50.316%" y1="2.242%" y2="89.03%"><stop offset="0%" stop-color="#FFEA83"></stop><stop offset="8.333%" stop-color="#FFDD35"></stop><stop offset="100%" stop-color="#FFA800"></stop></linearGradient></defs><path fill="url(#IconifyId1813088fe1fbc01fb466)" d="M255.153 37.938L134.897 252.976c-2.483 4.44-8.862 4.466-11.382.048L.875 37.958c-2.746-4.814 1.371-10.646 6.827-9.67l120.385 21.517a6.537 6.537 0 0 0 2.322-.004l117.867-21.483c5.438-.991 9.574 4.796 6.877 9.62Z"></path><path fill="url(#IconifyId1813088fe1fbc01fb467)" d="M185.432.063L96.44 17.501a3.268 3.268 0 0 0-2.634 3.014l-5.474 92.456a3.268 3.268 0 0 0 3.997 3.378l24.777-5.718c2.318-.535 4.413 1.507 3.936 3.838l-7.361 36.047c-.495 2.426 1.782 4.5 4.151 3.78l15.304-4.649c2.372-.72 4.652 1.36 4.15 3.788l-11.698 56.621c-.732 3.542 3.979 5.473 5.943 2.437l1.313-2.028l72.516-144.72c1.215-2.423-.88-5.186-3.54-4.672l-25.505 4.922c-2.396.462-4.435-1.77-3.759-4.114l16.646-57.705c.677-2.35-1.37-4.583-3.769-4.113Z"></path></svg>