@octavius2929-personal/design-system 1.1.0 → 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 +528 -503
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +128 -111
- package/dist/index.d.ts +128 -111
- package/dist/index.js +512 -488
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1652,6 +1652,21 @@ interface IconProps extends SVGProps<SVGSVGElement> {
|
|
|
1652
1652
|
size?: number;
|
|
1653
1653
|
/** Grosor de trazo. Por defecto 1.75. */
|
|
1654
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;
|
|
1655
1670
|
}
|
|
1656
1671
|
type Icon = (props: IconProps) => ReactElement;
|
|
1657
1672
|
|
|
@@ -2046,225 +2061,227 @@ interface ListItemProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
2046
2061
|
|
|
2047
2062
|
declare const ListItem: react.ForwardRefExoticComponent<ListItemProps & react.RefAttributes<HTMLDivElement>>;
|
|
2048
2063
|
|
|
2049
|
-
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;
|
|
2050
2067
|
|
|
2051
|
-
declare function
|
|
2068
|
+
declare function ArrowDownIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2052
2069
|
|
|
2053
|
-
declare function
|
|
2070
|
+
declare function ArrowLeftIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2054
2071
|
|
|
2055
|
-
declare function
|
|
2072
|
+
declare function ArrowRightIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2056
2073
|
|
|
2057
|
-
declare function
|
|
2074
|
+
declare function ArrowUpIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2058
2075
|
|
|
2059
|
-
declare function
|
|
2076
|
+
declare function AtSignIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2060
2077
|
|
|
2061
|
-
declare function
|
|
2078
|
+
declare function BellIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2062
2079
|
|
|
2063
|
-
declare function
|
|
2080
|
+
declare function BellOffIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2064
2081
|
|
|
2065
|
-
declare function
|
|
2082
|
+
declare function BookmarkIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2066
2083
|
|
|
2067
|
-
declare function
|
|
2084
|
+
declare function CalendarIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2068
2085
|
|
|
2069
|
-
declare function
|
|
2086
|
+
declare function CameraIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2070
2087
|
|
|
2071
|
-
declare function
|
|
2088
|
+
declare function CheckIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2072
2089
|
|
|
2073
|
-
declare function
|
|
2090
|
+
declare function ChevronDownIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2074
2091
|
|
|
2075
|
-
declare function
|
|
2092
|
+
declare function ChevronLeftIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2076
2093
|
|
|
2077
|
-
declare function
|
|
2094
|
+
declare function ChevronRightIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2078
2095
|
|
|
2079
|
-
declare function
|
|
2096
|
+
declare function ChevronUpIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2080
2097
|
|
|
2081
|
-
declare function
|
|
2098
|
+
declare function ChevronsLeftIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2082
2099
|
|
|
2083
|
-
declare function
|
|
2100
|
+
declare function ChevronsRightIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2084
2101
|
|
|
2085
|
-
declare function
|
|
2102
|
+
declare function CircleCheckIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2086
2103
|
|
|
2087
|
-
declare function
|
|
2104
|
+
declare function CircleXIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2088
2105
|
|
|
2089
|
-
declare function
|
|
2106
|
+
declare function ClipboardIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2090
2107
|
|
|
2091
|
-
declare function
|
|
2108
|
+
declare function ClockIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2092
2109
|
|
|
2093
|
-
declare function
|
|
2110
|
+
declare function CloudIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2094
2111
|
|
|
2095
|
-
declare function
|
|
2112
|
+
declare function CopyIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2096
2113
|
|
|
2097
|
-
declare function
|
|
2114
|
+
declare function CornerDownRightIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2098
2115
|
|
|
2099
|
-
declare function
|
|
2116
|
+
declare function CreditCardIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2100
2117
|
|
|
2101
|
-
declare function
|
|
2118
|
+
declare function DollarSignIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2102
2119
|
|
|
2103
|
-
declare function
|
|
2120
|
+
declare function DownloadIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2104
2121
|
|
|
2105
|
-
declare function
|
|
2122
|
+
declare function ExternalLinkIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2106
2123
|
|
|
2107
|
-
declare function
|
|
2124
|
+
declare function EyeIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2108
2125
|
|
|
2109
|
-
declare function
|
|
2126
|
+
declare function EyeOffIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2110
2127
|
|
|
2111
|
-
declare function
|
|
2128
|
+
declare function FileIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2112
2129
|
|
|
2113
|
-
declare function
|
|
2130
|
+
declare function FileTextIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2114
2131
|
|
|
2115
|
-
declare function
|
|
2132
|
+
declare function FilterIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2116
2133
|
|
|
2117
|
-
declare function
|
|
2134
|
+
declare function FingerprintIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2118
2135
|
|
|
2119
|
-
declare function
|
|
2136
|
+
declare function FolderIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2120
2137
|
|
|
2121
|
-
declare function
|
|
2138
|
+
declare function FolderOpenIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2122
2139
|
|
|
2123
|
-
declare function
|
|
2140
|
+
declare function GiftIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2124
2141
|
|
|
2125
|
-
declare function
|
|
2142
|
+
declare function GitHubIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2126
2143
|
|
|
2127
|
-
declare function GlobeIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2144
|
+
declare function GlobeIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2128
2145
|
|
|
2129
|
-
declare function GridIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2146
|
+
declare function GridIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2130
2147
|
|
|
2131
|
-
declare function HeartIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2148
|
+
declare function HeartIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2132
2149
|
|
|
2133
|
-
declare function HelpCircleIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2150
|
+
declare function HelpCircleIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2134
2151
|
|
|
2135
|
-
declare function HomeIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2152
|
+
declare function HomeIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2136
2153
|
|
|
2137
|
-
declare function ImageIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2154
|
+
declare function ImageIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2138
2155
|
|
|
2139
|
-
declare function InboxIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2156
|
+
declare function InboxIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2140
2157
|
|
|
2141
|
-
declare function InfoIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2158
|
+
declare function InfoIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2142
2159
|
|
|
2143
|
-
declare function KeyIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2160
|
+
declare function KeyIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2144
2161
|
|
|
2145
|
-
declare function LayoutIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2162
|
+
declare function LayoutIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2146
2163
|
|
|
2147
|
-
declare function LinkIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2164
|
+
declare function LinkIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2148
2165
|
|
|
2149
|
-
declare function ListIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2166
|
+
declare function ListIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2150
2167
|
|
|
2151
|
-
declare function LoaderIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2168
|
+
declare function LoaderIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2152
2169
|
|
|
2153
|
-
declare function LockIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2170
|
+
declare function LockIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2154
2171
|
|
|
2155
|
-
declare function LogInIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2172
|
+
declare function LogInIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2156
2173
|
|
|
2157
|
-
declare function LogOutIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2174
|
+
declare function LogOutIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2158
2175
|
|
|
2159
|
-
declare function MailIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2176
|
+
declare function MailIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2160
2177
|
|
|
2161
|
-
declare function MapPinIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2178
|
+
declare function MapPinIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2162
2179
|
|
|
2163
|
-
declare function MaximizeIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2180
|
+
declare function MaximizeIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2164
2181
|
|
|
2165
|
-
declare function MenuIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2182
|
+
declare function MenuIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2166
2183
|
|
|
2167
|
-
declare function MessageCircleIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2184
|
+
declare function MessageCircleIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2168
2185
|
|
|
2169
|
-
declare function MessageSquareIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2186
|
+
declare function MessageSquareIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2170
2187
|
|
|
2171
|
-
declare function MicIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2188
|
+
declare function MicIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2172
2189
|
|
|
2173
|
-
declare function MinimizeIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2190
|
+
declare function MinimizeIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2174
2191
|
|
|
2175
|
-
declare function MinusIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2192
|
+
declare function MinusIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2176
2193
|
|
|
2177
|
-
declare function MoonIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2194
|
+
declare function MoonIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2178
2195
|
|
|
2179
|
-
declare function MoreHorizontalIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2196
|
+
declare function MoreHorizontalIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2180
2197
|
|
|
2181
|
-
declare function MoreVerticalIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2198
|
+
declare function MoreVerticalIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2182
2199
|
|
|
2183
|
-
declare function PackageIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2200
|
+
declare function PackageIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2184
2201
|
|
|
2185
|
-
declare function PaperclipIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2202
|
+
declare function PaperclipIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2186
2203
|
|
|
2187
|
-
declare function PauseIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2204
|
+
declare function PauseIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2188
2205
|
|
|
2189
|
-
declare function PencilIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2206
|
+
declare function PencilIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2190
2207
|
|
|
2191
|
-
declare function PhoneIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2208
|
+
declare function PhoneIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2192
2209
|
|
|
2193
|
-
declare function PlayIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2210
|
+
declare function PlayIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2194
2211
|
|
|
2195
|
-
declare function PlusIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2212
|
+
declare function PlusIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2196
2213
|
|
|
2197
|
-
declare function PrinterIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2214
|
+
declare function PrinterIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2198
2215
|
|
|
2199
|
-
declare function RedoIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2216
|
+
declare function RedoIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2200
2217
|
|
|
2201
|
-
declare function RefreshCwIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2218
|
+
declare function RefreshCwIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2202
2219
|
|
|
2203
|
-
declare function SaveIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2220
|
+
declare function SaveIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2204
2221
|
|
|
2205
|
-
declare function SearchIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2222
|
+
declare function SearchIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2206
2223
|
|
|
2207
|
-
declare function SendIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2224
|
+
declare function SendIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2208
2225
|
|
|
2209
|
-
declare function SettingsIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2226
|
+
declare function SettingsIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2210
2227
|
|
|
2211
|
-
declare function ShareIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2228
|
+
declare function ShareIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2212
2229
|
|
|
2213
|
-
declare function ShieldIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2230
|
+
declare function ShieldIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2214
2231
|
|
|
2215
|
-
declare function ShieldCheckIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2232
|
+
declare function ShieldCheckIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2216
2233
|
|
|
2217
|
-
declare function ShoppingBagIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2234
|
+
declare function ShoppingBagIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2218
2235
|
|
|
2219
|
-
declare function ShoppingCartIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2236
|
+
declare function ShoppingCartIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2220
2237
|
|
|
2221
|
-
declare function SidebarIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2238
|
+
declare function SidebarIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2222
2239
|
|
|
2223
|
-
declare function SkipBackIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2240
|
+
declare function SkipBackIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2224
2241
|
|
|
2225
|
-
declare function SkipForwardIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2242
|
+
declare function SkipForwardIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2226
2243
|
|
|
2227
|
-
declare function SlidersIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2244
|
+
declare function SlidersIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2228
2245
|
|
|
2229
|
-
declare function SmileIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2246
|
+
declare function SmileIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2230
2247
|
|
|
2231
|
-
declare function StarIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2248
|
+
declare function StarIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2232
2249
|
|
|
2233
|
-
declare function SunIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2250
|
+
declare function SunIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2234
2251
|
|
|
2235
|
-
declare function TagIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2252
|
+
declare function TagIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2236
2253
|
|
|
2237
|
-
declare function ThumbsDownIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2254
|
+
declare function ThumbsDownIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2238
2255
|
|
|
2239
|
-
declare function ThumbsUpIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2256
|
+
declare function ThumbsUpIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2240
2257
|
|
|
2241
|
-
declare function TrashIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2258
|
+
declare function TrashIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2242
2259
|
|
|
2243
|
-
declare function TriangleAlertIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2260
|
+
declare function TriangleAlertIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2244
2261
|
|
|
2245
|
-
declare function UndoIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2262
|
+
declare function UndoIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2246
2263
|
|
|
2247
|
-
declare function UnlockIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2264
|
+
declare function UnlockIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2248
2265
|
|
|
2249
|
-
declare function UploadIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2266
|
+
declare function UploadIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2250
2267
|
|
|
2251
|
-
declare function UserIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2268
|
+
declare function UserIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2252
2269
|
|
|
2253
|
-
declare function UserCheckIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2270
|
+
declare function UserCheckIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2254
2271
|
|
|
2255
|
-
declare function UserPlusIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2272
|
+
declare function UserPlusIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2256
2273
|
|
|
2257
|
-
declare function UsersIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2274
|
+
declare function UsersIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2258
2275
|
|
|
2259
|
-
declare function Volume2Icon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2276
|
+
declare function Volume2Icon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2260
2277
|
|
|
2261
|
-
declare function VolumeXIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2278
|
+
declare function VolumeXIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2262
2279
|
|
|
2263
|
-
declare function WifiIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2280
|
+
declare function WifiIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2264
2281
|
|
|
2265
|
-
declare function XIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2282
|
+
declare function XIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2266
2283
|
|
|
2267
|
-
declare function ZapIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
|
|
2284
|
+
declare function ZapIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
|
|
2268
2285
|
|
|
2269
2286
|
declare const iconCatalog: {
|
|
2270
2287
|
name: string;
|
|
@@ -2306,4 +2323,4 @@ interface TestIdHandle {
|
|
|
2306
2323
|
}
|
|
2307
2324
|
declare function useTestId(type: string, ownTestId?: string): TestIdHandle;
|
|
2308
2325
|
|
|
2309
|
-
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 };
|