rx-compo 1.0.53 → 1.0.55

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (69) hide show
  1. package/entry/{types/index.d.ts → index.d.ts} +2 -3
  2. package/es/components/RxButton/index.d.ts +2 -1
  3. package/es/components/RxButton/index.js +1 -1821
  4. package/es/components/RxButton/src/RxButton.d.ts +8 -0
  5. package/es/components/RxButton/src/RxButton.vue.d.ts +6 -0
  6. package/es/components/date/index.d.ts +4 -0
  7. package/es/components/date/index.js +1 -0
  8. package/es/components/date/src/date.d.ts +24 -0
  9. package/es/components/date/src/date.vue.d.ts +32 -0
  10. package/es/components/icon/index.css +1 -0
  11. package/es/components/icon/index.d.ts +4 -0
  12. package/es/components/icon/index.js +1 -0
  13. package/es/components/icon/src/icon.d.ts +25 -0
  14. package/es/components/icon/src/icon.vue.d.ts +37 -0
  15. package/es/components/index.d.ts +8 -1
  16. package/es/components/index.js +1 -1
  17. package/es/index.d.ts +2 -3
  18. package/es/index.js +1 -14
  19. package/es/utils/index.d.ts +1 -0
  20. package/es/utils/index.js +1 -0
  21. package/es/utils/src/props.d.ts +74 -0
  22. package/es/utils/src/props.js +115 -0
  23. package/es/utils/with-install.d.ts +2 -2
  24. package/es/utils/with-install.js +0 -1
  25. package/index.esm.js +1 -1842
  26. package/index.js +1 -1850
  27. package/lib/components/RxButton/index.d.ts +2 -1
  28. package/lib/components/RxButton/index.js +1 -1826
  29. package/lib/components/RxButton/src/RxButton.d.ts +8 -0
  30. package/lib/components/RxButton/src/RxButton.vue.d.ts +6 -0
  31. package/lib/components/date/index.d.ts +4 -0
  32. package/lib/components/date/index.js +1 -0
  33. package/lib/components/date/src/date.d.ts +24 -0
  34. package/lib/components/date/src/date.vue.d.ts +32 -0
  35. package/lib/components/icon/index.css +1 -0
  36. package/lib/components/icon/index.d.ts +4 -0
  37. package/lib/components/icon/index.js +1 -0
  38. package/lib/components/icon/src/icon.d.ts +25 -0
  39. package/lib/components/icon/src/icon.vue.d.ts +37 -0
  40. package/lib/components/index.d.ts +8 -1
  41. package/lib/components/index.js +1 -14
  42. package/lib/index.d.ts +2 -3
  43. package/lib/index.js +1 -43
  44. package/lib/utils/index.d.ts +1 -0
  45. package/lib/utils/index.js +17 -0
  46. package/lib/utils/src/props.d.ts +74 -0
  47. package/lib/utils/src/props.js +120 -0
  48. package/lib/utils/with-install.d.ts +2 -2
  49. package/lib/utils/with-install.js +0 -1
  50. package/package.json +22 -16
  51. package/theme-chalk/components-style.css +1 -0
  52. package/theme-chalk/date.css +1 -0
  53. package/theme-chalk/fonts/iconfont.ttf +0 -0
  54. package/theme-chalk/fonts/iconfont.woff +0 -0
  55. package/theme-chalk/fonts/iconfont.woff2 +0 -0
  56. package/theme-chalk/icon.css +1 -0
  57. package/theme-chalk/index.css +2 -0
  58. package/types/index.d.ts +9 -0
  59. package/es/components/RxButton/src/index.d.ts +0 -3
  60. package/es/components/RxButton/src/index.vue.d.ts +0 -10
  61. package/lib/components/RxButton/src/index.d.ts +0 -3
  62. package/lib/components/RxButton/src/index.vue.d.ts +0 -10
  63. package/theme-chalk/css/icon.css +0 -1
  64. package/theme-chalk/css/index.css +0 -1
  65. package/types/components/RxButton/index.d.ts +0 -3
  66. package/types/components/RxButton/src/index.d.ts +0 -3
  67. package/types/components/RxButton/src/index.vue.d.ts +0 -10
  68. package/types/components/index.d.ts +0 -2
  69. package/types/utils/with-install.d.ts +0 -3
