@scbt-ecom/ui 0.17.4 → 0.18.1

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.
Files changed (36) hide show
  1. package/dist/CustomLink-CcSUq55J.js +4505 -0
  2. package/dist/CustomLink-CcSUq55J.js.map +1 -0
  3. package/dist/scrollToElement-B-reg4jF.js.map +1 -1
  4. package/dist/shared/ui/CustomLink.d.ts +1 -1
  5. package/dist/shared/ui/accordion/Accordion.d.ts +14 -8
  6. package/dist/shared/ui/accordion/ui/AccordionHeader.d.ts +3 -2
  7. package/dist/shared/ui/icon/sprite.gen.d.ts +1 -1
  8. package/dist/shared/utils/scrollToElement.d.ts +1 -1
  9. package/dist/sprites/arrows.svg +1 -1
  10. package/dist/style.css +1 -1
  11. package/dist/ui.js +7987 -8385
  12. package/dist/ui.js.map +1 -1
  13. package/dist/utils-tailwind.css +2 -8
  14. package/dist/widget.js +349 -279
  15. package/dist/widget.js.map +1 -1
  16. package/dist/widgets/footer/Footer.d.ts +1 -17
  17. package/dist/widgets/footer/model/types.d.ts +22 -0
  18. package/dist/widgets/footer/ui/Copyright.d.ts +1 -2
  19. package/dist/widgets/footer/ui/index.d.ts +0 -1
  20. package/dist/widgets/index.d.ts +1 -1
  21. package/dist/widgets/interLinking/InterLinking.d.ts +16 -0
  22. package/dist/widgets/interLinking/index.d.ts +2 -0
  23. package/dist/widgets/interLinking/model/helpers.d.ts +140 -0
  24. package/dist/widgets/interLinking/model/types.d.ts +6 -0
  25. package/dist/widgets/interLinking/ui/Column.d.ts +13 -0
  26. package/dist/widgets/interLinking/ui/ColumnGroup.d.ts +15 -0
  27. package/dist/widgets/interLinking/ui/LinksList.d.ts +11 -0
  28. package/dist/widgets/interLinking/ui/index.d.ts +1 -0
  29. package/package.json +1 -1
  30. package/dist/CustomLink-DmCJLTWC.js +0 -4090
  31. package/dist/CustomLink-DmCJLTWC.js.map +0 -1
  32. package/dist/client.d.ts +0 -12
  33. package/dist/hybrid.d.ts +0 -24
  34. package/dist/shared/ui/accordion/model/types.d.ts +0 -17
  35. package/dist/widgets/baseForm/BaseForm.d.ts +0 -3
  36. package/dist/widgets/baseForm/index.d.ts +0 -1
package/dist/client.d.ts DELETED
@@ -1,12 +0,0 @@
1
- export * from './shared/ui/formElements';
2
- export * from './shared/ui/accordion';
3
- export * from './shared/ui/TabsSwitcher';
4
- export * from './shared/ui/modal';
5
- export * from './shared/ui/providers';
6
- export * from './shared/ui/Popover';
7
- export * from './shared/ui/notification';
8
- export * from './shared/ui/Ligal';
9
- export * from './shared/hooks';
10
- export * from './widgets/banner';
11
- export * from './widgets/benefit';
12
- export * from './widgets/advantages';
package/dist/hybrid.d.ts DELETED
@@ -1,24 +0,0 @@
1
- export * from './shared/ui/Badge';
2
- export * from './shared/ui/Section';
3
- export * from './shared/ui/ResponsiveContainer';
4
- export * from './shared/ui/icon';
5
- export * from './shared/ui/Breadcrumbs';
6
- export * from './shared/ui/button';
7
- export * from './shared/ui/ButtonIcon';
8
- export * from './shared/ui/CustomLink';
9
- export * from './shared/ui/Document';
10
- export * from './shared/ui/Heading';
11
- export * from './shared/ui/PhoneView';
12
- export * from './shared/ui/Loader';
13
- export * from './shared/ui/ProgressBar';
14
- export * from './shared/ui/Skeleton';
15
- export * from './shared/ui/FloatButton';
16
- export * from './shared/utils';
17
- export * from './shared/validation';
18
- export * from './shared/constants';
19
- export * from './configs';
20
- export * from './shared/api';
21
- export * from './widgets/footer';
22
- export * from './widgets/pageHeader';
23
- export * from './widgets/stepper';
24
- export * from './widgets/longBanner';
@@ -1,17 +0,0 @@
1
- import type * as React from 'react';
2
- export type TAccordionHeaderClasses = {
3
- trigger: string;
4
- icon: string;
5
- header: string;
6
- inner: string;
7
- };
8
- export type TAccordionRootClasses = {
9
- item: string;
10
- content: string;
11
- contentInner: string;
12
- accordion: string;
13
- };
14
- export interface IAccordionItem {
15
- label: string;
16
- content: React.ReactNode;
17
- }
@@ -1,3 +0,0 @@
1
- export interface IBaseFormProps {
2
- }
3
- export declare const BaseForm: () => import("react/jsx-runtime").JSX.Element;
@@ -1 +0,0 @@
1
- export * from './BaseForm';