@ctrliq/quantic-components 1.63.0 → 1.63.2
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/alert/alert.d.ts +0 -2
- package/dist/alert/alert.js +12 -2
- package/dist/icon/IconBase.component.d.ts +1 -1
- package/dist/icon/IconBase.component.js +1 -1
- package/dist/icons.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/meta/index.js.map +1 -1
- package/dist/quantic-components.js +34507 -34495
- package/dist/quantic-components.js.map +1 -1
- package/dist/quantic-components.min.js +18374 -18374
- package/dist/quantic-components.min.js.map +1 -1
- package/dist/toast/toast.d.ts +0 -2
- package/dist/toast/toast.js +12 -2
- package/dist/types/alert/alert.d.ts +0 -2
- package/dist/types/icon/IconBase.component.d.ts +1 -1
- package/dist/types/toast/toast.d.ts +0 -2
- package/package.json +1 -1
package/dist/toast/toast.d.ts
CHANGED
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
import { type PropertyValues } from 'lit';
|
|
2
2
|
import { QuanticElement } from '../shared/quantic-element';
|
|
3
3
|
import { ToastType } from './index.constants';
|
|
4
|
-
import '../button';
|
|
5
|
-
import '../icon';
|
|
6
4
|
import type { ComponentMeta } from '../shared/meta.types';
|
|
7
5
|
export { ToastType } from './index.constants';
|
|
8
6
|
declare const Toast_base: typeof QuanticElement & import("../shared/shared.types").LitConstructor<import("../shared/auto-hide-empty-slots.mixin").AutoHideEmptySlotsInterface>;
|
package/dist/toast/toast.js
CHANGED
|
@@ -8,11 +8,21 @@ import { css, html, nothing } from 'lit';
|
|
|
8
8
|
import { quanticElement, QuanticElement } from '../shared/quantic-element';
|
|
9
9
|
import { AutoHideEmptySlotsMixin } from '../shared/auto-hide-empty-slots.mixin';
|
|
10
10
|
import { ToastType } from './index.constants';
|
|
11
|
-
import '../button';
|
|
12
|
-
import '../icon';
|
|
11
|
+
import { Button } from '../button';
|
|
12
|
+
import { LucideIconCircleCheck } from '../icon/__generated__/lucide/circle-check';
|
|
13
|
+
import { LucideIconCircleX } from '../icon/__generated__/lucide/circle-x';
|
|
14
|
+
import { LucideIconInfo } from '../icon/__generated__/lucide/info';
|
|
15
|
+
import { LucideIconTriangleAlert } from '../icon/__generated__/lucide/triangle-alert';
|
|
16
|
+
import { LucideIconX } from '../icon/__generated__/lucide/x';
|
|
13
17
|
import { ifDefined } from 'lit/directives/if-defined.js';
|
|
14
18
|
import { event, prop } from '../shared/component-meta.decorators';
|
|
15
19
|
export { ToastType } from './index.constants';
|
|
20
|
+
Button.ensureDefined();
|
|
21
|
+
LucideIconCircleCheck.ensureDefined();
|
|
22
|
+
LucideIconCircleX.ensureDefined();
|
|
23
|
+
LucideIconInfo.ensureDefined();
|
|
24
|
+
LucideIconTriangleAlert.ensureDefined();
|
|
25
|
+
LucideIconX.ensureDefined();
|
|
16
26
|
let Toast = class Toast extends AutoHideEmptySlotsMixin(QuanticElement) {
|
|
17
27
|
constructor() {
|
|
18
28
|
super(...arguments);
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
import { type PropertyValues } from 'lit';
|
|
2
2
|
import { QuanticElement } from '../shared/quantic-element';
|
|
3
3
|
import { AlertType } from './index.constants';
|
|
4
|
-
import '../button';
|
|
5
|
-
import '../icon';
|
|
6
4
|
import type { ComponentMeta } from '../shared/meta.types';
|
|
7
5
|
export { AlertType } from './index.constants';
|
|
8
6
|
declare const Alert_base: typeof QuanticElement & import("../shared/shared.types").LitConstructor<import("../shared/auto-hide-empty-slots.mixin").AutoHideEmptySlotsInterface>;
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
import { type PropertyValues } from 'lit';
|
|
2
2
|
import { QuanticElement } from '../shared/quantic-element';
|
|
3
3
|
import { ToastType } from './index.constants';
|
|
4
|
-
import '../button';
|
|
5
|
-
import '../icon';
|
|
6
4
|
import type { ComponentMeta } from '../shared/meta.types';
|
|
7
5
|
export { ToastType } from './index.constants';
|
|
8
6
|
declare const Toast_base: typeof QuanticElement & import("../shared/shared.types").LitConstructor<import("../shared/auto-hide-empty-slots.mixin").AutoHideEmptySlotsInterface>;
|