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

37
node_modules/ng-zorro-antd/flex/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1,37 @@
import * as i0 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 NzJustify = 'flex-start' | 'center' | 'flex-end' | 'space-between' | 'space-around' | 'space-evenly' | 'start' | 'end' | 'right' | 'left' | 'stretch' | 'normal';
type NzAlign = 'flex-start' | 'center' | 'flex-end' | 'space-between' | 'space-around' | 'space-evenly' | 'start' | 'end' | 'right' | 'left' | 'stretch' | 'normal';
type NzGap = 'small' | 'middle' | 'large' | NzCustomGap;
type NzCustomGap = number | string;
type NzWrap = 'wrap' | 'nowrap' | 'wrap-reverse';
type NzFlex = `${NzFlexShrink} ${NzFlexGrow} ${NzFlexBasis}` | 'unset';
type NzFlexShrink = number;
type NzFlexGrow = number;
type NzFlexBasis = string;
declare class NzFlexDirective {
nzVertical: boolean;
nzJustify: NzJustify;
nzAlign: NzAlign;
nzGap: NzGap;
nzWrap: NzWrap;
nzFlex: NzFlex;
protected get gap(): string;
static ɵfac: i0.ɵɵFactoryDeclaration<NzFlexDirective, never>;
static ɵdir: i0.ɵɵDirectiveDeclaration<NzFlexDirective, "[nz-flex],nz-flex", ["nzFlex"], { "nzVertical": { "alias": "nzVertical"; "required": false; }; "nzJustify": { "alias": "nzJustify"; "required": false; }; "nzAlign": { "alias": "nzAlign"; "required": false; }; "nzGap": { "alias": "nzGap"; "required": false; }; "nzWrap": { "alias": "nzWrap"; "required": false; }; "nzFlex": { "alias": "nzFlex"; "required": false; }; }, {}, never, never, true, never>;
static ngAcceptInputType_nzVertical: unknown;
}
declare class NzFlexModule {
static ɵfac: i0.ɵɵFactoryDeclaration<NzFlexModule, never>;
static ɵmod: i0.ɵɵNgModuleDeclaration<NzFlexModule, never, [typeof NzFlexDirective], [typeof NzFlexDirective]>;
static ɵinj: i0.ɵɵInjectorDeclaration<NzFlexModule>;
}
export { NzFlexDirective, NzFlexModule };
export type { NzAlign, NzCustomGap, NzFlex, NzFlexBasis, NzFlexGrow, NzFlexShrink, NzGap, NzJustify, NzWrap };

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

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

1
node_modules/ng-zorro-antd/flex/style/entry.less generated vendored Normal file
View File

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

74
node_modules/ng-zorro-antd/flex/style/index.css generated vendored Normal file
View File

@@ -0,0 +1,74 @@
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
.ant-flex {
display: flex;
}
.ant-flex-vertical {
flex-direction: column;
}
.ant-flex-justify-flex-start {
justify-content: flex-start;
}
.ant-flex-justify-center {
justify-content: center;
}
.ant-flex-justify-flex-end {
justify-content: flex-end;
}
.ant-flex-justify-space-between {
justify-content: space-between;
}
.ant-flex-justify-space-around {
justify-content: space-around;
}
.ant-flex-justify-space-evenly {
justify-content: space-evenly;
}
.ant-flex-justify-start {
justify-content: start;
}
.ant-flex-justify-end {
justify-content: end;
}
.ant-flex-justify-right {
justify-content: right;
}
.ant-flex-justify-left {
justify-content: left;
}
.ant-flex-justify-stretch {
justify-content: stretch;
}
.ant-flex-justify-normal {
justify-content: normal;
}
.ant-flex-align-flex-start {
align-items: flex-start;
}
.ant-flex-align-center {
align-items: center;
}
.ant-flex-align-flex-end {
align-items: flex-end;
}
.ant-flex-align-start {
align-items: start;
}
.ant-flex-align-end {
align-items: end;
}
.ant-flex-align-stretch {
align-items: stretch;
}
.ant-flex-align-normal {
align-items: normal;
}
.ant-flex-wrap-wrap {
flex-wrap: wrap;
}
.ant-flex-wrap-nowrap {
flex-wrap: nowrap;
}
.ant-flex-wrap-wrap-reverse {
flex-wrap: wrap-reverse;
}

106
node_modules/ng-zorro-antd/flex/style/index.less generated vendored Normal file
View File

@@ -0,0 +1,106 @@
@import '../../style/themes/index';
@import '../../style/mixins/index';
@flex-prefix-cls: ~'@{ant-prefix}-flex';
.@{flex-prefix-cls} {
display: flex;
&-vertical {
flex-direction: column;
}
&-justify {
&-flex-start {
justify-content: flex-start;
}
&-center {
justify-content: center;
}
&-flex-end {
justify-content: flex-end;
}
&-space-between {
justify-content: space-between;
}
&-space-around {
justify-content: space-around;
}
&-space-evenly {
justify-content: space-evenly;
}
&-start {
justify-content: start;
}
&-end {
justify-content: end;
}
&-right {
justify-content: right;
}
&-left {
justify-content: left;
}
&-stretch {
justify-content: stretch;
}
&-normal {
justify-content: normal;
}
}
&-align {
&-flex-start {
align-items: flex-start;
}
&-center {
align-items: center;
}
&-flex-end {
align-items: flex-end;
}
&-start {
align-items: start;
}
&-end {
align-items: end;
}
&-stretch {
align-items: stretch;
}
&-normal {
align-items: normal;
}
}
&-wrap {
&-wrap {
flex-wrap: wrap;
}
&-nowrap {
flex-wrap: nowrap;
}
&-wrap-reverse {
flex-wrap: wrap-reverse;
}
}
}

1
node_modules/ng-zorro-antd/flex/style/index.min.css generated vendored Normal file
View File

@@ -0,0 +1 @@
.ant-flex{display:flex}.ant-flex-vertical{flex-direction:column}.ant-flex-justify-flex-start{justify-content:flex-start}.ant-flex-justify-center{justify-content:center}.ant-flex-justify-flex-end{justify-content:flex-end}.ant-flex-justify-space-between{justify-content:space-between}.ant-flex-justify-space-around{justify-content:space-around}.ant-flex-justify-space-evenly{justify-content:space-evenly}.ant-flex-justify-start{justify-content:start}.ant-flex-justify-end{justify-content:end}.ant-flex-justify-right{justify-content:right}.ant-flex-justify-left{justify-content:left}.ant-flex-justify-stretch{justify-content:stretch}.ant-flex-justify-normal{justify-content:normal}.ant-flex-align-flex-start{align-items:flex-start}.ant-flex-align-center{align-items:center}.ant-flex-align-flex-end{align-items:flex-end}.ant-flex-align-start{align-items:start}.ant-flex-align-end{align-items:end}.ant-flex-align-stretch{align-items:stretch}.ant-flex-align-normal{align-items:normal}.ant-flex-wrap-wrap{flex-wrap:wrap}.ant-flex-wrap-nowrap{flex-wrap:nowrap}.ant-flex-wrap-wrap-reverse{flex-wrap:wrap-reverse}