lime-elements-vue 2.0.3 → 2.0.5
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/3d-hover-effect-glow/index.d.ts +4 -2
- package/dist/action-bar/index.d.ts +4 -2
- package/dist/action-bar-item/index.d.ts +4 -2
- package/dist/action-bar-overflow-menu/index.d.ts +4 -2
- package/dist/ai-avatar/index.d.ts +4 -2
- package/dist/badge/index.d.ts +4 -2
- package/dist/banner/index.d.ts +4 -2
- package/dist/breadcrumbs/index.d.ts +4 -2
- package/dist/button/index.d.ts +4 -2
- package/dist/button-group/index.d.ts +4 -2
- package/dist/callout/index.d.ts +4 -2
- package/dist/card/index.d.ts +4 -2
- package/dist/chart/index.d.ts +4 -2
- package/dist/checkbox/index.d.ts +4 -2
- package/dist/chip/index.d.ts +4 -2
- package/dist/chip-set/index.d.ts +4 -2
- package/dist/circular-progress/index.d.ts +4 -2
- package/dist/code-diff/index.d.ts +4 -2
- package/dist/code-editor/index.d.ts +4 -2
- package/dist/collapsible-section/index.d.ts +4 -2
- package/dist/color-picker/index.d.ts +4 -2
- package/dist/color-picker-palette/index.d.ts +4 -2
- package/dist/config/index.d.ts +4 -2
- package/dist/date-picker/index.d.ts +4 -2
- package/dist/dialog/index.d.ts +4 -2
- package/dist/dock/index.d.ts +4 -2
- package/dist/dock-button/index.d.ts +4 -2
- package/dist/drag-handle/index.d.ts +4 -2
- package/dist/dynamic-label/index.d.ts +4 -2
- package/dist/email-viewer/index.d.ts +4 -2
- package/dist/file/index.d.ts +4 -2
- package/dist/file-dropzone/index.d.ts +4 -2
- package/dist/file-input/index.d.ts +4 -2
- package/dist/file-viewer/index.d.ts +4 -2
- package/dist/flatpickr-adapter/index.d.ts +4 -2
- package/dist/flex-container/index.d.ts +4 -2
- package/dist/form/index.d.ts +4 -2
- package/dist/grid/index.d.ts +4 -2
- package/dist/header/index.d.ts +4 -2
- package/dist/help/index.d.ts +4 -2
- package/dist/help-content/index.d.ts +4 -2
- package/dist/helper-line/index.d.ts +4 -2
- package/dist/hotkey/index.d.ts +4 -2
- package/dist/icon/index.d.ts +4 -2
- package/dist/icon-button/index.d.ts +4 -2
- package/dist/index.d.ts +162 -162
- package/dist/info-tile/index.d.ts +4 -2
- package/dist/input-field/index.d.ts +4 -2
- package/dist/linear-progress/index.d.ts +4 -2
- package/dist/list/index.d.ts +4 -2
- package/dist/list-item/index.d.ts +4 -2
- package/dist/markdown/index.d.ts +4 -2
- package/dist/masonry-layout/index.d.ts +4 -2
- package/dist/menu/index.d.ts +4 -2
- package/dist/menu-item-meta/index.d.ts +4 -2
- package/dist/menu-list/index.d.ts +4 -2
- package/dist/menu-surface/index.d.ts +4 -2
- package/dist/notched-outline/index.d.ts +4 -2
- package/dist/picker/index.d.ts +4 -2
- package/dist/popover/index.d.ts +4 -2
- package/dist/popover-surface/index.d.ts +4 -2
- package/dist/portal/index.d.ts +4 -2
- package/dist/profile-picture/index.d.ts +4 -2
- package/dist/progress-flow/index.d.ts +4 -2
- package/dist/progress-flow-item/index.d.ts +4 -2
- package/dist/prosemirror-adapter/index.d.ts +4 -2
- package/dist/radio-button/index.d.ts +4 -2
- package/dist/radio-button-group/index.d.ts +4 -2
- package/dist/select/index.d.ts +4 -2
- package/dist/shortcut/index.d.ts +4 -2
- package/dist/slider/index.d.ts +4 -2
- package/dist/snackbar/index.d.ts +4 -2
- package/dist/spinner/index.d.ts +4 -2
- package/dist/split-button/index.d.ts +4 -2
- package/dist/switch/index.d.ts +4 -2
- package/dist/tab-bar/index.d.ts +4 -2
- package/dist/tab-panel/index.d.ts +4 -2
- package/dist/table/index.d.ts +4 -2
- package/dist/text-editor/index.d.ts +4 -2
- package/dist/text-editor-link-menu/index.d.ts +4 -2
- package/dist/tooltip/index.d.ts +4 -2
- package/dist/tooltip-content/index.d.ts +4 -2
- package/package.json +1 -1
|
@@ -1,11 +1,13 @@
|
|
|
1
|
+
/// <reference types="@limetech/lime-elements" />
|
|
1
2
|
import type { JSX } from '@limetech/lime-elements/dist/types/components';
|
|
2
3
|
import type { StencilVueComponent } from '@stencil/vue-output-target/runtime';
|
|
3
4
|
|
|
4
|
-
|
|
5
|
+
declare const LimelMenuList: StencilVueComponent<JSX.LimelMenuList>;
|
|
6
|
+
export { LimelMenuList };
|
|
5
7
|
export default LimelMenuList;
|
|
6
8
|
|
|
7
9
|
declare module 'vue' {
|
|
8
10
|
export interface GlobalComponents {
|
|
9
|
-
LimelMenuList:
|
|
11
|
+
LimelMenuList: StencilVueComponent<JSX.LimelMenuList>;
|
|
10
12
|
}
|
|
11
13
|
}
|
|
@@ -1,11 +1,13 @@
|
|
|
1
|
+
/// <reference types="@limetech/lime-elements" />
|
|
1
2
|
import type { JSX } from '@limetech/lime-elements/dist/types/components';
|
|
2
3
|
import type { StencilVueComponent } from '@stencil/vue-output-target/runtime';
|
|
3
4
|
|
|
4
|
-
|
|
5
|
+
declare const LimelMenuSurface: StencilVueComponent<JSX.LimelMenuSurface>;
|
|
6
|
+
export { LimelMenuSurface };
|
|
5
7
|
export default LimelMenuSurface;
|
|
6
8
|
|
|
7
9
|
declare module 'vue' {
|
|
8
10
|
export interface GlobalComponents {
|
|
9
|
-
LimelMenuSurface:
|
|
11
|
+
LimelMenuSurface: StencilVueComponent<JSX.LimelMenuSurface>;
|
|
10
12
|
}
|
|
11
13
|
}
|
|
@@ -1,11 +1,13 @@
|
|
|
1
|
+
/// <reference types="@limetech/lime-elements" />
|
|
1
2
|
import type { JSX } from '@limetech/lime-elements/dist/types/components';
|
|
2
3
|
import type { StencilVueComponent } from '@stencil/vue-output-target/runtime';
|
|
3
4
|
|
|
4
|
-
|
|
5
|
+
declare const LimelNotchedOutline: StencilVueComponent<JSX.LimelNotchedOutline>;
|
|
6
|
+
export { LimelNotchedOutline };
|
|
5
7
|
export default LimelNotchedOutline;
|
|
6
8
|
|
|
7
9
|
declare module 'vue' {
|
|
8
10
|
export interface GlobalComponents {
|
|
9
|
-
LimelNotchedOutline:
|
|
11
|
+
LimelNotchedOutline: StencilVueComponent<JSX.LimelNotchedOutline>;
|
|
10
12
|
}
|
|
11
13
|
}
|
package/dist/picker/index.d.ts
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
|
+
/// <reference types="@limetech/lime-elements" />
|
|
1
2
|
import type { JSX } from '@limetech/lime-elements/dist/types/components';
|
|
2
3
|
import type { StencilVueComponent } from '@stencil/vue-output-target/runtime';
|
|
3
4
|
|
|
4
|
-
|
|
5
|
+
declare const LimelPicker: StencilVueComponent<JSX.LimelPicker>;
|
|
6
|
+
export { LimelPicker };
|
|
5
7
|
export default LimelPicker;
|
|
6
8
|
|
|
7
9
|
declare module 'vue' {
|
|
8
10
|
export interface GlobalComponents {
|
|
9
|
-
LimelPicker:
|
|
11
|
+
LimelPicker: StencilVueComponent<JSX.LimelPicker>;
|
|
10
12
|
}
|
|
11
13
|
}
|
package/dist/popover/index.d.ts
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
|
+
/// <reference types="@limetech/lime-elements" />
|
|
1
2
|
import type { JSX } from '@limetech/lime-elements/dist/types/components';
|
|
2
3
|
import type { StencilVueComponent } from '@stencil/vue-output-target/runtime';
|
|
3
4
|
|
|
4
|
-
|
|
5
|
+
declare const LimelPopover: StencilVueComponent<JSX.LimelPopover>;
|
|
6
|
+
export { LimelPopover };
|
|
5
7
|
export default LimelPopover;
|
|
6
8
|
|
|
7
9
|
declare module 'vue' {
|
|
8
10
|
export interface GlobalComponents {
|
|
9
|
-
LimelPopover:
|
|
11
|
+
LimelPopover: StencilVueComponent<JSX.LimelPopover>;
|
|
10
12
|
}
|
|
11
13
|
}
|
|
@@ -1,11 +1,13 @@
|
|
|
1
|
+
/// <reference types="@limetech/lime-elements" />
|
|
1
2
|
import type { JSX } from '@limetech/lime-elements/dist/types/components';
|
|
2
3
|
import type { StencilVueComponent } from '@stencil/vue-output-target/runtime';
|
|
3
4
|
|
|
4
|
-
|
|
5
|
+
declare const LimelPopoverSurface: StencilVueComponent<JSX.LimelPopoverSurface>;
|
|
6
|
+
export { LimelPopoverSurface };
|
|
5
7
|
export default LimelPopoverSurface;
|
|
6
8
|
|
|
7
9
|
declare module 'vue' {
|
|
8
10
|
export interface GlobalComponents {
|
|
9
|
-
LimelPopoverSurface:
|
|
11
|
+
LimelPopoverSurface: StencilVueComponent<JSX.LimelPopoverSurface>;
|
|
10
12
|
}
|
|
11
13
|
}
|
package/dist/portal/index.d.ts
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
|
+
/// <reference types="@limetech/lime-elements" />
|
|
1
2
|
import type { JSX } from '@limetech/lime-elements/dist/types/components';
|
|
2
3
|
import type { StencilVueComponent } from '@stencil/vue-output-target/runtime';
|
|
3
4
|
|
|
4
|
-
|
|
5
|
+
declare const LimelPortal: StencilVueComponent<JSX.LimelPortal>;
|
|
6
|
+
export { LimelPortal };
|
|
5
7
|
export default LimelPortal;
|
|
6
8
|
|
|
7
9
|
declare module 'vue' {
|
|
8
10
|
export interface GlobalComponents {
|
|
9
|
-
LimelPortal:
|
|
11
|
+
LimelPortal: StencilVueComponent<JSX.LimelPortal>;
|
|
10
12
|
}
|
|
11
13
|
}
|
|
@@ -1,11 +1,13 @@
|
|
|
1
|
+
/// <reference types="@limetech/lime-elements" />
|
|
1
2
|
import type { JSX } from '@limetech/lime-elements/dist/types/components';
|
|
2
3
|
import type { StencilVueComponent } from '@stencil/vue-output-target/runtime';
|
|
3
4
|
|
|
4
|
-
|
|
5
|
+
declare const LimelProfilePicture: StencilVueComponent<JSX.LimelProfilePicture>;
|
|
6
|
+
export { LimelProfilePicture };
|
|
5
7
|
export default LimelProfilePicture;
|
|
6
8
|
|
|
7
9
|
declare module 'vue' {
|
|
8
10
|
export interface GlobalComponents {
|
|
9
|
-
LimelProfilePicture:
|
|
11
|
+
LimelProfilePicture: StencilVueComponent<JSX.LimelProfilePicture>;
|
|
10
12
|
}
|
|
11
13
|
}
|
|
@@ -1,11 +1,13 @@
|
|
|
1
|
+
/// <reference types="@limetech/lime-elements" />
|
|
1
2
|
import type { JSX } from '@limetech/lime-elements/dist/types/components';
|
|
2
3
|
import type { StencilVueComponent } from '@stencil/vue-output-target/runtime';
|
|
3
4
|
|
|
4
|
-
|
|
5
|
+
declare const LimelProgressFlow: StencilVueComponent<JSX.LimelProgressFlow>;
|
|
6
|
+
export { LimelProgressFlow };
|
|
5
7
|
export default LimelProgressFlow;
|
|
6
8
|
|
|
7
9
|
declare module 'vue' {
|
|
8
10
|
export interface GlobalComponents {
|
|
9
|
-
LimelProgressFlow:
|
|
11
|
+
LimelProgressFlow: StencilVueComponent<JSX.LimelProgressFlow>;
|
|
10
12
|
}
|
|
11
13
|
}
|
|
@@ -1,11 +1,13 @@
|
|
|
1
|
+
/// <reference types="@limetech/lime-elements" />
|
|
1
2
|
import type { JSX } from '@limetech/lime-elements/dist/types/components';
|
|
2
3
|
import type { StencilVueComponent } from '@stencil/vue-output-target/runtime';
|
|
3
4
|
|
|
4
|
-
|
|
5
|
+
declare const LimelProgressFlowItem: StencilVueComponent<JSX.LimelProgressFlowItem>;
|
|
6
|
+
export { LimelProgressFlowItem };
|
|
5
7
|
export default LimelProgressFlowItem;
|
|
6
8
|
|
|
7
9
|
declare module 'vue' {
|
|
8
10
|
export interface GlobalComponents {
|
|
9
|
-
LimelProgressFlowItem:
|
|
11
|
+
LimelProgressFlowItem: StencilVueComponent<JSX.LimelProgressFlowItem>;
|
|
10
12
|
}
|
|
11
13
|
}
|
|
@@ -1,11 +1,13 @@
|
|
|
1
|
+
/// <reference types="@limetech/lime-elements" />
|
|
1
2
|
import type { JSX } from '@limetech/lime-elements/dist/types/components';
|
|
2
3
|
import type { StencilVueComponent } from '@stencil/vue-output-target/runtime';
|
|
3
4
|
|
|
4
|
-
|
|
5
|
+
declare const LimelProsemirrorAdapter: StencilVueComponent<JSX.LimelProsemirrorAdapter>;
|
|
6
|
+
export { LimelProsemirrorAdapter };
|
|
5
7
|
export default LimelProsemirrorAdapter;
|
|
6
8
|
|
|
7
9
|
declare module 'vue' {
|
|
8
10
|
export interface GlobalComponents {
|
|
9
|
-
LimelProsemirrorAdapter:
|
|
11
|
+
LimelProsemirrorAdapter: StencilVueComponent<JSX.LimelProsemirrorAdapter>;
|
|
10
12
|
}
|
|
11
13
|
}
|
|
@@ -1,11 +1,13 @@
|
|
|
1
|
+
/// <reference types="@limetech/lime-elements" />
|
|
1
2
|
import type { JSX } from '@limetech/lime-elements/dist/types/components';
|
|
2
3
|
import type { StencilVueComponent } from '@stencil/vue-output-target/runtime';
|
|
3
4
|
|
|
4
|
-
|
|
5
|
+
declare const LimelRadioButton: StencilVueComponent<JSX.LimelRadioButton>;
|
|
6
|
+
export { LimelRadioButton };
|
|
5
7
|
export default LimelRadioButton;
|
|
6
8
|
|
|
7
9
|
declare module 'vue' {
|
|
8
10
|
export interface GlobalComponents {
|
|
9
|
-
LimelRadioButton:
|
|
11
|
+
LimelRadioButton: StencilVueComponent<JSX.LimelRadioButton>;
|
|
10
12
|
}
|
|
11
13
|
}
|
|
@@ -1,11 +1,13 @@
|
|
|
1
|
+
/// <reference types="@limetech/lime-elements" />
|
|
1
2
|
import type { JSX } from '@limetech/lime-elements/dist/types/components';
|
|
2
3
|
import type { StencilVueComponent } from '@stencil/vue-output-target/runtime';
|
|
3
4
|
|
|
4
|
-
|
|
5
|
+
declare const LimelRadioButtonGroup: StencilVueComponent<JSX.LimelRadioButtonGroup>;
|
|
6
|
+
export { LimelRadioButtonGroup };
|
|
5
7
|
export default LimelRadioButtonGroup;
|
|
6
8
|
|
|
7
9
|
declare module 'vue' {
|
|
8
10
|
export interface GlobalComponents {
|
|
9
|
-
LimelRadioButtonGroup:
|
|
11
|
+
LimelRadioButtonGroup: StencilVueComponent<JSX.LimelRadioButtonGroup>;
|
|
10
12
|
}
|
|
11
13
|
}
|
package/dist/select/index.d.ts
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
|
+
/// <reference types="@limetech/lime-elements" />
|
|
1
2
|
import type { JSX } from '@limetech/lime-elements/dist/types/components';
|
|
2
3
|
import type { StencilVueComponent } from '@stencil/vue-output-target/runtime';
|
|
3
4
|
|
|
4
|
-
|
|
5
|
+
declare const LimelSelect: StencilVueComponent<JSX.LimelSelect>;
|
|
6
|
+
export { LimelSelect };
|
|
5
7
|
export default LimelSelect;
|
|
6
8
|
|
|
7
9
|
declare module 'vue' {
|
|
8
10
|
export interface GlobalComponents {
|
|
9
|
-
LimelSelect:
|
|
11
|
+
LimelSelect: StencilVueComponent<JSX.LimelSelect>;
|
|
10
12
|
}
|
|
11
13
|
}
|
package/dist/shortcut/index.d.ts
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
|
+
/// <reference types="@limetech/lime-elements" />
|
|
1
2
|
import type { JSX } from '@limetech/lime-elements/dist/types/components';
|
|
2
3
|
import type { StencilVueComponent } from '@stencil/vue-output-target/runtime';
|
|
3
4
|
|
|
4
|
-
|
|
5
|
+
declare const LimelShortcut: StencilVueComponent<JSX.LimelShortcut>;
|
|
6
|
+
export { LimelShortcut };
|
|
5
7
|
export default LimelShortcut;
|
|
6
8
|
|
|
7
9
|
declare module 'vue' {
|
|
8
10
|
export interface GlobalComponents {
|
|
9
|
-
LimelShortcut:
|
|
11
|
+
LimelShortcut: StencilVueComponent<JSX.LimelShortcut>;
|
|
10
12
|
}
|
|
11
13
|
}
|
package/dist/slider/index.d.ts
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
|
+
/// <reference types="@limetech/lime-elements" />
|
|
1
2
|
import type { JSX } from '@limetech/lime-elements/dist/types/components';
|
|
2
3
|
import type { StencilVueComponent } from '@stencil/vue-output-target/runtime';
|
|
3
4
|
|
|
4
|
-
|
|
5
|
+
declare const LimelSlider: StencilVueComponent<JSX.LimelSlider>;
|
|
6
|
+
export { LimelSlider };
|
|
5
7
|
export default LimelSlider;
|
|
6
8
|
|
|
7
9
|
declare module 'vue' {
|
|
8
10
|
export interface GlobalComponents {
|
|
9
|
-
LimelSlider:
|
|
11
|
+
LimelSlider: StencilVueComponent<JSX.LimelSlider>;
|
|
10
12
|
}
|
|
11
13
|
}
|
package/dist/snackbar/index.d.ts
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
|
+
/// <reference types="@limetech/lime-elements" />
|
|
1
2
|
import type { JSX } from '@limetech/lime-elements/dist/types/components';
|
|
2
3
|
import type { StencilVueComponent } from '@stencil/vue-output-target/runtime';
|
|
3
4
|
|
|
4
|
-
|
|
5
|
+
declare const LimelSnackbar: StencilVueComponent<JSX.LimelSnackbar>;
|
|
6
|
+
export { LimelSnackbar };
|
|
5
7
|
export default LimelSnackbar;
|
|
6
8
|
|
|
7
9
|
declare module 'vue' {
|
|
8
10
|
export interface GlobalComponents {
|
|
9
|
-
LimelSnackbar:
|
|
11
|
+
LimelSnackbar: StencilVueComponent<JSX.LimelSnackbar>;
|
|
10
12
|
}
|
|
11
13
|
}
|
package/dist/spinner/index.d.ts
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
|
+
/// <reference types="@limetech/lime-elements" />
|
|
1
2
|
import type { JSX } from '@limetech/lime-elements/dist/types/components';
|
|
2
3
|
import type { StencilVueComponent } from '@stencil/vue-output-target/runtime';
|
|
3
4
|
|
|
4
|
-
|
|
5
|
+
declare const LimelSpinner: StencilVueComponent<JSX.LimelSpinner>;
|
|
6
|
+
export { LimelSpinner };
|
|
5
7
|
export default LimelSpinner;
|
|
6
8
|
|
|
7
9
|
declare module 'vue' {
|
|
8
10
|
export interface GlobalComponents {
|
|
9
|
-
LimelSpinner:
|
|
11
|
+
LimelSpinner: StencilVueComponent<JSX.LimelSpinner>;
|
|
10
12
|
}
|
|
11
13
|
}
|
|
@@ -1,11 +1,13 @@
|
|
|
1
|
+
/// <reference types="@limetech/lime-elements" />
|
|
1
2
|
import type { JSX } from '@limetech/lime-elements/dist/types/components';
|
|
2
3
|
import type { StencilVueComponent } from '@stencil/vue-output-target/runtime';
|
|
3
4
|
|
|
4
|
-
|
|
5
|
+
declare const LimelSplitButton: StencilVueComponent<JSX.LimelSplitButton>;
|
|
6
|
+
export { LimelSplitButton };
|
|
5
7
|
export default LimelSplitButton;
|
|
6
8
|
|
|
7
9
|
declare module 'vue' {
|
|
8
10
|
export interface GlobalComponents {
|
|
9
|
-
LimelSplitButton:
|
|
11
|
+
LimelSplitButton: StencilVueComponent<JSX.LimelSplitButton>;
|
|
10
12
|
}
|
|
11
13
|
}
|
package/dist/switch/index.d.ts
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
|
+
/// <reference types="@limetech/lime-elements" />
|
|
1
2
|
import type { JSX } from '@limetech/lime-elements/dist/types/components';
|
|
2
3
|
import type { StencilVueComponent } from '@stencil/vue-output-target/runtime';
|
|
3
4
|
|
|
4
|
-
|
|
5
|
+
declare const LimelSwitch: StencilVueComponent<JSX.LimelSwitch>;
|
|
6
|
+
export { LimelSwitch };
|
|
5
7
|
export default LimelSwitch;
|
|
6
8
|
|
|
7
9
|
declare module 'vue' {
|
|
8
10
|
export interface GlobalComponents {
|
|
9
|
-
LimelSwitch:
|
|
11
|
+
LimelSwitch: StencilVueComponent<JSX.LimelSwitch>;
|
|
10
12
|
}
|
|
11
13
|
}
|
package/dist/tab-bar/index.d.ts
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
|
+
/// <reference types="@limetech/lime-elements" />
|
|
1
2
|
import type { JSX } from '@limetech/lime-elements/dist/types/components';
|
|
2
3
|
import type { StencilVueComponent } from '@stencil/vue-output-target/runtime';
|
|
3
4
|
|
|
4
|
-
|
|
5
|
+
declare const LimelTabBar: StencilVueComponent<JSX.LimelTabBar>;
|
|
6
|
+
export { LimelTabBar };
|
|
5
7
|
export default LimelTabBar;
|
|
6
8
|
|
|
7
9
|
declare module 'vue' {
|
|
8
10
|
export interface GlobalComponents {
|
|
9
|
-
LimelTabBar:
|
|
11
|
+
LimelTabBar: StencilVueComponent<JSX.LimelTabBar>;
|
|
10
12
|
}
|
|
11
13
|
}
|
|
@@ -1,11 +1,13 @@
|
|
|
1
|
+
/// <reference types="@limetech/lime-elements" />
|
|
1
2
|
import type { JSX } from '@limetech/lime-elements/dist/types/components';
|
|
2
3
|
import type { StencilVueComponent } from '@stencil/vue-output-target/runtime';
|
|
3
4
|
|
|
4
|
-
|
|
5
|
+
declare const LimelTabPanel: StencilVueComponent<JSX.LimelTabPanel>;
|
|
6
|
+
export { LimelTabPanel };
|
|
5
7
|
export default LimelTabPanel;
|
|
6
8
|
|
|
7
9
|
declare module 'vue' {
|
|
8
10
|
export interface GlobalComponents {
|
|
9
|
-
LimelTabPanel:
|
|
11
|
+
LimelTabPanel: StencilVueComponent<JSX.LimelTabPanel>;
|
|
10
12
|
}
|
|
11
13
|
}
|
package/dist/table/index.d.ts
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
|
+
/// <reference types="@limetech/lime-elements" />
|
|
1
2
|
import type { JSX } from '@limetech/lime-elements/dist/types/components';
|
|
2
3
|
import type { StencilVueComponent } from '@stencil/vue-output-target/runtime';
|
|
3
4
|
|
|
4
|
-
|
|
5
|
+
declare const LimelTable: StencilVueComponent<JSX.LimelTable>;
|
|
6
|
+
export { LimelTable };
|
|
5
7
|
export default LimelTable;
|
|
6
8
|
|
|
7
9
|
declare module 'vue' {
|
|
8
10
|
export interface GlobalComponents {
|
|
9
|
-
LimelTable:
|
|
11
|
+
LimelTable: StencilVueComponent<JSX.LimelTable>;
|
|
10
12
|
}
|
|
11
13
|
}
|
|
@@ -1,11 +1,13 @@
|
|
|
1
|
+
/// <reference types="@limetech/lime-elements" />
|
|
1
2
|
import type { JSX } from '@limetech/lime-elements/dist/types/components';
|
|
2
3
|
import type { StencilVueComponent } from '@stencil/vue-output-target/runtime';
|
|
3
4
|
|
|
4
|
-
|
|
5
|
+
declare const LimelTextEditor: StencilVueComponent<JSX.LimelTextEditor>;
|
|
6
|
+
export { LimelTextEditor };
|
|
5
7
|
export default LimelTextEditor;
|
|
6
8
|
|
|
7
9
|
declare module 'vue' {
|
|
8
10
|
export interface GlobalComponents {
|
|
9
|
-
LimelTextEditor:
|
|
11
|
+
LimelTextEditor: StencilVueComponent<JSX.LimelTextEditor>;
|
|
10
12
|
}
|
|
11
13
|
}
|
|
@@ -1,11 +1,13 @@
|
|
|
1
|
+
/// <reference types="@limetech/lime-elements" />
|
|
1
2
|
import type { JSX } from '@limetech/lime-elements/dist/types/components';
|
|
2
3
|
import type { StencilVueComponent } from '@stencil/vue-output-target/runtime';
|
|
3
4
|
|
|
4
|
-
|
|
5
|
+
declare const LimelTextEditorLinkMenu: StencilVueComponent<JSX.LimelTextEditorLinkMenu>;
|
|
6
|
+
export { LimelTextEditorLinkMenu };
|
|
5
7
|
export default LimelTextEditorLinkMenu;
|
|
6
8
|
|
|
7
9
|
declare module 'vue' {
|
|
8
10
|
export interface GlobalComponents {
|
|
9
|
-
LimelTextEditorLinkMenu:
|
|
11
|
+
LimelTextEditorLinkMenu: StencilVueComponent<JSX.LimelTextEditorLinkMenu>;
|
|
10
12
|
}
|
|
11
13
|
}
|
package/dist/tooltip/index.d.ts
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
|
+
/// <reference types="@limetech/lime-elements" />
|
|
1
2
|
import type { JSX } from '@limetech/lime-elements/dist/types/components';
|
|
2
3
|
import type { StencilVueComponent } from '@stencil/vue-output-target/runtime';
|
|
3
4
|
|
|
4
|
-
|
|
5
|
+
declare const LimelTooltip: StencilVueComponent<JSX.LimelTooltip>;
|
|
6
|
+
export { LimelTooltip };
|
|
5
7
|
export default LimelTooltip;
|
|
6
8
|
|
|
7
9
|
declare module 'vue' {
|
|
8
10
|
export interface GlobalComponents {
|
|
9
|
-
LimelTooltip:
|
|
11
|
+
LimelTooltip: StencilVueComponent<JSX.LimelTooltip>;
|
|
10
12
|
}
|
|
11
13
|
}
|
|
@@ -1,11 +1,13 @@
|
|
|
1
|
+
/// <reference types="@limetech/lime-elements" />
|
|
1
2
|
import type { JSX } from '@limetech/lime-elements/dist/types/components';
|
|
2
3
|
import type { StencilVueComponent } from '@stencil/vue-output-target/runtime';
|
|
3
4
|
|
|
4
|
-
|
|
5
|
+
declare const LimelTooltipContent: StencilVueComponent<JSX.LimelTooltipContent>;
|
|
6
|
+
export { LimelTooltipContent };
|
|
5
7
|
export default LimelTooltipContent;
|
|
6
8
|
|
|
7
9
|
declare module 'vue' {
|
|
8
10
|
export interface GlobalComponents {
|
|
9
|
-
LimelTooltipContent:
|
|
11
|
+
LimelTooltipContent: StencilVueComponent<JSX.LimelTooltipContent>;
|
|
10
12
|
}
|
|
11
13
|
}
|