@ncds/ui-admin 1.8.3 → 1.8.4
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/dist/cjs/src/components/index.js +33 -0
- package/dist/cjs/src/components/layout/block-container/BlockContainer.js +38 -0
- package/dist/cjs/src/components/layout/block-container/index.js +16 -0
- package/dist/cjs/src/components/layout/block-header/BlockHeader.js +107 -0
- package/dist/cjs/src/components/layout/block-header/SubTitle.js +56 -0
- package/dist/cjs/src/components/layout/block-header/index.js +27 -0
- package/dist/cjs/src/components/layout/page-title/PageTitle.js +95 -0
- package/dist/cjs/src/components/layout/page-title/index.js +16 -0
- package/dist/esm/src/components/index.js +3 -0
- package/dist/esm/src/components/layout/block-container/BlockContainer.js +31 -0
- package/dist/esm/src/components/layout/block-container/index.js +1 -0
- package/dist/esm/src/components/layout/block-header/BlockHeader.js +100 -0
- package/dist/esm/src/components/layout/block-header/SubTitle.js +49 -0
- package/dist/esm/src/components/layout/block-header/index.js +2 -0
- package/dist/esm/src/components/layout/page-title/PageTitle.js +88 -0
- package/dist/esm/src/components/layout/page-title/index.js +1 -0
- package/dist/temp/src/components/index.d.ts +3 -0
- package/dist/temp/src/components/index.js +3 -0
- package/dist/temp/src/components/layout/block-container/BlockContainer.d.ts +19 -0
- package/dist/temp/src/components/layout/block-container/BlockContainer.js +11 -0
- package/dist/temp/src/components/layout/block-container/index.d.ts +1 -0
- package/dist/temp/src/components/layout/block-container/index.js +1 -0
- package/dist/temp/src/components/layout/block-header/BlockHeader.d.ts +23 -0
- package/dist/temp/src/components/layout/block-header/BlockHeader.js +21 -0
- package/dist/temp/src/components/layout/block-header/SubTitle.d.ts +19 -0
- package/dist/temp/src/components/layout/block-header/SubTitle.js +8 -0
- package/dist/temp/src/components/layout/block-header/index.d.ts +2 -0
- package/dist/temp/src/components/layout/block-header/index.js +2 -0
- package/dist/temp/src/components/layout/page-title/PageTitle.d.ts +22 -0
- package/dist/temp/src/components/layout/page-title/PageTitle.js +19 -0
- package/dist/temp/src/components/layout/page-title/index.d.ts +1 -0
- package/dist/temp/src/components/layout/page-title/index.js +1 -0
- package/dist/types/src/components/index.d.ts +3 -0
- package/dist/types/src/components/layout/block-container/BlockContainer.d.ts +19 -0
- package/dist/types/src/components/layout/block-container/index.d.ts +1 -0
- package/dist/types/src/components/layout/block-header/BlockHeader.d.ts +23 -0
- package/dist/types/src/components/layout/block-header/SubTitle.d.ts +19 -0
- package/dist/types/src/components/layout/block-header/index.d.ts +2 -0
- package/dist/types/src/components/layout/page-title/PageTitle.d.ts +22 -0
- package/dist/types/src/components/layout/page-title/index.d.ts +1 -0
- package/dist/ui-admin/assets/styles/style.css +292 -0
- package/package.json +1 -1
|
@@ -6218,6 +6218,298 @@ button {
|
|
|
6218
6218
|
padding: var(--spacing-lg) 0;
|
|
6219
6219
|
}
|
|
6220
6220
|
|
|
6221
|
+
.ncua-block-container {
|
|
6222
|
+
display: flex;
|
|
6223
|
+
flex-direction: column;
|
|
6224
|
+
align-items: stretch;
|
|
6225
|
+
width: 100%;
|
|
6226
|
+
background: var(--base-white);
|
|
6227
|
+
border: 1px solid var(--gray-100);
|
|
6228
|
+
border-radius: 12px;
|
|
6229
|
+
box-shadow: var(--shadow-sm);
|
|
6230
|
+
overflow: hidden;
|
|
6231
|
+
}
|
|
6232
|
+
.ncua-block-container__body {
|
|
6233
|
+
display: flex;
|
|
6234
|
+
flex-direction: column;
|
|
6235
|
+
gap: 16px;
|
|
6236
|
+
padding: 16px 24px;
|
|
6237
|
+
}
|
|
6238
|
+
|
|
6239
|
+
.ncua-block-header {
|
|
6240
|
+
display: flex;
|
|
6241
|
+
flex-direction: column;
|
|
6242
|
+
width: 100%;
|
|
6243
|
+
background: var(--base-white);
|
|
6244
|
+
}
|
|
6245
|
+
.ncua-block-header__row {
|
|
6246
|
+
display: flex;
|
|
6247
|
+
flex-direction: row;
|
|
6248
|
+
justify-content: space-between;
|
|
6249
|
+
align-items: center;
|
|
6250
|
+
gap: 8px;
|
|
6251
|
+
min-height: 48px;
|
|
6252
|
+
padding: 10px 24px;
|
|
6253
|
+
box-shadow: inset 0 -1px 0 0 var(--gray-100);
|
|
6254
|
+
}
|
|
6255
|
+
.ncua-block-header--column .ncua-block-header__row {
|
|
6256
|
+
padding: 12px 24px;
|
|
6257
|
+
box-shadow: none;
|
|
6258
|
+
}
|
|
6259
|
+
.ncua-block-header--no-divider .ncua-block-header__row {
|
|
6260
|
+
box-shadow: none;
|
|
6261
|
+
}
|
|
6262
|
+
.ncua-block-header__title-area {
|
|
6263
|
+
display: flex;
|
|
6264
|
+
flex-direction: row;
|
|
6265
|
+
align-items: center;
|
|
6266
|
+
gap: var(--spacing-sm);
|
|
6267
|
+
}
|
|
6268
|
+
.ncua-block-header__title-area .ncua-tooltip {
|
|
6269
|
+
display: inline-flex;
|
|
6270
|
+
align-items: center;
|
|
6271
|
+
}
|
|
6272
|
+
.ncua-block-header__title {
|
|
6273
|
+
font-size: var(--font-size-md);
|
|
6274
|
+
font-weight: var(--font-weights-commerce-sans-2);
|
|
6275
|
+
line-height: var(--line-heights-md);
|
|
6276
|
+
color: var(--gray-700);
|
|
6277
|
+
}
|
|
6278
|
+
.ncua-block-header__action-area {
|
|
6279
|
+
display: flex;
|
|
6280
|
+
flex-direction: row;
|
|
6281
|
+
align-items: center;
|
|
6282
|
+
gap: 8px;
|
|
6283
|
+
}
|
|
6284
|
+
.ncua-block-header__collapsible-btn {
|
|
6285
|
+
display: flex;
|
|
6286
|
+
align-items: center;
|
|
6287
|
+
justify-content: center;
|
|
6288
|
+
background: none;
|
|
6289
|
+
border: none;
|
|
6290
|
+
padding: 0;
|
|
6291
|
+
cursor: pointer;
|
|
6292
|
+
}
|
|
6293
|
+
.ncua-block-header__required-notice {
|
|
6294
|
+
font-size: var(--font-size-xs);
|
|
6295
|
+
font-weight: var(--font-weights-commerce-sans-0);
|
|
6296
|
+
line-height: var(--line-heights-xs);
|
|
6297
|
+
white-space: nowrap;
|
|
6298
|
+
}
|
|
6299
|
+
.ncua-block-header__required-notice--red {
|
|
6300
|
+
color: var(--primary-red-500);
|
|
6301
|
+
}
|
|
6302
|
+
.ncua-block-header__required-notice--gray {
|
|
6303
|
+
color: var(--gray-700);
|
|
6304
|
+
}
|
|
6305
|
+
.ncua-block-header__badge {
|
|
6306
|
+
display: inline-flex;
|
|
6307
|
+
align-items: center;
|
|
6308
|
+
}
|
|
6309
|
+
.ncua-block-header--column .ncua-block-header__description {
|
|
6310
|
+
padding: 0 24px 12px;
|
|
6311
|
+
font-size: var(--font-size-xs);
|
|
6312
|
+
font-weight: 400;
|
|
6313
|
+
line-height: var(--line-heights-xs);
|
|
6314
|
+
color: var(--gray-400);
|
|
6315
|
+
margin: 0;
|
|
6316
|
+
box-shadow: inset 0 -1px 0 0 var(--gray-100);
|
|
6317
|
+
}
|
|
6318
|
+
.ncua-block-header--column.ncua-block-header--no-divider .ncua-block-header__description {
|
|
6319
|
+
box-shadow: none;
|
|
6320
|
+
}
|
|
6321
|
+
.ncua-block-header--has-tab {
|
|
6322
|
+
box-shadow: inset 0 -1px 0 0 var(--gray-100);
|
|
6323
|
+
}
|
|
6324
|
+
.ncua-block-header__control-strip {
|
|
6325
|
+
padding: 10px 24px;
|
|
6326
|
+
box-shadow: inset 0 -1px 0 0 var(--gray-100);
|
|
6327
|
+
}
|
|
6328
|
+
.ncua-block-header--no-divider .ncua-block-header__control-strip {
|
|
6329
|
+
box-shadow: none;
|
|
6330
|
+
}
|
|
6331
|
+
.ncua-block-header__tabs {
|
|
6332
|
+
padding: 0 24px;
|
|
6333
|
+
}
|
|
6334
|
+
.ncua-block-header__tabs .ncua-horizontal-tab--underline::after,
|
|
6335
|
+
.ncua-block-header__tabs .ncua-horizontal-tab--underline-fill::after {
|
|
6336
|
+
display: none;
|
|
6337
|
+
}
|
|
6338
|
+
|
|
6339
|
+
.ncua-sub-title {
|
|
6340
|
+
display: flex;
|
|
6341
|
+
flex-direction: column;
|
|
6342
|
+
gap: 12px;
|
|
6343
|
+
}
|
|
6344
|
+
.ncua-sub-title__title-row {
|
|
6345
|
+
display: flex;
|
|
6346
|
+
flex-direction: row;
|
|
6347
|
+
justify-content: space-between;
|
|
6348
|
+
align-items: flex-end;
|
|
6349
|
+
}
|
|
6350
|
+
.ncua-sub-title__title-area {
|
|
6351
|
+
display: flex;
|
|
6352
|
+
flex-direction: row;
|
|
6353
|
+
align-items: center;
|
|
6354
|
+
gap: var(--spacing-sm);
|
|
6355
|
+
}
|
|
6356
|
+
.ncua-sub-title__title-area .ncua-tooltip {
|
|
6357
|
+
display: inline-flex;
|
|
6358
|
+
align-items: center;
|
|
6359
|
+
}
|
|
6360
|
+
.ncua-sub-title__required-marker {
|
|
6361
|
+
color: var(--primary-red-500);
|
|
6362
|
+
font-weight: 700;
|
|
6363
|
+
}
|
|
6364
|
+
.ncua-sub-title__title {
|
|
6365
|
+
color: var(--gray-700);
|
|
6366
|
+
font-weight: 700;
|
|
6367
|
+
}
|
|
6368
|
+
.ncua-sub-title__action {
|
|
6369
|
+
display: flex;
|
|
6370
|
+
flex-direction: row;
|
|
6371
|
+
gap: 8px;
|
|
6372
|
+
}
|
|
6373
|
+
.ncua-sub-title__description {
|
|
6374
|
+
margin: 0;
|
|
6375
|
+
color: var(--gray-400);
|
|
6376
|
+
font-weight: 400;
|
|
6377
|
+
}
|
|
6378
|
+
.ncua-sub-title__error {
|
|
6379
|
+
margin: 0;
|
|
6380
|
+
color: var(--primary-red-600);
|
|
6381
|
+
font-weight: 400;
|
|
6382
|
+
}
|
|
6383
|
+
.ncua-sub-title--middle .ncua-sub-title__title {
|
|
6384
|
+
font-size: var(--font-size-md);
|
|
6385
|
+
font-weight: 500;
|
|
6386
|
+
line-height: var(--line-heights-md);
|
|
6387
|
+
}
|
|
6388
|
+
.ncua-sub-title--sm .ncua-sub-title__title-area {
|
|
6389
|
+
gap: 6px;
|
|
6390
|
+
}
|
|
6391
|
+
.ncua-sub-title--sm .ncua-sub-title__title {
|
|
6392
|
+
font-size: var(--font-size-sm);
|
|
6393
|
+
line-height: var(--line-heights-sm);
|
|
6394
|
+
}
|
|
6395
|
+
.ncua-sub-title--sm .ncua-sub-title__description {
|
|
6396
|
+
font-size: var(--font-size-xs);
|
|
6397
|
+
line-height: var(--line-heights-xs);
|
|
6398
|
+
}
|
|
6399
|
+
.ncua-sub-title--xs .ncua-sub-title__title-area {
|
|
6400
|
+
gap: 4px;
|
|
6401
|
+
}
|
|
6402
|
+
.ncua-sub-title--xs .ncua-sub-title__title {
|
|
6403
|
+
font-size: var(--font-size-xs);
|
|
6404
|
+
line-height: var(--line-heights-xs);
|
|
6405
|
+
}
|
|
6406
|
+
.ncua-sub-title--xs .ncua-sub-title__description {
|
|
6407
|
+
font-size: var(--font-size-xxs);
|
|
6408
|
+
line-height: var(--line-heights-xxs);
|
|
6409
|
+
}
|
|
6410
|
+
.ncua-sub-title--xs .ncua-sub-title__error {
|
|
6411
|
+
font-size: var(--font-size-xxs);
|
|
6412
|
+
line-height: var(--line-heights-xxs);
|
|
6413
|
+
}
|
|
6414
|
+
|
|
6415
|
+
.ncua-page-title {
|
|
6416
|
+
width: 100%;
|
|
6417
|
+
background: var(--base-white);
|
|
6418
|
+
box-shadow: var(--shadow-sm);
|
|
6419
|
+
}
|
|
6420
|
+
.ncua-page-title--fixed {
|
|
6421
|
+
position: sticky;
|
|
6422
|
+
top: 0;
|
|
6423
|
+
z-index: 999;
|
|
6424
|
+
border-bottom: 1px solid var(--gray-300);
|
|
6425
|
+
}
|
|
6426
|
+
.ncua-page-title__page-header {
|
|
6427
|
+
padding: 24px 40px;
|
|
6428
|
+
}
|
|
6429
|
+
.ncua-page-title--fixed .ncua-page-title__page-header {
|
|
6430
|
+
padding: 12px 40px;
|
|
6431
|
+
}
|
|
6432
|
+
.ncua-page-title__header {
|
|
6433
|
+
display: flex;
|
|
6434
|
+
flex-direction: row;
|
|
6435
|
+
align-items: center;
|
|
6436
|
+
gap: 8px;
|
|
6437
|
+
}
|
|
6438
|
+
.ncua-page-title__header--has-breadcrumb {
|
|
6439
|
+
align-items: flex-end;
|
|
6440
|
+
}
|
|
6441
|
+
.ncua-page-title__container {
|
|
6442
|
+
display: flex;
|
|
6443
|
+
flex-direction: column;
|
|
6444
|
+
gap: 12px;
|
|
6445
|
+
flex: 1;
|
|
6446
|
+
min-width: 0;
|
|
6447
|
+
}
|
|
6448
|
+
.ncua-page-title--fixed .ncua-page-title__container {
|
|
6449
|
+
gap: 8px;
|
|
6450
|
+
}
|
|
6451
|
+
.ncua-page-title__title-row {
|
|
6452
|
+
display: flex;
|
|
6453
|
+
flex-direction: row;
|
|
6454
|
+
align-items: center;
|
|
6455
|
+
gap: 12px;
|
|
6456
|
+
}
|
|
6457
|
+
.ncua-page-title__title-row .ncua-page-title__title {
|
|
6458
|
+
font-size: var(--font-size-display-xs);
|
|
6459
|
+
font-weight: var(--font-weights-commerce-sans-2);
|
|
6460
|
+
line-height: var(--line-heights-display-xs);
|
|
6461
|
+
color: var(--gray-700);
|
|
6462
|
+
margin: 0;
|
|
6463
|
+
}
|
|
6464
|
+
.ncua-page-title__title-row .ncua-page-title__title:first-child {
|
|
6465
|
+
margin: 0;
|
|
6466
|
+
}
|
|
6467
|
+
.ncua-page-title__breadcrumb {
|
|
6468
|
+
display: flex;
|
|
6469
|
+
flex-direction: row;
|
|
6470
|
+
align-items: center;
|
|
6471
|
+
gap: 8px;
|
|
6472
|
+
}
|
|
6473
|
+
.ncua-page-title__breadcrumb-item {
|
|
6474
|
+
font-size: 12px;
|
|
6475
|
+
font-weight: 500;
|
|
6476
|
+
line-height: 1.333;
|
|
6477
|
+
color: var(--gray-400);
|
|
6478
|
+
}
|
|
6479
|
+
.ncua-page-title__breadcrumb-item a {
|
|
6480
|
+
color: inherit;
|
|
6481
|
+
text-decoration: none;
|
|
6482
|
+
}
|
|
6483
|
+
.ncua-page-title__breadcrumb-item a:hover {
|
|
6484
|
+
text-decoration: underline;
|
|
6485
|
+
}
|
|
6486
|
+
.ncua-page-title__breadcrumb-separator {
|
|
6487
|
+
width: 16px;
|
|
6488
|
+
height: 16px;
|
|
6489
|
+
color: var(--gray-200);
|
|
6490
|
+
flex-shrink: 0;
|
|
6491
|
+
}
|
|
6492
|
+
.ncua-page-title__breadcrumb-current {
|
|
6493
|
+
font-size: 12px;
|
|
6494
|
+
font-weight: 500;
|
|
6495
|
+
line-height: 1.333;
|
|
6496
|
+
color: var(--gray-600);
|
|
6497
|
+
}
|
|
6498
|
+
.ncua-page-title__back-btn {
|
|
6499
|
+
flex-shrink: 0;
|
|
6500
|
+
}
|
|
6501
|
+
.ncua-page-title__guide-btn {
|
|
6502
|
+
display: flex;
|
|
6503
|
+
align-items: center;
|
|
6504
|
+
}
|
|
6505
|
+
.ncua-page-title__actions {
|
|
6506
|
+
display: flex;
|
|
6507
|
+
flex-direction: row;
|
|
6508
|
+
align-items: center;
|
|
6509
|
+
gap: 8px;
|
|
6510
|
+
flex-shrink: 0;
|
|
6511
|
+
}
|
|
6512
|
+
|
|
6221
6513
|
.flatpickr-calendar {
|
|
6222
6514
|
background: transparent;
|
|
6223
6515
|
opacity: 0;
|