@@ -0,0 +1,8 @@
1
+ import type { ExtractPropTypes, PropType } from 'vue';
2
+ import { ButtonInstance } from 'element-plus';
3
+ declare type butonType = Omit<ButtonInstance['$props'], 'type'>;
4
+ export declare const RxButtonProps: {
5
+ type: PropType<"primary" | "danger">;
6
+ };
7
+ export declare type RxButtonPropsType = ExtractPropTypes<typeof RxButtonProps & butonType>;
8
+ export {};
@@ -0,0 +1,6 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ type: import("vue").PropType<"primary" | "danger">;
3
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
4
+ type: import("vue").PropType<"primary" | "danger">;
5
+ }>>, {}>;
6
+ export default _default;
@@ -0,0 +1,4 @@
1
+ declare const QiDate: any;
2
+ export { QiDate };
3
+ export default QiDate;
4
+ export type { DateInstance, DateComponent, DatePublicProps as DateProps } from './src/date';
@@ -0,0 +1 @@
1
+ "use strict";Object.defineProperty(exports,"__esModule",{value:!0});var e=require("rx-compo/lib/utils/with-install"),o=require("vue"),t=require("rx-compo/lib/utils");function r(e){return e&&"object"==typeof e&&"default"in e?e:{default:e}}var s=r(require("moment"));const p={mode:t.IxPropTypes.oneOf(["primary","default","dashed","text","link"]),danger:t.IxPropTypes.bool,ghost:t.IxPropTypes.bool,disabled:t.IxPropTypes.bool,loading:t.IxPropTypes.bool,size:t.IxPropTypes.oneOf(["lg","xl","md","sm","xs"]),shape:t.IxPropTypes.oneOf(["circle","round"]),block:t.IxPropTypes.bool,icon:t.IxPropTypes.string,type:t.IxPropTypes.oneOf(["button","submit","reset"]).def("button")};var n=o.defineComponent({name:"QiDate",props:p,setup:e=>({now:s.default().format("LLLL")})});const l={class:"w-[100px] h-[100px] bg-red-500"};n.render=function(e,t,r,s,p,n){return o.openBlock(),o.createElementBlock("div",l,o.toDisplayString(e.now),1)},n.__file="packages/components/date/src/date.vue";const i=e.withInstall(n);exports.QiDate=i,exports.default=i;
@@ -0,0 +1,24 @@
1
+ import type { ExtractInnerPropTypes, ExtractPublicPropTypes } from 'rx-compo/es/utils';
2
+ import type { AnchorHTMLAttributes, ButtonHTMLAttributes, DefineComponent } from 'vue';
3
+ export declare type DateMode = 'primary' | 'default' | 'dashed' | 'text' | 'link';
4
+ export declare type DateShape = 'circle' | 'round';
5
+ export declare type DateSize = 'lg' | 'xl' | 'md' | 'sm' | 'xs';
6
+ export declare type DateType = 'button' | 'submit' | 'reset';
7
+ export declare const dateProps: {
8
+ mode: import("vue-types").VueTypeDef<DateMode>;
9
+ danger: import("vue-types").VueTypeValidableDef<boolean>;
10
+ ghost: import("vue-types").VueTypeValidableDef<boolean>;
11
+ disabled: import("vue-types").VueTypeValidableDef<boolean>;
12
+ loading: import("vue-types").VueTypeValidableDef<boolean>;
13
+ size: import("vue-types").VueTypeDef<DateSize>;
14
+ shape: import("vue-types").VueTypeDef<DateShape>;
15
+ block: import("vue-types").VueTypeValidableDef<boolean>;
16
+ icon: import("vue-types").VueTypeValidableDef<string>;
17
+ type: import("vue-types").VueTypeDef<DateType> & {
18
+ default: DateType;
19
+ };
20
+ };
21
+ export declare type DateProps = ExtractInnerPropTypes<typeof dateProps>;
22
+ export declare type DatePublicProps = ExtractPublicPropTypes<typeof dateProps>;
23
+ export declare type DateComponent = DefineComponent<Omit<ButtonHTMLAttributes | AnchorHTMLAttributes, keyof DatePublicProps> & DatePublicProps>;
24
+ export declare type DateInstance = InstanceType<DefineComponent<DateProps>>;
@@ -0,0 +1,32 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ mode: import("vue-types").VueTypeDef<import("./date").DateMode>;
3
+ danger: import("vue-types").VueTypeValidableDef<boolean>;
4
+ ghost: import("vue-types").VueTypeValidableDef<boolean>;
5
+ disabled: import("vue-types").VueTypeValidableDef<boolean>;
6
+ loading: import("vue-types").VueTypeValidableDef<boolean>;
7
+ size: import("vue-types").VueTypeDef<import("./date").DateSize>;
8
+ shape: import("vue-types").VueTypeDef<import("./date").DateShape>;
9
+ block: import("vue-types").VueTypeValidableDef<boolean>;
10
+ icon: import("vue-types").VueTypeValidableDef<string>;
11
+ type: import("vue-types").VueTypeDef<import("./date").DateType> & {
12
+ default: import("./date").DateType;
13
+ };
14
+ }, {
15
+ now: string;
16
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
17
+ mode: import("vue-types").VueTypeDef<import("./date").DateMode>;
18
+ danger: import("vue-types").VueTypeValidableDef<boolean>;
19
+ ghost: import("vue-types").VueTypeValidableDef<boolean>;
20
+ disabled: import("vue-types").VueTypeValidableDef<boolean>;
21
+ loading: import("vue-types").VueTypeValidableDef<boolean>;
22
+ size: import("vue-types").VueTypeDef<import("./date").DateSize>;
23
+ shape: import("vue-types").VueTypeDef<import("./date").DateShape>;
24
+ block: import("vue-types").VueTypeValidableDef<boolean>;
25
+ icon: import("vue-types").VueTypeValidableDef<string>;
26
+ type: import("vue-types").VueTypeDef<import("./date").DateType> & {
27
+ default: import("./date").DateType;
28
+ };
29
+ }>>, {
30
+ type: import("./date").DateType;
31
+ }>;
32
+ export default _default;
@@ -0,0 +1 @@
1
+ .qi-icon{border:1px solid #000;border-radius:15px;margin:5px;padding:5px}
@@ -0,0 +1,4 @@
1
+ declare const QiIcon: any;
2
+ export { QiIcon };
3
+ export default QiIcon;
4
+ export type { IconInstance, IconComponent, IconPublicProps as IconProps } from './src/icon';
@@ -0,0 +1 @@
1
+ "use strict";Object.defineProperty(exports,"__esModule",{value:!0});var e=require("rx-compo/lib/utils/with-install"),o=require("vue"),s=require("rx-compo/lib/utils");const r={color:s.IxPropTypes.string,mode:s.IxPropTypes.oneOf(["primary","default","dashed","text","link"]),danger:s.IxPropTypes.bool,ghost:s.IxPropTypes.bool,disabled:s.IxPropTypes.bool,loading:s.IxPropTypes.bool,size:s.IxPropTypes.oneOf(["lg","xl","md","sm","xs"]),shape:s.IxPropTypes.oneOf(["circle","round"]),block:s.IxPropTypes.bool,icon:s.IxPropTypes.string,type:s.IxPropTypes.oneOf(["button","submit","reset"]).def("button")};var t=o.defineComponent({name:"QiIcon",props:r,setup:e=>({style:o.computed((()=>e.size||e.color?Object.assign(Object.assign({},e.size?{"font-size":e.size+"px"}:{}),e.color?{color:e.color}:{}):{}))})});t.render=function(e,s,r,t,l,n){return o.openBlock(),o.createElementBlock("i",{class:"qi-icon",style:o.normalizeStyle(e.style)},[o.renderSlot(e.$slots,"default")],4)},t.__file="packages/components/icon/src/icon.vue";const l=e.withInstall(t);exports.QiIcon=l,exports.default=l;
@@ -0,0 +1,25 @@
1
+ import type { ExtractInnerPropTypes, ExtractPublicPropTypes } from 'rx-compo/es/utils';
2
+ import type { AnchorHTMLAttributes, ButtonHTMLAttributes, DefineComponent } from 'vue';
3
+ export declare type IconMode = 'primary' | 'default' | 'dashed' | 'text' | 'link';
4
+ export declare type IconShape = 'circle' | 'round';
5
+ export declare type IconSize = 'lg' | 'xl' | 'md' | 'sm' | 'xs';
6
+ export declare type IconType = 'button' | 'submit' | 'reset';
7
+ export declare const iconProps: {
8
+ color: import("vue-types").VueTypeValidableDef<string>;
9
+ mode: import("vue-types").VueTypeDef<IconMode>;
10
+ danger: import("vue-types").VueTypeValidableDef<boolean>;
11
+ ghost: import("vue-types").VueTypeValidableDef<boolean>;
12
+ disabled: import("vue-types").VueTypeValidableDef<boolean>;
13
+ loading: import("vue-types").VueTypeValidableDef<boolean>;
14
+ size: import("vue-types").VueTypeDef<IconSize>;
15
+ shape: import("vue-types").VueTypeDef<IconShape>;
16
+ block: import("vue-types").VueTypeValidableDef<boolean>;
17
+ icon: import("vue-types").VueTypeValidableDef<string>;
18
+ type: import("vue-types").VueTypeDef<IconType> & {
19
+ default: IconType;
20
+ };
21
+ };
22
+ export declare type IconProps = ExtractInnerPropTypes<typeof iconProps>;
23
+ export declare type IconPublicProps = ExtractPublicPropTypes<typeof iconProps>;
24
+ export declare type IconComponent = DefineComponent<Omit<ButtonHTMLAttributes | AnchorHTMLAttributes, keyof IconPublicProps> & IconPublicProps>;
25
+ export declare type IconInstance = InstanceType<DefineComponent<IconProps>>;
@@ -0,0 +1,37 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ color: import("vue-types").VueTypeValidableDef<string>;
3
+ mode: import("vue-types").VueTypeDef<import("./icon").IconMode>;
4
+ danger: import("vue-types").VueTypeValidableDef<boolean>;
5
+ ghost: import("vue-types").VueTypeValidableDef<boolean>;
6
+ disabled: import("vue-types").VueTypeValidableDef<boolean>;
7
+ loading: import("vue-types").VueTypeValidableDef<boolean>;
8
+ size: import("vue-types").VueTypeDef<import("./icon").IconSize>;
9
+ shape: import("vue-types").VueTypeDef<import("./icon").IconShape>;
10
+ block: import("vue-types").VueTypeValidableDef<boolean>;
11
+ icon: import("vue-types").VueTypeValidableDef<string>;
12
+ type: import("vue-types").VueTypeDef<import("./icon").IconType> & {
13
+ default: import("./icon").IconType;
14
+ };
15
+ }, {
16
+ style: import("vue").ComputedRef<{
17
+ color?: string;
18
+ 'font-size'?: string;
19
+ }>;
20
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
21
+ color: import("vue-types").VueTypeValidableDef<string>;
22
+ mode: import("vue-types").VueTypeDef<import("./icon").IconMode>;
23
+ danger: import("vue-types").VueTypeValidableDef<boolean>;
24
+ ghost: import("vue-types").VueTypeValidableDef<boolean>;
25
+ disabled: import("vue-types").VueTypeValidableDef<boolean>;
26
+ loading: import("vue-types").VueTypeValidableDef<boolean>;
27
+ size: import("vue-types").VueTypeDef<import("./icon").IconSize>;
28
+ shape: import("vue-types").VueTypeDef<import("./icon").IconShape>;
29
+ block: import("vue-types").VueTypeValidableDef<boolean>;
30
+ icon: import("vue-types").VueTypeValidableDef<string>;
31
+ type: import("vue-types").VueTypeDef<import("./icon").IconType> & {
32
+ default: import("./icon").IconType;
33
+ };
34
+ }>>, {
35
+ type: import("./icon").IconType;
36
+ }>;
37
+ export default _default;
@@ -1,2 +1,9 @@
1
- export * from './RxButton';
1
+ import type { App } from 'vue';
2
+ import 'element-plus/dist/index.css';
3
+ declare const _default: {
4
+ install: (app: App<any>) => void;
5
+ };
6
+ export default _default;
7
+ export * from './icon';
8
+ export * from './date';
2
9
  export * from './RxButton';
