@wikicasa-dev/components 2.2.1 → 2.2.2-alpha.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.
- package/dist/Swiper/autoplay.js +1 -1
- package/dist/Swiper/controller.js +1 -1
- package/dist/Swiper/keyboard.js +1 -1
- package/dist/Swiper/thumbs.js +1 -1
- package/dist/index.d.ts +7 -9
- package/dist/types/index.d.ts +9 -0
- package/dist/types/index.js +1 -0
- package/package.json +2 -2
- /package/dist/assets/{swiper-keyboard.css → swiper-autoplay.css} +0 -0
package/dist/Swiper/autoplay.js
CHANGED
package/dist/Swiper/keyboard.js
CHANGED
package/dist/Swiper/thumbs.js
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -1,22 +1,21 @@
|
|
|
1
|
-
export
|
|
2
|
-
export { default as BaseAccordion, type AccordionItemDecorated, type AccordionItem, } from './UIKit/Accordion/BaseAccordion';
|
|
1
|
+
export { default as BaseAccordion } from './UIKit/Accordion/BaseAccordion';
|
|
3
2
|
export { default as BaseAccordionBtn } from './UIKit/Accordion/BaseAccordionBtn';
|
|
4
3
|
export { default as BaseAccordionContent } from './UIKit/Accordion/BaseAccordionContent';
|
|
5
4
|
export { default as BaseAccordionItem } from './UIKit/Accordion/BaseAccordionItem';
|
|
6
5
|
export { default as SelectItem } from './UIKit/BaseSelect/SelectItem';
|
|
7
6
|
export { default as CheckboxBtn } from './UIKit/Checkbox/CheckboxBtn';
|
|
8
|
-
export { default as CheckboxGroup
|
|
9
|
-
export { default as BaseTabView
|
|
7
|
+
export { default as CheckboxGroup } from './UIKit/Checkbox/CheckboxGroup';
|
|
8
|
+
export { default as BaseTabView } from './UIKit/Tab/BaseTabView';
|
|
10
9
|
export { default as BaseTab } from './UIKit/Tab/BaseTab';
|
|
11
10
|
export { default as RadioButton } from './UIKit/Radio/RadioButton';
|
|
12
|
-
export { default as RadioGroup
|
|
13
|
-
export { default as AccessibleSelect
|
|
11
|
+
export { default as RadioGroup } from './UIKit/Radio/RadioGroup';
|
|
12
|
+
export { default as AccessibleSelect } from './UIKit/AccessibleSelect';
|
|
14
13
|
export { default as BaseAlert } from './UIKit/BaseAlert';
|
|
15
14
|
export { default as BaseAutocomplete } from './UIKit/BaseAutocomplete';
|
|
16
15
|
export { default as BaseBadge } from './UIKit/BaseBadge';
|
|
17
16
|
export { default as BaseButton, type ButtonType } from './UIKit/BaseButton';
|
|
18
17
|
export { default as BaseCard } from './UIKit/BaseCard';
|
|
19
|
-
export { default as BaseComplexToggle
|
|
18
|
+
export { default as BaseComplexToggle } from './UIKit/BaseComplexToggle';
|
|
20
19
|
export { default as BaseDropDown } from './UIKit/BaseDropDown';
|
|
21
20
|
export { default as BaseFloatingLabel } from './UIKit/BaseFloatingLabel';
|
|
22
21
|
export { default as BaseInput } from './UIKit/BaseInput';
|
|
@@ -33,10 +32,9 @@ export { default as ShimmerMultiLine } from './UIKit/ShimmerLoader/ShimmerMultiL
|
|
|
33
32
|
export { default as DoughnutChart } from './chart/DoughnutChart';
|
|
34
33
|
export { default as LineChart } from './chart/LineChart';
|
|
35
34
|
export { default as SimpleSlider } from './UIKit/Slider/SimpleSlider';
|
|
36
|
-
export { default as BaseSnackbar
|
|
35
|
+
export { default as BaseSnackbar } from './UIKit/BaseSnackbar';
|
|
37
36
|
export { default as IntersectionObservable } from './components/IntersectionObserver/IntersectionObservable';
|
|
38
37
|
export { default as IntersectionObserver } from './components/IntersectionObserver/IntersectionObserver';
|
|
39
38
|
export { default as SwiperCarousel } from './components/carousel/SwiperCarousel';
|
|
40
39
|
export { default as SwiperSlide } from './components/carousel/SwiperSlide';
|
|
41
40
|
export { default as BaseBreadcrumb } from './UIKit/BaseBreadcrumb';
|
|
42
|
-
export type { ChartOptions, ChartData } from 'chart.js';
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export * from '../UIKit/types';
|
|
2
|
+
export type { AccordionItemDecorated, AccordionItem, } from '../UIKit/Accordion/BaseAccordion';
|
|
3
|
+
export type { CheckboxGroupProps, CheckboxButtonType, } from '../UIKit/Checkbox/CheckboxGroup';
|
|
4
|
+
export type { BaseTabProps } from '../UIKit/Tab/BaseTabView';
|
|
5
|
+
export type { RadioButtonType } from '../UIKit/Radio/RadioGroup';
|
|
6
|
+
export type { AccessibleSelectOptions } from '../UIKit/AccessibleSelect';
|
|
7
|
+
export type { BaseComplexToggleProps, ToggleType, } from '../UIKit/BaseComplexToggle';
|
|
8
|
+
export type { SnackbarProps } from '../UIKit/BaseSnackbar';
|
|
9
|
+
export type { ChartOptions, ChartData } from 'chart.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wikicasa-dev/components",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.2-alpha.0",
|
|
4
4
|
"description": "Wikicasa frontend components",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
],
|
|
14
14
|
"exports": {
|
|
15
15
|
".": {
|
|
16
|
-
"types": "./dist/index.d.ts",
|
|
16
|
+
"types": "./dist/types/index.d.ts",
|
|
17
17
|
"default": "./dist/index.js"
|
|
18
18
|
},
|
|
19
19
|
"./style": "./dist/assets/tailwind.css",
|
|
File without changes
|