@dnncommunity/dnn-elements-react 0.27.7-beta.1 → 0.27.8-beta.1
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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type ColorInfo, type DnnAutocompleteCustomEvent, type DnnColorInfo, type DnnColorInputCustomEvent, type DnnColorPickerCustomEvent, type DnnDropzoneCustomEvent, type DnnImageCropperCustomEvent, type DnnPermissionsGridCustomEvent, type DnnToggleChangeEventDetail, type DnnToggleCustomEvent, type IPermissions, type NeedMoreItemsEventArgs } from "@dnncommunity/dnn-elements";
|
|
1
|
+
import { type ColorInfo, type DnnAutocompleteCustomEvent, type DnnButtonCustomEvent, type DnnCheckboxCustomEvent, type DnnChevronCustomEvent, type DnnCollapsibleCustomEvent, type DnnColorInfo, type DnnColorInputCustomEvent, type DnnColorPickerCustomEvent, type DnnDropzoneCustomEvent, type DnnImageCropperCustomEvent, type DnnInputCustomEvent, type DnnModalCustomEvent, type DnnMonacoEditorCustomEvent, type DnnPermissionsGridCustomEvent, type DnnRichtextCustomEvent, type DnnSearchboxCustomEvent, type DnnSelectCustomEvent, type DnnSortIconCustomEvent, type DnnTextareaCustomEvent, type DnnToggleChangeEventDetail, type DnnToggleCustomEvent, type DnnTreeviewItemCustomEvent, type DnnVerticalSplitviewCustomEvent, type IPermissions, type NeedMoreItemsEventArgs } from "@dnncommunity/dnn-elements";
|
|
2
2
|
import { DnnAutocomplete as DnnAutocompleteElement } from "@dnncommunity/dnn-elements/dist/components/dnn-autocomplete.js";
|
|
3
3
|
import { DnnButton as DnnButtonElement } from "@dnncommunity/dnn-elements/dist/components/dnn-button.js";
|
|
4
4
|
import { DnnCheckbox as DnnCheckboxElement } from "@dnncommunity/dnn-elements/dist/components/dnn-checkbox.js";
|
|
@@ -27,28 +27,28 @@ import { DnnVerticalOverflowMenu as DnnVerticalOverflowMenuElement } from "@dnnc
|
|
|
27
27
|
import { DnnVerticalSplitview as DnnVerticalSplitviewElement } from "@dnncommunity/dnn-elements/dist/components/dnn-vertical-splitview.js";
|
|
28
28
|
import type { EventName, StencilReactComponent } from '@stencil/react-output-target/runtime';
|
|
29
29
|
export type DnnAutocompleteEvents = {
|
|
30
|
-
onValueChange: EventName<
|
|
31
|
-
onValueInput: EventName<
|
|
30
|
+
onValueChange: EventName<DnnAutocompleteCustomEvent<number | string | string[]>>;
|
|
31
|
+
onValueInput: EventName<DnnAutocompleteCustomEvent<number | string | string[]>>;
|
|
32
32
|
onNeedMoreItems: EventName<DnnAutocompleteCustomEvent<NeedMoreItemsEventArgs>>;
|
|
33
|
-
onSearchQueryChanged: EventName<
|
|
34
|
-
onItemSelected: EventName<
|
|
33
|
+
onSearchQueryChanged: EventName<DnnAutocompleteCustomEvent<string>>;
|
|
34
|
+
onItemSelected: EventName<DnnAutocompleteCustomEvent<string>>;
|
|
35
35
|
};
|
|
36
36
|
export declare const DnnAutocomplete: StencilReactComponent<DnnAutocompleteElement, DnnAutocompleteEvents>;
|
|
37
37
|
export type DnnButtonEvents = {
|
|
38
|
-
onConfirmed: EventName<
|
|
39
|
-
onCanceled: EventName<
|
|
38
|
+
onConfirmed: EventName<DnnButtonCustomEvent<any>>;
|
|
39
|
+
onCanceled: EventName<DnnButtonCustomEvent<any>>;
|
|
40
40
|
};
|
|
41
41
|
export declare const DnnButton: StencilReactComponent<DnnButtonElement, DnnButtonEvents>;
|
|
42
42
|
export type DnnCheckboxEvents = {
|
|
43
|
-
onCheckedchange: EventName<
|
|
43
|
+
onCheckedchange: EventName<DnnCheckboxCustomEvent<"checked" | "unchecked" | "intermediate">>;
|
|
44
44
|
};
|
|
45
45
|
export declare const DnnCheckbox: StencilReactComponent<DnnCheckboxElement, DnnCheckboxEvents>;
|
|
46
46
|
export type DnnChevronEvents = {
|
|
47
|
-
onChanged: EventName<
|
|
47
|
+
onChanged: EventName<DnnChevronCustomEvent<any>>;
|
|
48
48
|
};
|
|
49
49
|
export declare const DnnChevron: StencilReactComponent<DnnChevronElement, DnnChevronEvents>;
|
|
50
50
|
export type DnnCollapsibleEvents = {
|
|
51
|
-
onDnnCollapsibleHeightChanged: EventName<
|
|
51
|
+
onDnnCollapsibleHeightChanged: EventName<DnnCollapsibleCustomEvent<void>>;
|
|
52
52
|
};
|
|
53
53
|
export declare const DnnCollapsible: StencilReactComponent<DnnCollapsibleElement, DnnCollapsibleEvents>;
|
|
54
54
|
export type DnnColorInputEvents = {
|
|
@@ -67,45 +67,45 @@ export declare const DnnDropzone: StencilReactComponent<DnnDropzoneElement, DnnD
|
|
|
67
67
|
export type DnnFieldsetEvents = NonNullable<unknown>;
|
|
68
68
|
export declare const DnnFieldset: StencilReactComponent<DnnFieldsetElement, DnnFieldsetEvents>;
|
|
69
69
|
export type DnnImageCropperEvents = {
|
|
70
|
-
onImageCropChanged: EventName<
|
|
70
|
+
onImageCropChanged: EventName<DnnImageCropperCustomEvent<string>>;
|
|
71
71
|
onImageFileCropChanged: EventName<DnnImageCropperCustomEvent<File>>;
|
|
72
72
|
};
|
|
73
73
|
export declare const DnnImageCropper: StencilReactComponent<DnnImageCropperElement, DnnImageCropperEvents>;
|
|
74
74
|
export type DnnInputEvents = {
|
|
75
|
-
onValueChange: EventName<
|
|
76
|
-
onValueInput: EventName<
|
|
75
|
+
onValueChange: EventName<DnnInputCustomEvent<number | string | string[]>>;
|
|
76
|
+
onValueInput: EventName<DnnInputCustomEvent<number | string | string[]>>;
|
|
77
77
|
};
|
|
78
78
|
export declare const DnnInput: StencilReactComponent<DnnInputElement, DnnInputEvents>;
|
|
79
79
|
export type DnnModalEvents = {
|
|
80
|
-
onDismissed: EventName<
|
|
80
|
+
onDismissed: EventName<DnnModalCustomEvent<any>>;
|
|
81
81
|
};
|
|
82
82
|
export declare const DnnModal: StencilReactComponent<DnnModalElement, DnnModalEvents>;
|
|
83
83
|
export type DnnMonacoEditorEvents = {
|
|
84
|
-
onContentChanged: EventName<
|
|
84
|
+
onContentChanged: EventName<DnnMonacoEditorCustomEvent<string>>;
|
|
85
85
|
};
|
|
86
86
|
export declare const DnnMonacoEditor: StencilReactComponent<DnnMonacoEditorElement, DnnMonacoEditorEvents>;
|
|
87
87
|
export type DnnPermissionsGridEvents = {
|
|
88
|
-
onUserSearchQueryChanged: EventName<
|
|
88
|
+
onUserSearchQueryChanged: EventName<DnnPermissionsGridCustomEvent<string>>;
|
|
89
89
|
onPermissionsChanged: EventName<DnnPermissionsGridCustomEvent<IPermissions>>;
|
|
90
90
|
};
|
|
91
91
|
export declare const DnnPermissionsGrid: StencilReactComponent<DnnPermissionsGridElement, DnnPermissionsGridEvents>;
|
|
92
92
|
export type DnnProgressBarEvents = NonNullable<unknown>;
|
|
93
93
|
export declare const DnnProgressBar: StencilReactComponent<DnnProgressBarElement, DnnProgressBarEvents>;
|
|
94
94
|
export type DnnRichtextEvents = {
|
|
95
|
-
onValueChange: EventName<
|
|
96
|
-
onValueInput: EventName<
|
|
95
|
+
onValueChange: EventName<DnnRichtextCustomEvent<string>>;
|
|
96
|
+
onValueInput: EventName<DnnRichtextCustomEvent<string>>;
|
|
97
97
|
};
|
|
98
98
|
export declare const DnnRichtext: StencilReactComponent<DnnRichtextElement, DnnRichtextEvents>;
|
|
99
99
|
export type DnnSearchboxEvents = {
|
|
100
|
-
onQueryChanged: EventName<
|
|
100
|
+
onQueryChanged: EventName<DnnSearchboxCustomEvent<string>>;
|
|
101
101
|
};
|
|
102
102
|
export declare const DnnSearchbox: StencilReactComponent<DnnSearchboxElement, DnnSearchboxEvents>;
|
|
103
103
|
export type DnnSelectEvents = {
|
|
104
|
-
onValueChange: EventName<
|
|
104
|
+
onValueChange: EventName<DnnSelectCustomEvent<string>>;
|
|
105
105
|
};
|
|
106
106
|
export declare const DnnSelect: StencilReactComponent<DnnSelectElement, DnnSelectEvents>;
|
|
107
107
|
export type DnnSortIconEvents = {
|
|
108
|
-
onSortChanged: EventName<
|
|
108
|
+
onSortChanged: EventName<DnnSortIconCustomEvent<"asc" | "desc" | "none">>;
|
|
109
109
|
};
|
|
110
110
|
export declare const DnnSortIcon: StencilReactComponent<DnnSortIconElement, DnnSortIconEvents>;
|
|
111
111
|
export type DnnTabEvents = NonNullable<unknown>;
|
|
@@ -113,8 +113,8 @@ export declare const DnnTab: StencilReactComponent<DnnTabElement, DnnTabEvents>;
|
|
|
113
113
|
export type DnnTabsEvents = NonNullable<unknown>;
|
|
114
114
|
export declare const DnnTabs: StencilReactComponent<DnnTabsElement, DnnTabsEvents>;
|
|
115
115
|
export type DnnTextareaEvents = {
|
|
116
|
-
onValueInput: EventName<
|
|
117
|
-
onValueChange: EventName<
|
|
116
|
+
onValueInput: EventName<DnnTextareaCustomEvent<string>>;
|
|
117
|
+
onValueChange: EventName<DnnTextareaCustomEvent<string>>;
|
|
118
118
|
};
|
|
119
119
|
export declare const DnnTextarea: StencilReactComponent<DnnTextareaElement, DnnTextareaEvents>;
|
|
120
120
|
export type DnnToggleEvents = {
|
|
@@ -122,13 +122,13 @@ export type DnnToggleEvents = {
|
|
|
122
122
|
};
|
|
123
123
|
export declare const DnnToggle: StencilReactComponent<DnnToggleElement, DnnToggleEvents>;
|
|
124
124
|
export type DnnTreeviewItemEvents = {
|
|
125
|
-
onUserExpanded: EventName<
|
|
126
|
-
onUserCollapsed: EventName<
|
|
125
|
+
onUserExpanded: EventName<DnnTreeviewItemCustomEvent<void>>;
|
|
126
|
+
onUserCollapsed: EventName<DnnTreeviewItemCustomEvent<void>>;
|
|
127
127
|
};
|
|
128
128
|
export declare const DnnTreeviewItem: StencilReactComponent<DnnTreeviewItemElement, DnnTreeviewItemEvents>;
|
|
129
129
|
export type DnnVerticalOverflowMenuEvents = NonNullable<unknown>;
|
|
130
130
|
export declare const DnnVerticalOverflowMenu: StencilReactComponent<DnnVerticalOverflowMenuElement, DnnVerticalOverflowMenuEvents>;
|
|
131
131
|
export type DnnVerticalSplitviewEvents = {
|
|
132
|
-
onWidthChanged: EventName<
|
|
132
|
+
onWidthChanged: EventName<DnnVerticalSplitviewCustomEvent<number>>;
|
|
133
133
|
};
|
|
134
134
|
export declare const DnnVerticalSplitview: StencilReactComponent<DnnVerticalSplitviewElement, DnnVerticalSplitviewEvents>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dnncommunity/dnn-elements-react",
|
|
3
|
-
"version": "0.27.
|
|
3
|
+
"version": "0.27.8-beta.1",
|
|
4
4
|
"description": "Dnn themed custom elements with react wrappers.",
|
|
5
5
|
"homepage": "https://github.com/dnncommunity/dnn-elements",
|
|
6
6
|
"license": "MIT",
|
|
@@ -28,16 +28,16 @@
|
|
|
28
28
|
"url": "https://github.com/dnncommunity/dnn-elements/issues"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@dnncommunity/dnn-elements": "0.27.
|
|
31
|
+
"@dnncommunity/dnn-elements": "0.27.8-beta.1",
|
|
32
32
|
"@stencil/react-output-target": "^1.2.0"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@babel/preset-env": "^7.21.4",
|
|
36
36
|
"@babel/preset-react": "^7.18.6",
|
|
37
37
|
"@babel/preset-typescript": "^7.21.4",
|
|
38
|
-
"@types/react": "^
|
|
38
|
+
"@types/react": "^19.2.9",
|
|
39
39
|
"prop-types": "^15.8.1",
|
|
40
|
-
"react": "^
|
|
40
|
+
"react": "^19.2.3",
|
|
41
41
|
"react-dom": "^19.1.0",
|
|
42
42
|
"typescript": "^5.9.2"
|
|
43
43
|
}
|