orion-design 0.1.4 → 0.1.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (269) hide show
  1. package/README.md +5 -0
  2. package/dist/components/Button/Button.vue.d.ts +2 -0
  3. package/dist/components/Button/index.d.ts +4 -0
  4. package/dist/components/Button/index.js +27 -0
  5. package/dist/components/Button/index.js.map +1 -0
  6. package/dist/components/Flex/Col.d.ts +4 -4
  7. package/dist/components/Flex/Item.d.ts +4 -4
  8. package/dist/components/Flex/Row.d.ts +4 -4
  9. package/dist/components/Flex/index.d.ts +4 -4
  10. package/dist/components/Flex/index.js +95 -127
  11. package/dist/components/Flex/index.js.map +1 -0
  12. package/dist/components/Form/Form.d.ts +21 -0
  13. package/dist/components/Form/Form.js +5 -0
  14. package/dist/components/Form/Form.js.map +1 -0
  15. package/dist/components/Form/Form.vue.d.ts +465 -0
  16. package/dist/components/Form/PasswordInput/PasswordInput.d.ts +15 -0
  17. package/dist/components/Form/PasswordInput/PasswordInput.js +2 -0
  18. package/dist/components/Form/PasswordInput/PasswordInput.js.map +1 -0
  19. package/dist/components/Form/PasswordInput/PasswordInput.vue.d.ts +3 -0
  20. package/dist/components/Form/PasswordInput/index.d.ts +1 -0
  21. package/dist/components/Form/PasswordInput/index.js +2 -0
  22. package/dist/components/Form/PasswordInput/index.js.map +1 -0
  23. package/dist/components/Form/StringInput/StringInput.d.ts +15 -0
  24. package/dist/components/Form/StringInput/StringInput.js +2 -0
  25. package/dist/components/Form/StringInput/StringInput.js.map +1 -0
  26. package/dist/components/Form/StringInput/StringInput.vue.d.ts +3 -0
  27. package/dist/components/Form/StringInput/index.d.ts +1 -0
  28. package/dist/components/Form/StringInput/index.js +2 -0
  29. package/dist/components/Form/StringInput/index.js.map +1 -0
  30. package/dist/components/Form/Textarea/Textarea.d.ts +16 -0
  31. package/dist/components/Form/Textarea/Textarea.js +2 -0
  32. package/dist/components/Form/Textarea/Textarea.js.map +1 -0
  33. package/dist/components/Form/Textarea/Textarea.vue.d.ts +3 -0
  34. package/dist/components/Form/Textarea/index.d.ts +1 -0
  35. package/dist/components/Form/Textarea/index.js +2 -0
  36. package/dist/components/Form/Textarea/index.js.map +1 -0
  37. package/dist/components/Form/hooks/useForm.d.ts +4 -0
  38. package/dist/components/Form/hooks/useForm.js +21 -0
  39. package/dist/components/Form/hooks/useForm.js.map +1 -0
  40. package/dist/components/Form/index.d.ts +273 -0
  41. package/dist/components/Form/index.js +194 -0
  42. package/dist/components/Form/index.js.map +1 -0
  43. package/dist/components/Modal/index.d.ts +1 -14
  44. package/dist/components/Modal/useModal.d.ts +1 -1
  45. package/dist/components/Modal/useModal.js +7 -7
  46. package/dist/components/Modal/useModal.js.map +1 -0
  47. package/dist/components/Pagetable/Pagetable.d.ts +79 -0
  48. package/dist/components/Pagetable/columns/PagetableDatecolumn.d.ts +88 -0
  49. package/dist/components/Pagetable/columns/PagetableStringcolumn.d.ts +62 -0
  50. package/dist/components/Pagetable/index.d.ts +60 -0
  51. package/dist/components/Pagetable/index.js +144 -0
  52. package/dist/components/Pagetable/index.js.map +1 -0
  53. package/dist/components/Pagetable/interface.d.ts +10 -0
  54. package/dist/components/Pagetable/interface.js +2 -0
  55. package/dist/components/Pagetable/interface.js.map +1 -0
  56. package/dist/components/Space/index.d.ts +9 -9
  57. package/dist/components/_util/arrays.d.ts +5 -0
  58. package/dist/components/_util/arrays.js +8 -0
  59. package/dist/components/_util/arrays.js.map +1 -0
  60. package/dist/components/_util/browser.d.ts +3 -0
  61. package/dist/components/_util/browser.js +9 -0
  62. package/dist/components/_util/browser.js.map +1 -0
  63. package/dist/components/_util/classNames.js +20 -27
  64. package/dist/components/_util/classNames.js.map +1 -0
  65. package/dist/components/_util/dom/aria.d.ts +30 -0
  66. package/dist/components/_util/dom/aria.js +46 -0
  67. package/dist/components/_util/dom/aria.js.map +1 -0
  68. package/dist/components/_util/dom/element.d.ts +3 -0
  69. package/dist/components/_util/dom/element.js +18 -0
  70. package/dist/components/_util/dom/element.js.map +1 -0
  71. package/dist/components/_util/dom/event.d.ts +6 -0
  72. package/dist/components/_util/dom/event.js +10 -0
  73. package/dist/components/_util/dom/event.js.map +1 -0
  74. package/dist/components/_util/dom/index.d.ts +6 -0
  75. package/dist/components/_util/dom/index.js +39 -0
  76. package/dist/components/_util/dom/index.js.map +1 -0
  77. package/dist/components/_util/dom/position.d.ts +7 -0
  78. package/dist/components/_util/dom/position.js +30 -0
  79. package/dist/components/_util/dom/position.js.map +1 -0
  80. package/dist/components/_util/dom/scroll.d.ts +11 -0
  81. package/dist/components/_util/dom/scroll.js +78 -0
  82. package/dist/components/_util/dom/scroll.js.map +1 -0
  83. package/dist/components/_util/dom/style.d.ts +9 -0
  84. package/dist/components/_util/dom/style.js +58 -0
  85. package/dist/components/_util/dom/style.js.map +1 -0
  86. package/dist/components/_util/easings.d.ts +1 -0
  87. package/dist/components/_util/easings.js +8 -0
  88. package/dist/components/_util/easings.js.map +1 -0
  89. package/dist/components/_util/error.d.ts +3 -0
  90. package/dist/components/_util/error.js +22 -0
  91. package/dist/components/_util/error.js.map +1 -0
  92. package/dist/components/_util/functions.d.ts +1 -0
  93. package/dist/components/_util/functions.js +6 -0
  94. package/dist/components/_util/functions.js.map +1 -0
  95. package/dist/components/_util/i18n.d.ts +1 -0
  96. package/dist/components/_util/i18n.js +5 -0
  97. package/dist/components/_util/i18n.js.map +1 -0
  98. package/dist/components/_util/index.d.ts +15 -0
  99. package/dist/components/_util/index.js +140 -0
  100. package/dist/components/_util/index.js.map +1 -0
  101. package/dist/components/_util/isValid.js +4 -4
  102. package/dist/components/_util/isValid.js.map +1 -0
  103. package/dist/components/_util/objects.d.ts +8 -0
  104. package/dist/components/_util/objects.js +17 -0
  105. package/dist/components/_util/objects.js.map +1 -0
  106. package/dist/components/_util/props-util/index.d.ts +4 -4
  107. package/dist/components/_util/props-util/index.js +23 -50
  108. package/dist/components/_util/props-util/index.js.map +1 -0
  109. package/dist/components/_util/props-util/initDefaultProps.d.ts +2 -2
  110. package/dist/components/_util/props-util/initDefaultProps.js +13 -24
  111. package/dist/components/_util/props-util/initDefaultProps.js.map +1 -0
  112. package/dist/components/_util/raf.d.ts +2 -0
  113. package/dist/components/_util/raf.js +7 -0
  114. package/dist/components/_util/raf.js.map +1 -0
  115. package/dist/components/_util/rand.d.ts +12 -0
  116. package/dist/components/_util/rand.js +6 -0
  117. package/dist/components/_util/rand.js.map +1 -0
  118. package/dist/components/_util/strings.d.ts +6 -0
  119. package/dist/components/_util/strings.js +11 -0
  120. package/dist/components/_util/strings.js.map +1 -0
  121. package/dist/components/_util/throttleByRaf.d.ts +4 -0
  122. package/dist/components/_util/throttleByRaf.js +16 -0
  123. package/dist/components/_util/throttleByRaf.js.map +1 -0
  124. package/dist/components/_util/type.d.ts +1 -1
  125. package/dist/components/_util/type.js +48 -65
  126. package/dist/components/_util/type.js.map +1 -0
  127. package/dist/components/_util/types.d.ts +10 -0
  128. package/dist/components/_util/types.js +25 -0
  129. package/dist/components/_util/types.js.map +1 -0
  130. package/dist/components/_util/typescript.d.ts +12 -0
  131. package/dist/components/_util/typescript.js +5 -0
  132. package/dist/components/_util/typescript.js.map +1 -0
  133. package/dist/components/_util/util.d.ts +1 -1
  134. package/dist/components/_util/util.js +46 -74
  135. package/dist/components/_util/util.js.map +1 -0
  136. package/dist/components/_util/vue/global-node.d.ts +3 -0
  137. package/dist/components/_util/vue/global-node.js +21 -0
  138. package/dist/components/_util/vue/global-node.js.map +1 -0
  139. package/dist/components/_util/vue/icon.d.ts +23 -0
  140. package/dist/components/_util/vue/icon.js +154 -0
  141. package/dist/components/_util/vue/icon.js.map +1 -0
  142. package/dist/components/_util/vue/index.d.ts +9 -0
  143. package/dist/components/_util/vue/index.js +44 -0
  144. package/dist/components/_util/vue/index.js.map +1 -0
  145. package/dist/components/_util/vue/install.d.ts +6 -0
  146. package/dist/components/_util/vue/install.js +21 -0
  147. package/dist/components/_util/vue/install.js.map +1 -0
  148. package/dist/components/_util/vue/props/index.d.ts +3 -0
  149. package/dist/components/_util/vue/props/index.js +9 -0
  150. package/dist/components/_util/vue/props/index.js.map +1 -0
  151. package/dist/components/_util/vue/props/runtime.d.ts +29 -0
  152. package/dist/components/_util/vue/props/runtime.js +37 -0
  153. package/dist/components/_util/vue/props/runtime.js.map +1 -0
  154. package/dist/components/_util/vue/props/types.d.ts +120 -0
  155. package/dist/components/_util/vue/props/types.js +2 -0
  156. package/dist/components/_util/vue/props/types.js.map +1 -0
  157. package/dist/components/_util/vue/props/util.d.ts +8 -0
  158. package/dist/components/_util/vue/props/util.js +2 -0
  159. package/dist/components/_util/vue/props/util.js.map +1 -0
  160. package/dist/components/_util/vue/refs.d.ts +3 -0
  161. package/dist/components/_util/vue/refs.js +12 -0
  162. package/dist/components/_util/vue/refs.js.map +1 -0
  163. package/dist/components/_util/vue/size.d.ts +2 -0
  164. package/dist/components/_util/vue/size.js +6 -0
  165. package/dist/components/_util/vue/size.js.map +1 -0
  166. package/dist/components/_util/vue/typescript.d.ts +5 -0
  167. package/dist/components/_util/vue/typescript.js +2 -0
  168. package/dist/components/_util/vue/typescript.js.map +1 -0
  169. package/dist/components/_util/vue/validator.d.ts +3 -0
  170. package/dist/components/_util/vue/validator.js +7 -0
  171. package/dist/components/_util/vue/validator.js.map +1 -0
  172. package/dist/components/_util/vue/vnode.d.ts +50 -0
  173. package/dist/components/_util/vue/vnode.js +68 -0
  174. package/dist/components/_util/vue/vnode.js.map +1 -0
  175. package/dist/components/_util/vue-types/index.d.ts +3 -3
  176. package/dist/components/_util/vue-types/index.js +275 -417
  177. package/dist/components/_util/vue-types/index.js.map +1 -0
  178. package/dist/components/components.d.ts +4 -0
  179. package/dist/components/components.js +18 -12
  180. package/dist/components/components.js.map +1 -0
  181. package/dist/components/index.d.ts +1 -1
  182. package/dist/components/index.js +25 -24
  183. package/dist/components/index.js.map +1 -0
  184. package/dist/components-BZukhWDk.js +106 -0
  185. package/dist/components-BZukhWDk.js.map +1 -0
  186. package/dist/error/OrionError.js +7 -12
  187. package/dist/error/OrionError.js.map +1 -0
  188. package/dist/functions-DzLqXvGt.js +33 -0
  189. package/dist/functions-DzLqXvGt.js.map +1 -0
  190. package/dist/index-C8JNJPWW.js +8 -0
  191. package/dist/index-C8JNJPWW.js.map +1 -0
  192. package/dist/index.css +1 -44
  193. package/dist/index.d.ts +1 -1
  194. package/dist/index.js +24 -14
  195. package/dist/index.js.map +1 -0
  196. package/dist/print/LodopFuncs.js +48 -111
  197. package/dist/print/LodopFuncs.js.map +1 -0
  198. package/dist/print/index.d.ts +2 -2
  199. package/dist/print/index.js +111 -220
  200. package/dist/print/index.js.map +1 -0
  201. package/dist/request/ErrorHandlerChain.js +17 -15
  202. package/dist/request/ErrorHandlerChain.js.map +1 -0
  203. package/dist/request/RequestFilterChain.d.ts +1 -1
  204. package/dist/request/RequestFilterChain.js +16 -14
  205. package/dist/request/RequestFilterChain.js.map +1 -0
  206. package/dist/request/ResponseParserChain.d.ts +1 -1
  207. package/dist/request/ResponseParserChain.js +17 -15
  208. package/dist/request/ResponseParserChain.js.map +1 -0
  209. package/dist/request/disivion/DateSerializer.js +25 -46
  210. package/dist/request/disivion/DateSerializer.js.map +1 -0
  211. package/dist/request/disivion/DivisionErrorHandler.d.ts +1 -1
  212. package/dist/request/disivion/DivisionErrorHandler.js +30 -52
  213. package/dist/request/disivion/DivisionErrorHandler.js.map +1 -0
  214. package/dist/request/disivion/DivisionResponseParser.d.ts +2 -2
  215. package/dist/request/disivion/DivisionResponseParser.js +13 -25
  216. package/dist/request/disivion/DivisionResponseParser.js.map +1 -0
  217. package/dist/request/disivion/index.d.ts +3 -3
  218. package/dist/request/disivion/index.js +230 -480
  219. package/dist/request/disivion/index.js.map +1 -0
  220. package/dist/request/error/BizExceptionResponseError.d.ts +2 -2
  221. package/dist/request/error/BizExceptionResponseError.js +8 -15
  222. package/dist/request/error/BizExceptionResponseError.js.map +1 -0
  223. package/dist/request/error/ExceptionResponseError.d.ts +2 -2
  224. package/dist/request/error/ExceptionResponseError.js +8 -15
  225. package/dist/request/error/ExceptionResponseError.js.map +1 -0
  226. package/dist/request/error/ResponseError.d.ts +1 -1
  227. package/dist/request/error/ResponseError.js +7 -14
  228. package/dist/request/error/ResponseError.js.map +1 -0
  229. package/dist/request/error/SessionExceptionResponseError.d.ts +2 -2
  230. package/dist/request/error/SessionExceptionResponseError.js +8 -15
  231. package/dist/request/error/SessionExceptionResponseError.js.map +1 -0
  232. package/dist/request/index.js +11 -17
  233. package/dist/request/index.js.map +1 -0
  234. package/dist/style/index.d.ts +0 -3
  235. package/dist/style/index.js +1 -0
  236. package/dist/style/index.js.map +1 -0
  237. package/dist/utils/DateUtil.js +36 -50
  238. package/dist/utils/DateUtil.js.map +1 -0
  239. package/dist/utils/NumberUtil.js +9 -8
  240. package/dist/utils/NumberUtil.js.map +1 -0
  241. package/dist/utils/cloneDeep.js +5 -1
  242. package/dist/utils/cloneDeep.js.map +1 -0
  243. package/dist/utils/delay.js +6 -4
  244. package/dist/utils/delay.js.map +1 -0
  245. package/dist/utils/functions.d.ts +1 -0
  246. package/dist/utils/functions.js +6 -0
  247. package/dist/utils/functions.js.map +1 -0
  248. package/dist/utils/index.js +15 -9
  249. package/dist/utils/index.js.map +1 -0
  250. package/dist/utils/md5.js +121 -244
  251. package/dist/utils/md5.js.map +1 -0
  252. package/dist/utils/uuid.js +28 -58
  253. package/dist/utils/uuid.js.map +1 -0
  254. package/dist/utils/vue/install.d.ts +6 -0
  255. package/dist/utils/vue/install.js +21 -0
  256. package/dist/utils/vue/install.js.map +1 -0
  257. package/dist/utils/vue/typescript.d.ts +5 -0
  258. package/dist/utils/vue/typescript.js +2 -0
  259. package/dist/utils/vue/typescript.js.map +1 -0
  260. package/dist/version/index.d.ts +1 -1
  261. package/dist/version/index.js +5 -6
  262. package/dist/version/index.js.map +1 -0
  263. package/dist/version/version.d.ts +1 -1
  264. package/dist/version/version.js +5 -3
  265. package/dist/version/version.js.map +1 -0
  266. package/dist/vite.svg +1 -0
  267. package/global.d.ts +6 -0
  268. package/package.json +52 -63
  269. package/dist/components-BTX5S_6V.js +0 -128
