@kokimoki/app 1.13.0 → 1.15.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/dist/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const KOKIMOKI_APP_VERSION = "1.13.0";
1
+ export declare const KOKIMOKI_APP_VERSION = "1.15.0";
package/dist/version.js CHANGED
@@ -1 +1 @@
1
- export const KOKIMOKI_APP_VERSION = "1.13.0";
1
+ export const KOKIMOKI_APP_VERSION = "1.15.0";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kokimoki/app",
3
- "version": "1.13.0",
3
+ "version": "1.15.0",
4
4
  "type": "module",
5
5
  "description": "Kokimoki app",
6
6
  "main": "dist/index.js",
@@ -35,7 +35,8 @@
35
35
  "events": "^3.3.0",
36
36
  "farmhash-modern": "^1.1.0",
37
37
  "typed-emitter": "^2.1.0",
38
- "valtio": "^1.13.1",
39
- "valtio-yjs": "^0.5.1"
38
+ "valtio": "^2.1.5",
39
+ "valtio-yjs": "^0.6.0",
40
+ "yjs": "^13.6.27"
40
41
  }
41
42
  }
package/dist/fields.d.ts DELETED
@@ -1,95 +0,0 @@
1
- export interface FieldOptions {
2
- label?: string;
3
- }
4
- export declare abstract class Field<T> {
5
- readonly options: FieldOptions;
6
- constructor(options: FieldOptions);
7
- abstract get value(): T;
8
- abstract get schema(): any;
9
- }
10
- export declare class BooleanField extends Field<boolean> {
11
- value: boolean;
12
- constructor(value: boolean, options?: FieldOptions);
13
- get schema(): {
14
- type: string;
15
- default: boolean;
16
- };
17
- }
18
- export declare class ConstField<T extends string> extends Field<string extends T ? never : T> {
19
- value: string extends T ? never : T;
20
- constructor(value: string extends T ? never : T, options?: FieldOptions);
21
- get schema(): {
22
- const: string extends T ? never : T;
23
- };
24
- }
25
- export declare class ImageField extends Field<string> {
26
- value: string;
27
- constructor(value: string, options?: FieldOptions);
28
- get schema(): {
29
- type: string;
30
- default: string;
31
- };
32
- }
33
- export declare class TextField extends Field<string> {
34
- value: string;
35
- constructor(value: string, options?: FieldOptions);
36
- get schema(): {
37
- type: string;
38
- default: string;
39
- };
40
- }
41
- export declare class EnumField<T extends Record<string, string>> extends Field<keyof T> {
42
- enumValues: T;
43
- value: keyof T;
44
- constructor(enumValues: T, value: keyof T, options?: FieldOptions);
45
- get schema(): {
46
- enum: string[];
47
- };
48
- }
49
- export declare class IntegerField extends Field<number> {
50
- value: number;
51
- constructor(value: number, options?: FieldOptions);
52
- get schema(): {
53
- type: string;
54
- default: number;
55
- };
56
- }
57
- export declare class FloatField extends Field<number> {
58
- value: number;
59
- constructor(value: number, options?: FieldOptions);
60
- get schema(): {
61
- type: string;
62
- default: number;
63
- };
64
- }
65
- export declare class FormGroup<T extends Record<string, Field<any>>, O extends Record<string, Field<any>>> extends Field<{
66
- [key in keyof T]: T[key]["value"];
67
- } & Partial<{
68
- [key in keyof O]: O[key]["value"];
69
- }>> {
70
- requiredFields: T;
71
- optionalFields: O;
72
- constructor(requiredFields: T, optionalFields?: O, options?: FieldOptions);
73
- get value(): {
74
- [key in keyof T]: T[key]["value"];
75
- } & Partial<{
76
- [key in keyof O]: O[key]["value"];
77
- }>;
78
- get schema(): {
79
- type: string;
80
- properties: any;
81
- required: string[];
82
- };
83
- }
84
- export declare class FormArray<T> extends Field<T[]> {
85
- private factory;
86
- value: Field<T>["value"][];
87
- constructor(factory: () => Field<T>, value: Field<T>["value"][], options?: FieldOptions);
88
- get schema(): {
89
- type: string;
90
- items: any;
91
- default: T[];
92
- };
93
- }
94
- export declare class Form<R extends Record<string, Field<any>>, O extends Record<string, Field<any>>> extends FormGroup<R, O> {
95
- }
package/dist/fields.js DELETED
@@ -1,152 +0,0 @@
1
- const defaultFieldOptions = {};
2
- export class Field {
3
- options;
4
- constructor(options) {
5
- this.options = options;
6
- }
7
- }
8
- export class BooleanField extends Field {
9
- value;
10
- constructor(value, options = defaultFieldOptions) {
11
- super(options);
12
- this.value = value;
13
- }
14
- get schema() {
15
- return {
16
- type: "boolean",
17
- default: this.value,
18
- };
19
- }
20
- }
21
- export class ConstField extends Field {
22
- value;
23
- constructor(value, options = defaultFieldOptions) {
24
- super(options);
25
- this.value = value;
26
- }
27
- get schema() {
28
- return {
29
- const: this.value,
30
- };
31
- }
32
- }
33
- export class ImageField extends Field {
34
- value;
35
- constructor(value, options = defaultFieldOptions) {
36
- super(options);
37
- this.value = value;
38
- }
39
- get schema() {
40
- return {
41
- type: "string",
42
- default: this.value,
43
- };
44
- }
45
- }
46
- export class TextField extends Field {
47
- value;
48
- constructor(value, options = defaultFieldOptions) {
49
- super(options);
50
- this.value = value;
51
- }
52
- get schema() {
53
- return {
54
- type: "string",
55
- default: this.value,
56
- };
57
- }
58
- }
59
- export class EnumField extends Field {
60
- enumValues;
61
- value;
62
- constructor(enumValues, value, options = defaultFieldOptions) {
63
- super(options);
64
- this.enumValues = enumValues;
65
- this.value = value;
66
- }
67
- get schema() {
68
- return {
69
- enum: Object.keys(this.enumValues),
70
- };
71
- }
72
- }
73
- export class IntegerField extends Field {
74
- value;
75
- constructor(value, options = defaultFieldOptions) {
76
- super(options);
77
- this.value = value;
78
- }
79
- get schema() {
80
- return {
81
- type: "integer",
82
- default: this.value,
83
- };
84
- }
85
- }
86
- export class FloatField extends Field {
87
- value;
88
- constructor(value, options = defaultFieldOptions) {
89
- super(options);
90
- this.value = value;
91
- }
92
- get schema() {
93
- return {
94
- type: "number",
95
- default: this.value,
96
- };
97
- }
98
- }
99
- export class FormGroup extends Field {
100
- requiredFields;
101
- optionalFields;
102
- constructor(requiredFields, optionalFields = {}, options = defaultFieldOptions) {
103
- super(options);
104
- this.requiredFields = requiredFields;
105
- this.optionalFields = optionalFields;
106
- }
107
- get value() {
108
- const value = Object.entries(this.requiredFields).reduce((acc, [key, field]) => {
109
- acc[key] = field.value;
110
- return acc;
111
- }, {});
112
- Object.entries(this.optionalFields).forEach(([key, field]) => {
113
- if (field.value !== undefined) {
114
- value[key] = field.value;
115
- }
116
- });
117
- return value;
118
- }
119
- get schema() {
120
- const properties = {};
121
- Object.entries(this.requiredFields).forEach(([key, field]) => {
122
- properties[key] = field.schema;
123
- });
124
- Object.entries(this.optionalFields).forEach(([key, field]) => {
125
- properties[key] = field.schema;
126
- });
127
- return {
128
- type: "object",
129
- properties,
130
- required: Object.keys(this.requiredFields),
131
- };
132
- }
133
- }
134
- export class FormArray extends Field {
135
- factory;
136
- value;
137
- constructor(factory, value, options = defaultFieldOptions) {
138
- super(options);
139
- this.factory = factory;
140
- this.value = value;
141
- }
142
- get schema() {
143
- const field = this.factory();
144
- return {
145
- type: "array",
146
- items: field.schema,
147
- default: this.value,
148
- };
149
- }
150
- }
151
- export class Form extends FormGroup {
152
- }
@@ -1,84 +0,0 @@
1
- export declare namespace KokimokiSchema {
2
- abstract class Generic<T> {
3
- abstract get defaultValue(): T;
4
- abstract set defaultValue(value: T);
5
- }
6
- class Number extends Generic<number> {
7
- defaultValue: number;
8
- constructor(defaultValue?: number);
9
- }
10
- function number(defaultValue?: number): Number;
11
- class String extends Generic<string> {
12
- defaultValue: string;
13
- constructor(defaultValue?: string);
14
- }
15
- function string(defaultValue?: string): String;
16
- class Boolean extends Generic<boolean> {
17
- defaultValue: boolean;
18
- constructor(defaultValue?: boolean);
19
- }
20
- function boolean(defaultValue?: boolean): Boolean;
21
- class Struct<Data extends Record<string, Generic<unknown>>> extends Generic<{
22
- [key in keyof Data]: Data[key]["defaultValue"];
23
- }> {
24
- fields: Data;
25
- constructor(fields: Data);
26
- get defaultValue(): {
27
- [key in keyof Data]: Data[key]["defaultValue"];
28
- };
29
- set defaultValue(value: {
30
- [key in keyof Data]: Data[key]["defaultValue"];
31
- });
32
- }
33
- function struct<Data extends Record<string, Generic<unknown>>>(schema: Data): Struct<Data>;
34
- class Dict<T extends Generic<unknown>> {
35
- schema: T;
36
- defaultValue: {
37
- [key: string]: T["defaultValue"];
38
- };
39
- constructor(schema: T, defaultValue?: {
40
- [key: string]: T["defaultValue"];
41
- });
42
- }
43
- function dict<T extends Generic<unknown>>(schema: T, defaultValue?: {
44
- [key: string]: T["defaultValue"];
45
- }): Dict<T>;
46
- class List<T extends Generic<unknown>> extends Generic<T["defaultValue"][]> {
47
- schema: T;
48
- defaultValue: T["defaultValue"][];
49
- constructor(schema: T, defaultValue?: T["defaultValue"][]);
50
- }
51
- function list<T extends Generic<unknown>>(schema: T, defaultValue?: T["defaultValue"][]): List<T>;
52
- /**
53
- * Nullable
54
- */
55
- class Nullable<T extends Generic<unknown>> extends Generic<T["defaultValue"] | null> {
56
- schema: T;
57
- defaultValue: T["defaultValue"] | null;
58
- constructor(schema: T, defaultValue: T["defaultValue"] | null);
59
- }
60
- function nullable<T extends Generic<unknown>>(schema: T, defaultValue?: T["defaultValue"] | null): Nullable<T>;
61
- class StringEnum<T extends readonly string[]> extends Generic<string> {
62
- readonly options: T;
63
- defaultValue: T[number];
64
- constructor(options: T, defaultValue: T[number]);
65
- }
66
- function stringEnum<T extends readonly string[]>(options: T, defaultValue: T[number]): StringEnum<T>;
67
- class StringConst<T extends string> extends Generic<string> {
68
- readonly defaultValue: T;
69
- constructor(defaultValue: T);
70
- }
71
- function stringConst<T extends string>(defaultValue: T): StringConst<T>;
72
- class AnyOf<T extends readonly Generic<unknown>[]> extends Generic<T[number]["defaultValue"]> {
73
- readonly schemas: T;
74
- defaultValue: T[number]["defaultValue"];
75
- constructor(schemas: T, defaultValue: T[number]["defaultValue"]);
76
- }
77
- function anyOf<T extends readonly Generic<unknown>[]>(schemas: T, defaultValue: T[number]["defaultValue"]): AnyOf<T>;
78
- class Optional<T extends Generic<unknown>> extends Generic<T["defaultValue"] | undefined> {
79
- schema: T;
80
- defaultValue: T["defaultValue"] | undefined;
81
- constructor(schema: T, defaultValue?: T["defaultValue"] | undefined);
82
- }
83
- function optional<T extends Generic<unknown>>(schema: T, defaultValue?: T["defaultValue"] | undefined): Optional<T>;
84
- }
@@ -1,163 +0,0 @@
1
- export var KokimokiSchema;
2
- (function (KokimokiSchema) {
3
- class Generic {
4
- }
5
- KokimokiSchema.Generic = Generic;
6
- class Number extends Generic {
7
- defaultValue;
8
- constructor(defaultValue = 0) {
9
- super();
10
- this.defaultValue = defaultValue;
11
- }
12
- }
13
- KokimokiSchema.Number = Number;
14
- function number(defaultValue = 0) {
15
- return new Number(defaultValue);
16
- }
17
- KokimokiSchema.number = number;
18
- class String extends Generic {
19
- defaultValue;
20
- constructor(defaultValue = "") {
21
- super();
22
- this.defaultValue = defaultValue;
23
- }
24
- }
25
- KokimokiSchema.String = String;
26
- function string(defaultValue = "") {
27
- return new String(defaultValue);
28
- }
29
- KokimokiSchema.string = string;
30
- class Boolean extends Generic {
31
- defaultValue;
32
- constructor(defaultValue = false) {
33
- super();
34
- this.defaultValue = defaultValue;
35
- }
36
- }
37
- KokimokiSchema.Boolean = Boolean;
38
- function boolean(defaultValue = false) {
39
- return new Boolean(defaultValue);
40
- }
41
- KokimokiSchema.boolean = boolean;
42
- class Struct extends Generic {
43
- fields;
44
- constructor(fields) {
45
- super();
46
- this.fields = fields;
47
- }
48
- get defaultValue() {
49
- return Object.entries(this.fields).reduce((acc, [key, field]) => {
50
- acc[key] = field.defaultValue;
51
- return acc;
52
- }, {});
53
- }
54
- set defaultValue(value) {
55
- for (const [key, field] of Object.entries(this.fields)) {
56
- field.defaultValue = value[key];
57
- }
58
- }
59
- }
60
- KokimokiSchema.Struct = Struct;
61
- function struct(schema) {
62
- return new Struct(schema);
63
- }
64
- KokimokiSchema.struct = struct;
65
- class Dict {
66
- schema;
67
- defaultValue;
68
- constructor(schema, defaultValue = {}) {
69
- this.schema = schema;
70
- this.defaultValue = defaultValue;
71
- }
72
- }
73
- KokimokiSchema.Dict = Dict;
74
- function dict(schema, defaultValue = {}) {
75
- return new Dict(schema, defaultValue);
76
- }
77
- KokimokiSchema.dict = dict;
78
- class List extends Generic {
79
- schema;
80
- defaultValue;
81
- constructor(schema, defaultValue = []) {
82
- super();
83
- this.schema = schema;
84
- this.defaultValue = defaultValue;
85
- }
86
- }
87
- KokimokiSchema.List = List;
88
- function list(schema, defaultValue = []) {
89
- return new List(schema, defaultValue);
90
- }
91
- KokimokiSchema.list = list;
92
- /**
93
- * Nullable
94
- */
95
- class Nullable extends Generic {
96
- schema;
97
- defaultValue;
98
- constructor(schema, defaultValue) {
99
- super();
100
- this.schema = schema;
101
- this.defaultValue = defaultValue;
102
- }
103
- }
104
- KokimokiSchema.Nullable = Nullable;
105
- function nullable(schema, defaultValue = null) {
106
- return new Nullable(schema, defaultValue);
107
- }
108
- KokimokiSchema.nullable = nullable;
109
- class StringEnum extends Generic {
110
- options;
111
- defaultValue;
112
- constructor(options, defaultValue) {
113
- super();
114
- this.options = options;
115
- this.defaultValue = defaultValue;
116
- }
117
- }
118
- KokimokiSchema.StringEnum = StringEnum;
119
- function stringEnum(options, defaultValue) {
120
- return new StringEnum(options, defaultValue);
121
- }
122
- KokimokiSchema.stringEnum = stringEnum;
123
- class StringConst extends Generic {
124
- defaultValue;
125
- constructor(defaultValue) {
126
- super();
127
- this.defaultValue = defaultValue;
128
- }
129
- }
130
- KokimokiSchema.StringConst = StringConst;
131
- function stringConst(defaultValue) {
132
- return new StringConst(defaultValue);
133
- }
134
- KokimokiSchema.stringConst = stringConst;
135
- class AnyOf extends Generic {
136
- schemas;
137
- defaultValue;
138
- constructor(schemas, defaultValue) {
139
- super();
140
- this.schemas = schemas;
141
- this.defaultValue = defaultValue;
142
- }
143
- }
144
- KokimokiSchema.AnyOf = AnyOf;
145
- function anyOf(schemas, defaultValue) {
146
- return new AnyOf(schemas, defaultValue);
147
- }
148
- KokimokiSchema.anyOf = anyOf;
149
- class Optional extends Generic {
150
- schema;
151
- defaultValue;
152
- constructor(schema, defaultValue = undefined) {
153
- super();
154
- this.schema = schema;
155
- this.defaultValue = defaultValue;
156
- }
157
- }
158
- KokimokiSchema.Optional = Optional;
159
- function optional(schema, defaultValue = undefined) {
160
- return new Optional(schema, defaultValue);
161
- }
162
- KokimokiSchema.optional = optional;
163
- })(KokimokiSchema || (KokimokiSchema = {}));