lime-elements-vue 2.0.4 → 2.1.0
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/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 +2 -1
package/dist/grid/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 LimelGrid: StencilVueComponent<JSX.LimelGrid>;
|
|
6
|
+
export { LimelGrid };
|
|
5
7
|
export default LimelGrid;
|
|
6
8
|
|
|
7
9
|
declare module 'vue' {
|
|
8
10
|
export interface GlobalComponents {
|
|
9
|
-
LimelGrid:
|
|
11
|
+
LimelGrid: StencilVueComponent<JSX.LimelGrid>;
|
|
10
12
|
}
|
|
11
13
|
}
|
package/dist/header/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 LimelHeader: StencilVueComponent<JSX.LimelHeader>;
|
|
6
|
+
export { LimelHeader };
|
|
5
7
|
export default LimelHeader;
|
|
6
8
|
|
|
7
9
|
declare module 'vue' {
|
|
8
10
|
export interface GlobalComponents {
|
|
9
|
-
LimelHeader:
|
|
11
|
+
LimelHeader: StencilVueComponent<JSX.LimelHeader>;
|
|
10
12
|
}
|
|
11
13
|
}
|
package/dist/help/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 LimelHelp: StencilVueComponent<JSX.LimelHelp>;
|
|
6
|
+
export { LimelHelp };
|
|
5
7
|
export default LimelHelp;
|
|
6
8
|
|
|
7
9
|
declare module 'vue' {
|
|
8
10
|
export interface GlobalComponents {
|
|
9
|
-
LimelHelp:
|
|
11
|
+
LimelHelp: StencilVueComponent<JSX.LimelHelp>;
|
|
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 LimelHelpContent: StencilVueComponent<JSX.LimelHelpContent>;
|
|
6
|
+
export { LimelHelpContent };
|
|
5
7
|
export default LimelHelpContent;
|
|
6
8
|
|
|
7
9
|
declare module 'vue' {
|
|
8
10
|
export interface GlobalComponents {
|
|
9
|
-
LimelHelpContent:
|
|
11
|
+
LimelHelpContent: StencilVueComponent<JSX.LimelHelpContent>;
|
|
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 LimelHelperLine: StencilVueComponent<JSX.LimelHelperLine>;
|
|
6
|
+
export { LimelHelperLine };
|
|
5
7
|
export default LimelHelperLine;
|
|
6
8
|
|
|
7
9
|
declare module 'vue' {
|
|
8
10
|
export interface GlobalComponents {
|
|
9
|
-
LimelHelperLine:
|
|
11
|
+
LimelHelperLine: StencilVueComponent<JSX.LimelHelperLine>;
|
|
10
12
|
}
|
|
11
13
|
}
|
package/dist/hotkey/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 LimelHotkey: StencilVueComponent<JSX.LimelHotkey>;
|
|
6
|
+
export { LimelHotkey };
|
|
5
7
|
export default LimelHotkey;
|
|
6
8
|
|
|
7
9
|
declare module 'vue' {
|
|
8
10
|
export interface GlobalComponents {
|
|
9
|
-
LimelHotkey:
|
|
11
|
+
LimelHotkey: StencilVueComponent<JSX.LimelHotkey>;
|
|
10
12
|
}
|
|
11
13
|
}
|
package/dist/icon/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 LimelIcon: StencilVueComponent<JSX.LimelIcon>;
|
|
6
|
+
export { LimelIcon };
|
|
5
7
|
export default LimelIcon;
|
|
6
8
|
|
|
7
9
|
declare module 'vue' {
|
|
8
10
|
export interface GlobalComponents {
|
|
9
|
-
LimelIcon:
|
|
11
|
+
LimelIcon: StencilVueComponent<JSX.LimelIcon>;
|
|
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 LimelIconButton: StencilVueComponent<JSX.LimelIconButton>;
|
|
6
|
+
export { LimelIconButton };
|
|
5
7
|
export default LimelIconButton;
|
|
6
8
|
|
|
7
9
|
declare module 'vue' {
|
|
8
10
|
export interface GlobalComponents {
|
|
9
|
-
LimelIconButton:
|
|
11
|
+
LimelIconButton: StencilVueComponent<JSX.LimelIconButton>;
|
|
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 LimelInfoTile: StencilVueComponent<JSX.LimelInfoTile>;
|
|
6
|
+
export { LimelInfoTile };
|
|
5
7
|
export default LimelInfoTile;
|
|
6
8
|
|
|
7
9
|
declare module 'vue' {
|
|
8
10
|
export interface GlobalComponents {
|
|
9
|
-
LimelInfoTile:
|
|
11
|
+
LimelInfoTile: StencilVueComponent<JSX.LimelInfoTile>;
|
|
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 LimelInputField: StencilVueComponent<JSX.LimelInputField>;
|
|
6
|
+
export { LimelInputField };
|
|
5
7
|
export default LimelInputField;
|
|
6
8
|
|
|
7
9
|
declare module 'vue' {
|
|
8
10
|
export interface GlobalComponents {
|
|
9
|
-
LimelInputField:
|
|
11
|
+
LimelInputField: StencilVueComponent<JSX.LimelInputField>;
|
|
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 LimelLinearProgress: StencilVueComponent<JSX.LimelLinearProgress>;
|
|
6
|
+
export { LimelLinearProgress };
|
|
5
7
|
export default LimelLinearProgress;
|
|
6
8
|
|
|
7
9
|
declare module 'vue' {
|
|
8
10
|
export interface GlobalComponents {
|
|
9
|
-
LimelLinearProgress:
|
|
11
|
+
LimelLinearProgress: StencilVueComponent<JSX.LimelLinearProgress>;
|
|
10
12
|
}
|
|
11
13
|
}
|
package/dist/list/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 LimelList: StencilVueComponent<JSX.LimelList>;
|
|
6
|
+
export { LimelList };
|
|
5
7
|
export default LimelList;
|
|
6
8
|
|
|
7
9
|
declare module 'vue' {
|
|
8
10
|
export interface GlobalComponents {
|
|
9
|
-
LimelList:
|
|
11
|
+
LimelList: StencilVueComponent<JSX.LimelList>;
|
|
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 LimelListItem: StencilVueComponent<JSX.LimelListItem>;
|
|
6
|
+
export { LimelListItem };
|
|
5
7
|
export default LimelListItem;
|
|
6
8
|
|
|
7
9
|
declare module 'vue' {
|
|
8
10
|
export interface GlobalComponents {
|
|
9
|
-
LimelListItem:
|
|
11
|
+
LimelListItem: StencilVueComponent<JSX.LimelListItem>;
|
|
10
12
|
}
|
|
11
13
|
}
|
package/dist/markdown/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 LimelMarkdown: StencilVueComponent<JSX.LimelMarkdown>;
|
|
6
|
+
export { LimelMarkdown };
|
|
5
7
|
export default LimelMarkdown;
|
|
6
8
|
|
|
7
9
|
declare module 'vue' {
|
|
8
10
|
export interface GlobalComponents {
|
|
9
|
-
LimelMarkdown:
|
|
11
|
+
LimelMarkdown: StencilVueComponent<JSX.LimelMarkdown>;
|
|
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 LimelMasonryLayout: StencilVueComponent<JSX.LimelMasonryLayout>;
|
|
6
|
+
export { LimelMasonryLayout };
|
|
5
7
|
export default LimelMasonryLayout;
|
|
6
8
|
|
|
7
9
|
declare module 'vue' {
|
|
8
10
|
export interface GlobalComponents {
|
|
9
|
-
LimelMasonryLayout:
|
|
11
|
+
LimelMasonryLayout: StencilVueComponent<JSX.LimelMasonryLayout>;
|
|
10
12
|
}
|
|
11
13
|
}
|
package/dist/menu/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 LimelMenu: StencilVueComponent<JSX.LimelMenu>;
|
|
6
|
+
export { LimelMenu };
|
|
5
7
|
export default LimelMenu;
|
|
6
8
|
|
|
7
9
|
declare module 'vue' {
|
|
8
10
|
export interface GlobalComponents {
|
|
9
|
-
LimelMenu:
|
|
11
|
+
LimelMenu: StencilVueComponent<JSX.LimelMenu>;
|
|
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 LimelMenuItemMeta: StencilVueComponent<JSX.LimelMenuItemMeta>;
|
|
6
|
+
export { LimelMenuItemMeta };
|
|
5
7
|
export default LimelMenuItemMeta;
|
|
6
8
|
|
|
7
9
|
declare module 'vue' {
|
|
8
10
|
export interface GlobalComponents {
|
|
9
|
-
LimelMenuItemMeta:
|
|
11
|
+
LimelMenuItemMeta: StencilVueComponent<JSX.LimelMenuItemMeta>;
|
|
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 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
|
}
|