@octavius2929-personal/design-system 1.0.1 → 1.2.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/index.cjs +621 -526
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +143 -111
- package/dist/index.d.ts +143 -111
- package/dist/index.js +606 -512
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1297,6 +1297,10 @@ interface ColorTokens {
|
|
|
1297
1297
|
sunken: string;
|
|
1298
1298
|
inset: string;
|
|
1299
1299
|
};
|
|
1300
|
+
/** `strong`/`muted` cumplen AA (≥4.5) sobre los 4 fondos. **`subtle` solo cumple AA sobre
|
|
1301
|
+
* `bg.page`/`bg.surface`**: sobre los hundidos (`bg.sunken`/`bg.inset`) queda en ~3–4.4, así
|
|
1302
|
+
* que ahí es válido únicamente para uso incidental (estados `:disabled`, que WCAG 1.4.3
|
|
1303
|
+
* exime). Para texto ACTIVO sobre fondos hundidos usá `muted`. Lo fija `contrast.test.ts`. */
|
|
1300
1304
|
fg: {
|
|
1301
1305
|
strong: string;
|
|
1302
1306
|
muted: string;
|
|
@@ -1648,6 +1652,21 @@ interface IconProps extends SVGProps<SVGSVGElement> {
|
|
|
1648
1652
|
size?: number;
|
|
1649
1653
|
/** Grosor de trazo. Por defecto 1.75. */
|
|
1650
1654
|
strokeWidth?: number;
|
|
1655
|
+
/**
|
|
1656
|
+
* Nombre accesible del icono. Reutiliza el atributo nativo `title` de
|
|
1657
|
+
* `SVGProps` (mismo nombre que `IconButtonProps.title`) en vez de sumar un
|
|
1658
|
+
* prop nuevo con semántica solapada.
|
|
1659
|
+
*
|
|
1660
|
+
* - **Presente** → el icono es informativo: pierde `aria-hidden`, gana
|
|
1661
|
+
* `role="img"` + `aria-label={title}` (los lectores de pantalla lo
|
|
1662
|
+
* anuncian). Usalo cuando el icono ES el contenido — sin texto visible
|
|
1663
|
+
* al lado que ya lo describa (p.ej. un botón solo-icono, un indicador de
|
|
1664
|
+
* estado).
|
|
1665
|
+
* - **Ausente (default)** → el icono es decorativo: `aria-hidden="true"`,
|
|
1666
|
+
* sin rol ni nombre accesible. Es el caso normal cuando el icono
|
|
1667
|
+
* acompaña un texto/label visible que ya transmite el significado.
|
|
1668
|
+
*/
|
|
1669
|
+
title?: string;
|
|
1651
1670
|
}
|
|
1652
1671
|
type Icon = (props: IconProps) => ReactElement;
|
|
1653
1672
|
|
|
@@ -1985,6 +2004,17 @@ interface SnackbarProps {
|
|
|
1985
2004
|
message: ReactNode;
|
|
1986
2005
|
action?: ReactNode;
|
|
1987
2006
|
onClose?: () => void;
|
|
2007
|
+
/**
|
|
2008
|
+
* Tiempo en ms antes de auto-cerrarse (dispara `onClose`). Default: `5000`.
|
|
2009
|
+
* Pasá `null` para desactivarlo: el snackbar queda persistente y solo se
|
|
2010
|
+
* cierra por acción del usuario (p. ej. el botón de cerrar).
|
|
2011
|
+
*
|
|
2012
|
+
* A11y (WCAG 2.2.1 — Timing Adjustable): el timer se pausa mientras el
|
|
2013
|
+
* puntero está sobre el snackbar o el foco está dentro de él, y se reinicia
|
|
2014
|
+
* con la duración completa al terminar la interacción. Así no se cierra
|
|
2015
|
+
* algo que el usuario está leyendo o con lo que está interactuando.
|
|
2016
|
+
*/
|
|
2017
|
+
duration?: number | null;
|
|
1988
2018
|
/** testId de la instancia: compone `feedback__<contexto>__<testId>`. */
|
|
1989
2019
|
testId?: string;
|
|
1990
2020
|
}
|
|
@@ -2031,225 +2061,227 @@ interface ListItemProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
2031
2061
|
|
|
2032
2062
|
declare const ListItem: react.ForwardRefExoticComponent<ListItemProps & react.RefAttributes<HTMLDivElement>>;
|
|
2033
2063
|
|
|
2034
|
-
declare function AlertCircleIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2064
|
+
declare function AlertCircleIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2065
|
+
|
|
2066
|
+
declare function ArchiveIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2035
2067
|
|
|
2036
|
-
declare function
|
|
2068
|
+
declare function ArrowDownIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2037
2069
|
|
|
2038
|
-
declare function
|
|
2070
|
+
declare function ArrowLeftIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2039
2071
|
|
|
2040
|
-
declare function
|
|
2072
|
+
declare function ArrowRightIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2041
2073
|
|
|
2042
|
-
declare function
|
|
2074
|
+
declare function ArrowUpIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2043
2075
|
|
|
2044
|
-
declare function
|
|
2076
|
+
declare function AtSignIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2045
2077
|
|
|
2046
|
-
declare function
|
|
2078
|
+
declare function BellIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2047
2079
|
|
|
2048
|
-
declare function
|
|
2080
|
+
declare function BellOffIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2049
2081
|
|
|
2050
|
-
declare function
|
|
2082
|
+
declare function BookmarkIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2051
2083
|
|
|
2052
|
-
declare function
|
|
2084
|
+
declare function CalendarIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2053
2085
|
|
|
2054
|
-
declare function
|
|
2086
|
+
declare function CameraIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2055
2087
|
|
|
2056
|
-
declare function
|
|
2088
|
+
declare function CheckIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2057
2089
|
|
|
2058
|
-
declare function
|
|
2090
|
+
declare function ChevronDownIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2059
2091
|
|
|
2060
|
-
declare function
|
|
2092
|
+
declare function ChevronLeftIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2061
2093
|
|
|
2062
|
-
declare function
|
|
2094
|
+
declare function ChevronRightIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2063
2095
|
|
|
2064
|
-
declare function
|
|
2096
|
+
declare function ChevronUpIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2065
2097
|
|
|
2066
|
-
declare function
|
|
2098
|
+
declare function ChevronsLeftIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2067
2099
|
|
|
2068
|
-
declare function
|
|
2100
|
+
declare function ChevronsRightIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2069
2101
|
|
|
2070
|
-
declare function
|
|
2102
|
+
declare function CircleCheckIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2071
2103
|
|
|
2072
|
-
declare function
|
|
2104
|
+
declare function CircleXIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2073
2105
|
|
|
2074
|
-
declare function
|
|
2106
|
+
declare function ClipboardIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2075
2107
|
|
|
2076
|
-
declare function
|
|
2108
|
+
declare function ClockIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2077
2109
|
|
|
2078
|
-
declare function
|
|
2110
|
+
declare function CloudIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2079
2111
|
|
|
2080
|
-
declare function
|
|
2112
|
+
declare function CopyIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2081
2113
|
|
|
2082
|
-
declare function
|
|
2114
|
+
declare function CornerDownRightIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2083
2115
|
|
|
2084
|
-
declare function
|
|
2116
|
+
declare function CreditCardIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2085
2117
|
|
|
2086
|
-
declare function
|
|
2118
|
+
declare function DollarSignIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2087
2119
|
|
|
2088
|
-
declare function
|
|
2120
|
+
declare function DownloadIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2089
2121
|
|
|
2090
|
-
declare function
|
|
2122
|
+
declare function ExternalLinkIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2091
2123
|
|
|
2092
|
-
declare function
|
|
2124
|
+
declare function EyeIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2093
2125
|
|
|
2094
|
-
declare function
|
|
2126
|
+
declare function EyeOffIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2095
2127
|
|
|
2096
|
-
declare function
|
|
2128
|
+
declare function FileIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2097
2129
|
|
|
2098
|
-
declare function
|
|
2130
|
+
declare function FileTextIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2099
2131
|
|
|
2100
|
-
declare function
|
|
2132
|
+
declare function FilterIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2101
2133
|
|
|
2102
|
-
declare function
|
|
2134
|
+
declare function FingerprintIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2103
2135
|
|
|
2104
|
-
declare function
|
|
2136
|
+
declare function FolderIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2105
2137
|
|
|
2106
|
-
declare function
|
|
2138
|
+
declare function FolderOpenIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2107
2139
|
|
|
2108
|
-
declare function
|
|
2140
|
+
declare function GiftIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2109
2141
|
|
|
2110
|
-
declare function
|
|
2142
|
+
declare function GitHubIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2111
2143
|
|
|
2112
|
-
declare function GlobeIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2144
|
+
declare function GlobeIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2113
2145
|
|
|
2114
|
-
declare function GridIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2146
|
+
declare function GridIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2115
2147
|
|
|
2116
|
-
declare function HeartIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2148
|
+
declare function HeartIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2117
2149
|
|
|
2118
|
-
declare function HelpCircleIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2150
|
+
declare function HelpCircleIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2119
2151
|
|
|
2120
|
-
declare function HomeIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2152
|
+
declare function HomeIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2121
2153
|
|
|
2122
|
-
declare function ImageIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2154
|
+
declare function ImageIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2123
2155
|
|
|
2124
|
-
declare function InboxIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2156
|
+
declare function InboxIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2125
2157
|
|
|
2126
|
-
declare function InfoIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2158
|
+
declare function InfoIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2127
2159
|
|
|
2128
|
-
declare function KeyIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2160
|
+
declare function KeyIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2129
2161
|
|
|
2130
|
-
declare function LayoutIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2162
|
+
declare function LayoutIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2131
2163
|
|
|
2132
|
-
declare function LinkIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2164
|
+
declare function LinkIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2133
2165
|
|
|
2134
|
-
declare function ListIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2166
|
+
declare function ListIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2135
2167
|
|
|
2136
|
-
declare function LoaderIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2168
|
+
declare function LoaderIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2137
2169
|
|
|
2138
|
-
declare function LockIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2170
|
+
declare function LockIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2139
2171
|
|
|
2140
|
-
declare function LogInIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2172
|
+
declare function LogInIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2141
2173
|
|
|
2142
|
-
declare function LogOutIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2174
|
+
declare function LogOutIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2143
2175
|
|
|
2144
|
-
declare function MailIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2176
|
+
declare function MailIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2145
2177
|
|
|
2146
|
-
declare function MapPinIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2178
|
+
declare function MapPinIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2147
2179
|
|
|
2148
|
-
declare function MaximizeIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2180
|
+
declare function MaximizeIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2149
2181
|
|
|
2150
|
-
declare function MenuIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2182
|
+
declare function MenuIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2151
2183
|
|
|
2152
|
-
declare function MessageCircleIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2184
|
+
declare function MessageCircleIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2153
2185
|
|
|
2154
|
-
declare function MessageSquareIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2186
|
+
declare function MessageSquareIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2155
2187
|
|
|
2156
|
-
declare function MicIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2188
|
+
declare function MicIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2157
2189
|
|
|
2158
|
-
declare function MinimizeIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2190
|
+
declare function MinimizeIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2159
2191
|
|
|
2160
|
-
declare function MinusIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2192
|
+
declare function MinusIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2161
2193
|
|
|
2162
|
-
declare function MoonIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2194
|
+
declare function MoonIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2163
2195
|
|
|
2164
|
-
declare function MoreHorizontalIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2196
|
+
declare function MoreHorizontalIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2165
2197
|
|
|
2166
|
-
declare function MoreVerticalIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2198
|
+
declare function MoreVerticalIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2167
2199
|
|
|
2168
|
-
declare function PackageIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2200
|
+
declare function PackageIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2169
2201
|
|
|
2170
|
-
declare function PaperclipIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2202
|
+
declare function PaperclipIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2171
2203
|
|
|
2172
|
-
declare function PauseIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2204
|
+
declare function PauseIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2173
2205
|
|
|
2174
|
-
declare function PencilIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2206
|
+
declare function PencilIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2175
2207
|
|
|
2176
|
-
declare function PhoneIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2208
|
+
declare function PhoneIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2177
2209
|
|
|
2178
|
-
declare function PlayIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2210
|
+
declare function PlayIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2179
2211
|
|
|
2180
|
-
declare function PlusIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2212
|
+
declare function PlusIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2181
2213
|
|
|
2182
|
-
declare function PrinterIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2214
|
+
declare function PrinterIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2183
2215
|
|
|
2184
|
-
declare function RedoIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2216
|
+
declare function RedoIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2185
2217
|
|
|
2186
|
-
declare function RefreshCwIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2218
|
+
declare function RefreshCwIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2187
2219
|
|
|
2188
|
-
declare function SaveIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2220
|
+
declare function SaveIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2189
2221
|
|
|
2190
|
-
declare function SearchIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2222
|
+
declare function SearchIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2191
2223
|
|
|
2192
|
-
declare function SendIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2224
|
+
declare function SendIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2193
2225
|
|
|
2194
|
-
declare function SettingsIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2226
|
+
declare function SettingsIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2195
2227
|
|
|
2196
|
-
declare function ShareIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2228
|
+
declare function ShareIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2197
2229
|
|
|
2198
|
-
declare function ShieldIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2230
|
+
declare function ShieldIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2199
2231
|
|
|
2200
|
-
declare function ShieldCheckIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2232
|
+
declare function ShieldCheckIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2201
2233
|
|
|
2202
|
-
declare function ShoppingBagIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2234
|
+
declare function ShoppingBagIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2203
2235
|
|
|
2204
|
-
declare function ShoppingCartIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2236
|
+
declare function ShoppingCartIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2205
2237
|
|
|
2206
|
-
declare function SidebarIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2238
|
+
declare function SidebarIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2207
2239
|
|
|
2208
|
-
declare function SkipBackIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2240
|
+
declare function SkipBackIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2209
2241
|
|
|
2210
|
-
declare function SkipForwardIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2242
|
+
declare function SkipForwardIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2211
2243
|
|
|
2212
|
-
declare function SlidersIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2244
|
+
declare function SlidersIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2213
2245
|
|
|
2214
|
-
declare function SmileIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2246
|
+
declare function SmileIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2215
2247
|
|
|
2216
|
-
declare function StarIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2248
|
+
declare function StarIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2217
2249
|
|
|
2218
|
-
declare function SunIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2250
|
+
declare function SunIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2219
2251
|
|
|
2220
|
-
declare function TagIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2252
|
+
declare function TagIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2221
2253
|
|
|
2222
|
-
declare function ThumbsDownIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2254
|
+
declare function ThumbsDownIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2223
2255
|
|
|
2224
|
-
declare function ThumbsUpIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2256
|
+
declare function ThumbsUpIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2225
2257
|
|
|
2226
|
-
declare function TrashIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2258
|
+
declare function TrashIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2227
2259
|
|
|
2228
|
-
declare function TriangleAlertIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2260
|
+
declare function TriangleAlertIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2229
2261
|
|
|
2230
|
-
declare function UndoIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2262
|
+
declare function UndoIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2231
2263
|
|
|
2232
|
-
declare function UnlockIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2264
|
+
declare function UnlockIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2233
2265
|
|
|
2234
|
-
declare function UploadIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2266
|
+
declare function UploadIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2235
2267
|
|
|
2236
|
-
declare function UserIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2268
|
+
declare function UserIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2237
2269
|
|
|
2238
|
-
declare function UserCheckIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2270
|
+
declare function UserCheckIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2239
2271
|
|
|
2240
|
-
declare function UserPlusIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2272
|
+
declare function UserPlusIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2241
2273
|
|
|
2242
|
-
declare function UsersIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2274
|
+
declare function UsersIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2243
2275
|
|
|
2244
|
-
declare function Volume2Icon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2276
|
+
declare function Volume2Icon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2245
2277
|
|
|
2246
|
-
declare function VolumeXIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2278
|
+
declare function VolumeXIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2247
2279
|
|
|
2248
|
-
declare function WifiIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2280
|
+
declare function WifiIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2249
2281
|
|
|
2250
|
-
declare function XIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2282
|
+
declare function XIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2251
2283
|
|
|
2252
|
-
declare function ZapIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2284
|
+
declare function ZapIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2253
2285
|
|
|
2254
2286
|
declare const iconCatalog: {
|
|
2255
2287
|
name: string;
|
|
@@ -2291,4 +2323,4 @@ interface TestIdHandle {
|
|
|
2291
2323
|
}
|
|
2292
2324
|
declare function useTestId(type: string, ownTestId?: string): TestIdHandle;
|
|
2293
2325
|
|
|
2294
|
-
export { Accordion, type AccordionItem, type AccordionProps, Alert, AlertCircleIcon, type AlertProps, type AlertSeverity, AppBar, type AppBarProps, ArchiveIcon, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, AtSignIcon, Avatar, type AvatarProps, type AvatarSize, Badge, type BadgeProps, type BadgeTone, BellIcon, BellOffIcon, BookmarkIcon, Breadcrumbs, type BreadcrumbsProps, Button, type ButtonProps, type ButtonSize, type ButtonTone, type ButtonVariant, CalendarIcon, CameraIcon, Card, type CardProps, type CardSectionProps, CheckIcon, Checkbox, type CheckboxProps, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsLeftIcon, ChevronsRightIcon, Chip, type ChipProps, type ChipTone, CircleCheckIcon, CircleXIcon, ClipboardIcon, ClockIcon, CloudIcon, type ColorTokens, Container, type ContainerProps, CopyIcon, CornerDownRightIcon, CreditCardIcon, type Crumb, Dialog, type DialogProps, Divider, type DividerProps, DollarSignIcon, DownloadIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FileIcon, FileTextIcon, FilterIcon, FingerprintIcon, FolderIcon, FolderOpenIcon, GiftIcon, GlobeIcon, GridIcon, HeartIcon, HelpCircleIcon, HomeIcon, type Icon, IconButton, type IconButtonProps, type IconButtonTone, type IconProps, ImageIcon, InboxIcon, InfoIcon, KeyIcon, LayoutIcon, LinkIcon, ListIcon, ListItem, type ListItemProps, LoaderIcon, LockIcon, LogInIcon, LogOutIcon, MailIcon, MapPinIcon, MaximizeIcon, Menu, MenuIcon, type MenuItemDef, type MenuProps, MessageCircleIcon, MessageSquareIcon, MicIcon, MinimizeIcon, MinusIcon, type Mode, type ModePreference, MoneyField, type MoneyFieldProps, MoonIcon, MoreHorizontalIcon, MoreVerticalIcon, PackageIcon, Pagination, type PaginationProps, PaperclipIcon, PasswordField, type PasswordFieldProps, PauseIcon, PencilIcon, PhoneIcon, PlayIcon, PlusIcon, PrinterIcon, Progress, type ProgressProps, type ProgressVariant, Radio, type RadioProps, RedoIcon, RefreshCwIcon, SaveIcon, type SchemaName, SearchIcon, Select, type SelectOption, type SelectProps, SendIcon, SettingsIcon, ShareIcon, ShieldCheckIcon, ShieldIcon, ShoppingBagIcon, ShoppingCartIcon, SidebarIcon, SkipBackIcon, SkipForwardIcon, Slider, type SliderProps, SlidersIcon, SmileIcon, Snackbar, type SnackbarProps, StarIcon, type Step, Stepper, type StepperProps, SunIcon, Surface, type SurfaceProps, Switch, type SwitchProps, type TabItem, Table, type TableColumn, type TableProps, Tabs, type TabsProps, TagIcon, type TestIdHandle, TestIdProvider, type TestIdProviderProps, TextField, type TextFieldProps, ThemeProvider, type ThemeProviderProps, ThumbsDownIcon, ThumbsUpIcon, Tooltip, type TooltipPlacement, type TooltipProps, TrashIcon, TriangleAlertIcon, Typography, type TypographyAlign, type TypographyColor, type TypographyProps, type TypographyVariant, UndoIcon, UnlockIcon, UploadIcon, UserCheckIcon, UserIcon, UserPlusIcon, UsersIcon, Volume2Icon, VolumeXIcon, WifiIcon, XIcon, ZapIcon, colorVars, iconCatalog, modeNames, schemaNames, vars as theme, themes, usePrevious, useTestId, useTheme, useToggle };
|
|
2326
|
+
export { Accordion, type AccordionItem, type AccordionProps, Alert, AlertCircleIcon, type AlertProps, type AlertSeverity, AppBar, type AppBarProps, ArchiveIcon, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, AtSignIcon, Avatar, type AvatarProps, type AvatarSize, Badge, type BadgeProps, type BadgeTone, BellIcon, BellOffIcon, BookmarkIcon, Breadcrumbs, type BreadcrumbsProps, Button, type ButtonProps, type ButtonSize, type ButtonTone, type ButtonVariant, CalendarIcon, CameraIcon, Card, type CardProps, type CardSectionProps, CheckIcon, Checkbox, type CheckboxProps, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsLeftIcon, ChevronsRightIcon, Chip, type ChipProps, type ChipTone, CircleCheckIcon, CircleXIcon, ClipboardIcon, ClockIcon, CloudIcon, type ColorTokens, Container, type ContainerProps, CopyIcon, CornerDownRightIcon, CreditCardIcon, type Crumb, Dialog, type DialogProps, Divider, type DividerProps, DollarSignIcon, DownloadIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FileIcon, FileTextIcon, FilterIcon, FingerprintIcon, FolderIcon, FolderOpenIcon, GiftIcon, GitHubIcon, GlobeIcon, GridIcon, HeartIcon, HelpCircleIcon, HomeIcon, type Icon, IconButton, type IconButtonProps, type IconButtonTone, type IconProps, ImageIcon, InboxIcon, InfoIcon, KeyIcon, LayoutIcon, LinkIcon, ListIcon, ListItem, type ListItemProps, LoaderIcon, LockIcon, LogInIcon, LogOutIcon, MailIcon, MapPinIcon, MaximizeIcon, Menu, MenuIcon, type MenuItemDef, type MenuProps, MessageCircleIcon, MessageSquareIcon, MicIcon, MinimizeIcon, MinusIcon, type Mode, type ModePreference, MoneyField, type MoneyFieldProps, MoonIcon, MoreHorizontalIcon, MoreVerticalIcon, PackageIcon, Pagination, type PaginationProps, PaperclipIcon, PasswordField, type PasswordFieldProps, PauseIcon, PencilIcon, PhoneIcon, PlayIcon, PlusIcon, PrinterIcon, Progress, type ProgressProps, type ProgressVariant, Radio, type RadioProps, RedoIcon, RefreshCwIcon, SaveIcon, type SchemaName, SearchIcon, Select, type SelectOption, type SelectProps, SendIcon, SettingsIcon, ShareIcon, ShieldCheckIcon, ShieldIcon, ShoppingBagIcon, ShoppingCartIcon, SidebarIcon, SkipBackIcon, SkipForwardIcon, Slider, type SliderProps, SlidersIcon, SmileIcon, Snackbar, type SnackbarProps, StarIcon, type Step, Stepper, type StepperProps, SunIcon, Surface, type SurfaceProps, Switch, type SwitchProps, type TabItem, Table, type TableColumn, type TableProps, Tabs, type TabsProps, TagIcon, type TestIdHandle, TestIdProvider, type TestIdProviderProps, TextField, type TextFieldProps, ThemeProvider, type ThemeProviderProps, ThumbsDownIcon, ThumbsUpIcon, Tooltip, type TooltipPlacement, type TooltipProps, TrashIcon, TriangleAlertIcon, Typography, type TypographyAlign, type TypographyColor, type TypographyProps, type TypographyVariant, UndoIcon, UnlockIcon, UploadIcon, UserCheckIcon, UserIcon, UserPlusIcon, UsersIcon, Volume2Icon, VolumeXIcon, WifiIcon, XIcon, ZapIcon, colorVars, iconCatalog, modeNames, schemaNames, vars as theme, themes, usePrevious, useTestId, useTheme, useToggle };
|