@rebilly/revel 6.10.0 → 6.10.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/CHANGELOG.md +7 -0
- package/dist/components/r-grid/r-grid.vue.d.ts +22 -22
- package/dist/revel.mjs +1 -1
- package/dist/revel.umd.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [6.10.1](https://github.com/Rebilly/rebilly/compare/revel-v6.10.0...revel-v6.10.1) (2024-01-15)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **revel:** Fix `RGrid` props, types and component call ([#2903](https://github.com/Rebilly/rebilly/issues/2903)) ([e067ea8](https://github.com/Rebilly/rebilly/commit/e067ea8848aa7f708e6942e7f22d55b2bea1845c))
|
|
7
|
+
|
|
1
8
|
## [6.10.0](https://github.com/Rebilly/rebilly/compare/revel-v6.9.0...revel-v6.10.0) (2024-01-15)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -4,11 +4,11 @@ interface Column extends GridColumn {
|
|
|
4
4
|
[key: string]: unknown;
|
|
5
5
|
name: string;
|
|
6
6
|
renderOptions?: Record<string, unknown>;
|
|
7
|
-
class
|
|
8
|
-
style
|
|
9
|
-
highlight
|
|
7
|
+
class?: Record<string, boolean>;
|
|
8
|
+
style?: Record<string, unknown>;
|
|
9
|
+
highlight?: boolean;
|
|
10
10
|
header?: (column: unknown) => string;
|
|
11
|
-
label
|
|
11
|
+
label?: string;
|
|
12
12
|
}
|
|
13
13
|
declare const _default: import("vue").DefineComponent<{
|
|
14
14
|
/**
|
|
@@ -38,7 +38,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
38
38
|
* Returns some data to be rendered by the default scoped slot
|
|
39
39
|
*/
|
|
40
40
|
provider: {
|
|
41
|
-
type: (
|
|
41
|
+
type: PropType<() => object[] | object[] | Promise<object[]>>;
|
|
42
42
|
required: true;
|
|
43
43
|
};
|
|
44
44
|
/**
|
|
@@ -68,10 +68,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
68
68
|
};
|
|
69
69
|
column: {
|
|
70
70
|
type: PropType<GridColumn>;
|
|
71
|
-
required: true;
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
71
|
+
required: true;
|
|
72
|
+
}; /**
|
|
73
|
+
* Specify if the grid has frozen (fixed) left column
|
|
74
|
+
*/
|
|
75
75
|
}, unknown, unknown, {
|
|
76
76
|
badgeType(): unknown;
|
|
77
77
|
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -85,10 +85,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
85
85
|
};
|
|
86
86
|
column: {
|
|
87
87
|
type: PropType<GridColumn>;
|
|
88
|
-
required: true;
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
88
|
+
required: true;
|
|
89
|
+
}; /**
|
|
90
|
+
* Specify if the grid has frozen (fixed) left column
|
|
91
|
+
*/
|
|
92
92
|
}>>, {}> | import("vue").DefineComponent<{
|
|
93
93
|
column: {
|
|
94
94
|
type: PropType<import("./columnTypes/types").ButtonColumn>;
|
|
@@ -100,10 +100,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
100
100
|
};
|
|
101
101
|
value: {
|
|
102
102
|
type: StringConstructor;
|
|
103
|
-
default: null;
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
103
|
+
default: null;
|
|
104
|
+
}; /**
|
|
105
|
+
* Specify the columns
|
|
106
|
+
*/
|
|
107
107
|
}, unknown, unknown, {
|
|
108
108
|
buttons(): import("./columnTypes/types").ButtonOptions[];
|
|
109
109
|
}, {
|
|
@@ -119,10 +119,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
119
119
|
};
|
|
120
120
|
value: {
|
|
121
121
|
type: StringConstructor;
|
|
122
|
-
default: null;
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
122
|
+
default: null;
|
|
123
|
+
}; /**
|
|
124
|
+
* Specify the columns
|
|
125
|
+
*/
|
|
126
126
|
}>>, {
|
|
127
127
|
value: string;
|
|
128
128
|
}> | import("vue").DefineComponent<{
|
|
@@ -213,7 +213,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
213
213
|
* Returns some data to be rendered by the default scoped slot
|
|
214
214
|
*/
|
|
215
215
|
provider: {
|
|
216
|
-
type: (
|
|
216
|
+
type: PropType<() => object[] | object[] | Promise<object[]>>;
|
|
217
217
|
required: true;
|
|
218
218
|
};
|
|
219
219
|
/**
|
package/dist/revel.mjs
CHANGED
|
@@ -11108,7 +11108,7 @@ const nL = /* @__PURE__ */ Z(tL, [["render", AL]]), aL = {
|
|
|
11108
11108
|
}
|
|
11109
11109
|
}, rL = U({
|
|
11110
11110
|
components: {
|
|
11111
|
-
|
|
11111
|
+
RRepeater: C3
|
|
11112
11112
|
},
|
|
11113
11113
|
compatConfig: {
|
|
11114
11114
|
MODE: 3
|