@@ -1,14 +1 @@
1
- 'use strict';
2
-
3
- Object.defineProperty(exports, '__esModule', { value: true });
4
-
5
- var RxButton = require('./RxButton');
6
-
7
-
8
-
9
- Object.keys(RxButton).forEach(function (k) {
10
- if (k !== 'default' && !exports.hasOwnProperty(k)) Object.defineProperty(exports, k, {
11
- enumerable: true,
12
- get: function () { return RxButton[k]; }
13
- });
14
- });
1
+ "use strict";Object.defineProperty(exports,"__esModule",{value:!0});var e=require("element-plus");require("element-plus/dist/index.css");var t=require("@element-plus/icons-vue"),r=require("./icon"),n=require("./date"),u=require("./RxButton");function o(e){return e&&"object"==typeof e&&"default"in e?e:{default:e}}function c(e){if(e&&e.__esModule)return e;var t=Object.create(null);return e&&Object.keys(e).forEach((function(r){if("default"!==r){var n=Object.getOwnPropertyDescriptor(e,r);Object.defineProperty(t,r,n.get?n:{enumerable:!0,get:function(){return e[r]}})}})),t.default=e,Object.freeze(t)}var f=o(e),a=c(t),i=o(r),s=o(n);const l=[i.default,s.default];var p={install:function(e){l.forEach((t=>{e.component(t.name,t)})),e.use(f.default),Object.entries(a).forEach((([t,r])=>{e.component(t,r)}))}};exports.default=p,Object.keys(r).forEach((function(e){"default"===e||exports.hasOwnProperty(e)||Object.defineProperty(exports,e,{enumerable:!0,get:function(){return r[e]}})})),Object.keys(n).forEach((function(e){"default"===e||exports.hasOwnProperty(e)||Object.defineProperty(exports,e,{enumerable:!0,get:function(){return n[e]}})})),Object.keys(u).forEach((function(e){"default"===e||exports.hasOwnProperty(e)||Object.defineProperty(exports,e,{enumerable:!0,get:function(){return u[e]}})}));
package/lib/index.d.ts CHANGED
@@ -1,7 +1,6 @@
1
- import type { App } from 'vue';
2
- import 'virtual:windi.css';
1
+ import type { App } from "vue";
3
2
  declare const _default: {
4
3
  install: (app: App<any>) => void;
5
4
  };
