platformscode-new-react 0.0.11 → 0.0.13
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 +16 -0
- package/dist/index.cjs.js +98 -104518
- package/dist/index.js +2029 -106038
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/components.d.ts
CHANGED
|
@@ -5,8 +5,10 @@ import { DgaBreadcrumbs as DgaBreadcrumbsElement } from '../../core/dist/compone
|
|
|
5
5
|
import { DgaButton as DgaButtonElement } from '../../core/dist/components/dga-button.js';
|
|
6
6
|
import { DgaCard as DgaCardElement } from '../../core/dist/components/dga-card.js';
|
|
7
7
|
import { DgaCheckbox as DgaCheckboxElement } from '../../core/dist/components/dga-checkbox.js';
|
|
8
|
+
import { DgaContentSwitcher as DgaContentSwitcherElement } from '../../core/dist/components/dga-content-switcher.js';
|
|
8
9
|
import { DgaDivider as DgaDividerElement } from '../../core/dist/components/dga-divider.js';
|
|
9
10
|
import { DgaDropdown as DgaDropdownElement } from '../../core/dist/components/dga-dropdown.js';
|
|
11
|
+
import { DgaFileUpload as DgaFileUploadElement } from '../../core/dist/components/dga-file-upload.js';
|
|
10
12
|
import { DgaIcon as DgaIconElement } from '../../core/dist/components/dga-icon.js';
|
|
11
13
|
import { DgaInlineAlert as DgaInlineAlertElement } from '../../core/dist/components/dga-inline-alert.js';
|
|
12
14
|
import { DgaLink as DgaLinkElement } from '../../core/dist/components/dga-link.js';
|
|
@@ -18,6 +20,12 @@ import { DgaMenu as DgaMenuElement } from '../../core/dist/components/dga-menu.j
|
|
|
18
20
|
import { DgaNotificationToast as DgaNotificationToastElement } from '../../core/dist/components/dga-notification-toast.js';
|
|
19
21
|
import { DgaNotification as DgaNotificationElement } from '../../core/dist/components/dga-notification.js';
|
|
20
22
|
import { DgaPagination as DgaPaginationElement } from '../../core/dist/components/dga-pagination.js';
|
|
23
|
+
import { DgaProgressIndicatorUpdated as DgaProgressIndicatorUpdatedElement } from '../../core/dist/components/dga-progress-indicator-updated.js';
|
|
24
|
+
import { DgaProgressIndicator as DgaProgressIndicatorElement } from '../../core/dist/components/dga-progress-indicator.js';
|
|
25
|
+
import { DgaRadioButton as DgaRadioButtonElement } from '../../core/dist/components/dga-radio-button.js';
|
|
26
|
+
import { DgaRating as DgaRatingElement } from '../../core/dist/components/dga-rating.js';
|
|
27
|
+
import { DgaStepLabel as DgaStepLabelElement } from '../../core/dist/components/dga-step-label.js';
|
|
28
|
+
import { DgaStep as DgaStepElement } from '../../core/dist/components/dga-step.js';
|
|
21
29
|
import { DgaTag as DgaTagElement } from '../../core/dist/components/dga-tag.js';
|
|
22
30
|
import { DgaTooltip as DgaTooltipElement } from '../../core/dist/components/dga-tooltip.js';
|
|
23
31
|
import { EventName } from '@stencil/react-output-target/runtime';
|
|
@@ -33,8 +41,10 @@ type DgaButtonEvents = {
|
|
|
33
41
|
export declare const DgaButton: import('@lit/react').ReactWebComponent<DgaButtonElement, DgaButtonEvents>;
|
|
34
42
|
export declare const DgaCard: import('@lit/react').ReactWebComponent<DgaCardElement, {}>;
|
|
35
43
|
export declare const DgaCheckbox: import('@lit/react').ReactWebComponent<DgaCheckboxElement, {}>;
|
|
44
|
+
export declare const DgaContentSwitcher: import('@lit/react').ReactWebComponent<DgaContentSwitcherElement, {}>;
|
|
36
45
|
export declare const DgaDivider: import('@lit/react').ReactWebComponent<DgaDividerElement, {}>;
|
|
37
46
|
export declare const DgaDropdown: import('@lit/react').ReactWebComponent<DgaDropdownElement, {}>;
|
|
47
|
+
export declare const DgaFileUpload: import('@lit/react').ReactWebComponent<DgaFileUploadElement, {}>;
|
|
38
48
|
export declare const DgaIcon: import('@lit/react').ReactWebComponent<DgaIconElement, {}>;
|
|
39
49
|
export declare const DgaInlineAlert: import('@lit/react').ReactWebComponent<DgaInlineAlertElement, {}>;
|
|
40
50
|
export declare const DgaLink: import('@lit/react').ReactWebComponent<DgaLinkElement, {}>;
|
|
@@ -46,6 +56,12 @@ export declare const DgaMenuUpdated: import('@lit/react').ReactWebComponent<DgaM
|
|
|
46
56
|
export declare const DgaNotification: import('@lit/react').ReactWebComponent<DgaNotificationElement, {}>;
|
|
47
57
|
export declare const DgaNotificationToast: import('@lit/react').ReactWebComponent<DgaNotificationToastElement, {}>;
|
|
48
58
|
export declare const DgaPagination: import('@lit/react').ReactWebComponent<DgaPaginationElement, {}>;
|
|
59
|
+
export declare const DgaProgressIndicator: import('@lit/react').ReactWebComponent<DgaProgressIndicatorElement, {}>;
|
|
60
|
+
export declare const DgaProgressIndicatorUpdated: import('@lit/react').ReactWebComponent<DgaProgressIndicatorUpdatedElement, {}>;
|
|
61
|
+
export declare const DgaRadioButton: import('@lit/react').ReactWebComponent<DgaRadioButtonElement, {}>;
|
|
62
|
+
export declare const DgaRating: import('@lit/react').ReactWebComponent<DgaRatingElement, {}>;
|
|
63
|
+
export declare const DgaStep: import('@lit/react').ReactWebComponent<DgaStepElement, {}>;
|
|
64
|
+
export declare const DgaStepLabel: import('@lit/react').ReactWebComponent<DgaStepLabelElement, {}>;
|
|
49
65
|
export declare const DgaTag: import('@lit/react').ReactWebComponent<DgaTagElement, {}>;
|
|
50
66
|
export declare const DgaTooltip: import('@lit/react').ReactWebComponent<DgaTooltipElement, {}>;
|
|
51
67
|
export {};
|