@genesislcap/foundation-zero-grid-pro 14.451.3 → 14.451.5-alpha-a976431.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.
@@ -60,6 +60,51 @@ export declare const ZeroGridPro: React.ForwardRefExoticComponent<
60
60
  >;
61
61
  export type ZeroGridProRef = ZeroGridProWC;
62
62
 
63
+ export declare const ZeroDateEditor: React.ForwardRefExoticComponent<
64
+ React.PropsWithChildren<
65
+ Omit<PublicOf<ZeroDateEditorWC>, 'children' | 'style'> &
66
+ HTMLWCProps & {
67
+ }
68
+ > & React.RefAttributes<ZeroDateEditorWC>
69
+ >;
70
+ export type ZeroDateEditorRef = ZeroDateEditorWC;
71
+
72
+ export declare const ZeroMultiselectEditor: React.ForwardRefExoticComponent<
73
+ React.PropsWithChildren<
74
+ Omit<PublicOf<ZeroMultiselectEditorWC>, 'children' | 'style'> &
75
+ HTMLWCProps & {
76
+ }
77
+ > & React.RefAttributes<ZeroMultiselectEditorWC>
78
+ >;
79
+ export type ZeroMultiselectEditorRef = ZeroMultiselectEditorWC;
80
+
81
+ export declare const ZeroNumberEditor: React.ForwardRefExoticComponent<
82
+ React.PropsWithChildren<
83
+ Omit<PublicOf<ZeroNumberEditorWC>, 'children' | 'style'> &
84
+ HTMLWCProps & {
85
+ }
86
+ > & React.RefAttributes<ZeroNumberEditorWC>
87
+ >;
88
+ export type ZeroNumberEditorRef = ZeroNumberEditorWC;
89
+
90
+ export declare const ZeroSelectEditor: React.ForwardRefExoticComponent<
91
+ React.PropsWithChildren<
92
+ Omit<PublicOf<ZeroSelectEditorWC>, 'children' | 'style'> &
93
+ HTMLWCProps & {
94
+ }
95
+ > & React.RefAttributes<ZeroSelectEditorWC>
96
+ >;
97
+ export type ZeroSelectEditorRef = ZeroSelectEditorWC;
98
+
99
+ export declare const ZeroStringEditor: React.ForwardRefExoticComponent<
100
+ React.PropsWithChildren<
101
+ Omit<PublicOf<ZeroStringEditorWC>, 'children' | 'style'> &
102
+ HTMLWCProps & {
103
+ }
104
+ > & React.RefAttributes<ZeroStringEditorWC>
105
+ >;
106
+ export type ZeroStringEditorRef = ZeroStringEditorWC;
107
+
63
108
  export declare const ZeroAgActionRenderer: React.ForwardRefExoticComponent<
64
109
  React.PropsWithChildren<
65
110
  Omit<PublicOf<ZeroAgActionRendererWC>, 'children' | 'style'> &
@@ -132,49 +177,4 @@ export declare const ZeroAgTextRenderer: React.ForwardRefExoticComponent<
132
177
  >;
133
178
  export type ZeroAgTextRendererRef = ZeroAgTextRendererWC;
134
179
 
