@quoreadmin/ui 1.10.3 → 1.10.5

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 (85) hide show
  1. package/dist/index.css +1 -1
  2. package/dist/index138.js +155 -105
  3. package/dist/index147.js +1 -1
  4. package/dist/index186.js +4 -4
  5. package/dist/index193.js +8 -8
  6. package/dist/index195.js +8 -8
  7. package/dist/index201.js +7 -7
  8. package/dist/index206.js +2 -2
  9. package/dist/index208.js +14 -14
  10. package/dist/index209.js +1 -1
  11. package/dist/index210.js +1 -1
  12. package/dist/index211.js +3 -3
  13. package/dist/index212.js +6 -6
  14. package/dist/index230.js +159 -159
  15. package/dist/index231.js +228 -20
  16. package/dist/index232.js +36 -19
  17. package/dist/index233.js +10 -22
  18. package/dist/index234.js +113 -185
  19. package/dist/index235.js +25 -57
  20. package/dist/index236.js +77 -31
  21. package/dist/index237.js +19 -39
  22. package/dist/index238.js +19 -126
  23. package/dist/index239.js +16 -34
  24. package/dist/index240.js +20 -80
  25. package/dist/index241.js +10 -10
  26. package/dist/index242.js +3636 -20
  27. package/dist/index243.js +55 -20
  28. package/dist/index244.js +77 -20
  29. package/dist/index245.js +51 -160
  30. package/dist/index246.js +212 -225
  31. package/dist/index247.js +10 -37
  32. package/dist/index248.js +57 -10
  33. package/dist/index249.js +46 -3621
  34. package/dist/index250.js +35 -36
  35. package/dist/index251.js +28 -30
  36. package/dist/index252.js +702 -28
  37. package/dist/index253.js +22 -195
  38. package/dist/index254.js +63 -9
  39. package/dist/index255.js +8 -54
  40. package/dist/index256.js +695 -51
  41. package/dist/index257.js +815 -49
  42. package/dist/index258.js +154 -68
  43. package/dist/index259.js +19 -725
  44. package/dist/index260.js +22 -42
  45. package/dist/index261.js +190 -55
  46. package/dist/index262.js +70 -11
  47. package/dist/index263.js +33 -704
  48. package/dist/index264.js +37 -817
  49. package/dist/index277.js +3 -3
  50. package/dist/index292.js +2 -54
  51. package/dist/index294.js +1534 -26
  52. package/dist/index295.js +386 -22
  53. package/dist/index296.js +2731 -22
  54. package/dist/index297.js +86 -16
  55. package/dist/index298.js +3792 -17
  56. package/dist/index299.js +59 -22
  57. package/dist/index300.js +15 -2
  58. package/dist/index301.js +62 -1512
  59. package/dist/index302.js +172 -356
  60. package/dist/index303.js +210 -2695
  61. package/dist/index304.js +50 -82
  62. package/dist/index305.js +26 -3792
  63. package/dist/index306.js +21 -59
  64. package/dist/index307.js +22 -15
  65. package/dist/index308.js +16 -84
  66. package/dist/index309.js +16 -201
  67. package/dist/index310.js +23 -246
  68. package/dist/index313.js +1 -1
  69. package/dist/index380.js +95 -98
  70. package/dist/index381.js +100 -90
  71. package/dist/index382.js +91 -98
  72. package/dist/index41.js +5 -5
  73. package/dist/src/components/comment/comment.d.ts +6 -0
  74. package/dist/src/components/comment/comment.stories.d.ts +6 -0
  75. package/dist/src/components/comment-section/comment-section.d.ts +6 -0
  76. package/dist/src/components/comment-section/comment-section.stories.d.ts +6 -0
  77. package/dist/src/components/data-filter/data-filter.d.ts +6 -0
  78. package/dist/src/components/data-list/data-list.d.ts +6 -0
  79. package/dist/src/components/grid/grid.stories.d.ts +12 -0
  80. package/dist/src/components/popover/popover.d.ts +6 -0
  81. package/dist/src/components/popover/popover.stories.d.ts +42 -0
  82. package/dist/src/components/room-details-popover/room-details-popover.d.ts +6 -0
  83. package/dist/src/views/lists.vue.d.ts +12 -0
  84. package/dist/src/views/tables.vue.d.ts +6 -0
  85. package/package.json +1 -1
