@ieeesa-npm/shared-styles 0.2.7 → 0.2.8

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.
@@ -154,5 +154,14 @@
154
154
  <path d="M12 2C6.48 2 2 6.48 2 12C2 17.52 6.48 22 12 22C17.52 22 22 17.52 22 12C22 6.48 17.52 2 12 2ZM7.35 18.5C8.66 17.56 10.26 17 12 17C13.74 17 15.34 17.56 16.65 18.5C15.34 19.44 13.74 20 12 20C10.26 20 8.66 19.44 7.35 18.5ZM18.14 17.12C16.45 15.8 14.32 15 12 15C9.68 15 7.55 15.8 5.86 17.12C4.7 15.73 4 13.95 4 12C4 7.58 7.58 4 12 4C16.42 4 20 7.58 20 12C20 13.95 19.3 15.73 18.14 17.12Z" fill="#777A7E" />
155
155
  <path d="M12 6C10.07 6 8.5 7.57 8.5 9.5C8.5 11.43 10.07 13 12 13C13.93 13 15.5 11.43 15.5 9.5C15.5 7.57 13.93 6 12 6ZM12 11C11.17 11 10.5 10.33 10.5 9.5C10.5 8.67 11.17 8 12 8C12.83 8 13.5 8.67 13.5 9.5C13.5 10.33 12.83 11 12 11Z" fill="#777A7E" />
156
156
  </symbol>
157
+ <symbol id="icon-create-meeting" width="19" height="20" viewBox="0 0 19 20" fill="none" xmlns="http://www.w3.org/2000/svg">
158
+ <path id="Vector" d="M14 20V17H11V15H14V12H16V15H19V17H16V20H14ZM2 18C1.45 18 0.979167 17.8042 0.5875 17.4125C0.195833 17.0208 0 16.55 0 16V4C0 3.45 0.195833 2.97917 0.5875 2.5875C0.979167 2.19583 1.45 2 2 2H3V0H5V2H11V0H13V2H14C14.55 2 15.0208 2.19583 15.4125 2.5875C15.8042 2.97917 16 3.45 16 4V10.1C15.6667 10.05 15.3333 10.025 15 10.025C14.6667 10.025 14.3333 10.05 14 10.1V8H2V16H9C9 16.3333 9.025 16.6667 9.075 17C9.125 17.3333 9.21667 17.6667 9.35 18H2ZM2 6H14V4H2V6Z" fill="#00629B"/>
159
+ </symbol>
160
+ <symbol id="icon-list-view" width="14" height="16" viewBox="0 0 14 16" fill="none" xmlns="http://www.w3.org/2000/svg">
161
+ <path d="M6.25 3.25H10.75V4.75H6.25V3.25ZM6.25 6.25H10.75V7.75H6.25V6.25ZM6.25 9.25H10.75V10.75H6.25V9.25ZM3.25 3.25H4.75V4.75H3.25V3.25ZM3.25 6.25H4.75V7.75H3.25V6.25ZM3.25 9.25H4.75V10.75H3.25V9.25ZM13.075 0.25H0.925C0.55 0.25 0.25 0.55 0.25 0.925V13.075C0.25 13.375 0.55 13.75 0.925 13.75H13.075C13.375 13.75 13.75 13.375 13.75 13.075V0.925C13.75 0.55 13.375 0.25 13.075 0.25ZM12.25 12.25H1.75V1.75H12.25V12.25Z" fill="#1C1B1F"/>
162
+ </symbol>
163
+ <symbol id="icon-calender-view" width="14" height="16" viewBox="0 0 14 16" fill="none" xmlns="http://www.w3.org/2000/svg">
164
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M12.25 2H11.5V0.5H10V2H4V0.5H2.5V2H1.75C0.9175 2 0.25 2.675 0.25 3.5V14C0.25 14.825 0.9175 15.5 1.75 15.5H12.25C13.075 15.5 13.75 14.825 13.75 14V3.5C13.75 2.675 13.075 2 12.25 2ZM12.25 14H1.75V5.75H12.25V14ZM2.875 8.75C2.875 7.715 3.715 6.875 4.75 6.875C5.785 6.875 6.625 7.715 6.625 8.75C6.625 9.785 5.785 10.625 4.75 10.625C3.715 10.625 2.875 9.785 2.875 8.75Z" fill="#1C1B1F"/>
165
+ </symbol>
157
166
  </defs>
158
167
  </svg>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ieeesa-npm/shared-styles",
3
- "version": "0.2.7",
3
+ "version": "0.2.8",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^16.1.0",
6
6
  "@angular/core": "^16.1.0"
@@ -64,10 +64,18 @@
64
64
  }
65
65
  }
66
66
 
67
- @function translate($px){
67
+ @mixin set-tab-border-radius(
68
+ $border-top-left-radius,
69
+ $border-top-right-radius
70
+ ) {
71
+ border-top-left-radius: $border-top-left-radius;
72
+ border-top-right-radius: $border-top-right-radius;
73
+ }
74
+
75
+ @function translate($px) {
68
76
  @return translateY($px);
69
77
  }
70
78
 
71
- @function rotate-icon($deg){
72
- @return rotate($deg)
73
- }
79
+ @function rotate-icon($deg) {
80
+ @return rotate($deg);
81
+ }
@@ -95,6 +95,8 @@ $ieeesa-data-table-row-background-color: #f7f9ff;
95
95
  $ieeesa-data-table-head-color: #dce3e9;
96
96
  $ieeesa-button-bg-gray: #383838;
97
97
  $ieeesa-light-surface-variant: #daf1fe;
98
+ $ieeesa-border-blue: #b2b7be;
99
+ $ieeesa-background-light-blue: #eaf3f9;
98
100
  // Box-shadow options
99
101
  $ieeesa-box-shadow-1: 0px 1px 2px rgba(0, 0, 0, 0.3),
100
102
  0px 1px 3px 1px rgba(0, 0, 0, 0.15);
@@ -141,7 +143,9 @@ $ieeesa-opacity-point-38: 0.38;
141
143
  // IEEE SA Branding
142
144
  $ieeesa-primary-brand-10: #002c37;
143
145
  $ieeesa-primary-brand-30: #0188aa;
146
+ $ieeesa-dark-grey-20: #333436;
144
147
  $ieeesa-dark-grey-30: #4a4d50;
148
+ $ieeesa-dark-grey-20: #333436;
145
149
  $ieeesa-dark-grey-60: #878b8f;
146
150
  $ieeesa-dark-grey-99: #f4f8fe;
147
151
  $ieeesa-brand-grey-50: #777a7e;
@@ -169,3 +173,5 @@ $ieeesa-tile-background: linear-gradient(
169
173
  $ieeesa-neutral-60: #939094;
170
174
  $ieeesa-background-color-gray: #f2f2f2;
171
175
  $ieeesa-mobile-min-width: 767px;
176
+ $ieeesa-background-color-light-blue: #b0d6ec;
177
+ $ieeesa-max-screen-width: 768px;