135
- export declare const ZeroDateEditor: React.ForwardRefExoticComponent<
136
- React.PropsWithChildren<
137
- Omit<PublicOf<ZeroDateEditorWC>, 'children' | 'style'> &
138
- HTMLWCProps & {
139
- }
140
- > & React.RefAttributes<ZeroDateEditorWC>
141
- >;
142
- export type ZeroDateEditorRef = ZeroDateEditorWC;
143
-
144
- export declare const ZeroMultiselectEditor: React.ForwardRefExoticComponent<
145
- React.PropsWithChildren<
146
- Omit<PublicOf<ZeroMultiselectEditorWC>, 'children' | 'style'> &
147
- HTMLWCProps & {
148
- }
149
- > & React.RefAttributes<ZeroMultiselectEditorWC>
150
- >;
151
- export type ZeroMultiselectEditorRef = ZeroMultiselectEditorWC;
152
-
153
- export declare const ZeroNumberEditor: React.ForwardRefExoticComponent<
154
- React.PropsWithChildren<
155
- Omit<PublicOf<ZeroNumberEditorWC>, 'children' | 'style'> &
156
- HTMLWCProps & {
157
- }
158
- > & React.RefAttributes<ZeroNumberEditorWC>
159
- >;
160
- export type ZeroNumberEditorRef = ZeroNumberEditorWC;
161
-
162
- export declare const ZeroSelectEditor: React.ForwardRefExoticComponent<
163
- React.PropsWithChildren<
164
- Omit<PublicOf<ZeroSelectEditorWC>, 'children' | 'style'> &
165
- HTMLWCProps & {
166
- }
167
- > & React.RefAttributes<ZeroSelectEditorWC>
168
- >;
169
- export type ZeroSelectEditorRef = ZeroSelectEditorWC;
170
-
171
- export declare const ZeroStringEditor: React.ForwardRefExoticComponent<
172
- React.PropsWithChildren<
173
- Omit<PublicOf<ZeroStringEditorWC>, 'children' | 'style'> &
174
- HTMLWCProps & {
175
- }
176
- > & React.RefAttributes<ZeroStringEditorWC>
177
- >;
178
- export type ZeroStringEditorRef = ZeroStringEditorWC;
179
-
180
180
  export {};
