@synerise/ds-core 1.9.0 → 1.9.1

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,12 @@
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.9.1](https://github.com/synerise/synerise-design/compare/@synerise/ds-core@1.9.0...@synerise/ds-core@1.9.1) (2026-01-07)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **core:** tz flag via prop should take precedence ([07d1ab0](https://github.com/synerise/synerise-design/commit/07d1ab0dbec9c2116b937bf8894d36a83880cf64))
11
+
6
12
  # [1.9.0](https://github.com/synerise/synerise-design/compare/@synerise/ds-core@1.8.2...@synerise/ds-core@1.9.0) (2025-12-19)
7
13
 
8
14
  ### Features
package/dist/i18n/en.json CHANGED
@@ -81,7 +81,7 @@
81
81
  "CREATOR": "Creator",
82
82
  "RAW_BUTTON_LABEL": "Raw",
83
83
  "SEARCH_PLACEHOLDER": "Search",
84
- "COLLECTOR_PLACEHOLDER": "Type value or paste multiple values separated by `,`",
84
+ "COLLECTOR_PLACEHOLDER": "Separate values by {delimiterShortCut} or type {escapeShortCut} to add string containing comma",
85
85
  "COLLECTOR_ADD": "Add",
86
86
  "COLLECTOR_CANCEL": "Cancel",
87
87
  "SEARCH_CLEAR_TOOLTIP": "Clear",
@@ -489,4 +489,4 @@
489
489
  "NO-SEARCH-RESULTS": "No tags found"
490
490
  }
491
491
  }
492
- }
492
+ }
package/dist/i18n/es.json CHANGED
@@ -77,7 +77,7 @@
77
77
  "CREATOR": "Creador",
78
78
  "RAW_BUTTON_LABEL": "Crudo",
79
79
  "SEARCH_PLACEHOLDER": "Buscar",
80
- "COLLECTOR_PLACEHOLDER": "Escribe valor o pega varios separados por `,`",
80
+ "COLLECTOR_PLACEHOLDER": "Separa valores por {delimiterShortCut} o escribe {escapeShortCut} para añadir una cadena con coma",
81
81
  "COLLECTOR_ADD": "Añadir",
82
82
  "COLLECTOR_CANCEL": "Cancelar",
83
83
  "SEARCH_CLEAR_TOOLTIP": "Borrar",
@@ -484,4 +484,4 @@
484
484
  "NO-SEARCH-RESULTS": "No se encontraron etiquetas"
485
485
  }
486
486
  }
487
- }
487
+ }
package/dist/i18n/pl.json CHANGED
@@ -93,7 +93,7 @@
93
93
  "CREATOR": "Kreator",
94
94
  "RAW_BUTTON_LABEL": "Wartości",
95
95
  "SEARCH_PLACEHOLDER": "Szukaj",
96
- "COLLECTOR_PLACEHOLDER": "Wpisz wartość lub wklej wiele oddzielonych `,`",
96
+ "COLLECTOR_PLACEHOLDER": "Rozdziel wartości za pomocą {delimiterShortCut} lub wpisz {escapeShortCut}, aby dodać wartość zawierającą przecinek",
97
97
  "COLLECTOR_ADD": "Dodaj",
98
98
  "COLLECTOR_CANCEL": "Anuluj",
99
99
  "SEARCH_CLEAR_TOOLTIP": "Wyczyść",
@@ -426,4 +426,4 @@
426
426
  "NO-SEARCH-RESULTS": "Nie znaleziono tagów"
427
427
  }
428
428
  }
429
- }
429
+ }
package/dist/i18n/pt.json CHANGED
@@ -77,7 +77,7 @@
77
77
  "CREATOR": "Criador",
78
78
  "RAW_BUTTON_LABEL": "Bruto",
79
79
  "SEARCH_PLACEHOLDER": "Pesquisar",
80
- "COLLECTOR_PLACEHOLDER": "Digite um valor ou cole múltiplos valores separados por `,`",
80
+ "COLLECTOR_PLACEHOLDER": "Separe valores por {delimiterShortCut} ou digite {escapeShortCut} para adicionar uma string contendo vírgula",
81
81
  "COLLECTOR_ADD": "Adicionar",
82
82
  "COLLECTOR_CANCEL": "Cancelar",
83
83
  "SEARCH_CLEAR_TOOLTIP": "Limpar",
@@ -486,4 +486,4 @@
486
486
  "NO-SEARCH-RESULTS": "Nenhuma tag encontrada"
487
487
  }
488
488
  }
489
- }
489
+ }
@@ -48,8 +48,9 @@ export var useDataFormatUtils = function useDataFormatUtils() {
48
48
  var _useIntl = useIntl(),
49
49
  globalTimeZone = _useIntl.timeZone;
50
50
  var getFormattedDate = useCallback(function (value, dateFormatIntl, timeFormatIntl, options) {
51
- var _value$toString;
52
- var valueInTimezone = globalTimeZone && applyTimeZoneOffset ? getLocalDateInTimeZone(value.toISOString(), globalTimeZone) : value;
51
+ var _options$applyTimeZon, _value$toString;
52
+ var valueInContextTimeZone = (_options$applyTimeZon = options == null ? void 0 : options.applyTimeZoneOffset) != null ? _options$applyTimeZon : applyTimeZoneOffset;
53
+ var valueInTimezone = globalTimeZone && valueInContextTimeZone ? getLocalDateInTimeZone(value.toISOString(), globalTimeZone) : value;
53
54
  if ((options == null ? void 0 : options.targetFormat) === DATETIME) {
54
55
  return convertDateToDateTimeString(valueInTimezone, dateFormatIntl, timeFormatIntl, languageIntl, options);
55
56
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-core",
3
- "version": "1.9.0",
3
+ "version": "1.9.1",
4
4
  "description": "Core Components for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "synerise/synerise-design",
@@ -57,5 +57,5 @@
57
57
  "hex-rgb": "^5.0.0",
58
58
  "less-vars-to-js": "^1.3.0"
59
59
  },
60
- "gitHead": "c638fc7e1af8aea55d466a643329fe499b2b3383"
60
+ "gitHead": "f38e4b2dca1d43c39af0b189c93808de62c11e9b"
61
61
  }