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

38
node_modules/ng-zorro-antd/hash-code/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1,38 @@
import * as i0 from '@angular/core';
import { OnChanges, TemplateRef, EventEmitter, SimpleChanges } from '@angular/core';
/**
* 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
*/
type NzModeType = 'single' | 'double' | 'strip' | 'rect';
/**
* 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
*/
declare class NzHashCodeComponent implements OnChanges {
private cdr;
nzValue: string;
nzTitle: string;
nzLogo: TemplateRef<void> | string;
nzMode: NzModeType;
nzType: 'default' | 'primary';
readonly nzOnCopy: EventEmitter<string>;
hashDataList: string[];
copyHandle(): void;
ngOnChanges(changes: SimpleChanges): void;
setData(value: string): void;
static ɵfac: i0.ɵɵFactoryDeclaration<NzHashCodeComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<NzHashCodeComponent, "nz-hash-code", ["nzHashCode"], { "nzValue": { "alias": "nzValue"; "required": false; }; "nzTitle": { "alias": "nzTitle"; "required": false; }; "nzLogo": { "alias": "nzLogo"; "required": false; }; "nzMode": { "alias": "nzMode"; "required": false; }; "nzType": { "alias": "nzType"; "required": false; }; }, { "nzOnCopy": "nzOnCopy"; }, never, never, true, never>;
}
declare class NzHashCodeModule {
static ɵfac: i0.ɵɵFactoryDeclaration<NzHashCodeModule, never>;
static ɵmod: i0.ɵɵNgModuleDeclaration<NzHashCodeModule, never, [typeof NzHashCodeComponent], [typeof NzHashCodeComponent]>;
static ɵinj: i0.ɵɵInjectorDeclaration<NzHashCodeModule>;
}
export { NzHashCodeComponent, NzHashCodeModule };
export type { NzModeType };

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

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

View File

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

126
node_modules/ng-zorro-antd/hash-code/style/index.css generated vendored Normal file
View File

@@ -0,0 +1,126 @@
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
.ant-hash-code {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
box-sizing: border-box;
margin: 0;
padding: 0;
color: rgba(0, 0, 0, 0.85);
font-size: 14px;
line-height: 1.5715;
list-style: none;
cursor: pointer;
}
.ant-hash-code-header-copy {
margin-left: 8px;
cursor: pointer;
opacity: 0.45;
}
.ant-hash-code-header {
display: flex;
justify-content: left;
width: 100%;
height: 22px;
padding-bottom: 8px;
}
.ant-hash-code-header .ant-hash-code-header-title {
font-size: 14px;
line-height: 1.5715;
text-align: center;
opacity: 0.45;
}
.ant-hash-code-header .ant-hash-code-header-logo {
display: flex;
flex: 1;
justify-content: right;
}
.ant-hash-code-double {
width: 172px;
}
.ant-hash-code-double.ant-hash-code-primary {
width: 220px;
}
.ant-hash-code-single {
display: flex;
flex-direction: row-reverse;
width: 236px;
}
.ant-hash-code-single.ant-hash-code-primary {
width: 284px;
}
.ant-hash-code-single .ant-hash-code-header-copy {
margin-top: 8px;
}
.ant-hash-code-strip {
width: 350px;
}
.ant-hash-code-strip.ant-hash-code-primary {
width: 398px;
}
.ant-hash-code-rect {
display: flex;
flex-direction: row-reverse;
width: 196px;
}
.ant-hash-code-rect.ant-hash-code-primary {
width: 244px;
}
.ant-hash-code-primary {
padding: 24px;
background-color: #1890ff;
border-radius: 24px;
}
.ant-hash-code-primary .ant-hash-code-header-copy {
opacity: 1;
}
.ant-hash-code-primary .ant-hash-code-header-title,
.ant-hash-code-primary .ant-hash-code-header-copy,
.ant-hash-code-primary .ant-hash-code-header-logo {
color: rgba(255, 255, 255, 0.85);
}
.ant-hash-code-contant {
width: 100%;
height: 100%;
}
.ant-hash-code-code-value {
display: flex;
flex-wrap: wrap;
gap: 0 10px;
justify-content: space-between;
height: 35px;
overflow: hidden;
}
.ant-hash-code-code-value-block {
height: 16px;
font-size: 14px;
font-family: Menlo, Monaco, Consolas, 'Courier New', monospace;
}
.ant-hash-code-value-primary .ant-hash-code-code-value-block {
color: #fff;
}
.ant-hash-code-texaure-double {
width: 175px;
height: 36px;
}
.ant-hash-code-texaure {
position: absolute;
margin-top: -35px;
overflow: hidden;
}
.ant-hash-code-texaure-single {
width: 210px;
height: 28px;
margin-top: -21px;
}
.ant-hash-code-texaure-strip {
width: 350px;
height: 36px;
}
.ant-hash-code-texaure-rect {
width: 175px;
height: 72px;
margin-top: -71px;
}

156
node_modules/ng-zorro-antd/hash-code/style/index.less generated vendored Normal file
View File