@@ -0,0 +1,17 @@
1
+ import { get as n, set as o } from "lodash-es";
2
+ import { h as i } from "../../functions-DzLqXvGt.js";
3
+ const O = (e) => Object.keys(e), f = (e) => Object.entries(e), u = (e, t, r) => ({
4
+ get value() {
5
+ return n(e, t, r);
6
+ },
7
+ set value(s) {
8
+ o(e, t, s);
9
+ }
10
+ });
11
+ export {
12
+ f as entriesOf,
13
+ u as getProp,
14
+ i as hasOwn,
15
+ O as keysOf
16
+ };
17
+ //# sourceMappingURL=objects.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"objects.js","sources":["../../../src/components/_util/objects.ts"],"sourcesContent":["import { get, set } from 'lodash-unified'\r\nimport type { Entries } from 'type-fest'\r\nimport type { Arrayable } from '.'\r\n\r\nexport const keysOf = <T>(arr: T) => Object.keys(arr) as Array<keyof T>\r\nexport const entriesOf = <T>(arr: T) => Object.entries(arr) as Entries<T>\r\nexport { hasOwn } from '@vue/shared'\r\n\r\nexport const getProp = <T = any>(\r\n obj: Record<string, any>,\r\n path: Arrayable<string>,\r\n defaultValue?: any\r\n): { value: T } => {\r\n return {\r\n get value() {\r\n return get(obj, path, defaultValue)\r\n },\r\n set value(val: any) {\r\n set(obj, path, val)\r\n },\r\n }\r\n}\r\n"],"names":["keysOf","arr","entriesOf","getProp","obj","path","defaultValue","get","val","set"],"mappings":";;AAIO,MAAMA,IAAS,CAAIC,MAAW,OAAO,KAAKA,CAAG,GACvCC,IAAY,CAAID,MAAW,OAAO,QAAQA,CAAG,GAG7CE,IAAU,CACrBC,GACAC,GACAC,OAEO;AAAA,EACL,IAAI,QAAQ;AACH,WAAAC,EAAIH,GAAKC,GAAMC,CAAY;AAAA,EACpC;AAAA,EACA,IAAI,MAAME,GAAU;AACd,IAAAC,EAAAL,GAAKC,GAAMG,CAAG;AAAA,EACpB;AAAA;"}
@@ -1,6 +1,6 @@
1
- import initDefaultProps from './initDefaultProps';
1
+ import { default as initDefaultProps } from './initDefaultProps';
2
2
  export declare const skipFlattenKey: unique symbol;
