@genesislcap/rapid-grid-tabulator 14.418.2 → 14.419.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.
@@ -1028,6 +1028,16 @@
1028
1028
  "module": "src/grid-tabulator.ts"
1029
1029
  }
1030
1030
  }
1031
+ ],
1032
+ "events": [
1033
+ {
1034
+ "description": "Fired when the Tabulator instance is ready (detail is the Tabulator instance)",
1035
+ "name": "gridReady",
1036
+ "inheritedFrom": {
1037
+ "name": "GridTabulator",
1038
+ "module": "src/grid-tabulator.ts"
1039
+ }
1040
+ }
1031
1041
  ]
1032
1042
  },
1033
1043
  {
@@ -0,0 +1,47 @@
1
+ /**
2
+ * AUTO-GENERATED FILE - DO NOT EDIT.
3
+ * Generated from custom-elements manifest.
4
+ */
5
+
6
+ import type React from 'react';
7
+ import type { RapidGridTabulator as RapidGridTabulatorWC } from './grid-tabulator';
8
+
9
+ /** @internal Maps a web component class to its public props only.
10
+ * keyof T skips private/protected members, so this avoids the TS error
11
+ * "property may not be private or protected" on exported anonymous types. */
12
+ type PublicOf<T> = { [K in keyof T]?: T[K] };
13
+
14
+ /** @internal Safe React HTML attributes for web component wrappers.
15
+ * onChange/onInput use method signatures for bivariant parameter checking so both
16
+ * native Event and CustomEvent callbacks are accepted. */
17
+ interface HTMLWCProps extends React.AriaAttributes {
18
+ className?: string; style?: React.CSSProperties; id?: string; slot?: string;
19
+ tabIndex?: number; dir?: string; lang?: string; title?: string;
20
+ onClick?: React.MouseEventHandler<HTMLElement>;
21
+ onDoubleClick?: React.MouseEventHandler<HTMLElement>;
22
+ onContextMenu?: React.MouseEventHandler<HTMLElement>;
23
+ onMouseEnter?: React.MouseEventHandler<HTMLElement>;
24
+ onMouseLeave?: React.MouseEventHandler<HTMLElement>;
25
+ onMouseDown?: React.MouseEventHandler<HTMLElement>;
26
+ onMouseUp?: React.MouseEventHandler<HTMLElement>;
27
+ onMouseMove?: React.MouseEventHandler<HTMLElement>;
28
+ onKeyDown?: React.KeyboardEventHandler<HTMLElement>;
29
+ onKeyUp?: React.KeyboardEventHandler<HTMLElement>;
30
+ onFocus?: React.FocusEventHandler<HTMLElement>;
31
+ onBlur?: React.FocusEventHandler<HTMLElement>;
32
+ onScroll?: React.UIEventHandler<HTMLElement>;
33
+ onWheel?: React.WheelEventHandler<HTMLElement>;
34
+ onChange?(e: Event): void;
35
+ onInput?(e: Event): void;
36
+ }
37
+
38
+ export declare const RapidGridTabulator: React.ForwardRefExoticComponent<
39
+ React.PropsWithChildren<
40
+ Omit<PublicOf<RapidGridTabulatorWC>, 'children' | 'style'> &
41
+ HTMLWCProps & {
42
+ onGridReady?: (event: CustomEvent<unknown>) => void;
43
+ }
44
+ > & React.RefAttributes<RapidGridTabulatorWC>
45
+ >;
46
+
47
+ export {};
package/dist/react.cjs ADDED
@@ -0,0 +1,22 @@
1
+ /**
2
+ * AUTO-GENERATED FILE - DO NOT EDIT.
3
+ * Generated from custom-elements manifest.
4
+ */
5
+
6
+ 'use strict';
7
+
8
+ const { provideReactWrapper } = require('@microsoft/fast-react-wrapper');
9
+ const React = require('react');
10
+ const { RapidGridTabulator: RapidGridTabulatorWC } = require('./esm/grid-tabulator.js');
11
+
12
+ const { wrap } = provideReactWrapper(React);
13
+
14
+ const RapidGridTabulator = wrap(RapidGridTabulatorWC, {
15
+ events: {
16
+ onGridReady: 'gridReady',
17
+ },
18
+ });
19
+
20
+ module.exports = {
21
+ RapidGridTabulator,
22
+ };
package/dist/react.mjs ADDED
@@ -0,0 +1,16 @@
1
+ /**
2
+ * AUTO-GENERATED FILE - DO NOT EDIT.
3
+ * Generated from custom-elements manifest.
4
+ */
5
+
6
+ import { provideReactWrapper } from '@microsoft/fast-react-wrapper';
7
+ import React from 'react';
8
+ import { RapidGridTabulator as RapidGridTabulatorWC } from './esm/grid-tabulator.js';
9
+
10
+ const { wrap } = provideReactWrapper(React);
11
+
12
+ export const RapidGridTabulator = wrap(RapidGridTabulatorWC, {
13
+ events: {
14
+ onGridReady: 'gridReady',
15
+ },
16
+ });
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/rapid-grid-tabulator",
3
3
  "description": "Genesis Rapid Grid Tabulator",
4
- "version": "14.418.2",
4
+ "version": "14.419.0",
5
5
  "private": false,
6
6
  "sideEffects": false,
7
7
  "license": "SEE LICENSE IN license.txt",
@@ -35,19 +35,19 @@
35
35
  }
36
36
  },
37
37
  "devDependencies": {
38
- "@genesislcap/genx": "14.418.2",
39
- "@genesislcap/rollup-builder": "14.418.2",
40
- "@genesislcap/ts-builder": "14.418.2",
41
- "@genesislcap/uvu-playwright-builder": "14.418.2",
42
- "@genesislcap/vite-builder": "14.418.2",
43
- "@genesislcap/webpack-builder": "14.418.2"
38
+ "@genesislcap/genx": "14.419.0",
39
+ "@genesislcap/rollup-builder": "14.419.0",
40
+ "@genesislcap/ts-builder": "14.419.0",
41
+ "@genesislcap/uvu-playwright-builder": "14.419.0",
42
+ "@genesislcap/vite-builder": "14.419.0",
43
+ "@genesislcap/webpack-builder": "14.419.0"
44
44
  },
45
45
  "dependencies": {
46
- "@genesislcap/foundation-comms": "14.418.2",
47
- "@genesislcap/foundation-ui": "14.418.2",
48
- "@genesislcap/foundation-utils": "14.418.2",
49
- "@genesislcap/grid-tabulator": "14.418.2",
50
- "@genesislcap/rapid-design-system": "14.418.2",
46
+ "@genesislcap/foundation-comms": "14.419.0",
47
+ "@genesislcap/foundation-ui": "14.419.0",
48
+ "@genesislcap/foundation-utils": "14.419.0",
49
+ "@genesislcap/grid-tabulator": "14.419.0",
50
+ "@genesislcap/rapid-design-system": "14.419.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",
@@ -66,5 +66,5 @@
66
66
  "access": "public"
67
67
  },
68
68
  "customElements": "dist/custom-elements.json",
69
- "gitHead": "ae9a9252a0ca0d35759886db9b502921e3a3e831"
69
+ "gitHead": "e7590ac8bedb4e7d8cbbcee4100d1b0476591870"
70
70
  }