@@ -0,0 +1,156 @@
@import '../../style/themes/index';
@import '../../style/mixins/index';
@hash-code-prefix-cls: ~'@{ant-prefix}-hash-code';
.@{hash-code-prefix-cls} {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
box-sizing: border-box;
margin: 0;
padding: 0;
color: @text-color;
font-size: @font-size-base;
line-height: @line-height-base;
list-style: none;
cursor: pointer;
}
.@{hash-code-prefix-cls}-header-copy {
margin-left: @margin-xs;
cursor: pointer;
opacity: 0.45;
}
.@{hash-code-prefix-cls}-header {
display: flex;
justify-content: left;
width: 100%;
height: 22px;
padding-bottom: @padding-xs;
.@{hash-code-prefix-cls}-header-title {
font-size: @font-size-base;
line-height: @line-height-base;
text-align: center;
opacity: 0.45;
}
.@{hash-code-prefix-cls}-header-logo {
display: flex;
flex: 1;
justify-content: right;
}
}
.@{hash-code-prefix-cls}-double {
width: 172px;
&.ant-hash-code-primary {
width: 220px;
}
}
.@{hash-code-prefix-cls}-single {
display: flex;
flex-direction: row-reverse;
width: 236px;
&.ant-hash-code-primary {
width: 284px;
}
.@{hash-code-prefix-cls}-header-copy {
margin-top: @margin-xs;
}
}
.@{hash-code-prefix-cls}-strip {
width: 350px;
&.ant-hash-code-primary {
width: 398px;
}
}
.@{hash-code-prefix-cls}-rect {
display: flex;
flex-direction: row-reverse;
width: 196px;
&.ant-hash-code-primary {
width: 244px;
}
}
.@{hash-code-prefix-cls}-primary {
padding: @padding-lg;
background-color: @primary-color;
border-radius: 24px;
.@{hash-code-prefix-cls}-header-copy {
opacity: 1;
}
.@{hash-code-prefix-cls}-header-title,
.@{hash-code-prefix-cls}-header-copy,
.@{hash-code-prefix-cls}-header-logo {
color: @text-color-dark;
}
}
.@{hash-code-prefix-cls}-contant {
width: 100%;
height: 100%;
}
.@{hash-code-prefix-cls}-code-value {
display: flex;
flex-wrap: wrap;
gap: 0 10px;
justify-content: space-between;
height: 35px;
overflow: hidden;
}
.@{hash-code-prefix-cls}-code-value-block {
height: 16px;
font-size: @font-size-base;
font-family: Menlo, Monaco, Consolas, 'Courier New', monospace;
}
.@{hash-code-prefix-cls}-value-primary {
.ant-hash-code-code-value-block {
color: @text-color-inverse;
}
}
.@{hash-code-prefix-cls}-texaure-double {
width: 175px;
height: 36px;
}
.@{hash-code-prefix-cls}-texaure {
position: absolute;
margin-top: -35px;
overflow: hidden;
}
.@{hash-code-prefix-cls}-texaure-single {
width: 210px;
height: 28px;
margin-top: -21px;
}
.@{hash-code-prefix-cls}-texaure-strip {
width: 350px;
height: 36px;
}
.@{hash-code-prefix-cls}-texaure-rect {
width: 175px;
height: 72px;
margin-top: -71px;
}

View File

@@ -0,0 +1 @@
.ant-hash-code{display:flex;flex-direction:column;align-items:center;justify-content:center;box-sizing:border-box;margin:0;padding:0;color:rgba(0,0,0,.85);font-size:14px;line-height:1.5715;list-style:none;cursor:pointer}.ant-hash-code-header-copy{margin-left:8px;cursor:pointer;opacity:.45}.ant-hash-code-header{display:flex;justify-content:left;width:100%;height:22px;padding-bottom:8px}.ant-hash-code-header .ant-hash-code-header-title{font-size:14px;line-height:1.5715;text-align:center;opacity:.45}.ant-hash-code-header .ant-hash-code-header-logo{display:flex;flex:1;justify-content:right}.ant-hash-code-double{width:172px}.ant-hash-code-double.ant-hash-code-primary{width:220px}.ant-hash-code-single{display:flex;flex-direction:row-reverse;width:236px}.ant-hash-code-single.ant-hash-code-primary{width:284px}.ant-hash-code-single .ant-hash-code-header-copy{margin-top:8px}.ant-hash-code-strip{width:350px}.ant-hash-code-strip.ant-hash-code-primary{width:398px}.ant-hash-code-rect{display:flex;flex-direction:row-reverse;width:196px}.ant-hash-code-rect.ant-hash-code-primary{width:244px}.ant-hash-code-primary{padding:24px;background-color:#1890ff;border-radius:24px}.ant-hash-code-primary .ant-hash-code-header-copy{opacity:1}.ant-hash-code-primary .ant-hash-code-header-copy,.ant-hash-code-primary .ant-hash-code-header-logo,.ant-hash-code-primary .ant-hash-code-header-title{color:rgba(255,255,255,.85)}.ant-hash-code-contant{width:100%;height:100%}.ant-hash-code-code-value{display:flex;flex-wrap:wrap;gap:0 10px;justify-content:space-between;height:35px;overflow:hidden}.ant-hash-code-code-value-block{height:16px;font-size:14px;font-family:Menlo,Monaco,Consolas,'Courier New',monospace}.ant-hash-code-value-primary .ant-hash-code-code-value-block{color:#fff}.ant-hash-code-texaure-double{width:175px;height:36px}.ant-hash-code-texaure{position:absolute;margin-top:-35px;overflow:hidden}.ant-hash-code-texaure-single{width:210px;height:28px;margin-top:-21px}.ant-hash-code-texaure-strip{width:350px;height:36px}.ant-hash-code-texaure-rect{width:175px;height:72px;margin-top:-71px}