kritzel-react 0.1.65 → 0.1.67
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.
|
@@ -3,6 +3,7 @@ import { createComponent } from '@stencil/react-output-target/runtime';
|
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import { KritzelBackToContent as KritzelBackToContentElement, defineCustomElement as defineKritzelBackToContent } from "../../../../kritzel-stencil/dist/components/kritzel-back-to-content.js";
|
|
5
5
|
import { KritzelButton as KritzelButtonElement, defineCustomElement as defineKritzelButton } from "../../../../kritzel-stencil/dist/components/kritzel-button.js";
|
|
6
|
+
import { KritzelCurrentUserDialog as KritzelCurrentUserDialogElement, defineCustomElement as defineKritzelCurrentUserDialog } from "../../../../kritzel-stencil/dist/components/kritzel-current-user-dialog.js";
|
|
6
7
|
import { KritzelDialog as KritzelDialogElement, defineCustomElement as defineKritzelDialog } from "../../../../kritzel-stencil/dist/components/kritzel-dialog.js";
|
|
7
8
|
import { KritzelEditor as KritzelEditorElement, defineCustomElement as defineKritzelEditor } from "../../../../kritzel-stencil/dist/components/kritzel-editor.js";
|
|
8
9
|
import { KritzelExport as KritzelExportElement, defineCustomElement as defineKritzelExport } from "../../../../kritzel-stencil/dist/components/kritzel-export.js";
|
|
@@ -30,6 +31,14 @@ export const KritzelButton = /*@__PURE__*/ createComponent({
|
|
|
30
31
|
events: { onButtonClick: 'buttonClick' },
|
|
31
32
|
defineCustomElement: defineKritzelButton
|
|
32
33
|
});
|
|
34
|
+
export const KritzelCurrentUserDialog = /*@__PURE__*/ createComponent({
|
|
35
|
+
tagName: 'kritzel-current-user-dialog',
|
|
36
|
+
elementClass: KritzelCurrentUserDialogElement,
|
|
37
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
38
|
+
react: React,
|
|
39
|
+
events: {},
|
|
40
|
+
defineCustomElement: defineKritzelCurrentUserDialog
|
|
41
|
+
});
|
|
33
42
|
export const KritzelDialog = /*@__PURE__*/ createComponent({
|
|
34
43
|
tagName: 'kritzel-dialog',
|
|
35
44
|
elementClass: KritzelDialogElement,
|
|
@@ -6,6 +6,7 @@ import type { EventName, StencilReactComponent } from '@stencil/react-output-tar
|
|
|
6
6
|
import { type ActiveWorkspaceChangeEvent, type EditorIsReadyEvent, type IKritzelDialogCloseEvent, type IKritzelIsPublicChangedEvent, type IKritzelMasterDetailSelectEvent, type KritzelBackToContentCustomEvent, type KritzelBaseObject, type KritzelButtonCustomEvent, type KritzelDialogCustomEvent, type KritzelEditorCustomEvent, type KritzelExportCustomEvent, type KritzelInputCustomEvent, type KritzelLineEndingsCustomEvent, type KritzelLoginDialogCustomEvent, type KritzelMasterDetailCustomEvent, type KritzelNumericInputCustomEvent, type KritzelOpacitySliderCustomEvent, type KritzelPillTabsCustomEvent, type KritzelSettingsConfig, type KritzelSettingsCustomEvent, type KritzelUndoState, type KritzelViewportState, type LineArrowConfig, type LoginEvent, type ObjectsAddedEvent, type ObjectsRemovedEvent, type ObjectsUpdatedEvent, type ThemeName } from "../../../../kritzel-stencil";
|
|
7
7
|
import { KritzelBackToContent as KritzelBackToContentElement } from "../../../../kritzel-stencil/dist/components/kritzel-back-to-content.js";
|
|
8
8
|
import { KritzelButton as KritzelButtonElement } from "../../../../kritzel-stencil/dist/components/kritzel-button.js";
|
|
9
|
+
import { KritzelCurrentUserDialog as KritzelCurrentUserDialogElement } from "../../../../kritzel-stencil/dist/components/kritzel-current-user-dialog.js";
|
|
9
10
|
import { KritzelDialog as KritzelDialogElement } from "../../../../kritzel-stencil/dist/components/kritzel-dialog.js";
|
|
10
11
|
import { KritzelEditor as KritzelEditorElement } from "../../../../kritzel-stencil/dist/components/kritzel-editor.js";
|
|
11
12
|
import { KritzelExport as KritzelExportElement } from "../../../../kritzel-stencil/dist/components/kritzel-export.js";
|
|
@@ -25,6 +26,8 @@ export type KritzelButtonEvents = {
|
|
|
25
26
|
onButtonClick: EventName<KritzelButtonCustomEvent<void>>;
|
|
26
27
|
};
|
|
27
28
|
export declare const KritzelButton: StencilReactComponent<KritzelButtonElement, KritzelButtonEvents>;
|
|
29
|
+
export type KritzelCurrentUserDialogEvents = NonNullable<unknown>;
|
|
30
|
+
export declare const KritzelCurrentUserDialog: StencilReactComponent<KritzelCurrentUserDialogElement, KritzelCurrentUserDialogEvents>;
|
|
28
31
|
export type KritzelDialogEvents = {
|
|
29
32
|
onDialogOpen: EventName<KritzelDialogCustomEvent<void>>;
|
|
30
33
|
onDialogClose: EventName<KritzelDialogCustomEvent<IKritzelDialogCloseEvent>>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kritzel-react",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.67",
|
|
4
4
|
"homepage": "https://gitlab.com/kasual1/kritzel#readme",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"@stencil/react-output-target": "^1.2.0"
|
|
21
21
|
},
|
|
22
22
|
"peerDependencies": {
|
|
23
|
-
"kritzel-stencil": "^0.1.
|
|
23
|
+
"kritzel-stencil": "^0.1.67"
|
|
24
24
|
},
|
|
25
25
|
"repository": {
|
|
26
26
|
"type": "git",
|