6
5
  export default _default;
7
- export * from './components';
6
+ export * from "rx-compo/es/components";
package/lib/index.js CHANGED
@@ -1,43 +1 @@
1
- 'use strict';
2
-
3
- Object.defineProperty(exports, '__esModule', { value: true });
4
-
5
- var components = require('rx-compo/lib/components');
6
- require('virtual:windi.css');
7
-
8
- function _interopNamespace(e) {
9
- if (e && e.__esModule) return e;
10
- var n = Object.create(null);
11
- if (e) {
12
- Object.keys(e).forEach(function (k) {
13
- if (k !== 'default') {
14
- var d = Object.getOwnPropertyDescriptor(e, k);
15
- Object.defineProperty(n, k, d.get ? d : {
16
- enumerable: true,
17
- get: function () { return e[k]; }
18
- });
19
- }
20
- });
21
- }
22
- n["default"] = e;
23
- return Object.freeze(n);
24
- }
25
-
26
- var components__namespace = /*#__PURE__*/_interopNamespace(components);
27
-
28
- const install = (app) => {
29
- Object.entries(components__namespace).forEach(([name, component]) => {
30
- app.component(name, component);
31
- });
32
- };
33
- var index = {
34
- install
35
- };
36
-
37
- exports["default"] = index;
38
- Object.keys(components).forEach(function (k) {
39
- if (k !== 'default' && !exports.hasOwnProperty(k)) Object.defineProperty(exports, k, {
40
- enumerable: true,
41
- get: function () { return components[k]; }
42
- });
43
- });
1
+ "use strict";Object.defineProperty(exports,"__esModule",{value:!0});var e=require("rx-compo/lib/components"),t=require("element-plus"),r=require("@element-plus/icons-vue");function n(e){return e&&"object"==typeof e&&"default"in e?e:{default:e}}function o(e){if(e&&e.__esModule)return e;var t=Object.create(null);return e&&Object.keys(e).forEach((function(r){if("default"!==r){var n=Object.getOwnPropertyDescriptor(e,r);Object.defineProperty(t,r,n.get?n:{enumerable:!0,get:function(){return e[r]}})}})),t.default=e,Object.freeze(t)}var u=o(e),c=n(t),f=o(r);var a={install:e=>{Object.entries(u).forEach((([t,r])=>{e.component(t,r)})),e.use(c.default),Object.entries(f).forEach((([t,r])=>{e.component(t,r)}))}};exports.default=a,Object.keys(e).forEach((function(t){"default"===t||exports.hasOwnProperty(t)||Object.defineProperty(exports,t,{enumerable:!0,get:function(){return e[t]}})}));
@@ -0,0 +1 @@
1
+ export * from './src/props';
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./src/props"), exports);
@@ -0,0 +1,74 @@
1
+ import type { IfAny } from '@vue/shared';
2
+ import type { Prop, VNode } from 'vue';
3
+ import type { VueTypeDef, VueTypeValidableDef } from 'vue-types';
4
+ import type { InferType, VueProp, Prop as VueTypeProp } from 'vue-types/dist/types';
5
+ import { arrayOf, custom, instanceOf, objectOf, shape } from 'vue-types';
6
+ export declare type MaybeArray<T> = T | T[];
7
+ declare type PublicRequiredKeys<T> = {
8
+ [K in keyof T]: T[K] extends {
9
+ required: true;
10
+ } ? K : never;
11
+ }[keyof T];
12
+ declare type PublicOptionalKeys<T> = Exclude<keyof T, PublicRequiredKeys<T>>;
13
+ declare type InnerRequiredKeys<T> = {
14
+ [K in keyof T]: T[K] extends {
15
+ required: true;
16
+ } | {
17
+ default: any;
18
+ } ? T[K] extends {
19
+ default: undefined;
20
+ } ? never : K : never;
21
+ }[keyof T];
22
+ declare type InnerOptionalKeys<T> = Exclude<keyof T, InnerRequiredKeys<T>>;
23
+ declare type InferPropType<T> = [T] extends [null] ? any : [T] extends [{
24
+ type: null | true;
25
+ }] ? any : [T] extends [ObjectConstructor | {
26
+ type: ObjectConstructor;
27
+ }] ? Record<string, any> : [T] extends [BooleanConstructor | {
28
+ type: BooleanConstructor;
29
+ }] ? boolean : [T] extends [DateConstructor | {
30
+ type: DateConstructor;
31
+ }] ? Date : [T] extends [(infer U)[] | {
32
+ type: (infer U)[];
33
+ }] ? U extends DateConstructor ? Date | InferPropType<U> : InferPropType<U> : [T] extends [Prop<infer V, infer D>] ? unknown extends V ? IfAny<V, V, D> : V : T;
34
+ export declare type ExtractPublicPropTypes<O> = {
35
+ [K in keyof Pick<O, PublicRequiredKeys<O>>]: InferPropType<O[K]>;
36
+ } & {
37
+ [K in keyof Pick<O, PublicOptionalKeys<O>>]?: InferPropType<O[K]>;
38
+ };
39
+ export declare type ExtractInnerPropTypes<O> = {
40
+ [K in keyof Pick<O, InnerRequiredKeys<O>>]: InferPropType<O[K]>;
41
+ } & {
42
+ [K in keyof Pick<O, InnerOptionalKeys<O>>]?: InferPropType<O[K]>;
43
+ };
44
+ export declare class IxPropTypes {
45
+ static get any(): VueTypeValidableDef<any>;
46
+ static get bool(): VueTypeValidableDef<boolean>;
47
+ static get string(): VueTypeValidableDef<string>;
48
+ static get number(): VueTypeValidableDef<number>;
49
+ static get integer(): VueTypeValidableDef<number>;
50
+ static get symbol(): VueTypeDef<symbol>;
51
+ static custom: typeof custom;
52
+ static instanceOf: typeof instanceOf;
53
+ static arrayOf: typeof arrayOf;
54
+ static objectOf: typeof objectOf;
55
+ static shape: typeof shape;
56
+ static object<T>(): VueTypeValidableDef<T>;
57
+ static func<T extends (...args: any[]) => any>(): VueTypeValidableDef<T>;
58
+ static array<T>(): VueTypeValidableDef<T[]>;
59
+ static oneOfType<T>(arr: Array<VueProp<T> | VueTypeProp<T>>): VueTypeDef<T>;
60
+ static oneOfType<U extends VueProp<any> | VueTypeProp<any>, V = InferType<U>>(arr: U[]): VueTypeDef<V>;
61
+ static oneOf<T>(arr: T[]): VueTypeDef<T>;
62
+ static oneOf<T extends readonly any[]>(arr: T): VueTypeDef<T[number]>;
63
+ static get vNode(): VueTypeValidableDef<VNode>;
64
+ static maxLength(max: number): VueTypeValidableDef<string>;
65
+ static minLength(min: number): VueTypeValidableDef<string>;
66
+ static max(max: number): VueTypeValidableDef<number>;
67
+ static min(min: number): VueTypeValidableDef<number>;
68
+ static range(min: number, max: number): VueTypeValidableDef<number>;
69
+ static emit<T extends (...args: any[]) => any>(): VueTypeDef<T | T[]>;
70
+ }
71
+ export declare function callEmit<T extends (...args: any[]) => any>(funcs: T[] | T | undefined, ...args: Parameters<T>): ReturnType<T> | void;
72
+ export declare type VKey = string | number | symbol;
73
+ export declare const vKeyPropDef: VueTypeDef<string | number | symbol>;
74
+ export {};
@@ -0,0 +1,120 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.vKeyPropDef = exports.callEmit = exports.IxPropTypes = void 0;
4
+ const vue_1 = require("vue");
5
+ const vue_types_1 = require("vue-types");
6
+ class IxPropTypes {
7
+ static get any() {
8
+ return (0, vue_types_1.toValidableType)('any', { default: undefined });
9
+ }
10
+ static get bool() {
11
+ return (0, vue_types_1.toValidableType)('boolean', {
12
+ type: Boolean,
13
+ default: undefined,
14
+ });
15
+ }
16
+ static get string() {
17
+ return (0, vue_types_1.toValidableType)('string', {
18
+ type: String,
19
+ default: undefined,
20
+ });
21
+ }
22
+ static get number() {
23
+ return (0, vue_types_1.toValidableType)('number', {
24
+ type: Number,
25
+ default: undefined,
26
+ });
27
+ }
28
+ static get integer() {
29
+ return (0, vue_types_1.toValidableType)('integer', {
30
+ type: Number,
31
+ validator(value) {
32
+ return Number.isInteger(value);
33
+ },
34
+ default: undefined,
35
+ });
36
+ }
37
+ static get symbol() {
38
+ return (0, vue_types_1.toType)('symbol', {
39
+ validator(value) {
40
+ return typeof value === 'symbol';
41
+ },
42
+ default: undefined,
43
+ });
44
+ }
45
+ static object() {
46
+ return (0, vue_types_1.object)();
47
+ }
48
+ static func() {
49
+ return (0, vue_types_1.func)();
50
+ }
51
+ static array() {
52
+ return (0, vue_types_1.array)();
53
+ }
54
+ static oneOfType(arr) {
55
+ const type = (0, vue_types_1.oneOfType)(arr);
56
+ type.default = undefined;
57
+ return type;
58
+ }
59
+ static oneOf(arr) {
60
+ return (0, vue_types_1.oneOf)(arr);
61
+ }
62
+ static get vNode() {
63
+ return (0, vue_types_1.toValidableType)('vNode', {
64
+ type: Object,
65
+ validator: (value) => (0, vue_1.isVNode)(value),
66
+ });
67
+ }
68
+ static maxLength(max) {
69
+ return (0, vue_types_1.toValidableType)('maxLength', {
70
+ type: String,
71
+ validator: (value) => value.length <= max,
72
+ });
73
+ }
74
+ static minLength(min) {
75
+ return (0, vue_types_1.toValidableType)('minLength', {
76
+ type: String,
77
+ validator: (value) => value.length >= min,
78
+ });
79
+ }
80
+ static max(max) {
81
+ return (0, vue_types_1.toValidableType)('max', {
82
+ type: Number,
83
+ validator: (value) => value <= max,
84
+ });
85
+ }
86
+ static min(min) {
87
+ return (0, vue_types_1.toValidableType)('min', {
88
+ type: Number,
89
+ validator: (value) => value >= min,
90
+ });
91
+ }
92
+ static range(min, max) {
93
+ return (0, vue_types_1.toValidableType)('range', {
94
+ type: Number,
95
+ validator: (value) => value >= min && value <= max,
96
+ });
97
+ }
98
+ static emit() {
99
+ return (0, vue_types_1.oneOfType)([(0, vue_types_1.func)(), (0, vue_types_1.array)()]);
100
+ }
101
+ }
102
+ exports.IxPropTypes = IxPropTypes;
103
+ IxPropTypes.custom = vue_types_1.custom;
104
+ IxPropTypes.instanceOf = vue_types_1.instanceOf;
105
+ IxPropTypes.arrayOf = vue_types_1.arrayOf;
106
+ IxPropTypes.objectOf = vue_types_1.objectOf;
107
+ IxPropTypes.shape = vue_types_1.shape;
108
+ function callEmit(funcs, ...args) {
109
+ if (!funcs) {
110
+ return;
111
+ }
112
+ if (Array.isArray(funcs)) {
113
+ funcs.forEach(fn => fn(...args));
114
+ }
115
+ else {
116
+ return funcs(...args);
117
+ }
118
+ }
119
+ exports.callEmit = callEmit;
120
+ exports.vKeyPropDef = IxPropTypes.oneOfType([String, Number, Symbol]);
@@ -1,3 +1,3 @@
1
- import type { Plugin } from 'vue';
1
+ import type { Plugin } from "vue";
2
2
  export declare type SFCWithInstall<T> = T & Plugin;
