update 1.0.0
This commit is contained in:
@@ -1,3 +1,7 @@
|
|||||||
|
## 1.0.0
|
||||||
|
|
||||||
|
新增文档,增加createComponent函数
|
||||||
|
|
||||||
## 0.15.3
|
## 0.15.3
|
||||||
|
|
||||||
修改选框选中算法
|
修改选框选中算法
|
||||||
|
10
README.md
10
README.md
@@ -24,15 +24,8 @@ dooringx-lib 是 dooringx 的基座,是移除了 dooringx 插件的可视化
|
|||||||
dooringx-lib 提供自己的一套数据流事件机制以及弹窗等解决方案,可以让你更快地自己定制开发可视化拖拽平台。
|
dooringx-lib 提供自己的一套数据流事件机制以及弹窗等解决方案,可以让你更快地自己定制开发可视化拖拽平台。
|
||||||
|
|
||||||
|
|
||||||
dooringx-lib 在运行时维护一套数据流,主要分为json数据部分,左侧组件部分,右侧配置项部分,快捷键部分,弹窗部分,事件与函数部分,数据源部分。
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
其除了提供基础的拖拽、移动、缩放、全选、旋转等功能外,还可以使用暴露的组件。如果觉得组件不够定制化,可以调整样式或者自己重新写。
|
|
||||||
|
|
||||||
## 文档 | Doc
|
## 文档 | Doc
|
||||||
|
|
||||||
当前版本变化较大,请等待文档完善。
|
|
||||||
|
|
||||||
[Read the Docs to Learn More](https://h5-dooring.github.io/dooringx/).
|
[Read the Docs to Learn More](https://h5-dooring.github.io/dooringx/).
|
||||||
|
|
||||||
@@ -165,6 +158,3 @@ Contributions, issues and feature requests are welcome!.
|
|||||||
MIT
|
MIT
|
||||||
|
|
||||||
|
|
||||||
## Todo
|
|
||||||
|
|
||||||
完善文档
|
|
||||||
|
@@ -296,6 +296,33 @@ const ContextMenu = () => {
|
|||||||
|
|
||||||
总设置项,包括可以获取store commander等,也需传递给组件。
|
总设置项,包括可以获取store commander等,也需传递给组件。
|
||||||
|
|
||||||
|
| 方法 | 说明 |
|
||||||
|
| ----------------- | ---- |
|
||||||
|
| getFocusState | 获取当前选择的元素 |
|
||||||
|
| getScaleState | 获取当前缩放状态 |
|
||||||
|
| getDataCenter | 获取数据源类 |
|
||||||
|
| getEventCenter | 获取事件中心类 |
|
||||||
|
| getAnimateFactory | 获取自定义动画 |
|
||||||
|
| getConfig | 获取初始设置 |
|
||||||
|
| getStore | 获取store |
|
||||||
|
| getComponentRegister | 获取左侧组件注册类 |
|
||||||
|
| getContextMenuState | 获取右键菜单状态 |
|
||||||
|
| getFormRegister | 获取右侧组件注册类 |
|
||||||
|
| getCommanderRegister | 获取快捷键指令设置的类 |
|
||||||
|
| getCurrentData | 获取当前store数据 |
|
||||||
|
| resetConfig | 以默认设置重置配置项 |
|
||||||
|
| addLeftCategory | 异步增加左侧tab页 |
|
||||||
|
| addRightCategory | 异步增加右侧tab页 |
|
||||||
|
| addCoRegistMap | 异步增加左侧组件 |
|
||||||
|
| setConfig | 异步修改config 重置store |
|
||||||
|
| registCommander | 同步注册指令 |
|
||||||
|
| getComponentCache | 获取左侧组件缓存 |
|
||||||
|
| registComponent | 同步注册左侧组件 |
|
||||||
|
| scriptRegistComponentSingle | 同步注册左侧组件,并加入左侧面板 |
|
||||||
|
| scriptSingleLoad | 注册远程组件umd形式 |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Store
|
### Store
|
||||||
|
|
||||||
存放json数据源并提供redo undo以及弹窗状态转换
|
存放json数据源并提供redo undo以及弹窗状态转换
|
||||||
@@ -322,11 +349,61 @@ const ContextMenu = () => {
|
|||||||
|
|
||||||
### dataCenter
|
### dataCenter
|
||||||
|
|
||||||
|
数据源,一般用来做第三方传递数据使用,也可以不用。
|
||||||
|
|
||||||
|
| 方法 | 说明 |
|
||||||
|
| ----------------- | ---- |
|
||||||
|
| getDataMap | 获取数据源总数据 |
|
||||||
|
| setToMap | 动态设置map数据,可触发getValue的获取。 |
|
||||||
|
| staticSetToMap | 静态设置map数据 |
|
||||||
|
| getValue | 异步获取数据, |
|
||||||
|
| get | 同步获取数据 |
|
||||||
|
|
||||||
|
|
||||||
### eventCenter
|
### eventCenter
|
||||||
|
|
||||||
|
事件中心,组装与执行事件链使用。
|
||||||
|
|
||||||
|
|
||||||
|
| 方法 | 说明 |
|
||||||
|
| ----------------- | ---- |
|
||||||
|
| getFunctionCenter | 获取函数中心类 |
|
||||||
|
| getEventMap | 获取事件中心数据 |
|
||||||
|
| resetEventMap | 数据置空 |
|
||||||
|
| syncEventMap | 自动收集更新事件数据 |
|
||||||
|
| manualUpdateMap | 手动更新事件数据 |
|
||||||
|
| runEventQueue | 执行数据链 |
|
||||||
|
|
||||||
|
#### FunctionCenter
|
||||||
|
|
||||||
|
函数中心,组装函数使用。
|
||||||
|
|
||||||
|
| 方法 | 说明 |
|
||||||
|
| ----------------- | ---- |
|
||||||
|
| getFunctionMap | 获取函数map |
|
||||||
|
| getConfigMap | 获取函数设置map |
|
||||||
|
| getNameMap | 获取函数名称map |
|
||||||
|
| nameToKey | 通过name查id |
|
||||||
|
| register | 注册函数 |
|
||||||
|
| syncFunction | 自动收集更新函数 |
|
||||||
|
| getFunction | 获取函数,可异步获取 |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### commanderRegister
|
### commanderRegister
|
||||||
|
|
||||||
|
指CommanderWrapper类,用于指令快捷键注册。
|
||||||
|
|
||||||
|
| 方法 | 说明 |
|
||||||
|
| ----------------- | ---- |
|
||||||
|
| getList | 获取指令map |
|
||||||
|
| register | 注册指令 |
|
||||||
|
| unRegister | 卸载指令 |
|
||||||
|
| exec | 执行指令 |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## userConfigMerge
|
## userConfigMerge
|
||||||
|
|
||||||
合并配置项,用于合并他人的配置项。
|
合并配置项,用于合并他人的配置项。
|
||||||
@@ -657,7 +734,7 @@ export const specialFnList = ['_inner'];
|
|||||||
|
|
||||||
## locale
|
## locale
|
||||||
|
|
||||||
国际化设置
|
国际化设置,不用可以在config上设置i18n为false。
|
||||||
|
|
||||||
示例:
|
示例:
|
||||||
|
|
||||||
|
@@ -5,52 +5,54 @@ nav:
|
|||||||
title: Change log
|
title: Change log
|
||||||
order: 6
|
order: 6
|
||||||
---
|
---
|
||||||
|
## 1.0.0
|
||||||
|
New document and createcomponent function
|
||||||
## 0.15.3
|
## 0.15.3
|
||||||
Modify check box selection algorithm
|
Modify the checkbox and select the algorithm
|
||||||
## 0.15.2
|
## 0.15.2
|
||||||
Fix inconsistencies in line element editing preview.
|
Fixed inconsistency in editing preview of elements in the line.
|
||||||
Add line height font size configuration item.
|
Add line height font size configuration item.
|
||||||
## 0.15.1
|
## 0.15.1
|
||||||
Useregistfunc is added to register functions.
|
Useregistfunc is added to register functions.
|
||||||
Update some documents.
|
Update some documents.
|
||||||
## 0.15.0
|
## 0.15.0
|
||||||
Discard storechanger and iframe containers.
|
Discard the storechanger and iframe containers.
|
||||||
Add function configuration to unload correctly.
|
Add function configuration to properly uninstall.
|
||||||
Modify the pop-up logic to save the preview correctly.
|
Modify logic such as pop-up window to save preview correctly.
|
||||||
## 0.14.1
|
## 0.14.1
|
||||||
Add data source left panel settings.
|
Add data source left panel settings.
|
||||||
## 0.14.0
|
## 0.14.0
|
||||||
Fix the problem that the left and right configurations cannot get config.
|
Fixed the problem that the left and right configurations could not get config.
|
||||||
## 0.13.3
|
## 0.13.3
|
||||||
Fix the Title Failure and add the right panel configuration
|
Fixed Title Failure and added right panel configuration
|
||||||
## 0.13.2
|
## 0.13.2
|
||||||
Fixed possible invalidation of custom animation.
|
Fixed the problem that custom animation might fail.
|
||||||
## 0.13.1
|
## 0.13.1
|
||||||
Fixed editing problem of custom animation overloaded canvas.
|
Fixed the editing problem of custom animation reloading canvas.
|
||||||
## 0.13.0
|
## 0.13.0
|
||||||
Add custom animation, you can customize the animation freely.
|
Add custom animation, you can customize the animation freely.
|
||||||
## 0.12.4
|
## 0.12.4
|
||||||
Add a lifecycle.
|
Add lifecycle.
|
||||||
Modify the timeline color and style to optimize the selected state.
|
Modify the color and style of timeline and optimize the selected state.
|
||||||
## 0.12.3
|
## 0.12.3
|
||||||
Fix double click positioning problem
|
Fix double click positioning problem
|
||||||
## 0.12.2
|
## 0.12.2
|
||||||
New double click positioning frame.
|
Add double click positioning frame.
|
||||||
Fixed drag frame reset pointer behavior after pause.
|
Fixed the behavior of dragging frame to reset pointer after pause.
|
||||||
## 0.12.0
|
## 0.12.0
|
||||||
The operation of adding frames to the animation can accurately view the animation status every 0.1 seconds!
|
The operation of adding new frames in animation can accurately view the animation status every 0.1 seconds!
|
||||||
Timeline adds some class names to facilitate style modification.
|
Timeline adds some class names for easy style modification.
|
||||||
## 0.11.11
|
## 0.11.11
|
||||||
Fixed animation causing rotation preview not to take effect.
|
Fixed animation causing rotation preview not to take effect.
|
||||||
Add container overflow configuration.
|
Add container overflow configuration.
|
||||||
Adjust the style of the timeline section.
|
The style of timeline is adjusted.
|
||||||
Example part style adjustment.
|
Example section style adjustment.
|
||||||
## 0.11.10
|
## 0.11.10
|
||||||
New color pair
|
Add color style settings for markline
|
||||||
## 0.11.9
|
## 0.11.9
|
||||||
A new setting panel is added to control adsorption scaling and other behaviors.
|
Add setting panel control to control adsorption, scaling and other behaviors.
|
||||||
Fixed pop-up button style issues.
|
Fixed pop-up button style problem.
|
||||||
Fix the problem that some prompts do not display.
|
Fixed the problem that some prompts were not displayed.
|
||||||
## 0.11.8
|
## 0.11.8
|
||||||
Timeline adds auto focus function.
|
Timeline adds auto focus function.
|
||||||
## 0.11.7
|
## 0.11.7
|
||||||
@@ -59,105 +61,105 @@ Cancel the multi selection adsorption function.
|
|||||||
Cancel the adsorption of the first mouse click.
|
Cancel the adsorption of the first mouse click.
|
||||||
Modify the selected color of timeline.
|
Modify the selected color of timeline.
|
||||||
## 0.11.5
|
## 0.11.5
|
||||||
Fix reference line adsorption and wrong displacement bug
|
Fix the bug of reference line adsorption and wrong displacement
|
||||||
Change the position of rotation justification
|
Change the position of rotation back to normal
|
||||||
## 0.11.4
|
## 0.11.4
|
||||||
Fix guide line bug
|
Fix reference line bug
|
||||||
Optimized drag and drop algorithm
|
Optimize drag and drop algorithm
|
||||||
## 0.11.3
|
## 0.11.3
|
||||||
Increase the function of rotary return.
|
Add the function of rotation return.
|
||||||
Optimize mouse style.
|
Optimize the mouse style.
|
||||||
## 0.11.2
|
## 0.11.2
|
||||||
Optimize drag speed
|
Optimize drag speed
|
||||||
## 0.11.1
|
## 0.11.1
|
||||||
Compatible with legacy properties
|
Compatible with old properties
|
||||||
## 0.11.0
|
## 0.11.0
|
||||||
Modify the timeline style and add cansee attribute to make it easy to hide when editing.
|
Modify the timeline style and add the cansee attribute to make it easy to hide when editing.
|
||||||
## 0.10.4
|
## 0.10.4
|
||||||
Config adds a new custommap transfer, which is used to store temporary data that is not brought into JSON.
|
Config adds a custommap transfer to store temporary data that is not brought into JSON.
|
||||||
The remote component configuration is changed from URL to object to store more configurations.
|
The configuration of remote components is changed from URL to object to store more configurations.
|
||||||
## 0.10.3
|
## 0.10.3
|
||||||
Fix the color difference problem of the left tab.
|
Fixed the color difference of the left tab.
|
||||||
## 0.10.2
|
## 0.10.2
|
||||||
Modify the timeline, select the background color, and add the item class name to facilitate modification.
|
Modify the background color of timeline, and add the item class name to facilitate modification.
|
||||||
## 0.10.1
|
## 0.10.1
|
||||||
Modify the timeline class name to facilitate style modification.
|
Modify the timeline class name to facilitate style modification.
|
||||||
## 0.10.0
|
## 0.10.0
|
||||||
The function name proposes name as a separate configuration item, the first parameter as ID and the last parameter as function name, so that the display name of the function can support conversion.
|
The function name proposes that name is passed as a separate configuration item, the first parameter is ID, and the last parameter is function name. In this way, the display name of the function can support conversion.
|
||||||
A pop-up event will not appear if the pop-up name is not passed.
|
If the pop-up event does not pass the pop-up name, no pop-up window will appear.
|
||||||
## 0.9.5
|
## 0.9.5
|
||||||
Scripts loading of preview component changes from concurrency to linearity.
|
The scripts loading of the preview component changes from concurrent to linear.
|
||||||
Using remote components in edit mode will save the current canvas state.
|
Using remote components in edit mode will save the current canvas state.
|
||||||
## 0.9.4
|
## 0.9.4
|
||||||
Fix the bug that the preview component cannot release loading
|
Fix the bug that the preview component cannot release loading
|
||||||
## 0.9.3
|
## 0.9.3
|
||||||
Add double click to place the canvas.
|
Add double click to place the canvas.
|
||||||
Change the initial focus state of the element.
|
Change the initial focus state of the element.
|
||||||
If there is an element width and height, it is positioned at the center of the element when placed.
|
If the width and height of an element exist, it is positioned at the center of the element during placement.
|
||||||
## 0.9.2
|
## 0.9.2
|
||||||
Add remote component to call the whole process, and Add URL attribute in component to facilitate script loading.
|
Add the whole process of remote component calling, and Add URL attribute in component to facilitate script loading.
|
||||||
## 0.9.1
|
## 0.9.1
|
||||||
Add config I18N configuration. If internationalization is not used, there is no need to import the context of Intl.
|
Add config.i18n configuration. If internationalization is not used, there is no need to import Intl context.
|
||||||
The first button of the control component is changed to drag and drop, and the functions are merged into the timeline
|
The first button of the control component is changed to drag and drop, and the functions are merged into the timeline
|
||||||
## 0.9.0
|
## 0.9.0
|
||||||
Add react Intl and modify some styles.
|
Add react Intl and modify some styles.
|
||||||
## 0.8.4
|
## 0.8.4
|
||||||
Add the preview attribute to control loading from outside.
|
Add the content of preview to control loading from outside.
|
||||||
## 0.8.3
|
## 0.8.3
|
||||||
Add timeline drag bar and select.
|
Add timeline drag bar and select.
|
||||||
Fix the error reported by the antd menu attribute.
|
Fixed an error in the antd menu attribute.
|
||||||
## 0.8.2
|
## 0.8.2
|
||||||
Add left panel configuration.
|
Add left panel configuration.
|
||||||
Fix timeline flicker.
|
Fixed the problem of timeline flicker.
|
||||||
## 0.8.1
|
## 0.8.1
|
||||||
Add animation component timeline. You can preview all animations better.
|
New animation component timeline. All animations can be previewed better.
|
||||||
## 0.8.0
|
## 0.8.0
|
||||||
The animation part is reconstructed, which can support the simultaneous configuration of multiple animations.
|
Partial reconstruction of animation can support simultaneous configuration of multiple animations.
|
||||||
The minimum value of canvas drag is changed to 0.
|
The minimum value of canvas drag is changed to 0.
|
||||||
## 0.7.7
|
## 0.7.7
|
||||||
Optimize the drag logic of the canvas to move more smoothly.
|
Optimize the drag logic of the canvas to move more smoothly.
|
||||||
## 0.7.6
|
## 0.7.6
|
||||||
The custom rightglobalcustom type on the right is changed to the function passed in config
|
The user-defined rightglobalcustom type on the right side is changed to function, and config is passed in
|
||||||
## 0.7.5
|
## 0.7.5
|
||||||
Change the roller direction.
|
Change the roller direction.
|
||||||
## 0.7.4
|
## 0.7.4
|
||||||
Fix box move bug.
|
Fixed the box move bug.
|
||||||
## 0.7.3
|
## 0.7.3
|
||||||
Fix pop-up location and selection issues.
|
Fixed pop-up location and selection issues.
|
||||||
## 0.7.2
|
## 0.7.2
|
||||||
Fix the impact of locking components. You can't drag, zoom or rotate during locking.
|
Fixed the effect of locking components. Dragging, zooming and rotating cannot be performed during locking.
|
||||||
## 0.7.1
|
## 0.7.1
|
||||||
The repair lock component cannot be unlocked.
|
Fix that the lock component cannot be unlocked.
|
||||||
## 0.7.0
|
## 0.7.0
|
||||||
Component rotation is supported!
|
Component rotation is supported!
|
||||||
Fix optimization logic such as dragging reference lines.
|
Fixed optimization logic such as dragging reference lines.
|
||||||
## 0.6.0
|
## 0.6.0
|
||||||
The use of iframe in edit mode is supported!
|
Iframe is supported in editing mode!
|
||||||
Fix the selected condition.
|
Repair the selected condition.
|
||||||
## 0.5.1
|
## 0.5.1
|
||||||
Fix the problem on the right that cannot be unchecked.
|
Fixed the problem that the right selection cannot be unchecked.
|
||||||
## 0.5.0
|
## 0.5.0
|
||||||
Fix the problem that the width of the control component is not enough.
|
Fixed the problem that the width of the control component was not enough.
|
||||||
Remove the antd custom icon, and the icon at the bottom of the container can be configured.
|
Remove the antd custom icon, and the icon at the bottom of the container can be configured.
|
||||||
## 0.4.2
|
## 0.4.2
|
||||||
Fix animation error initial value.
|
Fix incorrect initial value of animate.
|
||||||
Modify the markline style.
|
Modify the markline style.
|
||||||
Global settings increase the height of the container.
|
The global setting increases the height of the container.
|
||||||
## 0.4.1
|
## 0.4.1
|
||||||
Remove the Lib auto import style.
|
Remove the Lib auto import style.
|
||||||
## 0.4.0
|
## 0.4.0
|
||||||
Remove the runtime export and get all properties from config.
|
Remove the runtime export and get all properties from config.
|
||||||
## 0.3.1
|
## 0.3.1
|
||||||
1. Replace UUID with nanoid.
|
1. Replace UUID with nanoid.
|
||||||
2. Control component adds ruler control.
|
2. The control component adds ruler control.
|
||||||
## 0.3.0
|
## 0.3.0
|
||||||
1. Add a ruler. The containerwrapper needs to pass config before it can be used.
|
1. Add ruler. Containerwrapper needs to pass config before it can be used.
|
||||||
2. Modify container minimum drag 667. Fix the inconsistency between the distance between the canvas and the mouse when zooming down and dragging.
|
2. Modify the minimum drag of the container 667. Fixed the inconsistency between the distance between the canvas and the mouse when zooming down and dragging.
|
||||||
3. Innercontainerdragup needs to pass config.
|
3. Innercontainerdragup needs to pass config.
|
||||||
## 0.2.0
|
## 0.2.0
|
||||||
Modify the transmission of the commander to obtain the config. The commander will no longer be exported from the index. When it needs to be used, it will be obtained from the config. Add the class name on the left to facilitate customization.
|
Modify the transfer of the commander to obtain the config. The commander is no longer exported from the index, but needs to be obtained from the config. Add the class name on the left to facilitate customization.
|
||||||
## 0.1.10
|
## 0.1.10
|
||||||
Modify eslint dependency recommendation
|
Modify eslint dependency (recommended)
|
||||||
## 0.1.9
|
## 0.1.9
|
||||||
Add global body settings
|
Add global body settings
|
||||||
## 0.1.8
|
## 0.1.8
|
||||||
@@ -165,7 +167,7 @@ Add pop-up settings and remove modalcontainer
|
|||||||
## 0.1.7
|
## 0.1.7
|
||||||
Modify the preview special condition display and delete the console
|
Modify the preview special condition display and delete the console
|
||||||
## 0.1.6
|
## 0.1.6
|
||||||
Adjust the initial zoom, the initial proportion of the canvas, and add the function of righting the canvas.
|
Adjust the initial scale, the initial scale of the canvas, and add the function of aligning the canvas.
|
||||||
## 0.1.5
|
## 0.1.5
|
||||||
Delete the button not made and add the fixed configuration
|
Delete the button not made and add the fixed configuration
|
||||||
## 0.1.4
|
## 0.1.4
|
||||||
|
@@ -5,6 +5,10 @@ nav:
|
|||||||
title: 变更日志
|
title: 变更日志
|
||||||
order: 6
|
order: 6
|
||||||
---
|
---
|
||||||
|
## 1.0.0
|
||||||
|
|
||||||
|
新增文档,增加createComponent函数
|
||||||
|
|
||||||
## 0.15.3
|
## 0.15.3
|
||||||
|
|
||||||
修改选框选中算法
|
修改选框选中算法
|
||||||
|
@@ -95,6 +95,7 @@ config可以拿到所有数据,用来制作事件时使用。
|
|||||||
|
|
||||||
第七个参数needPosition,某些组件移入画布后会默认采取拖拽的落点,该配置项默认为true,就是需要拖拽的位置,为false时将使用组件自身top和left定位来放置。
|
第七个参数needPosition,某些组件移入画布后会默认采取拖拽的落点,该配置项默认为true,就是需要拖拽的位置,为false时将使用组件自身top和left定位来放置。
|
||||||
|
|
||||||
|
也可以使用对象形式传参,见`createComponent`函数
|
||||||
|
|
||||||
|
|
||||||
### 事件注册
|
### 事件注册
|
||||||
|
@@ -24,15 +24,8 @@ dooringx-lib 是 dooringx 的基座,是移除了 dooringx 插件的可视化
|
|||||||
dooringx-lib 提供自己的一套数据流事件机制以及弹窗等解决方案,可以让你更快地自己定制开发可视化拖拽平台。
|
dooringx-lib 提供自己的一套数据流事件机制以及弹窗等解决方案,可以让你更快地自己定制开发可视化拖拽平台。
|
||||||
|
|
||||||
|
|
||||||
dooringx-lib 在运行时维护一套数据流,主要分为json数据部分,左侧组件部分,右侧配置项部分,快捷键部分,弹窗部分,事件与函数部分,数据源部分。
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
其除了提供基础的拖拽、移动、缩放、全选、旋转等功能外,还可以使用暴露的组件。如果觉得组件不够定制化,可以调整样式或者自己重新写。
|
|
||||||
|
|
||||||
## 文档 | Doc
|
## 文档 | Doc
|
||||||
|
|
||||||
当前版本变化较大,请等待文档完善。
|
|
||||||
|
|
||||||
[Read the Docs to Learn More](https://h5-dooring.github.io/dooringx/).
|
[Read the Docs to Learn More](https://h5-dooring.github.io/dooringx/).
|
||||||
|
|
||||||
@@ -165,6 +158,3 @@ Contributions, issues and feature requests are welcome!.
|
|||||||
MIT
|
MIT
|
||||||
|
|
||||||
|
|
||||||
## Todo
|
|
||||||
|
|
||||||
完善文档
|
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"version": "0.15.3",
|
"version": "1.0.0",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
"module": "dist/dooringx-lib.esm.js",
|
"module": "dist/dooringx-lib.esm.js",
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "dooringx-plugin-template",
|
"name": "dooringx-plugin-template",
|
||||||
"version": "0.15.3",
|
"version": "1.0.0",
|
||||||
"description": "> TODO: description",
|
"description": "> TODO: description",
|
||||||
"author": "yehuozhili <673632758@qq.com>",
|
"author": "yehuozhili <673632758@qq.com>",
|
||||||
"homepage": "https://github.com/H5-Dooring/dooringx#readme",
|
"homepage": "https://github.com/H5-Dooring/dooringx#readme",
|
||||||
|
@@ -40,7 +40,7 @@
|
|||||||
"@rollup/plugin-node-resolve": "^13.0.4",
|
"@rollup/plugin-node-resolve": "^13.0.4",
|
||||||
"@rollup/plugin-url": "^6.1.0",
|
"@rollup/plugin-url": "^6.1.0",
|
||||||
"@svgr/rollup": "^5.5.0",
|
"@svgr/rollup": "^5.5.0",
|
||||||
"dooringx-lib": "^0.15.3",
|
"dooringx-lib": "^1.0.0",
|
||||||
"postcss": "^8.3.6",
|
"postcss": "^8.3.6",
|
||||||
"rollup-plugin-peer-deps-external": "^2.2.4",
|
"rollup-plugin-peer-deps-external": "^2.2.4",
|
||||||
"rollup-plugin-postcss": "^4.0.1",
|
"rollup-plugin-postcss": "^4.0.1",
|
||||||
|
Reference in New Issue
Block a user