kahuna-base-react-components 1.3.1 → 1.3.3
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/index.d.ts +2 -1
- package/dist/index.esm.js +2 -2
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/types.d.ts +25 -2
- package/package.json +1 -1
- package/src/components/KSelectRangeDate/KSelectRangeDate.tsx +60 -22
- package/src/components/KSelectRangeDate/KSelectRangeDateCustom.css +94 -56
- package/src/index.ts +3 -1
package/dist/index.d.ts
CHANGED
|
@@ -11,4 +11,5 @@ import KTooltip from "./components/KTooltip";
|
|
|
11
11
|
import KSliderLabel from "./components/KSliderLabel";
|
|
12
12
|
import KCodeInput from "./components/KCodeInput";
|
|
13
13
|
import KSelectRange from "./components/KSelectRange";
|
|
14
|
-
|
|
14
|
+
import KSelectRangeDate from "./components/KSelectRangeDate";
|
|
15
|
+
export { KButton, KSpan, KLogo, KTitleSpan, KInput, KTextArea, KDropdown, KSlider, KSelectDate, KTooltip, KSliderLabel, KCodeInput, KSelectRange, KSelectRangeDate };
|