@luzmo/ngx-lucero 1.0.1-alpha.78
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/README.md +41 -0
- package/esm/components/accordion-item.d.ts +32 -0
- package/esm/components/accordion-item.js +89 -0
- package/esm/components/accordion.d.ts +38 -0
- package/esm/components/accordion.js +107 -0
- package/esm/components/action-bar.d.ts +32 -0
- package/esm/components/action-bar.js +83 -0
- package/esm/components/action-button.d.ts +59 -0
- package/esm/components/action-button.js +205 -0
- package/esm/components/action-group.d.ts +42 -0
- package/esm/components/action-group.js +155 -0
- package/esm/components/action-menu.d.ts +75 -0
- package/esm/components/action-menu.js +337 -0
- package/esm/components/avatar.d.ts +35 -0
- package/esm/components/avatar.js +94 -0
- package/esm/components/badge.d.ts +31 -0
- package/esm/components/badge.js +86 -0
- package/esm/components/button-group.d.ts +28 -0
- package/esm/components/button-group.js +71 -0
- package/esm/components/button.d.ts +40 -0
- package/esm/components/button.js +140 -0
- package/esm/components/calendar.d.ts +64 -0
- package/esm/components/calendar.js +218 -0
- package/esm/components/chat-message-group.d.ts +29 -0
- package/esm/components/chat-message-group.js +76 -0
- package/esm/components/chat-message.d.ts +50 -0
- package/esm/components/chat-message.js +156 -0
- package/esm/components/checkbox.d.ts +55 -0
- package/esm/components/checkbox.js +196 -0
- package/esm/components/clear-button.d.ts +32 -0
- package/esm/components/clear-button.js +88 -0
- package/esm/components/close-button.d.ts +33 -0
- package/esm/components/close-button.js +95 -0
- package/esm/components/color-area.d.ts +45 -0
- package/esm/components/color-area.js +167 -0
- package/esm/components/color-field.d.ts +91 -0
- package/esm/components/color-field.js +321 -0
- package/esm/components/color-handle.d.ts +31 -0
- package/esm/components/color-handle.js +90 -0
- package/esm/components/color-loupe.d.ts +29 -0
- package/esm/components/color-loupe.js +76 -0
- package/esm/components/color-menu.d.ts +36 -0
- package/esm/components/color-menu.js +97 -0
- package/esm/components/color-palette-group.d.ts +40 -0
- package/esm/components/color-palette-group.js +117 -0
- package/esm/components/color-palette.d.ts +43 -0
- package/esm/components/color-palette.js +126 -0
- package/esm/components/color-picker.d.ts +49 -0
- package/esm/components/color-picker.js +143 -0
- package/esm/components/color-slider.d.ts +53 -0
- package/esm/components/color-slider.js +215 -0
- package/esm/components/date-range-picker.d.ts +69 -0
- package/esm/components/date-range-picker.js +228 -0
- package/esm/components/date-time-picker.d.ts +71 -0
- package/esm/components/date-time-picker.js +249 -0
- package/esm/components/divider.d.ts +31 -0
- package/esm/components/divider.js +78 -0
- package/esm/components/field-group.d.ts +32 -0
- package/esm/components/field-group.js +101 -0
- package/esm/components/field-label.d.ts +37 -0
- package/esm/components/field-label.js +104 -0
- package/esm/components/help-text.d.ts +30 -0
- package/esm/components/help-text.js +77 -0
- package/esm/components/icon.d.ts +33 -0
- package/esm/components/icon.js +104 -0
- package/esm/components/infield-button.d.ts +35 -0
- package/esm/components/infield-button.js +103 -0
- package/esm/components/label.d.ts +29 -0
- package/esm/components/label.js +76 -0
- package/esm/components/menu.d.ts +53 -0
- package/esm/components/menu.js +218 -0
- package/esm/components/multi-language-field.d.ts +58 -0
- package/esm/components/multi-language-field.js +263 -0
- package/esm/components/number-field.d.ts +103 -0
- package/esm/components/number-field.js +372 -0
- package/esm/components/options.d.ts +58 -0
- package/esm/components/options.js +207 -0
- package/esm/components/overlay.d.ts +67 -0
- package/esm/components/overlay.js +212 -0
- package/esm/components/picker-button.d.ts +32 -0
- package/esm/components/picker-button.js +94 -0
- package/esm/components/picker.d.ts +79 -0
- package/esm/components/picker.js +340 -0
- package/esm/components/popover.d.ts +33 -0
- package/esm/components/popover.js +93 -0
- package/esm/components/progress-bar.d.ts +35 -0
- package/esm/components/progress-bar.js +121 -0
- package/esm/components/progress-circle.d.ts +35 -0
- package/esm/components/progress-circle.js +94 -0
- package/esm/components/progress-steps.d.ts +46 -0
- package/esm/components/progress-steps.js +127 -0
- package/esm/components/prompt-box.d.ts +88 -0
- package/esm/components/prompt-box.js +280 -0
- package/esm/components/radio-group.d.ts +39 -0
- package/esm/components/radio-group.js +136 -0
- package/esm/components/radio.d.ts +46 -0
- package/esm/components/radio.js +172 -0
- package/esm/components/search.d.ts +95 -0
- package/esm/components/search.js +351 -0
- package/esm/components/select.d.ts +82 -0
- package/esm/components/select.js +351 -0
- package/esm/components/slider.d.ts +47 -0
- package/esm/components/slider.js +185 -0
- package/esm/components/status-light.d.ts +30 -0
- package/esm/components/status-light.js +78 -0
- package/esm/components/swatch-group.d.ts +37 -0
- package/esm/components/swatch-group.js +126 -0
- package/esm/components/swatch.d.ts +49 -0
- package/esm/components/swatch.js +197 -0
- package/esm/components/switch.d.ts +48 -0
- package/esm/components/switch.js +160 -0
- package/esm/components/tab-panel.d.ts +29 -0
- package/esm/components/tab-panel.js +78 -0
- package/esm/components/tab.d.ts +32 -0
- package/esm/components/tab.js +100 -0
- package/esm/components/tabs-overflow.d.ts +33 -0
- package/esm/components/tabs-overflow.js +97 -0
- package/esm/components/tabs.d.ts +43 -0
- package/esm/components/tabs.js +150 -0
- package/esm/components/tag.d.ts +31 -0
- package/esm/components/tag.js +90 -0
- package/esm/components/tags.d.ts +30 -0
- package/esm/components/tags.js +81 -0
- package/esm/components/text-field.d.ts +87 -0
- package/esm/components/text-field.js +308 -0
- package/esm/components/toast.d.ts +30 -0
- package/esm/components/toast.js +68 -0
- package/esm/components/tooltip.d.ts +44 -0
- package/esm/components/tooltip.js +154 -0
- package/esm/components/top-nav-item.d.ts +35 -0
- package/esm/components/top-nav-item.js +120 -0
- package/esm/components/top-nav.d.ts +35 -0
- package/esm/components/top-nav.js +110 -0
- package/esm/index.d.ts +135 -0
- package/esm/index.js +269 -0
- package/package.json +40 -0
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
import { ChangeDetectionStrategy, Component, DestroyRef, ElementRef, inject, Input, Renderer2 } from '@angular/core';
|
|
2
|
+
import '@luzmo/lucero/top-nav';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
const _c0 = ["*"];
|
|
5
|
+
/**
|
|
6
|
+
* Angular wrapper component for <luzmo-top-nav-item>
|
|
7
|
+
*
|
|
8
|
+
* @slot (default) - text label of the navigation item
|
|
9
|
+
*/
|
|
10
|
+
export class LuzmoTopNavItem {
|
|
11
|
+
elementRef = inject(ElementRef);
|
|
12
|
+
renderer = inject(Renderer2);
|
|
13
|
+
destroyRef = inject(DestroyRef);
|
|
14
|
+
host = this.elementRef.nativeElement;
|
|
15
|
+
listenerCleanup = [];
|
|
16
|
+
/** The underlying custom element instance. Use to call imperative methods. */
|
|
17
|
+
get nativeElement() {
|
|
18
|
+
return this.host;
|
|
19
|
+
}
|
|
20
|
+
href;
|
|
21
|
+
target;
|
|
22
|
+
download;
|
|
23
|
+
rel;
|
|
24
|
+
label;
|
|
25
|
+
selected;
|
|
26
|
+
disabled;
|
|
27
|
+
value;
|
|
28
|
+
constructor() {
|
|
29
|
+
this.bindEvents();
|
|
30
|
+
this.destroyRef.onDestroy(() => {
|
|
31
|
+
for (const cleanup of this.listenerCleanup) {
|
|
32
|
+
cleanup();
|
|
33
|
+
}
|
|
34
|
+
});
|
|
35
|
+
}
|
|
36
|
+
ngOnChanges(changes) {
|
|
37
|
+
for (const key of Object.keys(changes)) {
|
|
38
|
+
switch (key) {
|
|
39
|
+
case 'href':
|
|
40
|
+
this.setHostProperty('href', changes['href'].currentValue);
|
|
41
|
+
break;
|
|
42
|
+
case 'target':
|
|
43
|
+
this.setHostProperty('target', changes['target'].currentValue);
|
|
44
|
+
break;
|
|
45
|
+
case 'download':
|
|
46
|
+
this.setHostProperty('download', changes['download'].currentValue);
|
|
47
|
+
break;
|
|
48
|
+
case 'rel':
|
|
49
|
+
this.setHostProperty('rel', changes['rel'].currentValue);
|
|
50
|
+
break;
|
|
51
|
+
case 'label':
|
|
52
|
+
this.setHostProperty('label', changes['label'].currentValue);
|
|
53
|
+
break;
|
|
54
|
+
case 'selected':
|
|
55
|
+
this.setHostProperty('selected', changes['selected'].currentValue);
|
|
56
|
+
break;
|
|
57
|
+
case 'disabled':
|
|
58
|
+
this.setHostProperty('disabled', changes['disabled'].currentValue);
|
|
59
|
+
break;
|
|
60
|
+
case 'value':
|
|
61
|
+
this.setHostProperty('value', changes['value'].currentValue);
|
|
62
|
+
break;
|
|
63
|
+
default:
|
|
64
|
+
break;
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
/**
|
|
69
|
+
* Forward a wrapper @Input to the underlying host element via Renderer2 so
|
|
70
|
+
* the wrapper stays compatible with non-DOM Angular platforms (SSR, tests).
|
|
71
|
+
* Unlike a "skip undefined" guard, this lets consumers reset values back to
|
|
72
|
+
* undefined / null by clearing their bindings.
|
|
73
|
+
*/
|
|
74
|
+
setHostProperty(key, value) {
|
|
75
|
+
this.renderer.setProperty(this.host, key, value);
|
|
76
|
+
}
|
|
77
|
+
bindEvents() {
|
|
78
|
+
// No custom events for this wrapper.
|
|
79
|
+
}
|
|
80
|
+
static ɵfac = function LuzmoTopNavItem_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || LuzmoTopNavItem)(); };
|
|
81
|
+
static ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: LuzmoTopNavItem, selectors: [["luzmo-top-nav-item"]], inputs: { href: "href", target: "target", download: "download", rel: "rel", label: "label", selected: "selected", disabled: "disabled", value: "value" }, exportAs: ["luzmoTopNavItem"], features: [i0.ɵɵNgOnChangesFeature], ngContentSelectors: _c0, decls: 1, vars: 0, template: function LuzmoTopNavItem_Template(rf, ctx) { if (rf & 1) {
|
|
82
|
+
i0.ɵɵprojectionDef();
|
|
83
|
+
i0.ɵɵprojection(0);
|
|
84
|
+
} }, encapsulation: 2, changeDetection: 0 });
|
|
85
|
+
}
|
|
86
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(LuzmoTopNavItem, [{
|
|
87
|
+
type: Component,
|
|
88
|
+
args: [{
|
|
89
|
+
selector: 'luzmo-top-nav-item',
|
|
90
|
+
exportAs: 'luzmoTopNavItem',
|
|
91
|
+
standalone: true,
|
|
92
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
93
|
+
template: '<ng-content />'
|
|
94
|
+
}]
|
|
95
|
+
}], () => [], { href: [{
|
|
96
|
+
type: Input,
|
|
97
|
+
args: [{ alias: 'href' }]
|
|
98
|
+
}], target: [{
|
|
99
|
+
type: Input,
|
|
100
|
+
args: [{ alias: 'target' }]
|
|
101
|
+
}], download: [{
|
|
102
|
+
type: Input,
|
|
103
|
+
args: [{ alias: 'download' }]
|
|
104
|
+
}], rel: [{
|
|
105
|
+
type: Input,
|
|
106
|
+
args: [{ alias: 'rel' }]
|
|
107
|
+
}], label: [{
|
|
108
|
+
type: Input,
|
|
109
|
+
args: [{ alias: 'label' }]
|
|
110
|
+
}], selected: [{
|
|
111
|
+
type: Input,
|
|
112
|
+
args: [{ alias: 'selected' }]
|
|
113
|
+
}], disabled: [{
|
|
114
|
+
type: Input,
|
|
115
|
+
args: [{ alias: 'disabled' }]
|
|
116
|
+
}], value: [{
|
|
117
|
+
type: Input,
|
|
118
|
+
args: [{ alias: 'value' }]
|
|
119
|
+
}] }); })();
|
|
120
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(LuzmoTopNavItem, { className: "LuzmoTopNavItem", filePath: "components/top-nav-item.ts", lineNumber: 17 }); })();
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
+
import '@luzmo/lucero/top-nav';
|
|
3
|
+
import type { LuzmoTopNav as LuzmoTopNavHostElement } from '@luzmo/lucero/top-nav';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class LuzmoTopNav implements OnChanges {
|
|
6
|
+
private readonly elementRef;
|
|
7
|
+
private readonly renderer;
|
|
8
|
+
private readonly destroyRef;
|
|
9
|
+
private readonly host;
|
|
10
|
+
private readonly listenerCleanup;
|
|
11
|
+
/** The underlying custom element instance. Use to call imperative methods. */
|
|
12
|
+
get nativeElement(): LuzmoTopNavHostElement;
|
|
13
|
+
label?: string;
|
|
14
|
+
quiet?: boolean;
|
|
15
|
+
selected?: boolean;
|
|
16
|
+
selectionIndicatorStyle?: unknown;
|
|
17
|
+
shouldAnimate?: boolean;
|
|
18
|
+
rovingTabindexController?: unknown;
|
|
19
|
+
/** The selected navigation item has changed. */
|
|
20
|
+
readonly changeEvent: import("@angular/core").OutputEmitterRef<Event>;
|
|
21
|
+
constructor();
|
|
22
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
23
|
+
/**
|
|
24
|
+
* Forward a wrapper @Input to the underlying host element via Renderer2 so
|
|
25
|
+
* the wrapper stays compatible with non-DOM Angular platforms (SSR, tests).
|
|
26
|
+
* Unlike a "skip undefined" guard, this lets consumers reset values back to
|
|
27
|
+
* undefined / null by clearing their bindings.
|
|
28
|
+
*/
|
|
29
|
+
private setHostProperty;
|
|
30
|
+
private bindEvents;
|
|
31
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LuzmoTopNav, never>;
|
|
32
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LuzmoTopNav, "luzmo-top-nav", ["luzmoTopNav"], { "label": { "alias": "label"; "required": false; }; "quiet": { "alias": "quiet"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "selectionIndicatorStyle": { "alias": "selection-indicator-style"; "required": false; }; "shouldAnimate": { "alias": "should-animate"; "required": false; }; "rovingTabindexController": { "alias": "roving-tabindex-controller"; "required": false; }; }, { "changeEvent": "change"; }, never, ["*"], true, never>;
|
|
33
|
+
}
|
|
34
|
+
/** The underlying custom element type for LuzmoTopNav */
|
|
35
|
+
export type LuzmoTopNavElement = LuzmoTopNavHostElement;
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
import { ChangeDetectionStrategy, Component, DestroyRef, ElementRef, inject, Input, output, Renderer2 } from '@angular/core';
|
|
2
|
+
import '@luzmo/lucero/top-nav';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
const _c0 = ["*"];
|
|
5
|
+
/**
|
|
6
|
+
* Angular wrapper component for <luzmo-top-nav>
|
|
7
|
+
*
|
|
8
|
+
* @slot (default) - Navigation items to display in the top nav
|
|
9
|
+
*/
|
|
10
|
+
export class LuzmoTopNav {
|
|
11
|
+
elementRef = inject(ElementRef);
|
|
12
|
+
renderer = inject(Renderer2);
|
|
13
|
+
destroyRef = inject(DestroyRef);
|
|
14
|
+
host = this.elementRef.nativeElement;
|
|
15
|
+
listenerCleanup = [];
|
|
16
|
+
/** The underlying custom element instance. Use to call imperative methods. */
|
|
17
|
+
get nativeElement() {
|
|
18
|
+
return this.host;
|
|
19
|
+
}
|
|
20
|
+
label;
|
|
21
|
+
quiet;
|
|
22
|
+
selected;
|
|
23
|
+
selectionIndicatorStyle;
|
|
24
|
+
shouldAnimate;
|
|
25
|
+
rovingTabindexController;
|
|
26
|
+
/** The selected navigation item has changed. */
|
|
27
|
+
changeEvent = output({ alias: 'change' });
|
|
28
|
+
constructor() {
|
|
29
|
+
this.bindEvents();
|
|
30
|
+
this.destroyRef.onDestroy(() => {
|
|
31
|
+
for (const cleanup of this.listenerCleanup) {
|
|
32
|
+
cleanup();
|
|
33
|
+
}
|
|
34
|
+
});
|
|
35
|
+
}
|
|
36
|
+
ngOnChanges(changes) {
|
|
37
|
+
for (const key of Object.keys(changes)) {
|
|
38
|
+
switch (key) {
|
|
39
|
+
case 'label':
|
|
40
|
+
this.setHostProperty('label', changes['label'].currentValue);
|
|
41
|
+
break;
|
|
42
|
+
case 'quiet':
|
|
43
|
+
this.setHostProperty('quiet', changes['quiet'].currentValue);
|
|
44
|
+
break;
|
|
45
|
+
case 'selected':
|
|
46
|
+
this.setHostProperty('selected', changes['selected'].currentValue);
|
|
47
|
+
break;
|
|
48
|
+
case 'selectionIndicatorStyle':
|
|
49
|
+
this.setHostProperty('selectionIndicatorStyle', changes['selectionIndicatorStyle'].currentValue);
|
|
50
|
+
break;
|
|
51
|
+
case 'shouldAnimate':
|
|
52
|
+
this.setHostProperty('shouldAnimate', changes['shouldAnimate'].currentValue);
|
|
53
|
+
break;
|
|
54
|
+
case 'rovingTabindexController':
|
|
55
|
+
this.setHostProperty('rovingTabindexController', changes['rovingTabindexController'].currentValue);
|
|
56
|
+
break;
|
|
57
|
+
default:
|
|
58
|
+
break;
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
/**
|
|
63
|
+
* Forward a wrapper @Input to the underlying host element via Renderer2 so
|
|
64
|
+
* the wrapper stays compatible with non-DOM Angular platforms (SSR, tests).
|
|
65
|
+
* Unlike a "skip undefined" guard, this lets consumers reset values back to
|
|
66
|
+
* undefined / null by clearing their bindings.
|
|
67
|
+
*/
|
|
68
|
+
setHostProperty(key, value) {
|
|
69
|
+
this.renderer.setProperty(this.host, key, value);
|
|
70
|
+
}
|
|
71
|
+
bindEvents() {
|
|
72
|
+
this.listenerCleanup.push(this.renderer.listen(this.host, 'change', (event) => {
|
|
73
|
+
this.changeEvent.emit(event);
|
|
74
|
+
}));
|
|
75
|
+
}
|
|
76
|
+
static ɵfac = function LuzmoTopNav_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || LuzmoTopNav)(); };
|
|
77
|
+
static ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: LuzmoTopNav, selectors: [["luzmo-top-nav"]], inputs: { label: "label", quiet: "quiet", selected: "selected", selectionIndicatorStyle: [0, "selection-indicator-style", "selectionIndicatorStyle"], shouldAnimate: [0, "should-animate", "shouldAnimate"], rovingTabindexController: [0, "roving-tabindex-controller", "rovingTabindexController"] }, outputs: { changeEvent: "change" }, exportAs: ["luzmoTopNav"], features: [i0.ɵɵNgOnChangesFeature], ngContentSelectors: _c0, decls: 1, vars: 0, template: function LuzmoTopNav_Template(rf, ctx) { if (rf & 1) {
|
|
78
|
+
i0.ɵɵprojectionDef();
|
|
79
|
+
i0.ɵɵprojection(0);
|
|
80
|
+
} }, encapsulation: 2, changeDetection: 0 });
|
|
81
|
+
}
|
|
82
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(LuzmoTopNav, [{
|
|
83
|
+
type: Component,
|
|
84
|
+
args: [{
|
|
85
|
+
selector: 'luzmo-top-nav',
|
|
86
|
+
exportAs: 'luzmoTopNav',
|
|
87
|
+
standalone: true,
|
|
88
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
89
|
+
template: '<ng-content />'
|
|
90
|
+
}]
|
|
91
|
+
}], () => [], { label: [{
|
|
92
|
+
type: Input,
|
|
93
|
+
args: [{ alias: 'label' }]
|
|
94
|
+
}], quiet: [{
|
|
95
|
+
type: Input,
|
|
96
|
+
args: [{ alias: 'quiet' }]
|
|
97
|
+
}], selected: [{
|
|
98
|
+
type: Input,
|
|
99
|
+
args: [{ alias: 'selected' }]
|
|
100
|
+
}], selectionIndicatorStyle: [{
|
|
101
|
+
type: Input,
|
|
102
|
+
args: [{ alias: 'selection-indicator-style' }]
|
|
103
|
+
}], shouldAnimate: [{
|
|
104
|
+
type: Input,
|
|
105
|
+
args: [{ alias: 'should-animate' }]
|
|
106
|
+
}], rovingTabindexController: [{
|
|
107
|
+
type: Input,
|
|
108
|
+
args: [{ alias: 'roving-tabindex-controller' }]
|
|
109
|
+
}], changeEvent: [{ type: i0.Output, args: ["change"] }] }); })();
|
|
110
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(LuzmoTopNav, { className: "LuzmoTopNav", filePath: "components/top-nav.ts", lineNumber: 17 }); })();
|
package/esm/index.d.ts
ADDED
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
import { LuzmoAccordion } from './components/accordion.js';
|
|
2
|
+
import { LuzmoAccordionItem } from './components/accordion-item.js';
|
|
3
|
+
import { LuzmoActionBar } from './components/action-bar.js';
|
|
4
|
+
import { LuzmoActionButton } from './components/action-button.js';
|
|
5
|
+
import { LuzmoActionGroup } from './components/action-group.js';
|
|
6
|
+
import { LuzmoActionMenu } from './components/action-menu.js';
|
|
7
|
+
import { LuzmoAvatar } from './components/avatar.js';
|
|
8
|
+
import { LuzmoBadge } from './components/badge.js';
|
|
9
|
+
import { LuzmoButton } from './components/button.js';
|
|
10
|
+
import { LuzmoButtonGroup } from './components/button-group.js';
|
|
11
|
+
import { LuzmoCalendar } from './components/calendar.js';
|
|
12
|
+
import { LuzmoChatMessage } from './components/chat-message.js';
|
|
13
|
+
import { LuzmoChatMessageGroup } from './components/chat-message-group.js';
|
|
14
|
+
import { LuzmoCheckbox } from './components/checkbox.js';
|
|
15
|
+
import { LuzmoClearButton } from './components/clear-button.js';
|
|
16
|
+
import { LuzmoCloseButton } from './components/close-button.js';
|
|
17
|
+
import { LuzmoColorArea } from './components/color-area.js';
|
|
18
|
+
import { LuzmoColorField } from './components/color-field.js';
|
|
19
|
+
import { LuzmoColorHandle } from './components/color-handle.js';
|
|
20
|
+
import { LuzmoColorLoupe } from './components/color-loupe.js';
|
|
21
|
+
import { LuzmoColorMenu } from './components/color-menu.js';
|
|
22
|
+
import { LuzmoColorPalette } from './components/color-palette.js';
|
|
23
|
+
import { LuzmoColorPaletteGroup } from './components/color-palette-group.js';
|
|
24
|
+
import { LuzmoColorPicker } from './components/color-picker.js';
|
|
25
|
+
import { LuzmoColorSlider } from './components/color-slider.js';
|
|
26
|
+
import { LuzmoDateRangePicker } from './components/date-range-picker.js';
|
|
27
|
+
import { LuzmoDateTimePicker } from './components/date-time-picker.js';
|
|
28
|
+
import { LuzmoDivider } from './components/divider.js';
|
|
29
|
+
import { LuzmoFieldGroup } from './components/field-group.js';
|
|
30
|
+
import { LuzmoFieldLabel } from './components/field-label.js';
|
|
31
|
+
import { LuzmoHelpText } from './components/help-text.js';
|
|
32
|
+
import { LuzmoIcon } from './components/icon.js';
|
|
33
|
+
import { LuzmoInfieldButton } from './components/infield-button.js';
|
|
34
|
+
import { LuzmoLabel } from './components/label.js';
|
|
35
|
+
import { LuzmoMenu } from './components/menu.js';
|
|
36
|
+
import { LuzmoMultiLanguageField } from './components/multi-language-field.js';
|
|
37
|
+
import { LuzmoNumberField } from './components/number-field.js';
|
|
38
|
+
import { LuzmoOptions } from './components/options.js';
|
|
39
|
+
import { LuzmoOverlay } from './components/overlay.js';
|
|
40
|
+
import { LuzmoPicker } from './components/picker.js';
|
|
41
|
+
import { LuzmoPickerButton } from './components/picker-button.js';
|
|
42
|
+
import { LuzmoPopover } from './components/popover.js';
|
|
43
|
+
import { LuzmoProgressBar } from './components/progress-bar.js';
|
|
44
|
+
import { LuzmoProgressCircle } from './components/progress-circle.js';
|
|
45
|
+
import { LuzmoProgressSteps } from './components/progress-steps.js';
|
|
46
|
+
import { LuzmoPromptBox } from './components/prompt-box.js';
|
|
47
|
+
import { LuzmoRadio } from './components/radio.js';
|
|
48
|
+
import { LuzmoRadioGroup } from './components/radio-group.js';
|
|
49
|
+
import { LuzmoSearch } from './components/search.js';
|
|
50
|
+
import { LuzmoSelect } from './components/select.js';
|
|
51
|
+
import { LuzmoSlider } from './components/slider.js';
|
|
52
|
+
import { LuzmoStatusLight } from './components/status-light.js';
|
|
53
|
+
import { LuzmoSwatch } from './components/swatch.js';
|
|
54
|
+
import { LuzmoSwatchGroup } from './components/swatch-group.js';
|
|
55
|
+
import { LuzmoSwitch } from './components/switch.js';
|
|
56
|
+
import { LuzmoTab } from './components/tab.js';
|
|
57
|
+
import { LuzmoTabPanel } from './components/tab-panel.js';
|
|
58
|
+
import { LuzmoTabs } from './components/tabs.js';
|
|
59
|
+
import { LuzmoTabsOverflow } from './components/tabs-overflow.js';
|
|
60
|
+
import { LuzmoTag } from './components/tag.js';
|
|
61
|
+
import { LuzmoTags } from './components/tags.js';
|
|
62
|
+
import { LuzmoTextField } from './components/text-field.js';
|
|
63
|
+
import { LuzmoToast } from './components/toast.js';
|
|
64
|
+
import { LuzmoTooltip } from './components/tooltip.js';
|
|
65
|
+
import { LuzmoTopNav } from './components/top-nav.js';
|
|
66
|
+
import { LuzmoTopNavItem } from './components/top-nav-item.js';
|
|
67
|
+
export { LuzmoAccordion, type LuzmoAccordionElement } from './components/accordion.js';
|
|
68
|
+
export { LuzmoAccordionItem, type LuzmoAccordionItemElement } from './components/accordion-item.js';
|
|
69
|
+
export { LuzmoActionBar, type LuzmoActionBarElement } from './components/action-bar.js';
|
|
70
|
+
export { LuzmoActionButton, type LuzmoActionButtonElement } from './components/action-button.js';
|
|
71
|
+
export { LuzmoActionGroup, type LuzmoActionGroupElement } from './components/action-group.js';
|
|
72
|
+
export { LuzmoActionMenu, type LuzmoActionMenuElement } from './components/action-menu.js';
|
|
73
|
+
export { LuzmoAvatar, type LuzmoAvatarElement } from './components/avatar.js';
|
|
74
|
+
export { LuzmoBadge, type LuzmoBadgeElement } from './components/badge.js';
|
|
75
|
+
export { LuzmoButton, type LuzmoButtonElement } from './components/button.js';
|
|
76
|
+
export { LuzmoButtonGroup, type LuzmoButtonGroupElement } from './components/button-group.js';
|
|
77
|
+
export { LuzmoCalendar, type LuzmoCalendarElement } from './components/calendar.js';
|
|
78
|
+
export { LuzmoChatMessage, type LuzmoChatMessageElement } from './components/chat-message.js';
|
|
79
|
+
export { LuzmoChatMessageGroup, type LuzmoChatMessageGroupElement } from './components/chat-message-group.js';
|
|
80
|
+
export { LuzmoCheckbox, type LuzmoCheckboxElement } from './components/checkbox.js';
|
|
81
|
+
export { LuzmoClearButton, type LuzmoClearButtonElement } from './components/clear-button.js';
|
|
82
|
+
export { LuzmoCloseButton, type LuzmoCloseButtonElement } from './components/close-button.js';
|
|
83
|
+
export { LuzmoColorArea, type LuzmoColorAreaElement } from './components/color-area.js';
|
|
84
|
+
export { LuzmoColorField, type LuzmoColorFieldElement } from './components/color-field.js';
|
|
85
|
+
export { LuzmoColorHandle, type LuzmoColorHandleElement } from './components/color-handle.js';
|
|
86
|
+
export { LuzmoColorLoupe, type LuzmoColorLoupeElement } from './components/color-loupe.js';
|
|
87
|
+
export { LuzmoColorMenu, type LuzmoColorMenuElement } from './components/color-menu.js';
|
|
88
|
+
export { LuzmoColorPalette, type LuzmoColorPaletteElement } from './components/color-palette.js';
|
|
89
|
+
export { LuzmoColorPaletteGroup, type LuzmoColorPaletteGroupElement } from './components/color-palette-group.js';
|
|
90
|
+
export { LuzmoColorPicker, type LuzmoColorPickerElement } from './components/color-picker.js';
|
|
91
|
+
export { LuzmoColorSlider, type LuzmoColorSliderElement } from './components/color-slider.js';
|
|
92
|
+
export { LuzmoDateRangePicker, type LuzmoDateRangePickerElement } from './components/date-range-picker.js';
|
|
93
|
+
export { LuzmoDateTimePicker, type LuzmoDateTimePickerElement } from './components/date-time-picker.js';
|
|
94
|
+
export { LuzmoDivider, type LuzmoDividerElement } from './components/divider.js';
|
|
95
|
+
export { LuzmoFieldGroup, type LuzmoFieldGroupElement } from './components/field-group.js';
|
|
96
|
+
export { LuzmoFieldLabel, type LuzmoFieldLabelElement } from './components/field-label.js';
|
|
97
|
+
export { LuzmoHelpText, type LuzmoHelpTextElement } from './components/help-text.js';
|
|
98
|
+
export { LuzmoIcon, type LuzmoIconElement } from './components/icon.js';
|
|
99
|
+
export { LuzmoInfieldButton, type LuzmoInfieldButtonElement } from './components/infield-button.js';
|
|
100
|
+
export { LuzmoLabel, type LuzmoLabelElement } from './components/label.js';
|
|
101
|
+
export { LuzmoMenu, type LuzmoMenuElement } from './components/menu.js';
|
|
102
|
+
export { LuzmoMultiLanguageField, type LuzmoMultiLanguageFieldElement } from './components/multi-language-field.js';
|
|
103
|
+
export { LuzmoNumberField, type LuzmoNumberFieldElement } from './components/number-field.js';
|
|
104
|
+
export { LuzmoOptions, type LuzmoOptionsElement } from './components/options.js';
|
|
105
|
+
export { LuzmoOverlay, type LuzmoOverlayElement } from './components/overlay.js';
|
|
106
|
+
export { LuzmoPicker, type LuzmoPickerElement } from './components/picker.js';
|
|
107
|
+
export { LuzmoPickerButton, type LuzmoPickerButtonElement } from './components/picker-button.js';
|
|
108
|
+
export { LuzmoPopover, type LuzmoPopoverElement } from './components/popover.js';
|
|
109
|
+
export { LuzmoProgressBar, type LuzmoProgressBarElement } from './components/progress-bar.js';
|
|
110
|
+
export { LuzmoProgressCircle, type LuzmoProgressCircleElement } from './components/progress-circle.js';
|
|
111
|
+
export { LuzmoProgressSteps, type LuzmoProgressStepsElement } from './components/progress-steps.js';
|
|
112
|
+
export { LuzmoPromptBox, type LuzmoPromptBoxElement } from './components/prompt-box.js';
|
|
113
|
+
export { LuzmoRadio, type LuzmoRadioElement } from './components/radio.js';
|
|
114
|
+
export { LuzmoRadioGroup, type LuzmoRadioGroupElement } from './components/radio-group.js';
|
|
115
|
+
export { LuzmoSearch, type LuzmoSearchElement } from './components/search.js';
|
|
116
|
+
export { LuzmoSelect, type LuzmoSelectElement } from './components/select.js';
|
|
117
|
+
export { LuzmoSlider, type LuzmoSliderElement } from './components/slider.js';
|
|
118
|
+
export { LuzmoStatusLight, type LuzmoStatusLightElement } from './components/status-light.js';
|
|
119
|
+
export { LuzmoSwatch, type LuzmoSwatchElement } from './components/swatch.js';
|
|
120
|
+
export { LuzmoSwatchGroup, type LuzmoSwatchGroupElement } from './components/swatch-group.js';
|
|
121
|
+
export { LuzmoSwitch, type LuzmoSwitchElement } from './components/switch.js';
|
|
122
|
+
export { LuzmoTab, type LuzmoTabElement } from './components/tab.js';
|
|
123
|
+
export { LuzmoTabPanel, type LuzmoTabPanelElement } from './components/tab-panel.js';
|
|
124
|
+
export { LuzmoTabs, type LuzmoTabsElement } from './components/tabs.js';
|
|
125
|
+
export { LuzmoTabsOverflow, type LuzmoTabsOverflowElement } from './components/tabs-overflow.js';
|
|
126
|
+
export { LuzmoTag, type LuzmoTagElement } from './components/tag.js';
|
|
127
|
+
export { LuzmoTags, type LuzmoTagsElement } from './components/tags.js';
|
|
128
|
+
export { LuzmoTextField, type LuzmoTextFieldElement } from './components/text-field.js';
|
|
129
|
+
export { LuzmoToast, type LuzmoToastElement } from './components/toast.js';
|
|
130
|
+
export { LuzmoTooltip, type LuzmoTooltipElement } from './components/tooltip.js';
|
|
131
|
+
export { LuzmoTopNav, type LuzmoTopNavElement } from './components/top-nav.js';
|
|
132
|
+
export { LuzmoTopNavItem, type LuzmoTopNavItemElement } from './components/top-nav-item.js';
|
|
133
|
+
export declare const LUZMO_ANGULAR_COMPONENTS: readonly [typeof LuzmoAccordion, typeof LuzmoAccordionItem, typeof LuzmoActionBar, typeof LuzmoActionButton, typeof LuzmoActionGroup, typeof LuzmoActionMenu, typeof LuzmoAvatar, typeof LuzmoBadge, typeof LuzmoButton, typeof LuzmoButtonGroup, typeof LuzmoCalendar, typeof LuzmoChatMessage, typeof LuzmoChatMessageGroup, typeof LuzmoCheckbox, typeof LuzmoClearButton, typeof LuzmoCloseButton, typeof LuzmoColorArea, typeof LuzmoColorField, typeof LuzmoColorHandle, typeof LuzmoColorLoupe, typeof LuzmoColorMenu, typeof LuzmoColorPalette, typeof LuzmoColorPaletteGroup, typeof LuzmoColorPicker, typeof LuzmoColorSlider, typeof LuzmoDateRangePicker, typeof LuzmoDateTimePicker, typeof LuzmoDivider, typeof LuzmoFieldGroup, typeof LuzmoFieldLabel, typeof LuzmoHelpText, typeof LuzmoIcon, typeof LuzmoInfieldButton, typeof LuzmoLabel, typeof LuzmoMenu, typeof LuzmoMultiLanguageField, typeof LuzmoNumberField, typeof LuzmoOptions, typeof LuzmoOverlay, typeof LuzmoPicker, typeof LuzmoPickerButton, typeof LuzmoPopover, typeof LuzmoProgressBar, typeof LuzmoProgressCircle, typeof LuzmoProgressSteps, typeof LuzmoPromptBox, typeof LuzmoRadio, typeof LuzmoRadioGroup, typeof LuzmoSearch, typeof LuzmoSelect, typeof LuzmoSlider, typeof LuzmoStatusLight, typeof LuzmoSwatch, typeof LuzmoSwatchGroup, typeof LuzmoSwitch, typeof LuzmoTab, typeof LuzmoTabPanel, typeof LuzmoTabs, typeof LuzmoTabsOverflow, typeof LuzmoTag, typeof LuzmoTags, typeof LuzmoTextField, typeof LuzmoToast, typeof LuzmoTooltip, typeof LuzmoTopNav, typeof LuzmoTopNavItem];
|
|
134
|
+
export declare const LUZMO_ANGULAR_COMPONENT_NAMES: readonly ["LuzmoAccordion", "LuzmoAccordionItem", "LuzmoActionBar", "LuzmoActionButton", "LuzmoActionGroup", "LuzmoActionMenu", "LuzmoAvatar", "LuzmoBadge", "LuzmoButton", "LuzmoButtonGroup", "LuzmoCalendar", "LuzmoChatMessage", "LuzmoChatMessageGroup", "LuzmoCheckbox", "LuzmoClearButton", "LuzmoCloseButton", "LuzmoColorArea", "LuzmoColorField", "LuzmoColorHandle", "LuzmoColorLoupe", "LuzmoColorMenu", "LuzmoColorPalette", "LuzmoColorPaletteGroup", "LuzmoColorPicker", "LuzmoColorSlider", "LuzmoDateRangePicker", "LuzmoDateTimePicker", "LuzmoDivider", "LuzmoFieldGroup", "LuzmoFieldLabel", "LuzmoHelpText", "LuzmoIcon", "LuzmoInfieldButton", "LuzmoLabel", "LuzmoMenu", "LuzmoMultiLanguageField", "LuzmoNumberField", "LuzmoOptions", "LuzmoOverlay", "LuzmoPicker", "LuzmoPickerButton", "LuzmoPopover", "LuzmoProgressBar", "LuzmoProgressCircle", "LuzmoProgressSteps", "LuzmoPromptBox", "LuzmoRadio", "LuzmoRadioGroup", "LuzmoSearch", "LuzmoSelect", "LuzmoSlider", "LuzmoStatusLight", "LuzmoSwatch", "LuzmoSwatchGroup", "LuzmoSwitch", "LuzmoTab", "LuzmoTabPanel", "LuzmoTabs", "LuzmoTabsOverflow", "LuzmoTag", "LuzmoTags", "LuzmoTextField", "LuzmoToast", "LuzmoTooltip", "LuzmoTopNav", "LuzmoTopNavItem"];
|
|
135
|
+
export type LuzmoAngularComponentName = (typeof LUZMO_ANGULAR_COMPONENT_NAMES)[number];
|