platformscode-new-react 0.0.1 → 0.0.3
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/dist/components.d.ts +12 -1
- package/dist/index.cjs.js +68346 -1161
- package/dist/index.js +69302 -1852
- package/package.json +3 -3
- package/src/components.ts +45 -1
package/dist/components.d.ts
CHANGED
|
@@ -1,10 +1,14 @@
|
|
|
1
|
-
import { DgaButtonCustomEvent } from '../../core/dist/types';
|
|
1
|
+
import { DgaButtonCustomEvent, DgaLinkCustomEvent } from '../../core/dist/types';
|
|
2
2
|
import { DgaAccordion as DgaAccordionElement } from '../../core/dist/components/dga-accordion.js';
|
|
3
3
|
import { DgaAvatar as DgaAvatarElement } from '../../core/dist/components/dga-avatar.js';
|
|
4
4
|
import { DgaBreadcrumbs as DgaBreadcrumbsElement } from '../../core/dist/components/dga-breadcrumbs.js';
|
|
5
5
|
import { DgaButton as DgaButtonElement } from '../../core/dist/components/dga-button.js';
|
|
6
6
|
import { DgaIcon as DgaIconElement } from '../../core/dist/components/dga-icon.js';
|
|
7
|
+
import { DgaLink as DgaLinkElement } from '../../core/dist/components/dga-link.js';
|
|
7
8
|
import { DgaLoading as DgaLoadingElement } from '../../core/dist/components/dga-loading.js';
|
|
9
|
+
import { DgaNotificationToast as DgaNotificationToastElement } from '../../core/dist/components/dga-notification-toast.js';
|
|
10
|
+
import { DgaNotification as DgaNotificationElement } from '../../core/dist/components/dga-notification.js';
|
|
11
|
+
import { DgaTag as DgaTagElement } from '../../core/dist/components/dga-tag.js';
|
|
8
12
|
import { DgaTooltip as DgaTooltipElement } from '../../core/dist/components/dga-tooltip.js';
|
|
9
13
|
import { EventName } from '@stencil/react-output-target/runtime';
|
|
10
14
|
export declare const DgaAccordion: import('@lit/react').ReactWebComponent<DgaAccordionElement, {}>;
|
|
@@ -18,6 +22,13 @@ type DgaButtonEvents = {
|
|
|
18
22
|
};
|
|
19
23
|
export declare const DgaButton: import('@lit/react').ReactWebComponent<DgaButtonElement, DgaButtonEvents>;
|
|
20
24
|
export declare const DgaIcon: import('@lit/react').ReactWebComponent<DgaIconElement, {}>;
|
|
25
|
+
type DgaLinkEvents = {
|
|
26
|
+
onOnClick: EventName<DgaLinkCustomEvent<MouseEvent>>;
|
|
27
|
+
};
|
|
28
|
+
export declare const DgaLink: import('@lit/react').ReactWebComponent<DgaLinkElement, DgaLinkEvents>;
|
|
21
29
|
export declare const DgaLoading: import('@lit/react').ReactWebComponent<DgaLoadingElement, {}>;
|
|
30
|
+
export declare const DgaNotification: import('@lit/react').ReactWebComponent<DgaNotificationElement, {}>;
|
|
31
|
+
export declare const DgaNotificationToast: import('@lit/react').ReactWebComponent<DgaNotificationToastElement, {}>;
|
|
32
|
+
export declare const DgaTag: import('@lit/react').ReactWebComponent<DgaTagElement, {}>;
|
|
22
33
|
export declare const DgaTooltip: import('@lit/react').ReactWebComponent<DgaTooltipElement, {}>;
|
|
23
34
|
export {};
|