@elliemae/ds-form-multi-combobox 3.36.0-next.0 → 3.36.0-next.2

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.
@@ -49,7 +49,6 @@ const MultiComboboxPropTypes = {
49
49
  ...restComboBoxPropTypes,
50
50
  selectedValues: import_ds_props_helpers.PropTypes.arrayOf(import_ds_props_helpers.PropTypes.object).description("Array of selected options").isRequired
51
51
  };
52
- DSMultiComboBox.propTypes = MultiComboboxPropTypes;
53
52
  DSMultiComboBox.displayName = "DSMultiComboBox";
54
53
  const DSMultiComboBoxWithSchema = (0, import_ds_props_helpers.describe)(DSMultiComboBox);
55
54
  DSMultiComboBoxWithSchema.propTypes = MultiComboboxPropTypes;
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../src/MultiCombobox.tsx", "../../../../../scripts/build/transpile/react-shim.js"],
4
- "sourcesContent": ["/* eslint-disable no-unused-vars */\nimport React, { type WeakValidationMap } from 'react';\nimport { describe, PropTypes } from '@elliemae/ds-props-helpers';\nimport { DSComboBox, type DSComboboxT, ComboboxPropTypes } from '@elliemae/ds-form-combobox';\n\nconst DSMultiComboBox: React.ComponentType<DSComboboxT.Props> = (props) => {\n const { selectedValues } = props;\n\n if (!Array.isArray(selectedValues))\n throw new Error(\n 'DSMultiCombobox cannot be used with selectedValues different than an array of items. Use DSSingleCombobox instead.',\n );\n return <DSComboBox {...props} />;\n};\n\nconst { selectedValues, ...restComboBoxPropTypes } = ComboboxPropTypes;\n\nconst MultiComboboxPropTypes = {\n ...restComboBoxPropTypes,\n selectedValues: PropTypes.arrayOf(PropTypes.object).description('Array of selected options').isRequired,\n};\n\nDSMultiComboBox.propTypes = MultiComboboxPropTypes as WeakValidationMap<unknown>;\nDSMultiComboBox.displayName = 'DSMultiComboBox';\nconst DSMultiComboBoxWithSchema = describe(DSMultiComboBox);\n\nDSMultiComboBoxWithSchema.propTypes = MultiComboboxPropTypes as WeakValidationMap<unknown>;\n\nexport { DSMultiComboBox, DSMultiComboBoxWithSchema };\n", "import * as React from 'react';\nexport { React };\n"],
5
- "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADYd;AAVT,8BAAoC;AACpC,8BAAgE;AAEhE,MAAM,kBAA0D,CAAC,UAAU;AACzE,QAAM,EAAE,gBAAAA,gBAAe,IAAI;AAE3B,MAAI,CAAC,MAAM,QAAQA,eAAc;AAC/B,UAAM,IAAI;AAAA,MACR;AAAA,IACF;AACF,SAAO,4CAAC,sCAAY,GAAG,OAAO;AAChC;AAEA,MAAM,EAAE,gBAAgB,GAAG,sBAAsB,IAAI;AAErD,MAAM,yBAAyB;AAAA,EAC7B,GAAG;AAAA,EACH,gBAAgB,kCAAU,QAAQ,kCAAU,MAAM,EAAE,YAAY,2BAA2B,EAAE;AAC/F;AAEA,gBAAgB,YAAY;AAC5B,gBAAgB,cAAc;AAC9B,MAAM,gCAA4B,kCAAS,eAAe;AAE1D,0BAA0B,YAAY;",
4
+ "sourcesContent": ["/* eslint-disable no-unused-vars */\nimport React, { type WeakValidationMap } from 'react';\nimport { describe, PropTypes } from '@elliemae/ds-props-helpers';\nimport { DSComboBox, type DSComboboxT, ComboboxPropTypes } from '@elliemae/ds-form-combobox';\n\nconst DSMultiComboBox: React.ComponentType<DSComboboxT.Props> = (props) => {\n const { selectedValues } = props;\n\n if (!Array.isArray(selectedValues))\n throw new Error(\n 'DSMultiCombobox cannot be used with selectedValues different than an array of items. Use DSSingleCombobox instead.',\n );\n return <DSComboBox {...props} />;\n};\n\nconst { selectedValues, ...restComboBoxPropTypes } = ComboboxPropTypes;\n\nconst MultiComboboxPropTypes = {\n ...restComboBoxPropTypes,\n selectedValues: PropTypes.arrayOf(PropTypes.object).description('Array of selected options').isRequired,\n};\n\nDSMultiComboBox.displayName = 'DSMultiComboBox';\nconst DSMultiComboBoxWithSchema = describe(DSMultiComboBox);\n\nDSMultiComboBoxWithSchema.propTypes = MultiComboboxPropTypes as WeakValidationMap<unknown>;\n\nexport { DSMultiComboBox, DSMultiComboBoxWithSchema };\n", "import * as React from 'react';\nexport { React };\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADYd;AAVT,8BAAoC;AACpC,8BAAgE;AAEhE,MAAM,kBAA0D,CAAC,UAAU;AACzE,QAAM,EAAE,gBAAAA,gBAAe,IAAI;AAE3B,MAAI,CAAC,MAAM,QAAQA,eAAc;AAC/B,UAAM,IAAI;AAAA,MACR;AAAA,IACF;AACF,SAAO,4CAAC,sCAAY,GAAG,OAAO;AAChC;AAEA,MAAM,EAAE,gBAAgB,GAAG,sBAAsB,IAAI;AAErD,MAAM,yBAAyB;AAAA,EAC7B,GAAG;AAAA,EACH,gBAAgB,kCAAU,QAAQ,kCAAU,MAAM,EAAE,YAAY,2BAA2B,EAAE;AAC/F;AAEA,gBAAgB,cAAc;AAC9B,MAAM,gCAA4B,kCAAS,eAAe;AAE1D,0BAA0B,YAAY;",
6
6
  "names": ["selectedValues"]
7
7
  }
