@pixum/combobox 0.2.0 → 0.4.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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,28 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [0.4.0](https://git.pixum.net/design-system/component-library/compare/@pixum/combobox@0.3.0...@pixum/combobox@0.4.0) (2023-07-17)
7
+
8
+
9
+ ### Features
10
+
11
+ * **combobox:** fix export and onclick issue ([d0b1e94](https://git.pixum.net/design-system/component-library/commits/d0b1e94e7a97143550307a58702e219a0ba3f7ac))
12
+
13
+
14
+
15
+
16
+
17
+ # [0.3.0](https://git.pixum.net/design-system/component-library/compare/@pixum/combobox@0.2.0...@pixum/combobox@0.3.0) (2023-07-17)
18
+
19
+
20
+ ### Features
21
+
22
+ * **combobox:** fix export and onclick issue ([4522908](https://git.pixum.net/design-system/component-library/commits/4522908dca84b3b46b1a58e3f40526f1939fb984))
23
+
24
+
25
+
26
+
27
+
6
28
  # [0.2.0](https://git.pixum.net/design-system/component-library/compare/@pixum/combobox@0.1.0...@pixum/combobox@0.2.0) (2023-07-17)
7
29
 
8
30
 
package/lib/index.d.ts CHANGED
@@ -1,4 +1,3 @@
1
1
  import ComboBox from './ComboBox';
2
- export * from './ComboBox';
3
- export * from './types';
4
2
  export default ComboBox;
3
+ export * from './types';
package/lib/index.js CHANGED
@@ -14,7 +14,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
14
14
  };
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
16
  var ComboBox_1 = __importDefault(require("./ComboBox"));
17
- __exportStar(require("./ComboBox"), exports);
18
- __exportStar(require("./types"), exports);
19
17
  exports.default = ComboBox_1.default;
18
+ __exportStar(require("./types"), exports);
20
19
  //# sourceMappingURL=index.js.map
package/lib/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,wDAAiC;AAEjC,6CAA0B;AAC1B,0CAAuB;AAEvB,kBAAe,kBAAQ,CAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,wDAAiC;AACjC,kBAAe,kBAAQ,CAAA;AACvB,0CAAuB"}
package/package.json CHANGED
@@ -1,17 +1,12 @@
1
1
  {
2
2
  "name": "@pixum/combobox",
3
- "version": "0.2.0",
3
+ "version": "0.4.0",
4
4
  "main": "lib/index.js",
5
5
  "module": "lib/index.js",
6
6
  "license": "UNLICENSED",
7
- "dependencies": {
8
- "@pixum/button": "^1.14.0",
9
- "@pixum/svg-icon": "^1.14.4",
10
- "@pixum/text": "^1.2.2"
11
- },
12
7
  "sideEffects": false,
13
8
  "files": [
14
9
  "lib"
15
10
  ],
16
- "gitHead": "a615eb51780a78680bd413f3a5d64831fb384fde"
11
+ "gitHead": "9deaaf80b8cb047139dee2b5b50a35e281c823d3"
17
12
  }