@ng-nest/ui 20.1.3 → 20.1.6
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/core/index.d.ts +22 -4
- package/coversations/index.d.ts +138 -0
- package/fesm2022/ng-nest-ui-bubble.mjs +3 -3
- package/fesm2022/ng-nest-ui-bubble.mjs.map +1 -1
- package/fesm2022/ng-nest-ui-core.mjs +13 -8
- package/fesm2022/ng-nest-ui-core.mjs.map +1 -1
- package/fesm2022/ng-nest-ui-coversations.mjs +108 -0
- package/fesm2022/ng-nest-ui-coversations.mjs.map +1 -0
- package/fesm2022/ng-nest-ui-examples.mjs +2 -2
- package/fesm2022/ng-nest-ui-examples.mjs.map +1 -1
- package/fesm2022/ng-nest-ui-input.mjs +2 -2
- package/fesm2022/ng-nest-ui-input.mjs.map +1 -1
- package/fesm2022/ng-nest-ui-list.mjs +83 -29
- package/fesm2022/ng-nest-ui-list.mjs.map +1 -1
- package/fesm2022/ng-nest-ui-loading.mjs +13 -3
- package/fesm2022/ng-nest-ui-loading.mjs.map +1 -1
- package/fesm2022/ng-nest-ui-menu.mjs +8 -4
- package/fesm2022/ng-nest-ui-menu.mjs.map +1 -1
- package/fesm2022/ng-nest-ui-message.mjs +20 -20
- package/fesm2022/ng-nest-ui-message.mjs.map +1 -1
- package/fesm2022/ng-nest-ui-progress.mjs +24 -3
- package/fesm2022/ng-nest-ui-progress.mjs.map +1 -1
- package/fesm2022/ng-nest-ui-prompts.mjs +98 -0
- package/fesm2022/ng-nest-ui-prompts.mjs.map +1 -0
- package/fesm2022/ng-nest-ui-select.mjs +6 -6
- package/fesm2022/ng-nest-ui-select.mjs.map +1 -1
- package/fesm2022/ng-nest-ui-sender.mjs +2 -2
- package/fesm2022/ng-nest-ui-sender.mjs.map +1 -1
- package/fesm2022/ng-nest-ui-table.mjs +2 -2
- package/fesm2022/ng-nest-ui-table.mjs.map +1 -1
- package/fesm2022/ng-nest-ui-welcome.mjs +84 -0
- package/fesm2022/ng-nest-ui-welcome.mjs.map +1 -0
- package/fesm2022/ng-nest-ui.mjs +2 -0
- package/fesm2022/ng-nest-ui.mjs.map +1 -1
- package/index.d.ts +2 -0
- package/list/index.d.ts +51 -7
- package/loading/index.d.ts +17 -1
- package/message/index.d.ts +1 -1
- package/package.json +51 -39
- package/progress/index.d.ts +7 -1
- package/prompts/index.d.ts +88 -0
- package/welcome/index.d.ts +65 -0
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { input, Component, computed, ChangeDetectionStrategy, ViewEncapsulation, NgModule } from '@angular/core';
|
|
3
|
+
import { XPropertyFunction, XIsString } from '@ng-nest/ui/core';
|
|
4
|
+
import { XOutletDirective } from '@ng-nest/ui/outlet';
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* Welcome
|
|
8
|
+
* @selector x-welcome
|
|
9
|
+
* @decorator component
|
|
10
|
+
*/
|
|
11
|
+
const XWelcomePrefix = 'x-welcome';
|
|
12
|
+
const X_WELCOME_CONFIG_NAME = 'welcome';
|
|
13
|
+
/**
|
|
14
|
+
* Welcome Property
|
|
15
|
+
*/
|
|
16
|
+
class XWelcomeProperty extends XPropertyFunction(X_WELCOME_CONFIG_NAME) {
|
|
17
|
+
constructor() {
|
|
18
|
+
super(...arguments);
|
|
19
|
+
/**
|
|
20
|
+
* @zh_CN 显示图标,支持自定义模板
|
|
21
|
+
* @en_US Display icon, support custom template
|
|
22
|
+
*/
|
|
23
|
+
this.icon = input(...(ngDevMode ? [undefined, { debugName: "icon" }] : []));
|
|
24
|
+
/**
|
|
25
|
+
* @zh_CN 显示标题,支持自定义模板
|
|
26
|
+
* @en_US Display title, support custom template
|
|
27
|
+
*/
|
|
28
|
+
this.title = input(...(ngDevMode ? [undefined, { debugName: "title" }] : []));
|
|
29
|
+
/**
|
|
30
|
+
* @zh_CN 描述文字,支持自定义模板
|
|
31
|
+
* @en_US Display text
|
|
32
|
+
*/
|
|
33
|
+
this.description = input(...(ngDevMode ? [undefined, { debugName: "description" }] : []));
|
|
34
|
+
/**
|
|
35
|
+
* @zh_CN 形态变体
|
|
36
|
+
* @en_US Variant
|
|
37
|
+
*/
|
|
38
|
+
this.variant = input(this.config?.variant ?? 'outlined', ...(ngDevMode ? [{ debugName: "variant" }] : []));
|
|
39
|
+
/**
|
|
40
|
+
* @zh_CN 自定义样式
|
|
41
|
+
* @en_US Custom style
|
|
42
|
+
*/
|
|
43
|
+
this.style = input(...(ngDevMode ? [undefined, { debugName: "style" }] : []));
|
|
44
|
+
}
|
|
45
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.0", ngImport: i0, type: XWelcomeProperty, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
46
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "20.3.0", type: XWelcomeProperty, isStandalone: true, selector: "x-welcome-property", inputs: { icon: { classPropertyName: "icon", publicName: "icon", isSignal: true, isRequired: false, transformFunction: null }, title: { classPropertyName: "title", publicName: "title", isSignal: true, isRequired: false, transformFunction: null }, description: { classPropertyName: "description", publicName: "description", isSignal: true, isRequired: false, transformFunction: null }, variant: { classPropertyName: "variant", publicName: "variant", isSignal: true, isRequired: false, transformFunction: null }, style: { classPropertyName: "style", publicName: "style", isSignal: true, isRequired: false, transformFunction: null } }, usesInheritance: true, ngImport: i0, template: '', isInline: true }); }
|
|
47
|
+
}
|
|
48
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.0", ngImport: i0, type: XWelcomeProperty, decorators: [{
|
|
49
|
+
type: Component,
|
|
50
|
+
args: [{ selector: `${XWelcomePrefix}-property`, template: '' }]
|
|
51
|
+
}] });
|
|
52
|
+
|
|
53
|
+
class XWelcomeComponent extends XWelcomeProperty {
|
|
54
|
+
constructor() {
|
|
55
|
+
super(...arguments);
|
|
56
|
+
this.isStringIcon = computed(() => XIsString(this.icon()), ...(ngDevMode ? [{ debugName: "isStringIcon" }] : []));
|
|
57
|
+
}
|
|
58
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.0", ngImport: i0, type: XWelcomeComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
59
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.0", type: XWelcomeComponent, isStandalone: true, selector: "x-welcome", usesInheritance: true, ngImport: i0, template: "<div\r\n class=\"x-welcome\"\r\n [class.x-welcome-outlined]=\"variant() === 'outlined'\"\r\n [class.x-welcome-filled]=\"variant() === 'filled'\"\r\n [class.x-welcome-borderless]=\"variant() === 'borderless'\"\r\n [style]=\"style()\"\r\n>\r\n <div class=\"x-welcome-icon\">\r\n @if (isStringIcon()) {\r\n <img alt=\"icon\" [src]=\"icon()\" />\r\n } @else {\r\n <ng-container *xOutlet=\"icon()!\"></ng-container>\r\n }\r\n </div>\r\n <div class=\"x-welcome-wrapper\">\r\n <span class=\"x-welcome-title\">\r\n <ng-container *xOutlet=\"title()\">{{ title() }}</ng-container>\r\n </span>\r\n <p class=\"x-welcome-description\">\r\n <ng-container *xOutlet=\"description()\">{{ description() }}</ng-container>\r\n </p>\r\n </div>\r\n</div>\r\n", styles: [".x-welcome{margin:0;padding:0}.x-welcome{width:100%;display:flex;gap:1rem;padding:1rem;border:var(--x-border-width) solid transparent;border-radius:var(--x-border-radius)}.x-welcome-icon img{max-width:6rem}.x-welcome-wrapper{flex:1;display:flex;flex-direction:column;gap:.5rem}.x-welcome-title{margin:0;font-size:var(--x-font-size-large)}.x-welcome-outlined{border-color:var(--x-border)}.x-welcome-filled{background-color:var(--x-background-a200);border-color:var(--x-background-a200)}.x-welcome-borderless{border-color:transparent}\n"], dependencies: [{ kind: "directive", type: XOutletDirective, selector: "[xOutlet]", inputs: ["xOutletContext", "xOutlet"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
|
|
60
|
+
}
|
|
61
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.0", ngImport: i0, type: XWelcomeComponent, decorators: [{
|
|
62
|
+
type: Component,
|
|
63
|
+
args: [{ selector: 'x-welcome', encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush, imports: [XOutletDirective], template: "<div\r\n class=\"x-welcome\"\r\n [class.x-welcome-outlined]=\"variant() === 'outlined'\"\r\n [class.x-welcome-filled]=\"variant() === 'filled'\"\r\n [class.x-welcome-borderless]=\"variant() === 'borderless'\"\r\n [style]=\"style()\"\r\n>\r\n <div class=\"x-welcome-icon\">\r\n @if (isStringIcon()) {\r\n <img alt=\"icon\" [src]=\"icon()\" />\r\n } @else {\r\n <ng-container *xOutlet=\"icon()!\"></ng-container>\r\n }\r\n </div>\r\n <div class=\"x-welcome-wrapper\">\r\n <span class=\"x-welcome-title\">\r\n <ng-container *xOutlet=\"title()\">{{ title() }}</ng-container>\r\n </span>\r\n <p class=\"x-welcome-description\">\r\n <ng-container *xOutlet=\"description()\">{{ description() }}</ng-container>\r\n </p>\r\n </div>\r\n</div>\r\n", styles: [".x-welcome{margin:0;padding:0}.x-welcome{width:100%;display:flex;gap:1rem;padding:1rem;border:var(--x-border-width) solid transparent;border-radius:var(--x-border-radius)}.x-welcome-icon img{max-width:6rem}.x-welcome-wrapper{flex:1;display:flex;flex-direction:column;gap:.5rem}.x-welcome-title{margin:0;font-size:var(--x-font-size-large)}.x-welcome-outlined{border-color:var(--x-border)}.x-welcome-filled{background-color:var(--x-background-a200);border-color:var(--x-background-a200)}.x-welcome-borderless{border-color:transparent}\n"] }]
|
|
64
|
+
}] });
|
|
65
|
+
|
|
66
|
+
class XWelcomeModule {
|
|
67
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.0", ngImport: i0, type: XWelcomeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
68
|
+
/** @nocollapse */ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.0", ngImport: i0, type: XWelcomeModule, imports: [XWelcomeComponent], exports: [XWelcomeComponent] }); }
|
|
69
|
+
/** @nocollapse */ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.0", ngImport: i0, type: XWelcomeModule }); }
|
|
70
|
+
}
|
|
71
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.0", ngImport: i0, type: XWelcomeModule, decorators: [{
|
|
72
|
+
type: NgModule,
|
|
73
|
+
args: [{
|
|
74
|
+
exports: [XWelcomeComponent],
|
|
75
|
+
imports: [XWelcomeComponent]
|
|
76
|
+
}]
|
|
77
|
+
}] });
|
|
78
|
+
|
|
79
|
+
/**
|
|
80
|
+
* Generated bundle index. Do not edit.
|
|
81
|
+
*/
|
|
82
|
+
|
|
83
|
+
export { XWelcomeComponent, XWelcomeModule, XWelcomePrefix, XWelcomeProperty };
|
|
84
|
+
//# sourceMappingURL=ng-nest-ui-welcome.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ng-nest-ui-welcome.mjs","sources":["../../../../lib/ng-nest/ui/welcome/welcome.property.ts","../../../../lib/ng-nest/ui/welcome/welcome.component.ts","../../../../lib/ng-nest/ui/welcome/welcome.component.html","../../../../lib/ng-nest/ui/welcome/welcome.module.ts","../../../../lib/ng-nest/ui/welcome/ng-nest-ui-welcome.ts"],"sourcesContent":["import { Component, input } from '@angular/core';\r\nimport { XPropertyFunction, XStyle, XTemplate } from '@ng-nest/ui/core';\r\n\r\n/**\r\n * Welcome\r\n * @selector x-welcome\r\n * @decorator component\r\n */\r\nexport const XWelcomePrefix = 'x-welcome';\r\nconst X_WELCOME_CONFIG_NAME = 'welcome';\r\n\r\n/**\r\n * Welcome Property\r\n */\r\n@Component({ selector: `${XWelcomePrefix}-property`, template: '' })\r\nexport class XWelcomeProperty extends XPropertyFunction(X_WELCOME_CONFIG_NAME) {\r\n /**\r\n * @zh_CN 显示图标,支持自定义模板\r\n * @en_US Display icon, support custom template\r\n */\r\n readonly icon = input<XTemplate>();\r\n /**\r\n * @zh_CN 显示标题,支持自定义模板\r\n * @en_US Display title, support custom template\r\n */\r\n readonly title = input<XTemplate>();\r\n /**\r\n * @zh_CN 描述文字,支持自定义模板\r\n * @en_US Display text\r\n */\r\n readonly description = input<XTemplate>();\r\n /**\r\n * @zh_CN 形态变体\r\n * @en_US Variant\r\n */\r\n readonly variant = input<XWelcomeVariant>(this.config?.variant ?? 'outlined');\r\n /**\r\n * @zh_CN 自定义样式\r\n * @en_US Custom style\r\n */\r\n readonly style = input<XStyle>();\r\n}\r\n\r\n/**\r\n * @zh_CN 形态变体\r\n * @en_US Box variant\r\n */\r\nexport type XWelcomeVariant = 'outlined' | 'filled' | 'borderless';\r\n","import { ChangeDetectionStrategy, Component, computed, ViewEncapsulation } from '@angular/core';\r\nimport { XWelcomeProperty } from './welcome.property';\r\nimport { XIsString } from '@ng-nest/ui/core';\r\nimport { XOutletDirective } from '@ng-nest/ui/outlet';\r\n\r\n@Component({\r\n selector: 'x-welcome',\r\n templateUrl: './welcome.component.html',\r\n styleUrls: ['./welcome.component.scss'],\r\n encapsulation: ViewEncapsulation.None,\r\n changeDetection: ChangeDetectionStrategy.OnPush,\r\n imports: [XOutletDirective]\r\n})\r\nexport class XWelcomeComponent extends XWelcomeProperty {\r\n isStringIcon = computed(() => XIsString(this.icon()));\r\n}\r\n","<div\r\n class=\"x-welcome\"\r\n [class.x-welcome-outlined]=\"variant() === 'outlined'\"\r\n [class.x-welcome-filled]=\"variant() === 'filled'\"\r\n [class.x-welcome-borderless]=\"variant() === 'borderless'\"\r\n [style]=\"style()\"\r\n>\r\n <div class=\"x-welcome-icon\">\r\n @if (isStringIcon()) {\r\n <img alt=\"icon\" [src]=\"icon()\" />\r\n } @else {\r\n <ng-container *xOutlet=\"icon()!\"></ng-container>\r\n }\r\n </div>\r\n <div class=\"x-welcome-wrapper\">\r\n <span class=\"x-welcome-title\">\r\n <ng-container *xOutlet=\"title()\">{{ title() }}</ng-container>\r\n </span>\r\n <p class=\"x-welcome-description\">\r\n <ng-container *xOutlet=\"description()\">{{ description() }}</ng-container>\r\n </p>\r\n </div>\r\n</div>\r\n","import { NgModule } from '@angular/core';\r\nimport { XWelcomeComponent } from './welcome.component';\r\n\r\n@NgModule({\r\n exports: [XWelcomeComponent],\r\n imports: [XWelcomeComponent]\r\n})\r\nexport class XWelcomeModule {}\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"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"}
|
package/fesm2022/ng-nest-ui.mjs
CHANGED
|
@@ -78,6 +78,8 @@ export * from '@ng-nest/ui/steps';
|
|
|
78
78
|
export * from '@ng-nest/ui/tabs';
|
|
79
79
|
export * from '@ng-nest/ui/bubble';
|
|
80
80
|
export * from '@ng-nest/ui/sender';
|
|
81
|
+
export * from '@ng-nest/ui/coversations';
|
|
82
|
+
export * from '@ng-nest/ui/welcome';
|
|
81
83
|
export * from '@ng-nest/ui/doc';
|
|
82
84
|
export * from '@ng-nest/ui/examples';
|
|
83
85
|
export * from '@ng-nest/ui/api';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ng-nest-ui.mjs","sources":["../../../../lib/ng-nest/ui/index.ts","../../../../lib/ng-nest/ui/ng-nest-ui.ts"],"sourcesContent":["/**\r\n * Core\r\n */\r\nexport * from '@ng-nest/ui/core';\r\n\r\n/**\r\n * Basic\r\n */\r\nexport * from '@ng-nest/ui/button';\r\nexport * from '@ng-nest/ui/color';\r\nexport * from '@ng-nest/ui/container';\r\nexport * from '@ng-nest/ui/layout';\r\nexport * from '@ng-nest/ui/icon';\r\nexport * from '@ng-nest/ui/i18n';\r\nexport * from '@ng-nest/ui/link';\r\nexport * from '@ng-nest/ui/theme';\r\n\r\n/**\r\n * Data\r\n */\r\nexport * from '@ng-nest/ui/avatar';\r\nexport * from '@ng-nest/ui/badge';\r\nexport * from '@ng-nest/ui/card';\r\nexport * from '@ng-nest/ui/carousel';\r\nexport * from '@ng-nest/ui/collapse';\r\nexport * from '@ng-nest/ui/calendar';\r\nexport * from '@ng-nest/ui/comment';\r\nexport * from '@ng-nest/ui/description';\r\nexport * from '@ng-nest/ui/empty';\r\nexport * from '@ng-nest/ui/image';\r\nexport * from '@ng-nest/ui/outlet';\r\nexport * from '@ng-nest/ui/pagination';\r\nexport * from '@ng-nest/ui/progress';\r\nexport * from '@ng-nest/ui/ripple';\r\nexport * from '@ng-nest/ui/resizable';\r\nexport * from '@ng-nest/ui/drag';\r\nexport * from '@ng-nest/ui/statistic';\r\nexport * from '@ng-nest/ui/table';\r\nexport * from '@ng-nest/ui/table-view';\r\nexport * from '@ng-nest/ui/tag';\r\nexport * from '@ng-nest/ui/text-retract';\r\nexport * from '@ng-nest/ui/time-ago';\r\nexport * from '@ng-nest/ui/time-range';\r\nexport * from '@ng-nest/ui/timeline';\r\nexport * from '@ng-nest/ui/tree';\r\nexport * from '@ng-nest/ui/tree-file';\r\nexport * from '@ng-nest/ui/keyword';\r\n\r\n/**\r\n * Feedback\r\n */\r\nexport * from '@ng-nest/ui/alert';\r\nexport * from '@ng-nest/ui/dialog';\r\nexport * from '@ng-nest/ui/drawer';\r\nexport * from '@ng-nest/ui/loading';\r\nexport * from '@ng-nest/ui/message';\r\nexport * from '@ng-nest/ui/message-box';\r\nexport * from '@ng-nest/ui/notification';\r\nexport * from '@ng-nest/ui/popconfirm';\r\nexport * from '@ng-nest/ui/popover';\r\nexport * from '@ng-nest/ui/result';\r\nexport * from '@ng-nest/ui/skeleton';\r\nexport * from '@ng-nest/ui/tooltip';\r\n\r\n/**\r\n * Form\r\n */\r\nexport * from '@ng-nest/ui/auto-complete';\r\nexport * from '@ng-nest/ui/base-form';\r\nexport * from '@ng-nest/ui/cascade';\r\nexport * from '@ng-nest/ui/checkbox';\r\nexport * from '@ng-nest/ui/color-picker';\r\nexport * from '@ng-nest/ui/date-picker';\r\nexport * from '@ng-nest/ui/form';\r\nexport * from '@ng-nest/ui/find';\r\nexport * from '@ng-nest/ui/input';\r\nexport * from '@ng-nest/ui/input-number';\r\nexport * from '@ng-nest/ui/list';\r\nexport * from '@ng-nest/ui/radio';\r\nexport * from '@ng-nest/ui/rate';\r\nexport * from '@ng-nest/ui/select';\r\nexport * from '@ng-nest/ui/slider-select';\r\nexport * from '@ng-nest/ui/switch';\r\nexport * from '@ng-nest/ui/time-picker';\r\nexport * from '@ng-nest/ui/transfer';\r\nexport * from '@ng-nest/ui/tree-select';\r\nexport * from '@ng-nest/ui/textarea';\r\nexport * from '@ng-nest/ui/upload';\r\n\r\n/**\r\n * Navigation\r\n */\r\nexport * from '@ng-nest/ui/affix';\r\nexport * from '@ng-nest/ui/anchor';\r\nexport * from '@ng-nest/ui/back-top';\r\nexport * from '@ng-nest/ui/crumb';\r\nexport * from '@ng-nest/ui/dropdown';\r\nexport * from '@ng-nest/ui/menu';\r\nexport * from '@ng-nest/ui/page-header';\r\nexport * from '@ng-nest/ui/steps';\r\nexport * from '@ng-nest/ui/tabs';\r\n\r\n/**\r\n * AI\r\n */\r\nexport * from '@ng-nest/ui/bubble';\r\nexport * from '@ng-nest/ui/sender';\r\n\r\n/**\r\n * Others\r\n */\r\nexport * from '@ng-nest/ui/doc';\r\nexport * from '@ng-nest/ui/examples';\r\nexport * from '@ng-nest/ui/api';\r\nexport * from '@ng-nest/ui/pattern';\r\nexport * from '@ng-nest/ui/slider';\r\nexport * from '@ng-nest/ui/scrollable';\r\nexport * from '@ng-nest/ui/highlight';\r\nexport * from '@ng-nest/ui/inner';\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ng-nest-ui.mjs","sources":["../../../../lib/ng-nest/ui/index.ts","../../../../lib/ng-nest/ui/ng-nest-ui.ts"],"sourcesContent":["/**\r\n * Core\r\n */\r\nexport * from '@ng-nest/ui/core';\r\n\r\n/**\r\n * Basic\r\n */\r\nexport * from '@ng-nest/ui/button';\r\nexport * from '@ng-nest/ui/color';\r\nexport * from '@ng-nest/ui/container';\r\nexport * from '@ng-nest/ui/layout';\r\nexport * from '@ng-nest/ui/icon';\r\nexport * from '@ng-nest/ui/i18n';\r\nexport * from '@ng-nest/ui/link';\r\nexport * from '@ng-nest/ui/theme';\r\n\r\n/**\r\n * Data\r\n */\r\nexport * from '@ng-nest/ui/avatar';\r\nexport * from '@ng-nest/ui/badge';\r\nexport * from '@ng-nest/ui/card';\r\nexport * from '@ng-nest/ui/carousel';\r\nexport * from '@ng-nest/ui/collapse';\r\nexport * from '@ng-nest/ui/calendar';\r\nexport * from '@ng-nest/ui/comment';\r\nexport * from '@ng-nest/ui/description';\r\nexport * from '@ng-nest/ui/empty';\r\nexport * from '@ng-nest/ui/image';\r\nexport * from '@ng-nest/ui/outlet';\r\nexport * from '@ng-nest/ui/pagination';\r\nexport * from '@ng-nest/ui/progress';\r\nexport * from '@ng-nest/ui/ripple';\r\nexport * from '@ng-nest/ui/resizable';\r\nexport * from '@ng-nest/ui/drag';\r\nexport * from '@ng-nest/ui/statistic';\r\nexport * from '@ng-nest/ui/table';\r\nexport * from '@ng-nest/ui/table-view';\r\nexport * from '@ng-nest/ui/tag';\r\nexport * from '@ng-nest/ui/text-retract';\r\nexport * from '@ng-nest/ui/time-ago';\r\nexport * from '@ng-nest/ui/time-range';\r\nexport * from '@ng-nest/ui/timeline';\r\nexport * from '@ng-nest/ui/tree';\r\nexport * from '@ng-nest/ui/tree-file';\r\nexport * from '@ng-nest/ui/keyword';\r\n\r\n/**\r\n * Feedback\r\n */\r\nexport * from '@ng-nest/ui/alert';\r\nexport * from '@ng-nest/ui/dialog';\r\nexport * from '@ng-nest/ui/drawer';\r\nexport * from '@ng-nest/ui/loading';\r\nexport * from '@ng-nest/ui/message';\r\nexport * from '@ng-nest/ui/message-box';\r\nexport * from '@ng-nest/ui/notification';\r\nexport * from '@ng-nest/ui/popconfirm';\r\nexport * from '@ng-nest/ui/popover';\r\nexport * from '@ng-nest/ui/result';\r\nexport * from '@ng-nest/ui/skeleton';\r\nexport * from '@ng-nest/ui/tooltip';\r\n\r\n/**\r\n * Form\r\n */\r\nexport * from '@ng-nest/ui/auto-complete';\r\nexport * from '@ng-nest/ui/base-form';\r\nexport * from '@ng-nest/ui/cascade';\r\nexport * from '@ng-nest/ui/checkbox';\r\nexport * from '@ng-nest/ui/color-picker';\r\nexport * from '@ng-nest/ui/date-picker';\r\nexport * from '@ng-nest/ui/form';\r\nexport * from '@ng-nest/ui/find';\r\nexport * from '@ng-nest/ui/input';\r\nexport * from '@ng-nest/ui/input-number';\r\nexport * from '@ng-nest/ui/list';\r\nexport * from '@ng-nest/ui/radio';\r\nexport * from '@ng-nest/ui/rate';\r\nexport * from '@ng-nest/ui/select';\r\nexport * from '@ng-nest/ui/slider-select';\r\nexport * from '@ng-nest/ui/switch';\r\nexport * from '@ng-nest/ui/time-picker';\r\nexport * from '@ng-nest/ui/transfer';\r\nexport * from '@ng-nest/ui/tree-select';\r\nexport * from '@ng-nest/ui/textarea';\r\nexport * from '@ng-nest/ui/upload';\r\n\r\n/**\r\n * Navigation\r\n */\r\nexport * from '@ng-nest/ui/affix';\r\nexport * from '@ng-nest/ui/anchor';\r\nexport * from '@ng-nest/ui/back-top';\r\nexport * from '@ng-nest/ui/crumb';\r\nexport * from '@ng-nest/ui/dropdown';\r\nexport * from '@ng-nest/ui/menu';\r\nexport * from '@ng-nest/ui/page-header';\r\nexport * from '@ng-nest/ui/steps';\r\nexport * from '@ng-nest/ui/tabs';\r\n\r\n/**\r\n * AI\r\n */\r\nexport * from '@ng-nest/ui/bubble';\r\nexport * from '@ng-nest/ui/sender';\r\nexport * from '@ng-nest/ui/coversations';\r\nexport * from '@ng-nest/ui/welcome';\r\n\r\n/**\r\n * Others\r\n */\r\nexport * from '@ng-nest/ui/doc';\r\nexport * from '@ng-nest/ui/examples';\r\nexport * from '@ng-nest/ui/api';\r\nexport * from '@ng-nest/ui/pattern';\r\nexport * from '@ng-nest/ui/slider';\r\nexport * from '@ng-nest/ui/scrollable';\r\nexport * from '@ng-nest/ui/highlight';\r\nexport * from '@ng-nest/ui/inner';\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;;AAEG;;ACFH;;AAEG"}
|
package/index.d.ts
CHANGED
|
@@ -78,6 +78,8 @@ export * from '@ng-nest/ui/steps';
|
|
|
78
78
|
export * from '@ng-nest/ui/tabs';
|
|
79
79
|
export * from '@ng-nest/ui/bubble';
|
|
80
80
|
export * from '@ng-nest/ui/sender';
|
|
81
|
+
export * from '@ng-nest/ui/coversations';
|
|
82
|
+
export * from '@ng-nest/ui/welcome';
|
|
81
83
|
export * from '@ng-nest/ui/doc';
|
|
82
84
|
export * from '@ng-nest/ui/examples';
|
|
83
85
|
export * from '@ng-nest/ui/api';
|
package/list/index.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { TemplateRef, ElementRef, OnChanges, QueryList, SimpleChanges, Injection
|
|
|
3
3
|
import * as rxjs from 'rxjs';
|
|
4
4
|
import { Subscription } from 'rxjs';
|
|
5
5
|
import * as _ng_nest_ui_core from '@ng-nest/ui/core';
|
|
6
|
-
import { XBoolean, XTemplate, XNumber, XSize, XData, XParentIdentityProperty } from '@ng-nest/ui/core';
|
|
6
|
+
import { XBoolean, XTemplate, XNumber, XSize, XData, XParentIdentityProperty, XStyle } from '@ng-nest/ui/core';
|
|
7
7
|
import { CdkDragDrop, CdkDropList, CdkDrag } from '@angular/cdk/drag-drop';
|
|
8
8
|
import { Highlightable, ActiveDescendantKeyManager } from '@angular/cdk/a11y';
|
|
9
9
|
import { XI18nList } from '@ng-nest/ui/i18n';
|
|
@@ -110,6 +110,16 @@ declare class XListProperty extends XListProperty_base {
|
|
|
110
110
|
* @en_US Node template
|
|
111
111
|
*/
|
|
112
112
|
readonly nodeTpl: _angular_core.InputSignal<TemplateRef<any> | undefined>;
|
|
113
|
+
/**
|
|
114
|
+
* @zh_CN 节点样式
|
|
115
|
+
* @en_US Node style
|
|
116
|
+
*/
|
|
117
|
+
readonly nodeStyle: _angular_core.InputSignal<XStyle | undefined>;
|
|
118
|
+
/**
|
|
119
|
+
* @zh_CN 分组模板
|
|
120
|
+
* @en_US Group template
|
|
121
|
+
*/
|
|
122
|
+
readonly groupTpl: _angular_core.InputSignal<TemplateRef<any> | undefined>;
|
|
113
123
|
/**
|
|
114
124
|
* @zh_CN 列表头部
|
|
115
125
|
* @en_US List header
|
|
@@ -223,7 +233,7 @@ declare class XListProperty extends XListProperty_base {
|
|
|
223
233
|
*/
|
|
224
234
|
readonly size: _angular_core.InputSignal<XSize>;
|
|
225
235
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<XListProperty, never>;
|
|
226
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<XListProperty, "x-list-property", never, { "data": { "alias": "data"; "required": false; "isSignal": true; }; "multiple": { "alias": "multiple"; "required": false; "isSignal": true; }; "selectAll": { "alias": "selectAll"; "required": false; "isSignal": true; }; "selectAllText": { "alias": "selectAllText"; "required": false; "isSignal": true; }; "checked": { "alias": "checked"; "required": false; "isSignal": true; }; "drag": { "alias": "drag"; "required": false; "isSignal": true; }; "objectArray": { "alias": "objectArray"; "required": false; "isSignal": true; }; "nodeTpl": { "alias": "nodeTpl"; "required": false; "isSignal": true; }; "header": { "alias": "header"; "required": false; "isSignal": true; }; "footer": { "alias": "footer"; "required": false; "isSignal": true; }; "scrollElement": { "alias": "scrollElement"; "required": false; "isSignal": true; }; "loadMore": { "alias": "loadMore"; "required": false; "isSignal": true; }; "loadMoreText": { "alias": "loadMoreText"; "required": false; "isSignal": true; }; "loadingMoreText": { "alias": "loadingMoreText"; "required": false; "isSignal": true; }; "virtualScroll": { "alias": "virtualScroll"; "required": false; "isSignal": true; }; "scrollHeight": { "alias": "scrollHeight"; "required": false; "isSignal": true; }; "heightAdaption": { "alias": "heightAdaption"; "required": false; "isSignal": true; }; "minBufferPx": { "alias": "minBufferPx"; "required": false; "isSignal": true; }; "maxBufferPx": { "alias": "maxBufferPx"; "required": false; "isSignal": true; }; "keywordText": { "alias": "keywordText"; "required": false; "isSignal": true; }; "caseSensitive": { "alias": "caseSensitive"; "required": false; "isSignal": true; }; "inPortal": { "alias": "inPortal"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; }, { "onSelectAll": "onSelectAll"; "nodeMouseenter": "nodeMouseenter"; "nodeMouseleave": "nodeMouseleave"; "nodeClick": "nodeClick"; "dropListDropped": "dropListDropped"; "keyManagerTabOut": "keyManagerTabOut"; "keyManagerChange": "keyManagerChange"; }, never, never, true, never>;
|
|
236
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<XListProperty, "x-list-property", never, { "data": { "alias": "data"; "required": false; "isSignal": true; }; "multiple": { "alias": "multiple"; "required": false; "isSignal": true; }; "selectAll": { "alias": "selectAll"; "required": false; "isSignal": true; }; "selectAllText": { "alias": "selectAllText"; "required": false; "isSignal": true; }; "checked": { "alias": "checked"; "required": false; "isSignal": true; }; "drag": { "alias": "drag"; "required": false; "isSignal": true; }; "objectArray": { "alias": "objectArray"; "required": false; "isSignal": true; }; "nodeTpl": { "alias": "nodeTpl"; "required": false; "isSignal": true; }; "nodeStyle": { "alias": "nodeStyle"; "required": false; "isSignal": true; }; "groupTpl": { "alias": "groupTpl"; "required": false; "isSignal": true; }; "header": { "alias": "header"; "required": false; "isSignal": true; }; "footer": { "alias": "footer"; "required": false; "isSignal": true; }; "scrollElement": { "alias": "scrollElement"; "required": false; "isSignal": true; }; "loadMore": { "alias": "loadMore"; "required": false; "isSignal": true; }; "loadMoreText": { "alias": "loadMoreText"; "required": false; "isSignal": true; }; "loadingMoreText": { "alias": "loadingMoreText"; "required": false; "isSignal": true; }; "virtualScroll": { "alias": "virtualScroll"; "required": false; "isSignal": true; }; "scrollHeight": { "alias": "scrollHeight"; "required": false; "isSignal": true; }; "heightAdaption": { "alias": "heightAdaption"; "required": false; "isSignal": true; }; "minBufferPx": { "alias": "minBufferPx"; "required": false; "isSignal": true; }; "maxBufferPx": { "alias": "maxBufferPx"; "required": false; "isSignal": true; }; "keywordText": { "alias": "keywordText"; "required": false; "isSignal": true; }; "caseSensitive": { "alias": "caseSensitive"; "required": false; "isSignal": true; }; "inPortal": { "alias": "inPortal"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; }, { "onSelectAll": "onSelectAll"; "nodeMouseenter": "nodeMouseenter"; "nodeMouseleave": "nodeMouseleave"; "nodeClick": "nodeClick"; "dropListDropped": "dropListDropped"; "keyManagerTabOut": "keyManagerTabOut"; "keyManagerChange": "keyManagerChange"; }, never, never, true, never>;
|
|
227
237
|
}
|
|
228
238
|
/**
|
|
229
239
|
* @zh_CN List 数据对象
|
|
@@ -250,6 +260,11 @@ interface XListNode extends XParentIdentityProperty<XListNode> {
|
|
|
250
260
|
* @en_US Hover
|
|
251
261
|
*/
|
|
252
262
|
hover?: boolean;
|
|
263
|
+
/**
|
|
264
|
+
* @zh_CN 节点样式
|
|
265
|
+
* @en_US Node style
|
|
266
|
+
*/
|
|
267
|
+
style?: XStyle;
|
|
253
268
|
/**
|
|
254
269
|
* @zh_CN 打开弹框
|
|
255
270
|
* @en_US open portal
|
|
@@ -265,6 +280,16 @@ interface XListNode extends XParentIdentityProperty<XListNode> {
|
|
|
265
280
|
* @en_US Check for updates
|
|
266
281
|
*/
|
|
267
282
|
change?: Function;
|
|
283
|
+
/**
|
|
284
|
+
* @zh_CN 分组名称
|
|
285
|
+
* @en_US Group name
|
|
286
|
+
*/
|
|
287
|
+
group?: boolean;
|
|
288
|
+
/**
|
|
289
|
+
* @zh_CN 是否是分组节点
|
|
290
|
+
* @en_US Group node
|
|
291
|
+
*/
|
|
292
|
+
groupable?: boolean;
|
|
268
293
|
}
|
|
269
294
|
/**
|
|
270
295
|
* List Option
|
|
@@ -291,11 +316,26 @@ declare class XListOptionProperty {
|
|
|
291
316
|
* @en_US Node template
|
|
292
317
|
*/
|
|
293
318
|
readonly nodeTpl: _angular_core.InputSignal<TemplateRef<any> | undefined>;
|
|
319
|
+
/**
|
|
320
|
+
* @zh_CN 节点样式
|
|
321
|
+
* @en_US Node style
|
|
322
|
+
*/
|
|
323
|
+
readonly nodeStyle: _angular_core.InputSignal<XStyle | undefined>;
|
|
324
|
+
/**
|
|
325
|
+
* @zh_CN 分组模板
|
|
326
|
+
* @en_US Group template
|
|
327
|
+
*/
|
|
328
|
+
readonly groupTpl: _angular_core.InputSignal<TemplateRef<any> | undefined>;
|
|
294
329
|
/**
|
|
295
330
|
* @zh_CN 选中
|
|
296
331
|
* @en_US selected
|
|
297
332
|
*/
|
|
298
333
|
readonly selected: _angular_core.InputSignalWithTransform<boolean, XBoolean>;
|
|
334
|
+
/**
|
|
335
|
+
* @zh_CN 分组节点
|
|
336
|
+
* @en_US Group node
|
|
337
|
+
*/
|
|
338
|
+
readonly groupable: _angular_core.InputSignalWithTransform<boolean, XBoolean>;
|
|
299
339
|
/**
|
|
300
340
|
* @zh_CN 禁用
|
|
301
341
|
* @en_US forbidden
|
|
@@ -354,7 +394,7 @@ declare class XListOptionProperty {
|
|
|
354
394
|
*/
|
|
355
395
|
readonly caseSensitive: _angular_core.InputSignalWithTransform<boolean, XBoolean>;
|
|
356
396
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<XListOptionProperty, never>;
|
|
357
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<XListOptionProperty, "x-list-option-property", never, { "node": { "alias": "node"; "required": false; "isSignal": true; }; "checked": { "alias": "checked"; "required": false; "isSignal": true; }; "nodeTpl": { "alias": "nodeTpl"; "required": false; "isSignal": true; }; "selected": { "alias": "selected"; "required": false; "isSignal": true; }; "forbidden": { "alias": "forbidden"; "required": false; "isSignal": true; }; "active": { "alias": "active"; "required": false; "isSignal": true; }; "openPortal": { "alias": "openPortal"; "required": false; "isSignal": true; }; "optionClass": { "alias": "optionClass"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "divided": { "alias": "divided"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "leaf": { "alias": "leaf"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "keywordText": { "alias": "keywordText"; "required": false; "isSignal": true; }; "caseSensitive": { "alias": "caseSensitive"; "required": false; "isSignal": true; }; }, { "active": "activeChange"; }, never, never, true, never>;
|
|
397
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<XListOptionProperty, "x-list-option-property", never, { "node": { "alias": "node"; "required": false; "isSignal": true; }; "checked": { "alias": "checked"; "required": false; "isSignal": true; }; "nodeTpl": { "alias": "nodeTpl"; "required": false; "isSignal": true; }; "nodeStyle": { "alias": "nodeStyle"; "required": false; "isSignal": true; }; "groupTpl": { "alias": "groupTpl"; "required": false; "isSignal": true; }; "selected": { "alias": "selected"; "required": false; "isSignal": true; }; "groupable": { "alias": "groupable"; "required": false; "isSignal": true; }; "forbidden": { "alias": "forbidden"; "required": false; "isSignal": true; }; "active": { "alias": "active"; "required": false; "isSignal": true; }; "openPortal": { "alias": "openPortal"; "required": false; "isSignal": true; }; "optionClass": { "alias": "optionClass"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "divided": { "alias": "divided"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "leaf": { "alias": "leaf"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "keywordText": { "alias": "keywordText"; "required": false; "isSignal": true; }; "caseSensitive": { "alias": "caseSensitive"; "required": false; "isSignal": true; }; }, { "active": "activeChange"; }, never, never, true, never>;
|
|
358
398
|
}
|
|
359
399
|
/**
|
|
360
400
|
* @zh_CN 拖动相关的数据
|
|
@@ -386,10 +426,11 @@ type XListDragDrop = {
|
|
|
386
426
|
declare class XListOptionComponent extends XListOptionProperty implements Highlightable {
|
|
387
427
|
role: string;
|
|
388
428
|
elementRef: ElementRef<any>;
|
|
389
|
-
classMap: _angular_core.Signal<{
|
|
390
|
-
[x: string]: boolean;
|
|
391
|
-
}>;
|
|
429
|
+
classMap: _angular_core.Signal<{}>;
|
|
392
430
|
disabled: boolean;
|
|
431
|
+
nodeStyleComputed: _angular_core.Signal<{
|
|
432
|
+
[x: string]: any;
|
|
433
|
+
}>;
|
|
393
434
|
constructor();
|
|
394
435
|
setActiveStyles(): void;
|
|
395
436
|
setInactiveStyles(): void;
|
|
@@ -401,7 +442,7 @@ declare class XListOptionComponent extends XListOptionProperty implements Highli
|
|
|
401
442
|
declare class XListComponent extends XListProperty implements OnChanges {
|
|
402
443
|
private unSubject;
|
|
403
444
|
private i18n;
|
|
404
|
-
private
|
|
445
|
+
private listDropGroup;
|
|
405
446
|
nodes: _angular_core.WritableSignal<XListNode[]>;
|
|
406
447
|
selectedNodes: _angular_core.WritableSignal<XListNode[]>;
|
|
407
448
|
headerRef: _angular_core.Signal<ElementRef<HTMLElement> | undefined>;
|
|
@@ -424,12 +465,14 @@ declare class XListComponent extends XListProperty implements OnChanges {
|
|
|
424
465
|
scrollHeightSignal: _angular_core.WritableSignal<number>;
|
|
425
466
|
classMap: _angular_core.Signal<{
|
|
426
467
|
[x: string]: boolean;
|
|
468
|
+
"x-list-group": boolean;
|
|
427
469
|
}>;
|
|
428
470
|
sizeChange: Subscription | null;
|
|
429
471
|
private resizeObserver;
|
|
430
472
|
role: string;
|
|
431
473
|
tabindex: number;
|
|
432
474
|
keydown($event: KeyboardEvent): void;
|
|
475
|
+
groupable: _angular_core.Signal<boolean>;
|
|
433
476
|
itemSizeMap: {
|
|
434
477
|
[key: string]: number;
|
|
435
478
|
};
|
|
@@ -450,6 +493,7 @@ declare class XListComponent extends XListProperty implements OnChanges {
|
|
|
450
493
|
private setVirtualScrollHeight;
|
|
451
494
|
private setData;
|
|
452
495
|
private initKeyManager;
|
|
496
|
+
private setGroup;
|
|
453
497
|
setScorllTop(_num: number): void;
|
|
454
498
|
setSelected(): void;
|
|
455
499
|
setKeyManager(): void;
|
package/loading/index.d.ts
CHANGED
|
@@ -22,6 +22,11 @@ declare class XLoadingProperty extends XLoadingProperty_base {
|
|
|
22
22
|
* @en_US Show loading
|
|
23
23
|
*/
|
|
24
24
|
readonly loading: _angular_core.InputSignalWithTransform<boolean, XBoolean>;
|
|
25
|
+
/**
|
|
26
|
+
* @zh_CN Loading 类型
|
|
27
|
+
* @en_US Loading type
|
|
28
|
+
*/
|
|
29
|
+
readonly type: _angular_core.InputSignal<XLoadingType>;
|
|
25
30
|
/**
|
|
26
31
|
* @zh_CN 层级
|
|
27
32
|
* @en_US z-index
|
|
@@ -42,6 +47,11 @@ declare class XLoadingProperty extends XLoadingProperty_base {
|
|
|
42
47
|
* @en_US Icon displayed
|
|
43
48
|
*/
|
|
44
49
|
readonly icon: _angular_core.InputSignal<string | null>;
|
|
50
|
+
/**
|
|
51
|
+
* @zh_CN 自定义 loading 模板
|
|
52
|
+
* @en_US Svg tpl
|
|
53
|
+
*/
|
|
54
|
+
readonly customTpl: _angular_core.InputSignal<TemplateRef<void> | undefined>;
|
|
45
55
|
/**
|
|
46
56
|
* @zh_CN 颜色
|
|
47
57
|
* @en_US Color
|
|
@@ -68,8 +78,13 @@ declare class XLoadingProperty extends XLoadingProperty_base {
|
|
|
68
78
|
*/
|
|
69
79
|
readonly inline: _angular_core.InputSignalWithTransform<boolean, XBoolean>;
|
|
70
80
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<XLoadingProperty, never>;
|
|
71
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<XLoadingProperty, "x-loading-property", never, { "loading": { "alias": "x-loading"; "required": false; "isSignal": true; }; "zIndex": { "alias": "zIndex"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "text": { "alias": "text"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "fullScreen": { "alias": "fullScreen"; "required": false; "isSignal": true; }; "radius": { "alias": "radius"; "required": false; "isSignal": true; }; "background": { "alias": "background"; "required": false; "isSignal": true; }; "inline": { "alias": "inline"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
81
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<XLoadingProperty, "x-loading-property", never, { "loading": { "alias": "x-loading"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "zIndex": { "alias": "zIndex"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "text": { "alias": "text"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "customTpl": { "alias": "customTpl"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "fullScreen": { "alias": "fullScreen"; "required": false; "isSignal": true; }; "radius": { "alias": "radius"; "required": false; "isSignal": true; }; "background": { "alias": "background"; "required": false; "isSignal": true; }; "inline": { "alias": "inline"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
72
82
|
}
|
|
83
|
+
/**
|
|
84
|
+
* @zh_CN Loading 类型
|
|
85
|
+
* @en_US Loading type
|
|
86
|
+
*/
|
|
87
|
+
type XLoadingType = 'circular' | 'spinner' | 'ripple' | 'dual-ring' | 'dual-ball' | 'bars';
|
|
73
88
|
|
|
74
89
|
declare class XLoadingComponent extends XLoadingProperty {
|
|
75
90
|
get getLoading(): boolean;
|
|
@@ -97,3 +112,4 @@ declare class XLoadingModule {
|
|
|
97
112
|
}
|
|
98
113
|
|
|
99
114
|
export { XLoadingComponent, XLoadingModule, XLoadingPrefix, XLoadingProperty };
|
|
115
|
+
export type { XLoadingType };
|
package/message/index.d.ts
CHANGED
|
@@ -172,7 +172,7 @@ declare class XMessageService {
|
|
|
172
172
|
warning(option: XTemplate | XMessageOption): XMessageRef;
|
|
173
173
|
error(option: XTemplate | XMessageOption): XMessageRef;
|
|
174
174
|
loading(option: XTemplate | XMessageOption): XMessageRef;
|
|
175
|
-
create(option: XMessageOption):
|
|
175
|
+
create(option: XTemplate | XMessageOption, type: XMessageType): XMessageRef;
|
|
176
176
|
private createMessage;
|
|
177
177
|
private closeAll;
|
|
178
178
|
private createMessagePlacement;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ng-nest/ui",
|
|
3
|
-
"version": "20.1.
|
|
3
|
+
"version": "20.1.6",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"homepage": "https://www.ngnest.com",
|
|
6
6
|
"author": "ng-nest",
|
|
@@ -37,10 +37,6 @@
|
|
|
37
37
|
"types": "./affix/index.d.ts",
|
|
38
38
|
"default": "./fesm2022/ng-nest-ui-affix.mjs"
|
|
39
39
|
},
|
|
40
|
-
"./anchor": {
|
|
41
|
-
"types": "./anchor/index.d.ts",
|
|
42
|
-
"default": "./fesm2022/ng-nest-ui-anchor.mjs"
|
|
43
|
-
},
|
|
44
40
|
"./alert": {
|
|
45
41
|
"types": "./alert/index.d.ts",
|
|
46
42
|
"default": "./fesm2022/ng-nest-ui-alert.mjs"
|
|
@@ -49,9 +45,9 @@
|
|
|
49
45
|
"types": "./api/index.d.ts",
|
|
50
46
|
"default": "./fesm2022/ng-nest-ui-api.mjs"
|
|
51
47
|
},
|
|
52
|
-
"./
|
|
53
|
-
"types": "./
|
|
54
|
-
"default": "./fesm2022/ng-nest-ui-
|
|
48
|
+
"./anchor": {
|
|
49
|
+
"types": "./anchor/index.d.ts",
|
|
50
|
+
"default": "./fesm2022/ng-nest-ui-anchor.mjs"
|
|
55
51
|
},
|
|
56
52
|
"./avatar": {
|
|
57
53
|
"types": "./avatar/index.d.ts",
|
|
@@ -65,6 +61,10 @@
|
|
|
65
61
|
"types": "./badge/index.d.ts",
|
|
66
62
|
"default": "./fesm2022/ng-nest-ui-badge.mjs"
|
|
67
63
|
},
|
|
64
|
+
"./auto-complete": {
|
|
65
|
+
"types": "./auto-complete/index.d.ts",
|
|
66
|
+
"default": "./fesm2022/ng-nest-ui-auto-complete.mjs"
|
|
67
|
+
},
|
|
68
68
|
"./base-form": {
|
|
69
69
|
"types": "./base-form/index.d.ts",
|
|
70
70
|
"default": "./fesm2022/ng-nest-ui-base-form.mjs"
|
|
@@ -73,14 +73,14 @@
|
|
|
73
73
|
"types": "./bubble/index.d.ts",
|
|
74
74
|
"default": "./fesm2022/ng-nest-ui-bubble.mjs"
|
|
75
75
|
},
|
|
76
|
-
"./calendar": {
|
|
77
|
-
"types": "./calendar/index.d.ts",
|
|
78
|
-
"default": "./fesm2022/ng-nest-ui-calendar.mjs"
|
|
79
|
-
},
|
|
80
76
|
"./button": {
|
|
81
77
|
"types": "./button/index.d.ts",
|
|
82
78
|
"default": "./fesm2022/ng-nest-ui-button.mjs"
|
|
83
79
|
},
|
|
80
|
+
"./calendar": {
|
|
81
|
+
"types": "./calendar/index.d.ts",
|
|
82
|
+
"default": "./fesm2022/ng-nest-ui-calendar.mjs"
|
|
83
|
+
},
|
|
84
84
|
"./card": {
|
|
85
85
|
"types": "./card/index.d.ts",
|
|
86
86
|
"default": "./fesm2022/ng-nest-ui-card.mjs"
|
|
@@ -109,6 +109,10 @@
|
|
|
109
109
|
"types": "./color-picker/index.d.ts",
|
|
110
110
|
"default": "./fesm2022/ng-nest-ui-color-picker.mjs"
|
|
111
111
|
},
|
|
112
|
+
"./comment": {
|
|
113
|
+
"types": "./comment/index.d.ts",
|
|
114
|
+
"default": "./fesm2022/ng-nest-ui-comment.mjs"
|
|
115
|
+
},
|
|
112
116
|
"./container": {
|
|
113
117
|
"types": "./container/index.d.ts",
|
|
114
118
|
"default": "./fesm2022/ng-nest-ui-container.mjs"
|
|
@@ -117,22 +121,22 @@
|
|
|
117
121
|
"types": "./core/index.d.ts",
|
|
118
122
|
"default": "./fesm2022/ng-nest-ui-core.mjs"
|
|
119
123
|
},
|
|
120
|
-
"./
|
|
121
|
-
"types": "./
|
|
122
|
-
"default": "./fesm2022/ng-nest-ui-
|
|
124
|
+
"./coversations": {
|
|
125
|
+
"types": "./coversations/index.d.ts",
|
|
126
|
+
"default": "./fesm2022/ng-nest-ui-coversations.mjs"
|
|
123
127
|
},
|
|
124
128
|
"./crumb": {
|
|
125
129
|
"types": "./crumb/index.d.ts",
|
|
126
130
|
"default": "./fesm2022/ng-nest-ui-crumb.mjs"
|
|
127
131
|
},
|
|
128
|
-
"./description": {
|
|
129
|
-
"types": "./description/index.d.ts",
|
|
130
|
-
"default": "./fesm2022/ng-nest-ui-description.mjs"
|
|
131
|
-
},
|
|
132
132
|
"./date-picker": {
|
|
133
133
|
"types": "./date-picker/index.d.ts",
|
|
134
134
|
"default": "./fesm2022/ng-nest-ui-date-picker.mjs"
|
|
135
135
|
},
|
|
136
|
+
"./description": {
|
|
137
|
+
"types": "./description/index.d.ts",
|
|
138
|
+
"default": "./fesm2022/ng-nest-ui-description.mjs"
|
|
139
|
+
},
|
|
136
140
|
"./dialog": {
|
|
137
141
|
"types": "./dialog/index.d.ts",
|
|
138
142
|
"default": "./fesm2022/ng-nest-ui-dialog.mjs"
|
|
@@ -145,26 +149,26 @@
|
|
|
145
149
|
"types": "./drag/index.d.ts",
|
|
146
150
|
"default": "./fesm2022/ng-nest-ui-drag.mjs"
|
|
147
151
|
},
|
|
148
|
-
"./dropdown": {
|
|
149
|
-
"types": "./dropdown/index.d.ts",
|
|
150
|
-
"default": "./fesm2022/ng-nest-ui-dropdown.mjs"
|
|
151
|
-
},
|
|
152
152
|
"./drawer": {
|
|
153
153
|
"types": "./drawer/index.d.ts",
|
|
154
154
|
"default": "./fesm2022/ng-nest-ui-drawer.mjs"
|
|
155
155
|
},
|
|
156
|
+
"./dropdown": {
|
|
157
|
+
"types": "./dropdown/index.d.ts",
|
|
158
|
+
"default": "./fesm2022/ng-nest-ui-dropdown.mjs"
|
|
159
|
+
},
|
|
156
160
|
"./empty": {
|
|
157
161
|
"types": "./empty/index.d.ts",
|
|
158
162
|
"default": "./fesm2022/ng-nest-ui-empty.mjs"
|
|
159
163
|
},
|
|
160
|
-
"./examples": {
|
|
161
|
-
"types": "./examples/index.d.ts",
|
|
162
|
-
"default": "./fesm2022/ng-nest-ui-examples.mjs"
|
|
163
|
-
},
|
|
164
164
|
"./find": {
|
|
165
165
|
"types": "./find/index.d.ts",
|
|
166
166
|
"default": "./fesm2022/ng-nest-ui-find.mjs"
|
|
167
167
|
},
|
|
168
|
+
"./examples": {
|
|
169
|
+
"types": "./examples/index.d.ts",
|
|
170
|
+
"default": "./fesm2022/ng-nest-ui-examples.mjs"
|
|
171
|
+
},
|
|
168
172
|
"./form": {
|
|
169
173
|
"types": "./form/index.d.ts",
|
|
170
174
|
"default": "./fesm2022/ng-nest-ui-form.mjs"
|
|
@@ -177,26 +181,26 @@
|
|
|
177
181
|
"types": "./i18n/index.d.ts",
|
|
178
182
|
"default": "./fesm2022/ng-nest-ui-i18n.mjs"
|
|
179
183
|
},
|
|
180
|
-
"./icon": {
|
|
181
|
-
"types": "./icon/index.d.ts",
|
|
182
|
-
"default": "./fesm2022/ng-nest-ui-icon.mjs"
|
|
183
|
-
},
|
|
184
184
|
"./image": {
|
|
185
185
|
"types": "./image/index.d.ts",
|
|
186
186
|
"default": "./fesm2022/ng-nest-ui-image.mjs"
|
|
187
187
|
},
|
|
188
|
+
"./icon": {
|
|
189
|
+
"types": "./icon/index.d.ts",
|
|
190
|
+
"default": "./fesm2022/ng-nest-ui-icon.mjs"
|
|
191
|
+
},
|
|
188
192
|
"./inner": {
|
|
189
193
|
"types": "./inner/index.d.ts",
|
|
190
194
|
"default": "./fesm2022/ng-nest-ui-inner.mjs"
|
|
191
195
|
},
|
|
192
|
-
"./input-number": {
|
|
193
|
-
"types": "./input-number/index.d.ts",
|
|
194
|
-
"default": "./fesm2022/ng-nest-ui-input-number.mjs"
|
|
195
|
-
},
|
|
196
196
|
"./input": {
|
|
197
197
|
"types": "./input/index.d.ts",
|
|
198
198
|
"default": "./fesm2022/ng-nest-ui-input.mjs"
|
|
199
199
|
},
|
|
200
|
+
"./input-number": {
|
|
201
|
+
"types": "./input-number/index.d.ts",
|
|
202
|
+
"default": "./fesm2022/ng-nest-ui-input-number.mjs"
|
|
203
|
+
},
|
|
200
204
|
"./keyword": {
|
|
201
205
|
"types": "./keyword/index.d.ts",
|
|
202
206
|
"default": "./fesm2022/ng-nest-ui-keyword.mjs"
|
|
@@ -229,14 +233,14 @@
|
|
|
229
233
|
"types": "./message-box/index.d.ts",
|
|
230
234
|
"default": "./fesm2022/ng-nest-ui-message-box.mjs"
|
|
231
235
|
},
|
|
232
|
-
"./outlet": {
|
|
233
|
-
"types": "./outlet/index.d.ts",
|
|
234
|
-
"default": "./fesm2022/ng-nest-ui-outlet.mjs"
|
|
235
|
-
},
|
|
236
236
|
"./notification": {
|
|
237
237
|
"types": "./notification/index.d.ts",
|
|
238
238
|
"default": "./fesm2022/ng-nest-ui-notification.mjs"
|
|
239
239
|
},
|
|
240
|
+
"./outlet": {
|
|
241
|
+
"types": "./outlet/index.d.ts",
|
|
242
|
+
"default": "./fesm2022/ng-nest-ui-outlet.mjs"
|
|
243
|
+
},
|
|
240
244
|
"./page-header": {
|
|
241
245
|
"types": "./page-header/index.d.ts",
|
|
242
246
|
"default": "./fesm2022/ng-nest-ui-page-header.mjs"
|
|
@@ -269,6 +273,10 @@
|
|
|
269
273
|
"types": "./radio/index.d.ts",
|
|
270
274
|
"default": "./fesm2022/ng-nest-ui-radio.mjs"
|
|
271
275
|
},
|
|
276
|
+
"./prompts": {
|
|
277
|
+
"types": "./prompts/index.d.ts",
|
|
278
|
+
"default": "./fesm2022/ng-nest-ui-prompts.mjs"
|
|
279
|
+
},
|
|
272
280
|
"./rate": {
|
|
273
281
|
"types": "./rate/index.d.ts",
|
|
274
282
|
"default": "./fesm2022/ng-nest-ui-rate.mjs"
|
|
@@ -392,6 +400,10 @@
|
|
|
392
400
|
"./upload": {
|
|
393
401
|
"types": "./upload/index.d.ts",
|
|
394
402
|
"default": "./fesm2022/ng-nest-ui-upload.mjs"
|
|
403
|
+
},
|
|
404
|
+
"./welcome": {
|
|
405
|
+
"types": "./welcome/index.d.ts",
|
|
406
|
+
"default": "./fesm2022/ng-nest-ui-welcome.mjs"
|
|
395
407
|
}
|
|
396
408
|
},
|
|
397
409
|
"sideEffects": false
|
package/progress/index.d.ts
CHANGED
|
@@ -60,6 +60,11 @@ declare class XProgressProperty extends XProgressProperty_base {
|
|
|
60
60
|
* @en_US Custom color
|
|
61
61
|
*/
|
|
62
62
|
readonly color: _angular_core.InputSignal<XProgressColor | undefined>;
|
|
63
|
+
/**
|
|
64
|
+
* @zh_CN 自定义轨道颜色
|
|
65
|
+
* @en_US Custom rail color
|
|
66
|
+
*/
|
|
67
|
+
readonly railColor: _angular_core.InputSignal<XProgressColor | undefined>;
|
|
63
68
|
/**
|
|
64
69
|
* @zh_CN 渐变颜色
|
|
65
70
|
* @en_US Gradient color
|
|
@@ -101,7 +106,7 @@ declare class XProgressProperty extends XProgressProperty_base {
|
|
|
101
106
|
*/
|
|
102
107
|
readonly subsection: _angular_core.InputSignalWithTransform<boolean, XBoolean>;
|
|
103
108
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<XProgressProperty, never>;
|
|
104
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<XProgressProperty, "x-progress-property", never, { "type": { "alias": "type"; "required": false; "isSignal": true; }; "percent": { "alias": "percent"; "required": false; "isSignal": true; }; "height": { "alias": "height"; "required": false; "isSignal": true; }; "status": { "alias": "status"; "required": false; "isSignal": true; }; "info": { "alias": "info"; "required": false; "isSignal": true; }; "infoWidth": { "alias": "infoWidth"; "required": false; "isSignal": true; }; "inside": { "alias": "inside"; "required": false; "isSignal": true; }; "format": { "alias": "format"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "gradient": { "alias": "gradient"; "required": false; "isSignal": true; }; "steps": { "alias": "steps"; "required": false; "isSignal": true; }; "stepWidth": { "alias": "stepWidth"; "required": false; "isSignal": true; }; "stepFlex": { "alias": "stepFlex"; "required": false; "isSignal": true; }; "thickness": { "alias": "thickness"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "notchAngle": { "alias": "notchAngle"; "required": false; "isSignal": true; }; "subsection": { "alias": "subsection"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
109
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<XProgressProperty, "x-progress-property", never, { "type": { "alias": "type"; "required": false; "isSignal": true; }; "percent": { "alias": "percent"; "required": false; "isSignal": true; }; "height": { "alias": "height"; "required": false; "isSignal": true; }; "status": { "alias": "status"; "required": false; "isSignal": true; }; "info": { "alias": "info"; "required": false; "isSignal": true; }; "infoWidth": { "alias": "infoWidth"; "required": false; "isSignal": true; }; "inside": { "alias": "inside"; "required": false; "isSignal": true; }; "format": { "alias": "format"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "railColor": { "alias": "railColor"; "required": false; "isSignal": true; }; "gradient": { "alias": "gradient"; "required": false; "isSignal": true; }; "steps": { "alias": "steps"; "required": false; "isSignal": true; }; "stepWidth": { "alias": "stepWidth"; "required": false; "isSignal": true; }; "stepFlex": { "alias": "stepFlex"; "required": false; "isSignal": true; }; "thickness": { "alias": "thickness"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "notchAngle": { "alias": "notchAngle"; "required": false; "isSignal": true; }; "subsection": { "alias": "subsection"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
105
110
|
}
|
|
106
111
|
/**
|
|
107
112
|
* @zh_CN 进度条类型
|
|
@@ -155,6 +160,7 @@ declare class XProgressComponent extends XProgressProperty {
|
|
|
155
160
|
}>;
|
|
156
161
|
stepsArray: _angular_core.Signal<boolean[]>;
|
|
157
162
|
currentColor: _angular_core.Signal<any>;
|
|
163
|
+
currentRailColor: _angular_core.Signal<any>;
|
|
158
164
|
linearGradient: _angular_core.Signal<string>;
|
|
159
165
|
/**
|
|
160
166
|
* circle 中的 100% 等于 clip-path 中的 400%
|