uikit-react-public 0.27.2 → 0.29.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.
- package/dist/components/BreadcrumbsNew/BaseBreadcrumbsItem.d.ts +12 -0
- package/dist/components/BreadcrumbsNew/Breadcrumbs.d.ts +18 -0
- package/dist/components/BreadcrumbsNew/BreadcrumbsCurrent.d.ts +8 -0
- package/dist/components/BreadcrumbsNew/BreadcrumbsLink.d.ts +7 -0
- package/dist/components/BreadcrumbsNew/__tests__/Breadcrumbs.test.d.ts +1 -0
- package/dist/components/BreadcrumbsNew/index.d.ts +2 -0
- package/dist/components/Chip/Chip.d.ts +11 -0
- package/dist/components/Chip/Chip.stories.d.ts +25 -0
- package/dist/components/Chip/__tests__/Chip.test.d.ts +1 -0
- package/dist/components/Chip/index.d.ts +2 -0
- package/dist/components/Link/BaseLink.d.ts +3 -0
- package/dist/components/index.d.ts +4 -0
- package/dist/index.js +5965 -5634
- package/lib/components/BaseCheckbox/BaseCheckbox.tsx +1 -5
- package/lib/components/BreadcrumbsNew/BaseBreadcrumbsItem.tsx +69 -0
- package/lib/components/BreadcrumbsNew/Breadcrumbs.tsx +118 -0
- package/lib/components/BreadcrumbsNew/BreadcrumbsCurrent.tsx +54 -0
- package/lib/components/BreadcrumbsNew/BreadcrumbsLink.tsx +67 -0
- package/lib/components/BreadcrumbsNew/__tests__/Breadcrumbs.test.tsx +53 -0
- package/lib/components/BreadcrumbsNew/index.ts +8 -0
- package/lib/components/Checkbox/__tests__/__snapshots__/Checkbox.test.tsx.snap +4 -4
- package/lib/components/Chip/Chip.stories.tsx +37 -0
- package/lib/components/Chip/Chip.tsx +191 -0
- package/lib/components/Chip/__tests__/Chip.test.tsx +287 -0
- package/lib/components/Chip/__tests__/__snapshots__/Chip.test.tsx.snap +255 -0
- package/lib/components/Chip/index.ts +2 -0
- package/lib/components/Link/BaseLink.tsx +40 -2
- package/lib/components/Link/__tests__/link.test.tsx +58 -1
- package/lib/components/Table/subcomponents/Cell/__tests__/__snapshots__/Cell.test.tsx.snap +1 -1
- package/lib/components/Table/subcomponents/HeadCell/__tests__/__snapshots__/HeadCell.test.tsx.snap +1 -1
- package/lib/components/index.ts +12 -0
- package/package.json +1 -1
package/lib/components/index.ts
CHANGED
|
@@ -79,12 +79,24 @@ export type { AppHeaderProps } from './AppHeader';
|
|
|
79
79
|
export { default as Breadcrumbs } from './Breadcrumbs';
|
|
80
80
|
export type { BreadcrumbsProps } from './Breadcrumbs';
|
|
81
81
|
|
|
82
|
+
export { default as BreadcrumbsNew } from './BreadcrumbsNew';
|
|
83
|
+
export type {
|
|
84
|
+
BaseBreadcrumbsItemProps,
|
|
85
|
+
BreadcrumbsCurrentProps,
|
|
86
|
+
BreadcrumbsLinkProps,
|
|
87
|
+
BreadcrumbsProps as BreadcrumbsNewProps,
|
|
88
|
+
BreadcrumbsSize,
|
|
89
|
+
} from './BreadcrumbsNew';
|
|
90
|
+
|
|
82
91
|
export { default as Checkbox, LabelledCheckbox } from './Checkbox';
|
|
83
92
|
export type { CheckboxProps, LabelledCheckboxProps } from './Checkbox';
|
|
84
93
|
|
|
85
94
|
export { default as Toggle } from './Toggle';
|
|
86
95
|
export type { ToggleProps } from './Toggle';
|
|
87
96
|
|
|
97
|
+
export { default as Chip } from './Chip';
|
|
98
|
+
export type { ChipProps } from './Chip';
|
|
99
|
+
|
|
88
100
|
export { default as AppMenu } from './AppMenu';
|
|
89
101
|
export type { AppMenuProps } from './AppMenu';
|
|
90
102
|
|