3
- export declare const flattenChildren: (children?: any[], filterEmpty?: boolean) => any[];
4
- export declare function filterEmpty(children?: any[]): any[];
5
- export declare function isEmptyElement(c: any): boolean;
3
+ export declare const flattenChildren: (children?: never[], filterEmpty?: boolean) => never[];
4
+ export declare function filterEmpty(children?: never[]): never[];
5
+ export declare function isEmptyElement(c: any): any;
6
6
  export { initDefaultProps };
@@ -1,53 +1,26 @@
1
- import { Fragment, isVNode, Comment, Text } from 'vue';
2
- import isValid from '../isValid.js';
3
- export { default as initDefaultProps } from './initDefaultProps.js';
4
-
5
- const skipFlattenKey = Symbol('skipFlatten');
6
- const flattenChildren = (children = [], filterEmpty = true) => {
7
- const temp = Array.isArray(children) ? children : [children];
8
- const res = [];
9
- temp.forEach(child => {
10
- if (Array.isArray(child)) {
11
- res.push(...flattenChildren(child, filterEmpty));
12
- // @ts-ignore
13
- } else if (child && child.type === Fragment) {
14
- // @ts-ignore
15
- if (child.key === skipFlattenKey) {
16
- res.push(child);
17
- } else {
18
- // @ts-ignore
19
- res.push(...flattenChildren(child.children, filterEmpty));
20
- }
21
- } else if (child && isVNode(child)) {
22
- if (filterEmpty && !isEmptyElement(child)) {
23
- res.push(child);
24
- } else if (!filterEmpty) {
25
- res.push(child);
26
- }
27
- } else if (isValid(child)) {
28
- res.push(child);
29
- }
30
- });
31
- return res;
1
+ import { Fragment as p, isVNode as u, Comment as a, Text as y } from "vue";
2
+ import m from "../isValid.js";
3
+ import { default as C } from "./initDefaultProps.js";
4
+ const i = Symbol("skipFlatten"), o = (r = [], s = !0) => {
5
+ const t = Array.isArray(r) ? r : [r], n = [];
6
+ return t.forEach((e) => {
7
+ Array.isArray(e) ? n.push(...o(e, s)) : e && e.type === p ? e.key === i ? n.push(e) : n.push(...o(e.children, s)) : e && u(e) ? s && !f(e) ? n.push(e) : s || n.push(e) : m(e) && n.push(e);
8
+ }), n;
32
9
  };
33
- function filterEmpty(children = []) {
34
- const res = [];
35
- children.forEach(child => {
36
- if (Array.isArray(child)) {
37
- // @ts-ignore
38
- res.push(...child);
39
- // @ts-ignore
40
- } else if (child?.type === Fragment) {
41
- // @ts-ignore
42
- res.push(...filterEmpty(child.children));
43
- } else {
44
- res.push(child);
45
- }
46
- });
47
- return res.filter(c => !isEmptyElement(c));
10
+ function A(r = []) {
11
+ const s = [];
12
+ return r.forEach((t) => {
13
+ Array.isArray(t) ? s.push(...t) : (t == null ? void 0 : t.type) === p ? s.push(...A(t.children)) : s.push(t);
14
+ }), s.filter((t) => !f(t));
48
15
  }
49
- function isEmptyElement(c) {
50
- return c && (c.type === Comment || c.type === Fragment && c.children.length === 0 || c.type === Text && c.children.trim() === '');
16
+ function f(r) {
17
+ return r && (r.type === a || r.type === p && r.children.length === 0 || r.type === y && r.children.trim() === "");
51
18
  }
52
-
53
- export { filterEmpty, flattenChildren, isEmptyElement, skipFlattenKey };
19
+ export {
20
+ A as filterEmpty,
21
+ o as flattenChildren,
22
+ C as initDefaultProps,
23
+ f as isEmptyElement,
24
+ i as skipFlattenKey
25
+ };
26
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sources":["../../../../src/components/_util/props-util/index.ts"],"sourcesContent":["import { isVNode, Fragment, Comment, Text } from 'vue'\r\nimport isValid from '../isValid'\r\nimport initDefaultProps from './initDefaultProps'\r\n\r\nexport const skipFlattenKey = Symbol('skipFlatten')\r\n\r\nexport const flattenChildren = (children = [], filterEmpty = true) => {\r\n const temp = Array.isArray(children) ? children : [children]\r\n const res = []\r\n temp.forEach((child) => {\r\n if (Array.isArray(child)) {\r\n res.push(...flattenChildren(child, filterEmpty))\r\n // @ts-ignore\r\n } else if (child && child.type === Fragment) {\r\n // @ts-ignore\r\n if (child.key === skipFlattenKey) {\r\n res.push(child)\r\n } else {\r\n // @ts-ignore\r\n res.push(...flattenChildren(child.children, filterEmpty))\r\n }\r\n } else if (child && isVNode(child)) {\r\n if (filterEmpty && !isEmptyElement(child)) {\r\n res.push(child)\r\n } else if (!filterEmpty) {\r\n res.push(child)\r\n }\r\n } else if (isValid(child)) {\r\n res.push(child)\r\n }\r\n })\r\n return res\r\n}\r\n\r\nexport function filterEmpty(children = []) {\r\n const res = []\r\n children.forEach((child) => {\r\n if (Array.isArray(child)) {\r\n // @ts-ignore\r\n res.push(...child)\r\n // @ts-ignore\r\n } else if (child?.type === Fragment) {\r\n // @ts-ignore\r\n res.push(...filterEmpty(child.children))\r\n } else {\r\n res.push(child)\r\n }\r\n })\r\n return res.filter((c) => !isEmptyElement(c))\r\n}\r\n\r\nexport function isEmptyElement(c: any) {\r\n return c && (c.type === Comment || (c.type === Fragment && c.children.length === 0) || (c.type === Text && c.children.trim() === ''))\r\n}\r\n\r\nexport { initDefaultProps }\r\n"],"names":["skipFlattenKey","flattenChildren","children","filterEmpty","temp","res","child","Fragment","isVNode","isEmptyElement","isValid","c","Comment","Text"],"mappings":";;;AAIa,MAAAA,IAAiB,OAAO,aAAa,GAErCC,IAAkB,CAACC,IAAW,IAAIC,IAAc,OAAS;AACpE,QAAMC,IAAO,MAAM,QAAQF,CAAQ,IAAIA,IAAW,CAACA,CAAQ,GACrDG,IAAM,CAAA;AACP,SAAAD,EAAA,QAAQ,CAACE,MAAU;AAClB,IAAA,MAAM,QAAQA,CAAK,IACrBD,EAAI,KAAK,GAAGJ,EAAgBK,GAAOH,CAAW,CAAC,IAEtCG,KAASA,EAAM,SAASC,IAE7BD,EAAM,QAAQN,IAChBK,EAAI,KAAKC,CAAK,IAGdD,EAAI,KAAK,GAAGJ,EAAgBK,EAAM,UAAUH,CAAW,CAAC,IAEjDG,KAASE,EAAQF,CAAK,IAC3BH,KAAe,CAACM,EAAeH,CAAK,IACtCD,EAAI,KAAKC,CAAK,IACJH,KACVE,EAAI,KAAKC,CAAK,IAEPI,EAAQJ,CAAK,KACtBD,EAAI,KAAKC,CAAK;AAAA,EAChB,CACD,GACMD;AACT;AAEgB,SAAAF,EAAYD,IAAW,IAAI;AACzC,QAAMG,IAAM,CAAA;AACH,SAAAH,EAAA,QAAQ,CAACI,MAAU;AACtB,IAAA,MAAM,QAAQA,CAAK,IAEjBD,EAAA,KAAK,GAAGC,CAAK,KAERA,KAAA,gBAAAA,EAAO,UAASC,IAEzBF,EAAI,KAAK,GAAGF,EAAYG,EAAM,QAAQ,CAAC,IAEvCD,EAAI,KAAKC,CAAK;AAAA,EAChB,CACD,GACMD,EAAI,OAAO,CAACM,MAAM,CAACF,EAAeE,CAAC,CAAC;AAC7C;AAEO,SAASF,EAAeE,GAAQ;AACrC,SAAOA,MAAMA,EAAE,SAASC,KAAYD,EAAE,SAASJ,KAAYI,EAAE,SAAS,WAAW,KAAOA,EAAE,SAASE,KAAQF,EAAE,SAAS,WAAW;AACnI;"}
@@ -1,5 +1,5 @@
1
- import type { PropType } from 'vue';
2
- import type { VueTypeValidableDef, VueTypeDef } from 'vue-types';
1
+ import { PropType } from 'vue';
2
+ import { VueTypeValidableDef, VueTypeDef } from 'vue-types';
3
3
  declare const initDefaultProps: <T>(types: T, defaultProps: { [K in keyof T]?: T[K] extends VueTypeValidableDef<infer U> ? U : T[K] extends VueTypeDef<infer U> ? U : T[K] extends {
4
4
  type: PropType<infer U>;
5
5
  } ? U : any; }) => T;
@@ -1,25 +1,14 @@
1
- const initDefaultProps = (types, defaultProps) => {
2
- const propTypes = {
3
- ...types
4
- };
5
- Object.keys(defaultProps).forEach(k => {
6
- const prop = propTypes[k];
7
- if (prop) {
8
- if (prop.type || prop.default) {
9
- prop.default = defaultProps[k];
10
- } else if (prop.def) {
11
- prop.def(defaultProps[k]);
12
- } else {
13
- propTypes[k] = {
14
- type: prop,
15
- default: defaultProps[k]
16
- };
17
- }
18
- } else {
19
- throw new Error(`not have ${k} prop`);
20
- }
21
- });
22
- return propTypes;
1
+ const p = (f, o) => {
2
+ const r = { ...f };
3
+ return Object.keys(o).forEach((t) => {
4
+ const e = r[t];
5
+ if (e)
6
+ e.type || e.default ? e.default = o[t] : e.def ? e.def(o[t]) : r[t] = { type: e, default: o[t] };
7
+ else
8
+ throw new Error(`not have ${t} prop`);
9
+ }), r;
23
10
  };
24
-
25
- export { initDefaultProps as default };
11
+ export {
12
+ p as default
13
+ };
14
+ //# sourceMappingURL=initDefaultProps.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"initDefaultProps.js","sources":["../../../../src/components/_util/props-util/initDefaultProps.ts"],"sourcesContent":["import type { PropType } from 'vue'\r\nimport type { VueTypeValidableDef, VueTypeDef } from 'vue-types'\r\n\r\nconst initDefaultProps = <T>(\r\n types: T,\r\n defaultProps: {\r\n [K in keyof T]?: T[K] extends VueTypeValidableDef<infer U> ? U : T[K] extends VueTypeDef<infer U> ? U : T[K] extends { type: PropType<infer U> } ? U : any\r\n }\r\n): T => {\r\n const propTypes: T = { ...types }\r\n Object.keys(defaultProps).forEach((k) => {\r\n const prop = propTypes[k] as VueTypeValidableDef\r\n if (prop) {\r\n if (prop.type || prop.default) {\r\n prop.default = defaultProps[k]\r\n } else if (prop.def) {\r\n prop.def(defaultProps[k])\r\n } else {\r\n propTypes[k] = { type: prop, default: defaultProps[k] }\r\n }\r\n } else {\r\n throw new Error(`not have ${k} prop`)\r\n }\r\n })\r\n return propTypes\r\n}\r\n\r\nexport default initDefaultProps\r\n"],"names":["initDefaultProps","types","defaultProps","propTypes","k","prop"],"mappings":"AAGM,MAAAA,IAAmB,CACvBC,GACAC,MAGM;AACA,QAAAC,IAAe,EAAE,GAAGF;AAC1B,gBAAO,KAAKC,CAAY,EAAE,QAAQ,CAACE,MAAM;AACjC,UAAAC,IAAOF,EAAUC,CAAC;AACxB,QAAIC;AACE,MAAAA,EAAK,QAAQA,EAAK,UACfA,EAAA,UAAUH,EAAaE,CAAC,IACpBC,EAAK,MACTA,EAAA,IAAIH,EAAaE,CAAC,CAAC,IAEdD,EAAAC,CAAC,IAAI,EAAE,MAAMC,GAAM,SAASH,EAAaE,CAAC;;AAGtD,YAAM,IAAI,MAAM,YAAYA,CAAC,OAAO;AAAA,EACtC,CACD,GACMD;AACT;"}
@@ -0,0 +1,2 @@
1
+ export declare const rAF: (fn: () => void) => number;
2
+ export declare const cAF: (handle: number) => void;
@@ -0,0 +1,7 @@
1
+ import { i as o } from "../../index-C8JNJPWW.js";
2
+ const e = (i) => o ? window.requestAnimationFrame(i) : setTimeout(i, 16), m = (i) => o ? window.cancelAnimationFrame(i) : clearTimeout(i);
3
+ export {
4
+ m as cAF,
5
+ e as rAF
6
+ };
7
+ //# sourceMappingURL=raf.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"raf.js","sources":["../../../src/components/_util/raf.ts"],"sourcesContent":["import { isClient } from './browser'\r\n\r\nexport const rAF = (fn: () => void) =>\r\n isClient\r\n ? window.requestAnimationFrame(fn)\r\n : (setTimeout(fn, 16) as unknown as number)\r\n\r\nexport const cAF = (handle: number) =>\r\n isClient ? window.cancelAnimationFrame(handle) : clearTimeout(handle)\r\n"],"names":["rAF","fn","isClient","cAF","handle"],"mappings":";AAEa,MAAAA,IAAM,CAACC,MAClBC,IACI,OAAO,sBAAsBD,CAAE,IAC9B,WAAWA,GAAI,EAAE,GAEXE,IAAM,CAACC,MAClBF,IAAW,OAAO,qBAAqBE,CAAM,IAAI,aAAaA,CAAM;"}
@@ -0,0 +1,12 @@
1
+ /**
2
+ * @deprecated Use `useId` `useIdInjection` instead
3
+ * Generate random number in range [0, 1000]
4
+ * Maybe replace with [uuid](https://www.npmjs.com/package/uuid)
5
+ */
6
+ export declare const generateId: () => number;
7
+ /**
8
+ * @deprecated
9
+ * Generating a random int in range (0, max - 1)
10
+ * @param max {number}
11
+ */
12
+ export declare const getRandomInt: (max: number) => number;
@@ -0,0 +1,6 @@
1
+ const t = () => Math.floor(Math.random() * 1e4), a = (o) => Math.floor(Math.random() * Math.floor(o));
2
+ export {
3
+ t as generateId,
4
+ a as getRandomInt
5
+ };
6
+ //# sourceMappingURL=rand.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"rand.js","sources":["../../../src/components/_util/rand.ts"],"sourcesContent":["/**\r\n * @deprecated Use `useId` `useIdInjection` instead\r\n * Generate random number in range [0, 1000]\r\n * Maybe replace with [uuid](https://www.npmjs.com/package/uuid)\r\n */\r\nexport const generateId = (): number => Math.floor(Math.random() * 10000)\r\n\r\n/**\r\n * @deprecated\r\n * Generating a random int in range (0, max - 1)\r\n * @param max {number}\r\n */\r\nexport const getRandomInt = (max: number) =>\r\n Math.floor(Math.random() * Math.floor(max))\r\n"],"names":["generateId","getRandomInt","max"],"mappings":"AAKO,MAAMA,IAAa,MAAc,KAAK,MAAM,KAAK,WAAW,GAAK,GAO3DC,IAAe,CAACC,MAC3B,KAAK,MAAM,KAAK,WAAW,KAAK,MAAMA,CAAG,CAAC;"}
@@ -0,0 +1,6 @@
1
+ export { camelize, hyphenate, hyphenate as kebabCase, } from '@vue/shared';
2
+ /**
3
+ * fork from {@link https://github.com/sindresorhus/escape-string-regexp}
4
+ */
5
+ export declare const escapeStringRegexp: (string?: string) => string;
6
+ export declare const capitalize: <T extends string>(str: T) => Capitalize<T>;
@@ -0,0 +1,11 @@
1
+ import { l as a } from "../../functions-DzLqXvGt.js";
2
+ import { c as i, a as o, a as l } from "../../functions-DzLqXvGt.js";
3
+ const c = (e = "") => e.replace(/[|\\{}()[\]^$+*?.]/g, "\\$&").replace(/-/g, "\\x2d"), t = (e) => a(e);
4
+ export {
5
+ i as camelize,
6
+ t as capitalize,
7
+ c as escapeStringRegexp,
8
+ o as hyphenate,
9
+ l as kebabCase
10
+ };
11
+ //# sourceMappingURL=strings.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"strings.js","sources":["../../../src/components/_util/strings.ts"],"sourcesContent":["import { capitalize as toCapitalize } from '@vue/shared'\r\nexport {\r\n camelize,\r\n hyphenate,\r\n hyphenate as kebabCase, // alias\r\n} from '@vue/shared'\r\n\r\n/**\r\n * fork from {@link https://github.com/sindresorhus/escape-string-regexp}\r\n */\r\nexport const escapeStringRegexp = (string = '') =>\r\n string.replace(/[|\\\\{}()[\\]^$+*?.]/g, '\\\\$&').replace(/-/g, '\\\\x2d')\r\n\r\n// NOTE: improve capitalize types. Restore previous code after the [PR](https://github.com/vuejs/core/pull/6212) merge\r\nexport const capitalize = <T extends string>(str: T) =>\r\n toCapitalize(str) as Capitalize<T>\r\n"],"names":["escapeStringRegexp","string","capitalize","str","toCapitalize"],"mappings":";;AAUa,MAAAA,IAAqB,CAACC,IAAS,OAC1CA,EAAO,QAAQ,uBAAuB,MAAM,EAAE,QAAQ,MAAM,OAAO,GAGxDC,IAAa,CAAmBC,MAC3CC,EAAaD,CAAG;"}
@@ -0,0 +1,4 @@
1
+ export declare function throttleByRaf(cb: (...args: any[]) => void): {
2
+ (...args: any[]): void;
3
+ cancel(): void;
4
+ };
@@ -0,0 +1,16 @@
1
+ import { cAF as e, rAF as n } from "./raf.js";
2
+ function i(o) {
3
+ let t = 0;
4
+ const r = (...c) => {
5
+ t && e(t), t = n(() => {
6
+ o(...c), t = 0;
7
+ });
8
+ };
9
+ return r.cancel = () => {
10
+ e(t), t = 0;
11
+ }, r;
12
+ }
13
+ export {
14
+ i as throttleByRaf
15
+ };
16
+ //# sourceMappingURL=throttleByRaf.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"throttleByRaf.js","sources":["../../../src/components/_util/throttleByRaf.ts"],"sourcesContent":["import { cAF, rAF } from './raf'\r\n\r\nexport function throttleByRaf(cb: (...args: any[]) => void) {\r\n let timer = 0\r\n\r\n const throttle = (...args: any[]): void => {\r\n if (timer) {\r\n cAF(timer)\r\n }\r\n timer = rAF(() => {\r\n cb(...args)\r\n timer = 0\r\n })\r\n }\r\n\r\n throttle.cancel = () => {\r\n cAF(timer)\r\n timer = 0\r\n }\r\n\r\n return throttle\r\n}\r\n"],"names":["throttleByRaf","cb","timer","throttle","args","cAF","rAF"],"mappings":";AAEO,SAASA,EAAcC,GAA8B;AAC1D,MAAIC,IAAQ;AAEN,QAAAC,IAAW,IAAIC,MAAsB;AACzC,IAAIF,KACFG,EAAIH,CAAK,GAEXA,IAAQI,EAAI,MAAM;AAChB,MAAAL,EAAG,GAAGG,CAAI,GACFF,IAAA;AAAA,IAAA,CACT;AAAA,EAAA;AAGH,SAAAC,EAAS,SAAS,MAAM;AACtB,IAAAE,EAAIH,CAAK,GACDA,IAAA;AAAA,EAAA,GAGHC;AACT;"}
@@ -1,4 +1,4 @@
1
- import type { PropType, Plugin, Ref, VNode, SlotsType } from 'vue';
1
+ import { PropType, Plugin, Ref, VNode, SlotsType } from 'vue';
2
2
  export declare const tuple: <T extends string[]>(...args: T) => T;
3
3
  export declare const tupleNum: <T extends number[]>(...args: T) => T;
4
4
  /**
@@ -1,66 +1,49 @@
1
- // https://stackoverflow.com/questions/46176165/ways-to-get-string-literal-type-of-array-values-without-enum-overhead
2
- const tuple = (...args) => args;
3
- const tupleNum = (...args) => args;
4
- const withInstall = comp => {
5
- const c = comp;
6
- c.install = function (app) {
7
- // @ts-ignore
8
- app.component(c.displayName || c.name, comp);
9
- };
10
- return comp;
1
+ const r = (...t) => t, o = (...t) => t, a = (t) => {
2
+ const n = t;
3
+ return n.install = function(e) {
4
+ e.component(n.displayName || n.name, t);
5
+ }, t;
11
6
  };
12
- function eventType() {
13
- return {
14
- type: [Function, Array]
15
- };
16
- }
17
- function objectType(defaultVal) {
18
- return {
19
- type: Object,
20
- default: defaultVal
21
- };
22
- }
23
- function booleanType(defaultVal) {
24
- return {
25
- type: Boolean,
26
- default: defaultVal
27
- };
28
- }
29
- function functionType(defaultVal) {
30
- return {
31
- type: Function,
32
- default: defaultVal
33
- };
34
- }
35
- function anyType(defaultVal, required) {
36
- const type = {
37
- validator: () => true,
38
- default: defaultVal
39
- };
40
- return required ? type : type;
41
- }
42
- function vNodeType() {
43
- return {
44
- validator: () => true
45
- };
46
- }
47
- function arrayType(defaultVal) {
48
- return {
49
- type: Array,
50
- default: defaultVal
51
- };
52
- }
53
- function stringType(defaultVal) {
54
- return {
55
- type: String,
56
- default: defaultVal
57
- };
58
- }
59
- function someType(types, defaultVal) {
60
- return types ? {
61
- type: types,
62
- default: defaultVal
63
- } : anyType(defaultVal);
64
- }
65
-
66
- export { anyType, arrayType, booleanType, eventType, functionType, objectType, someType, stringType, tuple, tupleNum, vNodeType, withInstall };
7
+ function y() {
8
+ return { type: [Function, Array] };
9
+ }
10
+ function c(t) {
11
+ return { type: Object, default: t };
12
+ }
13
+ function i(t) {
14
+ return { type: Boolean, default: t };
15
+ }
16
+ function p(t) {
17
+ return { type: Function, default: t };
18
+ }
19
+ function u(t, n) {
20
+ const e = { validator: () => !0, default: t };
21
+ return e;
22
+ }
23
+ function f() {
24
+ return { validator: () => !0 };
25
+ }
26
+ function l(t) {
27
+ return { type: Array, default: t };
28
+ }
29
+ function d(t) {
30
+ return { type: String, default: t };
31
+ }
32
+ function s(t, n) {
33
+ return t ? { type: t, default: n } : u(n);
34
+ }
35
+ export {
36
+ u as anyType,
37
+ l as arrayType,
38
+ i as booleanType,
39
+ y as eventType,
40
+ p as functionType,
41
+ c as objectType,
42
+ s as someType,
43
+ d as stringType,
44
+ r as tuple,
45
+ o as tupleNum,
46
+ f as vNodeType,
47
+ a as withInstall
48
+ };
49
+ //# sourceMappingURL=type.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"type.js","sources":["../../../src/components/_util/type.ts"],"sourcesContent":["// @ts-ignore\r\nimport type { App, PropType, Plugin, Ref, VNode, SlotsType } from 'vue'\r\n\r\n// https://stackoverflow.com/questions/46176165/ways-to-get-string-literal-type-of-array-values-without-enum-overhead\r\nexport const tuple = <T extends string[]>(...args: T) => args\r\n\r\nexport const tupleNum = <T extends number[]>(...args: T) => args\r\n\r\n/**\r\n * https://stackoverflow.com/a/59187769\r\n * Extract the type of an element of an array/tuple without performing indexing\r\n */\r\nexport type ElementOf<T> = T extends (infer E)[] ? E : T extends readonly (infer F)[] ? F : never\r\n\r\n/**\r\n * https://github.com/Microsoft/TypeScript/issues/29729\r\n */\r\nexport type LiteralUnion<T extends string> = T | (string & {})\r\n\r\nexport type Data = Record<string, unknown>\r\n\r\nexport type Key = string | number\r\n\r\ntype DefaultFactory<T> = (props: Data) => T | null | undefined\r\n\r\nexport interface PropOptions<T = any, D = T> {\r\n type?: PropType<T> | true | null\r\n required?: boolean\r\n default?: D | DefaultFactory<D> | null | undefined | object\r\n validator?(value: unknown): boolean\r\n}\r\n\r\ndeclare type VNodeChildAtom = VNode | string | number | boolean | null | undefined | void\r\n\r\n// eslint-disable-next-line no-undef\r\nexport type VueNode = VNodeChildAtom | VNodeChildAtom[] | VNode\r\n\r\nexport const withInstall = <T>(comp: T) => {\r\n const c = comp as any\r\n c.install = function (app: App) {\r\n // @ts-ignore\r\n app.component(c.displayName || c.name, comp)\r\n }\r\n\r\n return comp as T & Plugin\r\n}\r\n\r\nexport type MaybeRef<T> = T | Ref<T>\r\n\r\nexport function eventType<T>() {\r\n return { type: [Function, Array] as PropType<T | T[]> }\r\n}\r\n\r\nexport function objectType<T = {}>(defaultVal?: T) {\r\n return { type: Object as PropType<T>, default: defaultVal as T }\r\n}\r\n\r\nexport function booleanType(defaultVal?: boolean) {\r\n return { type: Boolean, default: defaultVal as boolean }\r\n}\r\n\r\nexport function functionType<T = () => {}>(defaultVal?: T) {\r\n return { type: Function as PropType<T>, default: defaultVal as T }\r\n}\r\n\r\nexport function anyType<T = any>(defaultVal?: T, required?: boolean) {\r\n const type = { validator: () => true, default: defaultVal as T } as unknown\r\n return required\r\n ? (type as {\r\n type: PropType<T>\r\n default: T\r\n required: true\r\n })\r\n : (type as {\r\n default: T\r\n type: PropType<T>\r\n })\r\n}\r\nexport function vNodeType<T = VueNode>() {\r\n return { validator: () => true } as unknown as { type: PropType<T> }\r\n}\r\n\r\nexport function arrayType<T extends any[]>(defaultVal?: T) {\r\n return { type: Array as unknown as PropType<T>, default: defaultVal as T }\r\n}\r\n\r\nexport function stringType<T extends string = string>(defaultVal?: T) {\r\n return { type: String as unknown as PropType<T>, default: defaultVal as T }\r\n}\r\n\r\nexport function someType<T>(types?: any[], defaultVal?: T) {\r\n return types ? { type: types as PropType<T>, default: defaultVal as T } : anyType<T>(defaultVal)\r\n}\r\n\r\n// @ts-ignore\r\nexport type CustomSlotsType<T> = SlotsType<T>\r\n\r\nexport type AnyObject = Record<PropertyKey, any>\r\n"],"names":["tuple","args","tupleNum","withInstall","comp","c","app","eventType","objectType","defaultVal","booleanType","functionType","anyType","required","type","vNodeType","arrayType","stringType","someType","types"],"mappings":"AAIa,MAAAA,IAAQ,IAAwBC,MAAYA,GAE5CC,IAAW,IAAwBD,MAAYA,GA+B/CE,IAAc,CAAIC,MAAY;AACzC,QAAMC,IAAID;AACR,SAAAC,EAAA,UAAU,SAAUC,GAAU;AAE9B,IAAAA,EAAI,UAAUD,EAAE,eAAeA,EAAE,MAAMD,CAAI;AAAA,EAAA,GAGtCA;AACT;AAIO,SAASG,IAAe;AAC7B,SAAO,EAAE,MAAM,CAAC,UAAU,KAAK,EAAuB;AACxD;AAEO,SAASC,EAAmBC,GAAgB;AACjD,SAAO,EAAE,MAAM,QAAuB,SAASA,EAAgB;AACjE;AAEO,SAASC,EAAYD,GAAsB;AAChD,SAAO,EAAE,MAAM,SAAS,SAASA,EAAsB;AACzD;AAEO,SAASE,EAA2BF,GAAgB;AACzD,SAAO,EAAE,MAAM,UAAyB,SAASA,EAAgB;AACnE;AAEgB,SAAAG,EAAiBH,GAAgBI,GAAoB;AACnE,QAAMC,IAAO,EAAE,WAAW,MAAM,IAAM,SAASL;AAC/C,SACKK;AASP;AACO,SAASC,IAAyB;AAChC,SAAA,EAAE,WAAW,MAAM;AAC5B;AAEO,SAASC,EAA2BP,GAAgB;AACzD,SAAO,EAAE,MAAM,OAAiC,SAASA,EAAgB;AAC3E;AAEO,SAASQ,EAAsCR,GAAgB;AACpE,SAAO,EAAE,MAAM,QAAkC,SAASA,EAAgB;AAC5E;AAEgB,SAAAS,EAAYC,GAAeV,GAAgB;AAClD,SAAAU,IAAQ,EAAE,MAAMA,GAAsB,SAASV,EAAgB,IAAIG,EAAWH,CAAU;AACjG;"}
@@ -0,0 +1,10 @@
1
+ export { isArray, isFunction, isObject, isString, isDate, isPromise, isSymbol, isPlainObject, } from '@vue/shared';
2
+ export { isVNode } from 'vue';
3
+ export declare const isUndefined: (val: any) => val is undefined;
4
+ export declare const isBoolean: (val: any) => val is boolean;
5
+ export declare const isNumber: (val: any) => val is number;
6
+ export declare const isEmpty: (val: unknown) => boolean;
7
+ export declare const isElement: (e: unknown) => e is Element;
8
+ export declare const isPropAbsent: (prop: unknown) => prop is null | undefined;
9
+ export declare const isStringNumber: (val: string) => boolean;
10
+ export declare const isWindow: (val: unknown) => val is Window;
@@ -0,0 +1,25 @@
1
+ import { i as s, d as t, e as i } from "../../functions-DzLqXvGt.js";
2
+ import { f as l, b as g, k as j, g as E, j as w } from "../../functions-DzLqXvGt.js";
3
+ import { isNil as n } from "lodash-es";
4
+ import { isVNode as O } from "vue";
5
+ const m = (e) => e === void 0, f = (e) => typeof e == "boolean", c = (e) => typeof e == "number", u = (e) => !e && e !== 0 || s(e) && e.length === 0 || t(e) && !Object.keys(e).length, b = (e) => typeof Element > "u" ? !1 : e instanceof Element, a = (e) => n(e), p = (e) => i(e) ? !Number.isNaN(Number(e)) : !1, d = (e) => e === window;
6
+ export {
7
+ s as isArray,
8
+ f as isBoolean,
9
+ l as isDate,
10
+ b as isElement,
11
+ u as isEmpty,
12
+ g as isFunction,
13
+ c as isNumber,
14
+ t as isObject,
15
+ j as isPlainObject,
16
+ E as isPromise,
17
+ a as isPropAbsent,
18
+ i as isString,
19
+ p as isStringNumber,
20
+ w as isSymbol,
21
+ m as isUndefined,
22
+ O as isVNode,
23
+ d as isWindow
24
+ };
25
+ //# sourceMappingURL=types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.js","sources":["../../../src/components/_util/types.ts"],"sourcesContent":["import { isArray, isObject, isString } from '@vue/shared'\r\nimport { isNil } from 'lodash-unified'\r\n\r\nexport {\r\n isArray,\r\n isFunction,\r\n isObject,\r\n isString,\r\n isDate,\r\n isPromise,\r\n isSymbol,\r\n isPlainObject,\r\n} from '@vue/shared'\r\nexport { isVNode } from 'vue'\r\n\r\nexport const isUndefined = (val: any): val is undefined => val === undefined\r\nexport const isBoolean = (val: any): val is boolean => typeof val === 'boolean'\r\nexport const isNumber = (val: any): val is number => typeof val === 'number'\r\n\r\nexport const isEmpty = (val: unknown) =>\r\n (!val && val !== 0) ||\r\n (isArray(val) && val.length === 0) ||\r\n (isObject(val) && !Object.keys(val).length)\r\n\r\nexport const isElement = (e: unknown): e is Element => {\r\n if (typeof Element === 'undefined') return false\r\n return e instanceof Element\r\n}\r\n\r\nexport const isPropAbsent = (prop: unknown): prop is null | undefined => {\r\n return isNil(prop)\r\n}\r\n\r\nexport const isStringNumber = (val: string): boolean => {\r\n if (!isString(val)) {\r\n return false\r\n }\r\n return !Number.isNaN(Number(val))\r\n}\r\n\r\nexport const isWindow = (val: unknown): val is Window => {\r\n return val === window\r\n}\r\n"],"names":["isUndefined","val","isBoolean","isNumber","isEmpty","isArray","isObject","isElement","isPropAbsent","prop","isNil","isStringNumber","isString","isWindow"],"mappings":";;;;AAea,MAAAA,IAAc,CAACC,MAA+BA,MAAQ,QACtDC,IAAY,CAACD,MAA6B,OAAOA,KAAQ,WACzDE,IAAW,CAACF,MAA4B,OAAOA,KAAQ,UAEvDG,IAAU,CAACH,MACrB,CAACA,KAAOA,MAAQ,KAChBI,EAAQJ,CAAG,KAAKA,EAAI,WAAW,KAC/BK,EAASL,CAAG,KAAK,CAAC,OAAO,KAAKA,CAAG,EAAE,QAEzBM,IAAY,CAAC,MACpB,OAAO,UAAY,MAAoB,KACpC,aAAa,SAGTC,IAAe,CAACC,MACpBC,EAAMD,CAAI,GAGNE,IAAiB,CAACV,MACxBW,EAASX,CAAG,IAGV,CAAC,OAAO,MAAM,OAAOA,CAAG,CAAC,IAFvB,IAKEY,IAAW,CAACZ,MAChBA,MAAQ;"}
@@ -0,0 +1,12 @@
1
+ export declare const mutable: <T extends readonly any[] | Record<string, unknown>>(val: T) => Mutable<typeof val>;
2
+ export type Mutable<T> = {
3
+ -readonly [P in keyof T]: T[P];
4
+ };
5
+ export type HTMLElementCustomized<T> = HTMLElement & T;
6
+ /**
7
+ * @deprecated stop to use null
8
+ * @see {@link https://github.com/sindresorhus/meta/discussions/7}
9
+ */
10
+ export type Nullable<T> = T | null;
11
+ export type Arrayable<T> = T | T[];
12
+ export type Awaitable<T> = Promise<T> | T;
@@ -0,0 +1,5 @@
1
+ const e = (t) => t;
2
+ export {
3
+ e as mutable
4
+ };
5
+ //# sourceMappingURL=typescript.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"typescript.js","sources":["../../../src/components/_util/typescript.ts"],"sourcesContent":["export const mutable = <T extends readonly any[] | Record<string, unknown>>(\r\n val: T\r\n) => val as Mutable<typeof val>\r\nexport type Mutable<T> = { -readonly [P in keyof T]: T[P] }\r\n\r\nexport type HTMLElementCustomized<T> = HTMLElement & T\r\n\r\n/**\r\n * @deprecated stop to use null\r\n * @see {@link https://github.com/sindresorhus/meta/discussions/7}\r\n */\r\nexport type Nullable<T> = T | null\r\n\r\nexport type Arrayable<T> = T | T[]\r\nexport type Awaitable<T> = Promise<T> | T\r\n"],"names":["mutable","val"],"mappings":"AAAa,MAAAA,IAAU,CACrBC,MACGA;"}
@@ -1,4 +1,4 @@
1
- import type { VueNode } from './type';
1
+ import { VueNode } from './type';
2
2
  export declare const isFunction: (val: any) => boolean;
3
3
  export declare const controlDefaultValue: any;
4
4
  export declare const isArray: (arg: any) => arg is any[];
@@ -1,83 +1,55 @@
1
- const isFunction = val => typeof val === 'function';
2
- const controlDefaultValue = Symbol('controlDefaultValue');
3
- const isArray = Array.isArray;
4
- const isString = val => typeof val === 'string';
5
- const isSymbol = val => typeof val === 'symbol';
6
- const isObject = val => val !== null && typeof val === 'object';
7
- const onRE = /^on[^a-z]/;
8
- const isOn = key => onRE.test(key);
9
- const cacheStringFunction = fn => {
10
- const cache = Object.create(null);
11
- return str => {
12
- const hit = cache[str];
13
- return hit || (cache[str] = fn(str));
14
- };
15
- };
16
- const camelizeRE = /-(\w)/g;
17
- const camelize = cacheStringFunction(str => {
18
- return str.replace(camelizeRE, (_, c) => c ? c.toUpperCase() : '');
19
- });
20
- const hyphenateRE = /\B([A-Z])/g;
21
- const hyphenate = cacheStringFunction(str => {
22
- return str.replace(hyphenateRE, '-$1').toLowerCase();
23
- });
24
- const capitalize = cacheStringFunction(str => {
25
- return str.charAt(0).toUpperCase() + str.slice(1);
26
- });
27
- const hasOwnProperty = Object.prototype.hasOwnProperty;
28
- const hasOwn = (val, key) => hasOwnProperty.call(val, key);
29
- // change from vue sourcecode
30
- function resolvePropValue(options, props, key, value) {
31
- const opt = options[key];
32
- if (opt != null) {
33
- const hasDefault = hasOwn(opt, 'default');
34
- // default values
35
- if (hasDefault && value === undefined) {
36
- const defaultValue = opt.default;
37
- value = opt.type !== Function && isFunction(defaultValue) ? defaultValue() : defaultValue;
38
- }
39
- // boolean casting
40
- if (opt.type === Boolean) {
41
- if (!hasOwn(props, key) && !hasDefault) {
42
- value = false;
43
- } else if (value === '') {
44
- value = true;
45
- }
1
+ const u = (t) => typeof t == "function", y = Symbol("controlDefaultValue"), b = Array.isArray, d = (t) => typeof t == "string", m = (t) => typeof t == "symbol", O = (t) => t !== null && typeof t == "object", f = /^on[^a-z]/, P = (t) => f.test(t), i = (t) => {
2
+ const n = /* @__PURE__ */ Object.create(null);
3
+ return (e) => n[e] || (n[e] = t(e));
4
+ }, l = /-(\w)/g, w = i((t) => t.replace(l, (n, e) => e ? e.toUpperCase() : "")), p = /\B([A-Z])/g, A = i((t) => t.replace(p, "-$1").toLowerCase()), g = i((t) => t.charAt(0).toUpperCase() + t.slice(1)), h = Object.prototype.hasOwnProperty, a = (t, n) => h.call(t, n);
5
+ function j(t, n, e, o) {
6
+ const r = t[e];
7
+ if (r != null) {
8
+ const c = a(r, "default");
9
+ if (c && o === void 0) {
10
+ const s = r.default;
11
+ o = r.type !== Function && u(s) ? s() : s;
46
12
  }
13
+ r.type === Boolean && (!a(n, e) && !c ? o = !1 : o === "" && (o = !0));
47
14
  }
48
- return value;
15
+ return o;
49
16
  }
50
- function getDataAndAriaProps(props) {
51
- return Object.keys(props).reduce((memo, key) => {
52
- if (key.startsWith('data-') || key.startsWith('aria-')) {
53
- memo[key] = props[key];
54
- }
55
- return memo;
56
- }, {});
17
+ function z(t) {
18
+ return Object.keys(t).reduce((n, e) => ((e.startsWith("data-") || e.startsWith("aria-")) && (n[e] = t[e]), n), {});
57
19
  }
58
- function toPx(val) {
59
- if (typeof val === 'number') return `${val}px`;
60
- return val;
20
+ function D(t) {
21
+ return typeof t == "number" ? `${t}px` : t;
61
22
  }
62
- function renderHelper(v, props = {}, defaultV) {
63
- if (typeof v === 'function') {
64
- return v(props);
65
- }
66
- return v ?? defaultV;
23
+ function S(t, n = {}, e) {
24
+ return typeof t == "function" ? t(n) : t ?? e;
67
25
  }
68
- function wrapPromiseFn(openFn) {
69
- let closeFn;
70
- const closePromise = new Promise(resolve => {
71
- closeFn = openFn(() => {
72
- resolve(true);
26
+ function V(t) {
27
+ let n;
28
+ const e = new Promise((r) => {
29
+ n = t(() => {
30
+ r(!0);
73
31
  });
74
- });
75
- const result = () => {
76
- closeFn?.();
32
+ }), o = () => {
33
+ n == null || n();
77
34
  };
78
- result.then = (filled, rejected) => closePromise.then(filled, rejected);
79
- result.promise = closePromise;
80
- return result;
35
+ return o.then = (r, c) => e.then(r, c), o.promise = e, o;
81
36
  }
82
-
83
- export { cacheStringFunction, camelize, capitalize, controlDefaultValue, getDataAndAriaProps, hyphenate, isArray, isFunction, isObject, isOn, isString, isSymbol, renderHelper, resolvePropValue, toPx, wrapPromiseFn };
37
+ export {
38
+ i as cacheStringFunction,
39
+ w as camelize,
40
+ g as capitalize,
41
+ y as controlDefaultValue,
42
+ z as getDataAndAriaProps,
43
+ A as hyphenate,
44
+ b as isArray,
45
+ u as isFunction,
46
+ O as isObject,
47
+ P as isOn,
48
+ d as isString,
49
+ m as isSymbol,
50
+ S as renderHelper,
51
+ j as resolvePropValue,
52
+ D as toPx,
53
+ V as wrapPromiseFn
54
+ };
55
+ //# sourceMappingURL=util.js.map