@univerjs/sheets-data-validation 0.2.2 → 0.2.4-alpha.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 +12 -4
- package/lib/cjs/index.js +2 -2
- package/lib/es/index.js +2675 -2559
- package/lib/index.css +1 -1
- package/lib/locale/en-US.json +3 -0
- package/lib/locale/ru-RU.json +3 -0
- package/lib/locale/vi-VN.json +165 -0
- package/lib/locale/zh-CN.json +3 -0
- package/lib/locale/zh-TW.json +165 -0
- package/lib/types/commands/commands/data-validation.command.d.ts +1 -2
- package/lib/types/controllers/dv-auto-fill.controller.d.ts +1 -2
- package/lib/types/controllers/dv-copy-paste.controller.d.ts +1 -2
- package/lib/types/controllers/dv-model.controller.d.ts +1 -2
- package/lib/types/controllers/dv-ref-range.controller.d.ts +1 -2
- package/lib/types/controllers/dv-render.controller.d.ts +1 -3
- package/lib/types/controllers/dv.controller.d.ts +4 -4
- package/lib/types/controllers/dv.menu.d.ts +1 -1
- package/lib/types/locale/vi-VN.d.ts +4 -0
- package/lib/types/locale/zh-CN.d.ts +3 -0
- package/lib/types/locale/zh-TW.d.ts +4 -0
- package/lib/types/mobile-plugin.d.ts +1 -2
- package/lib/types/models/sheet-data-validation-manager.d.ts +1 -2
- package/lib/types/plugin.d.ts +1 -2
- package/lib/types/services/data-validation-panel.service.d.ts +1 -2
- package/lib/types/services/dropdown-manager.service.d.ts +2 -2
- package/lib/types/services/dv.service.d.ts +2 -2
- package/lib/types/utils/date.d.ts +2 -2
- package/lib/types/validators/date-validator.d.ts +17 -15
- package/lib/types/views/date-dropdown/index.d.ts +1 -1
- package/lib/types/views/show-time/index.d.ts +11 -0
- package/lib/umd/index.js +2 -2
- package/package.json +26 -26
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
2
|
import { IDropdownComponentProps } from '../../services/dropdown-manager.service';
|
|
3
3
|
|
|
4
|
-
export declare function DateDropdown(props: IDropdownComponentProps): React.JSX.Element |
|
|
4
|
+
export declare function DateDropdown(props: IDropdownComponentProps): React.JSX.Element | undefined;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { IDataValidationRuleOptions } from '@univerjs/core';
|
|
2
|
+
import { default as React } from 'react';
|
|
3
|
+
|
|
4
|
+
export interface IDateShowTimeOptionProps {
|
|
5
|
+
value: IDataValidationRuleOptions;
|
|
6
|
+
onChange: (value: IDataValidationRuleOptions) => void;
|
|
7
|
+
}
|
|
8
|
+
export declare function DateShowTimeOption(props: IDateShowTimeOptionProps): React.JSX.Element;
|
|
9
|
+
export declare namespace DateShowTimeOption {
|
|
10
|
+
var componentKey: string;
|
|
11
|
+
}
|