@ncds/ui-admin 1.8.5 → 1.8.7
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/forms-and-input/slider/Slider.js +2 -3
- package/dist/cjs/src/types/component-meta.js +8 -1
- package/dist/esm/src/components/forms-and-input/slider/Slider.js +1 -2
- package/dist/esm/src/types/component-meta.js +5 -1
- package/dist/temp/src/components/forms-and-input/slider/Slider.d.ts +0 -1
- package/dist/temp/src/components/forms-and-input/slider/Slider.js +0 -1
- package/dist/temp/src/types/component-meta.d.ts +6 -2
- package/dist/temp/src/types/component-meta.js +14 -1
- package/dist/types/src/components/forms-and-input/slider/Slider.d.ts +0 -1
- package/dist/types/src/types/component-meta.d.ts +6 -2
- package/dist/ui-admin/assets/styles/style.css +9 -0
- package/package.json +1 -1
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
exports.
|
|
6
|
+
exports.Slider = void 0;
|
|
7
7
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
8
8
|
var _react = require("react");
|
|
9
9
|
var _slider = require("../../../../assets/scripts/slider");
|
|
@@ -57,5 +57,4 @@ const Slider = _ref => {
|
|
|
57
57
|
className: `ncua-slider ${className || ''}`
|
|
58
58
|
});
|
|
59
59
|
};
|
|
60
|
-
exports.Slider = Slider;
|
|
61
|
-
var _default = exports.default = Slider;
|
|
60
|
+
exports.Slider = Slider;
|
|
@@ -2,4 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
|
-
});
|
|
5
|
+
});
|
|
6
|
+
exports.COMPONENT_CATEGORIES = void 0;
|
|
7
|
+
/** AI 에이전트용 컴포넌트 메타데이터 타입 */
|
|
8
|
+
/**
|
|
9
|
+
* 컴포넌트 카테고리 — `src/components/` 하위 디렉토리명과 동일.
|
|
10
|
+
* 타입과 런타임 값을 한 곳에서 정의해 추가/변경 시 동기화 누락을 막는다.
|
|
11
|
+
*/
|
|
12
|
+
const COMPONENT_CATEGORIES = exports.COMPONENT_CATEGORIES = ['action', 'data-display', 'feedback-and-status', 'forms-and-input', 'image-and-icons', 'layout', 'navigation', 'overlays'];
|
|
@@ -1,2 +1,6 @@
|
|
|
1
1
|
/** AI 에이전트용 컴포넌트 메타데이터 타입 */
|
|
2
|
-
|
|
2
|
+
/**
|
|
3
|
+
* 컴포넌트 카테고리 — `src/components/` 하위 디렉토리명과 동일.
|
|
4
|
+
* 타입과 런타임 값을 한 곳에서 정의해 추가/변경 시 동기화 누락을 막는다.
|
|
5
|
+
*/
|
|
6
|
+
export const COMPONENT_CATEGORIES = ['action', 'data-display', 'feedback-and-status', 'forms-and-input', 'image-and-icons', 'layout', 'navigation', 'overlays'];
|
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
/** AI 에이전트용 컴포넌트 메타데이터 타입 */
|
|
2
|
-
/**
|
|
3
|
-
|
|
2
|
+
/**
|
|
3
|
+
* 컴포넌트 카테고리 — `src/components/` 하위 디렉토리명과 동일.
|
|
4
|
+
* 타입과 런타임 값을 한 곳에서 정의해 추가/변경 시 동기화 누락을 막는다.
|
|
5
|
+
*/
|
|
6
|
+
export declare const COMPONENT_CATEGORIES: readonly ["action", "data-display", "feedback-and-status", "forms-and-input", "image-and-icons", "layout", "navigation", "overlays"];
|
|
7
|
+
export type ComponentCategory = (typeof COMPONENT_CATEGORIES)[number];
|
|
4
8
|
export interface ComponentMeta {
|
|
5
9
|
category: ComponentCategory;
|
|
6
10
|
aliases: string[];
|
|
@@ -1,2 +1,15 @@
|
|
|
1
1
|
/** AI 에이전트용 컴포넌트 메타데이터 타입 */
|
|
2
|
-
|
|
2
|
+
/**
|
|
3
|
+
* 컴포넌트 카테고리 — `src/components/` 하위 디렉토리명과 동일.
|
|
4
|
+
* 타입과 런타임 값을 한 곳에서 정의해 추가/변경 시 동기화 누락을 막는다.
|
|
5
|
+
*/
|
|
6
|
+
export const COMPONENT_CATEGORIES = [
|
|
7
|
+
'action',
|
|
8
|
+
'data-display',
|
|
9
|
+
'feedback-and-status',
|
|
10
|
+
'forms-and-input',
|
|
11
|
+
'image-and-icons',
|
|
12
|
+
'layout',
|
|
13
|
+
'navigation',
|
|
14
|
+
'overlays',
|
|
15
|
+
];
|
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
/** AI 에이전트용 컴포넌트 메타데이터 타입 */
|
|
2
|
-
/**
|
|
3
|
-
|
|
2
|
+
/**
|
|
3
|
+
* 컴포넌트 카테고리 — `src/components/` 하위 디렉토리명과 동일.
|
|
4
|
+
* 타입과 런타임 값을 한 곳에서 정의해 추가/변경 시 동기화 누락을 막는다.
|
|
5
|
+
*/
|
|
6
|
+
export declare const COMPONENT_CATEGORIES: readonly ["action", "data-display", "feedback-and-status", "forms-and-input", "image-and-icons", "layout", "navigation", "overlays"];
|
|
7
|
+
export type ComponentCategory = (typeof COMPONENT_CATEGORIES)[number];
|
|
4
8
|
export interface ComponentMeta {
|
|
5
9
|
category: ComponentCategory;
|
|
6
10
|
aliases: string[];
|
|
@@ -3080,6 +3080,7 @@ button {
|
|
|
3080
3080
|
display: flex;
|
|
3081
3081
|
flex-direction: column;
|
|
3082
3082
|
gap: 4px;
|
|
3083
|
+
width: max-content;
|
|
3083
3084
|
max-width: 320px;
|
|
3084
3085
|
overflow-wrap: anywhere;
|
|
3085
3086
|
font-family: var(--font-families-commerce-sans);
|
|
@@ -5738,6 +5739,14 @@ button {
|
|
|
5738
5739
|
opacity: 0;
|
|
5739
5740
|
cursor: pointer;
|
|
5740
5741
|
}
|
|
5742
|
+
.ncua-image-file-input__empty-slot-wrapper .ncua-tooltip .ncua-tooltip__bg {
|
|
5743
|
+
left: 50%;
|
|
5744
|
+
right: auto;
|
|
5745
|
+
transform: translateX(-50%);
|
|
5746
|
+
width: max-content;
|
|
5747
|
+
max-width: 320px;
|
|
5748
|
+
white-space: nowrap;
|
|
5749
|
+
}
|
|
5741
5750
|
.ncua-image-file-input__preview-container {
|
|
5742
5751
|
position: relative;
|
|
5743
5752
|
border: 1px dashed var(--gray-200);
|