@@ -15,7 +15,6 @@ const MultiComboboxPropTypes = {
15
15
  ...restComboBoxPropTypes,
16
16
  selectedValues: PropTypes.arrayOf(PropTypes.object).description("Array of selected options").isRequired
17
17
  };
18
- DSMultiComboBox.propTypes = MultiComboboxPropTypes;
19
18
  DSMultiComboBox.displayName = "DSMultiComboBox";
20
19
  const DSMultiComboBoxWithSchema = describe(DSMultiComboBox);
21
20
  DSMultiComboBoxWithSchema.propTypes = MultiComboboxPropTypes;
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../../../scripts/build/transpile/react-shim.js", "../../src/MultiCombobox.tsx"],
4
- "sourcesContent": ["import * as React from 'react';\nexport { React };\n", "/* eslint-disable no-unused-vars */\nimport React, { type WeakValidationMap } from 'react';\nimport { describe, PropTypes } from '@elliemae/ds-props-helpers';\nimport { DSComboBox, type DSComboboxT, ComboboxPropTypes } from '@elliemae/ds-form-combobox';\n\nconst DSMultiComboBox: React.ComponentType<DSComboboxT.Props> = (props) => {\n const { selectedValues } = props;\n\n if (!Array.isArray(selectedValues))\n throw new Error(\n 'DSMultiCombobox cannot be used with selectedValues different than an array of items. Use DSSingleCombobox instead.',\n );\n return <DSComboBox {...props} />;\n};\n\nconst { selectedValues, ...restComboBoxPropTypes } = ComboboxPropTypes;\n\nconst MultiComboboxPropTypes = {\n ...restComboBoxPropTypes,\n selectedValues: PropTypes.arrayOf(PropTypes.object).description('Array of selected options').isRequired,\n};\n\nDSMultiComboBox.propTypes = MultiComboboxPropTypes as WeakValidationMap<unknown>;\nDSMultiComboBox.displayName = 'DSMultiComboBox';\nconst DSMultiComboBoxWithSchema = describe(DSMultiComboBox);\n\nDSMultiComboBoxWithSchema.propTypes = MultiComboboxPropTypes as WeakValidationMap<unknown>;\n\nexport { DSMultiComboBox, DSMultiComboBoxWithSchema };\n"],
5
- "mappings": "AAAA,YAAY,WAAW;ACYd;AAVT,SAAS,UAAU,iBAAiB;AACpC,SAAS,YAA8B,yBAAyB;AAEhE,MAAM,kBAA0D,CAAC,UAAU;AACzE,QAAM,EAAE,gBAAAA,gBAAe,IAAI;AAE3B,MAAI,CAAC,MAAM,QAAQA,eAAc;AAC/B,UAAM,IAAI;AAAA,MACR;AAAA,IACF;AACF,SAAO,oBAAC,cAAY,GAAG,OAAO;AAChC;AAEA,MAAM,EAAE,gBAAgB,GAAG,sBAAsB,IAAI;AAErD,MAAM,yBAAyB;AAAA,EAC7B,GAAG;AAAA,EACH,gBAAgB,UAAU,QAAQ,UAAU,MAAM,EAAE,YAAY,2BAA2B,EAAE;AAC/F;AAEA,gBAAgB,YAAY;AAC5B,gBAAgB,cAAc;AAC9B,MAAM,4BAA4B,SAAS,eAAe;AAE1D,0BAA0B,YAAY;",
4
+ "sourcesContent": ["import * as React from 'react';\nexport { React };\n", "/* eslint-disable no-unused-vars */\nimport React, { type WeakValidationMap } from 'react';\nimport { describe, PropTypes } from '@elliemae/ds-props-helpers';\nimport { DSComboBox, type DSComboboxT, ComboboxPropTypes } from '@elliemae/ds-form-combobox';\n\nconst DSMultiComboBox: React.ComponentType<DSComboboxT.Props> = (props) => {\n const { selectedValues } = props;\n\n if (!Array.isArray(selectedValues))\n throw new Error(\n 'DSMultiCombobox cannot be used with selectedValues different than an array of items. Use DSSingleCombobox instead.',\n );\n return <DSComboBox {...props} />;\n};\n\nconst { selectedValues, ...restComboBoxPropTypes } = ComboboxPropTypes;\n\nconst MultiComboboxPropTypes = {\n ...restComboBoxPropTypes,\n selectedValues: PropTypes.arrayOf(PropTypes.object).description('Array of selected options').isRequired,\n};\n\nDSMultiComboBox.displayName = 'DSMultiComboBox';\nconst DSMultiComboBoxWithSchema = describe(DSMultiComboBox);\n\nDSMultiComboBoxWithSchema.propTypes = MultiComboboxPropTypes as WeakValidationMap<unknown>;\n\nexport { DSMultiComboBox, DSMultiComboBoxWithSchema };\n"],
5
+ "mappings": "AAAA,YAAY,WAAW;ACYd;AAVT,SAAS,UAAU,iBAAiB;AACpC,SAAS,YAA8B,yBAAyB;AAEhE,MAAM,kBAA0D,CAAC,UAAU;AACzE,QAAM,EAAE,gBAAAA,gBAAe,IAAI;AAE3B,MAAI,CAAC,MAAM,QAAQA,eAAc;AAC/B,UAAM,IAAI;AAAA,MACR;AAAA,IACF;AACF,SAAO,oBAAC,cAAY,GAAG,OAAO;AAChC;AAEA,MAAM,EAAE,gBAAgB,GAAG,sBAAsB,IAAI;AAErD,MAAM,yBAAyB;AAAA,EAC7B,GAAG;AAAA,EACH,gBAAgB,UAAU,QAAQ,UAAU,MAAM,EAAE,YAAY,2BAA2B,EAAE;AAC/F;AAEA,gBAAgB,cAAc;AAC9B,MAAM,4BAA4B,SAAS,eAAe;AAE1D,0BAA0B,YAAY;",
6
6
  "names": ["selectedValues"]
