halo-fe 1.0.24 → 1.0.26
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +3 -1
- package/dist/assets/{liquidjs-B8dqQyVv.js → liquidjs-C2HVw1Ra.js} +82 -81
- package/dist/main.js +4888 -4397
- package/dist/style.css +1 -1
- package/esm/@types/CreateFeOptions.d.ts +4 -0
- package/esm/coms/@types/PagerEmit.d.ts +11 -0
- package/esm/coms/@types/PagerProps.d.ts +18 -0
- package/esm/coms/@types/SocketProgressProps.d.ts +31 -0
- package/esm/coms/@types/TabProps.d.ts +11 -0
- package/esm/coms/@types/TableEmit.d.ts +10 -0
- package/esm/coms/@types/TableProps.d.ts +34 -0
- package/esm/coms/@types/index.d.ts +7 -1
- package/esm/coms/Empty.vue.d.ts +12 -10
- package/esm/coms/Fill.vue.d.ts +8 -10
- package/esm/coms/Scroller.vue.d.ts +11 -13
- package/esm/coms/Timer.vue.d.ts +7 -9
- package/esm/coms/cards/Index.vue.d.ts +16 -0
- package/esm/coms/cards/index.d.ts +2 -0
- package/esm/coms/conditions/Condition.vue.d.ts +1 -1
- package/esm/coms/conditions/Index.vue.d.ts +1 -1
- package/esm/coms/controls/@types/CodeIntelli.d.ts +6 -0
- package/esm/coms/controls/@types/CodeProps.d.ts +31 -2
- package/esm/coms/controls/@types/Range.d.ts +1 -1
- package/esm/coms/controls/Code.vue.d.ts +16 -28
- package/esm/coms/controls/Compare.vue.d.ts +16 -8
- package/esm/coms/controls/Input.vue.d.ts +2 -0
- package/esm/coms/controls/Option.vue.d.ts +1 -1
- package/esm/coms/controls/RichText.vue.d.ts +2 -4
- package/esm/coms/controls/Select.vue.d.ts +1 -1
- package/esm/coms/controls/index.d.ts +2 -1
- package/esm/coms/index.d.ts +1 -0
- package/esm/coms/layouts/Col.vue.d.ts +6 -8
- package/esm/coms/layouts/Container.vue.d.ts +12 -11
- package/esm/coms/layouts/Desc.vue.d.ts +2 -0
- package/esm/coms/layouts/Row.vue.d.ts +7 -8
- package/esm/coms/pagers/Index.vue.d.ts +9 -0
- package/esm/coms/pagers/index.d.ts +2 -0
- package/esm/coms/progresses/Circle.vue.d.ts +2 -0
- package/esm/coms/progresses/Index.vue.d.ts +9 -0
- package/esm/coms/progresses/SocketProgress.vue.d.ts +7 -9
- package/esm/coms/progresses/Spinner.vue.d.ts +20 -0
- package/esm/coms/progresses/index.d.ts +3 -2
- package/esm/coms/tables/Index.vue.d.ts +33 -0
- package/esm/coms/tabs/Tab.vue.d.ts +2 -2
- package/esm/coms/tabs/TabPane.vue.d.ts +1 -1
- package/esm/drivers/@types/IOpen.d.ts +1 -1
- package/esm/drivers/builders/BuilderFactory.d.ts +1 -1
- package/esm/drivers/cdns/Cdn.d.ts +7 -9
- package/esm/drivers/cdns/CdnFactory.d.ts +1 -1
- package/esm/drivers/cdns/ICdn.d.ts +2 -11
- package/esm/drivers/encoders/Encoder.d.ts +1 -1
- package/esm/drivers/encoders/EncoderFactory.d.ts +3 -2
- package/esm/drivers/encoders/IEncoder.d.ts +2 -5
- package/esm/drivers/encoders/implement/Base64Encoder.d.ts +1 -1
- package/esm/drivers/encoders/implement/UrlEncoder.d.ts +7 -0
- package/esm/drivers/excels/Excel.d.ts +1 -1
- package/esm/drivers/excels/ExcelFactory.d.ts +1 -1
- package/esm/drivers/excels/implements/XlsxExcel.d.ts +1 -1
- package/esm/drivers/explainers/ExplainerFactory.d.ts +2 -2
- package/esm/drivers/features/FeatureFactory.d.ts +2 -2
- package/esm/drivers/features/IFeature.d.ts +2 -6
- package/esm/drivers/features/implements/ExpressionFeature.d.ts +1 -1
- package/esm/drivers/features/implements/I18NFeature.d.ts +1 -1
- package/esm/drivers/features/implements/SortFeature.d.ts +1 -1
- package/esm/drivers/hashers/Hasher.d.ts +1 -1
- package/esm/drivers/hashers/HasherFactory.d.ts +2 -2
- package/esm/drivers/hashers/IHasher.d.ts +2 -5
- package/esm/drivers/hashers/implement/Md5Hasher.d.ts +1 -1
- package/esm/drivers/hashers/implement/Sha256Hasher.d.ts +1 -1
- package/esm/drivers/https/Http.d.ts +22 -7
- package/esm/drivers/https/HttpFactory.d.ts +2 -7
- package/esm/drivers/https/IHttp.d.ts +16 -12
- package/esm/drivers/https/entities/HttpModel.d.ts +12 -0
- package/esm/drivers/https/entities/HttpResponse.d.ts +5 -1
- package/esm/drivers/https/implements/DefaultHttp.d.ts +1 -1
- package/esm/drivers/https/implements/HaloHttp.d.ts +2 -10
- package/esm/drivers/https/implements/MkHttp.d.ts +2 -3
- package/esm/drivers/i18ns/I18n.d.ts +1 -1
- package/esm/drivers/i18ns/I18nFactory.d.ts +1 -1
- package/esm/drivers/i18ns/implements/DefaultI18n.d.ts +1 -1
- package/esm/drivers/index.d.ts +52 -1
- package/esm/drivers/messengers/MessengerFactory.d.ts +2 -2
- package/esm/drivers/providers/IProvider.d.ts +19 -15
- package/esm/drivers/providers/Provider.d.ts +11 -9
- package/esm/drivers/providers/ProviderFactory.d.ts +5 -9
- package/esm/drivers/providers/implements/CookieProvider.d.ts +8 -8
- package/esm/drivers/providers/implements/IndexedDbProvider.d.ts +20 -10
- package/esm/drivers/providers/implements/StorageProvider.d.ts +8 -8
- package/esm/drivers/signers/ISigner.d.ts +1 -1
- package/esm/drivers/signers/Signer.d.ts +1 -1
- package/esm/drivers/signers/SignerFactory.d.ts +2 -2
- package/esm/drivers/signers/implements/DefaultSigner.d.ts +1 -1
- package/esm/drivers/sockets/@types/SubscribedWindow.d.ts +16 -0
- package/esm/drivers/sockets/@types/index.d.ts +2 -0
- package/esm/drivers/sockets/ISocket.d.ts +39 -0
- package/esm/drivers/sockets/Socket.d.ts +17 -0
- package/esm/drivers/sockets/SocketFactory.d.ts +13 -0
- package/esm/drivers/sockets/entities/SocketProgress.d.ts +34 -0
- package/esm/drivers/sockets/entities/SocketResponse.d.ts +26 -0
- package/esm/drivers/sockets/entities/index.d.ts +3 -0
- package/esm/drivers/sockets/implement/DefaultSocket.d.ts +37 -0
- package/esm/drivers/sockets/index.d.ts +4 -0
- package/esm/drivers/ssos/ISso.d.ts +1 -1
- package/esm/drivers/ssos/Sso.d.ts +1 -1
- package/esm/drivers/ssos/SsoFactory.d.ts +2 -2
- package/esm/drivers/ssos/implements/AnonymousSso.d.ts +1 -1
- package/esm/drivers/ssos/implements/BearerSso.d.ts +1 -1
- package/esm/drivers/ssos/implements/NioSso.d.ts +1 -1
- package/esm/drivers/ssos/implements/SecretSso.d.ts +1 -1
- package/esm/drivers/ssos/implements/WeiXinSso.d.ts +1 -1
- package/esm/drivers/tasks/ITask.d.ts +10 -3
- package/esm/drivers/tasks/Task.d.ts +2 -1
- package/esm/drivers/tasks/TaskFactory.d.ts +2 -2
- package/esm/drivers/tasks/implement/MemoryTask.d.ts +5 -3
- package/esm/drivers/templates/TemplateFactory.d.ts +2 -2
- package/esm/drivers/util/@types/JsonConfig.d.ts +10 -0
- package/esm/drivers/util/@types/TreeNodeProp.d.ts +9 -0
- package/esm/drivers/util/@types/index.d.ts +3 -0
- package/esm/drivers/util/IUtil.d.ts +8 -0
- package/esm/drivers/util/Util.d.ts +8 -0
- package/esm/drivers/util/UtilFactory.d.ts +32 -0
- package/esm/drivers/util/implements/ArrayUtil.d.ts +123 -0
- package/esm/drivers/util/implements/BrowserUtil.d.ts +12 -0
- package/esm/drivers/util/implements/ComponentUtil.d.ts +20 -0
- package/esm/drivers/util/implements/DictionaryUtil.d.ts +40 -0
- package/esm/drivers/util/implements/DomUtil.d.ts +118 -0
- package/esm/drivers/util/implements/EventUtil.d.ts +32 -0
- package/esm/drivers/util/implements/FileUtil.d.ts +24 -0
- package/esm/drivers/util/implements/HtmlUtil.d.ts +16 -0
- package/esm/drivers/util/implements/ImageUtil.d.ts +12 -0
- package/esm/drivers/util/implements/JsonUtil.d.ts +58 -0
- package/esm/drivers/util/implements/MathUtil.d.ts +52 -0
- package/esm/drivers/util/implements/MicroUtil.d.ts +12 -0
- package/esm/drivers/util/implements/MountUtil.d.ts +16 -0
- package/esm/drivers/util/implements/ObjectUtil.d.ts +44 -0
- package/esm/drivers/util/implements/ScrollUtil.d.ts +16 -0
- package/esm/drivers/util/implements/SignUtil.d.ts +16 -0
- package/esm/drivers/util/implements/StringUtil.d.ts +104 -0
- package/esm/drivers/util/implements/TaskUtil.d.ts +28 -0
- package/esm/drivers/util/implements/TimeUtil.d.ts +72 -0
- package/esm/drivers/util/implements/TreeUtil.d.ts +56 -0
- package/esm/drivers/util/implements/TypeUtil.d.ts +28 -0
- package/esm/drivers/util/implements/UrlUtil.d.ts +90 -0
- package/esm/drivers/util/index.d.ts +24 -0
- package/esm/drivers/utilities/IUtility.d.ts +3 -0
- package/esm/drivers/utilities/Utility.d.ts +3 -0
- package/esm/drivers/utilities/UtilityFactory.d.ts +6 -6
- package/esm/drivers/utilities/implement/EventUtility.d.ts +3 -6
- package/esm/drivers/utilities/implement/SaveUtility.d.ts +48 -3
- package/esm/drivers/videos/VideoFactory.d.ts +2 -2
- package/esm/drivers/voices/VoiceFactory.d.ts +2 -2
- package/esm/factory/Factories.d.ts +99 -0
- package/esm/factory/Factory.d.ts +41 -0
- package/esm/factory/IFactory.d.ts +40 -0
- package/esm/factory/Utils.d.ts +29 -0
- package/esm/factory/index.d.ts +4 -0
- package/esm/factorying/Factories.d.ts +9 -5
- package/esm/factorying/Factory.d.ts +7 -10
- package/esm/factorying/IFactory.d.ts +7 -3
- package/esm/factorying/Utils.d.ts +24 -9
- package/esm/factorying/index.d.ts +7 -2
- package/esm/main.d.ts +1 -2
- package/esm/repos/Repo.d.ts +5 -0
- package/esm/repos/RepoFactory.d.ts +20 -1
- package/esm/repos/implements/PageRepo.d.ts +30 -0
- package/esm/repos/implements/QueryRepo.d.ts +64 -0
- package/esm/repos/implements/SettingRepo.d.ts +1 -0
- package/esm/repos/index.d.ts +10 -1
- package/esm/svcs/SvcFactory.d.ts +1 -1
- package/esm/svcs/implement/ConfigSvc.d.ts +8 -8
- package/esm/svcs/implement/DriverSvc.d.ts +1 -35
- package/esm/svcs/index.d.ts +6 -17
- package/package.json +10 -10
package/dist/style.css
CHANGED
@@ -1 +1 @@
|
|
1
|
-
html{-webkit-user-select:initial;user-select:initial;font-size:14px;font-family:Consolas}a{text-decoration:none}p{margin:0;line-height:20px}input{outline:none;margin:0;font-family:inherit}ul,ol{margin:0;padding:0;outline:none}li{list-style-type:none}img{display:block}pre{margin:0;font-family:inherit}html.blue .ha-rich-text .ql-toolbar.ql-snow{border:1px solid #434e61;box-shadow:0 1px 4px #29374d;background-image:linear-gradient(to bottom,#354052,#354052)}html.blue .ha-rich-text .ql-container.ql-snow{border-color:#434e61;background:#354052}html.blue .ha-rich-text .ql-stroke{stroke:#ffffffb8}html.blue .ha-rich-text .ql-fill{fill:#ffffffb8}html.blue .ha-rich-text .ql-picker .ql-picker-label,html.blue .ha-rich-text .ql-date{color:#ffffffb8}html.light .ha-rich-text .ql-toolbar.ql-snow{border:1px solid #dcdfe6;box-shadow:0 1px 4px #ccc9;background-image:linear-gradient(to bottom,#fff,#f2f2f2)}html.light .ha-rich-text .ql-container.ql-snow{border-color:#dcdfe6}.ha-rich-text ol,.ha-rich-text ul{padding-left:1.5em}.ha-rich-text ol{counter-reset:my-counter}.ha-rich-text ol li{list-style-type:none;counter-increment:my-counter}.ha-rich-text ol li:before{content:counter(my-counter) "."}.ha-fill{width:100%}.ha-scroller{position:relative;height:100%}.ha-scroller:hover .scroller-thumb{display:block}.ha-scroller.hover .scroller-thumb{display:block;opacity:.5}.ha-scroller .scroller-container{height:100%;overflow:auto;width:100%;scrollbar-width:none}.ha-scroller .scroller-track{position:absolute;top:0;right:0;width:8px;height:100%}.ha-scroller .scroller-thumb{display:none;position:absolute;cursor:pointer;height:30px;width:100%;-webkit-user-select:none;user-select:none;background:#a3a6ad;opacity:.3;border-radius:5px}.ha-scroller .scroller-thumb:hover{opacity:.5}.ha-code{width:100%;height:100%}.ha-code.border{width:calc(100% - 2px);height:calc(100% - 2px);border-radius:4px}.ha-code.border .monaco-editor,.ha-code.border .overflow-guard{border-radius:4px}.ha-code.border:has(.monaco-editor.focused){border:1px solid #007fd4}.ha-compare{width:100%;height:100%}.ha-rich-text{width:100%}.ha-rich-text .ql-date{font-family:"Font Awesome 6 Free"}.ha-rich-text .ql-date:before{content:""}.ha-rich-text .ql-toolbar{line-height:20px}.ha-rich-text .ql-toolbar.ql-snow{padding:3px;position:sticky;top:0;z-index:10;border-top-left-radius:4px;border-top-right-radius:4px}.ha-rich-text .ql-body{border-bottom-left-radius:4px;border-bottom-right-radius:4px}.ha-rich-text .ql-container{height:auto}.ha-rich-text .ql-container.ql-snow{font-family:inherit;border:0}.ha-rich-text .ql-editor{padding:8px 8px 620px;word-break:break-word;overflow:initial}.ha-rich-text .ql-formats .ql-picker+.ql-picker{display:block!important}.ha-rich-text .ql-formats .ql-picker:has(+.ql-picker){display:none}.ha-rich-text:has(.ql-editor:focus) .ql-snow.ql-toolbar{border-color:#007fd4;border-bottom-color:#4c4d4f}.ha-rich-text:has(.ql-editor:focus) .ql-snow+.ql-body{border-color:#007fd4}.ha-condition{display:flex}.ha-col{display:flex;gap:5px}.ha-container{padding:10px;width:calc(100% - 20px);height:calc(100% - 20px)}.ha-container .ha-operation:nth-child(1){margin-top:0;margin-bottom:10px;padding:8px 10px;line-height:32px}.ha-row{display:flex;gap:5px}.ha-row.between{justify-content:space-between}.ha-progress{position:absolute;width:0;z-index:1}.ha-socket-progress{width:100%;display:flex;
|
1
|
+
html{-webkit-user-select:initial;user-select:initial;font-size:14px;font-family:Consolas}a{text-decoration:none}p{margin:0;line-height:20px}input{outline:none;margin:0;font-family:inherit}ul,ol{margin:0;padding:0;outline:none}li{list-style-type:none}img{display:block}pre{margin:0;font-family:inherit}html.blue .ha-rich-text .ql-toolbar.ql-snow{border:1px solid #434e61;box-shadow:0 1px 4px #29374d;background-image:linear-gradient(to bottom,#354052,#354052)}html.blue .ha-rich-text .ql-container.ql-snow{border-color:#434e61;background:#354052}html.blue .ha-rich-text .ql-stroke{stroke:#ffffffb8}html.blue .ha-rich-text .ql-fill{fill:#ffffffb8}html.blue .ha-rich-text .ql-picker .ql-picker-label,html.blue .ha-rich-text .ql-date{color:#ffffffb8}html.light .ha-rich-text .ql-toolbar.ql-snow{border:1px solid #dcdfe6;box-shadow:0 1px 4px #ccc9;background-image:linear-gradient(to bottom,#fff,#f2f2f2)}html.light .ha-rich-text .ql-container.ql-snow{border-color:#dcdfe6}.ha-rich-text ol,.ha-rich-text ul{padding-left:1.5em}.ha-rich-text ol{counter-reset:my-counter}.ha-rich-text ol li{list-style-type:none;counter-increment:my-counter}.ha-rich-text ol li:before{content:counter(my-counter) "."}.ha-fill{width:100%;height:100%}.ha-scroller{position:relative;height:100%}.ha-scroller:hover .scroller-thumb{display:block}.ha-scroller.hover .scroller-thumb{display:block;opacity:.5}.ha-scroller .scroller-container{height:100%;overflow:auto;width:100%;scrollbar-width:none}.ha-scroller .scroller-track{position:absolute;top:0;right:0;width:8px;height:100%}.ha-scroller .scroller-thumb{display:none;position:absolute;cursor:pointer;height:30px;width:100%;-webkit-user-select:none;user-select:none;background:#a3a6ad;opacity:.3;border-radius:5px}.ha-scroller .scroller-thumb:hover{opacity:.5}.ha-card{padding:5px;border:1px solid #414243;background:#1d1e1f;box-shadow:0 0 12px #000000b8;border-radius:4px}.ha-code{width:100%;height:100%}.ha-code.border{width:calc(100% - 2px);height:calc(100% - 2px);border-radius:4px}.ha-code.border .monaco-editor,.ha-code.border .overflow-guard{border-radius:4px}.ha-code.border:has(.monaco-editor.focused){border:1px solid #007fd4}.ha-compare{width:100%;height:100%}.ha-rich-text{width:100%}.ha-rich-text .ql-date{font-family:"Font Awesome 6 Free"}.ha-rich-text .ql-date:before{content:""}.ha-rich-text .ql-toolbar{line-height:20px}.ha-rich-text .ql-toolbar.ql-snow{padding:3px;position:sticky;top:0;z-index:10;border-top-left-radius:4px;border-top-right-radius:4px}.ha-rich-text .ql-body{border-bottom-left-radius:4px;border-bottom-right-radius:4px}.ha-rich-text .ql-container{height:auto}.ha-rich-text .ql-container.ql-snow{font-family:inherit;border:0}.ha-rich-text .ql-editor{padding:8px 8px 620px;word-break:break-word;overflow:initial}.ha-rich-text .ql-formats .ql-picker+.ql-picker{display:block!important}.ha-rich-text .ql-formats .ql-picker:has(+.ql-picker){display:none}.ha-rich-text:has(.ql-editor:focus) .ql-snow.ql-toolbar{border-color:#007fd4;border-bottom-color:#4c4d4f}.ha-rich-text:has(.ql-editor:focus) .ql-snow+.ql-body{border-color:#007fd4}.ha-condition{display:flex}.ha-col{display:flex;gap:5px}.ha-container{padding:10px;width:calc(100% - 20px);height:calc(100% - 20px)}.ha-container .ha-operation:nth-child(1){margin-top:0;margin-bottom:10px;padding:8px 10px;line-height:32px}.ha-row{display:flex;gap:5px}.ha-row.between{justify-content:space-between}.ha-progress{position:absolute;width:0;z-index:1}.ha-socket-progress{width:100%;display:flex;gap:5px}.ha-socket-progress .progress-tips{display:flex;gap:5px}.ha-socket-progress .progress-tip{font-size:12px;padding:0 8px;border-radius:4px}.ha-socket-progress .progress-tip.info{color:#409eff;background:#18222c;border:1px solid #1d3043}.ha-socket-progress .progress-tip.success{color:#67c23a;background:#1c2518;border:1px solid #25371c}.ha-socket-progress .progress-tip.error{color:#f56c6c;background:#2b1d1d;border:1px solid #412626}.ha-socket-progress .progress-chart{display:flex;flex:1;align-items:center;gap:5px;width:200px}.ha-socket-progress .progress-bar{height:6px;background:#363637;width:100%;border-radius:4px}.ha-socket-progress .progress-percentage{height:100%;background:#67c23a;transition:width .5s;border-radius:4px}.ha-socket-progress .progress-text{color:#cfd3dc}.ha-socket-progress.warning .progress-percentage{background:#e6a23c}.ha-socket-progress.warning .progress-text{color:#e6a23c}.ha-socket-progress.error .progress-percentage{background:#f56c6c}.ha-socket-progress.error .progress-text{color:#f56c6c}@keyframes antRotate{to{transform:rotate(405deg)}}@keyframes antSpinMove{to{opacity:1}}.ha-spinner .spinner-dots{position:relative;font-size:20px;width:20px;height:20px;transform:rotate(45deg);animation:antRotate 1.2s linear infinite;margin:0 auto}.ha-spinner .spinner-dots i{position:absolute;display:block;width:9px;height:9px;border-radius:100%;transform:scale(.75);transform-origin:50% 50%;opacity:.3;animation:antSpinMove 1s linear infinite alternate}.ha-spinner .spinner-dots i:first-child{top:0;left:0}.ha-spinner .spinner-dots i:nth-child(2){top:0;right:0;animation-delay:.4s}.ha-spinner .spinner-dots i:nth-child(3){right:0;bottom:0;animation-delay:.8s}.ha-spinner .spinner-dots i:nth-child(4){bottom:0;left:0;animation-delay:1.2s}.ha-spinner .spinner-title{color:#f40}.ha-spinner .stack{color:#a3a6ad;white-space:pre-wrap}.ha-spinner .spinner-text{text-align:center;font-size:14px;margin-top:10px}.ha-spinner.is-loading{height:100%;display:flex;align-items:center;justify-content:center}.ha-spinner.is-error{padding:10px;font-size:14px;transition:none}.ha-spinner.is-error .retry{color:#38c;cursor:pointer;margin-left:5px}.ha-spinner.is-error .retry:active{color:#f40}
|
@@ -0,0 +1,31 @@
|
|
1
|
+
/**
|
2
|
+
* 实时进度属性
|
3
|
+
*/
|
4
|
+
interface SocketProgressProps {
|
5
|
+
/**
|
6
|
+
* 进度数据
|
7
|
+
*/
|
8
|
+
progress: {
|
9
|
+
/**
|
10
|
+
* 成功数量
|
11
|
+
*/
|
12
|
+
succeed: number;
|
13
|
+
/**
|
14
|
+
* 异常数量
|
15
|
+
*/
|
16
|
+
errored: number;
|
17
|
+
/**
|
18
|
+
* 已处理数量
|
19
|
+
*/
|
20
|
+
handled: number;
|
21
|
+
/**
|
22
|
+
* 总数量
|
23
|
+
*/
|
24
|
+
total: number;
|
25
|
+
/**
|
26
|
+
* 耗时(ms)
|
27
|
+
*/
|
28
|
+
elapsed?: number;
|
29
|
+
};
|
30
|
+
}
|
31
|
+
export default SocketProgressProps;
|
@@ -0,0 +1,34 @@
|
|
1
|
+
/**
|
2
|
+
* 表格属性
|
3
|
+
*/
|
4
|
+
interface TableProps {
|
5
|
+
/**
|
6
|
+
* 数据
|
7
|
+
*/
|
8
|
+
data: any[];
|
9
|
+
/**
|
10
|
+
* 数据更新防抖时间
|
11
|
+
*/
|
12
|
+
debounce?: number;
|
13
|
+
/**
|
14
|
+
* 排序配置
|
15
|
+
*/
|
16
|
+
sort?: any;
|
17
|
+
/**
|
18
|
+
* 滚动条距顶部距离
|
19
|
+
*/
|
20
|
+
scrollTop?: number;
|
21
|
+
/**
|
22
|
+
* 当前高亮行的主键值
|
23
|
+
*/
|
24
|
+
currentRow?: string;
|
25
|
+
/**
|
26
|
+
* 自动调整高度
|
27
|
+
*/
|
28
|
+
autoHeight?: boolean;
|
29
|
+
/**
|
30
|
+
* 尺寸
|
31
|
+
*/
|
32
|
+
size?: string;
|
33
|
+
}
|
34
|
+
export default TableProps;
|
@@ -1,2 +1,8 @@
|
|
1
|
+
import PagerEmit from "./PagerEmit";
|
2
|
+
import PagerProps from "./PagerProps";
|
1
3
|
import ScrollerProps from "./ScrollerProps";
|
2
|
-
|
4
|
+
import SocketProgressProps from "./SocketProgressProps";
|
5
|
+
import TableEmit from "./TableEmit";
|
6
|
+
import TableProps from "./TableProps";
|
7
|
+
import TabProps from "./TabProps";
|
8
|
+
export { type PagerEmit, type PagerProps, type ScrollerProps, type SocketProgressProps, type TableEmit, type TableProps, type TabProps };
|
package/esm/coms/Empty.vue.d.ts
CHANGED
@@ -1,26 +1,28 @@
|
|
1
|
-
declare
|
2
|
-
declare const __VLS_templateResult: {
|
1
|
+
declare function __VLS_template(): {
|
3
2
|
slots: {
|
4
3
|
default?(_: {}): any;
|
5
4
|
};
|
6
5
|
refs: {};
|
7
|
-
attrs: Partial<
|
6
|
+
attrs: Partial<{}>;
|
8
7
|
};
|
9
|
-
type
|
8
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
10
9
|
declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
11
10
|
message: {
|
12
11
|
type: StringConstructor;
|
13
12
|
default: string;
|
14
13
|
};
|
15
14
|
hasData: BooleanConstructor;
|
16
|
-
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
17
|
-
message:
|
18
|
-
|
19
|
-
|
15
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
16
|
+
message: {
|
17
|
+
type: StringConstructor;
|
18
|
+
default: string;
|
19
|
+
};
|
20
|
+
hasData: BooleanConstructor;
|
21
|
+
}>> & Readonly<{}>, {
|
20
22
|
message: string;
|
21
23
|
hasData: boolean;
|
22
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}>;
|
23
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component,
|
24
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
25
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
24
26
|
export default _default;
|
25
27
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
26
28
|
new (): {
|
package/esm/coms/Fill.vue.d.ts
CHANGED
@@ -1,21 +1,19 @@
|
|
1
|
-
declare
|
2
|
-
declare var __VLS_inheritedAttrs: {};
|
3
|
-
declare const __VLS_templateResult: {
|
1
|
+
declare function __VLS_template(): {
|
4
2
|
slots: {
|
5
|
-
default?(_:
|
3
|
+
default?(_: {}): any;
|
6
4
|
};
|
7
5
|
refs: {
|
8
|
-
fillRef:
|
6
|
+
fillRef: HTMLDivElement;
|
9
7
|
};
|
10
|
-
attrs: Partial<
|
8
|
+
attrs: Partial<{}>;
|
11
9
|
};
|
12
|
-
type
|
10
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
13
11
|
declare const __VLS_component: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
14
12
|
resize: (...args: any[]) => void;
|
15
|
-
}, string, import("vue").PublicProps, Readonly<{
|
13
|
+
}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{
|
16
14
|
onResize?: (...args: any[]) => any;
|
17
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}>;
|
18
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component,
|
15
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
16
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
19
17
|
export default _default;
|
20
18
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
21
19
|
new (): {
|
@@ -1,28 +1,26 @@
|
|
1
1
|
import ScrollerProps from "./@types/ScrollerProps";
|
2
|
-
declare
|
3
|
-
declare var __VLS_inheritedAttrs: {};
|
4
|
-
declare const __VLS_templateResult: {
|
2
|
+
declare function __VLS_template(): {
|
5
3
|
slots: {
|
6
|
-
default?(_:
|
4
|
+
default?(_: {}): any;
|
7
5
|
};
|
8
6
|
refs: {
|
9
|
-
scrollerRef:
|
10
|
-
containerRef:
|
11
|
-
trackRef:
|
12
|
-
thumbRef:
|
7
|
+
scrollerRef: HTMLDivElement;
|
8
|
+
containerRef: HTMLDivElement;
|
9
|
+
trackRef: HTMLDivElement;
|
10
|
+
thumbRef: HTMLDivElement;
|
13
11
|
};
|
14
|
-
attrs: Partial<
|
12
|
+
attrs: Partial<{}>;
|
15
13
|
};
|
16
|
-
type
|
14
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
17
15
|
declare const __VLS_component: import("vue").DefineComponent<ScrollerProps, {
|
18
16
|
scrollTo: (scrollTop: number) => void;
|
19
17
|
update: () => void;
|
20
18
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
21
19
|
scroll: (...args: any[]) => void;
|
22
|
-
}, string, import("vue").PublicProps, Readonly<ScrollerProps & {
|
20
|
+
}, string, import("vue").PublicProps, Readonly<ScrollerProps> & Readonly<{
|
23
21
|
onScroll?: (...args: any[]) => any;
|
24
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}>;
|
25
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component,
|
22
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
23
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
26
24
|
export default _default;
|
27
25
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
28
26
|
new (): {
|
package/esm/coms/Timer.vue.d.ts
CHANGED
@@ -1,13 +1,11 @@
|
|
1
|
-
declare
|
2
|
-
declare var __VLS_inheritedAttrs: {};
|
3
|
-
declare const __VLS_templateResult: {
|
1
|
+
declare function __VLS_template(): {
|
4
2
|
slots: {
|
5
|
-
default?(_:
|
3
|
+
default?(_: {}): any;
|
6
4
|
};
|
7
5
|
refs: {};
|
8
|
-
attrs: Partial<
|
6
|
+
attrs: Partial<{}>;
|
9
7
|
};
|
10
|
-
type
|
8
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
11
9
|
declare const __VLS_component: import("vue").DefineComponent<{}, {
|
12
10
|
restart: () => void;
|
13
11
|
start: () => void;
|
@@ -15,10 +13,10 @@ declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
15
13
|
reset: () => void;
|
16
14
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
17
15
|
change: (...args: any[]) => void;
|
18
|
-
}, string, import("vue").PublicProps, Readonly<{
|
16
|
+
}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{
|
19
17
|
onChange?: (...args: any[]) => any;
|
20
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}>;
|
21
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component,
|
18
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
19
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
22
20
|
export default _default;
|
23
21
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
24
22
|
new (): {
|
@@ -0,0 +1,16 @@
|
|
1
|
+
declare function __VLS_template(): {
|
2
|
+
slots: {
|
3
|
+
default?(_: {}): any;
|
4
|
+
};
|
5
|
+
refs: {};
|
6
|
+
attrs: Partial<{}>;
|
7
|
+
};
|
8
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
9
|
+
declare const __VLS_component: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
10
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
11
|
+
export default _default;
|
12
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
13
|
+
new (): {
|
14
|
+
$slots: S;
|
15
|
+
};
|
16
|
+
};
|
@@ -1,3 +1,3 @@
|
|
1
1
|
import { ConditionProps } from "./@types";
|
2
|
-
declare const _default: import("vue").DefineComponent<ConditionProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ConditionProps & {}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}>;
|
2
|
+
declare const _default: import("vue").DefineComponent<ConditionProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ConditionProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
3
3
|
export default _default;
|
@@ -1,3 +1,3 @@
|
|
1
1
|
import { ConditionGroupProps } from "./@types";
|
2
|
-
declare const _default: import("vue").DefineComponent<ConditionGroupProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ConditionGroupProps & {}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}>;
|
2
|
+
declare const _default: import("vue").DefineComponent<ConditionGroupProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ConditionGroupProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
3
3
|
export default _default;
|
@@ -1,4 +1,5 @@
|
|
1
1
|
import Range from "./Range";
|
2
|
+
import CodeIntelli from "./CodeIntelli";
|
2
3
|
/**
|
3
4
|
* 代码属性
|
4
5
|
*/
|
@@ -6,15 +7,43 @@ interface CodeProps {
|
|
6
7
|
/**
|
7
8
|
* 配置
|
8
9
|
*/
|
9
|
-
|
10
|
+
options?: {
|
11
|
+
/**
|
12
|
+
* 是否只读
|
13
|
+
*/
|
10
14
|
readonly?: boolean;
|
15
|
+
/**
|
16
|
+
* 是否显示行号
|
17
|
+
*/
|
11
18
|
lineNumbers?: string;
|
19
|
+
/**
|
20
|
+
* 是否启用小地图
|
21
|
+
*/
|
12
22
|
minimap?: boolean;
|
23
|
+
/**
|
24
|
+
* 分类
|
25
|
+
*/
|
13
26
|
category?: string;
|
14
|
-
|
27
|
+
/**
|
28
|
+
* 当前语言
|
29
|
+
*/
|
15
30
|
language?: string;
|
31
|
+
/**
|
32
|
+
* 滚动条距离顶部位置
|
33
|
+
*/
|
16
34
|
scrollTop?: number;
|
35
|
+
/**
|
36
|
+
* 选区信息
|
37
|
+
*/
|
17
38
|
selection?: Range;
|
39
|
+
/**
|
40
|
+
* 架构提示信息
|
41
|
+
*/
|
42
|
+
schema?: any;
|
43
|
+
/**
|
44
|
+
* 用户自定义智能提示信息
|
45
|
+
*/
|
46
|
+
intelli?: CodeIntelli;
|
18
47
|
};
|
19
48
|
/**
|
20
49
|
* 是否显示边框
|
@@ -1,42 +1,30 @@
|
|
1
1
|
import { type Monaco } from "../../plugins";
|
2
2
|
import { CodeProps } from "./@types";
|
3
|
-
declare const _default: import("vue").DefineComponent<
|
4
|
-
config: any;
|
5
|
-
}>>, {
|
3
|
+
declare const _default: import("vue").DefineComponent<CodeProps, {
|
6
4
|
layout: () => void;
|
7
5
|
getEditor: () => Monaco.editor.IStandaloneCodeEditor;
|
8
|
-
|
6
|
+
registerIntelli: (language: string, keywords: string[]) => void;
|
7
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
9
8
|
scroll: (scrollTop: number) => any;
|
10
9
|
change: (value: string) => any;
|
11
10
|
mounted: (monaco: typeof Monaco, editor: Monaco.editor.IStandaloneCodeEditor) => any;
|
12
11
|
"update:modelValue": (value: any) => any;
|
13
|
-
}, string, import("vue").PublicProps, Readonly<
|
14
|
-
config?: any;
|
15
|
-
border?: boolean;
|
16
|
-
modelValue?: string;
|
17
|
-
} & {
|
12
|
+
}, string, import("vue").PublicProps, Readonly<CodeProps> & Readonly<{
|
18
13
|
onScroll?: (scrollTop: number) => any;
|
19
14
|
onChange?: (value: string) => any;
|
20
15
|
onMounted?: (monaco: typeof Monaco, editor: Monaco.editor.IStandaloneCodeEditor) => any;
|
21
16
|
"onUpdate:modelValue"?: (value: any) => any;
|
22
17
|
}>, {
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
34
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
35
|
-
} : {
|
36
|
-
type: import('vue').PropType<T[K]>;
|
37
|
-
required: true;
|
18
|
+
options: {
|
19
|
+
readonly?: boolean;
|
20
|
+
lineNumbers?: string;
|
21
|
+
minimap?: boolean;
|
22
|
+
category?: string;
|
23
|
+
language?: string;
|
24
|
+
scrollTop?: number;
|
25
|
+
selection?: import("./@types").Range;
|
26
|
+
schema?: any;
|
27
|
+
intelli?: import("./@types/CodeIntelli").default;
|
38
28
|
};
|
39
|
-
}
|
40
|
-
|
41
|
-
[K in keyof T]: T[K];
|
42
|
-
} & {};
|
29
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
30
|
+
export default _default;
|
@@ -16,17 +16,25 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
16
16
|
change: (...args: any[]) => void;
|
17
17
|
"update:modelValue": (...args: any[]) => void;
|
18
18
|
"update:original": (...args: any[]) => void;
|
19
|
-
}, string, import("vue").PublicProps, Readonly<{
|
20
|
-
inline:
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
19
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
20
|
+
inline: {
|
21
|
+
type: BooleanConstructor;
|
22
|
+
default: boolean;
|
23
|
+
};
|
24
|
+
language: {
|
25
|
+
type: StringConstructor;
|
26
|
+
};
|
27
|
+
original: {
|
28
|
+
type: StringConstructor;
|
29
|
+
};
|
30
|
+
modelValue: {
|
31
|
+
type: StringConstructor;
|
32
|
+
};
|
33
|
+
}>> & Readonly<{
|
26
34
|
onChange?: (...args: any[]) => any;
|
27
35
|
"onUpdate:modelValue"?: (...args: any[]) => any;
|
28
36
|
"onUpdate:original"?: (...args: any[]) => any;
|
29
37
|
}>, {
|
30
38
|
inline: boolean;
|
31
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}>;
|
39
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
32
40
|
export default _default;
|
@@ -0,0 +1,2 @@
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
2
|
+
export default _default;
|
@@ -1,2 +1,2 @@
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}>;
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
2
2
|
export default _default;
|
@@ -6,10 +6,8 @@ type __VLS_PublicProps = {
|
|
6
6
|
declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
7
7
|
scroll: (...args: any[]) => void;
|
8
8
|
change: (...args: any[]) => void;
|
9
|
-
}, string, import("vue").PublicProps, Readonly<{
|
10
|
-
modelValue?: string;
|
11
|
-
} & RichTextProps & {
|
9
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
12
10
|
onScroll?: (...args: any[]) => any;
|
13
11
|
onChange?: (...args: any[]) => any;
|
14
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}>;
|
12
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
15
13
|
export default _default;
|
@@ -1,2 +1,2 @@
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}>;
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
2
2
|
export default _default;
|
@@ -1,7 +1,8 @@
|
|
1
1
|
import HaCode from "./Code.vue";
|
2
2
|
import HaCompare from "./Compare.vue";
|
3
|
+
import HaInput from "./Input.vue";
|
3
4
|
import HaOption from "./Option.vue";
|
4
5
|
import HaRichText from "./RichText.vue";
|
5
6
|
import HaSelect from "./Select.vue";
|
6
7
|
export * from "./@types";
|
7
|
-
export { HaCode, HaCompare, HaOption, HaRichText, HaSelect };
|
8
|
+
export { HaCode, HaCompare, HaInput, HaOption, HaRichText, HaSelect };
|
package/esm/coms/index.d.ts
CHANGED
@@ -1,15 +1,13 @@
|
|
1
|
-
declare
|
2
|
-
declare var __VLS_inheritedAttrs: {};
|
3
|
-
declare const __VLS_templateResult: {
|
1
|
+
declare function __VLS_template(): {
|
4
2
|
slots: {
|
5
|
-
default?(_:
|
3
|
+
default?(_: {}): any;
|
6
4
|
};
|
7
5
|
refs: {};
|
8
|
-
attrs: Partial<
|
6
|
+
attrs: Partial<{}>;
|
9
7
|
};
|
10
|
-
type
|
11
|
-
declare const __VLS_component: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}>;
|
12
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component,
|
8
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
9
|
+
declare const __VLS_component: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
10
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
13
11
|
export default _default;
|
14
12
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
15
13
|
new (): {
|
@@ -1,24 +1,25 @@
|
|
1
|
-
declare
|
2
|
-
declare var __VLS_inheritedAttrs: {};
|
3
|
-
declare const __VLS_templateResult: {
|
1
|
+
declare function __VLS_template(): {
|
4
2
|
slots: {
|
5
|
-
default?(_:
|
3
|
+
default?(_: {}): any;
|
6
4
|
};
|
7
5
|
refs: {};
|
8
|
-
attrs: Partial<
|
6
|
+
attrs: Partial<{}>;
|
9
7
|
};
|
10
|
-
type
|
8
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
11
9
|
declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
12
10
|
container: {
|
13
11
|
type: BooleanConstructor;
|
14
12
|
default: boolean;
|
15
13
|
};
|
16
|
-
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
17
|
-
container:
|
18
|
-
|
14
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
15
|
+
container: {
|
16
|
+
type: BooleanConstructor;
|
17
|
+
default: boolean;
|
18
|
+
};
|
19
|
+
}>> & Readonly<{}>, {
|
19
20
|
container: boolean;
|
20
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}>;
|
21
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component,
|
21
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
22
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
22
23
|
export default _default;
|
23
24
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
24
25
|
new (): {
|
@@ -0,0 +1,2 @@
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
2
|
+
export default _default;
|