Browse Source

Merge remote-tracking branch 'origin/master'

es6
guy 3 years ago
parent
commit
8c89e34619
  1. 2
      package.json
  2. 4
      typescript/base/single/text.ts

2
package.json

@ -1,6 +1,6 @@
{
"name": "fineui",
"version": "2.0.20211207104248",
"version": "2.0.20211207112213",
"description": "fineui",
"main": "dist/fineui.min.js",
"types": "dist/lib/index.d.ts",

4
typescript/base/single/text.ts

@ -3,6 +3,10 @@ import { Single } from "./single";
export declare class Text extends Single {
static xtype: string;
static addTextFormatter: (fn: (str: string) => string) => void;
static formatText: (str: string) => string;
props: {
text?: string;
textAlign?: "left" | "center" | "right",

Loading…
Cancel
Save