@rebilly/revel 8.8.12 → 8.8.14
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/CHANGELOG.md +1 -6
- package/README.md +2 -2
- package/dist/components/r-alert/r-alert.vue.d.ts +17 -15
- package/dist/components/r-avatar/r-avatar.vue.d.ts +11 -8
- package/dist/components/r-badge/r-badge.vue.d.ts +15 -12
- package/dist/components/r-button/r-button.vue.d.ts +25 -19
- package/dist/components/r-button-group/r-button-group.vue.d.ts +15 -12
- package/dist/components/r-checkbox/r-checkbox.vue.d.ts +15 -12
- package/dist/components/r-date-input/r-calendar.vue.d.ts +5 -5
- package/dist/components/r-date-input/r-date-input.vue.d.ts +7 -7
- package/dist/components/r-date-input/r-date-range-button-group.vue.d.ts +5 -5
- package/dist/components/r-date-input/r-range-calendar.vue.d.ts +5 -5
- package/dist/components/r-field-group/r-field-group.vue.d.ts +7 -4
- package/dist/components/r-file-upload/r-file-upload.vue.d.ts +18 -15
- package/dist/components/r-flex/r-flex-item.vue.d.ts +17 -14
- package/dist/components/r-flex/r-flex.vue.d.ts +15 -12
- package/dist/components/r-grid/r-grid-cell.vue.d.ts +16 -13
- package/dist/components/r-grid/r-grid.vue.d.ts +15 -12
- package/dist/components/r-icon/r-icon.vue.d.ts +5 -5
- package/dist/components/r-img/r-img.vue.d.ts +15 -12
- package/dist/components/r-input/r-input.vue.d.ts +13 -13
- package/dist/components/r-loader/r-loader.vue.d.ts +4 -4
- package/dist/components/r-modal/r-modal.vue.d.ts +34 -26
- package/dist/components/r-month-picker/r-month-picker.vue.d.ts +4 -4
- package/dist/components/r-pagination/r-pagination.vue.d.ts +17 -14
- package/dist/components/r-pagination-control/r-pagination-control.vue.d.ts +19 -16
- package/dist/components/r-popper/r-popper.vue.d.ts +33 -29
- package/dist/components/r-radio/r-radio.vue.d.ts +15 -12
- package/dist/components/r-repeater/r-repeater.vue.d.ts +26 -19
- package/dist/components/r-select/r-select.vue.d.ts +6 -6
- package/dist/components/r-tabs/r-tab.vue.d.ts +3 -2
- package/dist/components/r-tabs/r-tabs.vue.d.ts +1377 -5221
- package/dist/components/r-tile/r-tile.vue.d.ts +17 -9
- package/dist/components/r-toast/r-toast.vue.d.ts +4 -4
- package/dist/components/r-toggle/r-toggle.vue.d.ts +4 -4
- package/dist/index.d.ts +1 -1
- package/package.json +12 -6
|
@@ -1,13 +1,21 @@
|
|
|
1
|
-
declare
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
1
|
+
declare var __VLS_1: {}, __VLS_3: {}, __VLS_5: {}, __VLS_7: {}, __VLS_9: {}, __VLS_11: {};
|
|
2
|
+
type __VLS_Slots = {} & {
|
|
3
|
+
title?: (props: typeof __VLS_1) => any;
|
|
4
|
+
} & {
|
|
5
|
+
titleActions?: (props: typeof __VLS_3) => any;
|
|
6
|
+
} & {
|
|
7
|
+
contents?: (props: typeof __VLS_5) => any;
|
|
8
|
+
} & {
|
|
9
|
+
primary?: (props: typeof __VLS_7) => any;
|
|
10
|
+
} & {
|
|
11
|
+
secondary?: (props: typeof __VLS_9) => any;
|
|
12
|
+
} & {
|
|
13
|
+
actions?: (props: typeof __VLS_11) => any;
|
|
14
|
+
};
|
|
15
|
+
declare const __VLS_component: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
16
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
9
17
|
export default _default;
|
|
10
|
-
type
|
|
18
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
11
19
|
new (): {
|
|
12
20
|
$slots: S;
|
|
13
21
|
};
|
|
@@ -67,13 +67,10 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
67
67
|
}>;
|
|
68
68
|
export default _default;
|
|
69
69
|
type __VLS_WithDefaults<P, D> = {
|
|
70
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ?
|
|
70
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
|
|
71
71
|
default: D[K];
|
|
72
72
|
}> : P[K];
|
|
73
73
|
};
|
|
74
|
-
type __VLS_Prettify<T> = {
|
|
75
|
-
[K in keyof T]: T[K];
|
|
76
|
-
} & {};
|
|
77
74
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
78
75
|
type __VLS_TypePropsToOption<T> = {
|
|
79
76
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
@@ -83,3 +80,6 @@ type __VLS_TypePropsToOption<T> = {
|
|
|
83
80
|
required: true;
|
|
84
81
|
};
|
|
85
82
|
};
|
|
83
|
+
type __VLS_PrettifyLocal<T> = {
|
|
84
|
+
[K in keyof T]: T[K];
|
|
85
|
+
} & {};
|
|
@@ -38,13 +38,10 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
38
38
|
}>;
|
|
39
39
|
export default _default;
|
|
40
40
|
type __VLS_WithDefaults<P, D> = {
|
|
41
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ?
|
|
41
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
|
|
42
42
|
default: D[K];
|
|
43
43
|
}> : P[K];
|
|
44
44
|
};
|
|
45
|
-
type __VLS_Prettify<T> = {
|
|
46
|
-
[K in keyof T]: T[K];
|
|
47
|
-
} & {};
|
|
48
45
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
49
46
|
type __VLS_TypePropsToOption<T> = {
|
|
50
47
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
@@ -54,3 +51,6 @@ type __VLS_TypePropsToOption<T> = {
|
|
|
54
51
|
required: true;
|
|
55
52
|
};
|
|
56
53
|
};
|
|
54
|
+
type __VLS_PrettifyLocal<T> = {
|
|
55
|
+
[K in keyof T]: T[K];
|
|
56
|
+
} & {};
|
package/dist/index.d.ts
CHANGED
|
@@ -17,7 +17,7 @@ export declare const install: (app: App, { registerDirectives, appendIconSheet }
|
|
|
17
17
|
appendIconSheet?: boolean | undefined;
|
|
18
18
|
}) => void;
|
|
19
19
|
declare const _default: {
|
|
20
|
-
install: (app: App
|
|
20
|
+
install: (app: App, { registerDirectives, appendIconSheet }?: {
|
|
21
21
|
registerDirectives?: boolean | undefined;
|
|
22
22
|
appendIconSheet?: boolean | undefined;
|
|
23
23
|
}) => void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rebilly/revel",
|
|
3
|
-
"version": "8.8.
|
|
3
|
+
"version": "8.8.14",
|
|
4
4
|
"files": [
|
|
5
5
|
"dist",
|
|
6
6
|
"CHANGELOG.md"
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
"access": "public"
|
|
24
24
|
},
|
|
25
25
|
"scripts": {
|
|
26
|
-
"dev": "
|
|
27
|
-
"build": "concurrently
|
|
26
|
+
"dev": "pnpm docs:dev",
|
|
27
|
+
"build": "concurrently npm:type:check npm:build:only npm:docs:build npm:build:types",
|
|
28
28
|
"build:only": "vite build",
|
|
29
29
|
"build:watch": "vite build --watch",
|
|
30
30
|
"build:types": "vue-tsc -p tsconfig.build.json",
|
|
@@ -40,18 +40,22 @@
|
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@popperjs/core": "2.11.8",
|
|
42
42
|
"@rebilly/eslint-config": "*",
|
|
43
|
+
"@testing-library/jest-dom": "^6.6.3",
|
|
43
44
|
"@testing-library/user-event": "^14.6.1",
|
|
44
45
|
"@testing-library/vue": "^7.0.0",
|
|
45
46
|
"@tsconfig/node18": "^18.2.4",
|
|
46
47
|
"@types/jsdom": "^21.1.1",
|
|
48
|
+
"@types/lodash": "^4.17.16",
|
|
47
49
|
"@types/node": "^22.15.3",
|
|
48
50
|
"@vitejs/plugin-vue": "^5.2.3",
|
|
49
51
|
"@vue/babel-preset-app": "^5.0.8",
|
|
50
52
|
"@vue/compiler-sfc": "^3.3.4",
|
|
53
|
+
"@vue/shared": "3.2.47",
|
|
51
54
|
"@vue/tsconfig": "^0.7.0",
|
|
55
|
+
"@vuelidate/core": "^2.0.3",
|
|
56
|
+
"@vuepress/client": "2.0.0-beta.61",
|
|
52
57
|
"@vuepress/plugin-register-components": "2.0.0-beta.61",
|
|
53
58
|
"@vuepress/plugin-search": "2.0.0-beta.61",
|
|
54
|
-
"@vuelidate/core": "^2.0.3",
|
|
55
59
|
"autoprefixer": "^10.4.20",
|
|
56
60
|
"babel-core": "^7.0.0-bridge.0",
|
|
57
61
|
"concurrently": "^9.1.1",
|
|
@@ -59,6 +63,7 @@
|
|
|
59
63
|
"eslint-import-resolver-alias": "^1.1.2",
|
|
60
64
|
"eslint-plugin-import": "^2.31.0",
|
|
61
65
|
"jsdom": "^21.1.1",
|
|
66
|
+
"lodash": "^4.17.21",
|
|
62
67
|
"moment": "^2.30.1",
|
|
63
68
|
"moment-timezone": "^0.5.48",
|
|
64
69
|
"nanoid": "^5.1.5",
|
|
@@ -70,9 +75,10 @@
|
|
|
70
75
|
"vite": "^5.4.19",
|
|
71
76
|
"vitest": "^1.6.1",
|
|
72
77
|
"vue": "3.2.47",
|
|
78
|
+
"vue-demi": "^0.14.10",
|
|
73
79
|
"vue-docgen-api": "^4.79.2",
|
|
74
80
|
"vue-router": "^4.4.0",
|
|
75
|
-
"
|
|
76
|
-
"
|
|
81
|
+
"vue-tsc": "^2.2.10",
|
|
82
|
+
"vuepress": "2.0.0-beta.61"
|
|
77
83
|
}
|
|
78
84
|
}
|