@transferwise/components 46.10.0 → 46.11.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.
Files changed (67) hide show
  1. package/README.md +14 -1
  2. package/build/i18n/de.json +1 -0
  3. package/build/i18n/en.json +1 -0
  4. package/build/i18n/es.json +1 -0
  5. package/build/i18n/fr.json +1 -0
  6. package/build/i18n/hu.json +1 -0
  7. package/build/i18n/id.json +1 -0
  8. package/build/i18n/it.json +1 -0
  9. package/build/i18n/ja.json +1 -0
  10. package/build/i18n/pl.json +1 -0
  11. package/build/i18n/pt.json +1 -0
  12. package/build/i18n/ro.json +1 -0
  13. package/build/i18n/ru.json +1 -0
  14. package/build/i18n/th.json +1 -0
  15. package/build/i18n/tr.json +1 -0
  16. package/build/i18n/zh-CN.json +1 -0
  17. package/build/i18n/zh-HK.json +1 -0
  18. package/build/index.esm.js +56 -33
  19. package/build/index.esm.js.map +1 -1
  20. package/build/index.js +56 -33
  21. package/build/index.js.map +1 -1
  22. package/build/main.css +6 -0
  23. package/build/mocks.esm.js +40 -0
  24. package/build/mocks.esm.js.map +1 -0
  25. package/build/mocks.js +43 -0
  26. package/build/mocks.js.map +1 -0
  27. package/build/styles/drawer/Drawer.css +3 -0
  28. package/build/styles/main.css +6 -0
  29. package/build/styles/modal/Modal.css +3 -0
  30. package/build/types/mocks.d.ts +9 -0
  31. package/build/types/mocks.d.ts.map +1 -0
  32. package/build/types/phoneNumberInput/PhoneNumberInput.d.ts.map +1 -1
  33. package/build/types/phoneNumberInput/PhoneNumberInput.messages.d.ts +8 -0
  34. package/build/types/phoneNumberInput/PhoneNumberInput.messages.d.ts.map +1 -0
  35. package/build/types/test-utils/window-mock.d.ts.map +1 -1
  36. package/package.json +22 -6
  37. package/src/dimmer/Dimmer.spec.js +0 -4
  38. package/src/drawer/Drawer.css +3 -0
  39. package/src/drawer/Drawer.less +4 -0
  40. package/src/i18n/de.json +1 -0
  41. package/src/i18n/en.json +1 -0
  42. package/src/i18n/es.json +1 -0
  43. package/src/i18n/fr.json +1 -0
  44. package/src/i18n/hu.json +1 -0
  45. package/src/i18n/id.json +1 -0
  46. package/src/i18n/it.json +1 -0
  47. package/src/i18n/ja.json +1 -0
  48. package/src/i18n/pl.json +1 -0
  49. package/src/i18n/pt.json +1 -0
  50. package/src/i18n/ro.json +1 -0
  51. package/src/i18n/ru.json +1 -0
  52. package/src/i18n/th.json +1 -0
  53. package/src/i18n/tr.json +1 -0
  54. package/src/i18n/zh-CN.json +1 -0
  55. package/src/i18n/zh-HK.json +1 -0
  56. package/src/inputs/SelectInput.story.tsx +221 -315
  57. package/src/main.css +6 -0
  58. package/src/mocks.ts +48 -0
  59. package/src/modal/Modal.css +3 -0
  60. package/src/modal/Modal.less +4 -0
  61. package/src/modal/Modal.story.tsx +55 -21
  62. package/src/phoneNumberInput/PhoneNumberInput.messages.ts +8 -0
  63. package/src/phoneNumberInput/PhoneNumberInput.spec.js +12 -7
  64. package/src/phoneNumberInput/PhoneNumberInput.tsx +3 -2
  65. package/src/snackbar/Snackbar.spec.js +0 -4
  66. package/src/test-utils/window-mock.ts +7 -23
  67. package/src/withNextPortal/withNextPortal.spec.js +0 -4
