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

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}