@elliemae/ds-grid 3.12.0-rc.2 → 3.12.0-rc.20

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.
@@ -0,0 +1,32 @@
1
+ "use strict";
2
+ var __create = Object.create;
3
+ var __defProp = Object.defineProperty;
4
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
+ var __getOwnPropNames = Object.getOwnPropertyNames;
6
+ var __getProtoOf = Object.getPrototypeOf;
7
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
8
+ var __export = (target, all) => {
9
+ for (var name in all)
10
+ __defProp(target, name, { get: all[name], enumerable: true });
11
+ };
12
+ var __copyProps = (to, from, except, desc) => {
13
+ if (from && typeof from === "object" || typeof from === "function") {
14
+ for (let key of __getOwnPropNames(from))
15
+ if (!__hasOwnProp.call(to, key) && key !== except)
16
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
17
+ }
18
+ return to;
19
+ };
20
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
21
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
22
+ mod
23
+ ));
24
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
25
+ var DSGridDefinitions_exports = {};
26
+ __export(DSGridDefinitions_exports, {
27
+ DSGridName: () => DSGridName
28
+ });
29
+ module.exports = __toCommonJS(DSGridDefinitions_exports);
30
+ var React = __toESM(require("react"));
31
+ const DSGridName = "DSGrid";
32
+ //# sourceMappingURL=DSGridDefinitions.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../src/DSGridDefinitions.tsx", "../../../../scripts/build/transpile/react-shim.js"],
4
+ "sourcesContent": ["export const DSGridName = 'DSGrid';\n", "import * as React from 'react';\nexport { React };\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADAhB,MAAM,aAAa;",
6
+ "names": []
7
+ }
package/dist/cjs/Grid.js CHANGED
@@ -36,6 +36,7 @@ var import_ds_utilities = require("@elliemae/ds-utilities");
36
36
  var import_react_desc_prop_types = require("./react-desc-prop-types");
37
37
  var import_GridItem = require("./GridItem");
38
38
  var import_useGrid = require("./config/useGrid");
39
+ var import_DSGridDefinitions = require("./DSGridDefinitions");
39
40
  const Grid = import_react.default.forwardRef((props, ref) => {
40
41
  const {
41
42
  propsWithDefaults: { alignItems, cols, children, rows, gutter, justify, wrap, width, height, ...rest },
@@ -44,25 +45,28 @@ const Grid = import_react.default.forwardRef((props, ref) => {
44
45
  isSpanParent,
45
46
  renderChildren
46
47
  } = (0, import_useGrid.useGrid)(props);
47
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_GridItem.GridItem, {
48
- alignItems,
49
- cols,
50
- gutter,
51
- isSpanParent,
52
- justify,
53
- rows,
54
- wrap,
55
- childNumber: import_react.default.Children.count(children),
56
- ref,
57
- ...rest,
58
- ...globalProps,
59
- ...xstyledProps,
60
- w: width,
61
- h: height,
62
- children: renderChildren
63
- });
48
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
49
+ import_GridItem.GridItem,
50
+ {
51
+ alignItems,
52
+ cols,
53
+ gutter,
54
+ isSpanParent,
55
+ justify,
56
+ rows,
57
+ wrap,
58
+ childNumber: import_react.default.Children.count(children),
59
+ ref,
60
+ ...rest,
61
+ ...globalProps,
62
+ ...xstyledProps,
63
+ w: width,
64
+ h: height,
65
+ children: renderChildren
66
+ }
67
+ );
64
68
  });
65
- Grid.displayName = "Grid";
69
+ Grid.displayName = import_DSGridDefinitions.DSGridName;
66
70
  Grid.propTypes = import_react_desc_prop_types.DSGridPropTypes;
67
71
  const DSGridWithSchema = (0, import_ds_utilities.describe)(Grid);