3
- export declare const withInstall: <T>(comp: any) => SFCWithInstall<T>;
3
+ export declare const withInstall: <T>(comp: any) => any;
@@ -2,7 +2,6 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.withInstall = void 0;
4
4
  const withInstall = (comp) => {
5
- ;
6
5
  comp.install = function (app) {
7
6
  app.component(comp.name, comp);
8
7
  };
package/package.json CHANGED
@@ -1,16 +1,22 @@
1
- {
2
- "name": "rx-compo",
3
- "version": "1.0.53",
4
- "private": false,
5
- "description": "",
6
- "main": "lib/index.js",
7
- "module": "es/index.js",
8
- "scripts": {
9
- "test": "echo \"Error: no test specified\" && exit 1"
10
- },
11
- "author": "",
12
- "license": "ISC",
13
- "dependencies": {
14
- "element-plus": "^2.3.7"
15
- }
16
- }
1
+ {
2
+ "name": "rx-compo",
3
+ "version": "1.0.55",
4
+ "private": false,
5
+ "description": "rx-compo",
6
+ "main": "lib/index.js",
7
+ "module": "es/index.js",
8
+ "keywords": [
9
+ "rx-compo"
10
+ ],
11
+ "scripts": {
12
+ "test": "echo \"Error: no test specified\" && exit 1"
13
+ },
14
+ "author": "cheerqjy",
15
+ "license": "ISC",
16
+ "dependencies": {
17
+ "vue-types": "^4.1.1",
18
+ "element-plus": "^2.2.4",
19
+ "@element-plus/icons-vue": "^2.0.6",
20
+ "moment": "^2.29.3"
21
+ }
22
+ }
@@ -0,0 +1 @@
1
+ .qi-icon{border:1px solid #000;border-radius:15px;margin:5px;padding:5px}
@@ -0,0 +1 @@
1
+ .qi-date{padding:5px;border:1px solid red;border-radius:20px}
Binary file
Binary file
Binary file
@@ -0,0 +1 @@
1
+ @font-face{font-family:rx-compo-icons;src:url(fonts/iconfont.woff2) format("woff2"),url(fonts/iconfont.woff) format("woff"),url(fonts/iconfont.ttf) format("truetype")}[class*=qi-icon],[class^=qi-icon]{font-family:rx-compo-icons!important;font-size:16px;font-style:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.qi-icon-duihao:before{content:"\e6ca"}.qi-icon-bumengaikuang:before{content:"\e60d"}.qi-icon-jishuzhuanyi:before{content:"\e60e"}.qi-icon-kejituandui:before{content:"\e60f"}.qi-icon-kexuejishu:before{content:"\e610"}.qi-icon-tongzhigonggao:before{content:"\e611"}.qi-icon-kexuejishu2:before{content:"\e612"}.qi-icon-xiazaizhongxin:before{content:"\e613"}.qi-icon-xinwendongtai:before{content:"\e614"}.qi-icon-xueshujiangzuo:before{content:"\e615"}.qi-icon-yewuliucheng:before{content:"\e616"}.qi-icon-youqinglianjie:before{content:"\e617"}.qi-icon-zhengceguizhang:before{content:"\e618"}
@@ -0,0 +1,2 @@
1
+ @import "element-plus/dist/index.css";
2
+ *,::after,::before{box-sizing:border-box;border-width:0;border-style:solid;border-color:#e5e7eb}::after,::before{--tw-content:''}html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-feature-settings:normal;font-variation-settings:normal}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0;padding:0}legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#9ca3af}input:-ms-input-placeholder,textarea:-ms-input-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]{display:none}*,::after,::before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-scroll-snap-strictness:proximity;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgb(59 130 246 / 0.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000}::-webkit-backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-scroll-snap-strictness:proximity;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgb(59 130 246 / 0.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000}::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-scroll-snap-strictness:proximity;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgb(59 130 246 / 0.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000}.block{display:block}.h-\[100px\]{height:100px}.w-\[100px\]{width:100px}.border{border-width:1px}.bg-red-500{--tw-bg-opacity:1;background-color:rgb(239 68 68 / var(--tw-bg-opacity))}@font-face{font-family:rx-compo-icons;src:url(fonts/iconfont.woff2) format("woff2"),url(fonts/iconfont.woff) format("woff"),url(fonts/iconfont.ttf) format("truetype")}[class*=qi-icon],[class^=qi-icon]{font-family:rx-compo-icons!important;font-size:16px;font-style:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.qi-icon-duihao:before{content:"\e6ca"}.qi-icon-bumengaikuang:before{content:"\e60d"}.qi-icon-jishuzhuanyi:before{content:"\e60e"}.qi-icon-kejituandui:before{content:"\e60f"}.qi-icon-kexuejishu:before{content:"\e610"}.qi-icon-tongzhigonggao:before{content:"\e611"}.qi-icon-kexuejishu2:before{content:"\e612"}.qi-icon-xiazaizhongxin:before{content:"\e613"}.qi-icon-xinwendongtai:before{content:"\e614"}.qi-icon-xueshujiangzuo:before{content:"\e615"}.qi-icon-yewuliucheng:before{content:"\e616"}.qi-icon-youqinglianjie:before{content:"\e617"}.qi-icon-zhengceguizhang:before{content:"\e618"}.qi-date{padding:5px;border:1px solid red;border-radius:20px}
@@ -0,0 +1,9 @@
1
+ import type { IconComponent } from 'rx-compo/es/components/icon';
2
+ import type { DateComponent } from 'rx-compo/es/components/date';
3
+ declare module 'vue' {
4
+ interface GlobalComponents {
5
+ QiIcon: IconComponent;
6
+ QiDate: DateComponent;
7
+ }
8
+ }
9
+ export {};
@@ -1,3 +0,0 @@
1
- import type { ExtractPropTypes } from 'vue';
2
- export declare const RxButtonProps: {};
3
- export declare type RxButtonPropsType = ExtractPropTypes<typeof RxButtonProps>;
@@ -1,10 +0,0 @@
1
- declare const _default: import("vue").DefineComponent<Readonly<import("vue").ComponentPropsOptions<{
2
- [x: string]: unknown;
3
- }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, readonly string[] | Readonly<{
4
- [x: string]: unknown;
5
- } & {} & {
6
- [x: string]: unknown;
7
- }>, {
8
- [x: number]: string;
9
- } | {}>;
10
- export default _default;
@@ -1,3 +0,0 @@
1
- import type { ExtractPropTypes } from 'vue';
2
- export declare const RxButtonProps: {};
3
- export declare type RxButtonPropsType = ExtractPropTypes<typeof RxButtonProps>;
@@ -1,10 +0,0 @@
1
- declare const _default: import("vue").DefineComponent<Readonly<import("vue").ComponentPropsOptions<{
2
- [x: string]: unknown;
3
- }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, readonly string[] | Readonly<{
4
- [x: string]: unknown;
5
- } & {} & {
6
- [x: string]: unknown;
7
- }>, {
8
- [x: number]: string;
9
- } | {}>;
10
- export default _default;
@@ -1 +0,0 @@
1
- @charset "UTF-8";@font-face{font-family:w-ui-icons;src:url(rx-compo/theme-chalk/fonts/iconfont.woff2) format("woff2"),url(rx-compo/theme-chalk/fonts/iconfont.woff) format("woff"),url(rx-compo/theme-chalk/fonts/iconfont.ttf) format("truetype")}[class*=w-icon],[class^=w-icon]{font-family:w-ui-icons!important;font-size:16px;font-style:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.w-icon-customer-service:before{content:"\e682"}.w-icon-delete:before{content:"\e683"}.w-icon-direction-down:before{content:"\e684"}.w-icon-copy:before{content:"\e685"}.w-icon-cut:before{content:"\e686"}.w-icon-data-view:before{content:"\e687"}.w-icon-direction-down-circle:before{content:"\e688"}.w-icon-direction-right:before{content:"\e689"}.w-icon-direction-up:before{content:"\e68a"}.w-icon-discount:before{content:"\e68b"}.w-icon-direction-left:before{content:"\e68c"}.w-icon-download:before{content:"\e68d"}.w-icon-electronics:before{content:"\e68e"}.w-icon-drag:before{content:"\e68f"}.w-icon-elipsis:before{content:"\e690"}.w-icon-export:before{content:"\e691"}.w-icon-explain:before{content:"\e692"}.w-icon-edit:before{content:"\e693"}.w-icon-eye-close:before{content:"\e694"}.w-icon-email:before{content:"\e695"}.w-icon-error:before{content:"\e696"}.w-icon-favorite:before{content:"\e697"}.w-icon-file-common:before{content:"\e698"}.w-icon-file-delete:before{content:"\e699"}.w-icon-file-add:before{content:"\e69a"}.w-icon-film:before{content:"\e69b"}.w-icon-fabulous:before{content:"\e69c"}.w-icon-file:before{content:"\e69d"}.w-icon-folder-close:before{content:"\e69e"}.w-icon-filter:before{content:"\e69f"}.w-icon-good:before{content:"\e6a0"}.w-icon-hide:before{content:"\e6a1"}.w-icon-home:before{content:"\e6a2"}.w-icon-history:before{content:"\e6a3"}.w-icon-file-open:before{content:"\e6a4"}.w-icon-forward:before{content:"\e6a5"}.w-icon-import:before{content:"\e6a6"}.w-icon-image-text:before{content:"\e6a7"}.w-icon-keyboard-26:before{content:"\e6a8"}.w-icon-keyboard-9:before{content:"\e6a9"}.w-icon-link:before{content:"\e6aa"}.w-icon-layout:before{content:"\e6ab"}.w-icon-fullscreen-shrink:before{content:"\e6ac"}.w-icon-layers:before{content:"\e6ad"}.w-icon-lock:before{content:"\e6ae"}.w-icon-fullscreen-expand:before{content:"\e6af"}.w-icon-map:before{content:"\e6b0"}.w-icon-meh:before{content:"\e6b1"}.w-icon-menu:before{content:"\e6b2"}.w-icon-loading:before{content:"\e6b3"}.w-icon-help:before{content:"\e6b4"}.w-icon-minus-circle:before{content:"\e6b5"}.w-icon-modular:before{content:"\e6b6"}.w-icon-notification:before{content:"\e6b7"}.w-icon-mic:before{content:"\e6b8"}.w-icon-more:before{content:"\e6b9"}.w-icon-pad:before{content:"\e6ba"}.w-icon-operation:before{content:"\e6bb"}.w-icon-play:before{content:"\e6bc"}.w-icon-print:before{content:"\e6bd"}.w-icon-mobile-phone:before{content:"\e6be"}.w-icon-minus:before{content:"\e6bf"}.w-icon-navigation:before{content:"\e6c0"}.w-icon-pdf:before{content:"\e6c1"}.w-icon-prompt:before{content:"\e6c2"}.w-icon-move:before{content:"\e6c3"}.w-icon-refresh:before{content:"\e6c4"}.w-icon-run-up:before{content:"\e6c5"}.w-icon-picture:before{content:"\e6c6"}.w-icon-run-in:before{content:"\e6c7"}.w-icon-pin:before{content:"\e6c8"}.w-icon-save:before{content:"\e6c9"}.w-icon-search:before{content:"\e6ca"}.w-icon-share:before{content:"\e6cb"}.w-icon-scanning:before{content:"\e6cc"}.w-icon-security:before{content:"\e6cd"}.w-icon-sign-out:before{content:"\e6ce"}.w-icon-select:before{content:"\e6cf"}.w-icon-stop:before{content:"\e6d0"}.w-icon-success:before{content:"\e6d1"}.w-icon-smile:before{content:"\e6d2"}.w-icon-switch:before{content:"\e6d3"}.w-icon-setting:before{content:"\e6d4"}.w-icon-survey:before{content:"\e6d5"}.w-icon-task:before{content:"\e6d6"}.w-icon-skip:before{content:"\e6d7"}.w-icon-text:before{content:"\e6d8"}.w-icon-time:before{content:"\e6d9"}.w-icon-telephone-out:before{content:"\e6da"}.w-icon-toggle-left:before{content:"\e6db"}.w-icon-toggle-right:before{content:"\e6dc"}.w-icon-telephone:before{content:"\e6dd"}.w-icon-top:before{content:"\e6de"}.w-icon-unlock:before{content:"\e6df"}.w-icon-user:before{content:"\e6e0"}.w-icon-upload:before{content:"\e6e1"}.w-icon-work:before{content:"\e6e2"}.w-icon-training:before{content:"\e6e3"}.w-icon-warning:before{content:"\e6e4"}.w-icon-zoom-in:before{content:"\e6e5"}.w-icon-zoom-out:before{content:"\e6e6"}.w-icon-add-bold:before{content:"\e6e7"}.w-icon-arrow-left-bold:before{content:"\e6e8"}.w-icon-arrow-up-bold:before{content:"\e6e9"}.w-icon-close-bold:before{content:"\e6ea"}.w-icon-arrow-down-bold:before{content:"\e6eb"}.w-icon-minus-bold:before{content:"\e6ec"}.w-icon-arrow-right-bold:before{content:"\e6ed"}.w-icon-select-bold:before{content:"\e6ee"}.w-icon-arrow-up-filling:before{content:"\e6ef"}.w-icon-arrow-down-filling:before{content:"\e6f0"}.w-icon-arrow-left-filling:before{content:"\e6f1"}.w-icon-arrow-right-filling:before{content:"\e6f2"}.w-icon-caps-unlock-filling:before{content:"\e6f3"}.w-icon-comment-filling:before{content:"\e6f4"}.w-icon-check-item-filling:before{content:"\e6f5"}.w-icon-clock-filling:before{content:"\e6f6"}.w-icon-delete-filling:before{content:"\e6f7"}.w-icon-decline-filling:before{content:"\e6f8"}.w-icon-dynamic-filling:before{content:"\e6f9"}.w-icon-intermediate-filling:before{content:"\e6fa"}.w-icon-favorite-filling:before{content:"\e6fb"}.w-icon-layout-filling:before{content:"\e6fc"}.w-icon-help-filling:before{content:"\e6fd"}.w-icon-history-filling:before{content:"\e6fe"}.w-icon-filter-filling:before{content:"\e6ff"}.w-icon-file-common-filling:before{content:"\e700"}.w-icon-news-filling:before{content:"\e701"}.w-icon-edit-filling:before{content:"\e702"}.w-icon-fullscreen-expand-filling:before{content:"\e703"}.w-icon-smile-filling:before{content:"\e704"}.w-icon-rise-filling:before{content:"\e705"}.w-icon-picture-filling:before{content:"\e706"}.w-icon-notification-filling:before{content:"\e707"}.w-icon-user-filling:before{content:"\e708"}.w-icon-setting-filling:before{content:"\e709"}.w-icon-switch-filling:before{content:"\e70a"}.w-icon-work-filling:before{content:"\e70b"}.w-icon-task-filling:before{content:"\e70c"}.w-icon-success-filling:before{content:"\e70d"}.w-icon-warning-filling:before{content:"\e70e"}.w-icon-folder-filling:before{content:"\e70f"}.w-icon-map-filling:before{content:"\e710"}.w-icon-prompt-filling:before{content:"\e711"}.w-icon-meh-filling:before{content:"\e712"}.w-icon-cry-filling:before{content:"\e713"}.w-icon-top-filling:before{content:"\e714"}.w-icon-home-filling:before{content:"\e715"}.w-icon-sorting:before{content:"\e716"}.w-icon-3column:before{content:"\e663"}.w-icon-column-4:before{content:"\e664"}.w-icon-add:before{content:"\e665"}.w-icon-add-circle:before{content:"\e666"}.w-icon-adjust:before{content:"\e667"}.w-icon-arrow-up-circle:before{content:"\e668"}.w-icon-arrow-right-circle:before{content:"\e669"}.w-icon-arrow-down:before{content:"\e66a"}.w-icon-ashbin:before{content:"\e66b"}.w-icon-arrow-right:before{content:"\e66c"}.w-icon-browse:before{content:"\e66d"}.w-icon-bottom:before{content:"\e66e"}.w-icon-back:before{content:"\e66f"}.w-icon-bad:before{content:"\e670"}.w-icon-arrow-double-left:before{content:"\e671"}.w-icon-arrow-left-circle:before{content:"\e672"}.w-icon-arrow-double-right:before{content:"\e673"}.w-icon-caps-lock:before{content:"\e674"}.w-icon-camera:before{content:"\e675"}.w-icon-chart-bar:before{content:"\e676"}.w-icon-attachment:before{content:"\e677"}.w-icon-code:before{content:"\e678"}.w-icon-close:before{content:"\e679"}.w-icon-check-item:before{content:"\e67a"}.w-icon-calendar:before{content:"\e67b"}.w-icon-comment:before{content:"\e67c"}.w-icon-column-vertical:before{content:"\e67d"}.w-icon-column-horizontal:before{content:"\e67e"}.w-icon-complete:before{content:"\e67f"}.w-icon-chart-pie:before{content:"\e680"}.w-icon-cry:before{content:"\e681"}