hrm_ui_lib 2.5.0 → 2.5.2
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/assets/images/under-construction.svg +9 -0
- package/assets/styles/styles.css +68 -0
- package/assets/styles/styles.scss +1 -1
- package/components/SVGIcons/IconAirplaneTakeOff.d.ts +4 -0
- package/components/SVGIcons/IconAirplaneTakeOff.js +8 -0
- package/components/SVGIcons/IconAirplaneTakeOffFilled.d.ts +4 -0
- package/components/SVGIcons/IconAirplaneTakeOffFilled.js +8 -0
- package/components/SVGIcons/IconChartPerson.d.ts +4 -0
- package/components/SVGIcons/IconChartPerson.js +8 -0
- package/components/SVGIcons/IconChartPersonFilled.d.ts +4 -0
- package/components/SVGIcons/IconChartPersonFilled.js +8 -0
- package/components/SVGIcons/IconFastAcceleration.d.ts +4 -0
- package/components/SVGIcons/IconFastAcceleration.js +8 -0
- package/components/SVGIcons/IconFastAccelerationFilled.d.ts +4 -0
- package/components/SVGIcons/IconFastAccelerationFilled.js +8 -0
- package/components/SVGIcons/IconFeed.d.ts +4 -0
- package/components/SVGIcons/IconFeed.js +8 -0
- package/components/SVGIcons/IconFeedFilled.d.ts +4 -0
- package/components/SVGIcons/IconFeedFilled.js +8 -0
- package/components/SVGIcons/IconLibrary.d.ts +4 -0
- package/components/SVGIcons/IconLibrary.js +8 -0
- package/components/SVGIcons/IconLibraryFilled.d.ts +4 -0
- package/components/SVGIcons/IconLibraryFilled.js +8 -0
- package/components/SVGIcons/IconPeopleTeam.d.ts +4 -0
- package/components/SVGIcons/IconPeopleTeam.js +8 -0
- package/components/SVGIcons/IconPeopleTeamFilled.d.ts +4 -0
- package/components/SVGIcons/IconPeopleTeamFilled.js +8 -0
- package/components/SVGIcons/IconTrophy.d.ts +4 -0
- package/components/SVGIcons/IconTrophy.js +8 -0
- package/components/SVGIcons/IconTrophyFilled.d.ts +4 -0
- package/components/SVGIcons/IconTrophyFilled.js +8 -0
- package/components/SVGIcons/icon-names.js +14 -0
- package/components/SVGIcons/index.d.ts +14 -0
- package/components/SVGIcons/index.js +14 -0
- package/components/UnderConstruction/UnderConstruction.d.ts +3 -0
- package/components/UnderConstruction/UnderConstruction.js +12 -0
- package/components/UnderConstruction/index.d.ts +1 -0
- package/components/UnderConstruction/index.js +1 -0
- package/components/UnderConstruction/localization.d.ts +4 -0
- package/components/UnderConstruction/localization.js +14 -0
- package/components/UnderConstruction/types.d.ts +12 -0
- package/components/UnderConstruction/types.js +1 -0
- package/index.d.ts +1 -0
- package/index.js +1 -0
- package/package.json +1 -1
- /package/{Alert-CtY1YM0z.js → Alert-Dvmg7k4M.js} +0 -0
package/assets/styles/styles.css
CHANGED
|
@@ -2174,6 +2174,7 @@ body {
|
|
|
2174
2174
|
--green-200:#aeeacb;
|
|
2175
2175
|
--green-100:#d0f5e1;
|
|
2176
2176
|
--green-50:#e0faec;
|
|
2177
|
+
--green-20:#e9f8dc;
|
|
2177
2178
|
--blue-900:#2443b8;
|
|
2178
2179
|
--blue-800:#2e63d6;
|
|
2179
2180
|
--blue-700:#3475e8;
|
|
@@ -9372,4 +9373,71 @@ tr.selected .advanced-table__expanded-row td, tr.selected .advanced-table__expan
|
|
|
9372
9373
|
font-size: var(--font-size-12);
|
|
9373
9374
|
font-weight: var(--font-weight-400);
|
|
9374
9375
|
text-transform: capitalize;
|
|
9376
|
+
}
|
|
9377
|
+
|
|
9378
|
+
.under-construction {
|
|
9379
|
+
height: 100%;
|
|
9380
|
+
width: 100%;
|
|
9381
|
+
}
|
|
9382
|
+
|
|
9383
|
+
.under-construction__content {
|
|
9384
|
+
-webkit-box-align: center;
|
|
9385
|
+
-moz-box-align: center;
|
|
9386
|
+
-ms-flex-align: center;
|
|
9387
|
+
-webkit-box-pack: center;
|
|
9388
|
+
-moz-box-pack: center;
|
|
9389
|
+
-ms-flex-pack: center;
|
|
9390
|
+
-webkit-box-direction: normal;
|
|
9391
|
+
-webkit-box-orient: vertical;
|
|
9392
|
+
-moz-box-direction: normal;
|
|
9393
|
+
-moz-box-orient: vertical;
|
|
9394
|
+
-webkit-align-items: center;
|
|
9395
|
+
align-items: center;
|
|
9396
|
+
display: -webkit-box;
|
|
9397
|
+
display: -moz-box;
|
|
9398
|
+
display: -ms-flexbox;
|
|
9399
|
+
display: -webkit-flex;
|
|
9400
|
+
display: flex;
|
|
9401
|
+
-webkit-flex-direction: column;
|
|
9402
|
+
-ms-flex-direction: column;
|
|
9403
|
+
flex-direction: column;
|
|
9404
|
+
-webkit-justify-content: center;
|
|
9405
|
+
justify-content: center;
|
|
9406
|
+
margin: auto;
|
|
9407
|
+
max-width: 590px;
|
|
9408
|
+
text-align: center;
|
|
9409
|
+
}
|
|
9410
|
+
|
|
9411
|
+
.under-construction__icon {
|
|
9412
|
+
align-items: center;
|
|
9413
|
+
background-color: var(--green-20);
|
|
9414
|
+
border-radius: 50%;
|
|
9415
|
+
display: flex;
|
|
9416
|
+
gap: var(--ds-space-12);
|
|
9417
|
+
margin: auto;
|
|
9418
|
+
padding: var(--ds-space-24);
|
|
9419
|
+
}
|
|
9420
|
+
|
|
9421
|
+
.under-construction--large {
|
|
9422
|
+
padding: var(--ds-space-80) var(--ds-space-24);
|
|
9423
|
+
}
|
|
9424
|
+
|
|
9425
|
+
.under-construction--large .under-construction__icon {
|
|
9426
|
+
width: 168px;
|
|
9427
|
+
}
|
|
9428
|
+
|
|
9429
|
+
.under-construction--large .under-construction__content {
|
|
9430
|
+
gap: 8px;
|
|
9431
|
+
}
|
|
9432
|
+
|
|
9433
|
+
.under-construction--small {
|
|
9434
|
+
padding: var(--ds-space-40) var(--ds-space-16);
|
|
9435
|
+
}
|
|
9436
|
+
|
|
9437
|
+
.under-construction--small .under-construction__icon {
|
|
9438
|
+
width: 67px;
|
|
9439
|
+
}
|
|
9440
|
+
|
|
9441
|
+
.under-construction--small .under-construction__content {
|
|
9442
|
+
gap: 4px;
|
|
9375
9443
|
}
|