@uniformdev/design-system 20.49.4-alpha.2 → 20.49.5-alpha.5
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.d.mts +2 -14
- package/dist/index.d.ts +2 -14
- package/package.json +4 -4
package/dist/index.d.mts
CHANGED
|
@@ -4361,20 +4361,8 @@ type LinkManagerWithRefType = (props: Partial<LinkProps> & {
|
|
|
4361
4361
|
* We recommend using this link `next/link`
|
|
4362
4362
|
* @example <LinkWithRef linkManagerComponent={NextLink} href="some-url" text="my link" />
|
|
4363
4363
|
*/
|
|
4364
|
-
declare const LinkWithRef: React$1.ForwardRefExoticComponent<Omit<
|
|
4365
|
-
|
|
4366
|
-
text: string;
|
|
4367
|
-
/** (optional) sets the link color
|
|
4368
|
-
* @default 'currentColor'
|
|
4369
|
-
*/
|
|
4370
|
-
linkColor?: LinkColorProps;
|
|
4371
|
-
/** (optional) sets whether the link is external or not adding an icon to the link */
|
|
4372
|
-
external?: boolean;
|
|
4373
|
-
/** (optional) For supporting inside next/link component */
|
|
4374
|
-
ref?: React$1.ForwardedRef<HTMLAnchorElement>;
|
|
4375
|
-
/** (optional) sets react child elements */
|
|
4376
|
-
children?: React$1.ReactNode;
|
|
4377
|
-
} & {
|
|
4364
|
+
declare const LinkWithRef: React$1.ForwardRefExoticComponent<Omit<Omit<LinkProps, "text"> & {
|
|
4365
|
+
text?: string;
|
|
4378
4366
|
href: string;
|
|
4379
4367
|
as?: string;
|
|
4380
4368
|
linkManagerComponent: LinkManagerWithRefType;
|
package/dist/index.d.ts
CHANGED
|
@@ -4361,20 +4361,8 @@ type LinkManagerWithRefType = (props: Partial<LinkProps> & {
|
|
|
4361
4361
|
* We recommend using this link `next/link`
|
|
4362
4362
|
* @example <LinkWithRef linkManagerComponent={NextLink} href="some-url" text="my link" />
|
|
4363
4363
|
*/
|
|
4364
|
-
declare const LinkWithRef: React$1.ForwardRefExoticComponent<Omit<
|
|
4365
|
-
|
|
4366
|
-
text: string;
|
|
4367
|
-
/** (optional) sets the link color
|
|
4368
|
-
* @default 'currentColor'
|
|
4369
|
-
*/
|
|
4370
|
-
linkColor?: LinkColorProps;
|
|
4371
|
-
/** (optional) sets whether the link is external or not adding an icon to the link */
|
|
4372
|
-
external?: boolean;
|
|
4373
|
-
/** (optional) For supporting inside next/link component */
|
|
4374
|
-
ref?: React$1.ForwardedRef<HTMLAnchorElement>;
|
|
4375
|
-
/** (optional) sets react child elements */
|
|
4376
|
-
children?: React$1.ReactNode;
|
|
4377
|
-
} & {
|
|
4364
|
+
declare const LinkWithRef: React$1.ForwardRefExoticComponent<Omit<Omit<LinkProps, "text"> & {
|
|
4365
|
+
text?: string;
|
|
4378
4366
|
href: string;
|
|
4379
4367
|
as?: string;
|
|
4380
4368
|
linkManagerComponent: LinkManagerWithRefType;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/design-system",
|
|
3
|
-
"version": "20.49.
|
|
3
|
+
"version": "20.49.5-alpha.5+eb5527af63",
|
|
4
4
|
"description": "Uniform design system components",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"exports": {
|
|
@@ -35,8 +35,8 @@
|
|
|
35
35
|
"@storybook/react-vite": "10.1.0",
|
|
36
36
|
"@types/react": "19.2.2",
|
|
37
37
|
"@types/react-dom": "19.2.2",
|
|
38
|
-
"@uniformdev/canvas": "^20.49.
|
|
39
|
-
"@uniformdev/richtext": "^20.49.
|
|
38
|
+
"@uniformdev/canvas": "^20.49.5-alpha.5+eb5527af63",
|
|
39
|
+
"@uniformdev/richtext": "^20.49.5-alpha.5+eb5527af63",
|
|
40
40
|
"autoprefixer": "10.4.21",
|
|
41
41
|
"hygen": "6.2.11",
|
|
42
42
|
"jsdom": "20.0.3",
|
|
@@ -88,5 +88,5 @@
|
|
|
88
88
|
"publishConfig": {
|
|
89
89
|
"access": "public"
|
|
90
90
|
},
|
|
91
|
-
"gitHead": "
|
|
91
|
+
"gitHead": "eb5527af632184a0269a47072f4ab4a498ce4d16"
|
|
92
92
|
}
|