sempli-website-lib 7.3.0-beta.0 → 7.3.0-beta.1

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.
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-folder-plus"><path d="M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z"></path><line x1="12" y1="11" x2="12" y2="17"></line><line x1="9" y1="14" x2="15" y2="14"></line></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-paperclip"><path d="M21.44 11.05l-9.19 9.19a6 6 0 0 1-8.49-8.49l9.19-9.19a4 4 0 0 1 5.66 5.66l-9.2 9.19a2 2 0 0 1-2.83-2.83l8.49-8.48"></path></svg>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sempli-website-lib",
3
- "version": "7.3.0-beta.0",
3
+ "version": "7.3.0-beta.1",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^18.0.3",
6
6
  "@angular/core": "^18.0.3"
@@ -12743,6 +12743,56 @@ button.cursor-pointer {
12743
12743
  }
12744
12744
  }
12745
12745
 
12746
+
12747
+ .chip-options-group {
12748
+ display: flex;
12749
+ justify-content: space-between;
12750
+ margin: 20px 0;
12751
+
12752
+ @include responsive-max($breakpoint-xmedium) {
12753
+ > div {
12754
+ display: flex;
12755
+ justify-content: center;
12756
+ align-items: center;
12757
+ }
12758
+ }
12759
+
12760
+ label {
12761
+ display: flex;
12762
+ align-items: center;
12763
+ max-width: 65%;
12764
+ }
12765
+
12766
+ .button-chips {
12767
+ transition-property: all;
12768
+ transition-timing-function: cubic-bezier(.4,0,.2,1);
12769
+ transition-duration: .15s;
12770
+ padding: .5rem 1.5rem;
12771
+ border-radius: 9999px;
12772
+ border: none;
12773
+ cursor: pointer;
12774
+
12775
+ background: transparent;
12776
+ color: #AFB3C0;
12777
+ -webkit-box-shadow: 0 0 0 2px #AFB3C0 inset;
12778
+ box-shadow: 0 0 0 2px #AFB3C0 inset;
12779
+
12780
+ &:hover {
12781
+ background-color: rgba(128, 128, 128, 0.24);
12782
+ }
12783
+
12784
+ &.selected {
12785
+ background: transparent;
12786
+ color: #4D4CFC;
12787
+ box-shadow: 0 0 0 2px #4D4CFC inset;
12788
+ }
12789
+
12790
+ @include responsive-max($breakpoint-small) {
12791
+ padding: 0.4rem 1rem;
12792
+ }
12793
+ }
12794
+ }
12795
+
12746
12796
  /*#############################################################################
12747
12797
  # FORMS AND INPUTS
12748
12798
  #############################################################################*/
@@ -13884,7 +13934,7 @@ button.cursor-pointer {
13884
13934
  }
13885
13935
 
13886
13936
  &.extra-large {
13887
- @include responsive($breakpoint-medium) {
13937
+ @include responsive($breakpoint-xmedium) {
13888
13938
  width: 860px;
13889
13939
  }
13890
13940
  }
@@ -12523,6 +12523,56 @@ button.cursor-pointer {
12523
12523
  }
12524
12524
  }
12525
12525
 
12526
+
12527
+ .chip-options-group {
12528
+ display: flex;
12529
+ justify-content: space-between;
12530
+ margin: 20px 0;
12531
+
12532
+ @include responsive-max($breakpoint-xmedium) {
12533
+ > div {
12534
+ display: flex;
12535
+ justify-content: center;
12536
+ align-items: center;
12537
+ }
12538
+ }
12539
+
12540
+ label {
12541
+ display: flex;
12542
+ align-items: center;
12543
+ max-width: 65%;
12544
+ }
12545
+
12546
+ .button-chips {
12547
+ transition-property: all;
12548
+ transition-timing-function: cubic-bezier(.4,0,.2,1);
12549
+ transition-duration: .15s;
12550
+ padding: .5rem 1.5rem;
12551
+ border-radius: 9999px;
12552
+ border: none;
12553
+ cursor: pointer;
12554
+
12555
+ background: transparent;
12556
+ color: #AFB3C0;
12557
+ -webkit-box-shadow: 0 0 0 2px #AFB3C0 inset;
12558
+ box-shadow: 0 0 0 2px #AFB3C0 inset;
12559
+
12560
+ &:hover {
12561
+ background-color: rgba(128, 128, 128, 0.24);
12562
+ }
12563
+
12564
+ &.selected {
12565
+ background: transparent;
12566
+ color: #4D4CFC;
12567
+ box-shadow: 0 0 0 2px #4D4CFC inset;
12568
+ }
12569
+
12570
+ @include responsive-max($breakpoint-small) {
12571
+ padding: 0.4rem 1rem;
12572
+ }
12573
+ }
12574
+ }
12575
+
12526
12576
  /*#############################################################################
12527
12577
  # FORMS AND INPUTS
12528
12578
  #############################################################################*/
@@ -13664,7 +13714,7 @@ button.cursor-pointer {
13664
13714
  }
13665
13715
 
13666
13716
  &.extra-large {
13667
- @include responsive($breakpoint-medium) {
13717
+ @include responsive($breakpoint-xmedium) {
13668
13718
  width: 860px;
13669
13719
  }
13670
13720
  }
@@ -451,3 +451,53 @@ button.cursor-pointer {
451
451
  }
452
452
  }
453
453
  }
454
+
455
+
456
+ .chip-options-group {
457
+ display: flex;
458
+ justify-content: space-between;
459
+ margin: 20px 0;
460
+
461
+ @include responsive-max($breakpoint-xmedium) {
462
+ > div {
463
+ display: flex;
464
+ justify-content: center;
465
+ align-items: center;
466
+ }
467
+ }
468
+
469
+ label {
470
+ display: flex;
471
+ align-items: center;
472
+ max-width: 65%;
473
+ }
474
+
475
+ .button-chips {
476
+ transition-property: all;
477
+ transition-timing-function: cubic-bezier(.4,0,.2,1);
478
+ transition-duration: .15s;
479
+ padding: .5rem 1.5rem;
480
+ border-radius: 9999px;
481
+ border: none;
482
+ cursor: pointer;
483
+
484
+ background: transparent;
485
+ color: #AFB3C0;
486
+ -webkit-box-shadow: 0 0 0 2px #AFB3C0 inset;
487
+ box-shadow: 0 0 0 2px #AFB3C0 inset;
488
+
489
+ &:hover {
490
+ background-color: rgba(128, 128, 128, 0.24);
491
+ }
492
+
493
+ &.selected {
494
+ background: transparent;
495
+ color: #4D4CFC;
496
+ box-shadow: 0 0 0 2px #4D4CFC inset;
497
+ }
498
+
499
+ @include responsive-max($breakpoint-small) {
500
+ padding: 0.4rem 1rem;
501
+ }
502
+ }
503
+ }
@@ -31,7 +31,7 @@
31
31
  }
32
32
 
33
33
  &.extra-large {
34
- @include responsive($breakpoint-medium) {
34
+ @include responsive($breakpoint-xmedium) {
35
35
  width: 860px;
36
36
  }
37
37
  }