7
7
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/ds-form-multi-combobox",
3
- "version": "3.36.0-next.0",
3
+ "version": "3.36.0-next.2",
4
4
  "license": "MIT",
5
5
  "description": "ICE MT - Dimsum - Controlled Form Multiple Combobox ",
6
6
  "files": [
@@ -36,15 +36,15 @@
36
36
  "indent": 4
37
37
  },
38
38
  "dependencies": {
39
- "@elliemae/ds-form-combobox": "3.36.0-next.0",
40
- "@elliemae/ds-props-helpers": "3.36.0-next.0"
39
+ "@elliemae/ds-props-helpers": "3.36.0-next.2",
40
+ "@elliemae/ds-form-combobox": "3.36.0-next.2"
41
41
  },
42
42
  "devDependencies": {
43
43
  "@elliemae/pui-cli": "~9.0.0-next.31",
44
44
  "@elliemae/pui-theme": "~2.9.3",
45
45
  "styled-components": "~5.3.9",
46
46
  "styled-system": "~5.1.5",
47
- "@elliemae/ds-monorepo-devops": "3.36.0-next.0"
47
+ "@elliemae/ds-monorepo-devops": "3.36.0-next.2"
48
48
  },
49
49
  "peerDependencies": {
50
50
  "@elliemae/pui-theme": "~2.9.3",