@synerise/ds-core 1.0.0 → 1.1.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,25 @@
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
+ # [1.1.0](https://github.com/synerise/synerise-design/compare/@synerise/ds-core@1.0.1...@synerise/ds-core@1.1.0) (2025-04-16)
7
+
8
+
9
+ ### Features
10
+
11
+ * **item-picker:** custom limit per section ([d45ec39](https://github.com/synerise/synerise-design/commit/d45ec3951828811a03ca89bdbb3f39c91a120e22))
12
+
13
+
14
+
15
+
16
+
17
+ ## [1.0.1](https://github.com/synerise/synerise-design/compare/@synerise/ds-core@1.0.0...@synerise/ds-core@1.0.1) (2025-03-18)
18
+
19
+ **Note:** Version bump only for package @synerise/ds-core
20
+
21
+
22
+
23
+
24
+
6
25
  ## [0.43.2](https://github.com/synerise/synerise-design/compare/@synerise/ds-core@0.43.1...@synerise/ds-core@0.43.2) (2025-03-10)
7
26
 
8
27
  **Note:** Version bump only for package @synerise/ds-core
package/dist/i18n/en.json CHANGED
@@ -104,6 +104,27 @@
104
104
  "SEARCH-CLEAR": "Clear",
105
105
  "TITLE": "Filters"
106
106
  },
107
+ "ITEM-PICKER-DROPDOWN": {
108
+ "NO-ITEMS": "No items",
109
+ "NO-SEARCH-RESULTS": "No results found",
110
+ "NO-SEARCH-RESULTS-FOLDER": "Please check your phrase or try searching in different folders",
111
+ "NO-ACTIONS": "No actions available",
112
+ "REFRESH": "Refresh",
113
+ "RECENTS": "Recent",
114
+ "ACTIONS": "Actions",
115
+ "RESULTS": "Results",
116
+ "ITEMS": "Items",
117
+ "LOADING-MORE": "Loading more items...",
118
+ "LOADING-ERROR": "Loading error",
119
+ "LOADED-ALL": "All items loaded",
120
+ "ERROR-TITLE": "Items can't be laoded",
121
+ "ERROR-DESCRIPTION": "Try refreshing the list later",
122
+ "SHOW-MORE": "Show more",
123
+ "CLEAR-SEARCH-TOOLTIP": "Clear",
124
+ "BACK-TOOLTIP": "Back",
125
+ "SEARCH-EVERYWHERE": "Search all folders",
126
+ "SEARCH-PLACEHOLDER": "Search for object or type {shortCutKey} to show actions"
127
+ },
107
128
  "ITEM-PICKER": {
108
129
  "CLEAR-CONFIRM": "Are you sure you want to remove this selection?",
109
130
  "YES-TEXT": "Yes",
package/dist/i18n/pl.json CHANGED
@@ -108,6 +108,27 @@
108
108
  "DELETE-CONFIRMATION-NO": "Anuluj",
109
109
  "SEARCH-PLACEHOLDER": "Szukaj"
110
110
  },
111
+ "ITEM-PICKER-DROPDOWN": {
112
+ "NO-ITEMS": "Brak obiektów",
113
+ "NO-SEARCH-RESULTS": "Nie znaleziono wyników",
114
+ "NO-SEARCH-RESULTS-FOLDER": "Sprawdź wyszukiwaną frazę lub wyszukaj we wszystkich folderach",
115
+ "NO-ACTIONS": "Brak akcji",
116
+ "REFRESH": "Odśwież",
117
+ "RECENTS": "Ostatnie",
118
+ "ACTIONS": "Akcje",
119
+ "RESULTS": "Wyniki",
120
+ "ITEMS": "Obiekty",
121
+ "LOADING-MORE": "Pobieram więcej...",
122
+ "LOADING-ERROR": "Błąd pobierania wyników",
123
+ "LOADED-ALL": "Wszystkie wyniki",
124
+ "ERROR-TITLE": "Błąd pobierania wyników",
125
+ "ERROR-DESCRIPTION": "Spróbuj odświeżyć listę wyników",
126
+ "SHOW-MORE": "Pokaż więcej",
127
+ "CLEAR-SEARCH-TOOLTIP": "Wyczyść",
128
+ "BACK-TOOLTIP": "Wstecz",
129
+ "SEARCH-EVERYWHERE": "Przeszukaj wszystkie foldery",
130
+ "SEARCH-PLACEHOLDER": "Wyszukaj obiekt lub wpisz {shortCutKey} aby wylistować akcje"
131
+ },
111
132
  "ITEM-PICKER": {
112
133
  "CLEAR-CONFIRM": "Czy na pewno chcesz usunąć to zaznaczenie?",
113
134
  "YES-TEXT": "Tak",
@@ -1,6 +1,6 @@
1
- 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); }
2
- function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; _setPrototypeOf(subClass, superClass); }
3
- function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
1
+ function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
2
+ function _inheritsLoose(t, o) { t.prototype = Object.create(o.prototype), t.prototype.constructor = t, _setPrototypeOf(t, o); }
3
+ function _setPrototypeOf(t, e) { return _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function (t, e) { return t.__proto__ = e, t; }, _setPrototypeOf(t, e); }
4
4
  import React, { Component } from 'react';
5
5
  import { IntlProvider } from 'react-intl';
6
6
  import { flatten } from 'flat';
@@ -12,7 +12,6 @@ var getLangForCode = function getLangForCode(code) {
12
12
  return code.substring(0, 2);
13
13
  };
14
14
  var LocaleProvider = /*#__PURE__*/function (_Component) {
15
- _inheritsLoose(LocaleProvider, _Component);
16
15
  function LocaleProvider() {
17
16
  var _this;
18
17
  for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
@@ -25,6 +24,7 @@ var LocaleProvider = /*#__PURE__*/function (_Component) {
25
24
  };
26
25
  return _this;
27
26
  }
27
+ _inheritsLoose(LocaleProvider, _Component);
28
28
  var _proto = LocaleProvider.prototype;
29
29
  _proto.componentDidMount = function componentDidMount() {
30
30
  var _this2 = this;
@@ -1,4 +1,4 @@
1
- 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); }
1
+ function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
2
2
  import React from 'react';
3
3
  import { ThemeProvider as ThemeProviderBase } from 'styled-components';
4
4
  import dsTheme from './theme';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-core",
3
- "version": "1.0.0",
3
+ "version": "1.1.0",
4
4
  "description": "Core Components for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "synerise/synerise-design",
@@ -47,5 +47,5 @@
47
47
  "hex-rgb": "^5.0.0",
48
48
  "less-vars-to-js": "^1.3.0"
49
49
  },
50
- "gitHead": "e4c3690238a44b584b9ea41e4aa52b1eec42174b"
50
+ "gitHead": "6735f9babfeef53122f54ca86cba5f581e8870d9"
51
51
  }