@wikicasa-dev/components 1.9.1 → 1.9.3
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/AccessibleSelect.js +1 -1
- package/dist/BaseShimmerLoader.js +20 -11
- package/dist/BaseTabView.js +1 -1
- package/dist/BaseToggle.js +17 -17
- package/dist/SwiperCarousel.js +1 -1
- package/dist/UIKit/AccessibleSelect.vue.d.ts +5 -5
- package/dist/UIKit/Accordion/BaseAccordion.vue.d.ts +4 -4
- package/dist/UIKit/Accordion/BaseAccordionBtn.vue.d.ts +5 -5
- package/dist/UIKit/Accordion/BaseAccordionContent.vue.d.ts +3 -3
- package/dist/UIKit/Accordion/BaseAccordionItem.vue.d.ts +5 -5
- package/dist/UIKit/BaseAlert.vue.d.ts +4 -4
- package/dist/UIKit/BaseAutocomplete.vue.d.ts +7 -7
- package/dist/UIKit/BaseBadge.vue.d.ts +4 -4
- package/dist/UIKit/BaseButton.vue.d.ts +5 -5
- package/dist/UIKit/BaseCard.vue.d.ts +5 -5
- package/dist/UIKit/BaseComplexToggle.vue.d.ts +4 -4
- package/dist/UIKit/BaseDropDown.vue.d.ts +5 -5
- package/dist/UIKit/BaseFloatingLabel.vue.d.ts +5 -5
- package/dist/UIKit/BaseIcon.vue.d.ts +4 -4
- package/dist/UIKit/BaseInput.vue.d.ts +7 -7
- package/dist/UIKit/BaseModal.vue.d.ts +5 -5
- package/dist/UIKit/BaseNavItem.vue.d.ts +55 -5
- package/dist/UIKit/BasePagination.vue.d.ts +4 -4
- package/dist/UIKit/BasePaper.vue.d.ts +1 -1
- package/dist/UIKit/BaseSelect/SelectItem.vue.d.ts +5 -5
- package/dist/UIKit/BaseSlider.vue.d.ts +182 -5
- package/dist/UIKit/BaseSnackbar.vue.d.ts +5 -5
- package/dist/UIKit/BaseTextarea.vue.d.ts +7 -7
- package/dist/UIKit/BaseToggle.vue.d.ts +4 -4
- package/dist/UIKit/BaseTooltip.vue.d.ts +4 -4
- package/dist/UIKit/BaseUploadFile.vue.d.ts +5 -5
- package/dist/UIKit/Checkbox/CheckboxBtn.vue.d.ts +6 -6
- package/dist/UIKit/Checkbox/CheckboxGroup.vue.d.ts +5 -5
- package/dist/UIKit/Radio/RadioButton.vue.d.ts +5 -5
- package/dist/UIKit/Radio/RadioGroup.vue.d.ts +5 -5
- package/dist/UIKit/ShimmerLoader/BaseShimmerLoader.vue.d.ts +16 -1
- package/dist/UIKit/ShimmerLoader/ShimmerMultiLine.vue.d.ts +4 -4
- package/dist/UIKit/StaticSpinner.vue.d.ts +4 -4
- package/dist/UIKit/Tab/BaseTab.vue.d.ts +3 -3
- package/dist/UIKit/Tab/BaseTabList.vue.d.ts +5 -5
- package/dist/UIKit/Tab/BaseTabPanel.vue.d.ts +4 -4
- package/dist/UIKit/Tab/BaseTabView.vue.d.ts +4 -8
- package/dist/assets/BaseShimmerLoader.css +1 -1
- package/dist/assets/SwiperCarousel.css +1 -1
- package/dist/chart/DoughnutChart.vue.d.ts +3 -3
- package/dist/chart/LineChart.vue.d.ts +3 -3
- package/dist/chart/composables/useChartjsModules.d.ts +1 -1
- package/dist/chunks/{AccessibleSelect.vue_vue_type_script_setup_true_lang.CM86-jVN.js → AccessibleSelect.vue_vue_type_script_setup_true_lang.B6xZ5URR.js} +46 -41
- package/dist/chunks/{BaseTabView.vue_vue_type_script_setup_true_lang.Cs-5T5J3.js → BaseTabView.vue_vue_type_script_setup_true_lang.DSlvTOkB.js} +21 -21
- package/dist/chunks/{SwiperCarousel.vue_vue_type_style_index_0_lang.BiS3BhWj.js → SwiperCarousel.vue_vue_type_style_index_0_lang.PH6iC0qV.js} +8 -8
- package/dist/chunks/index.BbdLcPJo.js +885 -0
- package/dist/components/IntersectionObserver/IntersectionObservable.vue.d.ts +4 -4
- package/dist/components/IntersectionObserver/IntersectionObserver.vue.d.ts +5 -5
- package/dist/components/carousel/SwiperCarousel.vue.d.ts +7 -7
- package/dist/components/carousel/SwiperSlide.vue.d.ts +1 -1
- package/dist/index.js +3 -3
- package/package.json +19 -19
- package/dist/chunks/index.C70510OV.js +0 -878
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
declare function __VLS_template(): {
|
|
2
2
|
default?(_: {}): any;
|
|
3
3
|
};
|
|
4
|
-
declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
4
|
+
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
5
5
|
observer?: IntersectionObserver | null;
|
|
6
6
|
isVisible?: boolean;
|
|
7
7
|
}>, {
|
|
8
8
|
isVisible: boolean;
|
|
9
9
|
observer: null;
|
|
10
|
-
}
|
|
10
|
+
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
11
11
|
observer?: IntersectionObserver | null;
|
|
12
12
|
isVisible?: boolean;
|
|
13
13
|
}>, {
|
|
14
14
|
isVisible: boolean;
|
|
15
15
|
observer: null;
|
|
16
|
-
}
|
|
16
|
+
}>>> & Readonly<{}>, {
|
|
17
17
|
observer: IntersectionObserver | null;
|
|
18
18
|
isVisible: boolean;
|
|
19
|
-
}, {}>;
|
|
19
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
20
20
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
21
21
|
export default _default;
|
|
22
22
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
@@ -17,23 +17,23 @@ declare function __VLS_template(): {
|
|
|
17
17
|
isVisible: true;
|
|
18
18
|
}): any;
|
|
19
19
|
};
|
|
20
|
-
declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IntersectionObserverProps>, {
|
|
20
|
+
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IntersectionObserverProps>, {
|
|
21
21
|
observeOnce: boolean;
|
|
22
22
|
skip: boolean;
|
|
23
23
|
threshold: number;
|
|
24
|
-
}
|
|
24
|
+
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
25
25
|
intersection: () => void;
|
|
26
26
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IntersectionObserverProps>, {
|
|
27
27
|
observeOnce: boolean;
|
|
28
28
|
skip: boolean;
|
|
29
29
|
threshold: number;
|
|
30
|
-
}>>> & {
|
|
30
|
+
}>>> & Readonly<{
|
|
31
31
|
onIntersection?: (() => any) | undefined;
|
|
32
|
-
}
|
|
32
|
+
}>, {
|
|
33
33
|
threshold: number;
|
|
34
34
|
observeOnce: boolean;
|
|
35
35
|
skip: boolean;
|
|
36
|
-
}, {}>;
|
|
36
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
37
37
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
38
38
|
export default _default;
|
|
39
39
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
@@ -17,13 +17,13 @@ interface SwiperCarouselProps {
|
|
|
17
17
|
declare function __VLS_template(): {
|
|
18
18
|
default?(_: {}): any;
|
|
19
19
|
};
|
|
20
|
-
declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<SwiperCarouselProps>, {
|
|
20
|
+
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<SwiperCarouselProps>, {
|
|
21
21
|
lazyLoadImages: boolean;
|
|
22
22
|
backgroundImage: boolean;
|
|
23
23
|
shiftFirstImage: boolean;
|
|
24
|
-
}
|
|
24
|
+
}>>, {
|
|
25
25
|
moveTo(index: number, speed?: number, runCallbacks?: boolean): void;
|
|
26
|
-
},
|
|
26
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
27
27
|
moved: (args_0: {
|
|
28
28
|
activeIndex: number;
|
|
29
29
|
}) => void;
|
|
@@ -33,17 +33,17 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<
|
|
|
33
33
|
lazyLoadImages: boolean;
|
|
34
34
|
backgroundImage: boolean;
|
|
35
35
|
shiftFirstImage: boolean;
|
|
36
|
-
}>>> & {
|
|
37
|
-
onClick?: (() => any) | undefined;
|
|
36
|
+
}>>> & Readonly<{
|
|
38
37
|
onMoved?: ((args_0: {
|
|
39
38
|
activeIndex: number;
|
|
40
39
|
}) => any) | undefined;
|
|
40
|
+
onClick?: (() => any) | undefined;
|
|
41
41
|
onFirstSlideLoaded?: (() => any) | undefined;
|
|
42
|
-
}
|
|
42
|
+
}>, {
|
|
43
43
|
lazyLoadImages: boolean;
|
|
44
44
|
backgroundImage: boolean;
|
|
45
45
|
shiftFirstImage: boolean;
|
|
46
|
-
}, {}>;
|
|
46
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
47
47
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
48
48
|
export default _default;
|
|
49
49
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
declare function __VLS_template(): {
|
|
2
2
|
default?(_: {}): any;
|
|
3
3
|
};
|
|
4
|
-
declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').
|
|
4
|
+
declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
5
5
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
6
6
|
export default _default;
|
|
7
7
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
package/dist/index.js
CHANGED
|
@@ -6,10 +6,10 @@ import { _ as l } from "./chunks/SelectItem.vue_vue_type_script_setup_true_lang.
|
|
|
6
6
|
import { default as d } from "./CheckboxBtn.js";
|
|
7
7
|
import { _ as u } from "./chunks/CheckboxGroup.vue_vue_type_script_setup_true_lang.Bn9HoCj4.js";
|
|
8
8
|
import { _ } from "./chunks/BaseTab.vue_vue_type_script_setup_true_lang.Cu67jd8K.js";
|
|
9
|
-
import { _ as S } from "./chunks/BaseTabView.vue_vue_type_script_setup_true_lang.
|
|
9
|
+
import { _ as S } from "./chunks/BaseTabView.vue_vue_type_script_setup_true_lang.DSlvTOkB.js";
|
|
10
10
|
import { _ as g } from "./chunks/RadioButton.vue_vue_type_script_setup_true_lang.DR6a7QAi.js";
|
|
11
11
|
import { _ as h } from "./chunks/RadioGroup.vue_vue_type_script_setup_true_lang.BYlMCUWP.js";
|
|
12
|
-
import { _ as I } from "./chunks/AccessibleSelect.vue_vue_type_script_setup_true_lang.
|
|
12
|
+
import { _ as I } from "./chunks/AccessibleSelect.vue_vue_type_script_setup_true_lang.B6xZ5URR.js";
|
|
13
13
|
import { _ as w } from "./chunks/BaseAlert.vue_vue_type_style_index_0_lang.BtqP_iYL.js";
|
|
14
14
|
import { _ as k } from "./chunks/BaseAutocomplete.vue_vue_type_script_setup_true_lang.CMkn7bj5.js";
|
|
15
15
|
import { _ as D } from "./chunks/BaseBadge.vue_vue_type_style_index_0_lang.BOA1gBKu.js";
|
|
@@ -37,7 +37,7 @@ import { _ as Se } from "./chunks/DoughnutChart.vue_vue_type_script_setup_true_l
|
|
|
37
37
|
import { _ as ge } from "./chunks/LineChart.vue_vue_type_script_setup_true_lang.CNkvmtfq.js";
|
|
38
38
|
import { _ as he } from "./chunks/IntersectionObservable.vue_vue_type_script_setup_true_lang.BBMxY-re.js";
|
|
39
39
|
import { _ as Ie } from "./chunks/IntersectionObserver.vue_vue_type_script_setup_true_lang.CQHjzQc3.js";
|
|
40
|
-
import { _ as we } from "./chunks/SwiperCarousel.vue_vue_type_style_index_0_lang.
|
|
40
|
+
import { _ as we } from "./chunks/SwiperCarousel.vue_vue_type_style_index_0_lang.PH6iC0qV.js";
|
|
41
41
|
import { default as ke } from "./SwiperSlide.js";
|
|
42
42
|
import { useValidator as De } from "./useValidator.js";
|
|
43
43
|
import './assets/index.css';export {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wikicasa-dev/components",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.3",
|
|
4
4
|
"description": "Wikicasa frontend components",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -29,42 +29,42 @@
|
|
|
29
29
|
},
|
|
30
30
|
"homepage": "https://bitbucket.org/wikicasa/wikicasa-fe#readme",
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"chart.js": "^4.4.
|
|
32
|
+
"chart.js": "^4.4.5",
|
|
33
33
|
"chartjs-adapter-date-fns": "^3.0.0",
|
|
34
34
|
"date-fns": "^3.6.0",
|
|
35
|
-
"swiper": "^11.1.
|
|
36
|
-
"vue": "^3.
|
|
35
|
+
"swiper": "^11.1.14",
|
|
36
|
+
"vue": "^3.5.12",
|
|
37
37
|
"vue-chartjs": "^5.3.1",
|
|
38
|
-
"vue-router": "^4.4.
|
|
38
|
+
"vue-router": "^4.4.5"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@babel/eslint-parser": "^7.
|
|
41
|
+
"@babel/eslint-parser": "^7.25.8",
|
|
42
42
|
"@histoire/plugin-vue": "^0.17.17",
|
|
43
|
-
"@types/node": "^20.
|
|
44
|
-
"@vitejs/plugin-vue": "^5.1.
|
|
43
|
+
"@types/node": "^20.16.11",
|
|
44
|
+
"@vitejs/plugin-vue": "^5.1.4",
|
|
45
45
|
"@wikicasa-dev/svg-icons": "^0.0.36",
|
|
46
46
|
"@wikicasa-dev/tailwind-plugins": "^0.0.2",
|
|
47
|
-
"@wikicasa-dev/types": "^1.
|
|
47
|
+
"@wikicasa-dev/types": "^1.5.52",
|
|
48
48
|
"@wikicasa-dev/utilities": "^0.2.1",
|
|
49
49
|
"@wikicasa-dev/vue-composables": "^0.0.4",
|
|
50
|
-
"autoprefixer": "^10.4.
|
|
51
|
-
"chromatic": "^11.
|
|
52
|
-
"eslint": "^8.57.
|
|
50
|
+
"autoprefixer": "^10.4.20",
|
|
51
|
+
"chromatic": "^11.12.5",
|
|
52
|
+
"eslint": "^8.57.1",
|
|
53
53
|
"eslint-config-prettier": "^9.1.0",
|
|
54
54
|
"eslint-plugin-prettier": "^5.2.1",
|
|
55
55
|
"eslint-plugin-prettier-vue": "^5.0.0",
|
|
56
|
-
"eslint-plugin-vue": "^9.
|
|
56
|
+
"eslint-plugin-vue": "^9.29.0",
|
|
57
57
|
"glob": "^11.0.0",
|
|
58
58
|
"histoire": "^0.17.17",
|
|
59
|
-
"postcss": "^8.4.
|
|
59
|
+
"postcss": "^8.4.47",
|
|
60
60
|
"prettier": "^3.3.3",
|
|
61
|
-
"prettier-plugin-tailwindcss": "^0.6.
|
|
62
|
-
"tailwindcss": "^3.4.
|
|
63
|
-
"typescript": "^5.
|
|
64
|
-
"vite": "^5.
|
|
61
|
+
"prettier-plugin-tailwindcss": "^0.6.8",
|
|
62
|
+
"tailwindcss": "^3.4.14",
|
|
63
|
+
"typescript": "^5.6.3",
|
|
64
|
+
"vite": "^5.4.9",
|
|
65
65
|
"vite-plugin-dts": "^3.9.1",
|
|
66
66
|
"vite-plugin-lib-inject-css": "^2.1.1",
|
|
67
|
-
"vue-tsc": "^2.
|
|
67
|
+
"vue-tsc": "^2.1.6"
|
|
68
68
|
},
|
|
69
69
|
"readme": "ERROR: No README data found!",
|
|
70
70
|
"scripts": {
|