sera-components 1.1.5 → 1.1.8
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/{components/src/basic → basic}/Language.d.ts +1 -1
- package/dist/{components/src/basic → basic}/Menu.d.ts +1 -1
- package/dist/data/display/EnumDisplay.d.ts +2 -0
- package/dist/{components/src/data → data}/display/index.d.ts +2 -2
- package/dist/{components/src/data → data}/inputs/ForeignKeyInput.d.ts +1 -1
- package/dist/{components/src/data → data}/inputs/index.d.ts +1 -1
- package/dist/{components/src/form → form}/Form.d.ts +1 -1
- package/dist/{components/src/form → form}/FormItem.d.ts +1 -1
- package/dist/index.js +293 -282
- package/dist/index.umd.cjs +5 -5
- package/dist/{components/src/table → table}/Table.d.ts +1 -1
- package/dist/{components/src/table → table}/makeColumns.d.ts +1 -1
- package/dist/{components/src/view → view}/View.d.ts +1 -1
- package/dist/{components/src/view → view}/ViewItem.d.ts +1 -1
- package/dist/{components/src/view → view}/ViewNestedPropertyItem.d.ts +1 -1
- package/dist/{components/src/view → view}/ViewTab.d.ts +1 -1
- package/package.json +7 -7
- /package/dist/{components/src/basic → basic}/CountryFlag.d.ts +0 -0
- /package/dist/{components/src/basic → basic}/Locale.d.ts +0 -0
- /package/dist/{components/src/basic → basic}/Transition.d.ts +0 -0
- /package/dist/{components/src/basic → basic}/index.d.ts +0 -0
- /package/dist/{components/src/data → data}/display/BooleanDisplay.d.ts +0 -0
- /package/dist/{components/src/data → data}/display/DateTimeDisplay.d.ts +0 -0
- /package/dist/{components/src/data → data}/display/ForeignKeyDisplay.d.ts +0 -0
- /package/dist/{components/src/data → data}/display/TextDisplay.d.ts +0 -0
- /package/dist/{components/src/data → data}/index.d.ts +0 -0
- /package/dist/{components/src/data → data}/inputs/BooleanInput.d.ts +0 -0
- /package/dist/{components/src/data → data}/inputs/NumberInput.d.ts +0 -0
- /package/dist/{components/src/data → data}/inputs/PhoneNumberInput.d.ts +0 -0
- /package/dist/{components/src/data → data}/inputs/TextInput.d.ts +0 -0
- /package/dist/{components/src/form → form}/FormItemLabel.d.ts +0 -0
- /package/dist/{components/src/form → form}/index.d.ts +0 -0
- /package/dist/{components/src/index.d.ts → index.d.ts} +0 -0
- /package/dist/{components/src/misc → misc}/index.d.ts +0 -0
- /package/dist/{components/src/misc → misc}/trie.d.ts +0 -0
- /package/dist/{components/src/misc → misc}/utils.d.ts +0 -0
- /package/dist/{components/src/table → table}/EmbeddedTable.d.ts +0 -0
- /package/dist/{components/src/table → table}/TableAction.d.ts +0 -0
- /package/dist/{components/src/table → table}/TableContent.d.ts +0 -0
- /package/dist/{components/src/table → table}/TablePagination.d.ts +0 -0
- /package/dist/{components/src/table → table}/index.d.ts +0 -0
- /package/dist/{components/src/view → view}/MultiTabView.d.ts +0 -0
- /package/dist/{components/src/view → view}/index.d.ts +0 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { ClassName, DataProperty, DataType, DB, ObjectProperty } from '
|
|
2
|
-
import { NoQueryArgsPathDef } from '
|
|
1
|
+
import { ClassName, DataProperty, DataType, DB, ObjectProperty } from 'sera-db';
|
|
2
|
+
import { NoQueryArgsPathDef } from 'sera-route';
|
|
3
3
|
import { DateDisplay, DateTimeDisplay, DateTimeHideTimeDisplay } from './DateTimeDisplay';
|
|
4
4
|
export { SingleForeignKeyDisplay, MultiForeignKeyDisplay } from './ForeignKeyDisplay';
|
|
5
5
|
export type EntityRoute = NoQueryArgsPathDef<{
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { InputInterface } from '.';
|
|
2
|
-
import { Record } from '
|
|
2
|
+
import { Record } from 'sera-db';
|
|
3
3
|
export declare const SingleForeignKeyInput: (<T>(_props: InputInterface<T>) => import("react/jsx-runtime").JSX.Element) & {
|
|
4
4
|
displayName: string;
|
|
5
5
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { DraftRecord, GenericRecord, MultiLingualString, Schema, SchemaType, Table } from '
|
|
1
|
+
import { DraftRecord, GenericRecord, MultiLingualString, Schema, SchemaType, Table } from 'sera-db';
|
|
2
2
|
import { FormItemLayout } from './FormItem';
|
|
3
3
|
export interface CustomField {
|
|
4
4
|
name: string;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { DataProperty, DraftRecord, GenericRecord, ObjectProperty, Table, validators } from '
|
|
1
|
+
import { DataProperty, DraftRecord, GenericRecord, ObjectProperty, Table, validators } from 'sera-db';
|
|
2
2
|
import { InputInterface } from '../data/inputs';
|
|
3
3
|
interface FormItemHorizontalLayout {
|
|
4
4
|
type: "horizontal";
|