This commit is contained in:
CHEVALLIER Abel
2025-11-13 16:23:22 +01:00
parent de9c515a47
commit cb235644dc
34924 changed files with 3811102 additions and 0 deletions

40
node_modules/ng-zorro-antd/check-list/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1,40 @@
import * as _angular_core from '@angular/core';
import { TemplateRef } from '@angular/core';
import { NzCheckListI18nInterface } from 'ng-zorro-antd/i18n';
/**
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE
*/
interface NzItemProps {
description: string;
checked?: boolean;
onClick?: (item: NzItemProps) => void;
key?: string;
}
declare class NzCheckListComponent {
nzItems: _angular_core.InputSignal<NzItemProps[]>;
nzVisible: _angular_core.InputSignal<boolean>;
nzIndex: _angular_core.InputSignal<number>;
nzProgress: _angular_core.InputSignal<boolean>;
nzTriggerRender: _angular_core.InputSignal<string | TemplateRef<void> | null>;
nzTitle: _angular_core.InputSignal<string | TemplateRef<void> | null>;
nzFooter: _angular_core.InputSignal<string | TemplateRef<void> | null>;
readonly nzHide: _angular_core.OutputEmitterRef<boolean>;
protected unfinished: _angular_core.Signal<number>;
protected visible: _angular_core.WritableSignal<boolean>;
private i18n;
locale: _angular_core.Signal<NzCheckListI18nInterface>;
static ɵfac: _angular_core.ɵɵFactoryDeclaration<NzCheckListComponent, never>;
static ɵcmp: _angular_core.ɵɵComponentDeclaration<NzCheckListComponent, "nz-check-list", never, { "nzItems": { "alias": "nzItems"; "required": false; "isSignal": true; }; "nzVisible": { "alias": "nzVisible"; "required": false; "isSignal": true; }; "nzIndex": { "alias": "nzIndex"; "required": false; "isSignal": true; }; "nzProgress": { "alias": "nzProgress"; "required": false; "isSignal": true; }; "nzTriggerRender": { "alias": "nzTriggerRender"; "required": false; "isSignal": true; }; "nzTitle": { "alias": "nzTitle"; "required": false; "isSignal": true; }; "nzFooter": { "alias": "nzFooter"; "required": false; "isSignal": true; }; }, { "nzHide": "nzHide"; }, never, never, true, never>;
}
declare class NzCheckListModule {
static ɵfac: _angular_core.ɵɵFactoryDeclaration<NzCheckListModule, never>;
static ɵmod: _angular_core.ɵɵNgModuleDeclaration<NzCheckListModule, never, [typeof NzCheckListComponent], [typeof NzCheckListComponent]>;
static ɵinj: _angular_core.ɵɵInjectorDeclaration<NzCheckListModule>;
}
export { NzCheckListComponent, NzCheckListModule };
export type { NzItemProps };

3
node_modules/ng-zorro-antd/check-list/package.json generated vendored Normal file
View File

@@ -0,0 +1,3 @@
{
"module": "../fesm2022/ng-zorro-antd-check-list.mjs"
}

View File

@@ -0,0 +1 @@
@import './index.less';

199
node_modules/ng-zorro-antd/check-list/style/index.css generated vendored Normal file
View File

