@giteeteam/apps-team-components 0.3.4-remove-editor-0.10 → 0.3.4-remove-editor-0.12
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/cells/date/BaseField.d.ts +2 -2
- package/dist/cells/dropdown/BaseField.d.ts +2 -2
- package/dist/cells/priority/index.d.ts +1 -1
- package/dist/common/index.d.ts +0 -3
- package/dist/icons/index.d.ts +0 -2
- package/dist/index.d.ts +0 -5
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/main.css +189 -28436
- package/dist/main.css.map +1 -1
- package/package.json +4 -3
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { DatePickerProps } from '@/osui';
|
|
3
|
-
import { DateValue } from '@/lib/types/dayjs.d';
|
|
4
2
|
import { FieldProps } from '@/fields/base-component/types';
|
|
3
|
+
import { DateValue } from '@/lib/types/dayjs.d';
|
|
4
|
+
import { DatePickerProps } from '@/osui';
|
|
5
5
|
export declare enum DateType {
|
|
6
6
|
dateTime = "second",
|
|
7
7
|
date = "date",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { SelectProps } from '@/osui';
|
|
3
|
-
import { Item } from '@/lib/types/models';
|
|
4
2
|
import { FieldProps } from '@/fields/base-component/types';
|
|
3
|
+
import { Item } from '@/lib/types/models';
|
|
4
|
+
import { SelectProps } from '@/osui';
|
|
5
5
|
export interface selectValue {
|
|
6
6
|
label: string;
|
|
7
7
|
value: string | number;
|
package/dist/common/index.d.ts
CHANGED
|
@@ -2,7 +2,6 @@ import EmptyField from './EmptyField';
|
|
|
2
2
|
import OverflowTooltip from './OverflowTooltip';
|
|
3
3
|
export { EmptyField, OverflowTooltip };
|
|
4
4
|
export * as BaseTable from './base-table';
|
|
5
|
-
export { default as ColumnsSettings } from './columns-settings/ColumnsSettings';
|
|
6
5
|
export type { cacheColumnWidthInterface } from './columns-settings/types';
|
|
7
6
|
export { default as DatePicker } from './date/DatePicker';
|
|
8
7
|
export { default as FieldErrorBoundary } from './FieldErrorBoundary';
|
|
@@ -10,7 +9,5 @@ export { default as FormField } from './form-field/FormField';
|
|
|
10
9
|
export { addErrorMessage } from './form-field/FormField';
|
|
11
10
|
export { default as FormikFieldTouched } from './formik-field-touched/FormikFieldTouched';
|
|
12
11
|
export { default as ItemIcon } from './item-icon/ItemIcon';
|
|
13
|
-
export { default as SearchPopoverSelect } from './search-select/SearchPopoverSelect';
|
|
14
|
-
export { default as StructureTable } from './structure-table';
|
|
15
12
|
export { default as UploadFile } from './UploadFile';
|
|
16
13
|
export { UserAvatar, UserField } from './user-field';
|
package/dist/icons/index.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import Icon from '@ant-design/icons';
|
|
2
1
|
export { default as AddIcon } from './Add.svg';
|
|
3
2
|
export { default as AddChart } from './AddChart.svg';
|
|
4
3
|
export { default as AddCircleIcon } from './AddCircle.svg';
|
|
@@ -45,4 +44,3 @@ export { default as UserIcon } from './User.svg';
|
|
|
45
44
|
export { default as WatchersBlankIcon } from './WatchersBlankIcon.svg';
|
|
46
45
|
export { default as WatchIcon } from './WatchIcon.svg';
|
|
47
46
|
export { default as WorkspaceTitleIcon } from './WorkspaceTitle.svg';
|
|
48
|
-
export default Icon;
|
package/dist/index.d.ts
CHANGED
|
@@ -35,12 +35,7 @@ import UpdatedAtCell from './cells/updated-at';
|
|
|
35
35
|
import UpdatedByCell from './cells/updated-by';
|
|
36
36
|
import UserCell from './cells/user';
|
|
37
37
|
import VersionCell from './cells/version';
|
|
38
|
-
import './_app.global.less';
|
|
39
38
|
export { ActorsCell, AnnexCell, AssigneeCell, BindWorkspaceCell, BoardCell, CardTypeCell, CheckboxCell, CreatedAtCell, CreatedByCell, DataQuoteCell, DateCell, DateRangeCell, DropdownCell, FileCell, FormulaCell, ItemGroupCell, ItemTypeCell, KeyCell, LongTextCell, NameCell, NumberCell, PriorityCell, RadioCell, ScriptCell, SecurityLevelCell, SprintCell, StatusCell, StoryPointCell, TagCell, TextCell, TimeCell, TimeRangeCell, TreeCell, UpdatedAtCell, UpdatedByCell, UserCell, VersionCell, };
|
|
40
39
|
export { default as TableCell } from './cells/tableCellMapping';
|
|
41
|
-
export { default as FilterPanel } from './common/filters/filter-query/FilterPanel';
|
|
42
|
-
export { default as StructureView } from './common/structure/index';
|
|
43
40
|
export { LibraryProvider } from './lib/contexts';
|
|
44
|
-
export { useFieldsWithFieldCellProps, useUsedScreenFields } from './lib/customFields/hooks';
|
|
45
41
|
export { useDataQuoteStore } from './lib/hooks/useDataQuoteStore';
|
|
46
|
-
export { useBusinessFields } from './lib/kanban/hooks';
|