@synerise/ds-select 0.16.24 → 0.16.26

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,22 @@
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.16.26](https://github.com/synerise/synerise-design/compare/@synerise/ds-select@0.16.25...@synerise/ds-select@0.16.26) (2024-11-21)
7
+
8
+ **Note:** Version bump only for package @synerise/ds-select
9
+
10
+
11
+
12
+
13
+
14
+ ## [0.16.25](https://github.com/synerise/synerise-design/compare/@synerise/ds-select@0.16.24...@synerise/ds-select@0.16.25) (2024-11-12)
15
+
16
+ **Note:** Version bump only for package @synerise/ds-select
17
+
18
+
19
+
20
+
21
+
6
22
  ## [0.16.24](https://github.com/synerise/synerise-design/compare/@synerise/ds-select@0.16.23...@synerise/ds-select@0.16.24) (2024-11-12)
7
23
 
8
24
  **Note:** Version bump only for package @synerise/ds-select
package/dist/Select.js CHANGED
@@ -1,12 +1,18 @@
1
1
  var _excluded = ["label", "description", "errorText", "error", "tooltip", "tooltipConfig", "clearTooltip", "prefixel", "suffixel", "style", "listHeight", "className", "getPopupContainer", "grey", "dropdownClassName", "asFormElement"];
2
2
 
3
- function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
3
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
4
4
 
5
5
  function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
6
6
 
7
- function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; subClass.__proto__ = superClass; }
7
+ function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; _setPrototypeOf(subClass, superClass); }
8
8
 
9
- function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
9
+ function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
10
+
11
+ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
12
+
13
+ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
14
+
15
+ function _toPrimitive(input, hint) { if (typeof input !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (typeof res !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
10
16
 
11
17
  import React, { Component } from 'react';
12
18
  import { ErrorText, Description } from '@synerise/ds-typography';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-select",
3
- "version": "0.16.24",
3
+ "version": "0.16.26",
4
4
  "description": "Select UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "synerise/synerise-design",
@@ -34,11 +34,11 @@
34
34
  ],
35
35
  "types": "dist/index.d.ts",
36
36
  "dependencies": {
37
- "@synerise/ds-icon": "^0.66.3",
38
- "@synerise/ds-input": "^0.24.12",
39
- "@synerise/ds-tooltip": "^0.14.47",
40
- "@synerise/ds-typography": "^0.16.4",
41
- "@synerise/ds-utils": "^0.31.0",
37
+ "@synerise/ds-icon": "^0.67.0",
38
+ "@synerise/ds-input": "^0.24.14",
39
+ "@synerise/ds-tooltip": "^0.14.49",
40
+ "@synerise/ds-typography": "^0.16.6",
41
+ "@synerise/ds-utils": "^0.31.2",
42
42
  "classnames": "2.3.2"
43
43
  },
44
44
  "peerDependencies": {
@@ -47,5 +47,5 @@
47
47
  "react": ">=16.9.0 <= 17.0.2",
48
48
  "styled-components": "5.0.1"
49
49
  },
50
- "gitHead": "1bb66dcc360a650e81b9bd195d5b77aa8ae2d308"
50
+ "gitHead": "05f083c767e2cec3c2f91c9475aee89852a77d6c"
51
51
  }