@@ -0,0 +1,199 @@
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
.ant-check-list {
position: fixed;
right: 32px;
bottom: 32px;
z-index: 999;
font-size: 14px;
cursor: pointer;
}
.ant-check-list .ant-check-list-button {
position: relative;
display: flex;
gap: 8px;
align-items: center;
justify-content: center;
min-width: 110px;
height: 40px;
border-radius: 20px;
}
.ant-check-list .ant-check-list-icon {
font-size: 24px;
line-height: 24px;
}
.ant-check-list .ant-check-list-description {
font-size: 14px;
}
.ant-check-list .ant-check-list-trigger-dot {
position: absolute;
top: -12px;
right: -12px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 24px;
height: 24px;
color: #1890ff;
background-color: #fff;
border: 1px solid #1890ff;
border-radius: 50%;
}
.ant-check-list .ant-check-list-trigger-dot-text {
font-weight: 500;
font-size: 16px;
font-style: italic;
line-height: 16px;
}
.ant-check-list-content {
display: block;
width: 303px;
}
.ant-check-list-content .ant-check-list-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 12px 12px 16px;
}
.ant-check-list-content .ant-check-list-header .ant-check-list-header-title {
font-weight: 500;
font-size: 20px;
}
.ant-check-list-content .ant-check-list-header .ant-check-list-header-extra {
cursor: pointer;
}
.ant-check-list-content .ant-check-list-header-finish {
width: 304px;
padding-top: 12px;
text-align: center;
}
.ant-check-list-content .ant-check-list-header-finish .ant-check-list-header-finish-icon {
width: 64px;
height: 64px;
color: #1890ff;
font-size: 64px;
}
.ant-check-list-content .ant-check-list-header-finish .ant-check-list-header-finish-title {
margin-top: 8px;
margin-bottom: 8px;
font-weight: 500;
font-size: 16px;
}
.ant-check-list-content .ant-check-list-progressBar {
display: flex;
justify-content: space-between;
margin: 12px 16px;
margin-top: 0;
}
.ant-check-list-content .ant-check-list-progressBar .ant-check-list-progressBar-progress {
flex: auto;
}
.ant-check-list-content .ant-check-list-steps-content {
max-height: 250px;
overflow-y: scroll;
}
.ant-check-list-content .ant-check-list-steps {
display: flex;
align-items: center;
justify-content: space-between;
height: 52px;
padding-right: 12px;
padding-left: 12px;
border-radius: 6px;
cursor: pointer;
}
.ant-check-list-content .ant-check-list-steps .ant-check-list-steps-item {
display: flex;
gap: 12px;
align-items: center;
justify-content: center;
width: calc(100% - 22px);
font-weight: 400;
}
.ant-check-list-content .ant-check-list-steps .ant-check-list-steps-item .ant-check-list-steps-item-circle {
display: flex;
flex: 0 0 28px;
align-items: center;
justify-content: center;
width: 28px;
height: 28px;
font-weight: 600;
background-color: #fff;
border: 1px solid #d9d9d9;
border-radius: 50%;
user-select: none;
}
.ant-check-list-content .ant-check-list-steps .ant-check-list-steps-item .ant-check-list-steps-item-circle .ant-check-list-steps-number {
color: #1890ff;
font-size: 16px;
}
.ant-check-list-content .ant-check-list-steps .ant-check-list-steps-item .ant-check-list-steps-item-circle .ant-check-list-steps-checkoutlined {
color: #fff;
font-size: 14px;
}
.ant-check-list-content .ant-check-list-steps .ant-check-list-steps-item .ant-check-list-steps-item-description {
flex: 1;
overflow: hidden;
line-height: 2;
white-space: nowrap;
text-overflow: ellipsis;
}
.ant-check-list-content .ant-check-list-steps .ant-check-list-steps-item-arrows {
flex: 0 0 22px;
width: 38px;
height: 38px;
color: #1890ff;
font-size: 22px;
}
.ant-check-list-content .ant-check-list-checked .ant-check-list-steps-item .ant-check-list-steps-item-circle {
background-color: #1890ff;
border: none;
}
.ant-check-list-content .ant-check-list-checked .ant-check-list-steps-item .ant-check-list-steps-item-description {
font-weight: 500;
text-decoration: line-through;
text-decoration-thickness: 2px;
text-decoration-color: rgba(0, 0, 0, 0.85);
opacity: 0.85;
}
.ant-check-list-content .ant-check-list-highlight {
background-color: #e6f7ff;
}
.ant-check-list-content .ant-check-list-highlight .ant-check-list-steps-item .ant-check-list-steps-item-circle {
border: 1px solid #1890ff;
}
.ant-check-list-content .ant-check-list-highlight .ant-check-list-steps-item .ant-check-list-steps-item-circle .ant-check-list-steps-number {
color: #1890ff;
}
.ant-check-list-content .ant-check-list-highlight .ant-check-list-steps-item .ant-check-list-steps-item-description {
font-weight: 600;
}
.ant-check-list-content .ant-check-list-footer {
padding: 12px 12px 0;
color: rgba(0, 0, 0, 0.45);
font-size: 14px;
text-decoration: underline;
cursor: pointer;
}
.ant-check-list-content .ant-check-list-close-check {
display: flex;
flex-direction: column;
padding: 12px;
}
.ant-check-list-content .ant-check-list-close-check .ant-check-list-close-check-title {
margin-bottom: 24px;
font-weight: 500;
font-size: 16px;
}
.ant-check-list-content .ant-check-list-close-check .ant-check-list-close-check-action {
display: flex;
flex-direction: row;
gap: 8px;
margin-bottom: 16px;
}
.ant-check-list-content .ant-check-list-close-check .ant-check-list-close-check-other {
color: rgba(0, 0, 0, 0.45);
font-size: 14px;
cursor: pointer;
}

