@wizishop/angular-components 15.1.31 → 15.1.34
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/angular-components.scss +347 -110
- package/esm2020/lib/components/block/block-title-legacy/block-title-legacy.component.mjs +4 -3
- package/esm2020/lib/components/block/separator/block-separator.component.mjs +4 -3
- package/esm2020/lib/components/column/column.component.mjs +11 -0
- package/esm2020/lib/components/row/row.component.mjs +98 -0
- package/esm2020/lib/components/shared-components.module.mjs +20 -12
- package/esm2020/public-api.mjs +3 -1
- package/fesm2015/wizishop-angular-components.mjs +127 -16
- package/fesm2015/wizishop-angular-components.mjs.map +1 -1
- package/fesm2020/wizishop-angular-components.mjs +127 -16
- package/fesm2020/wizishop-angular-components.mjs.map +1 -1
- package/lib/components/block/block-title-legacy/block-title-legacy.component.d.ts +1 -1
- package/lib/components/block/separator/block-separator.component.d.ts +1 -1
- package/lib/components/column/column.component.d.ts +5 -0
- package/lib/components/row/row.component.d.ts +26 -0
- package/lib/components/shared-components.module.d.ts +45 -43
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
- package/wizishop-angular-components-15.1.34.tgz +0 -0
- package/wizishop-angular-components-15.1.31.tgz +0 -0
package/angular-components.scss
CHANGED
|
@@ -4636,83 +4636,6 @@ wac-calendar {
|
|
|
4636
4636
|
background-position: 1080px 0
|
|
4637
4637
|
}
|
|
4638
4638
|
}
|
|
4639
|
-
.wac-multiple-search-plus {
|
|
4640
|
-
|
|
4641
|
-
&.disabled {
|
|
4642
|
-
pointer-events: none;
|
|
4643
|
-
position: relative;
|
|
4644
|
-
&:after {
|
|
4645
|
-
content: '';
|
|
4646
|
-
display: block;
|
|
4647
|
-
position: absolute;
|
|
4648
|
-
top: 0;
|
|
4649
|
-
left: 0;
|
|
4650
|
-
width: 100%;
|
|
4651
|
-
height: 52px;
|
|
4652
|
-
opacity: .45;
|
|
4653
|
-
background-color: $wac-background-color-disabled;
|
|
4654
|
-
z-index: 2;
|
|
4655
|
-
}
|
|
4656
|
-
}
|
|
4657
|
-
|
|
4658
|
-
&__wrapper {
|
|
4659
|
-
margin: rem(14) 0;
|
|
4660
|
-
width: fit-content;
|
|
4661
|
-
|
|
4662
|
-
&__block {
|
|
4663
|
-
|
|
4664
|
-
display: flex;
|
|
4665
|
-
align-items: center;
|
|
4666
|
-
justify-content: space-between;
|
|
4667
|
-
align-content: center;
|
|
4668
|
-
color: $wac-white;
|
|
4669
|
-
font-size: rem(14);
|
|
4670
|
-
line-height: rem(16);
|
|
4671
|
-
border-radius: rem(3);
|
|
4672
|
-
padding: rem(8) rem(15);
|
|
4673
|
-
font-weight: 500;
|
|
4674
|
-
transition: 0.3s ease;
|
|
4675
|
-
margin: rem(10) 0;
|
|
4676
|
-
|
|
4677
|
-
.wac-text {
|
|
4678
|
-
margin: 0;
|
|
4679
|
-
}
|
|
4680
|
-
|
|
4681
|
-
:nth-child(n){
|
|
4682
|
-
padding: 0 3px;
|
|
4683
|
-
}
|
|
4684
|
-
|
|
4685
|
-
i {
|
|
4686
|
-
color: $wac-white;
|
|
4687
|
-
font-weight: 400;
|
|
4688
|
-
margin: 0 0 0 rem(15);
|
|
4689
|
-
font-size: rem(13);
|
|
4690
|
-
cursor: pointer;
|
|
4691
|
-
}
|
|
4692
|
-
|
|
4693
|
-
&.default {
|
|
4694
|
-
background-color: $wac-tag-default;
|
|
4695
|
-
border: 1px solid $wac-border-light;
|
|
4696
|
-
color: $wac-second-color;
|
|
4697
|
-
font-weight: 400;
|
|
4698
|
-
i {
|
|
4699
|
-
color: $wac-border-form;
|
|
4700
|
-
}
|
|
4701
|
-
&.hover:hover,
|
|
4702
|
-
&.hover:focus {
|
|
4703
|
-
background-color: darken($wac-tag-default, 15%);
|
|
4704
|
-
color: $wac-main-text;
|
|
4705
|
-
i {
|
|
4706
|
-
color: $wac-main-text;
|
|
4707
|
-
}
|
|
4708
|
-
}
|
|
4709
|
-
}
|
|
4710
|
-
|
|
4711
|
-
}
|
|
4712
|
-
}
|
|
4713
|
-
|
|
4714
|
-
}
|
|
4715
|
-
|
|
4716
4639
|
.wac-multiple-search {
|
|
4717
4640
|
width: 100%;
|
|
4718
4641
|
min-height: 50px;
|
|
@@ -4801,7 +4724,6 @@ wac-calendar {
|
|
|
4801
4724
|
padding: 10px;
|
|
4802
4725
|
min-width: 340px;
|
|
4803
4726
|
&__item {
|
|
4804
|
-
display: inline-flex;
|
|
4805
4727
|
width: 100%;
|
|
4806
4728
|
font-size: rem(14);
|
|
4807
4729
|
line-height: rem(30);
|
|
@@ -4809,12 +4731,6 @@ wac-calendar {
|
|
|
4809
4731
|
transition: 0.3s ease;
|
|
4810
4732
|
position: relative;
|
|
4811
4733
|
padding: 0 10px;
|
|
4812
|
-
.wac-text {
|
|
4813
|
-
margin: 0;
|
|
4814
|
-
}
|
|
4815
|
-
:nth-child(n) {
|
|
4816
|
-
padding: 2px;
|
|
4817
|
-
}
|
|
4818
4734
|
&:nth-child(2n) {
|
|
4819
4735
|
background-color: $wac-gray-background;
|
|
4820
4736
|
}
|
|
@@ -4967,10 +4883,83 @@ wac-calendar {
|
|
|
4967
4883
|
border-radius: 3px;
|
|
4968
4884
|
}
|
|
4969
4885
|
}
|
|
4886
|
+
.wac-multiple-search-plus {
|
|
4887
|
+
|
|
4888
|
+
&.disabled {
|
|
4889
|
+
pointer-events: none;
|
|
4890
|
+
position: relative;
|
|
4891
|
+
&:after {
|
|
4892
|
+
content: '';
|
|
4893
|
+
display: block;
|
|
4894
|
+
position: absolute;
|
|
4895
|
+
top: 0;
|
|
4896
|
+
left: 0;
|
|
4897
|
+
width: 100%;
|
|
4898
|
+
height: 52px;
|
|
4899
|
+
opacity: .45;
|
|
4900
|
+
background-color: $wac-background-color-disabled;
|
|
4901
|
+
z-index: 2;
|
|
4902
|
+
}
|
|
4903
|
+
}
|
|
4904
|
+
|
|
4905
|
+
&__wrapper {
|
|
4906
|
+
margin: rem(14) 0;
|
|
4907
|
+
width: fit-content;
|
|
4908
|
+
|
|
4909
|
+
&__block {
|
|
4910
|
+
|
|
4911
|
+
display: flex;
|
|
4912
|
+
align-items: center;
|
|
4913
|
+
justify-content: space-between;
|
|
4914
|
+
align-content: center;
|
|
4915
|
+
color: $wac-white;
|
|
4916
|
+
font-size: rem(14);
|
|
4917
|
+
line-height: rem(16);
|
|
4918
|
+
border-radius: rem(3);
|
|
4919
|
+
padding: rem(8) rem(15);
|
|
4920
|
+
font-weight: 500;
|
|
4921
|
+
transition: 0.3s ease;
|
|
4922
|
+
margin: rem(10) 0;
|
|
4923
|
+
|
|
4924
|
+
.wac-text {
|
|
4925
|
+
margin: 0;
|
|
4926
|
+
}
|
|
4927
|
+
|
|
4928
|
+
:nth-child(n){
|
|
4929
|
+
padding: 0 3px;
|
|
4930
|
+
}
|
|
4931
|
+
|
|
4932
|
+
i {
|
|
4933
|
+
color: $wac-white;
|
|
4934
|
+
font-weight: 400;
|
|
4935
|
+
margin: 0 0 0 rem(15);
|
|
4936
|
+
font-size: rem(13);
|
|
4937
|
+
cursor: pointer;
|
|
4938
|
+
}
|
|
4939
|
+
|
|
4940
|
+
&.default {
|
|
4941
|
+
background-color: $wac-tag-default;
|
|
4942
|
+
border: 1px solid $wac-border-light;
|
|
4943
|
+
color: $wac-second-color;
|
|
4944
|
+
font-weight: 400;
|
|
4945
|
+
i {
|
|
4946
|
+
color: $wac-border-form;
|
|
4947
|
+
}
|
|
4948
|
+
&.hover:hover,
|
|
4949
|
+
&.hover:focus {
|
|
4950
|
+
background-color: darken($wac-tag-default, 15%);
|
|
4951
|
+
color: $wac-main-text;
|
|
4952
|
+
i {
|
|
4953
|
+
color: $wac-main-text;
|
|
4954
|
+
}
|
|
4955
|
+
}
|
|
4956
|
+
}
|
|
4957
|
+
|
|
4958
|
+
}
|
|
4959
|
+
}
|
|
4970
4960
|
|
|
4971
|
-
.wac-table__body__loader + div {
|
|
4972
|
-
display: none;
|
|
4973
4961
|
}
|
|
4962
|
+
|
|
4974
4963
|
.wac-multiple-search {
|
|
4975
4964
|
width: 100%;
|
|
4976
4965
|
min-height: 50px;
|
|
@@ -5059,6 +5048,7 @@ wac-calendar {
|
|
|
5059
5048
|
padding: 10px;
|
|
5060
5049
|
min-width: 340px;
|
|
5061
5050
|
&__item {
|
|
5051
|
+
display: inline-flex;
|
|
5062
5052
|
width: 100%;
|
|
5063
5053
|
font-size: rem(14);
|
|
5064
5054
|
line-height: rem(30);
|
|
@@ -5066,6 +5056,12 @@ wac-calendar {
|
|
|
5066
5056
|
transition: 0.3s ease;
|
|
5067
5057
|
position: relative;
|
|
5068
5058
|
padding: 0 10px;
|
|
5059
|
+
.wac-text {
|
|
5060
|
+
margin: 0;
|
|
5061
|
+
}
|
|
5062
|
+
:nth-child(n) {
|
|
5063
|
+
padding: 2px;
|
|
5064
|
+
}
|
|
5069
5065
|
&:nth-child(2n) {
|
|
5070
5066
|
background-color: $wac-gray-background;
|
|
5071
5067
|
}
|
|
@@ -5218,6 +5214,10 @@ wac-calendar {
|
|
|
5218
5214
|
border-radius: 3px;
|
|
5219
5215
|
}
|
|
5220
5216
|
}
|
|
5217
|
+
|
|
5218
|
+
.wac-table__body__loader + div {
|
|
5219
|
+
display: none;
|
|
5220
|
+
}
|
|
5221
5221
|
wac-optional-disable-container {
|
|
5222
5222
|
position: relative;
|
|
5223
5223
|
.wac-optional-disable-container {
|
|
@@ -5677,6 +5677,243 @@ wac-optional-disable-container {
|
|
|
5677
5677
|
}
|
|
5678
5678
|
}
|
|
5679
5679
|
}
|
|
5680
|
+
.wac-row {
|
|
5681
|
+
display: flex;
|
|
5682
|
+
justify-content: space-between;
|
|
5683
|
+
align-items: flex-start;
|
|
5684
|
+
flex-direction: column;
|
|
5685
|
+
margin: 0 0 30px;
|
|
5686
|
+
width: 100%;
|
|
5687
|
+
@include media('>=tablet') {
|
|
5688
|
+
flex-direction: row;
|
|
5689
|
+
}
|
|
5690
|
+
|
|
5691
|
+
/*
|
|
5692
|
+
* Wac block
|
|
5693
|
+
*/
|
|
5694
|
+
&.white-block {
|
|
5695
|
+
background-color: $wac-white;
|
|
5696
|
+
border-radius: 3px;
|
|
5697
|
+
padding: 30px;
|
|
5698
|
+
@include media('<tablet') {
|
|
5699
|
+
padding: 20px;
|
|
5700
|
+
}
|
|
5701
|
+
}
|
|
5702
|
+
|
|
5703
|
+
/*
|
|
5704
|
+
* Class for position
|
|
5705
|
+
*/
|
|
5706
|
+
&.top-left {
|
|
5707
|
+
justify-content: flex-start;
|
|
5708
|
+
align-items: flex-start;
|
|
5709
|
+
> * {
|
|
5710
|
+
width: auto!important;
|
|
5711
|
+
}
|
|
5712
|
+
}
|
|
5713
|
+
&.top-middle {
|
|
5714
|
+
justify-content: center;
|
|
5715
|
+
align-items: flex-start;
|
|
5716
|
+
> * {
|
|
5717
|
+
width: auto!important;
|
|
5718
|
+
}
|
|
5719
|
+
}
|
|
5720
|
+
&.top-right {
|
|
5721
|
+
justify-content: flex-end;
|
|
5722
|
+
align-items: flex-start;
|
|
5723
|
+
> * {
|
|
5724
|
+
width: auto!important;
|
|
5725
|
+
}
|
|
5726
|
+
}
|
|
5727
|
+
&.middle-left {
|
|
5728
|
+
justify-content: flex-start;
|
|
5729
|
+
align-items: center;
|
|
5730
|
+
> * {
|
|
5731
|
+
width: auto!important;
|
|
5732
|
+
}
|
|
5733
|
+
}
|
|
5734
|
+
&.middle-middle {
|
|
5735
|
+
justify-content: center;
|
|
5736
|
+
align-items: center;
|
|
5737
|
+
> * {
|
|
5738
|
+
width: auto!important;
|
|
5739
|
+
}
|
|
5740
|
+
}
|
|
5741
|
+
&.middle-right {
|
|
5742
|
+
justify-content: flex-end;
|
|
5743
|
+
align-items: center;
|
|
5744
|
+
> * {
|
|
5745
|
+
width: auto!important;
|
|
5746
|
+
}
|
|
5747
|
+
}
|
|
5748
|
+
&.bottom-left {
|
|
5749
|
+
justify-content: flex-start;
|
|
5750
|
+
align-items: flex-end;
|
|
5751
|
+
> * {
|
|
5752
|
+
width: auto!important;
|
|
5753
|
+
}
|
|
5754
|
+
}
|
|
5755
|
+
&.bottom-middle {
|
|
5756
|
+
justify-content: center;
|
|
5757
|
+
align-items: flex-end;
|
|
5758
|
+
> * {
|
|
5759
|
+
width: auto!important;
|
|
5760
|
+
}
|
|
5761
|
+
}
|
|
5762
|
+
&.bottom-right {
|
|
5763
|
+
justify-content: flex-end;
|
|
5764
|
+
align-items: flex-end;
|
|
5765
|
+
> * {
|
|
5766
|
+
width: auto!important;
|
|
5767
|
+
}
|
|
5768
|
+
}
|
|
5769
|
+
&.stretch-left {
|
|
5770
|
+
justify-content: flex-start;
|
|
5771
|
+
align-items: stretch;
|
|
5772
|
+
> * {
|
|
5773
|
+
width: auto!important;
|
|
5774
|
+
}
|
|
5775
|
+
}
|
|
5776
|
+
&.stretch-middle {
|
|
5777
|
+
justify-content: center;
|
|
5778
|
+
align-items: stretch;
|
|
5779
|
+
> * {
|
|
5780
|
+
width: auto!important;
|
|
5781
|
+
}
|
|
5782
|
+
}
|
|
5783
|
+
&.stretch-right {
|
|
5784
|
+
justify-content: flex-end;
|
|
5785
|
+
align-items: stretch;
|
|
5786
|
+
> * {
|
|
5787
|
+
width: auto!important;
|
|
5788
|
+
}
|
|
5789
|
+
}
|
|
5790
|
+
|
|
5791
|
+
&.childrens-width-auto {
|
|
5792
|
+
> * {
|
|
5793
|
+
width: auto!important;
|
|
5794
|
+
}
|
|
5795
|
+
}
|
|
5796
|
+
|
|
5797
|
+
/*
|
|
5798
|
+
* Class for visibility
|
|
5799
|
+
*/
|
|
5800
|
+
&.mobile-only {
|
|
5801
|
+
@include media('<tablet') {
|
|
5802
|
+
display: none!important;
|
|
5803
|
+
}
|
|
5804
|
+
}
|
|
5805
|
+
&.tablet-only {
|
|
5806
|
+
@include media('>=tablet','<desktop') {
|
|
5807
|
+
display: none!important;
|
|
5808
|
+
}
|
|
5809
|
+
}
|
|
5810
|
+
&.desktop-only {
|
|
5811
|
+
@include media('>=desktop') {
|
|
5812
|
+
display: none!important;
|
|
5813
|
+
}
|
|
5814
|
+
}
|
|
5815
|
+
&.under-desktop {
|
|
5816
|
+
@include media('<desktop') {
|
|
5817
|
+
display: none!important;
|
|
5818
|
+
}
|
|
5819
|
+
}
|
|
5820
|
+
&.above-mobile {
|
|
5821
|
+
@include media('>=tablet') {
|
|
5822
|
+
display: none!important;
|
|
5823
|
+
}
|
|
5824
|
+
}
|
|
5825
|
+
|
|
5826
|
+
/*
|
|
5827
|
+
* responsive auto
|
|
5828
|
+
*/
|
|
5829
|
+
|
|
5830
|
+
&.mobile {
|
|
5831
|
+
width: 100% !important;
|
|
5832
|
+
transform: none!important;
|
|
5833
|
+
flex-direction: column!important;
|
|
5834
|
+
> * {
|
|
5835
|
+
margin: 0 0 30px!important;
|
|
5836
|
+
@include media('<tablet') {
|
|
5837
|
+
margin: 0 0 30px!important;
|
|
5838
|
+
}
|
|
5839
|
+
&:last-child {
|
|
5840
|
+
margin: 0!important;
|
|
5841
|
+
@include media('<tablet') {
|
|
5842
|
+
margin: 0!important;
|
|
5843
|
+
}
|
|
5844
|
+
}
|
|
5845
|
+
}
|
|
5846
|
+
}
|
|
5847
|
+
|
|
5848
|
+
@include media('>=tablet') {
|
|
5849
|
+
width: calc(100% + 30px);
|
|
5850
|
+
transform: translateX(-15px);
|
|
5851
|
+
&.multiple-child, &.medium.nb-child-3, &.medium.nb-child-4 {
|
|
5852
|
+
width: calc(100% + 20px);
|
|
5853
|
+
transform: translateX(-10px);
|
|
5854
|
+
> * {
|
|
5855
|
+
margin: 0 10px;
|
|
5856
|
+
}
|
|
5857
|
+
}
|
|
5858
|
+
&.medium {
|
|
5859
|
+
&.five-or-more-child {
|
|
5860
|
+
width: calc(100% + 15px);
|
|
5861
|
+
transform: translateX(-7.5px);
|
|
5862
|
+
> * {
|
|
5863
|
+
margin: 0 7.5px;
|
|
5864
|
+
}
|
|
5865
|
+
}
|
|
5866
|
+
}
|
|
5867
|
+
&.low {
|
|
5868
|
+
&.nb-child-3 {
|
|
5869
|
+
width: calc(100% + 15px);
|
|
5870
|
+
transform: translateX(-7.5px);
|
|
5871
|
+
> * {
|
|
5872
|
+
margin: 0 7.5px;
|
|
5873
|
+
}
|
|
5874
|
+
}
|
|
5875
|
+
&.multiple-child {
|
|
5876
|
+
width: calc(100% + 10px);
|
|
5877
|
+
transform: translateX(-5px);
|
|
5878
|
+
> * {
|
|
5879
|
+
margin: 0 5px;
|
|
5880
|
+
}
|
|
5881
|
+
}
|
|
5882
|
+
}
|
|
5883
|
+
&.alone {
|
|
5884
|
+
width: 100%;
|
|
5885
|
+
transform: none;
|
|
5886
|
+
> * {
|
|
5887
|
+
margin: 0;
|
|
5888
|
+
}
|
|
5889
|
+
}
|
|
5890
|
+
}
|
|
5891
|
+
> * {
|
|
5892
|
+
width: 100%;
|
|
5893
|
+
&:not(:last-child) {
|
|
5894
|
+
@include media('<tablet') {
|
|
5895
|
+
margin: 0 0 15px!important;
|
|
5896
|
+
}
|
|
5897
|
+
}
|
|
5898
|
+
&:last-child {
|
|
5899
|
+
@include media('<tablet') {
|
|
5900
|
+
margin: 0!important;
|
|
5901
|
+
}
|
|
5902
|
+
}
|
|
5903
|
+
&.mobile {
|
|
5904
|
+
@include media('>1px') {
|
|
5905
|
+
margin: 0 0 15px;
|
|
5906
|
+
}
|
|
5907
|
+
}
|
|
5908
|
+
@include media('>=tablet') {
|
|
5909
|
+
margin: 0 15px;
|
|
5910
|
+
}
|
|
5911
|
+
}
|
|
5912
|
+
|
|
5913
|
+
.wac-row {
|
|
5914
|
+
margin: 0!important;
|
|
5915
|
+
}
|
|
5916
|
+
}
|
|
5680
5917
|
.wac-search {
|
|
5681
5918
|
width: 100%;
|
|
5682
5919
|
min-height: 50px;
|
|
@@ -6988,30 +7225,6 @@ wac-optional-disable-container {
|
|
|
6988
7225
|
margin: inherit;
|
|
6989
7226
|
}
|
|
6990
7227
|
}
|
|
6991
|
-
.wac-token-check {
|
|
6992
|
-
display: inline-block;
|
|
6993
|
-
position: relative;
|
|
6994
|
-
padding: 11px 20px;
|
|
6995
|
-
border-style: solid;
|
|
6996
|
-
border-width: 1px;
|
|
6997
|
-
border-radius: 3px;
|
|
6998
|
-
box-sizing: border-box;
|
|
6999
|
-
border-color: $wac-border-light;
|
|
7000
|
-
font-size: 14px;
|
|
7001
|
-
line-height: 16px;
|
|
7002
|
-
font-weight: 400;
|
|
7003
|
-
> span:nth-child(2){
|
|
7004
|
-
font-weight: 600;
|
|
7005
|
-
}
|
|
7006
|
-
> strong {
|
|
7007
|
-
font-weight: 400;
|
|
7008
|
-
}
|
|
7009
|
-
> span {
|
|
7010
|
-
&.warning {
|
|
7011
|
-
color: $wac-primary-button;
|
|
7012
|
-
}
|
|
7013
|
-
}
|
|
7014
|
-
}
|
|
7015
7228
|
.wac-text-area {
|
|
7016
7229
|
|
|
7017
7230
|
::-webkit-input-placeholder {
|
|
@@ -7163,6 +7376,30 @@ wac-optional-disable-container {
|
|
|
7163
7376
|
}
|
|
7164
7377
|
}
|
|
7165
7378
|
}
|
|
7379
|
+
.wac-token-check {
|
|
7380
|
+
display: inline-block;
|
|
7381
|
+
position: relative;
|
|
7382
|
+
padding: 11px 20px;
|
|
7383
|
+
border-style: solid;
|
|
7384
|
+
border-width: 1px;
|
|
7385
|
+
border-radius: 3px;
|
|
7386
|
+
box-sizing: border-box;
|
|
7387
|
+
border-color: $wac-border-light;
|
|
7388
|
+
font-size: 14px;
|
|
7389
|
+
line-height: 16px;
|
|
7390
|
+
font-weight: 400;
|
|
7391
|
+
> span:nth-child(2){
|
|
7392
|
+
font-weight: 600;
|
|
7393
|
+
}
|
|
7394
|
+
> strong {
|
|
7395
|
+
font-weight: 400;
|
|
7396
|
+
}
|
|
7397
|
+
> span {
|
|
7398
|
+
&.warning {
|
|
7399
|
+
color: $wac-primary-button;
|
|
7400
|
+
}
|
|
7401
|
+
}
|
|
7402
|
+
}
|
|
7166
7403
|
span.wac-tooltip {
|
|
7167
7404
|
position: relative;
|
|
7168
7405
|
padding: 0.5rem;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { CommonModule } from '@angular/common';
|
|
1
2
|
import { Component, Input, ViewEncapsulation } from '@angular/core';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
4
|
import * as i1 from "@angular/common";
|
|
@@ -8,13 +9,13 @@ export class BlockTitleLegacyComponent {
|
|
|
8
9
|
}
|
|
9
10
|
}
|
|
10
11
|
BlockTitleLegacyComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: BlockTitleLegacyComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
11
|
-
BlockTitleLegacyComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.1", type: BlockTitleLegacyComponent, selector: "wac-block-title-legacy", inputs: { simple: "simple", icon: "icon" }, ngImport: i0, template: "<h2 class=\"wac-block__title\" [ngClass]=\"{ 'is-simple': simple }\">\n <ng-content></ng-content> <i *ngIf=\"icon\" [ngClass]=\"icon\"></i>\n</h2>", dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0.ViewEncapsulation.None });
|
|
12
|
+
BlockTitleLegacyComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.1", type: BlockTitleLegacyComponent, isStandalone: true, selector: "wac-block-title-legacy", inputs: { simple: "simple", icon: "icon" }, ngImport: i0, template: "<h2 class=\"wac-block__title\" [ngClass]=\"{ 'is-simple': simple }\">\n <ng-content></ng-content> <i *ngIf=\"icon\" [ngClass]=\"icon\"></i>\n</h2>", dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0.ViewEncapsulation.None });
|
|
12
13
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: BlockTitleLegacyComponent, decorators: [{
|
|
13
14
|
type: Component,
|
|
14
|
-
args: [{ selector: 'wac-block-title-legacy', encapsulation: ViewEncapsulation.None, template: "<h2 class=\"wac-block__title\" [ngClass]=\"{ 'is-simple': simple }\">\n <ng-content></ng-content> <i *ngIf=\"icon\" [ngClass]=\"icon\"></i>\n</h2>" }]
|
|
15
|
+
args: [{ selector: 'wac-block-title-legacy', encapsulation: ViewEncapsulation.None, standalone: true, imports: [CommonModule], template: "<h2 class=\"wac-block__title\" [ngClass]=\"{ 'is-simple': simple }\">\n <ng-content></ng-content> <i *ngIf=\"icon\" [ngClass]=\"icon\"></i>\n</h2>" }]
|
|
15
16
|
}], ctorParameters: function () { return []; }, propDecorators: { simple: [{
|
|
16
17
|
type: Input
|
|
17
18
|
}], icon: [{
|
|
18
19
|
type: Input
|
|
19
20
|
}] } });
|
|
20
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
21
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYmxvY2stdGl0bGUtbGVnYWN5LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2FuZ3VsYXItY29tcG9uZW50cy9zcmMvbGliL2NvbXBvbmVudHMvYmxvY2svYmxvY2stdGl0bGUtbGVnYWN5L2Jsb2NrLXRpdGxlLWxlZ2FjeS5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9hbmd1bGFyLWNvbXBvbmVudHMvc3JjL2xpYi9jb21wb25lbnRzL2Jsb2NrL2Jsb2NrLXRpdGxlLWxlZ2FjeS9ibG9jay10aXRsZS1sZWdhY3kuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFBRSxTQUFTLEVBQUUsS0FBSyxFQUFFLGlCQUFpQixFQUFFLE1BQU0sZUFBZSxDQUFDOzs7QUFTcEUsTUFBTSxPQUFPLHlCQUF5QjtJQVFsQztRQUxBLFdBQU0sR0FBRyxLQUFLLENBQUM7UUFHZixTQUFJLEdBQUcsRUFBRSxDQUFDO0lBRU0sQ0FBQzs7c0hBUlIseUJBQXlCOzBHQUF6Qix5QkFBeUIsOEhDVnRDLHVKQUVLLDJDRE1TLFlBQVk7MkZBRWIseUJBQXlCO2tCQVByQyxTQUFTOytCQUNJLHdCQUF3QixpQkFFbkIsaUJBQWlCLENBQUMsSUFBSSxjQUN6QixJQUFJLFdBQ1AsQ0FBQyxZQUFZLENBQUM7MEVBS3ZCLE1BQU07c0JBREwsS0FBSztnQkFJTixJQUFJO3NCQURILEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgQ29tcG9uZW50LCBJbnB1dCwgVmlld0VuY2Fwc3VsYXRpb24gfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuQENvbXBvbmVudCh7XG4gICAgc2VsZWN0b3I6ICd3YWMtYmxvY2stdGl0bGUtbGVnYWN5JyxcbiAgICB0ZW1wbGF0ZVVybDogJ2Jsb2NrLXRpdGxlLWxlZ2FjeS5jb21wb25lbnQuaHRtbCcsXG4gICAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZSxcbiAgICBzdGFuZGFsb25lOiB0cnVlLFxuICAgIGltcG9ydHM6IFtDb21tb25Nb2R1bGVdLFxufSlcbmV4cG9ydCBjbGFzcyBCbG9ja1RpdGxlTGVnYWN5Q29tcG9uZW50IHtcblxuICAgIEBJbnB1dCgpXG4gICAgc2ltcGxlID0gZmFsc2U7XG5cbiAgICBASW5wdXQoKVxuICAgIGljb24gPSAnJztcblxuICAgIGNvbnN0cnVjdG9yKCkgeyB9XG59IiwiPGgyIGNsYXNzPVwid2FjLWJsb2NrX190aXRsZVwiIFtuZ0NsYXNzXT1cInsgJ2lzLXNpbXBsZSc6IHNpbXBsZSB9XCI+XG4gICAgPG5nLWNvbnRlbnQ+PC9uZy1jb250ZW50PiA8aSAqbmdJZj1cImljb25cIiBbbmdDbGFzc109XCJpY29uXCI+PC9pPlxuPC9oMj4iXX0=
|
|
@@ -4,13 +4,14 @@ export class BlockSeparatorComponent {
|
|
|
4
4
|
constructor() { }
|
|
5
5
|
}
|
|
6
6
|
BlockSeparatorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: BlockSeparatorComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
7
|
-
BlockSeparatorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.1", type: BlockSeparatorComponent, selector: "wac-block-separator", ngImport: i0, template: ``, isInline: true, encapsulation: i0.ViewEncapsulation.None });
|
|
7
|
+
BlockSeparatorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.1", type: BlockSeparatorComponent, isStandalone: true, selector: "wac-block-separator", ngImport: i0, template: ``, isInline: true, encapsulation: i0.ViewEncapsulation.None });
|
|
8
8
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: BlockSeparatorComponent, decorators: [{
|
|
9
9
|
type: Component,
|
|
10
10
|
args: [{
|
|
11
11
|
selector: 'wac-block-separator',
|
|
12
12
|
template: ``,
|
|
13
|
-
encapsulation: ViewEncapsulation.None
|
|
13
|
+
encapsulation: ViewEncapsulation.None,
|
|
14
|
+
standalone: true
|
|
14
15
|
}]
|
|
15
16
|
}], ctorParameters: function () { return []; } });
|
|
16
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
17
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYmxvY2stc2VwYXJhdG9yLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2FuZ3VsYXItY29tcG9uZW50cy9zcmMvbGliL2NvbXBvbmVudHMvYmxvY2svc2VwYXJhdG9yL2Jsb2NrLXNlcGFyYXRvci5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxpQkFBaUIsRUFBRSxNQUFNLGVBQWUsQ0FBQzs7QUFTN0QsTUFBTSxPQUFPLHVCQUF1QjtJQUVoQyxnQkFBZ0IsQ0FBQzs7b0hBRlIsdUJBQXVCO3dHQUF2Qix1QkFBdUIsK0VBTHRCLEVBQUU7MkZBS0gsdUJBQXVCO2tCQVBuQyxTQUFTO21CQUFDO29CQUNQLFFBQVEsRUFBRSxxQkFBcUI7b0JBQy9CLFFBQVEsRUFBRSxFQUFFO29CQUNaLGFBQWEsRUFBRSxpQkFBaUIsQ0FBQyxJQUFJO29CQUNyQyxVQUFVLEVBQUUsSUFBSTtpQkFDbkIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIFZpZXdFbmNhcHN1bGF0aW9uIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbkBDb21wb25lbnQoe1xuICAgIHNlbGVjdG9yOiAnd2FjLWJsb2NrLXNlcGFyYXRvcicsXG4gICAgdGVtcGxhdGU6IGBgLFxuICAgIGVuY2Fwc3VsYXRpb246IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmUsXG4gICAgc3RhbmRhbG9uZTogdHJ1ZVxufSlcblxuZXhwb3J0IGNsYXNzIEJsb2NrU2VwYXJhdG9yQ29tcG9uZW50IHtcblxuICAgIGNvbnN0cnVjdG9yKCkgeyB9XG5cbn0iXX0=
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Component } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export class ColumnComponent {
|
|
4
|
+
}
|
|
5
|
+
ColumnComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: ColumnComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
6
|
+
ColumnComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.1", type: ColumnComponent, selector: "wac-column", ngImport: i0, template: "<p>column works!</p>\n" });
|
|
7
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: ColumnComponent, decorators: [{
|
|
8
|
+
type: Component,
|
|
9
|
+
args: [{ selector: 'wac-column', template: "<p>column works!</p>\n" }]
|
|
10
|
+
}] });
|
|
11
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29sdW1uLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2FuZ3VsYXItY29tcG9uZW50cy9zcmMvbGliL2NvbXBvbmVudHMvY29sdW1uL2NvbHVtbi5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9hbmd1bGFyLWNvbXBvbmVudHMvc3JjL2xpYi9jb21wb25lbnRzL2NvbHVtbi9jb2x1bW4uY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLGVBQWUsQ0FBQzs7QUFNMUMsTUFBTSxPQUFPLGVBQWU7OzRHQUFmLGVBQWU7Z0dBQWYsZUFBZSxrRENONUIsd0JBQ0E7MkZES2EsZUFBZTtrQkFKM0IsU0FBUzsrQkFDRSxZQUFZIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ3dhYy1jb2x1bW4nLFxuICB0ZW1wbGF0ZVVybDogJy4vY29sdW1uLmNvbXBvbmVudC5odG1sJyxcbn0pXG5leHBvcnQgY2xhc3MgQ29sdW1uQ29tcG9uZW50IHtcblxufVxuIiwiPHA+Y29sdW1uIHdvcmtzITwvcD5cbiJdfQ==
|