@kompasid/lit-web-components 0.8.14 → 0.8.15
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/package.json
CHANGED
|
@@ -4,11 +4,16 @@ Ini adalah komponen _header notification_ yang akan di implementasi pada header
|
|
|
4
4
|
|
|
5
5
|
## Properties
|
|
6
6
|
|
|
7
|
-
| Property
|
|
8
|
-
|
|
|
9
|
-
| `accessToken`
|
|
10
|
-
| `refreshToken`
|
|
11
|
-
| `domain`
|
|
7
|
+
| Property | Attribute | Description | Type | Default | Required |
|
|
8
|
+
| ------------------------------ | ------------------------------ | ---------------------------------- | -------- | ------- | -------- |
|
|
9
|
+
| `accessToken` | `accessToken` | `kompas._token` | `string` | `''` | `yes` |
|
|
10
|
+
| `refreshToken` | `refreshToken` | `kompas._refresh_token` | `string` | `''` | `yes` |
|
|
11
|
+
| `domain` | `domain` | `cloud, id` | `string` | `'id'` | `no` |
|
|
12
|
+
| `tracker_user_type` | `tracker_user_type` | `User type for tracking` | `string` | `''` | `no` |
|
|
13
|
+
| `tracker_subscription_status` | `tracker_subscription_status` | `Subscription status for tracking` | `string` | `''` | `no` |
|
|
14
|
+
| `tracker_page_domain` | `tracker_page_domain` | `Domain of the tracked page` | `string` | `''` | `no` |
|
|
15
|
+
| `tracker_metered_wall_type` | `tracker_metered_wall_type` | `Type of metered wall` | `string` | `''` | `no` |
|
|
16
|
+
| `tracker_metered_wall_balance` | `tracker_metered_wall_balance` | `Balance for metered wall` | `number` | `0` | `no` |
|
|
12
17
|
|
|
13
18
|
---
|
|
14
19
|
|
|
@@ -19,6 +24,11 @@ Ini adalah komponen _header notification_ yang akan di implementasi pada header
|
|
|
19
24
|
:accessToken="accessToken" --> // token from cookies
|
|
20
25
|
:refreshToken="refreshToken" --> // refresh token from cookies
|
|
21
26
|
domain="cloud" --> // default id
|
|
27
|
+
tracker_user_type="R"
|
|
28
|
+
tracker_subscription_status="test"
|
|
29
|
+
tracker_page_domain="Kompas.cloud"
|
|
30
|
+
tracker_metered_wall_type="HP"
|
|
31
|
+
tracker_metered_wall_balance="0"
|
|
22
32
|
style="margin-left: auto; margin-right:15px"
|
|
23
33
|
/>
|
|
24
34
|
```
|