234
node_modules/ng-zorro-antd/check-list/style/index.less generated vendored Normal file
View File

@@ -0,0 +1,234 @@
@import '../../style/themes/index';
@import '../../style/mixins/index';
@check-list-prefix-cls: ~'@{ant-prefix}-check-list';
.@{check-list-prefix-cls} {
position: fixed;
right: 32px;
bottom: 32px;
z-index: 999;
font-size: @font-size-base;
cursor: pointer;
.@{check-list-prefix-cls}-button {
position: relative;
display: flex;
gap: @margin-xs;
align-items: center;
justify-content: center;
min-width: 110px;
height: 40px;
border-radius: 20px;
}
.@{check-list-prefix-cls}-icon {
font-size: @heading-3-size;
line-height: 24px;
}
.@{check-list-prefix-cls}-description {
font-size: @font-size-base;
}
.@{check-list-prefix-cls}-trigger-dot {
position: absolute;
top: -12px;
right: -12px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 24px;
height: 24px;
color: @primary-color;
background-color: @component-background;
border: @border-width-base solid @primary-color;
border-radius: 50%;
}
.@{check-list-prefix-cls}-trigger-dot-text {
font-weight: 500;
font-size: 16px;
font-style: italic;
line-height: 16px;
}
}
.@{check-list-prefix-cls}-content {
display: block;
width: 303px;
.@{check-list-prefix-cls}-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: @padding-sm @padding-sm @padding-md;
.@{check-list-prefix-cls}-header-title {
font-weight: 500;
font-size: @heading-4-size;
}
.@{check-list-prefix-cls}-header-extra {
cursor: pointer;
}
}
.@{check-list-prefix-cls}-header-finish {
width: 304px;
padding-top: @margin-sm;
text-align: center;
.@{check-list-prefix-cls}-header-finish-icon {
width: 64px;
height: 64px;
color: @primary-color;
font-size: 64px;
}
.@{check-list-prefix-cls}-header-finish-title {
margin-top: @margin-xs;
margin-bottom: @margin-xs;
font-weight: 500;
font-size: @font-size-lg;
}
}
.@{check-list-prefix-cls}-progressBar {
display: flex;
justify-content: space-between;
margin: @margin-sm @margin-md;
margin-top: 0;
.@{check-list-prefix-cls}-progressBar-progress {
flex: auto;
}
}
.@{check-list-prefix-cls}-steps-content {
max-height: 250px;
overflow-y: scroll;
}
.@{check-list-prefix-cls}-steps {
display: flex;
align-items: center;
justify-content: space-between;
height: 52px;
padding-right: @padding-sm;
padding-left: @padding-sm;
border-radius: 6px;
cursor: pointer;
.@{check-list-prefix-cls}-steps-item {
display: flex;
gap: 12px;
align-items: center;
justify-content: center;
width: calc(100% - 22px);
font-weight: 400;
.@{check-list-prefix-cls}-steps-item-circle {
display: flex;
flex: 0 0 28px;
align-items: center;
justify-content: center;
width: 28px;
height: 28px;
font-weight: 600;
background-color: @component-background;
border: @border-width-base solid @border-color-base;
border-radius: 50%;
user-select: none;
.@{check-list-prefix-cls}-steps-number {
color: @primary-color;
font-size: @font-size-lg;
}
.@{check-list-prefix-cls}-steps-checkoutlined {
color: @component-background;
font-size: @font-size-base;
}
}
.@{check-list-prefix-cls}-steps-item-description {
flex: 1;
overflow: hidden;
line-height: 2;
white-space: nowrap;
text-overflow: ellipsis;
}
}
.@{check-list-prefix-cls}-steps-item-arrows {
flex: 0 0 22px;
width: 38px;
height: 38px;
color: @primary-color;
font-size: 22px;
}
}
.@{check-list-prefix-cls}-checked {
.@{check-list-prefix-cls}-steps-item .@{check-list-prefix-cls}-steps-item-circle {
background-color: @primary-color;
border: none;
}
.@{check-list-prefix-cls}-steps-item .@{check-list-prefix-cls}-steps-item-description {
font-weight: 500;
text-decoration: line-through;
text-decoration-thickness: 2px;
text-decoration-color: @text-color;
opacity: 0.85;
}
}
.@{check-list-prefix-cls}-highlight {
background-color: @info-color-deprecated-bg;
.@{check-list-prefix-cls}-steps-item .@{check-list-prefix-cls}-steps-item-circle {
border: @border-width-base solid @primary-color;
.@{check-list-prefix-cls}-steps-number {
color: @primary-color;
}
}
.@{check-list-prefix-cls}-steps-item .@{check-list-prefix-cls}-steps-item-description {
font-weight: 600;
}
}
.@{check-list-prefix-cls}-footer {
padding: @padding-sm @padding-sm 0;
color: @text-color-secondary;
font-size: @font-size-base;
text-decoration: underline;
cursor: pointer;
}
.@{check-list-prefix-cls}-close-check {
display: flex;
flex-direction: column;
padding: @padding-sm;
.@{check-list-prefix-cls}-close-check-title {
margin-bottom: @margin-lg;
font-weight: 500;
font-size: @font-size-lg;
}
.@{check-list-prefix-cls}-close-check-action {
display: flex;
flex-direction: row;
gap: @margin-xs;
margin-bottom: @margin-md;
}
.@{check-list-prefix-cls}-close-check-other {
color: @text-color-secondary;
font-size: @font-size-base;
cursor: pointer;
}
}
}

