@opensite/ui 0.7.4 → 0.7.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/carousel-fullscreen-scroll-fx.cjs +576 -118
- package/dist/carousel-fullscreen-scroll-fx.d.cts +5 -1
- package/dist/carousel-fullscreen-scroll-fx.d.ts +5 -1
- package/dist/carousel-fullscreen-scroll-fx.js +577 -119
- package/dist/registry.cjs +165 -126
- package/dist/registry.js +165 -126
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import { P as PatternName } from './pattern-background-a7gKHzHy.cjs';
|
|
3
3
|
import { f as SectionBackground, g as SectionSpacing, e as ContainerMaxWidth } from './community-initiatives-Sm_ZSgyv.cjs';
|
|
4
|
-
import { O as OptixFlowConfig } from './blocks-Cohq4eio.cjs';
|
|
4
|
+
import { A as ActionConfig, O as OptixFlowConfig } from './blocks-Cohq4eio.cjs';
|
|
5
5
|
import 'react/jsx-runtime';
|
|
6
6
|
import 'class-variance-authority';
|
|
7
7
|
import './button-variants-lRElsmTc.cjs';
|
|
@@ -54,6 +54,10 @@ interface FullscreenSlide {
|
|
|
54
54
|
* Additional CSS classes for the image
|
|
55
55
|
*/
|
|
56
56
|
imageClassName?: string;
|
|
57
|
+
/**
|
|
58
|
+
* Array of action configurations
|
|
59
|
+
*/
|
|
60
|
+
actions?: ActionConfig[];
|
|
57
61
|
}
|
|
58
62
|
interface CarouselFullscreenScrollFxProps {
|
|
59
63
|
/**
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import { P as PatternName } from './pattern-background-a7gKHzHy.js';
|
|
3
3
|
import { f as SectionBackground, g as SectionSpacing, e as ContainerMaxWidth } from './community-initiatives-BeWIIjA4.js';
|
|
4
|
-
import { O as OptixFlowConfig } from './blocks-k17uluAz.js';
|
|
4
|
+
import { A as ActionConfig, O as OptixFlowConfig } from './blocks-k17uluAz.js';
|
|
5
5
|
import 'react/jsx-runtime';
|
|
6
6
|
import 'class-variance-authority';
|
|
7
7
|
import './button-variants-lRElsmTc.js';
|
|
@@ -54,6 +54,10 @@ interface FullscreenSlide {
|
|
|
54
54
|
* Additional CSS classes for the image
|
|
55
55
|
*/
|
|
56
56
|
imageClassName?: string;
|
|
57
|
+
/**
|
|
58
|
+
* Array of action configurations
|
|
59
|
+
*/
|
|
60
|
+
actions?: ActionConfig[];
|
|
57
61
|
}
|
|
58
62
|
interface CarouselFullscreenScrollFxProps {
|
|
59
63
|
/**
|