package/dist/index260.js CHANGED
@@ -1,44 +1,24 @@
1
- import { Node as o, mergeAttributes as i } from "./index249.js";
2
- var a = " ", d = " ", p = o.create({
3
- name: "paragraph",
4
- priority: 1e3,
5
- addOptions() {
6
- return {
7
- HTMLAttributes: {}
8
- };
9
- },
10
- group: "block",
11
- content: "inline*",
12
- parseHTML() {
13
- return [{ tag: "p" }];
14
- },
15
- renderHTML({ HTMLAttributes: r }) {
16
- return ["p", i(this.options.HTMLAttributes, r), 0];
17
- },
18
- parseMarkdown: (r, e) => {
19
- const t = r.tokens || [];
20
- if (t.length === 1 && t[0].type === "image")
21
- return e.parseChildren([t[0]]);
22
- const n = e.parseInline(t);
23
- return n.length === 1 && n[0].type === "text" && (n[0].text === a || n[0].text === d) ? e.createNode("paragraph", void 0, []) : e.createNode("paragraph", void 0, n);
24
- },
25
- renderMarkdown: (r, e) => {
26
- if (!r)
27
- return "";
28
- const t = Array.isArray(r.content) ? r.content : [];
29
- return t.length === 0 ? a : e.renderChildren(t);
30
- },
31
- addCommands() {
32
- return {
33
- setParagraph: () => ({ commands: r }) => r.setNode(this.name)
34
- };
35
- },
36
- addKeyboardShortcuts() {
37
- return {
38
- "Mod-Alt-0": () => this.editor.commands.setParagraph()
39
- };
40
- }
41
- });
1
+ import e from "./index293.js";
2
+ import { openBlock as r, createElementBlock as o, mergeProps as t, createElementVNode as l } from "vue";
3
+ var n = {
4
+ name: "UploadIcon",
5
+ extends: e
6
+ }, i = /* @__PURE__ */ l("path", {
7
+ "fill-rule": "evenodd",
8
+ "clip-rule": "evenodd",
9
+ d: "M6.58942 9.82197C6.70165 9.93405 6.85328 9.99793 7.012 10C7.17071 9.99793 7.32234 9.93405 7.43458 9.82197C7.54681 9.7099 7.61079 9.55849 7.61286 9.4V2.04798L9.79204 4.22402C9.84752 4.28011 9.91365 4.32457 9.98657 4.35479C10.0595 4.38502 10.1377 4.40039 10.2167 4.40002C10.2956 4.40039 10.3738 4.38502 10.4467 4.35479C10.5197 4.32457 10.5858 4.28011 10.6413 4.22402C10.7538 4.11152 10.817 3.95902 10.817 3.80002C10.817 3.64102 10.7538 3.48852 10.6413 3.37602L7.45127 0.190618C7.44656 0.185584 7.44176 0.180622 7.43687 0.175736C7.32419 0.063214 7.17136 0 7.012 0C6.85264 0 6.69981 0.063214 6.58712 0.175736C6.58181 0.181045 6.5766 0.186443 6.5715 0.191927L3.38282 3.37602C3.27669 3.48976 3.2189 3.6402 3.22165 3.79564C3.2244 3.95108 3.28746 4.09939 3.39755 4.20932C3.50764 4.31925 3.65616 4.38222 3.81182 4.38496C3.96749 4.3877 4.11814 4.33001 4.23204 4.22402L6.41113 2.04807V9.4C6.41321 9.55849 6.47718 9.7099 6.58942 9.82197ZM11.9952 14H2.02883C1.751 13.9887 1.47813 13.9228 1.22584 13.8061C0.973545 13.6894 0.746779 13.5241 0.558517 13.3197C0.370254 13.1154 0.22419 12.876 0.128681 12.6152C0.0331723 12.3545 -0.00990605 12.0775 0.0019109 11.8V9.40005C0.0019109 9.24092 0.065216 9.08831 0.1779 8.97579C0.290584 8.86326 0.443416 8.80005 0.602775 8.80005C0.762134 8.80005 0.914966 8.86326 1.02765 8.97579C1.14033 9.08831 1.20364 9.24092 1.20364 9.40005V11.8C1.18295 12.0376 1.25463 12.274 1.40379 12.4602C1.55296 12.6463 1.76817 12.7681 2.00479 12.8H11.9952C12.2318 12.7681 12.447 12.6463 12.5962 12.4602C12.7453 12.274 12.817 12.0376 12.7963 11.8V9.40005C12.7963 9.24092 12.8596 9.08831 12.9723 8.97579C13.085 8.86326 13.2378 8.80005 13.3972 8.80005C13.5565 8.80005 13.7094 8.86326 13.8221 8.97579C13.9347 9.08831 13.998 9.24092 13.998 9.40005V11.8C14.022 12.3563 13.8251 12.8996 13.45 13.3116C13.0749 13.7236 12.552 13.971 11.9952 14Z",
10
+ fill: "currentColor"
11
+ }, null, -1), p = [i];
12
+ function d(C, a, s, c, m, h) {
13
+ return r(), o("svg", t({
14
+ width: "14",
15
+ height: "14",
16
+ viewBox: "0 0 14 14",
17
+ fill: "none",
18
+ xmlns: "http://www.w3.org/2000/svg"
19
+ }, C.pti()), p, 16);
20
+ }
21
+ n.render = d;
42
22
  export {
43
- p as Paragraph
23
+ n as default
44
24
  };