package/build/main.css CHANGED
@@ -1884,6 +1884,9 @@ button.np-option {
1884
1884
  overflow-y: auto;
1885
1885
  flex: 1;
1886
1886
  }
1887
+ .np-drawer .np-drawer-content .np-theme-personal {
1888
+ background-color: transparent;
1889
+ }
1887
1890
  .np-drawer .np-drawer-footer,
1888
1891
  .np-drawer .np-drawer-content {
1889
1892
  padding: 16px;
@@ -3197,6 +3200,9 @@ a {
3197
3200
  min-height: var(--size-32);
3198
3201
  padding-bottom: 4px !important;
3199
3202
  }
3203
+ .tw-modal .tw-modal-content .np-theme-personal {
3204
+ background-color: transparent;
3205
+ }
3200
3206
  .tw-modal table,
3201
3207
  .tw-modal .table {
3202
3208
  background-color: transparent;
@@ -0,0 +1,40 @@
1
+ const defaultStubGlobal = (name, value) => {
2
+ Object.defineProperty(globalThis, name, {
3
+ value,
4
+ writable: true,
5
+ enumerable: true,
6
+ configurable: true
7
+ });
8
+ };
9
+ function mockMatchMedia({
10
+ fn,
11
+ stubGlobal = defaultStubGlobal
12
+ }) {
13
+ stubGlobal('matchMedia', fn(query => {
14
+ const matches = /^\(min-width: (\d+)px\)$/u.exec(query);
15
+ const minWidth = matches != null ? Number(matches[1]) : undefined;
16
+ return {
17
+ matches: minWidth != null ? window.innerWidth >= minWidth : false,
18
+ media: query,
19
+ onchange: null,
20
+ addListener: fn(),
21
+ removeListener: fn(),
22
+ addEventListener: fn(),
23
+ removeEventListener: fn(),
24
+ dispatchEvent: fn()
25
+ };
26
+ }));
27
+ }
28
+ function mockResizeObserver({
29
+ fn,
30
+ stubGlobal = defaultStubGlobal
31
+ }) {
32
+ stubGlobal('ResizeObserver', fn(() => ({
33
+ observe: fn(),
34
+ unobserve: fn(),
35
+ disconnect: fn()
36
+ })));
37
+ }
38
+
39
+ export { mockMatchMedia, mockResizeObserver };
40
+ //# sourceMappingURL=mocks.esm.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"mocks.esm.js","sources":["../../src/mocks.ts"],"sourcesContent":[null],"names":["defaultStubGlobal","name","value","Object","defineProperty","globalThis","writable","enumerable","configurable"],"mappings":"AAAA,MAAeA,iBAAQ,GAAEA,CAAAC,IAAA,EAAAC,KAAa,KAAK;AAE3CC,EAAAA,MAAU,CAAgBC,cAAA,CAAAC,UAAA,EAAAJ,IAAA,EAAA;IACpBC;AACMI,IAAAA,QAAG,EAAA,IAAA;AACdC,IAAAA,UAAA,EAAA,IAAA;AAWeC,IAAAA,YAAA,EAAA,IAAA;AAoBA,GAAA,CAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
package/build/mocks.js ADDED
@@ -0,0 +1,43 @@
1
+ 'use strict';
2
+
3
+ const defaultStubGlobal = (name, value) => {
4
+ Object.defineProperty(globalThis, name, {
5
+ value,
6
+ writable: true,
7
+ enumerable: true,
8
+ configurable: true
9
+ });
10
+ };
11
+ function mockMatchMedia({
12
+ fn,
13
+ stubGlobal = defaultStubGlobal
14
+ }) {
15
+ stubGlobal('matchMedia', fn(query => {
16
+ const matches = /^\(min-width: (\d+)px\)$/u.exec(query);
17
+ const minWidth = matches != null ? Number(matches[1]) : undefined;
18
+ return {
19
+ matches: minWidth != null ? window.innerWidth >= minWidth : false,
20
+ media: query,
21
+ onchange: null,
22
+ addListener: fn(),
23
+ removeListener: fn(),
24
+ addEventListener: fn(),
25
+ removeEventListener: fn(),
26
+ dispatchEvent: fn()
27
+ };
28
+ }));
29
+ }
30
+ function mockResizeObserver({
31
+ fn,
32
+ stubGlobal = defaultStubGlobal
33
+ }) {
34
+ stubGlobal('ResizeObserver', fn(() => ({
35
+ observe: fn(),
36
+ unobserve: fn(),
37
+ disconnect: fn()
38
+ })));
39
+ }
40
+
41
+ exports.mockMatchMedia = mockMatchMedia;
42
+ exports.mockResizeObserver = mockResizeObserver;
43
+ //# sourceMappingURL=mocks.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"mocks.js","sources":["../../src/mocks.ts"],"sourcesContent":[null],"names":["defaultStubGlobal","name","value","Object","defineProperty","globalThis","writable","enumerable","configurable"],"mappings":";;AAAA,MAAeA,iBAAQ,GAAEA,CAAAC,IAAA,EAAAC,KAAa,KAAK;AAE3CC,EAAAA,MAAU,CAAgBC,cAAA,CAAAC,UAAA,EAAAJ,IAAA,EAAA;IACpBC;AACMI,IAAAA,QAAG,EAAA,IAAA;AACdC,IAAAA,UAAA,EAAA,IAAA;AAWeC,IAAAA,YAAA,EAAA,IAAA;AAoBA,GAAA,CAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -71,6 +71,9 @@
71
71
  overflow-y: auto;
72
72
  flex: 1;
73
73
  }
74
+ .np-drawer .np-drawer-content .np-theme-personal {
75
+ background-color: transparent;
76
+ }
74
77
  .np-drawer .np-drawer-footer,
75
78
  .np-drawer .np-drawer-content {
76
79
  padding: 16px;
@@ -1884,6 +1884,9 @@ button.np-option {
1884
1884
  overflow-y: auto;
1885
1885
  flex: 1;
1886
1886
  }
1887
+ .np-drawer .np-drawer-content .np-theme-personal {
1888
+ background-color: transparent;
1889
+ }
1887
1890
  .np-drawer .np-drawer-footer,
1888
1891
  .np-drawer .np-drawer-content {
1889
1892
  padding: 16px;
@@ -3197,6 +3200,9 @@ a {
3197
3200
  min-height: var(--size-32);
3198
3201
  padding-bottom: 4px !important;
3199
3202
  }
3203
+ .tw-modal .tw-modal-content .np-theme-personal {
3204
+ background-color: transparent;
3205
+ }
3200
3206
  .tw-modal table,
3201
3207
  .tw-modal .table {
3202
3208
  background-color: transparent;
@@ -82,6 +82,9 @@
82
82
  min-height: var(--size-32);
83
83
  padding-bottom: 4px !important;
84
84
  }
85
+ .tw-modal .tw-modal-content .np-theme-personal {
86
+ background-color: transparent;
87
+ }
85
88
  .tw-modal table,
86
89
  .tw-modal .table {
87
90
  background-color: transparent;
@@ -0,0 +1,9 @@
1
+ type StubGlobal = (name: PropertyKey, value: unknown) => void;
2
+ interface GlobalMockParams {
3
+ fn: <T extends (...args: never[]) => unknown>(implementation?: T) => T;
4
+ stubGlobal?: StubGlobal;
5
+ }
6
+ export declare function mockMatchMedia({ fn, stubGlobal }: GlobalMockParams): void;
7
+ export declare function mockResizeObserver({ fn, stubGlobal }: GlobalMockParams): void;
8
+ export {};
9
+ //# sourceMappingURL=mocks.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"mocks.d.ts","sourceRoot":"","sources":["../../src/mocks.ts"],"names":[],"mappings":"AAAA,KAAK,UAAU,GAAG,CAAC,IAAI,EAAE,WAAW,EAAE,KAAK,EAAE,OAAO,KAAK,IAAI,CAAC;AAE9D,UAAU,gBAAgB;IACxB,EAAE,EAAE,CAAC,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,KAAK,EAAE,KAAK,OAAO,EAAE,cAAc,CAAC,EAAE,CAAC,KAAK,CAAC,CAAC;IACvE,UAAU,CAAC,EAAE,UAAU,CAAC;CACzB;AAWD,wBAAgB,cAAc,CAAC,EAAE,EAAE,EAAE,UAA8B,EAAE,EAAE,gBAAgB,QAkBtF;AAED,wBAAgB,kBAAkB,CAAC,EAAE,EAAE,EAAE,UAA8B,EAAE,EAAE,gBAAgB,QAW1F"}
@@ -1 +1 @@
1
- {"version":3,"file":"PhoneNumberInput.d.ts","sourceRoot":"","sources":["../../../src/phoneNumberInput/PhoneNumberInput.tsx"],"names":[],"mappings":";AAGA,OAAO,EAAQ,SAAS,EAAE,UAAU,EAAE,SAAS,EAAE,MAAM,WAAW,CAAC;AACnE,OAAO,EAAyC,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AAiBhG,MAAM,WAAW,qBAAqB;IACpC,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI,EAAE,MAAM,EAAE,MAAM,KAAK,IAAI,CAAC;IACzD,OAAO,CAAC,EAAE,KAAK,CAAC,iBAAiB,CAAC,gBAAgB,CAAC,CAAC;IACpD,MAAM,CAAC,EAAE,KAAK,CAAC,iBAAiB,CAAC,gBAAgB,CAAC,CAAC;IACnD,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,IAAI,CAAC,EAAE,SAAS,GAAG,UAAU,GAAG,SAAS,CAAC;IAC1C,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,WAAW,CAAC,EAAE,OAAO,CAAC,gBAAgB,CAAC,MAAM,GAAG,IAAI,CAAC,CAAC,CAAC;IACvD,8DAA8D;IAC9D,iBAAiB,CAAC,EAAE,MAAM,EAAE,CAAC;CAC9B;AAKD,QAAA,MAAM,gBAAgB,4JAcnB,qBAAqB,gCAuIvB,CAAC;AAEF,eAAe,gBAAgB,CAAC"}
1
+ {"version":3,"file":"PhoneNumberInput.d.ts","sourceRoot":"","sources":["../../../src/phoneNumberInput/PhoneNumberInput.tsx"],"names":[],"mappings":";AAGA,OAAO,EAAQ,SAAS,EAAE,UAAU,EAAE,SAAS,EAAE,MAAM,WAAW,CAAC;AACnE,OAAO,EAAyC,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AAkBhG,MAAM,WAAW,qBAAqB;IACpC,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI,EAAE,MAAM,EAAE,MAAM,KAAK,IAAI,CAAC;IACzD,OAAO,CAAC,EAAE,KAAK,CAAC,iBAAiB,CAAC,gBAAgB,CAAC,CAAC;IACpD,MAAM,CAAC,EAAE,KAAK,CAAC,iBAAiB,CAAC,gBAAgB,CAAC,CAAC;IACnD,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,IAAI,CAAC,EAAE,SAAS,GAAG,UAAU,GAAG,SAAS,CAAC;IAC1C,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,WAAW,CAAC,EAAE,OAAO,CAAC,gBAAgB,CAAC,MAAM,GAAG,IAAI,CAAC,CAAC,CAAC;IACvD,8DAA8D;IAC9D,iBAAiB,CAAC,EAAE,MAAM,EAAE,CAAC;CAC9B;AAKD,QAAA,MAAM,gBAAgB,4JAcnB,qBAAqB,gCAuIvB,CAAC;AAEF,eAAe,gBAAgB,CAAC"}
@@ -0,0 +1,8 @@
1
+ declare const _default: {
2
+ selectInputPlaceholder: {
3
+ id: string;
4
+ defaultMessage: string;
5
+ };
6
+ };
7
+ export default _default;
8
+ //# sourceMappingURL=PhoneNumberInput.messages.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PhoneNumberInput.messages.d.ts","sourceRoot":"","sources":["../../../src/phoneNumberInput/PhoneNumberInput.messages.ts"],"names":[],"mappings":";;;;;;AAEA,wBAKG"}
@@ -1 +1 @@
1
- {"version":3,"file":"window-mock.d.ts","sourceRoot":"","sources":["../../../src/test-utils/window-mock.ts"],"names":[],"mappings":"AAAA,wBAAgB,cAAc,SAkB7B;AAED,wBAAgB,kBAAkB,SASjC"}
1
+ {"version":3,"file":"window-mock.d.ts","sourceRoot":"","sources":["../../../src/test-utils/window-mock.ts"],"names":[],"mappings":"AAKA,wBAAgB,cAAc,SAE7B;AAED,wBAAgB,kBAAkB,SAIjC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@transferwise/components",
3
- "version": "46.10.0",
3
+ "version": "46.11.0",
4
4
  "description": "Neptune React components",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -12,6 +12,22 @@
12
12
  "sideEffects": [
13
13
  "*.css"
14
14
  ],
15
+ "exports": {
16
+ ".": {
17
+ "types": "./build/types/index.d.ts",
18
+ "import": "./build/index.esm.js",
19
+ "require": "./build/index.js"
20
+ },
21
+ "./mocks": {
22
+ "types": "./build/types/mocks.d.ts",
23
+ "import": "./build/mocks.esm.js",
24
+ "require": "./build/mocks.js"
25
+ },
26
+ "./build/*": "./build/*.js",
27
+ "./build/*.css": "./build/*.css",
28
+ "./build/*.json": "./build/*.json",
29
+ "./build/i18n": "./build/i18n"
30
+ },
15
31
  "main": "./build/index.js",
16
32
  "module": "./build/index.esm.js",
17
33
  "types": "./build/types/index.d.ts",
@@ -53,7 +69,7 @@
53
69
  "@transferwise/neptune-tokens": "^8.8.1",
54
70
  "@tsconfig/recommended": "^1.0.2",
55
71
  "@types/babel__core": "^7.20.1",
56
- "@types/jest": "^26.0.20",
72
+ "@types/jest": "^29.5.12",
57
73
  "@types/node": "^14.14.31",
58
74
  "@types/react": "^17.0.65",
59
75
  "@types/react-dom": "^17.0.20",
@@ -65,8 +81,8 @@
65
81
  "babel-plugin-formatjs": "^10.5.13",
66
82
  "babel-plugin-inline-react-svg": "^2.0.2",
67
83
  "enzyme": "^3.11.0",
68
- "jest": "^27.0.6",
69
- "jest-cli": "^27.0.6",
84
+ "jest": "^29.7.0",
85
+ "jest-environment-jsdom": "^29.7.0",
70
86
  "jest-fetch-mock": "^3.0.3",
71
87
  "lodash.times": "^4.3.2",
72
88
  "react-intl": "^5.10.0",
@@ -133,8 +149,8 @@
133
149
  "build:copy-css": "cpx 'src/main.css' build/ & cpx 'src/**/*.css' build/styles/",
134
150
  "build:copy-lang": "cpx 'src/i18n/*.json' build/i18n && cpx 'src/i18n/index.js' build/i18n",
135
151
  "docs": "pnpm build",
136
- "test": "jest --env=jsdom --maxWorkers=4",
137
- "test:watch": "jest --watch --env=jsdom",
152
+ "test": "jest",
153
+ "test:watch": "jest --watch",
138
154
  "lint": "pnpm run lint:check",
139
155
  "lint:check": "npm-run-all --parallel lint:check:*",
140
156
  "lint:check:format": "prettier --check --ignore-path ../../.prettierignore . || echo \"Prettier failed. Remove this to make this a failure\"",
@@ -33,10 +33,6 @@ describe('Dimmer', () => {
33
33
  mount(<DimmerAppendingToBody {...props} />);
34
34
 
35
35
  expect(ReactDOM.createPortal).toHaveBeenCalledTimes(1);
36
- /** Using toBeCalledWith was not matching properly */
37
- const [comp, body] = ReactDOM.createPortal.mock.calls[0];
38
- expect(comp).toMatchObject(component);
39
- expect(body).toMatchObject(document.body);
40
36
  });
41
37
 
42
38
  it('renders with right props', () => {
@@ -71,6 +71,9 @@
71
71
  overflow-y: auto;
72
72
  flex: 1;
73
73
  }
74
+ .np-drawer .np-drawer-content .np-theme-personal {
75
+ background-color: transparent;
76
+ }
74
77
  .np-drawer .np-drawer-footer,
75
78
  .np-drawer .np-drawer-content {
76
79
  padding: 16px;
@@ -66,6 +66,10 @@
66
66
  .np-drawer-content {
67
67
  overflow-y: auto;
68
68
  flex: 1;
69
+
70
+ .np-theme-personal {
71
+ background-color: transparent;
72
+ }
69
73
  }
70
74
 
71
75
  .np-drawer-footer,
package/src/i18n/de.json CHANGED
@@ -20,6 +20,7 @@
20
20
  "neptune.Info.ariaLabel": "Weitere Informationen",
21
21
  "neptune.Link.opensInNewTab": "(wird in einem neuen Tab geöffnet)",
22
22
  "neptune.MoneyInput.Select.placeholder": "Wähle eine der Möglichkeiten aus...",
23
+ "neptune.PhoneNumberInput.SelectInput.placeholder": "Wähle eine der Möglichkeiten aus...",
23
24
  "neptune.Select.searchPlaceholder": "Wird gesucht...",
24
25
  "neptune.SelectInput.noResultsFound": "Keine Ergebnisse gefunden",
25
26
  "neptune.Summary.statusDone": "Schritt erledigt",
package/src/i18n/en.json CHANGED
@@ -20,6 +20,7 @@
20
20
  "neptune.Info.ariaLabel": "More information",
21
21
  "neptune.Link.opensInNewTab": "(opens in new tab)",
22
22
  "neptune.MoneyInput.Select.placeholder": "Select an option...",
23
+ "neptune.PhoneNumberInput.SelectInput.placeholder": "Select an option...",
23
24
  "neptune.Select.searchPlaceholder": "Search...",
24
25
  "neptune.SelectInput.noResultsFound": "No results found",
25
26
  "neptune.Summary.statusDone": "Item done",
package/src/i18n/es.json CHANGED
@@ -20,6 +20,7 @@
20
20
  "neptune.Info.ariaLabel": "Más información",
21
21
  "neptune.Link.opensInNewTab": "(se abre en una pestaña nueva)",
22
22
  "neptune.MoneyInput.Select.placeholder": "Selecciona una opción...",
23
+ "neptune.PhoneNumberInput.SelectInput.placeholder": "Selecciona una opción...",
23
24
  "neptune.Select.searchPlaceholder": "Buscar...",
24
25
  "neptune.SelectInput.noResultsFound": "No se han encontrado resultados",
25
26
  "neptune.Summary.statusDone": "Apartado listo",
package/src/i18n/fr.json CHANGED
@@ -20,6 +20,7 @@
20
20
  "neptune.Info.ariaLabel": "Plus d'informations",
21
21
  "neptune.Link.opensInNewTab": "(ouvre dans un nouvel onglet)",
22
22
  "neptune.MoneyInput.Select.placeholder": "Sélectionner une option...",
23
+ "neptune.PhoneNumberInput.SelectInput.placeholder": "Sélectionnez une option…",
23
24
  "neptune.Select.searchPlaceholder": "Recherche...",
24
25
  "neptune.SelectInput.noResultsFound": "Aucun résultat trouvé",
25
26
  "neptune.Summary.statusDone": "Validé",
package/src/i18n/hu.json CHANGED
@@ -20,6 +20,7 @@
20
20
  "neptune.Info.ariaLabel": "További információ",
21
21
  "neptune.Link.opensInNewTab": "(új lapon nyílik meg)",
22
22
  "neptune.MoneyInput.Select.placeholder": "Válassz ki egy lehetőséget...",
23
+ "neptune.PhoneNumberInput.SelectInput.placeholder": "Válassz ki egy lehetőséget...",
23
24
  "neptune.Select.searchPlaceholder": "Keresés...",
24
25
  "neptune.SelectInput.noResultsFound": "Nincs találat",
25
26
  "neptune.Summary.statusDone": "Kész",
package/src/i18n/id.json CHANGED
@@ -20,6 +20,7 @@
20
20
  "neptune.Info.ariaLabel": "Informasi lebih lanjut",
21
21
  "neptune.Link.opensInNewTab": "(terbuka di tab baru)",
22
22
  "neptune.MoneyInput.Select.placeholder": "Pilih opsi...",
23
+ "neptune.PhoneNumberInput.SelectInput.placeholder": "Pilih opsi...",
23
24
  "neptune.Select.searchPlaceholder": "Cari...",
24
25
  "neptune.SelectInput.noResultsFound": "Hasil tidak ditemukan",
25
26
  "neptune.Summary.statusDone": "Item selesai",
package/src/i18n/it.json CHANGED
@@ -20,6 +20,7 @@
20
20
  "neptune.Info.ariaLabel": "Maggiori informazioni",
21
21
  "neptune.Link.opensInNewTab": "(si apre in una nuova scheda)",
22
22
  "neptune.MoneyInput.Select.placeholder": "Seleziona un'opzione...",
23
+ "neptune.PhoneNumberInput.SelectInput.placeholder": "Seleziona un'opzione...",
23
24
  "neptune.Select.searchPlaceholder": "Cerca...",
24
25
  "neptune.SelectInput.noResultsFound": "Nessun risultato trovato",
25
26
  "neptune.Summary.statusDone": "Completato",
package/src/i18n/ja.json CHANGED
@@ -20,6 +20,7 @@
20
20
  "neptune.Info.ariaLabel": "詳細",
21
21
  "neptune.Link.opensInNewTab": "(新しいタブで開きます)",
22
22
  "neptune.MoneyInput.Select.placeholder": "選択してください...",
23
+ "neptune.PhoneNumberInput.SelectInput.placeholder": "選択してください…",
23
24
  "neptune.Select.searchPlaceholder": "検索... ",
24
25
  "neptune.SelectInput.noResultsFound": "結果が見つかりませんでした",
25
26
  "neptune.Summary.statusDone": "完了",
package/src/i18n/pl.json CHANGED
@@ -20,6 +20,7 @@
20
20
  "neptune.Info.ariaLabel": "Więcej informacji",
21
21
  "neptune.Link.opensInNewTab": "(otworzy się w nowej zakładce)",
22
22
  "neptune.MoneyInput.Select.placeholder": "Wybierz opcję...",
23
+ "neptune.PhoneNumberInput.SelectInput.placeholder": "Wybierz opcję...",
23
24
  "neptune.Select.searchPlaceholder": "Wyszukaj...",
24
25
  "neptune.SelectInput.noResultsFound": "Nie znaleziono wyników",
25
26
  "neptune.Summary.statusDone": "Czynność wykonana",
package/src/i18n/pt.json CHANGED
@@ -20,6 +20,7 @@
20
20
  "neptune.Info.ariaLabel": "Mais informações",
21
21
  "neptune.Link.opensInNewTab": "(abre em uma nova aba)",
22
22
  "neptune.MoneyInput.Select.placeholder": "Escolha uma opção...",
23
+ "neptune.PhoneNumberInput.SelectInput.placeholder": "Escolha uma opção...",
23
24
  "neptune.Select.searchPlaceholder": "Buscar...",
24
25
  "neptune.SelectInput.noResultsFound": "Nenhum resultado encontrado",
25
26
  "neptune.Summary.statusDone": "Pronto",
package/src/i18n/ro.json CHANGED
@@ -20,6 +20,7 @@
20
20
  "neptune.Info.ariaLabel": "Mai multe informații",
21
21
  "neptune.Link.opensInNewTab": "(se deschide într-o filă nouă)",
22
22
  "neptune.MoneyInput.Select.placeholder": "Selectează o opţiune...",
23
+ "neptune.PhoneNumberInput.SelectInput.placeholder": "Selectează o opțiune...",
23
24
  "neptune.Select.searchPlaceholder": "Caută...",
24
25
  "neptune.SelectInput.noResultsFound": "Nu s-a găsit niciun rezultat",
25
26
  "neptune.Summary.statusDone": "Finalizat",
package/src/i18n/ru.json CHANGED
@@ -20,6 +20,7 @@
20
20
  "neptune.Info.ariaLabel": "Подробнее",
21
21
  "neptune.Link.opensInNewTab": "(откроется в новой вкладке)",
22
22
  "neptune.MoneyInput.Select.placeholder": "Выберите вариант...",
23
+ "neptune.PhoneNumberInput.SelectInput.placeholder": "Выберите вариант...",
23
24
  "neptune.Select.searchPlaceholder": "Поиск...",
24
25
  "neptune.SelectInput.noResultsFound": "Ничего не найдено",
25
26
  "neptune.Summary.statusDone": "Этап завершен",
package/src/i18n/th.json CHANGED
@@ -20,6 +20,7 @@
20
20
  "neptune.Info.ariaLabel": "ข้อมูลเพิ่มเติม",
21
21
  "neptune.Link.opensInNewTab": "(เปิดในแท็บใหม่)",
22
22
  "neptune.MoneyInput.Select.placeholder": "เลือกตัวเลือก...",
23
+ "neptune.PhoneNumberInput.SelectInput.placeholder": "เลือกตัวเลือก...",
23
24
  "neptune.Select.searchPlaceholder": "ค้นหา...",
24
25
  "neptune.SelectInput.noResultsFound": "ไม่พบผลลัพธ์",
25
26
  "neptune.Summary.statusDone": "รายการที่ทำแล้ว",
package/src/i18n/tr.json CHANGED
@@ -20,6 +20,7 @@
20
20
  "neptune.Info.ariaLabel": "Daha fazla bilgi",
21
21
  "neptune.Link.opensInNewTab": "(yeni sekmede açılır)",
22
22
  "neptune.MoneyInput.Select.placeholder": "Bir seçenek seçin...",
23
+ "neptune.PhoneNumberInput.SelectInput.placeholder": "Bir seçenek seçin...",
23
24
  "neptune.Select.searchPlaceholder": "Ara...",
24
25
  "neptune.SelectInput.noResultsFound": "Sonuç bulunamadı",
25
26
  "neptune.Summary.statusDone": "Tamamlanan aşama",
@@ -20,6 +20,7 @@
20
20
  "neptune.Info.ariaLabel": "更多信息",
21
21
  "neptune.Link.opensInNewTab": "(在新标签页中打开)",
22
22
  "neptune.MoneyInput.Select.placeholder": "请选择...",
23
+ "neptune.PhoneNumberInput.SelectInput.placeholder": "选择一个选项...",
23
24
  "neptune.Select.searchPlaceholder": "搜索",
24
25
  "neptune.SelectInput.noResultsFound": "找不到结果",
25
26
  "neptune.Summary.statusDone": "已完成",
@@ -20,6 +20,7 @@
20
20
  "neptune.Info.ariaLabel": "更多資訊",
21
21
  "neptune.Link.opensInNewTab": "(在新分頁中開啟)",
22
22
  "neptune.MoneyInput.Select.placeholder": "選擇一個選項…",
23
+ "neptune.PhoneNumberInput.SelectInput.placeholder": "選擇其中一項…",
23
24
  "neptune.Select.searchPlaceholder": "搜尋…",
24
25
  "neptune.SelectInput.noResultsFound": "找不到任何結果",
25
26
  "neptune.Summary.statusDone": "已完成事項",