@prosistemas/sca-web-kit 1.1.0 → 2.1.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.
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
'use client';
|
|
2
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
|
+
import styles from './loading-icon.module.scss';
|
|
4
|
+
import { CircleNotchIcon } from '@phosphor-icons/react';
|
|
5
|
+
export default function LoadingIcon({ className, color = 'white', size = 64, spinning = true, }) {
|
|
6
|
+
return (_jsx(CircleNotchIcon, { className: `${styles['loading-icon']} ${className} ${spinning && styles['animated']}`, color: color, size: size, style: {
|
|
7
|
+
minWidth: `${size}px`,
|
|
8
|
+
minHeight: `${size}px`,
|
|
9
|
+
} }));
|
|
10
|
+
}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,26 +1,13 @@
|
|
|
1
1
|
import './styles/variables.scss';
|
|
2
|
-
export { default as Decal } from './components/ui/decal/decal';
|
|
3
2
|
export { default as Title } from './components/ui/title/title';
|
|
4
|
-
export { default as Stacks } from './components/ui/stacks/stacks';
|
|
5
3
|
export { default as Button } from './components/ui/button/button';
|
|
6
4
|
export { default as Subtitle } from './components/ui/subtitle/subtitle';
|
|
7
|
-
export { default as Accordion } from './components/ui/accordion/accordion';
|
|
8
5
|
export { default as TagLabel } from './components/ui/tag-label/tag-label';
|
|
9
|
-
export { default as
|
|
10
|
-
export { default as
|
|
11
|
-
export { default as PulseEffect } from './components/ui/pulse-effect/pulse-effect';
|
|
6
|
+
export { default as Accordion } from './components/ui/accordion/accordion';
|
|
7
|
+
export { default as LoadingIcon } from './components/ui/loading-icon/loading-icon';
|
|
12
8
|
export { default as IconWithBackground } from './components/ui/icon-with-background/icon-with-background';
|
|
13
|
-
export { default as Phone } from './components/shared/phone/phone';
|
|
14
|
-
export { default as AutoPlayer } from './components/shared/autoplayer/autoplayer';
|
|
15
9
|
export { default as InfoHeader } from './components/shared/info-header/info-header';
|
|
16
|
-
export { default as IndexHeader } from './components/shared/index-header/index-header';
|
|
17
|
-
export { default as SuccessCases } from './components/shared/success-cases/success-cases';
|
|
18
|
-
export { default as FooterBanner } from './components/shared/footer-banner/footer-banner';
|
|
19
10
|
export { default as NewsletterStrip } from './components/shared/newsletter-strip/newsletter-strip';
|
|
20
11
|
export { default as NewsletterModal } from './components/shared/newsletter-modal/newsletter-modal';
|
|
21
|
-
export { default as SupportStickyButton } from './components/shared/support-sticky-button/support-sticky-button';
|
|
22
12
|
export { default as NewsletterModalDialog } from './components/shared/newsletter-modal-dialog/newsletter-modal-dialog';
|
|
23
|
-
export { default as FooterBannerAutoplayer } from './components/shared/footer-banner-autoplayer/footer-banner-autoplayer';
|
|
24
|
-
export { default as SuccessCasesSwiper } from './components/shared/success-cases/success-cases-swiper/success-cases-swiper';
|
|
25
|
-
export { default as SuccessCaseCard } from './components/shared/success-cases/success-cases-swiper/success-case-card/success-case-card';
|
|
26
13
|
export { default as Footer } from './components/layout/footer/footer';
|
package/dist/index.js
CHANGED
|
@@ -1,29 +1,16 @@
|
|
|
1
1
|
import './styles/variables.scss';
|
|
2
2
|
// UI
|
|
3
|
-
export { default as Decal } from './components/ui/decal/decal';
|
|
4
3
|
export { default as Title } from './components/ui/title/title';
|
|
5
|
-
export { default as Stacks } from './components/ui/stacks/stacks';
|
|
6
4
|
export { default as Button } from './components/ui/button/button';
|
|
7
5
|
export { default as Subtitle } from './components/ui/subtitle/subtitle';
|
|
8
|
-
export { default as Accordion } from './components/ui/accordion/accordion';
|
|
9
6
|
export { default as TagLabel } from './components/ui/tag-label/tag-label';
|
|
10
|
-
export { default as
|
|
11
|
-
export { default as
|
|
12
|
-
export { default as PulseEffect } from './components/ui/pulse-effect/pulse-effect';
|
|
7
|
+
export { default as Accordion } from './components/ui/accordion/accordion';
|
|
8
|
+
export { default as LoadingIcon } from './components/ui/loading-icon/loading-icon';
|
|
13
9
|
export { default as IconWithBackground } from './components/ui/icon-with-background/icon-with-background';
|
|
14
10
|
// Shared
|
|
15
|
-
export { default as Phone } from './components/shared/phone/phone';
|
|
16
|
-
export { default as AutoPlayer } from './components/shared/autoplayer/autoplayer';
|
|
17
11
|
export { default as InfoHeader } from './components/shared/info-header/info-header';
|
|
18
|
-
export { default as IndexHeader } from './components/shared/index-header/index-header';
|
|
19
|
-
export { default as SuccessCases } from './components/shared/success-cases/success-cases';
|
|
20
|
-
export { default as FooterBanner } from './components/shared/footer-banner/footer-banner';
|
|
21
12
|
export { default as NewsletterStrip } from './components/shared/newsletter-strip/newsletter-strip';
|
|
22
13
|
export { default as NewsletterModal } from './components/shared/newsletter-modal/newsletter-modal';
|
|
23
|
-
export { default as SupportStickyButton } from './components/shared/support-sticky-button/support-sticky-button';
|
|
24
14
|
export { default as NewsletterModalDialog } from './components/shared/newsletter-modal-dialog/newsletter-modal-dialog';
|
|
25
|
-
export { default as FooterBannerAutoplayer } from './components/shared/footer-banner-autoplayer/footer-banner-autoplayer';
|
|
26
|
-
export { default as SuccessCasesSwiper } from './components/shared/success-cases/success-cases-swiper/success-cases-swiper';
|
|
27
|
-
export { default as SuccessCaseCard } from './components/shared/success-cases/success-cases-swiper/success-case-card/success-case-card';
|
|
28
15
|
// Layout
|
|
29
16
|
export { default as Footer } from './components/layout/footer/footer';
|