package/dist/index261.js CHANGED
@@ -1,66 +1,201 @@
1
- import { Mark as r, markPasteRule as s, markInputRule as n, mergeAttributes as a } from "./index249.js";
2
- var i = /(?:^|\s)(~~(?!\s+~~)((?:[^~]+))~~(?!\s+~~))$/, d = /(?:^|\s)(~~(?!\s+~~)((?:[^~]+))~~(?!\s+~~))/g, o = r.create({
3
- name: "strike",
4
- addOptions() {
1
+ import f from "./index272.js";
2
+ import y from "./index305.js";
3
+ import b from "./index306.js";
4
+ import P from "./index237.js";
5
+ import d from "./index307.js";
6
+ import S from "./index227.js";
7
+ import $ from "./index228.js";
8
+ import C from "./index308.js";
9
+ import { resolveComponent as j, resolveDirective as k, openBlock as s, createBlock as p, Transition as D, mergeProps as n, withCtx as B, withDirectives as v, createElementVNode as g, renderSlot as a, createElementBlock as m, resolveDynamicComponent as A, createCommentVNode as T, vShow as E } from "vue";
10
+ var N = {
11
+ name: "BaseMessage",
12
+ extends: $,
13
+ props: {
14
+ severity: {
15
+ type: String,
16
+ default: "info"
17
+ },
18
+ closable: {
19
+ type: Boolean,
20
+ default: !0
21
+ },
22
+ sticky: {
23
+ type: Boolean,
24
+ default: !0
25
+ },
26
+ life: {
27
+ type: Number,
28
+ default: 3e3
29
+ },
30
+ icon: {
31
+ type: String,
32
+ default: void 0
33
+ },
34
+ closeIcon: {
35
+ type: String,
36
+ default: void 0
37
+ },
38
+ closeButtonProps: {
39
+ type: null,
40
+ default: null
41
+ }
42
+ },
43
+ style: C,
44
+ provide: function() {
45
+ return {
46
+ $parentInstance: this
47
+ };
48
+ }
49
+ }, L = {
50
+ name: "Message",
51
+ extends: N,
52
+ inheritAttrs: !1,
53
+ emits: ["close", "life-end"],
54
+ timeout: null,
55
+ data: function() {
5
56
  return {
6
- HTMLAttributes: {}
57
+ visible: !0
7
58
  };
8
59
  },
9
- parseHTML() {
10
- return [
11
- {
12
- tag: "s"
13
- },
14
- {
15
- tag: "del"
16
- },
17
- {
18
- tag: "strike"
19
- },
20
- {
21
- style: "text-decoration",
22
- consuming: !1,
23
- getAttrs: (e) => e.includes("line-through") ? {} : !1
24
- }
25
- ];
60
+ watch: {
61
+ sticky: function(t) {
62
+ t || this.closeAfterDelay();
63
+ }
26
64
  },
27
- renderHTML({ HTMLAttributes: e }) {
28
- return ["s", a(this.options.HTMLAttributes, e), 0];
65
+ mounted: function() {
66
+ this.sticky || this.closeAfterDelay();
29
67
  },
30
- markdownTokenName: "del",
31
- parseMarkdown: (e, t) => t.applyMark("strike", t.parseInline(e.tokens || [])),
32
- renderMarkdown: (e, t) => `~~${t.renderChildren(e)}~~`,
33
- addCommands() {
34
- return {
35
- setStrike: () => ({ commands: e }) => e.setMark(this.name),
36
- toggleStrike: () => ({ commands: e }) => e.toggleMark(this.name),
37
- unsetStrike: () => ({ commands: e }) => e.unsetMark(this.name)
38
- };
68
+ methods: {
69
+ close: function(t) {
70
+ this.visible = !1, this.$emit("close", t);
71
+ },
72
+ closeAfterDelay: function() {
73
+ var t = this;
74
+ setTimeout(function() {
75
+ t.visible = !1, t.$emit("life-end");
76
+ }, this.life);
77
+ }
39
78
  },
40
- addKeyboardShortcuts() {
41
- return {
42
- "Mod-Shift-s": () => this.editor.commands.toggleStrike()
43
- };
79
+ computed: {
80
+ iconComponent: function() {
81
+ return {
82
+ info: b,
83
+ success: f,
84
+ warn: y,
85
+ error: d
86
+ }[this.severity];
87
+ },
88
+ closeAriaLabel: function() {
89
+ return this.$primevue.config.locale.aria ? this.$primevue.config.locale.aria.close : void 0;
90
+ }
44
91
  },
45
- addInputRules() {
46
- return [
47
- n({
48
- find: i,
49
- type: this.type
50
- })
51
- ];
92
+ directives: {
93
+ ripple: S
52
94
  },
53
- addPasteRules() {
54
- return [
55
- s({
56
- find: d,
57
- type: this.type
58
- })
59
- ];
95
+ components: {
96
+ TimesIcon: P,
97
+ InfoCircleIcon: b,
98
+ CheckIcon: f,
99
+ ExclamationTriangleIcon: y,
100
+ TimesCircleIcon: d
101
+ }
102
+ };
103
+ function c(e) {
104
+ "@babel/helpers - typeof";
105
+ return c = typeof Symbol == "function" && typeof Symbol.iterator == "symbol" ? function(t) {
106
+ return typeof t;
107
+ } : function(t) {
108
+ return t && typeof Symbol == "function" && t.constructor === Symbol && t !== Symbol.prototype ? "symbol" : typeof t;
109
+ }, c(e);
110
+ }
111
+ function h(e, t) {
112
+ var o = Object.keys(e);
113
+ if (Object.getOwnPropertySymbols) {
114
+ var r = Object.getOwnPropertySymbols(e);
115
+ t && (r = r.filter(function(u) {
116
+ return Object.getOwnPropertyDescriptor(e, u).enumerable;
117
+ })), o.push.apply(o, r);
118
+ }
119
+ return o;
120
+ }
121
+ function i(e) {
122
+ for (var t = 1; t < arguments.length; t++) {
123
+ var o = arguments[t] != null ? arguments[t] : {};
124
+ t % 2 ? h(Object(o), !0).forEach(function(r) {
125
+ M(e, r, o[r]);
126
+ }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(o)) : h(Object(o)).forEach(function(r) {
127
+ Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(o, r));
128
+ });
129
+ }
130
+ return e;
131
+ }
132
+ function M(e, t, o) {
133
+ return t = K(t), t in e ? Object.defineProperty(e, t, { value: o, enumerable: !0, configurable: !0, writable: !0 }) : e[t] = o, e;
134
+ }
135
+ function K(e) {
136
+ var t = V(e, "string");
137
+ return c(t) == "symbol" ? t : String(t);
138
+ }
139
+ function V(e, t) {
140
+ if (c(e) != "object" || !e) return e;
141
+ var o = e[Symbol.toPrimitive];
142
+ if (o !== void 0) {
143
+ var r = o.call(e, t);
144
+ if (c(r) != "object") return r;
145
+ throw new TypeError("@@toPrimitive must return a primitive value.");
60
146
  }
61
- });
147
+ return (t === "string" ? String : Number)(e);
148
+ }
149
+ var R = ["aria-label"];
150
+ function q(e, t, o, r, u, l) {
151
+ var I = j("TimesIcon"), O = k("ripple");
152
+ return s(), p(D, n({
153
+ name: "p-message",
154
+ appear: ""
155
+ }, e.ptmi("transition")), {
156
+ default: B(function() {
157
+ return [v(g("div", n({
158
+ class: e.cx("root"),
159
+ role: "alert",
160
+ "aria-live": "assertive",
161
+ "aria-atomic": "true"
162
+ }, e.ptm("root")), [e.$slots.container ? a(e.$slots, "container", {
163
+ key: 0,
164
+ onClose: l.close,
165
+ closeCallback: l.close
166
+ }) : (s(), m("div", n({
167
+ key: 1,
168
+ class: e.cx("wrapper")
169
+ }, e.ptm("wrapper")), [a(e.$slots, "messageicon", {
170
+ class: "p-message-icon"
171
+ }, function() {
172
+ return [(s(), p(A(e.icon ? "span" : l.iconComponent), n({
173
+ class: [e.cx("icon"), e.icon]
174
+ }, e.ptm("icon")), null, 16, ["class"]))];
175
+ }), g("div", n({
176
+ class: ["p-message-text", e.cx("text")]
177
+ }, e.ptm("text")), [a(e.$slots, "default")], 16), e.closable ? v((s(), m("button", n({
178
+ key: 0,
179
+ class: e.cx("closeButton"),
180
+ "aria-label": l.closeAriaLabel,
181
+ type: "button",
182
+ onClick: t[0] || (t[0] = function(w) {
183
+ return l.close(w);
184
+ })
185
+ }, i(i(i({}, e.closeButtonProps), e.ptm("button")), e.ptm("closeButton"))), [a(e.$slots, "closeicon", {}, function() {
186
+ return [e.closeIcon ? (s(), m("i", n({
187
+ key: 0,
188
+ class: [e.cx("closeIcon"), e.closeIcon]
189
+ }, i(i({}, e.ptm("buttonIcon")), e.ptm("closeIcon"))), null, 16)) : (s(), p(I, n({
190
+ key: 1,
191
+ class: [e.cx("closeIcon"), e.closeIcon]
192
+ }, i(i({}, e.ptm("buttonIcon")), e.ptm("closeIcon"))), null, 16, ["class"]))];
193
+ })], 16, R)), [[O]]) : T("", !0)], 16))], 16), [[E, u.visible]])];
194
+ }),
195
+ _: 3
196
+ }, 16);
197
+ }
198
+ L.render = q;
62
199
  export {
63
- o as Strike,
64
- i as inputRegex,
65
- d as pasteRegex
200
+ L as default
66
201
  };
package/dist/index262.js CHANGED
@@ -1,13 +1,72 @@
1
- import { Node as t } from "./index249.js";
2
- var o = t.create({
3
- name: "text",
4
- group: "inline",
5
- parseMarkdown: (e) => ({
6
- type: "text",
7
- text: e.text || ""
8
- }),
9
- renderMarkdown: (e) => e.text || ""
10
- });
1
+ import i from "./index228.js";
2
+ import o from "./index309.js";
3
+ import { openBlock as t, createElementBlock as a, mergeProps as r, renderSlot as s, createTextVNode as u, toDisplayString as d, createCommentVNode as l, createElementVNode as m } from "vue";
4
+ var p = {
5
+ name: "BaseProgressBar",
6
+ extends: i,
7
+ props: {
8
+ value: {
9
+ type: Number,
10
+ default: null
11
+ },
12
+ mode: {
13
+ type: String,
14
+ default: "determinate"
15
+ },
16
+ showValue: {
17
+ type: Boolean,
18
+ default: !0
19
+ }
20
+ },
21
+ style: o,
22
+ provide: function() {
23
+ return {
24
+ $parentInstance: this
25
+ };
26
+ }
27
+ }, v = {
28
+ name: "ProgressBar",
29
+ extends: p,
30
+ inheritAttrs: !1,
31
+ computed: {
32
+ progressStyle: function() {
33
+ return {
34
+ width: this.value + "%",
35
+ display: "flex"
36
+ };
37
+ },
38
+ indeterminate: function() {
39
+ return this.mode === "indeterminate";
40
+ },
41
+ determinate: function() {
42
+ return this.mode === "determinate";
43
+ }
44
+ }
45
+ }, c = ["aria-valuenow"];
46
+ function f(e, y, g, h, B, n) {
47
+ return t(), a("div", r({
48
+ role: "progressbar",
49
+ class: e.cx("root"),
50
+ "aria-valuemin": "0",
51
+ "aria-valuenow": e.value,
52
+ "aria-valuemax": "100"
53
+ }, e.ptmi("root")), [n.determinate ? (t(), a("div", r({
54
+ key: 0,
55
+ class: e.cx("value"),
56
+ style: n.progressStyle
57
+ }, e.ptm("value")), [e.value != null && e.value !== 0 && e.showValue ? (t(), a("div", r({
58
+ key: 0,
59
+ class: e.cx("label")
60
+ }, e.ptm("label")), [s(e.$slots, "default", {}, function() {
61
+ return [u(d(e.value + "%"), 1)];
62
+ })], 16)) : l("", !0)], 16)) : l("", !0), n.indeterminate ? (t(), a("div", r({
63
+ key: 1,
64
+ class: e.cx("container")
65
+ }, e.ptm("container")), [m("div", r({
66
+ class: e.cx("value")
67
+ }, e.ptm("value")), null, 16)], 16)) : l("", !0)], 16, c);
68
+ }
69
+ v.render = f;
11
70
  export {
12
- o as Text
71
+ v as default
13
72
  };