@opensite/ui 3.6.4 → 3.6.6
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/brand-logo.cjs +59 -0
- package/dist/brand-logo.d.cts +21 -0
- package/dist/brand-logo.d.ts +21 -0
- package/dist/brand-logo.js +54 -0
- package/dist/hero-dashed-border-features.cjs +57 -7
- package/dist/hero-dashed-border-features.d.cts +17 -1
- package/dist/hero-dashed-border-features.d.ts +17 -1
- package/dist/hero-dashed-border-features.js +57 -7
- package/dist/hero-design-carousel-portfolio.cjs +51 -6
- package/dist/hero-design-carousel-portfolio.js +51 -6
- package/dist/hero-video-overlay-stars.cjs +46 -0
- package/dist/hero-video-overlay-stars.d.cts +17 -1
- package/dist/hero-video-overlay-stars.d.ts +17 -1
- package/dist/hero-video-overlay-stars.js +46 -0
- package/dist/registry.cjs +15090 -3469
- package/dist/registry.js +14603 -2982
- package/dist/social-link-icon.d.cts +1 -1
- package/dist/social-link-icon.d.ts +1 -1
- package/package.json +6 -1
|
@@ -77,6 +77,6 @@ interface SocialLinkIconProps extends Omit<PressableProps, "children">, SocialLi
|
|
|
77
77
|
* />
|
|
78
78
|
* ```
|
|
79
79
|
*/
|
|
80
|
-
declare const SocialLinkIcon: React.ForwardRefExoticComponent<SocialLinkIconProps & React.RefAttributes<
|
|
80
|
+
declare const SocialLinkIcon: React.ForwardRefExoticComponent<SocialLinkIconProps & React.RefAttributes<HTMLButtonElement | HTMLAnchorElement | HTMLSpanElement>>;
|
|
81
81
|
|
|
82
82
|
export { SocialLinkIcon, type SocialLinkIconDynamicIconProps, type SocialLinkIconProps };
|
|
@@ -77,6 +77,6 @@ interface SocialLinkIconProps extends Omit<PressableProps, "children">, SocialLi
|
|
|
77
77
|
* />
|
|
78
78
|
* ```
|
|
79
79
|
*/
|
|
80
|
-
declare const SocialLinkIcon: React.ForwardRefExoticComponent<SocialLinkIconProps & React.RefAttributes<
|
|
80
|
+
declare const SocialLinkIcon: React.ForwardRefExoticComponent<SocialLinkIconProps & React.RefAttributes<HTMLButtonElement | HTMLAnchorElement | HTMLSpanElement>>;
|
|
81
81
|
|
|
82
82
|
export { SocialLinkIcon, type SocialLinkIconDynamicIconProps, type SocialLinkIconProps };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opensite/ui",
|
|
3
|
-
"version": "3.6.
|
|
3
|
+
"version": "3.6.6",
|
|
4
4
|
"description": "Foundational UI component library for OpenSite Semantic Site Builder with tree-shakable exports and abstract styling",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -3006,6 +3006,11 @@
|
|
|
3006
3006
|
"import": "./dist/brand-attribution.js",
|
|
3007
3007
|
"require": "./dist/brand-attribution.cjs"
|
|
3008
3008
|
},
|
|
3009
|
+
"./components/brand-logo": {
|
|
3010
|
+
"types": "./dist/brand-logo.d.ts",
|
|
3011
|
+
"import": "./dist/brand-logo.js",
|
|
3012
|
+
"require": "./dist/brand-logo.cjs"
|
|
3013
|
+
},
|
|
3009
3014
|
"./components/breadcrumb": {
|
|
3010
3015
|
"types": "./dist/breadcrumb.d.ts",
|
|
3011
3016
|
"import": "./dist/breadcrumb.js",
|