68
72
  DSGridWithSchema.propTypes = import_react_desc_prop_types.DSGridPropTypes;
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../src/Grid.tsx", "../../../../scripts/build/transpile/react-shim.js"],
4
- "sourcesContent": ["import React from 'react';\nimport { describe } from '@elliemae/ds-utilities';\nimport type { DSGridT } from './react-desc-prop-types';\nimport { DSGridPropTypes } from './react-desc-prop-types';\nimport { GridItem } from './GridItem';\nimport { useGrid } from './config/useGrid';\n\nconst Grid = React.forwardRef<HTMLDivElement, DSGridT.Props>((props, ref) => {\n const {\n propsWithDefaults: { alignItems, cols, children, rows, gutter, justify, wrap, width, height, ...rest },\n globalProps,\n xstyledProps,\n isSpanParent,\n renderChildren,\n } = useGrid(props);\n\n return (\n <GridItem\n alignItems={alignItems}\n cols={cols}\n gutter={gutter}\n isSpanParent={isSpanParent}\n justify={justify}\n rows={rows}\n wrap={wrap}\n childNumber={React.Children.count(children)}\n ref={ref}\n {...rest}\n {...globalProps}\n {...xstyledProps}\n w={width}\n h={height}\n >\n {renderChildren}\n </GridItem>\n );\n});\n\n// Since this component is using ForwardRef, we must provide a displayName to avoid 'undefined' name in propsTable.\nGrid.displayName = 'Grid';\n\nGrid.propTypes = DSGridPropTypes;\nconst DSGridWithSchema = describe(Grid);\nDSGridWithSchema.propTypes = DSGridPropTypes;\n\nexport default Grid;\nexport { DSGridWithSchema, Grid };\n", "import * as React from 'react';\nexport { React };\n"],
5
- "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADiBnB;AAjBJ,mBAAkB;AAClB,0BAAyB;AAEzB,mCAAgC;AAChC,sBAAyB;AACzB,qBAAwB;AAExB,MAAM,OAAO,aAAAA,QAAM,WAA0C,CAAC,OAAO,QAAQ;AAC3E,QAAM;AAAA,IACJ,mBAAmB,EAAE,YAAY,MAAM,UAAU,MAAM,QAAQ,SAAS,MAAM,OAAO,WAAW,KAAK;AAAA,IACrG;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,EACF,QAAI,wBAAQ,KAAK;AAEjB,SACE,4CAAC;AAAA,IACC;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA,aAAa,aAAAA,QAAM,SAAS,MAAM,QAAQ;AAAA,IAC1C;AAAA,IACC,GAAG;AAAA,IACH,GAAG;AAAA,IACH,GAAG;AAAA,IACJ,GAAG;AAAA,IACH,GAAG;AAAA,IAEF;AAAA,GACH;AAEJ,CAAC;AAGD,KAAK,cAAc;AAEnB,KAAK,YAAY;AACjB,MAAM,uBAAmB,8BAAS,IAAI;AACtC,iBAAiB,YAAY;AAE7B,IAAO,eAAQ;",
4
+ "sourcesContent": ["import React from 'react';\nimport { describe } from '@elliemae/ds-utilities';\nimport type { DSGridT } from './react-desc-prop-types';\nimport { DSGridPropTypes } from './react-desc-prop-types';\nimport { GridItem } from './GridItem';\nimport { useGrid } from './config/useGrid';\nimport { DSGridName } from './DSGridDefinitions';\n\nconst Grid = React.forwardRef<HTMLDivElement, DSGridT.Props>((props, ref) => {\n const {\n propsWithDefaults: { alignItems, cols, children, rows, gutter, justify, wrap, width, height, ...rest },\n globalProps,\n xstyledProps,\n isSpanParent,\n renderChildren,\n } = useGrid(props);\n\n return (\n <GridItem\n alignItems={alignItems}\n cols={cols}\n gutter={gutter}\n isSpanParent={isSpanParent}\n justify={justify}\n rows={rows}\n wrap={wrap}\n childNumber={React.Children.count(children)}\n ref={ref}\n {...rest}\n {...globalProps}\n {...xstyledProps}\n w={width}\n h={height}\n >\n {renderChildren}\n </GridItem>\n );\n});\n\n// Since this component is using ForwardRef, we must provide a displayName to avoid 'undefined' name in propsTable.\nGrid.displayName = DSGridName;\n\nGrid.propTypes = DSGridPropTypes;\nconst DSGridWithSchema = describe(Grid);\nDSGridWithSchema.propTypes = DSGridPropTypes;\n\nexport default Grid;\nexport { DSGridWithSchema, Grid };\n", "import * as React from 'react';\nexport { React };\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADkBnB;AAlBJ,mBAAkB;AAClB,0BAAyB;AAEzB,mCAAgC;AAChC,sBAAyB;AACzB,qBAAwB;AACxB,+BAA2B;AAE3B,MAAM,OAAO,aAAAA,QAAM,WAA0C,CAAC,OAAO,QAAQ;AAC3E,QAAM;AAAA,IACJ,mBAAmB,EAAE,YAAY,MAAM,UAAU,MAAM,QAAQ,SAAS,MAAM,OAAO,WAAW,KAAK;AAAA,IACrG;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,EACF,QAAI,wBAAQ,KAAK;AAEjB,SACE;AAAA,IAAC;AAAA;AAAA,MACC;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA,aAAa,aAAAA,QAAM,SAAS,MAAM,QAAQ;AAAA,MAC1C;AAAA,MACC,GAAG;AAAA,MACH,GAAG;AAAA,MACH,GAAG;AAAA,MACJ,GAAG;AAAA,MACH,GAAG;AAAA,MAEF;AAAA;AAAA,EACH;AAEJ,CAAC;AAGD,KAAK,cAAc;AAEnB,KAAK,YAAY;AACjB,MAAM,uBAAmB,8BAAS,IAAI;AACtC,iBAAiB,YAAY;AAE7B,IAAO,eAAQ;",
6
6
  "names": ["React"]
7
7
  }
