@trilogy-ds/locales 0.0.2-calendar-fr → 0.0.2-timepicker-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.
- package/lib/calendar.d.ts +5 -0
- package/lib/calendar.js +4 -0
- package/lib/index.d.ts +3 -1
- package/lib/index.js +3 -1
- package/lib/timePicker.d.ts +5 -0
- package/lib/timePicker.js +4 -0
- package/package.json +20 -15
package/lib/calendar.js
ADDED
package/lib/index.d.ts
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import breadcrumbLocale from './breadcrumb';
|
|
2
|
+
import calendarLocale from './calendar';
|
|
2
3
|
import inputLocale from './input';
|
|
3
4
|
import modalLocale from './modal';
|
|
4
5
|
import otpLocale from './otp';
|
|
5
|
-
|
|
6
|
+
import timePickerLocale from './timePicker';
|
|
7
|
+
export { breadcrumbLocale, calendarLocale, inputLocale, modalLocale, otpLocale, timePickerLocale };
|
package/lib/index.js
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import breadcrumbLocale from './breadcrumb';
|
|
2
|
+
import calendarLocale from './calendar';
|
|
2
3
|
import inputLocale from './input';
|
|
3
4
|
import modalLocale from './modal';
|
|
4
5
|
import otpLocale from './otp';
|
|
5
|
-
|
|
6
|
+
import timePickerLocale from './timePicker';
|
|
7
|
+
export { breadcrumbLocale, calendarLocale, inputLocale, modalLocale, otpLocale, timePickerLocale };
|
package/package.json
CHANGED
|
@@ -1,17 +1,22 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
"
|
|
8
|
-
"
|
|
9
|
-
"
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
2
|
+
"name": "@trilogy-ds/locales",
|
|
3
|
+
"version": "0.0.2-timepicker-fr",
|
|
4
|
+
"description": "Trilogy assets include traductions (fr) for accessibility",
|
|
5
|
+
"author": "Bouygues Telecom",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "https://github.com/BouyguesTelecom/trilogy",
|
|
9
|
+
"directory": "packages/locales/fr"
|
|
10
|
+
},
|
|
11
|
+
"license": "UNLICENSED",
|
|
12
|
+
"main": "lib/index.js",
|
|
13
|
+
"types": "lib/index.d.ts",
|
|
14
|
+
"scripts": {
|
|
15
|
+
"build": "rimraf ./lib && tsc"
|
|
16
|
+
},
|
|
17
|
+
"files": [
|
|
18
|
+
"lib",
|
|
19
|
+
"package.json",
|
|
20
|
+
"README.md"
|
|
21
|
+
]
|
|
17
22
|
}
|