package/dist/react.cjs CHANGED
@@ -57,6 +57,31 @@ const ZeroGridPro = React.forwardRef(function ZeroGridPro(props, ref) {
57
57
  return React.createElement(customElements.getName(ZeroGridProWC) ?? '%%prefix%%-grid-pro', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
58
58
  });
59
59
 
60
+ const ZeroDateEditor = React.forwardRef(function ZeroDateEditor(props, ref) {
61
+ const { children, ...rest } = props;
62
+ return React.createElement(customElements.getName(ZeroDateEditorWC) ?? '%%prefix%%-date-editor', { ...rest, ref }, children);
63
+ });
64
+
65
+ const ZeroMultiselectEditor = React.forwardRef(function ZeroMultiselectEditor(props, ref) {
66
+ const { children, ...rest } = props;
67
+ return React.createElement(customElements.getName(ZeroMultiselectEditorWC) ?? '%%prefix%%-multiselect-editor', { ...rest, ref }, children);
68
+ });
69
+
70
+ const ZeroNumberEditor = React.forwardRef(function ZeroNumberEditor(props, ref) {
71
+ const { children, ...rest } = props;
72
+ return React.createElement(customElements.getName(ZeroNumberEditorWC) ?? '%%prefix%%-number-editor', { ...rest, ref }, children);
73
+ });
74
+
75
+ const ZeroSelectEditor = React.forwardRef(function ZeroSelectEditor(props, ref) {
76
+ const { children, ...rest } = props;
77
+ return React.createElement(customElements.getName(ZeroSelectEditorWC) ?? '%%prefix%%-select-editor', { ...rest, ref }, children);
78
+ });
79
+
80
+ const ZeroStringEditor = React.forwardRef(function ZeroStringEditor(props, ref) {
81
+ const { children, ...rest } = props;
82
+ return React.createElement(customElements.getName(ZeroStringEditorWC) ?? '%%prefix%%-string-editor', { ...rest, ref }, children);
83
+ });
84
+
60
85
  const ZeroAgActionRenderer = React.forwardRef(function ZeroAgActionRenderer(props, ref) {
61
86
  const { children, ...rest } = props;
62
87
  return React.createElement(customElements.getName(ZeroAgActionRendererWC) ?? '%%prefix%%-grid-pro-action-renderer', { ...rest, ref }, children);
@@ -97,33 +122,13 @@ const ZeroAgTextRenderer = React.forwardRef(function ZeroAgTextRenderer(props, r
97
122
  return React.createElement(customElements.getName(ZeroAgTextRendererWC) ?? '%%prefix%%-grid-text-renderer', { ...rest, ref }, children);
98
123
  });
99
124
 
100
- const ZeroDateEditor = React.forwardRef(function ZeroDateEditor(props, ref) {
101
- const { children, ...rest } = props;
102
- return React.createElement(customElements.getName(ZeroDateEditorWC) ?? '%%prefix%%-date-editor', { ...rest, ref }, children);
103
- });
104
-
105
- const ZeroMultiselectEditor = React.forwardRef(function ZeroMultiselectEditor(props, ref) {
106
- const { children, ...rest } = props;
107
- return React.createElement(customElements.getName(ZeroMultiselectEditorWC) ?? '%%prefix%%-multiselect-editor', { ...rest, ref }, children);
108
- });
109
-
110
- const ZeroNumberEditor = React.forwardRef(function ZeroNumberEditor(props, ref) {
111
- const { children, ...rest } = props;
112
- return React.createElement(customElements.getName(ZeroNumberEditorWC) ?? '%%prefix%%-number-editor', { ...rest, ref }, children);
113
- });
114
-
115
- const ZeroSelectEditor = React.forwardRef(function ZeroSelectEditor(props, ref) {
116
- const { children, ...rest } = props;
117
- return React.createElement(customElements.getName(ZeroSelectEditorWC) ?? '%%prefix%%-select-editor', { ...rest, ref }, children);
118
- });
119
-
120
- const ZeroStringEditor = React.forwardRef(function ZeroStringEditor(props, ref) {
121
- const { children, ...rest } = props;
122
- return React.createElement(customElements.getName(ZeroStringEditorWC) ?? '%%prefix%%-string-editor', { ...rest, ref }, children);
123
- });
124
-
125
125
  module.exports = {
126
126
  ZeroGridPro,
127
+ ZeroDateEditor,
128
+ ZeroMultiselectEditor,
129
+ ZeroNumberEditor,
130
+ ZeroSelectEditor,
131
+ ZeroStringEditor,
127
132
  ZeroAgActionRenderer,
128
133
  ZeroAgActionsMenuRenderer,
129
134
  ZeroBooleanRenderer,
@@ -132,9 +137,4 @@ module.exports = {
132
137
  ZeroAgSelectRenderer,
133
138
  ZeroStatusPillRenderer,
134
139
  ZeroAgTextRenderer,
135
- ZeroDateEditor,
136
- ZeroMultiselectEditor,
137
- ZeroNumberEditor,
138
- ZeroSelectEditor,
139
- ZeroStringEditor,
140
140
  };
package/dist/react.mjs CHANGED
@@ -55,6 +55,31 @@ export const ZeroGridPro = React.forwardRef(function ZeroGridPro(props, ref) {
55
55
  return React.createElement(customElements.getName(ZeroGridProWC) ?? '%%prefix%%-grid-pro', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
56
56
  });
57
57
 
58
+ export const ZeroDateEditor = React.forwardRef(function ZeroDateEditor(props, ref) {
59
+ const { children, ...rest } = props;
60
+ return React.createElement(customElements.getName(ZeroDateEditorWC) ?? '%%prefix%%-date-editor', { ...rest, ref }, children);
61
+ });
62
+
63
+ export const ZeroMultiselectEditor = React.forwardRef(function ZeroMultiselectEditor(props, ref) {
64
+ const { children, ...rest } = props;
65
+ return React.createElement(customElements.getName(ZeroMultiselectEditorWC) ?? '%%prefix%%-multiselect-editor', { ...rest, ref }, children);
66
+ });
67
+
68
+ export const ZeroNumberEditor = React.forwardRef(function ZeroNumberEditor(props, ref) {
69
+ const { children, ...rest } = props;
70
+ return React.createElement(customElements.getName(ZeroNumberEditorWC) ?? '%%prefix%%-number-editor', { ...rest, ref }, children);
71
+ });
72
+
73
+ export const ZeroSelectEditor = React.forwardRef(function ZeroSelectEditor(props, ref) {
74
+ const { children, ...rest } = props;
75
+ return React.createElement(customElements.getName(ZeroSelectEditorWC) ?? '%%prefix%%-select-editor', { ...rest, ref }, children);
76
+ });
77
+
78
+ export const ZeroStringEditor = React.forwardRef(function ZeroStringEditor(props, ref) {
79
+ const { children, ...rest } = props;
80
+ return React.createElement(customElements.getName(ZeroStringEditorWC) ?? '%%prefix%%-string-editor', { ...rest, ref }, children);
81
+ });
82
+
58
83
  export const ZeroAgActionRenderer = React.forwardRef(function ZeroAgActionRenderer(props, ref) {
59
84
  const { children, ...rest } = props;
60
85
  return React.createElement(customElements.getName(ZeroAgActionRendererWC) ?? '%%prefix%%-grid-pro-action-renderer', { ...rest, ref }, children);
@@ -94,28 +119,3 @@ export const ZeroAgTextRenderer = React.forwardRef(function ZeroAgTextRenderer(p
94
119
  const { children, ...rest } = props;
95
120
  return React.createElement(customElements.getName(ZeroAgTextRendererWC) ?? '%%prefix%%-grid-text-renderer', { ...rest, ref }, children);
96
121
  });
97
-
98
- export const ZeroDateEditor = React.forwardRef(function ZeroDateEditor(props, ref) {
99
- const { children, ...rest } = props;
100
- return React.createElement(customElements.getName(ZeroDateEditorWC) ?? '%%prefix%%-date-editor', { ...rest, ref }, children);
101
- });
102
-
103
- export const ZeroMultiselectEditor = React.forwardRef(function ZeroMultiselectEditor(props, ref) {
104
- const { children, ...rest } = props;
105
- return React.createElement(customElements.getName(ZeroMultiselectEditorWC) ?? '%%prefix%%-multiselect-editor', { ...rest, ref }, children);
106
- });
107
-
108
- export const ZeroNumberEditor = React.forwardRef(function ZeroNumberEditor(props, ref) {
109
- const { children, ...rest } = props;
110
- return React.createElement(customElements.getName(ZeroNumberEditorWC) ?? '%%prefix%%-number-editor', { ...rest, ref }, children);
111
- });
112
-
113
- export const ZeroSelectEditor = React.forwardRef(function ZeroSelectEditor(props, ref) {
114
- const { children, ...rest } = props;
115
- return React.createElement(customElements.getName(ZeroSelectEditorWC) ?? '%%prefix%%-select-editor', { ...rest, ref }, children);
116
- });
117
-
118
- export const ZeroStringEditor = React.forwardRef(function ZeroStringEditor(props, ref) {
119
- const { children, ...rest } = props;
120
- return React.createElement(customElements.getName(ZeroStringEditorWC) ?? '%%prefix%%-string-editor', { ...rest, ref }, children);
121
- });
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/foundation-zero-grid-pro",
3
3
  "description": "Genesis Foundation Zero Grid Pro",
4
- "version": "14.451.3",
4
+ "version": "14.451.5-alpha-a976431.0",
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.451.3",
41
- "@genesislcap/rollup-builder": "14.451.3",
42
- "@genesislcap/ts-builder": "14.451.3",
43
- "@genesislcap/uvu-playwright-builder": "14.451.3",
44
- "@genesislcap/vite-builder": "14.451.3",
45
- "@genesislcap/webpack-builder": "14.451.3"
40
+ "@genesislcap/genx": "14.451.5-alpha-a976431.0",
41
+ "@genesislcap/rollup-builder": "14.451.5-alpha-a976431.0",
42
+ "@genesislcap/ts-builder": "14.451.5-alpha-a976431.0",
43
+ "@genesislcap/uvu-playwright-builder": "14.451.5-alpha-a976431.0",
44
+ "@genesislcap/vite-builder": "14.451.5-alpha-a976431.0",
45
+ "@genesislcap/webpack-builder": "14.451.5-alpha-a976431.0"
46
46
  },
47
47
  "dependencies": {
48
- "@genesislcap/foundation-ui": "14.451.3",
49
- "@genesislcap/foundation-zero": "14.451.3",
50
- "@genesislcap/grid-pro": "14.451.3",
48
+ "@genesislcap/foundation-ui": "14.451.5-alpha-a976431.0",
49
+ "@genesislcap/foundation-zero": "14.451.5-alpha-a976431.0",
50
+ "@genesislcap/grid-pro": "14.451.5-alpha-a976431.0",
51
51
  "@microsoft/fast-colors": "5.3.1",
52
52
  "@microsoft/fast-components": "2.30.6",
53
53
  "@microsoft/fast-element": "1.14.0",
@@ -78,5 +78,5 @@
78
78
  "require": "./dist/react.cjs"
79
79
  }
80
80
  },
81
- "gitHead": "3d20ba2e149817df766348685a718eb259b8b0cb"
81
+ "gitHead": "0f9cc6cf02dff9aa9015c442147912ee72074f72"
82
82
  }