@ohbug/extension-feedback 0.2.0 → 0.5.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/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2020 ohbug-org
3
+ Copyright (c) 2022 ohbug-org
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -6,26 +6,28 @@
6
6
  <p>An open source application information monitoring platform.</p>
7
7
  </div>
8
8
 
9
- # `@ohbug/extension-feedback`
10
-
11
- [![npm](https://img.shields.io/npm/v/@ohbug/extension-feedback.svg?style=flat-square)](https://www.npmjs.com/package/@ohbug/extension-feedback)
12
- [![npm bundle size](https://img.shields.io/bundlephobia/min/@ohbug/extension-feedback?style=flat-square)](https://bundlephobia.com/result?p=@ohbug/extension-feedback)
13
- [![Code style](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettier)
14
-
15
- Used to collect user feedback.
16
-
17
- ## Installation
18
-
19
- ```
20
- yarn add @ohbug/extension-feedback
21
- ```
22
-
23
- ## Usage
24
-
25
- ```javascript
26
- import Ohbug from '@ohbug/browser'
27
- import OhbugExtensionFeedback from '@ohbug/extension-feedback'
28
-
29
- const client = Ohbug.init({ apiKey: 'YOUR_API_KEY' })
30
- client.use(OhbugExtensionFeedback)
31
- ```
9
+ # OhbugExtension starter
10
+
11
+ Use this template to create your own Ohbug extension.
12
+
13
+ English | [简体中文](./README-zh_CN.md)
14
+
15
+ ## Quick start
16
+
17
+ 1. **Git clone the repo.**
18
+ ```shell
19
+ git clone git@github.com:ohbug-org/ohbug-extension-starter.git
20
+ ```
21
+ 1. **Installation dependencies.**
22
+ ```shell
23
+ cd ohbug-extension-starter/
24
+ pnpm i
25
+ ```
26
+ 1. **Start developing.**
27
+ ```shell
28
+ pnpm run dev
29
+ ```
30
+ 1. **Build.**
31
+ ```shell
32
+ pnpm run build
33
+ ```
package/dist/Box.d.ts ADDED
@@ -0,0 +1,4 @@
1
+ import type { Component } from 'solid-js';
2
+ declare const Box: Component;
3
+ export default Box;
4
+ //# sourceMappingURL=Box.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Box.d.ts","sourceRoot":"","sources":["Box.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,UAAU,CAAA;AAQzC,OAAO,gBAAgB,CAAA;AACvB,OAAO,gBAAgB,CAAA;AAEvB,QAAA,MAAM,GAAG,EAAE,SAmJV,CAAA;AAED,eAAe,GAAG,CAAA"}
@@ -0,0 +1,4 @@
1
+ import type { Component } from 'solid-js';
2
+ declare const Selector: Component;
3
+ export default Selector;
4
+ //# sourceMappingURL=Selector.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Selector.d.ts","sourceRoot":"","sources":["Selector.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,UAAU,CAAA;AAUzC,OAAO,YAAY,CAAA;AACnB,OAAO,gBAAgB,CAAA;AAEvB,QAAA,MAAM,QAAQ,EAAE,SAiQf,CAAA;AAED,eAAe,QAAQ,CAAA"}
@@ -1,4 +1,4 @@
1
- import { Component } from 'solid-js';
1
+ import type { Component } from 'solid-js';
2
2
  export declare const Close: Component;
3
3
  export declare const Screen: Component;
4
4
  //# sourceMappingURL=assets.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"assets.d.ts","sourceRoot":"","sources":["assets.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,UAAU,CAAA;AAEzC,eAAO,MAAM,KAAK,EAAE,SAmBnB,CAAA;AAED,eAAO,MAAM,MAAM,EAAE,SAmBpB,CAAA"}
File without changes
@@ -0,0 +1,4 @@
1
+ import type { OhbugExtension } from '@ohbug/types';
2
+ declare const extension: OhbugExtension;
3
+ export default extension;
4
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.tsx"],"names":[],"mappings":"AAAA,OAAO,mBAAmB,CAAA;AAC1B,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,cAAc,CAAA;AAIlD,QAAA,MAAM,SAAS,EAAE,cAShB,CAAA;AAED,eAAe,SAAS,CAAA"}