@ncds/ui-admin 1.8.21-alpha.8 → 1.8.21
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/feedback-and-status/badge/Badge.js +1 -1
- package/dist/cjs/src/components/forms-and-input/input-base/InputBase.js +13 -7
- package/dist/cjs/src/components/forms-and-input/input-base/__tests__/InputBase.test.js +16 -11
- package/dist/cjs/src/components/navigation/pagination/Pagination.js +3 -1
- package/dist/cjs/src/components/navigation/pagination/__tests__/Pagination.test.js +74 -0
- package/dist/cjs/src/components/overlays/notification/CalloutNotification.js +6 -1
- package/dist/cjs/src/components/overlays/notification/Notification.js +22 -2
- package/dist/cjs/src/components/overlays/notification/__tests__/CalloutNotification.test.js +128 -0
- package/dist/cjs/src/components/overlays/notification/__tests__/Notification.test.js +83 -0
- package/dist/cjs/src/components/overlays/postcode-search-modal/PostcodeSearchModal.js +72 -90
- package/dist/cjs/src/components/overlays/postcode-search-modal/PostcodeSearchModalTip.js +70 -0
- package/dist/cjs/src/components/overlays/postcode-search-modal/__tests__/PostcodeSearchModal.test.js +96 -39
- package/dist/cjs/src/generated/scoped-css.js +1 -1
- package/dist/esm/src/components/feedback-and-status/badge/Badge.js +1 -1
- package/dist/esm/src/components/forms-and-input/input-base/InputBase.js +13 -7
- package/dist/esm/src/components/forms-and-input/input-base/__tests__/InputBase.test.js +16 -11
- package/dist/esm/src/components/navigation/pagination/Pagination.js +3 -1
- package/dist/esm/src/components/navigation/pagination/__tests__/Pagination.test.js +74 -0
- package/dist/esm/src/components/overlays/notification/CalloutNotification.js +6 -1
- package/dist/esm/src/components/overlays/notification/Notification.js +22 -2
- package/dist/esm/src/components/overlays/notification/__tests__/CalloutNotification.test.js +125 -0
- package/dist/esm/src/components/overlays/notification/__tests__/Notification.test.js +80 -0
- package/dist/esm/src/components/overlays/postcode-search-modal/PostcodeSearchModal.js +72 -90
- package/dist/esm/src/components/overlays/postcode-search-modal/PostcodeSearchModalTip.js +63 -0
- package/dist/esm/src/components/overlays/postcode-search-modal/__tests__/PostcodeSearchModal.test.js +96 -39
- package/dist/esm/src/generated/scoped-css.js +1 -1
- package/dist/temp/src/components/feedback-and-status/badge/Badge.d.ts +1 -1
- package/dist/temp/src/components/feedback-and-status/badge/Badge.js +1 -1
- package/dist/temp/src/components/forms-and-input/input-base/InputBase.js +10 -4
- package/dist/temp/src/components/forms-and-input/input-base/__tests__/InputBase.test.js +14 -12
- package/dist/temp/src/components/navigation/pagination/Pagination.js +3 -1
- package/dist/temp/src/components/navigation/pagination/__tests__/Pagination.test.js +74 -0
- package/dist/temp/src/components/overlays/notification/CalloutNotification.d.ts +3 -1
- package/dist/temp/src/components/overlays/notification/CalloutNotification.js +5 -1
- package/dist/temp/src/components/overlays/notification/Notification.d.ts +12 -2
- package/dist/temp/src/components/overlays/notification/Notification.js +9 -4
- package/dist/temp/src/components/overlays/notification/__tests__/CalloutNotification.test.d.ts +1 -0
- package/dist/temp/src/components/overlays/notification/__tests__/CalloutNotification.test.js +108 -0
- package/dist/temp/src/components/overlays/notification/__tests__/Notification.test.d.ts +1 -0
- package/dist/temp/src/components/overlays/notification/__tests__/Notification.test.js +71 -0
- package/dist/temp/src/components/overlays/postcode-search-modal/PostcodeSearchModal.d.ts +2 -6
- package/dist/temp/src/components/overlays/postcode-search-modal/PostcodeSearchModal.js +38 -27
- package/dist/temp/src/components/overlays/postcode-search-modal/PostcodeSearchModalTip.d.ts +16 -0
- package/dist/temp/src/components/overlays/postcode-search-modal/PostcodeSearchModalTip.js +24 -0
- package/dist/temp/src/components/overlays/postcode-search-modal/__tests__/PostcodeSearchModal.test.js +82 -35
- package/dist/temp/src/generated/scoped-css.js +1 -1
- package/dist/types/src/components/feedback-and-status/badge/Badge.d.ts +1 -1
- package/dist/types/src/components/overlays/notification/CalloutNotification.d.ts +3 -1
- package/dist/types/src/components/overlays/notification/Notification.d.ts +12 -2
- package/dist/types/src/components/overlays/notification/__tests__/CalloutNotification.test.d.ts +1 -0
- package/dist/types/src/components/overlays/notification/__tests__/Notification.test.d.ts +1 -0
- package/dist/types/src/components/overlays/postcode-search-modal/PostcodeSearchModal.d.ts +2 -6
- package/dist/types/src/components/overlays/postcode-search-modal/PostcodeSearchModalTip.d.ts +16 -0
- package/dist/ui-admin/assets/styles/style.css +91 -33
- package/package.json +1 -1
- package/dist/ui-admin/assets/styles/style.scoped.css +0 -8557
|
@@ -16,4 +16,4 @@ type BadgeProps = {
|
|
|
16
16
|
};
|
|
17
17
|
declare const Badge: ({ label, type, color, className, leadingIcon, trailingIcon, size, }: BadgeProps) => import("react/jsx-runtime").JSX.Element;
|
|
18
18
|
export { Badge };
|
|
19
|
-
export type {
|
|
19
|
+
export type { BadgeType, BadgeColor, BadgeSize, BadgeProps };
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import { type ComponentPropsWithoutRef, type ReactNode } from 'react';
|
|
2
2
|
import type { NotificationColor } from './Notification';
|
|
3
|
+
type CalloutNotificationWidth = 'full' | 'fit';
|
|
3
4
|
interface CalloutNotificationProps extends Omit<ComponentPropsWithoutRef<'div'>, 'title'> {
|
|
4
5
|
color?: NotificationColor;
|
|
5
6
|
title?: ReactNode;
|
|
7
|
+
width?: CalloutNotificationWidth;
|
|
6
8
|
}
|
|
7
9
|
declare const CalloutNotification: import("react").ForwardRefExoticComponent<CalloutNotificationProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
8
|
-
export type { CalloutNotificationProps };
|
|
10
|
+
export type { CalloutNotificationProps, CalloutNotificationWidth };
|
|
9
11
|
export { CalloutNotification };
|
|
@@ -2,7 +2,7 @@ import { type ComponentPropsWithoutRef, type ReactNode } from 'react';
|
|
|
2
2
|
import type { ColorTone } from '../../../../constant/color';
|
|
3
3
|
import type { SlotIconComponent } from '../../../types/side-slot';
|
|
4
4
|
import type { ButtonTheme } from '../../action/button';
|
|
5
|
-
import { type CalloutNotificationProps } from './CalloutNotification';
|
|
5
|
+
import { type CalloutNotificationProps, type CalloutNotificationWidth } from './CalloutNotification';
|
|
6
6
|
type NotificationType = 'floating' | 'full-width' | 'message' | 'callout';
|
|
7
7
|
type NotificationColor = Extract<ColorTone, 'neutral' | 'error' | 'warning' | 'success' | 'info'>;
|
|
8
8
|
type NotificationSize = 'desktop' | 'mobile';
|
|
@@ -76,6 +76,16 @@ interface NotificationProps extends Omit<ComponentPropsWithoutRef<'div'>, 'title
|
|
|
76
76
|
* 표기가 통일되어 있지 않은 것은 현행 유지이며, 통일은 별도 결정 사항이다.
|
|
77
77
|
*/
|
|
78
78
|
hidePermanentlyLabel?: ReactNode;
|
|
79
|
+
/**
|
|
80
|
+
* supportingText 에 연결할 링크 URL (선택사항)
|
|
81
|
+
* full-width 타입에서 사용 가능
|
|
82
|
+
*/
|
|
83
|
+
supportTextLink?: string;
|
|
84
|
+
/**
|
|
85
|
+
* 너비 동작 (선택사항)
|
|
86
|
+
* callout 타입에서만 사용 가능. 미지정 시 부모 너비를 채운다(100%). 'fit' 은 콘텐츠 너비에 맞춘다
|
|
87
|
+
*/
|
|
88
|
+
width?: CalloutNotificationWidth;
|
|
79
89
|
/**
|
|
80
90
|
* Portal 마운트 여부. `floating` 타입에서만 동작한다.
|
|
81
91
|
*
|
|
@@ -92,5 +102,5 @@ interface NotificationProps extends Omit<ComponentPropsWithoutRef<'div'>, 'title
|
|
|
92
102
|
}
|
|
93
103
|
declare const Notification: import("react").ForwardRefExoticComponent<NotificationProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
94
104
|
export type { NotificationType, NotificationColor, NotificationSize, NotificationAction, NotificationProps };
|
|
95
|
-
export type { CalloutNotificationProps };
|
|
105
|
+
export type { CalloutNotificationProps, CalloutNotificationWidth };
|
|
96
106
|
export { Notification };
|
package/dist/types/src/components/overlays/notification/__tests__/CalloutNotification.test.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { type PostcodeSearchModalTipProps } from './PostcodeSearchModalTip';
|
|
1
2
|
/** 검색 결과 아이템 하나. */
|
|
2
3
|
interface PostcodeSearchResult {
|
|
3
4
|
/** 우편번호(5자리) */
|
|
@@ -32,16 +33,11 @@ interface PostcodeSearchModalProps {
|
|
|
32
33
|
errorCode?: PostcodeSearchErrorCode;
|
|
33
34
|
onSelect: (result: PostcodeSearchResult) => void;
|
|
34
35
|
}
|
|
35
|
-
interface PostcodeSearchModalTipProps {
|
|
36
|
-
/** 압축 모드 여부. 결과 30건 초과일 때 true */
|
|
37
|
-
compact?: boolean;
|
|
38
|
-
className?: string;
|
|
39
|
-
}
|
|
40
36
|
declare const PostcodeSearchModal: {
|
|
41
37
|
({ open, onClose, zIndex, className, searchQuery, onSearchQueryChange, onSearch, results, totalCount, currentPage, onPageChange, pageSize, loading, errorCode, onSelect, }: PostcodeSearchModalProps): import("react/jsx-runtime").JSX.Element;
|
|
42
38
|
displayName: string;
|
|
43
39
|
Tip: {
|
|
44
|
-
({
|
|
40
|
+
({ className }: PostcodeSearchModalTipProps): import("react/jsx-runtime").JSX.Element;
|
|
45
41
|
displayName: string;
|
|
46
42
|
};
|
|
47
43
|
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
interface PostcodeSearchModalTipProps {
|
|
2
|
+
className?: string;
|
|
3
|
+
}
|
|
4
|
+
/** Tip 카드 첫 줄 안내 문구 (기획서 TIPS.searchTitle) */
|
|
5
|
+
declare const TIP_TITLE = "\uC544\uB798 \uC870\uD569\uC73C\uB85C \uAC80\uC0C9\uD558\uBA74 \uC6D0\uD558\uB294 \uC8FC\uC18C\uB97C \uB354 \uC27D\uAC8C \uCC3E\uC744 \uC218 \uC788\uC5B4\uC694.";
|
|
6
|
+
/**
|
|
7
|
+
* 검색어 조합을 안내하는 Tip 카드.
|
|
8
|
+
* 결과 목록이 없는 화면(초기·오류·결과 없음)에서만 노출된다.
|
|
9
|
+
* 결과가 있을 때는 모달이 안내 문구 한 줄만 검색 영역에 붙여 고정한다.
|
|
10
|
+
*/
|
|
11
|
+
declare const Tip: {
|
|
12
|
+
({ className }: PostcodeSearchModalTipProps): import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
displayName: string;
|
|
14
|
+
};
|
|
15
|
+
export { Tip, TIP_TITLE };
|
|
16
|
+
export type { PostcodeSearchModalTipProps };
|
|
@@ -67,6 +67,9 @@
|
|
|
67
67
|
--shadow-xs-focused-3px-primary-100: 0px 1px 2px 0px #1018280d, 0px 0px 0px 3px #ffeaee;
|
|
68
68
|
--shadow-xs-focused-3px-gray-100: 0px 1px 2px 0px #1018280d, 0px 0px 0px 3px #f2f4f7;
|
|
69
69
|
--shadow-xs-focused-3px-error-100: 0px 1px 2px 0px #1018280d, 0px 0px 0px 3px #fee4e2;
|
|
70
|
+
--shadow-xs-focused-4px-primary-100: 0px 1px 2px 0px #1018280d, 0px 0px 0px 4px #ffeaee;
|
|
71
|
+
--shadow-xs-focused-4px-gray-100: 0px 1px 2px 0px #1018280d, 0px 0px 0px 4px #f2f4f7;
|
|
72
|
+
--shadow-xs-focused-4px-error-100: 0px 1px 2px 0px #1018280d, 0px 0px 0px 4px #fee4e2;
|
|
70
73
|
--shadow-sm: 0px 1px 3px 0px #1018281a, 0px 1px 2px 0px #1018280f;
|
|
71
74
|
--shadow-sm-focused-4px-primary-100: 0px 1px 2px 0px #1018280d, 0px 0px 0px 4px #ffeaee;
|
|
72
75
|
--shadow-sm-focused-4px-gray-100: 0px 1px 3px 0px #1018281a, 0px 1px 2px 0px #1018280f, 0px 0px 0px 4px #f2f4f7;
|
|
@@ -323,7 +326,7 @@ button {
|
|
|
323
326
|
background-color: var(--primary-red-450);
|
|
324
327
|
border: 1px solid var(--primary-red-500);
|
|
325
328
|
color: var(--base-white);
|
|
326
|
-
box-shadow: var(--shadow-
|
|
329
|
+
box-shadow: var(--shadow-xs-focused-4px-primary-100);
|
|
327
330
|
}
|
|
328
331
|
.ncua-btn--primary:disabled, .ncua-btn--primary.is-disable {
|
|
329
332
|
background-color: var(--primary-red-100);
|
|
@@ -369,7 +372,7 @@ button {
|
|
|
369
372
|
background-color: var(--base-white);
|
|
370
373
|
border: 1px solid var(--gray-200);
|
|
371
374
|
color: var(--gray-700);
|
|
372
|
-
box-shadow: var(--shadow-
|
|
375
|
+
box-shadow: var(--shadow-xs-focused-4px-gray-100);
|
|
373
376
|
}
|
|
374
377
|
.ncua-btn--secondary-gray:disabled, .ncua-btn--secondary-gray.is-disable {
|
|
375
378
|
background-color: var(--base-white);
|
|
@@ -955,7 +958,7 @@ button {
|
|
|
955
958
|
}
|
|
956
959
|
.ncua-checkbox-input.destructive :where(input):focus {
|
|
957
960
|
border-color: var(--primary-red-600);
|
|
958
|
-
box-shadow: var(--shadow-
|
|
961
|
+
box-shadow: var(--shadow-xs-focused-4px-error-100);
|
|
959
962
|
}
|
|
960
963
|
.ncua-checkbox-input:hover {
|
|
961
964
|
border-color: var(--gray-600);
|
|
@@ -1736,7 +1739,7 @@ button {
|
|
|
1736
1739
|
border-color: var(--primary-red-600);
|
|
1737
1740
|
}
|
|
1738
1741
|
.ncua-input.destructive:where(:focus-within) .ncua-input__field {
|
|
1739
|
-
box-shadow: var(--shadow-
|
|
1742
|
+
box-shadow: var(--shadow-xs-focused-4px-error-100);
|
|
1740
1743
|
}
|
|
1741
1744
|
.ncua-input.is-disabled .ncua-input__content > :not(button) {
|
|
1742
1745
|
background-color: var(--gray-50);
|
|
@@ -1926,7 +1929,7 @@ button {
|
|
|
1926
1929
|
border-color: var(--primary-red-600);
|
|
1927
1930
|
}
|
|
1928
1931
|
.ncua-input--textarea.destructive textarea:focus {
|
|
1929
|
-
box-shadow: var(--shadow-
|
|
1932
|
+
box-shadow: var(--shadow-xs-focused-4px-error-100);
|
|
1930
1933
|
}
|
|
1931
1934
|
|
|
1932
1935
|
.ncua-input--textarea--xs textarea {
|
|
@@ -2254,25 +2257,63 @@ button {
|
|
|
2254
2257
|
.ncua-modal:has(.ncua-postcode-search-modal) {
|
|
2255
2258
|
height: 480px;
|
|
2256
2259
|
}
|
|
2260
|
+
.ncua-modal:has(.ncua-postcode-search-modal) .ncua-postcode-search-modal__item .ncua-radio-input {
|
|
2261
|
+
display: none;
|
|
2262
|
+
}
|
|
2263
|
+
.ncua-modal:has(.ncua-postcode-search-modal) .ncua-modal__content {
|
|
2264
|
+
padding-block-end: 20px;
|
|
2265
|
+
}
|
|
2266
|
+
}
|
|
2267
|
+
|
|
2268
|
+
.ncua-modal:has(.ncua-postcode-search-modal) .ncua-modal__header-divider {
|
|
2269
|
+
margin: 0;
|
|
2257
2270
|
}
|
|
2258
2271
|
|
|
2259
2272
|
.ncua-modal__content:has(.ncua-postcode-search-modal) {
|
|
2260
2273
|
display: flex;
|
|
2261
2274
|
flex-direction: column;
|
|
2262
|
-
padding-block-end:
|
|
2275
|
+
padding-block-end: 32px;
|
|
2276
|
+
padding-inline: 0;
|
|
2263
2277
|
}
|
|
2264
2278
|
|
|
2265
2279
|
.ncua-postcode-search-modal {
|
|
2280
|
+
--padding-inline: 20px;
|
|
2281
|
+
}
|
|
2282
|
+
|
|
2283
|
+
.ncua-postcode-search-modal__search-area {
|
|
2284
|
+
position: sticky;
|
|
2285
|
+
top: 0;
|
|
2286
|
+
z-index: 1;
|
|
2287
|
+
padding: 16px var(--padding-inline) 20px;
|
|
2266
2288
|
display: flex;
|
|
2267
|
-
flex: 1;
|
|
2268
2289
|
flex-direction: column;
|
|
2269
|
-
gap: var(--spacing-
|
|
2290
|
+
gap: var(--spacing-s);
|
|
2291
|
+
background-color: var(--base-white);
|
|
2292
|
+
}
|
|
2293
|
+
.ncua-postcode-search-modal__search-area.is-fixed {
|
|
2294
|
+
border-block-end: 1px solid var(--gray-200);
|
|
2270
2295
|
}
|
|
2271
2296
|
|
|
2272
2297
|
.ncua-postcode-search-modal__search {
|
|
2273
2298
|
display: flex;
|
|
2274
2299
|
align-items: flex-start;
|
|
2275
|
-
gap: var(--spacing-
|
|
2300
|
+
gap: var(--spacing-xs);
|
|
2301
|
+
}
|
|
2302
|
+
|
|
2303
|
+
.ncua-postcode-search-modal__search-area .ncua-postcode-search-modal__result-title {
|
|
2304
|
+
margin: 0 0 2px;
|
|
2305
|
+
color: var(--gray-500);
|
|
2306
|
+
font-size: var(--font-size-xs);
|
|
2307
|
+
font-weight: var(--font-weights-commerce-sans-1);
|
|
2308
|
+
line-height: var(--line-heights-xs);
|
|
2309
|
+
}
|
|
2310
|
+
|
|
2311
|
+
.ncua-postcode-search-modal__result-desc {
|
|
2312
|
+
margin: 0;
|
|
2313
|
+
color: var(--gray-400);
|
|
2314
|
+
font-size: var(--font-size-xxs);
|
|
2315
|
+
font-weight: var(--font-weights-commerce-sans-0);
|
|
2316
|
+
line-height: var(--line-heights-xxs);
|
|
2276
2317
|
}
|
|
2277
2318
|
|
|
2278
2319
|
.ncua-postcode-search-modal__search-input {
|
|
@@ -2285,7 +2326,9 @@ button {
|
|
|
2285
2326
|
}
|
|
2286
2327
|
|
|
2287
2328
|
.ncua-postcode-search-modal__count {
|
|
2288
|
-
|
|
2329
|
+
padding-inline: var(--padding-inline);
|
|
2330
|
+
margin-block-start: 12px;
|
|
2331
|
+
color: var(--gray-500);
|
|
2289
2332
|
font-size: var(--font-size-xs);
|
|
2290
2333
|
font-weight: var(--font-weights-commerce-sans-2);
|
|
2291
2334
|
line-height: var(--line-heights-xs);
|
|
@@ -2295,8 +2338,8 @@ button {
|
|
|
2295
2338
|
}
|
|
2296
2339
|
|
|
2297
2340
|
.ncua-postcode-search-modal__list {
|
|
2298
|
-
padding-
|
|
2299
|
-
margin-
|
|
2341
|
+
padding-inline: var(--padding-inline);
|
|
2342
|
+
margin-block: 8px 0;
|
|
2300
2343
|
}
|
|
2301
2344
|
|
|
2302
2345
|
.ncua-postcode-search-modal__item {
|
|
@@ -2309,6 +2352,10 @@ button {
|
|
|
2309
2352
|
align-items: center;
|
|
2310
2353
|
width: 100%;
|
|
2311
2354
|
}
|
|
2355
|
+
.ncua-postcode-search-modal__item .ncua-radio-field.has-text {
|
|
2356
|
+
gap: 16px;
|
|
2357
|
+
vertical-align: top;
|
|
2358
|
+
}
|
|
2312
2359
|
.ncua-postcode-search-modal__item .ncua-radio-field__input + span {
|
|
2313
2360
|
flex: 1;
|
|
2314
2361
|
}
|
|
@@ -2361,6 +2408,8 @@ button {
|
|
|
2361
2408
|
}
|
|
2362
2409
|
|
|
2363
2410
|
.ncua-postcode-search-modal__tip {
|
|
2411
|
+
margin-inline-start: 6px;
|
|
2412
|
+
padding-inline: var(--padding-inline);
|
|
2364
2413
|
color: var(--gray-500);
|
|
2365
2414
|
font-size: var(--font-size-xxs);
|
|
2366
2415
|
line-height: var(--line-heights-xxs);
|
|
@@ -2377,6 +2426,7 @@ button {
|
|
|
2377
2426
|
|
|
2378
2427
|
.ncua-postcode-search-modal__tip-icon {
|
|
2379
2428
|
flex-shrink: 0;
|
|
2429
|
+
color: var(--gray-400);
|
|
2380
2430
|
}
|
|
2381
2431
|
|
|
2382
2432
|
.ncua-postcode-search-modal__tip .ncua-postcode-search-modal__tip-title {
|
|
@@ -2406,22 +2456,21 @@ button {
|
|
|
2406
2456
|
}
|
|
2407
2457
|
|
|
2408
2458
|
.ncua-postcode-search-modal__tip-combination {
|
|
2409
|
-
|
|
2459
|
+
font-weight: var(--font-weights-commerce-sans-1);
|
|
2410
2460
|
}
|
|
2411
2461
|
|
|
2412
2462
|
.ncua-postcode-search-modal__tip-example {
|
|
2413
|
-
|
|
2414
|
-
}
|
|
2415
|
-
|
|
2416
|
-
.ncua-postcode-search-modal__tip-compact-text {
|
|
2417
|
-
margin: 0;
|
|
2463
|
+
font-weight: var(--font-weights-commerce-sans-0);
|
|
2418
2464
|
}
|
|
2419
2465
|
|
|
2420
2466
|
.ncua-postcode-search-modal__pagination {
|
|
2421
2467
|
display: flex;
|
|
2422
2468
|
justify-content: center;
|
|
2423
|
-
margin-top:
|
|
2424
|
-
padding-
|
|
2469
|
+
margin-top: 20px;
|
|
2470
|
+
padding-inline: var(--padding-inline);
|
|
2471
|
+
}
|
|
2472
|
+
.ncua-postcode-search-modal__pagination .ncua-pagination--mo {
|
|
2473
|
+
flex: 1;
|
|
2425
2474
|
}
|
|
2426
2475
|
|
|
2427
2476
|
.ncua-postcode-search-modal__empty {
|
|
@@ -2851,6 +2900,7 @@ button {
|
|
|
2851
2900
|
align-items: center;
|
|
2852
2901
|
justify-content: space-between;
|
|
2853
2902
|
gap: 24px;
|
|
2903
|
+
flex-wrap: wrap;
|
|
2854
2904
|
}
|
|
2855
2905
|
@media (max-width: 768px) {
|
|
2856
2906
|
.ncua-message-notification__content {
|
|
@@ -2864,7 +2914,7 @@ button {
|
|
|
2864
2914
|
display: flex;
|
|
2865
2915
|
align-items: center;
|
|
2866
2916
|
gap: 12px;
|
|
2867
|
-
min-width:
|
|
2917
|
+
min-width: 160px;
|
|
2868
2918
|
}
|
|
2869
2919
|
.ncua-message-notification__icon {
|
|
2870
2920
|
flex-shrink: 0;
|
|
@@ -2890,6 +2940,7 @@ button {
|
|
|
2890
2940
|
align-items: center;
|
|
2891
2941
|
gap: 12px;
|
|
2892
2942
|
flex-shrink: 0;
|
|
2943
|
+
margin-left: auto;
|
|
2893
2944
|
flex-wrap: wrap;
|
|
2894
2945
|
}
|
|
2895
2946
|
@media (max-width: 768px) {
|
|
@@ -3031,6 +3082,13 @@ button {
|
|
|
3031
3082
|
line-height: var(--line-heights-md);
|
|
3032
3083
|
font-weight: var(--font-weights-commerce-sans-0);
|
|
3033
3084
|
}
|
|
3085
|
+
.ncua-callout-notification--full {
|
|
3086
|
+
width: 100%;
|
|
3087
|
+
}
|
|
3088
|
+
.ncua-callout-notification--fit {
|
|
3089
|
+
width: fit-content;
|
|
3090
|
+
max-width: 100%;
|
|
3091
|
+
}
|
|
3034
3092
|
.ncua-callout-notification--info {
|
|
3035
3093
|
background-color: var(--blue-50);
|
|
3036
3094
|
border-color: var(--blue-200);
|
|
@@ -3125,7 +3183,7 @@ button {
|
|
|
3125
3183
|
}
|
|
3126
3184
|
.ncua-radio-input.destructive :where(input):focus {
|
|
3127
3185
|
border-color: var(--primary-red-600);
|
|
3128
|
-
box-shadow: var(--shadow-
|
|
3186
|
+
box-shadow: var(--shadow-xs-focused-4px-error-100);
|
|
3129
3187
|
}
|
|
3130
3188
|
|
|
3131
3189
|
.ncua-radio-field {
|
|
@@ -3627,7 +3685,7 @@ button {
|
|
|
3627
3685
|
border-color: var(--primary-red-600);
|
|
3628
3686
|
}
|
|
3629
3687
|
.ncua-select.destructive .ncua-select__content:focus-within {
|
|
3630
|
-
box-shadow: var(--shadow-
|
|
3688
|
+
box-shadow: var(--shadow-xs-focused-4px-error-100);
|
|
3631
3689
|
}
|
|
3632
3690
|
.ncua-select--xs .ncua-select__content {
|
|
3633
3691
|
height: var(--select-height-xs);
|
|
@@ -3949,7 +4007,7 @@ button {
|
|
|
3949
4007
|
border-color: var(--primary-red-600);
|
|
3950
4008
|
}
|
|
3951
4009
|
.ncua-selectbox.destructive .ncua-selectbox__content:focus {
|
|
3952
|
-
box-shadow: var(--shadow-
|
|
4010
|
+
box-shadow: var(--shadow-xs-focused-4px-error-100);
|
|
3953
4011
|
}
|
|
3954
4012
|
.ncua-selectbox--xs .ncua-selectbox__content {
|
|
3955
4013
|
height: var(--select-height-xs);
|
|
@@ -4057,17 +4115,17 @@ button {
|
|
|
4057
4115
|
list-style: none;
|
|
4058
4116
|
}
|
|
4059
4117
|
.ncua-pagination__item + .ncua-pagination__item {
|
|
4060
|
-
margin-inline-start:
|
|
4118
|
+
margin-inline-start: 2px;
|
|
4061
4119
|
margin-top: 0;
|
|
4062
4120
|
}
|
|
4063
4121
|
.ncua-pagination__page-num {
|
|
4064
|
-
font-size:
|
|
4065
|
-
font-weight:
|
|
4122
|
+
font-size: var(--font-size-xs);
|
|
4123
|
+
font-weight: var(--font-weights-commerce-sans-1);
|
|
4066
4124
|
display: inline-flex;
|
|
4067
4125
|
justify-content: center;
|
|
4068
4126
|
align-items: center;
|
|
4069
|
-
padding-inline:
|
|
4070
|
-
|
|
4127
|
+
padding-inline: 0;
|
|
4128
|
+
width: 32px;
|
|
4071
4129
|
height: 32px;
|
|
4072
4130
|
border-radius: 8px;
|
|
4073
4131
|
border: 0;
|
|
@@ -4114,6 +4172,7 @@ button {
|
|
|
4114
4172
|
color: var(--gray-400);
|
|
4115
4173
|
}
|
|
4116
4174
|
.ncua-pagination--mo .ncua-pagination__current-num {
|
|
4175
|
+
margin-inline-end: 5px;
|
|
4117
4176
|
font-style: normal;
|
|
4118
4177
|
color: var(--gray-700);
|
|
4119
4178
|
}
|
|
@@ -5241,16 +5300,15 @@ button {
|
|
|
5241
5300
|
justify-content: center;
|
|
5242
5301
|
color: var(--pink-600);
|
|
5243
5302
|
background-color: var(--pink-200);
|
|
5303
|
+
border-radius: 5px;
|
|
5244
5304
|
}
|
|
5245
5305
|
.ncua-badge--new-badge-sm {
|
|
5246
5306
|
width: 16px;
|
|
5247
5307
|
height: 16px;
|
|
5248
|
-
border-radius: 3px;
|
|
5249
5308
|
}
|
|
5250
5309
|
.ncua-badge--new-badge-md {
|
|
5251
5310
|
width: 20px;
|
|
5252
5311
|
height: 20px;
|
|
5253
|
-
border-radius: 4px;
|
|
5254
5312
|
}
|
|
5255
5313
|
|
|
5256
5314
|
.ncua-badge-group {
|
|
@@ -6512,7 +6570,7 @@ button {
|
|
|
6512
6570
|
bottom: 0;
|
|
6513
6571
|
width: 3px;
|
|
6514
6572
|
background: var(--base-black);
|
|
6515
|
-
z-index:
|
|
6573
|
+
z-index: 1;
|
|
6516
6574
|
}
|
|
6517
6575
|
.ncua-table__row--warning.ncua-table__row--selected:nth-child(n) {
|
|
6518
6576
|
background: var(--orange-50);
|
|
@@ -6657,7 +6715,7 @@ button {
|
|
|
6657
6715
|
.ncua-table--fixed-header .ncua-table__header-cell {
|
|
6658
6716
|
position: sticky;
|
|
6659
6717
|
top: 0;
|
|
6660
|
-
z-index:
|
|
6718
|
+
z-index: 10;
|
|
6661
6719
|
padding: 0 var(--spacing-m);
|
|
6662
6720
|
height: var(--ncua-table-header-height);
|
|
6663
6721
|
}
|