@trilogy-ds/locales 4.8.2-fr → 4.9.0-beta-build-1-fr

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.
@@ -0,0 +1,5 @@
1
+ declare const _default: {
2
+ accessibilityLabel: string;
3
+ };
4
+
5
+ export { _default as default };
@@ -1,4 +1,5 @@
1
1
  declare const _default: {
2
2
  accessibilityLabel: string;
3
3
  };
4
- export default _default;
4
+
5
+ export { _default as default };
package/lib/breadcrumb.js CHANGED
@@ -1,3 +1,28 @@
1
- export default {
2
- accessibilityLabel: 'Fil d’Ariane',
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+
20
+ // src/breadcrumb.ts
21
+ var breadcrumb_exports = {};
22
+ __export(breadcrumb_exports, {
23
+ default: () => breadcrumb_default
24
+ });
25
+ module.exports = __toCommonJS(breadcrumb_exports);
26
+ var breadcrumb_default = {
27
+ accessibilityLabel: "Fil d\u2019Ariane"
3
28
  };
@@ -0,0 +1,6 @@
1
+ import {
2
+ breadcrumb_default
3
+ } from "./chunk-LJVSARD2.mjs";
4
+ export {
5
+ breadcrumb_default as default
6
+ };
@@ -0,0 +1,8 @@
1
+ // src/otp.ts
2
+ var otp_default = {
3
+ inputTitle: "Chiffre :x sur :y du code \xE0 usage unique"
4
+ };
5
+
6
+ export {
7
+ otp_default
8
+ };
@@ -0,0 +1,8 @@
1
+ // src/modal.ts
2
+ var modal_default = {
3
+ accessibilityLabelButtonClose: "Fermer"
4
+ };
5
+
6
+ export {
7
+ modal_default
8
+ };
@@ -0,0 +1,8 @@
1
+ // src/breadcrumb.ts
2
+ var breadcrumb_default = {
3
+ accessibilityLabel: "Fil d\u2019Ariane"
4
+ };
5
+
6
+ export {
7
+ breadcrumb_default
8
+ };
@@ -0,0 +1,9 @@
1
+ // src/input.ts
2
+ var input_default = {
3
+ showPassword: "Afficher le mot de passe",
4
+ hidePassword: "Cacher le mot de passe"
5
+ };
6
+
7
+ export {
8
+ input_default
9
+ };
@@ -0,0 +1,4 @@
1
+ export { default as breadcrumbLocale } from './breadcrumb.mjs';
2
+ export { default as inputLocale } from './input.mjs';
3
+ export { default as modalLocale } from './modal.mjs';
4
+ export { default as otpLocale } from './otp.mjs';
package/lib/index.d.ts CHANGED
@@ -1,5 +1,4 @@
1
- import breadcrumbLocale from './breadcrumb';
2
- import inputLocale from './input';
3
- import modalLocale from './modal';
4
- import otpLocale from './otp';
5
- export { breadcrumbLocale, inputLocale, modalLocale, otpLocale };
1
+ export { default as breadcrumbLocale } from './breadcrumb.js';
2
+ export { default as inputLocale } from './input.js';
3
+ export { default as modalLocale } from './modal.js';
4
+ export { default as otpLocale } from './otp.js';
package/lib/index.js CHANGED
@@ -1,5 +1,56 @@
1
- import breadcrumbLocale from './breadcrumb';
2
- import inputLocale from './input';
3
- import modalLocale from './modal';
4
- import otpLocale from './otp';
5
- export { breadcrumbLocale, inputLocale, modalLocale, otpLocale };
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+
20
+ // src/index.ts
21
+ var index_exports = {};
22
+ __export(index_exports, {
23
+ breadcrumbLocale: () => breadcrumb_default,
24
+ inputLocale: () => input_default,
25
+ modalLocale: () => modal_default,
26
+ otpLocale: () => otp_default
27
+ });
28
+ module.exports = __toCommonJS(index_exports);
29
+
30
+ // src/breadcrumb.ts
31
+ var breadcrumb_default = {
32
+ accessibilityLabel: "Fil d\u2019Ariane"
33
+ };
34
+
35
+ // src/input.ts
36
+ var input_default = {
37
+ showPassword: "Afficher le mot de passe",
38
+ hidePassword: "Cacher le mot de passe"
39
+ };
40
+
41
+ // src/modal.ts
42
+ var modal_default = {
43
+ accessibilityLabelButtonClose: "Fermer"
44
+ };
45
+
46
+ // src/otp.ts
47
+ var otp_default = {
48
+ inputTitle: "Chiffre :x sur :y du code \xE0 usage unique"
49
+ };
50
+ // Annotate the CommonJS export names for ESM import in node:
51
+ 0 && (module.exports = {
52
+ breadcrumbLocale,
53
+ inputLocale,
54
+ modalLocale,
55
+ otpLocale
56
+ });
package/lib/index.mjs ADDED
@@ -0,0 +1,18 @@
1
+ import {
2
+ breadcrumb_default
3
+ } from "./chunk-LJVSARD2.mjs";
4
+ import {
5
+ input_default
6
+ } from "./chunk-R72RIAYQ.mjs";
7
+ import {
8
+ modal_default
9
+ } from "./chunk-KUPATSQU.mjs";
10
+ import {
11
+ otp_default
12
+ } from "./chunk-CPBO6CFU.mjs";
13
+ export {
14
+ breadcrumb_default as breadcrumbLocale,
15
+ input_default as inputLocale,
16
+ modal_default as modalLocale,
17
+ otp_default as otpLocale
18
+ };
@@ -0,0 +1,6 @@
1
+ declare const _default: {
2
+ showPassword: string;
3
+ hidePassword: string;
4
+ };
5
+
6
+ export { _default as default };
package/lib/input.d.ts CHANGED
@@ -2,4 +2,5 @@ declare const _default: {
2
2
  showPassword: string;
3
3
  hidePassword: string;
4
4
  };
5
- export default _default;
5
+
6
+ export { _default as default };
package/lib/input.js CHANGED
@@ -1,4 +1,29 @@
1
- export default {
2
- showPassword: 'Afficher le mot de passe',
3
- hidePassword: 'Cacher le mot de passe',
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+
20
+ // src/input.ts
21
+ var input_exports = {};
22
+ __export(input_exports, {
23
+ default: () => input_default
24
+ });
25
+ module.exports = __toCommonJS(input_exports);
26
+ var input_default = {
27
+ showPassword: "Afficher le mot de passe",
28
+ hidePassword: "Cacher le mot de passe"
4
29
  };
package/lib/input.mjs ADDED
@@ -0,0 +1,6 @@
1
+ import {
2
+ input_default
3
+ } from "./chunk-R72RIAYQ.mjs";
4
+ export {
5
+ input_default as default
6
+ };
@@ -0,0 +1,5 @@
1
+ declare const _default: {
2
+ accessibilityLabelButtonClose: string;
3
+ };
4
+
5
+ export { _default as default };
package/lib/modal.d.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  declare const _default: {
2
2
  accessibilityLabelButtonClose: string;
3
3
  };
4
- export default _default;
4
+
5
+ export { _default as default };
package/lib/modal.js CHANGED
@@ -1,3 +1,28 @@
1
- export default {
2
- accessibilityLabelButtonClose: 'Fermer',
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+
20
+ // src/modal.ts
21
+ var modal_exports = {};
22
+ __export(modal_exports, {
23
+ default: () => modal_default
24
+ });
25
+ module.exports = __toCommonJS(modal_exports);
26
+ var modal_default = {
27
+ accessibilityLabelButtonClose: "Fermer"
3
28
  };
package/lib/modal.mjs ADDED
@@ -0,0 +1,6 @@
1
+ import {
2
+ modal_default
3
+ } from "./chunk-KUPATSQU.mjs";
4
+ export {
5
+ modal_default as default
6
+ };
package/lib/otp.d.mts ADDED
@@ -0,0 +1,5 @@
1
+ declare const _default: {
2
+ inputTitle: string;
3
+ };
4
+
5
+ export { _default as default };
package/lib/otp.d.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  declare const _default: {
2
2
  inputTitle: string;
3
3
  };
4
- export default _default;
4
+
5
+ export { _default as default };
package/lib/otp.js CHANGED
@@ -1,3 +1,28 @@
1
- export default {
2
- inputTitle: 'Chiffre :x sur :y du code à usage unique',
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+
20
+ // src/otp.ts
21
+ var otp_exports = {};
22
+ __export(otp_exports, {
23
+ default: () => otp_default
24
+ });
25
+ module.exports = __toCommonJS(otp_exports);
26
+ var otp_default = {
27
+ inputTitle: "Chiffre :x sur :y du code \xE0 usage unique"
3
28
  };
package/lib/otp.mjs ADDED
@@ -0,0 +1,6 @@
1
+ import {
2
+ otp_default
3
+ } from "./chunk-CPBO6CFU.mjs";
4
+ export {
5
+ otp_default as default
6
+ };
package/package.json CHANGED
@@ -1,17 +1,31 @@
1
1
  {
2
2
  "name": "@trilogy-ds/locales",
3
- "version": "4.8.2-fr",
3
+ "version": "4.9.0-beta-build-1-fr",
4
4
  "description": "Trilogy assets include traductions (fr) for accessibility",
5
5
  "author": "Bouygues Telecom",
6
6
  "license": "UNLICENSED",
7
7
  "main": "lib/index.js",
8
+ "module": "lib/index.mjs",
8
9
  "types": "lib/index.d.ts",
9
10
  "scripts": {
10
- "build": "rimraf ./lib && tsc"
11
+ "build": "rimraf ./lib && tsup"
11
12
  },
12
13
  "files": [
13
14
  "lib",
14
15
  "package.json",
15
16
  "README.md"
16
- ]
17
+ ],
18
+ "exports": {
19
+ ".": {
20
+ "types": "./lib/index.d.ts",
21
+ "import": "./lib/index.mjs",
22
+ "require": "./lib/index.js"
23
+ },
24
+ "./*": {
25
+ "types": "./lib/index.d.ts",
26
+ "import": "./lib/index.mjs",
27
+ "require": "./lib/index.js"
28
+ },
29
+ "./package.json": "./package.json"
30
+ }
17
31
  }