@@ -29,7 +29,8 @@ __export(useValidateProps_exports, {
29
29
  module.exports = __toCommonJS(useValidateProps_exports);
30
30
  var React = __toESM(require("react"));
31
31
  var import_ds_utilities = require("@elliemae/ds-utilities");
32
+ var import_DSGridDefinitions = require("../DSGridDefinitions");
32
33
  const useValidateProps = (props, propTypes) => {
33
- (0, import_ds_utilities.useValidateTypescriptPropTypes)(props, propTypes);
34
+ (0, import_ds_utilities.useValidateTypescriptPropTypes)(props, propTypes, import_DSGridDefinitions.DSGridName);
34
35
  };
35
36
  //# sourceMappingURL=useValidateProps.js.map
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../src/config/useValidateProps.tsx", "../../../../../scripts/build/transpile/react-shim.js"],
4
- "sourcesContent": ["import type { WeakValidationMap } from 'react';\nimport { useValidateTypescriptPropTypes } from '@elliemae/ds-utilities';\nimport type { DSGridT } from '../react-desc-prop-types';\n\nexport const useValidateProps = (props: DSGridT.InternalProps, propTypes: WeakValidationMap<unknown>) => {\n useValidateTypescriptPropTypes(props, propTypes);\n};\n", "import * as React from 'react';\nexport { React };\n"],
5
- "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADCvB,0BAA+C;AAGxC,MAAM,mBAAmB,CAAC,OAA8B,cAA0C;AACvG,0DAA+B,OAAO,SAAS;AACjD;",
4
+ "sourcesContent": ["import type { WeakValidationMap } from 'react';\nimport { useValidateTypescriptPropTypes } from '@elliemae/ds-utilities';\nimport type { DSGridT } from '../react-desc-prop-types';\nimport { DSGridName } from '../DSGridDefinitions';\n\nexport const useValidateProps = (props: DSGridT.InternalProps, propTypes: WeakValidationMap<unknown>) => {\n useValidateTypescriptPropTypes(props, propTypes, DSGridName);\n};\n", "import * as React from 'react';\nexport { React };\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADCvB,0BAA+C;AAE/C,+BAA2B;AAEpB,MAAM,mBAAmB,CAAC,OAA8B,cAA0C;AACvG,0DAA+B,OAAO,WAAW,mCAAU;AAC7D;",
6
6
  "names": []
7
7
  }
@@ -0,0 +1,6 @@
1
+ import * as React from "react";
2
+ const DSGridName = "DSGrid";
3
+ export {
4
+ DSGridName
5
+ };
6
+ //# sourceMappingURL=DSGridDefinitions.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../../../scripts/build/transpile/react-shim.js", "../../src/DSGridDefinitions.tsx"],
4
+ "sourcesContent": ["import * as React from 'react';\nexport { React };\n", "export const DSGridName = 'DSGrid';\n"],
5
+ "mappings": "AAAA,YAAY,WAAW;ACAhB,MAAM,aAAa;",
6
+ "names": []
7
+ }
package/dist/esm/Grid.js CHANGED
@@ -5,6 +5,7 @@ import { describe } from "@elliemae/ds-utilities";
5
5
  import { DSGridPropTypes } from "./react-desc-prop-types";
6
6
  import { GridItem } from "./GridItem";
7
7
  import { useGrid } from "./config/useGrid";
8
+ import { DSGridName } from "./DSGridDefinitions";
8
9
  const Grid = React2.forwardRef((props, ref) => {
9
10
  const {
10
11
  propsWithDefaults: { alignItems, cols, children, rows, gutter, justify, wrap, width, height, ...rest },
@@ -13,25 +14,28 @@ const Grid = React2.forwardRef((props, ref) => {
13
14
  isSpanParent,
14
15
  renderChildren
15
16
  } = useGrid(props);
16
- return /* @__PURE__ */ jsx(GridItem, {
17
- alignItems,
18
- cols,
19
- gutter,
20
- isSpanParent,
21
- justify,
22
- rows,
23
- wrap,
24
- childNumber: React2.Children.count(children),
25
- ref,
26
- ...rest,
27
- ...globalProps,
28
- ...xstyledProps,
29
- w: width,
30
- h: height,
31
- children: renderChildren
32
- });
17
+ return /* @__PURE__ */ jsx(
18
+ GridItem,
19
+ {
20
+ alignItems,
21
+ cols,
22
+ gutter,
23
+ isSpanParent,
24
+ justify,
25
+ rows,
26
+ wrap,
27
+ childNumber: React2.Children.count(children),
28
+ ref,
29
+ ...rest,
30
+ ...globalProps,
31
+ ...xstyledProps,
32
+ w: width,
33
+ h: height,
34
+ children: renderChildren
35
+ }
36
+ );
33
37
  });
34
- Grid.displayName = "Grid";
38
+ Grid.displayName = DSGridName;
35
39
  Grid.propTypes = DSGridPropTypes;
36
40
  const DSGridWithSchema = describe(Grid);
37
41
  DSGridWithSchema.propTypes = DSGridPropTypes;
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../../scripts/build/transpile/react-shim.js", "../../src/Grid.tsx"],
4
- "sourcesContent": ["import * as React from 'react';\nexport { React };\n", "import React from 'react';\nimport { describe } from '@elliemae/ds-utilities';\nimport type { DSGridT } from './react-desc-prop-types';\nimport { DSGridPropTypes } from './react-desc-prop-types';\nimport { GridItem } from './GridItem';\nimport { useGrid } from './config/useGrid';\n\nconst Grid = React.forwardRef<HTMLDivElement, DSGridT.Props>((props, ref) => {\n const {\n propsWithDefaults: { alignItems, cols, children, rows, gutter, justify, wrap, width, height, ...rest },\n globalProps,\n xstyledProps,\n isSpanParent,\n renderChildren,\n } = useGrid(props);\n\n return (\n <GridItem\n alignItems={alignItems}\n cols={cols}\n gutter={gutter}\n isSpanParent={isSpanParent}\n justify={justify}\n rows={rows}\n wrap={wrap}\n childNumber={React.Children.count(children)}\n ref={ref}\n {...rest}\n {...globalProps}\n {...xstyledProps}\n w={width}\n h={height}\n >\n {renderChildren}\n </GridItem>\n );\n});\n\n// Since this component is using ForwardRef, we must provide a displayName to avoid 'undefined' name in propsTable.\nGrid.displayName = 'Grid';\n\nGrid.propTypes = DSGridPropTypes;\nconst DSGridWithSchema = describe(Grid);\nDSGridWithSchema.propTypes = DSGridPropTypes;\n\nexport default Grid;\nexport { DSGridWithSchema, Grid };\n"],
5
- "mappings": "AAAA,YAAY,WAAW;ACiBnB;AAjBJ,OAAOA,YAAW;AAClB,SAAS,gBAAgB;AAEzB,SAAS,uBAAuB;AAChC,SAAS,gBAAgB;AACzB,SAAS,eAAe;AAExB,MAAM,OAAOA,OAAM,WAA0C,CAAC,OAAO,QAAQ;AAC3E,QAAM;AAAA,IACJ,mBAAmB,EAAE,YAAY,MAAM,UAAU,MAAM,QAAQ,SAAS,MAAM,OAAO,WAAW,KAAK;AAAA,IACrG;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,EACF,IAAI,QAAQ,KAAK;AAEjB,SACE,oBAAC;AAAA,IACC;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA,aAAaA,OAAM,SAAS,MAAM,QAAQ;AAAA,IAC1C;AAAA,IACC,GAAG;AAAA,IACH,GAAG;AAAA,IACH,GAAG;AAAA,IACJ,GAAG;AAAA,IACH,GAAG;AAAA,IAEF;AAAA,GACH;AAEJ,CAAC;AAGD,KAAK,cAAc;AAEnB,KAAK,YAAY;AACjB,MAAM,mBAAmB,SAAS,IAAI;AACtC,iBAAiB,YAAY;AAE7B,IAAO,eAAQ;",
4
+ "sourcesContent": ["import * as React from 'react';\nexport { React };\n", "import React from 'react';\nimport { describe } from '@elliemae/ds-utilities';\nimport type { DSGridT } from './react-desc-prop-types';\nimport { DSGridPropTypes } from './react-desc-prop-types';\nimport { GridItem } from './GridItem';\nimport { useGrid } from './config/useGrid';\nimport { DSGridName } from './DSGridDefinitions';\n\nconst Grid = React.forwardRef<HTMLDivElement, DSGridT.Props>((props, ref) => {\n const {\n propsWithDefaults: { alignItems, cols, children, rows, gutter, justify, wrap, width, height, ...rest },\n globalProps,\n xstyledProps,\n isSpanParent,\n renderChildren,\n } = useGrid(props);\n\n return (\n <GridItem\n alignItems={alignItems}\n cols={cols}\n gutter={gutter}\n isSpanParent={isSpanParent}\n justify={justify}\n rows={rows}\n wrap={wrap}\n childNumber={React.Children.count(children)}\n ref={ref}\n {...rest}\n {...globalProps}\n {...xstyledProps}\n w={width}\n h={height}\n >\n {renderChildren}\n </GridItem>\n );\n});\n\n// Since this component is using ForwardRef, we must provide a displayName to avoid 'undefined' name in propsTable.\nGrid.displayName = DSGridName;\n\nGrid.propTypes = DSGridPropTypes;\nconst DSGridWithSchema = describe(Grid);\nDSGridWithSchema.propTypes = DSGridPropTypes;\n\nexport default Grid;\nexport { DSGridWithSchema, Grid };\n"],
5
+ "mappings": "AAAA,YAAY,WAAW;ACkBnB;AAlBJ,OAAOA,YAAW;AAClB,SAAS,gBAAgB;AAEzB,SAAS,uBAAuB;AAChC,SAAS,gBAAgB;AACzB,SAAS,eAAe;AACxB,SAAS,kBAAkB;AAE3B,MAAM,OAAOA,OAAM,WAA0C,CAAC,OAAO,QAAQ;AAC3E,QAAM;AAAA,IACJ,mBAAmB,EAAE,YAAY,MAAM,UAAU,MAAM,QAAQ,SAAS,MAAM,OAAO,WAAW,KAAK;AAAA,IACrG;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,EACF,IAAI,QAAQ,KAAK;AAEjB,SACE;AAAA,IAAC;AAAA;AAAA,MACC;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA,aAAaA,OAAM,SAAS,MAAM,QAAQ;AAAA,MAC1C;AAAA,MACC,GAAG;AAAA,MACH,GAAG;AAAA,MACH,GAAG;AAAA,MACJ,GAAG;AAAA,MACH,GAAG;AAAA,MAEF;AAAA;AAAA,EACH;AAEJ,CAAC;AAGD,KAAK,cAAc;AAEnB,KAAK,YAAY;AACjB,MAAM,mBAAmB,SAAS,IAAI;AACtC,iBAAiB,YAAY;AAE7B,IAAO,eAAQ;",
6
6
  "names": ["React"]
7
7
  }
@@ -1,7 +1,8 @@
1
1
  import * as React from "react";
2
2
  import { useValidateTypescriptPropTypes } from "@elliemae/ds-utilities";
3
+ import { DSGridName } from "../DSGridDefinitions";
3
4
  const useValidateProps = (props, propTypes) => {
4
- useValidateTypescriptPropTypes(props, propTypes);
5
+ useValidateTypescriptPropTypes(props, propTypes, DSGridName);
5
6
  };
6
7
  export {
7
8
  useValidateProps
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../../../scripts/build/transpile/react-shim.js", "../../../src/config/useValidateProps.tsx"],
4
- "sourcesContent": ["import * as React from 'react';\nexport { React };\n", "import type { WeakValidationMap } from 'react';\nimport { useValidateTypescriptPropTypes } from '@elliemae/ds-utilities';\nimport type { DSGridT } from '../react-desc-prop-types';\n\nexport const useValidateProps = (props: DSGridT.InternalProps, propTypes: WeakValidationMap<unknown>) => {\n useValidateTypescriptPropTypes(props, propTypes);\n};\n"],
5
- "mappings": "AAAA,YAAY,WAAW;ACCvB,SAAS,sCAAsC;AAGxC,MAAM,mBAAmB,CAAC,OAA8B,cAA0C;AACvG,iCAA+B,OAAO,SAAS;AACjD;",
4
+ "sourcesContent": ["import * as React from 'react';\nexport { React };\n", "import type { WeakValidationMap } from 'react';\nimport { useValidateTypescriptPropTypes } from '@elliemae/ds-utilities';\nimport type { DSGridT } from '../react-desc-prop-types';\nimport { DSGridName } from '../DSGridDefinitions';\n\nexport const useValidateProps = (props: DSGridT.InternalProps, propTypes: WeakValidationMap<unknown>) => {\n useValidateTypescriptPropTypes(props, propTypes, DSGridName);\n};\n"],
5
+ "mappings": "AAAA,YAAY,WAAW;ACCvB,SAAS,sCAAsC;AAE/C,SAAS,kBAAkB;AAEpB,MAAM,mBAAmB,CAAC,OAA8B,cAA0C;AACvG,iCAA+B,OAAO,WAAW,UAAU;AAC7D;",
6
6
  "names": []
7
7
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/ds-grid",
3
- "version": "3.12.0-rc.2",
3
+ "version": "3.12.0-rc.20",
4
4
  "license": "MIT",
5
5
  "description": "ICE MT - Dimsum - Grid",
6
6
  "files": [
@@ -63,9 +63,9 @@
63
63
  "indent": 4
64
64
  },
65
65
  "dependencies": {
66
- "@elliemae/ds-system": "3.12.0-rc.2",
67
- "@elliemae/ds-utilities": "3.12.0-rc.2",
68
- "@xstyled/system": "~3.7.0"
66
+ "@xstyled/system": "~3.7.0",
67
+ "@elliemae/ds-system": "3.12.0-rc.20",
68
+ "@elliemae/ds-utilities": "3.12.0-rc.20"
69
69
  },
70
70
  "devDependencies": {
71
71
  "@testing-library/jest-dom": "~5.16.4",