@weing-dev/ui-kit-primitive 0.4.5 → 0.5.0
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/README.md +6 -0
- package/dist/{Icon-DExqF865.js → Icon-DEdvzMs-.js} +1 -1
- package/dist/{color-B71xRiyK.js → baseColor-DYa5_IOB.js} +3 -120
- package/dist/calendar.js +12 -12
- package/dist/chart.css +1 -0
- package/dist/chart.d.ts +6 -2
- package/dist/chart.js +532 -85
- package/dist/color-qJrSCDan.js +155 -0
- package/dist/components/Calendar/Calendar.d.ts +1 -55
- package/dist/components/Calendar/Calendar.type.d.ts +61 -0
- package/dist/components/Cascader/Cascader.d.ts +2 -36
- package/dist/components/Cascader/Cascader.type.d.ts +37 -0
- package/dist/components/Chart/Chart.context.d.ts +9 -0
- package/dist/components/Chart/Chart.hooks.d.ts +4 -0
- package/dist/components/Chart/Chart.options.d.ts +24 -0
- package/dist/components/Chart/Chart.palette.d.ts +20 -0
- package/dist/components/Chart/Chart.preset.d.ts +7 -0
- package/dist/components/Chart/Chart.register.d.ts +1 -0
- package/dist/components/Chart/Chart.style.d.ts +21 -0
- package/dist/components/Chart/Chart.theme.d.ts +9 -0
- package/dist/components/Chart/Chart.type.d.ts +114 -0
- package/dist/components/Chart/ChartFrame.d.ts +14 -0
- package/dist/components/Chart/ChartRenderer.d.ts +11 -0
- package/dist/components/Chart/charts/BarChart.d.ts +3 -0
- package/dist/components/Chart/charts/DoughnutChart.d.ts +3 -0
- package/dist/components/Chart/charts/LineChart.d.ts +3 -0
- package/dist/components/Chart/charts/PieChart.d.ts +3 -0
- package/dist/components/Form/Dropdown/Dropdown.d.ts +1 -47
- package/dist/components/Form/Dropdown/Dropdown.type.d.ts +48 -0
- package/dist/components/Form/TextArea/TextArea.d.ts +1 -18
- package/dist/components/Form/TextArea/TextArea.type.d.ts +19 -0
- package/dist/components/Form/TextInput/TextInput.d.ts +1 -17
- package/dist/components/Form/TextInput/TextInput.type.d.ts +18 -0
- package/dist/components/Thumbnail/Thumbnail.context.d.ts +38 -3
- package/dist/components/Thumbnail/Thumbnail.d.ts +6 -9
- package/dist/components/Thumbnail/thumbnailImage.util.d.ts +13 -0
- package/dist/components/TimeInput/TimeInput.d.ts +1 -27
- package/dist/components/TimeInput/TimeInput.type.d.ts +27 -0
- package/dist/display.css +1 -1
- package/dist/display.js +2248 -2073
- package/dist/entry/chart.d.ts +6 -2
- package/dist/entry/components.d.ts +1 -2
- package/dist/feedback.js +2 -2
- package/dist/form.js +463 -462
- package/dist/icon.js +2 -2
- package/dist/index.css +1 -1
- package/dist/index.js +4904 -4786
- package/dist/index.umd.cjs +22 -22
- package/dist/navigation.js +41 -40
- package/dist/styles/color.d.ts +30 -0
- package/dist/video-player.js +83 -83
- package/docs/subpath-imports.md +80 -0
- package/package.json +5 -4
- package/dist/components/Chart/Chart.d.ts +0 -19
- /package/dist/components/Cascader/{Cacader.data.d.ts → Cascader.data.d.ts} +0 -0
package/dist/entry/chart.d.ts
CHANGED
|
@@ -1,2 +1,6 @@
|
|
|
1
|
-
export { default as
|
|
2
|
-
export {};
|
|
1
|
+
export { default as BarChart } from '../components/Chart/charts/BarChart';
|
|
2
|
+
export { default as LineChart } from '../components/Chart/charts/LineChart';
|
|
3
|
+
export { default as PieChart } from '../components/Chart/charts/PieChart';
|
|
4
|
+
export { default as DoughnutChart } from '../components/Chart/charts/DoughnutChart';
|
|
5
|
+
export { ChartThemeProvider } from '../components/Chart/Chart.theme';
|
|
6
|
+
export type { BarChartProps, LineChartProps, PieChartProps, DoughnutChartProps, ChartBaseProps, ChartThemeValue, ChartPreset, ChartStyleDefaults, SimpleDatum, ChartSeries, SeriesData, CategoricalData, ProportionData, PaletteInput, } from '../components/Chart/Chart.type';
|
|
@@ -46,8 +46,7 @@ export { default as LazyImage } from '../components/LazyImage/LazyImage';
|
|
|
46
46
|
/** Calendar */
|
|
47
47
|
export { default as Calendar } from '../components/Calendar/Calendar';
|
|
48
48
|
export { CalendarContext } from '../components/Calendar/Calendar.context';
|
|
49
|
-
/** Chart */
|
|
50
|
-
export { default as Chart } from '../components/Chart/Chart';
|
|
49
|
+
/** Chart — 타입별 컴포넌트는 entry/chart.ts 에서 export (BarChart/LineChart/PieChart/DoughnutChart) */
|
|
51
50
|
/** Quill Editor */
|
|
52
51
|
export { default as Editor } from '../components/Editor/Editor';
|
|
53
52
|
/** Table */
|
package/dist/feedback.js
CHANGED
|
@@ -102,7 +102,7 @@ const be = (t) => {
|
|
|
102
102
|
} = t, {
|
|
103
103
|
id: n,
|
|
104
104
|
dimmedDisabled: c
|
|
105
|
-
} = d.
|
|
105
|
+
} = d.use(ce), r = re("Dimmed", o.className);
|
|
106
106
|
let l;
|
|
107
107
|
e[0] !== c || e[1] !== n || e[2] !== s ? (l = !c && {
|
|
108
108
|
onClick: s,
|
|
@@ -131,7 +131,7 @@ const be = (t) => {
|
|
|
131
131
|
} = t, {
|
|
132
132
|
id: n,
|
|
133
133
|
bodyScroll: c
|
|
134
|
-
} = d.
|
|
134
|
+
} = d.use(ce), r = "manual", l = re("Layer", o.className, {
|
|
135
135
|
bodyScroll: c
|
|
136
136
|
});
|
|
137
137
|
let i;
|