かとちん

Results 4 issues of かとちん

It ’s interesting. Well done! Unfortunately, the class in td is deleted. I want to be able to sort while maintaining the original attributes.

具体的には、firestore-simple/adminの、 Collection、Query にselectメソッドが用意されているのが良いと思っています。 collection.jsもquery.jsも、where, limit, orderByの実装と同じようにオリジナルにselectを掛ければいけるんじゃないかなと思っています。 ```js:collection.js select(...fields) { const query = this.collectionRef.select(...fields); return new query_1.Query(this.converter, this.context, query); } ``` ```js:query.js select(...fields) { this.query = this.query.select(...fields); return this; } ```...

enhancement

It includes some text resources, but they are fixed in English. I would like it to be compatible with internationalization. I want the Japanese version. Kind regards.

I have a json whose properties are sometimes strings and sometimes objects. example) [ { "type": "foo" }, { "type": { "text": "baa", "detail": "baa means not foo" } }...