@epam/ai-dial-ui-kit 0.13.0-dev.37 → 0.13.0-dev.39
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/{JsonEditor-Db5mSptr.cjs → JsonEditor-ByXdw2DW.cjs} +1 -1
- package/dist/{JsonEditor-fs-5UieL.js → JsonEditor-DsxGV74b.js} +1 -1
- package/dist/{MarkdownEditor-BhSYImYi.js → MarkdownEditor-B371qY-K.js} +1 -1
- package/dist/{MarkdownEditor-DKZSQLLx.cjs → MarkdownEditor-yLqLTK49.cjs} +1 -1
- package/dist/components-manifest.json +25 -2
- package/dist/dial-ui-kit.cjs.js +1 -1
- package/dist/dial-ui-kit.es.js +164 -160
- package/dist/{index-CMnjEPWR.cjs → index-DiKB9zEP.cjs} +30 -30
- package/dist/{index-B46o0BgF.js → index-g9PIrkp9.js} +7800 -7543
- package/dist/src/components/New/Calendar/Calendar.d.ts +2 -0
- package/dist/src/index.d.ts +6 -0
- package/package.json +1 -1
|
@@ -15,6 +15,7 @@ export interface CalendarProps {
|
|
|
15
15
|
maxDate?: Date;
|
|
16
16
|
/** BCP 47 locale tag used to localize month/weekday names and date formatting. */
|
|
17
17
|
locale?: string;
|
|
18
|
+
fieldClassName?: string;
|
|
18
19
|
}
|
|
19
20
|
/**
|
|
20
21
|
* A date/time picker supporting four selection modes.
|
|
@@ -46,5 +47,6 @@ export interface CalendarProps {
|
|
|
46
47
|
* @param [minDate] - Earliest selectable date (date/datetime modes)
|
|
47
48
|
* @param [maxDate] - Latest selectable date (date/datetime modes)
|
|
48
49
|
* @param [locale="en-GB"] - BCP 47 locale tag used to localize month/weekday names and date formatting
|
|
50
|
+
* @param [fieldClassName] - Additional classes merged onto the trigger field, overriding conflicting defaults
|
|
49
51
|
*/
|
|
50
52
|
export declare const Calendar: FC<CalendarProps>;
|
package/dist/src/index.d.ts
CHANGED
|
@@ -171,3 +171,9 @@ export { InfoButton } from './components/New/InfoButton/InfoButton';
|
|
|
171
171
|
export type { InfoButtonProps } from './components/New/InfoButton/InfoButton';
|
|
172
172
|
export type { LabelProps } from './components/New/Label/Label';
|
|
173
173
|
export { Label } from './components/New/Label/Label';
|
|
174
|
+
export { Textarea } from './components/New/Textarea/Textarea';
|
|
175
|
+
export { Input } from './components/New/Input/Input';
|
|
176
|
+
export type { InputProps } from './components/New/Input/Input';
|
|
177
|
+
export type { TextareaProps } from './components/New/Textarea/Textarea';
|
|
178
|
+
export type { CaptionTextProps } from './components/New/CaptionText/CaptionText';
|
|
179
|
+
export { CaptionText, ErrorText, } from './components/New/CaptionText/CaptionText';
|