be-intl 0.0.16 → 0.0.18
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/README.md +2 -0
- package/package.json +9 -9
- package/types.d.ts +1 -1
package/README.md
CHANGED
|
@@ -29,6 +29,8 @@ emits
|
|
|
29
29
|
<time lang="ar-EG" datetime="2011-11-18T14:54:39.929Z" be-intl="{ "weekday": "long", "year": "numeric", "month": "long", "day": "numeric" }">الجمعة، ١٨ نوفمبر ٢٠١١</time>
|
|
30
30
|
```
|
|
31
31
|
|
|
32
|
+
[TODO] Support [expanding out the attribute](https://github.com/bahrus/be-hive#behivior-aspects-untested) to avoid use of JSON
|
|
33
|
+
|
|
32
34
|
## Viewing Locally
|
|
33
35
|
|
|
34
36
|
Any web server than can serve static files will do, but...
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "be-intl",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.18",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"web-components",
|
|
6
6
|
"web-component",
|
|
@@ -26,16 +26,16 @@
|
|
|
26
26
|
"update": "ncu -u && npm install"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"be-enhanced": "0.0.
|
|
30
|
-
"be-hive": "0.0.
|
|
31
|
-
"be-propagating": "0.0.
|
|
32
|
-
"be-value-added": "0.0.
|
|
33
|
-
"trans-render": "0.0.
|
|
34
|
-
"xtal-element": "0.0.
|
|
29
|
+
"be-enhanced": "0.0.56",
|
|
30
|
+
"be-hive": "0.0.127",
|
|
31
|
+
"be-propagating": "0.0.29",
|
|
32
|
+
"be-value-added": "0.0.17",
|
|
33
|
+
"trans-render": "0.0.707",
|
|
34
|
+
"xtal-element": "0.0.579"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"may-it-serve": "0.0.
|
|
38
|
-
"@playwright/test": "1.
|
|
37
|
+
"may-it-serve": "0.0.6",
|
|
38
|
+
"@playwright/test": "1.40.0"
|
|
39
39
|
},
|
|
40
40
|
"author": "anderson.bruce.b@gmail.com",
|
|
41
41
|
"license": "MIT"
|
package/types.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { ActionOnEventConfigs } from "trans-render/froop/types";
|
|
|
2
2
|
import {IBE, Declarations} from 'be-enhanced/types';
|
|
3
3
|
import {BVAEndUserProps, BVAAllProps} from 'be-value-added/types';
|
|
4
4
|
|
|
5
|
-
export interface EndUserProps extends BVAEndUserProps
|
|
5
|
+
export interface EndUserProps extends BVAEndUserProps{
|
|
6
6
|
format?: Intl.NumberFormatOptions | Intl.DateTimeFormatOptions,
|
|
7
7
|
locale?: string;
|
|
8
8
|
}
|