neko-ui 2.1.2 → 2.1.4
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/lib/index.d.ts +3 -1
- package/lib/index.js +1 -1
- package/package.json +3 -3
package/lib/index.d.ts
CHANGED
|
@@ -34,13 +34,15 @@ export { default as Tag, type TagElement, type TagProps } from './tag';
|
|
|
34
34
|
export { default as theme, type ColorScheme, type ThemeOption, generateTheme, toneColor, } from './theme';
|
|
35
35
|
export { default as Tree, type TreeElement, type TreeMultipleElement, type TreeMultipleProps, type TreeMultipleSchemaElement, type TreeMultipleSchemaProps, type TreeMultipleStringElement, type TreeMultipleStringProps, type TreeProps, type TreeSchemaElement, type TreeSchemaProps, type TreeStringElement, type TreeStringProps, } from './tree';
|
|
36
36
|
export { default as Typography, type TypographyElement, type TypographyProps } from './typography';
|
|
37
|
+
export { default as dayjs } from './date-picker/dayjs';
|
|
37
38
|
import { css, cx, injectGlobal } from '@moneko/css';
|
|
38
|
-
import { FieldName, Size, Status, fromSchema, generateTheme, getOptions, toneColor } from 'neko-ui';
|
|
39
|
+
import { FieldName, Size, Status, dayjs, fromSchema, generateTheme, getOptions, toneColor } from 'neko-ui';
|
|
39
40
|
import type { AvatarElement, AvatarGroupElement, BackTopElement, ButtonElement, CaptureScreenElement, CarouselElement, CheckboxBoolElement, CheckboxGroupElement, CodeElement, ColorPaletteElement, ColorPickerElement, CronElement, DatePickerElement, DropdownElement, DropdownMultipleElement, EmptyElement, HighlightTextElement, ImgElement, InputElement, InputNumberElement, MdElement, MenuElement, MenuMultipleElement, PopoverElement, RadioElement, SegmentedElement, SelectElement, SelectMultipleElement, SkeletonElement, SpinElement, SwitchElement, TableElement, TabsElement, TagElement, TreeElement, TreeMultipleElement, TreeMultipleSchemaElement, TreeMultipleStringElement, TreeSchemaElement, TreeStringElement, TypographyElement } from '.';
|
|
40
41
|
declare const normal: {
|
|
41
42
|
FieldName: typeof FieldName;
|
|
42
43
|
Size: typeof Size;
|
|
43
44
|
Status: typeof Status;
|
|
45
|
+
dayjs: typeof dayjs;
|
|
44
46
|
fromSchema: typeof fromSchema;
|
|
45
47
|
generateTheme: typeof generateTheme;
|
|
46
48
|
getOptions: typeof getOptions;
|