sera-components 1.1.4 → 1.1.6
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/{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/{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 +1 -1
- /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";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { FetchResult, ObservableQuery } from '
|
|
1
|
+
import { FetchResult, ObservableQuery } from 'sera-db';
|
|
2
2
|
import { SeraColumn } from './makeColumns';
|
|
3
3
|
import { SeraActionConfig } from './TableAction';
|
|
4
4
|
export interface SeraTableProps<ID extends string | number, Q extends {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { DataProperty, DB, DraftEmbeddedRecord, DraftRecord, EmbeddedSchema, GenericEmbeddedRecord, GenericRecord, ObjectProperty, Schema, SchemaType } from '
|
|
1
|
+
import { DataProperty, DB, DraftEmbeddedRecord, DraftRecord, EmbeddedSchema, GenericEmbeddedRecord, GenericRecord, ObjectProperty, Schema, SchemaType } from 'sera-db';
|
|
2
2
|
import { DisplayInterface, EntityRoutes } from '../data/display';
|
|
3
3
|
type DOP = DataProperty | ObjectProperty;
|
|
4
4
|
/**
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { DataProperty, DraftRecord, GenericRecord, ObjectProperty, Schema, SchemaType, Table } from '
|
|
1
|
+
import { DataProperty, DraftRecord, GenericRecord, ObjectProperty, Schema, SchemaType, Table } from 'sera-db';
|
|
2
2
|
import { DisplayInterface, EntityRoutes } from '../data/display';
|
|
3
3
|
export interface FieldGroup<ID extends string | number, R extends GenericRecord<ID, DR>, DR extends DraftRecord<ID>, PF extends keyof R, F extends keyof DR, ST extends SchemaType<ID, R, DR, PF, F>> {
|
|
4
4
|
name?: string;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { DataProperty, DraftRecord, GenericRecord, ObjectProperty, Table } from '
|
|
1
|
+
import { DataProperty, DraftRecord, GenericRecord, ObjectProperty, Table } from 'sera-db';
|
|
2
2
|
import { DisplayInterface, EntityRoutes } from '../data';
|
|
3
3
|
export interface ViewItemProps<ID extends string | number, R extends GenericRecord<ID, DR>, DR extends DraftRecord<ID>> {
|
|
4
4
|
store: Table<ID, R, DR>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { DataProperty, DraftRecord, GenericRecord, ObjectProperty, Table } from '
|
|
1
|
+
import { DataProperty, DraftRecord, GenericRecord, ObjectProperty, Table } from 'sera-db';
|
|
2
2
|
import { DisplayInterface, EntityRoutes } from '../data';
|
|
3
3
|
export interface ViewNestedPropertyItemProps<ID extends string | number, R extends GenericRecord<ID, DR>, DR extends DraftRecord<ID>> {
|
|
4
4
|
store: Table<ID, R, DR>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { DraftRecord, GenericRecord, Schema, SchemaType, Table } from '
|
|
1
|
+
import { DraftRecord, GenericRecord, Schema, SchemaType, Table } from 'sera-db';
|
|
2
2
|
import { FieldGroup } from './View';
|
|
3
3
|
import { EntityRoutes } from '../data';
|
|
4
4
|
export interface SeraViewTabProps<ID extends string | number, R extends GenericRecord<ID, DR>, DR extends DraftRecord<ID>, PF extends keyof R, F extends keyof DR, ST extends SchemaType<ID, R, DR, PF, F>> {
|
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|