@elliemae/ds-form-multi-combobox 3.70.0-next.6 → 3.70.0-next.60

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/cjs/index.js CHANGED
@@ -5,6 +5,10 @@ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
5
  var __getOwnPropNames = Object.getOwnPropertyNames;
6
6
  var __getProtoOf = Object.getPrototypeOf;
7
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
+ };
8
12
  var __copyProps = (to, from, except, desc) => {
9
13
  if (from && typeof from === "object" || typeof from === "function") {
10
14
  for (let key of __getOwnPropNames(from))
@@ -13,7 +17,6 @@ var __copyProps = (to, from, except, desc) => {
13
17
  }
14
18
  return to;
15
19
  };
16
- var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
17
20
  var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
18
21
  // If the importer is in node compatibility mode or this is not an ESM
19
22
  // file that has been converted to a CommonJS file using a Babel-
@@ -24,7 +27,11 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
24
27
  ));
25
28
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
26
29
  var index_exports = {};
30
+ __export(index_exports, {
31
+ DSMultiComboBox: () => import_MultiCombobox.DSMultiComboBox,
32
+ DSMultiComboBoxWithSchema: () => import_MultiCombobox.DSMultiComboBoxWithSchema
33
+ });
27
34
  module.exports = __toCommonJS(index_exports);
28
35
  var React = __toESM(require("react"));
29
- __reExport(index_exports, require("./MultiCombobox.js"), module.exports);
36
+ var import_MultiCombobox = require("./MultiCombobox.js");
30
37
  //# sourceMappingURL=index.js.map
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../src/index.ts", "../../../../../scripts/build/transpile/react-shim.js"],
4
- "sourcesContent": ["export type { DSComboboxMultiT } from '@elliemae/ds-form-combobox';\nexport * from './MultiCombobox.js';\n", "import * as React from 'react';\nexport { React };\n"],
5
- "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;ACAA,YAAuB;ADCvB,0BAAc,+BADd;",
4
+ "sourcesContent": ["export type { DSComboboxMultiT } from '@elliemae/ds-form-combobox';\nexport { DSMultiComboBox, DSMultiComboBoxWithSchema } from './MultiCombobox.js';\n", "import * as React from 'react';\nexport { React };\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADCvB,2BAA2D;",
6
6
  "names": []
7
7
  }
@@ -3,8 +3,5 @@
3
3
  "sideEffects": [
4
4
  "*.css",
5
5
  "*.scss"
6
- ],
7
- "publishConfig": {
8
- "access": "public"
9
- }
6
+ ]
10
7
  }
package/dist/esm/index.js CHANGED
@@ -1,3 +1,7 @@
1
1
  import * as React from "react";
2
- export * from "./MultiCombobox.js";
2
+ import { DSMultiComboBox, DSMultiComboBoxWithSchema } from "./MultiCombobox.js";
3
+ export {
4
+ DSMultiComboBox,
5
+ DSMultiComboBoxWithSchema
6
+ };
3
7
  //# sourceMappingURL=index.js.map
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../../../scripts/build/transpile/react-shim.js", "../../src/index.ts"],
4
- "sourcesContent": ["import * as React from 'react';\nexport { React };\n", "export type { DSComboboxMultiT } from '@elliemae/ds-form-combobox';\nexport * from './MultiCombobox.js';\n"],
5
- "mappings": "AAAA,YAAY,WAAW;ACCvB,cAAc;",
4
+ "sourcesContent": ["import * as React from 'react';\nexport { React };\n", "export type { DSComboboxMultiT } from '@elliemae/ds-form-combobox';\nexport { DSMultiComboBox, DSMultiComboBoxWithSchema } from './MultiCombobox.js';\n"],
5
+ "mappings": "AAAA,YAAY,WAAW;ACCvB,SAAS,iBAAiB,iCAAiC;",
6
6
  "names": []
7
7
  }
@@ -3,8 +3,5 @@
3
3
  "sideEffects": [
4
4
  "*.css",
5
5
  "*.scss"
6
- ],
7
- "publishConfig": {
8
- "access": "public"
9
- }
6
+ ]
10
7
  }
@@ -1,2 +1,2 @@
1
1
  export type { DSComboboxMultiT } from '@elliemae/ds-form-combobox';
2
- export * from './MultiCombobox.js';
2
+ export { DSMultiComboBox, DSMultiComboBoxWithSchema } from './MultiCombobox.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/ds-form-multi-combobox",
3
- "version": "3.70.0-next.6",
3
+ "version": "3.70.0-next.60",
4
4
  "license": "MIT",
5
5
  "description": "ICE MT - Dimsum - Controlled Form Multiple Combobox ",
6
6
  "files": [
@@ -36,21 +36,21 @@
36
36
  "indent": 4
37
37
  },
38
38
  "dependencies": {
39
- "@elliemae/ds-form-combobox": "3.70.0-next.6",
40
- "@elliemae/ds-props-helpers": "3.70.0-next.6"
39
+ "@elliemae/ds-form-combobox": "3.70.0-next.60",
40
+ "@elliemae/ds-props-helpers": "3.70.0-next.60"
41
41
  },
42
42
  "devDependencies": {
43
43
  "@elliemae/pui-theme": "~2.13.0",
44
44
  "jest": "^30.0.0",
45
- "styled-components": "~5.3.9",
45
+ "styled-components": "~5.3.11",
46
46
  "styled-system": "^5.1.5",
47
- "@elliemae/ds-monorepo-devops": "3.70.0-next.6"
47
+ "@elliemae/ds-monorepo-devops": "3.70.0-next.60"
48
48
  },
49
49
  "peerDependencies": {
50
50
  "@elliemae/pui-theme": "~2.13.0",
51
51
  "react": "^18.3.1",
52
52
  "react-dom": "^18.3.1",
53
- "styled-components": "~5.3.9",
53
+ "styled-components": "~5.3.11",
54
54
  "styled-system": "^5.1.5"
55
55
  },
56
56
  "publishConfig": {
@@ -66,4 +66,4 @@
66
66
  "build": "cross-env NODE_ENV=production node ../../../scripts/build/build.mjs",
67
67
  "checkDeps": "npx -yes ../../util/ds-codemods check-missing-packages --projectFolderPath=\"./\" --ignorePackagesGlobPattern=\"\" --ignoreFilesGlobPattern=\"**/test-ables/*,**/tests/*\""
68
68
  }
69
- }
69
+ }