View File

@@ -0,0 +1 @@
.ant-check-list{position:fixed;right:32px;bottom:32px;z-index:999;font-size:14px;cursor:pointer}.ant-check-list .ant-check-list-button{position:relative;display:flex;gap:8px;align-items:center;justify-content:center;min-width:110px;height:40px;border-radius:20px}.ant-check-list .ant-check-list-icon{font-size:24px;line-height:24px}.ant-check-list .ant-check-list-description{font-size:14px}.ant-check-list .ant-check-list-trigger-dot{position:absolute;top:-12px;right:-12px;display:flex;flex-direction:column;align-items:center;justify-content:center;width:24px;height:24px;color:#1890ff;background-color:#fff;border:1px solid #1890ff;border-radius:50%}.ant-check-list .ant-check-list-trigger-dot-text{font-weight:500;font-size:16px;font-style:italic;line-height:16px}.ant-check-list-content{display:block;width:303px}.ant-check-list-content .ant-check-list-header{display:flex;align-items:center;justify-content:space-between;padding:12px 12px 16px}.ant-check-list-content .ant-check-list-header .ant-check-list-header-title{font-weight:500;font-size:20px}.ant-check-list-content .ant-check-list-header .ant-check-list-header-extra{cursor:pointer}.ant-check-list-content .ant-check-list-header-finish{width:304px;padding-top:12px;text-align:center}.ant-check-list-content .ant-check-list-header-finish .ant-check-list-header-finish-icon{width:64px;height:64px;color:#1890ff;font-size:64px}.ant-check-list-content .ant-check-list-header-finish .ant-check-list-header-finish-title{margin-top:8px;margin-bottom:8px;font-weight:500;font-size:16px}.ant-check-list-content .ant-check-list-progressBar{display:flex;justify-content:space-between;margin:12px 16px;margin-top:0}.ant-check-list-content .ant-check-list-progressBar .ant-check-list-progressBar-progress{flex:auto}.ant-check-list-content .ant-check-list-steps-content{max-height:250px;overflow-y:scroll}.ant-check-list-content .ant-check-list-steps{display:flex;align-items:center;justify-content:space-between;height:52px;padding-right:12px;padding-left:12px;border-radius:6px;cursor:pointer}.ant-check-list-content .ant-check-list-steps .ant-check-list-steps-item{display:flex;gap:12px;align-items:center;justify-content:center;width:calc(100% - 22px);font-weight:400}.ant-check-list-content .ant-check-list-steps .ant-check-list-steps-item .ant-check-list-steps-item-circle{display:flex;flex:0 0 28px;align-items:center;justify-content:center;width:28px;height:28px;font-weight:600;background-color:#fff;border:1px solid #d9d9d9;border-radius:50%;user-select:none}.ant-check-list-content .ant-check-list-steps .ant-check-list-steps-item .ant-check-list-steps-item-circle .ant-check-list-steps-number{color:#1890ff;font-size:16px}.ant-check-list-content .ant-check-list-steps .ant-check-list-steps-item .ant-check-list-steps-item-circle .ant-check-list-steps-checkoutlined{color:#fff;font-size:14px}.ant-check-list-content .ant-check-list-steps .ant-check-list-steps-item .ant-check-list-steps-item-description{flex:1;overflow:hidden;line-height:2;white-space:nowrap;text-overflow:ellipsis}.ant-check-list-content .ant-check-list-steps .ant-check-list-steps-item-arrows{flex:0 0 22px;width:38px;height:38px;color:#1890ff;font-size:22px}.ant-check-list-content .ant-check-list-checked .ant-check-list-steps-item .ant-check-list-steps-item-circle{background-color:#1890ff;border:none}.ant-check-list-content .ant-check-list-checked .ant-check-list-steps-item .ant-check-list-steps-item-description{font-weight:500;text-decoration:line-through;text-decoration-thickness:2px;text-decoration-color:rgba(0,0,0,0.85);opacity:.85}.ant-check-list-content .ant-check-list-highlight{background-color:#e6f7ff}.ant-check-list-content .ant-check-list-highlight .ant-check-list-steps-item .ant-check-list-steps-item-circle{border:1px solid #1890ff}.ant-check-list-content .ant-check-list-highlight .ant-check-list-steps-item .ant-check-list-steps-item-circle .ant-check-list-steps-number{color:#1890ff}.ant-check-list-content .ant-check-list-highlight .ant-check-list-steps-item .ant-check-list-steps-item-description{font-weight:600}.ant-check-list-content .ant-check-list-footer{padding:12px 12px 0;color:rgba(0,0,0,.45);font-size:14px;text-decoration:underline;cursor:pointer}.ant-check-list-content .ant-check-list-close-check{display:flex;flex-direction:column;padding:12px}.ant-check-list-content .ant-check-list-close-check .ant-check-list-close-check-title{margin-bottom:24px;font-weight:500;font-size:16px}.ant-check-list-content .ant-check-list-close-check .ant-check-list-close-check-action{display:flex;flex-direction:row;gap:8px;margin-bottom:16px}.ant-check-list-content .ant-check-list-close-check .ant-check-list-close-check-other{color:rgba(0,0,0,.45);font-size:14px;cursor:pointer}