@genesislcap/rapid-grid-pro 14.427.0 → 14.427.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/custom-elements.json +992 -992
- package/dist/dts/react.d.ts +45 -45
- package/dist/react.cjs +30 -30
- package/dist/react.mjs +25 -25
- package/package.json +11 -11
package/dist/dts/react.d.ts
CHANGED
|
@@ -60,6 +60,51 @@ export declare const RapidGridPro: React.ForwardRefExoticComponent<
|
|
|
60
60
|
>;
|
|
61
61
|
export type RapidGridProRef = RapidGridProWC;
|
|
62
62
|
|
|
63
|
+
export declare const RapidDateEditor: React.ForwardRefExoticComponent<
|
|
64
|
+
React.PropsWithChildren<
|
|
65
|
+
Omit<PublicOf<RapidDateEditorWC>, 'children' | 'style'> &
|
|
66
|
+
HTMLWCProps & {
|
|
67
|
+
}
|
|
68
|
+
> & React.RefAttributes<RapidDateEditorWC>
|
|
69
|
+
>;
|
|
70
|
+
export type RapidDateEditorRef = RapidDateEditorWC;
|
|
71
|
+
|
|
72
|
+
export declare const RapidMultiselectEditor: React.ForwardRefExoticComponent<
|
|
73
|
+
React.PropsWithChildren<
|
|
74
|
+
Omit<PublicOf<RapidMultiselectEditorWC>, 'children' | 'style'> &
|
|
75
|
+
HTMLWCProps & {
|
|
76
|
+
}
|
|
77
|
+
> & React.RefAttributes<RapidMultiselectEditorWC>
|
|
78
|
+
>;
|
|
79
|
+
export type RapidMultiselectEditorRef = RapidMultiselectEditorWC;
|
|
80
|
+
|
|
81
|
+
export declare const RapidNumberEditor: React.ForwardRefExoticComponent<
|
|
82
|
+
React.PropsWithChildren<
|
|
83
|
+
Omit<PublicOf<RapidNumberEditorWC>, 'children' | 'style'> &
|
|
84
|
+
HTMLWCProps & {
|
|
85
|
+
}
|
|
86
|
+
> & React.RefAttributes<RapidNumberEditorWC>
|
|
87
|
+
>;
|
|
88
|
+
export type RapidNumberEditorRef = RapidNumberEditorWC;
|
|
89
|
+
|
|
90
|
+
export declare const RapidSelectEditor: React.ForwardRefExoticComponent<
|
|
91
|
+
React.PropsWithChildren<
|
|
92
|
+
Omit<PublicOf<RapidSelectEditorWC>, 'children' | 'style'> &
|
|
93
|
+
HTMLWCProps & {
|
|
94
|
+
}
|
|
95
|
+
> & React.RefAttributes<RapidSelectEditorWC>
|
|
96
|
+
>;
|
|
97
|
+
export type RapidSelectEditorRef = RapidSelectEditorWC;
|
|
98
|
+
|
|
99
|
+
export declare const RapidStringEditor: React.ForwardRefExoticComponent<
|
|
100
|
+
React.PropsWithChildren<
|
|
101
|
+
Omit<PublicOf<RapidStringEditorWC>, 'children' | 'style'> &
|
|
102
|
+
HTMLWCProps & {
|
|
103
|
+
}
|
|
104
|
+
> & React.RefAttributes<RapidStringEditorWC>
|
|
105
|
+
>;
|
|
106
|
+
export type RapidStringEditorRef = RapidStringEditorWC;
|
|
107
|
+
|
|
63
108
|
export declare const RapidAgActionRenderer: React.ForwardRefExoticComponent<
|
|
64
109
|
React.PropsWithChildren<
|
|
65
110
|
Omit<PublicOf<RapidAgActionRendererWC>, 'children' | 'style'> &
|
|
@@ -132,49 +177,4 @@ export declare const RapidAgTextRenderer: React.ForwardRefExoticComponent<
|
|
|
132
177
|
>;
|
|
133
178
|
export type RapidAgTextRendererRef = RapidAgTextRendererWC;
|
|
134
179
|
|
|
135
|
-
export declare const RapidDateEditor: React.ForwardRefExoticComponent<
|
|
136
|
-
React.PropsWithChildren<
|
|
137
|
-
Omit<PublicOf<RapidDateEditorWC>, 'children' | 'style'> &
|
|
138
|
-
HTMLWCProps & {
|
|
139
|
-
}
|
|
140
|
-
> & React.RefAttributes<RapidDateEditorWC>
|
|
141
|
-
>;
|
|
142
|
-
export type RapidDateEditorRef = RapidDateEditorWC;
|
|
143
|
-
|
|
144
|
-
export declare const RapidMultiselectEditor: React.ForwardRefExoticComponent<
|
|
145
|
-
React.PropsWithChildren<
|
|
146
|
-
Omit<PublicOf<RapidMultiselectEditorWC>, 'children' | 'style'> &
|
|
147
|
-
HTMLWCProps & {
|
|
148
|
-
}
|
|
149
|
-
> & React.RefAttributes<RapidMultiselectEditorWC>
|
|
150
|
-
>;
|
|
151
|
-
export type RapidMultiselectEditorRef = RapidMultiselectEditorWC;
|
|
152
|
-
|
|
153
|
-
export declare const RapidNumberEditor: React.ForwardRefExoticComponent<
|
|
154
|
-
React.PropsWithChildren<
|
|
155
|
-
Omit<PublicOf<RapidNumberEditorWC>, 'children' | 'style'> &
|
|
156
|
-
HTMLWCProps & {
|
|
157
|
-
}
|
|
158
|
-
> & React.RefAttributes<RapidNumberEditorWC>
|
|
159
|
-
>;
|
|
160
|
-
export type RapidNumberEditorRef = RapidNumberEditorWC;
|
|
161
|
-
|
|
162
|
-
export declare const RapidSelectEditor: React.ForwardRefExoticComponent<
|
|
163
|
-
React.PropsWithChildren<
|
|
164
|
-
Omit<PublicOf<RapidSelectEditorWC>, 'children' | 'style'> &
|
|
165
|
-
HTMLWCProps & {
|
|
166
|
-
}
|
|
167
|
-
> & React.RefAttributes<RapidSelectEditorWC>
|
|
168
|
-
>;
|
|
169
|
-
export type RapidSelectEditorRef = RapidSelectEditorWC;
|
|
170
|
-
|
|
171
|
-
export declare const RapidStringEditor: React.ForwardRefExoticComponent<
|
|
172
|
-
React.PropsWithChildren<
|
|
173
|
-
Omit<PublicOf<RapidStringEditorWC>, 'children' | 'style'> &
|
|
174
|
-
HTMLWCProps & {
|
|
175
|
-
}
|
|
176
|
-
> & React.RefAttributes<RapidStringEditorWC>
|
|
177
|
-
>;
|
|
178
|
-
export type RapidStringEditorRef = RapidStringEditorWC;
|
|
179
|
-
|
|
180
180
|
export {};
|
package/dist/react.cjs
CHANGED
|
@@ -57,6 +57,31 @@ const RapidGridPro = React.forwardRef(function RapidGridPro(props, ref) {
|
|
|
57
57
|
return React.createElement(customElements.getName(RapidGridProWC) ?? '%%prefix%%-grid-pro', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
58
58
|
});
|
|
59
59
|
|
|
60
|
+
const RapidDateEditor = React.forwardRef(function RapidDateEditor(props, ref) {
|
|
61
|
+
const { children, ...rest } = props;
|
|
62
|
+
return React.createElement(customElements.getName(RapidDateEditorWC) ?? '%%prefix%%-date-editor', { ...rest, ref }, children);
|
|
63
|
+
});
|
|
64
|
+
|
|
65
|
+
const RapidMultiselectEditor = React.forwardRef(function RapidMultiselectEditor(props, ref) {
|
|
66
|
+
const { children, ...rest } = props;
|
|
67
|
+
return React.createElement(customElements.getName(RapidMultiselectEditorWC) ?? '%%prefix%%-multiselect-editor', { ...rest, ref }, children);
|
|
68
|
+
});
|
|
69
|
+
|
|
70
|
+
const RapidNumberEditor = React.forwardRef(function RapidNumberEditor(props, ref) {
|
|
71
|
+
const { children, ...rest } = props;
|
|
72
|
+
return React.createElement(customElements.getName(RapidNumberEditorWC) ?? '%%prefix%%-number-editor', { ...rest, ref }, children);
|
|
73
|
+
});
|
|
74
|
+
|
|
75
|
+
const RapidSelectEditor = React.forwardRef(function RapidSelectEditor(props, ref) {
|
|
76
|
+
const { children, ...rest } = props;
|
|
77
|
+
return React.createElement(customElements.getName(RapidSelectEditorWC) ?? '%%prefix%%-select-editor', { ...rest, ref }, children);
|
|
78
|
+
});
|
|
79
|
+
|
|
80
|
+
const RapidStringEditor = React.forwardRef(function RapidStringEditor(props, ref) {
|
|
81
|
+
const { children, ...rest } = props;
|
|
82
|
+
return React.createElement(customElements.getName(RapidStringEditorWC) ?? '%%prefix%%-string-editor', { ...rest, ref }, children);
|
|
83
|
+
});
|
|
84
|
+
|
|
60
85
|
const RapidAgActionRenderer = React.forwardRef(function RapidAgActionRenderer(props, ref) {
|
|
61
86
|
const { children, ...rest } = props;
|
|
62
87
|
return React.createElement(customElements.getName(RapidAgActionRendererWC) ?? '%%prefix%%-grid-pro-action-renderer', { ...rest, ref }, children);
|
|
@@ -97,33 +122,13 @@ const RapidAgTextRenderer = React.forwardRef(function RapidAgTextRenderer(props,
|
|
|
97
122
|
return React.createElement(customElements.getName(RapidAgTextRendererWC) ?? '%%prefix%%-grid-text-renderer', { ...rest, ref }, children);
|
|
98
123
|
});
|
|
99
124
|
|
|
100
|
-
const RapidDateEditor = React.forwardRef(function RapidDateEditor(props, ref) {
|
|
101
|
-
const { children, ...rest } = props;
|
|
102
|
-
return React.createElement(customElements.getName(RapidDateEditorWC) ?? '%%prefix%%-date-editor', { ...rest, ref }, children);
|
|
103
|
-
});
|
|
104
|
-
|
|
105
|
-
const RapidMultiselectEditor = React.forwardRef(function RapidMultiselectEditor(props, ref) {
|
|
106
|
-
const { children, ...rest } = props;
|
|
107
|
-
return React.createElement(customElements.getName(RapidMultiselectEditorWC) ?? '%%prefix%%-multiselect-editor', { ...rest, ref }, children);
|
|
108
|
-
});
|
|
109
|
-
|
|
110
|
-
const RapidNumberEditor = React.forwardRef(function RapidNumberEditor(props, ref) {
|
|
111
|
-
const { children, ...rest } = props;
|
|
112
|
-
return React.createElement(customElements.getName(RapidNumberEditorWC) ?? '%%prefix%%-number-editor', { ...rest, ref }, children);
|
|
113
|
-
});
|
|
114
|
-
|
|
115
|
-
const RapidSelectEditor = React.forwardRef(function RapidSelectEditor(props, ref) {
|
|
116
|
-
const { children, ...rest } = props;
|
|
117
|
-
return React.createElement(customElements.getName(RapidSelectEditorWC) ?? '%%prefix%%-select-editor', { ...rest, ref }, children);
|
|
118
|
-
});
|
|
119
|
-
|
|
120
|
-
const RapidStringEditor = React.forwardRef(function RapidStringEditor(props, ref) {
|
|
121
|
-
const { children, ...rest } = props;
|
|
122
|
-
return React.createElement(customElements.getName(RapidStringEditorWC) ?? '%%prefix%%-string-editor', { ...rest, ref }, children);
|
|
123
|
-
});
|
|
124
|
-
|
|
125
125
|
module.exports = {
|
|
126
126
|
RapidGridPro,
|
|
127
|
+
RapidDateEditor,
|
|
128
|
+
RapidMultiselectEditor,
|
|
129
|
+
RapidNumberEditor,
|
|
130
|
+
RapidSelectEditor,
|
|
131
|
+
RapidStringEditor,
|
|
127
132
|
RapidAgActionRenderer,
|
|
128
133
|
RapidAgActionsMenuRenderer,
|
|
129
134
|
RapidBooleanRenderer,
|
|
@@ -132,9 +137,4 @@ module.exports = {
|
|
|
132
137
|
RapidAgSelectRenderer,
|
|
133
138
|
RapidStatusPillRenderer,
|
|
134
139
|
RapidAgTextRenderer,
|
|
135
|
-
RapidDateEditor,
|
|
136
|
-
RapidMultiselectEditor,
|
|
137
|
-
RapidNumberEditor,
|
|
138
|
-
RapidSelectEditor,
|
|
139
|
-
RapidStringEditor,
|
|
140
140
|
};
|
package/dist/react.mjs
CHANGED
|
@@ -55,6 +55,31 @@ export const RapidGridPro = React.forwardRef(function RapidGridPro(props, ref) {
|
|
|
55
55
|
return React.createElement(customElements.getName(RapidGridProWC) ?? '%%prefix%%-grid-pro', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
56
56
|
});
|
|
57
57
|
|
|
58
|
+
export const RapidDateEditor = React.forwardRef(function RapidDateEditor(props, ref) {
|
|
59
|
+
const { children, ...rest } = props;
|
|
60
|
+
return React.createElement(customElements.getName(RapidDateEditorWC) ?? '%%prefix%%-date-editor', { ...rest, ref }, children);
|
|
61
|
+
});
|
|
62
|
+
|
|
63
|
+
export const RapidMultiselectEditor = React.forwardRef(function RapidMultiselectEditor(props, ref) {
|
|
64
|
+
const { children, ...rest } = props;
|
|
65
|
+
return React.createElement(customElements.getName(RapidMultiselectEditorWC) ?? '%%prefix%%-multiselect-editor', { ...rest, ref }, children);
|
|
66
|
+
});
|
|
67
|
+
|
|
68
|
+
export const RapidNumberEditor = React.forwardRef(function RapidNumberEditor(props, ref) {
|
|
69
|
+
const { children, ...rest } = props;
|
|
70
|
+
return React.createElement(customElements.getName(RapidNumberEditorWC) ?? '%%prefix%%-number-editor', { ...rest, ref }, children);
|
|
71
|
+
});
|
|
72
|
+
|
|
73
|
+
export const RapidSelectEditor = React.forwardRef(function RapidSelectEditor(props, ref) {
|
|
74
|
+
const { children, ...rest } = props;
|
|
75
|
+
return React.createElement(customElements.getName(RapidSelectEditorWC) ?? '%%prefix%%-select-editor', { ...rest, ref }, children);
|
|
76
|
+
});
|
|
77
|
+
|
|
78
|
+
export const RapidStringEditor = React.forwardRef(function RapidStringEditor(props, ref) {
|
|
79
|
+
const { children, ...rest } = props;
|
|
80
|
+
return React.createElement(customElements.getName(RapidStringEditorWC) ?? '%%prefix%%-string-editor', { ...rest, ref }, children);
|
|
81
|
+
});
|
|
82
|
+
|
|
58
83
|
export const RapidAgActionRenderer = React.forwardRef(function RapidAgActionRenderer(props, ref) {
|
|
59
84
|
const { children, ...rest } = props;
|
|
60
85
|
return React.createElement(customElements.getName(RapidAgActionRendererWC) ?? '%%prefix%%-grid-pro-action-renderer', { ...rest, ref }, children);
|
|
@@ -94,28 +119,3 @@ export const RapidAgTextRenderer = React.forwardRef(function RapidAgTextRenderer
|
|
|
94
119
|
const { children, ...rest } = props;
|
|
95
120
|
return React.createElement(customElements.getName(RapidAgTextRendererWC) ?? '%%prefix%%-grid-text-renderer', { ...rest, ref }, children);
|
|
96
121
|
});
|
|
97
|
-
|
|
98
|
-
export const RapidDateEditor = React.forwardRef(function RapidDateEditor(props, ref) {
|
|
99
|
-
const { children, ...rest } = props;
|
|
100
|
-
return React.createElement(customElements.getName(RapidDateEditorWC) ?? '%%prefix%%-date-editor', { ...rest, ref }, children);
|
|
101
|
-
});
|
|
102
|
-
|
|
103
|
-
export const RapidMultiselectEditor = React.forwardRef(function RapidMultiselectEditor(props, ref) {
|
|
104
|
-
const { children, ...rest } = props;
|
|
105
|
-
return React.createElement(customElements.getName(RapidMultiselectEditorWC) ?? '%%prefix%%-multiselect-editor', { ...rest, ref }, children);
|
|
106
|
-
});
|
|
107
|
-
|
|
108
|
-
export const RapidNumberEditor = React.forwardRef(function RapidNumberEditor(props, ref) {
|
|
109
|
-
const { children, ...rest } = props;
|
|
110
|
-
return React.createElement(customElements.getName(RapidNumberEditorWC) ?? '%%prefix%%-number-editor', { ...rest, ref }, children);
|
|
111
|
-
});
|
|
112
|
-
|
|
113
|
-
export const RapidSelectEditor = React.forwardRef(function RapidSelectEditor(props, ref) {
|
|
114
|
-
const { children, ...rest } = props;
|
|
115
|
-
return React.createElement(customElements.getName(RapidSelectEditorWC) ?? '%%prefix%%-select-editor', { ...rest, ref }, children);
|
|
116
|
-
});
|
|
117
|
-
|
|
118
|
-
export const RapidStringEditor = React.forwardRef(function RapidStringEditor(props, ref) {
|
|
119
|
-
const { children, ...rest } = props;
|
|
120
|
-
return React.createElement(customElements.getName(RapidStringEditorWC) ?? '%%prefix%%-string-editor', { ...rest, ref }, children);
|
|
121
|
-
});
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/rapid-grid-pro",
|
|
3
3
|
"description": "Genesis Rapid Grid Pro",
|
|
4
|
-
"version": "14.427.
|
|
4
|
+
"version": "14.427.1",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
|
7
7
|
"main": "dist/esm/index.js",
|
|
@@ -37,17 +37,17 @@
|
|
|
37
37
|
}
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@genesislcap/genx": "14.427.
|
|
41
|
-
"@genesislcap/rollup-builder": "14.427.
|
|
42
|
-
"@genesislcap/ts-builder": "14.427.
|
|
43
|
-
"@genesislcap/uvu-playwright-builder": "14.427.
|
|
44
|
-
"@genesislcap/vite-builder": "14.427.
|
|
45
|
-
"@genesislcap/webpack-builder": "14.427.
|
|
40
|
+
"@genesislcap/genx": "14.427.1",
|
|
41
|
+
"@genesislcap/rollup-builder": "14.427.1",
|
|
42
|
+
"@genesislcap/ts-builder": "14.427.1",
|
|
43
|
+
"@genesislcap/uvu-playwright-builder": "14.427.1",
|
|
44
|
+
"@genesislcap/vite-builder": "14.427.1",
|
|
45
|
+
"@genesislcap/webpack-builder": "14.427.1"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@genesislcap/foundation-ui": "14.427.
|
|
49
|
-
"@genesislcap/grid-pro": "14.427.
|
|
50
|
-
"@genesislcap/rapid-design-system": "14.427.
|
|
48
|
+
"@genesislcap/foundation-ui": "14.427.1",
|
|
49
|
+
"@genesislcap/grid-pro": "14.427.1",
|
|
50
|
+
"@genesislcap/rapid-design-system": "14.427.1",
|
|
51
51
|
"@microsoft/fast-colors": "5.3.1",
|
|
52
52
|
"@microsoft/fast-components": "2.30.6",
|
|
53
53
|
"@microsoft/fast-element": "1.14.0",
|
|
@@ -80,5 +80,5 @@
|
|
|
80
80
|
"require": "./dist/react.cjs"
|
|
81
81
|
}
|
|
82
82
|
},
|
|
83
|
-
"gitHead": "
|
|
83
|
+
"gitHead": "9f153865e43ebc40b6d8ce2c8725ad64dee9e8da"
|
|
84
84
|
}
|