react-native-rich-text-fabric 0.1.0 → 0.1.1

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.
@@ -6,4 +6,5 @@ export * from "./AtTextInput/index.js";
6
6
  export * from "./RichText/index.js";
7
7
  export * from "./RichTextInput/index.js";
8
8
  export * from "./Others/index.js";
9
+ export * from "./version.js";
9
10
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["default","RichTextView"],"sourceRoot":"../../src","sources":["index.tsx"],"mappings":";;AAAA,SAASA,OAAO,IAAIC,YAAY,QAAQ,+BAA+B;AACvE,cAAc,+BAA+B;AAC7C,cAAc,wBAAe;AAC7B,cAAc,qBAAY;AAC1B,cAAc,0BAAiB;AAC/B,cAAc,mBAAU","ignoreList":[]}
1
+ {"version":3,"names":["default","RichTextView"],"sourceRoot":"../../src","sources":["index.tsx"],"mappings":";;AAAA,SAASA,OAAO,IAAIC,YAAY,QAAQ,+BAA+B;AACvE,cAAc,+BAA+B;AAC7C,cAAc,wBAAe;AAC7B,cAAc,qBAAY;AAC1B,cAAc,0BAAiB;AAC/B,cAAc,mBAAU;AACxB,cAAc,cAAW","ignoreList":[]}
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+
3
+ // This file is generated automatically. Please do not edit it manually. If necessary, you can run the 'scripts/bundle-icons.js' script to generate it again.
4
+
5
+ const VERSION = '0.1.1';
6
+ export default VERSION;
7
+ //# sourceMappingURL=version.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["VERSION"],"sourceRoot":"../../src","sources":["version.ts"],"mappings":";;AAAA;;AAEA,MAAMA,OAAO,GAAG,OAAO;AACvB,eAAeA,OAAO","ignoreList":[]}
@@ -4,4 +4,5 @@ export * from './AtTextInput';
4
4
  export * from './RichText';
5
5
  export * from './RichTextInput';
6
6
  export * from './Others';
7
+ export * from './version';
7
8
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,+BAA+B,CAAC;AACxE,cAAc,+BAA+B,CAAC;AAC9C,cAAc,eAAe,CAAC;AAC9B,cAAc,YAAY,CAAC;AAC3B,cAAc,iBAAiB,CAAC;AAChC,cAAc,UAAU,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,+BAA+B,CAAC;AACxE,cAAc,+BAA+B,CAAC;AAC9C,cAAc,eAAe,CAAC;AAC9B,cAAc,YAAY,CAAC;AAC3B,cAAc,iBAAiB,CAAC;AAChC,cAAc,UAAU,CAAC;AACzB,cAAc,WAAW,CAAC"}
@@ -0,0 +1,3 @@
1
+ declare const VERSION = "0.1.1";
2
+ export default VERSION;
3
+ //# sourceMappingURL=version.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"version.d.ts","sourceRoot":"","sources":["../../../src/version.ts"],"names":[],"mappings":"AAEA,QAAA,MAAM,OAAO,UAAU,CAAC;AACxB,eAAe,OAAO,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-rich-text-fabric",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "implement rich text and rich input",
5
5
  "main": "./lib/module/index.js",
6
6
  "types": "./lib/typescript/src/index.d.ts",
@@ -39,12 +39,20 @@
39
39
  "lint": "eslint \"**/*.{js,ts,tsx}\"",
40
40
  "test": "jest",
41
41
  "release": "release-it --only-version",
42
- "qrcode": "node scripts/generate_qr.js"
42
+ "qrcode": "node scripts/generate_qr.js",
43
+ "gen:version": "node scripts/generate-version.js"
43
44
  },
44
45
  "keywords": [
45
46
  "react-native",
46
47
  "ios",
47
- "android"
48
+ "android",
49
+ "rich-text",
50
+ "rich-text-input",
51
+ "fabric",
52
+ "new-architecture",
53
+ "mention",
54
+ "image",
55
+ "editor"
48
56
  ],
49
57
  "repository": {
50
58
  "type": "git",
@@ -155,6 +163,24 @@
155
163
  2,
156
164
  "always",
157
165
  250
166
+ ],
167
+ "type-enum": [
168
+ 2,
169
+ "always",
170
+ [
171
+ "build",
172
+ "chore",
173
+ "ci",
174
+ "docs",
175
+ "feat",
176
+ "fix",
177
+ "perf",
178
+ "refactor",
179
+ "revert",
180
+ "style",
181
+ "test",
182
+ "tag"
183
+ ]
158
184
  ]
159
185
  }
160
186
  },
package/src/index.tsx CHANGED
@@ -4,3 +4,4 @@ export * from './AtTextInput';
4
4
  export * from './RichText';
5
5
  export * from './RichTextInput';
6
6
  export * from './Others';
7
+ export * from './version';
package/src/version.ts ADDED
@@ -0,0 +1,4 @@
1
+ // This file is generated automatically. Please do not edit it manually. If necessary, you can run the 'scripts/bundle-icons.js' script to generate it again.
2
+
3
+ const VERSION = '0.1.1';
4
+ export default VERSION;