@kompasid/lit-web-components 0.9.4 → 0.9.11
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/.yarnrc.yml +1 -0
- package/demo/index.html +6 -1
- package/dist/assets/font-awesome.d.ts +2 -2
- package/dist/src/components/kompasid-footer/KompasFooter.d.ts +1 -1
- package/dist/src/components/kompasid-freewall/KompasFreewall.d.ts +1 -1
- package/dist/src/components/kompasid-freewall-body/KompasFreewallBody.d.ts +1 -1
- package/dist/src/components/kompasid-freewall-head/KompasFreewallHead.d.ts +1 -1
- package/dist/src/components/kompasid-grace-period/KompasGracePeriod.d.ts +1 -1
- package/dist/src/components/kompasid-header-account/KompasHeaderAccount.d.ts +1 -1
- package/dist/src/components/kompasid-header-account-help-center/KompasHeaderAccountHelpCenter.d.ts +1 -1
- package/dist/src/components/kompasid-header-account-menu/KompasHeaderAccountMenu.d.ts +1 -1
- package/dist/src/components/kompasid-header-account-profile/KompasHeaderAccountProfile.d.ts +1 -1
- package/dist/src/components/kompasid-header-notification/KompasHeaderNotification.d.ts +1 -1
- package/dist/src/components/kompasid-menu-side-bar/KompasMenuSideBar.d.ts +5 -2
- package/dist/src/components/kompasid-menu-side-bar/KompasMenuSideBar.js +47 -33
- package/dist/src/components/kompasid-menu-side-bar/KompasMenuSideBar.js.map +1 -1
- package/dist/src/components/kompasid-metered-paywall/KompasMeteredPaywall.d.ts +1 -1
- package/dist/src/components/kompasid-metered-paywall/KompasMeteredPaywall.js +19 -17
- package/dist/src/components/kompasid-metered-paywall/KompasMeteredPaywall.js.map +1 -1
- package/dist/src/components/kompasid-metered-wall-register/KompasMeteredWallRegister.d.ts +1 -1
- package/dist/src/components/kompasid-paywall/KompasPaywall.d.ts +1 -1
- package/dist/src/components/kompasid-paywall-banner-registration/KompasPaywallBannerRegistration.d.ts +1 -1
- package/dist/src/components/kompasid-paywall-body/KompasPaywallBody.d.ts +1 -1
- package/dist/src/components/kompasid-paywall-information-header/KompasPaywallInformationHeader.d.ts +1 -1
- package/dist/src/components/kompasid-paywall-video/KompasPaywallVideo.d.ts +1 -1
- package/dist/src/components/kompasid-widget-recirculations-default/KompasWidgetRecirculationsDefault.d.ts +3 -3
- package/dist/src/components/kompasid-widget-recirculations-list/KompasWidgetRecirculationsList.d.ts +2 -2
- package/dist/src/utils/IntersectionObserver.d.ts +1 -1
- package/dist/tailwind/tailwind.js +220 -249
- package/dist/tailwind/tailwind.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/components/kompasid-menu-side-bar/KompasMenuSideBar.ts +80 -33
- package/src/components/kompasid-metered-paywall/KompasMeteredPaywall.ts +21 -18
- package/tailwind/tailwind.css +216 -241
- package/tailwind/tailwind.ts +220 -249
|
@@ -74,5 +74,5 @@ export declare class KompasPaywall extends LitElement {
|
|
|
74
74
|
private renderAudioPaywallSection;
|
|
75
75
|
private selectorTypePaywall;
|
|
76
76
|
private togglePaywall;
|
|
77
|
-
render(): import("lit").TemplateResult<1> | typeof nothing;
|
|
77
|
+
render(): import("lit-html").TemplateResult<1> | typeof nothing;
|
|
78
78
|
}
|
|
@@ -36,13 +36,13 @@ export declare class KompasWidgetRecirculationsDefault extends LitElement {
|
|
|
36
36
|
*/
|
|
37
37
|
private titleRelatedArticle;
|
|
38
38
|
private titleOtherArticle;
|
|
39
|
-
renderChips(post: Post): import("lit").TemplateResult<1>[];
|
|
40
|
-
renderImage(post: Post): import("lit").TemplateResult<1> | "";
|
|
39
|
+
renderChips(post: Post): import("lit-html").TemplateResult<1>[];
|
|
40
|
+
renderImage(post: Post): import("lit-html").TemplateResult<1> | "";
|
|
41
41
|
/**
|
|
42
42
|
* mengirim event ke datalayer
|
|
43
43
|
*/
|
|
44
44
|
private recoContentClicked;
|
|
45
45
|
private recoContentViewed;
|
|
46
46
|
handleObserver(): void;
|
|
47
|
-
render(): import("lit").TemplateResult<1>;
|
|
47
|
+
render(): import("lit-html").TemplateResult<1>;
|
|
48
48
|
}
|
package/dist/src/components/kompasid-widget-recirculations-list/KompasWidgetRecirculationsList.d.ts
CHANGED
|
@@ -21,8 +21,8 @@ export declare class KompasWidgetRecirculationsList extends LitElement {
|
|
|
21
21
|
connectedCallback(): Promise<void>;
|
|
22
22
|
fetchArticles(): Promise<void>;
|
|
23
23
|
handleFetchError(error: unknown): void;
|
|
24
|
-
renderChips(item: ListItem): import("lit").TemplateResult<1>[];
|
|
24
|
+
renderChips(item: ListItem): import("lit-html").TemplateResult<1>[];
|
|
25
25
|
getSectionName(): "Section_Terbaru" | "Section_Terpopuler";
|
|
26
|
-
render(): import("lit").TemplateResult<1>;
|
|
26
|
+
render(): import("lit-html").TemplateResult<1>;
|
|
27
27
|
}
|
|
28
28
|
export {};
|
|
@@ -16,6 +16,6 @@ export declare class IntersectionObserverComponent extends LitElement {
|
|
|
16
16
|
private handleEntryInView;
|
|
17
17
|
private clearTimer;
|
|
18
18
|
private emitTrigger;
|
|
19
|
-
render(): import("lit").TemplateResult<1>;
|
|
19
|
+
render(): import("lit-html").TemplateResult<1>;
|
|
20
20
|
}
|
|
21
21
|
export declare const createIntersectionObserverComponent: () => typeof IntersectionObserverComponent;
|