@xy-planning-network/trees 0.2.62 → 0.3.3
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.
- package/README.md +103 -0
- package/config/tailwind.config.js +56 -0
- package/config/theme/animation.js +3 -0
- package/config/theme/colors.js +17 -0
- package/config/theme/fontFamily.js +4 -0
- package/config/theme/index.js +5 -0
- package/dist/trees.esm.js +63 -65
- package/dist/trees.min.js +2 -2
- package/dist/trees.ssr.js +64 -66
- package/package.json +7 -3
- package/src/index.css +147 -0
- package/src/lib-components/forms/BaseInput.vue +1 -1
- package/src/lib-components/forms/Checkbox.vue +4 -8
- package/src/lib-components/forms/InputHelp.vue +1 -1
- package/src/lib-components/forms/InputLabel.vue +1 -1
- package/src/lib-components/forms/MultiCheckboxes.vue +2 -2
- package/src/lib-components/forms/Radio.vue +2 -2
- package/src/lib-components/forms/Select.vue +8 -5
- package/src/lib-components/forms/TextArea.vue +1 -1
- package/src/lib-components/forms/YesOrNoRadio.vue +4 -6
- package/src/lib-components/layout/DateFilter.vue +2 -1
- package/src/lib-components/layout/SidebarLayout.vue +7 -7
- package/src/lib-components/layout/StackedLayout.vue +6 -6
- package/src/lib-components/lists/Cards.vue +1 -1
- package/src/lib-components/lists/StaticTable.vue +3 -3
- package/src/lib-components/lists/Table.vue +3 -3
- package/src/lib-components/navigation/ActionsDropdown.vue +2 -2
- package/src/lib-components/navigation/Paginator.vue +5 -5
- package/src/lib-components/navigation/Tabs.vue +4 -4
- package/src/lib-components/overlays/Slideover.vue +4 -3
package/dist/trees.esm.js
CHANGED
|
@@ -1457,8 +1457,9 @@ axios_1.default = _default;
|
|
|
1457
1457
|
|
|
1458
1458
|
var axios = axios_1;
|
|
1459
1459
|
|
|
1460
|
+
const env = import.meta.env || {};
|
|
1460
1461
|
const apiAxiosInstance = axios.create({
|
|
1461
|
-
baseURL: process.env.VUE_APP_BASE_API_URL || "/api/v1",
|
|
1462
|
+
baseURL: env.VITE_APP_BASE_API_URL || process.env.VUE_APP_BASE_API_URL || "/api/v1",
|
|
1462
1463
|
responseType: "json",
|
|
1463
1464
|
withCredentials: true
|
|
1464
1465
|
});
|
|
@@ -5033,7 +5034,7 @@ function render$x(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
5033
5034
|
class: "relative flex justify-end items-center"
|
|
5034
5035
|
}, {
|
|
5035
5036
|
default: withCtx(() => [createVNode(_component_MenuButton, {
|
|
5036
|
-
class: "w-8 h-8 bg-white inline-flex items-center justify-center text-gray-
|
|
5037
|
+
class: "w-8 h-8 bg-white inline-flex items-center justify-center text-gray-700 rounded-full hover:text-gray-900 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500 disabled:opacity-50 disabled:cursor-not-allowed",
|
|
5037
5038
|
disabled: !_ctx.hasActionItems
|
|
5038
5039
|
}, {
|
|
5039
5040
|
default: withCtx(() => [_hoisted_1$k, createVNode(_component_DotsVerticalIcon, {
|
|
@@ -5063,7 +5064,7 @@ function render$x(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
5063
5064
|
active
|
|
5064
5065
|
}) => [createVNode("button", {
|
|
5065
5066
|
type: "submit",
|
|
5066
|
-
class: [active ? 'bg-gray-100 text-gray-900' : 'text-gray-700', 'block w-full text-left px-4 py-2 text-sm'],
|
|
5067
|
+
class: [active ? 'bg-gray-100 text-gray-900' : 'text-gray-700', 'block w-full text-left px-4 py-2 text-sm font-semibold'],
|
|
5067
5068
|
textContent: toDisplayString(item.label),
|
|
5068
5069
|
onClick: $event => _ctx.emitEvent(item.event)
|
|
5069
5070
|
}, null, 10, ["textContent", "onClick"])]),
|
|
@@ -5114,7 +5115,7 @@ function render$w(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
5114
5115
|
class: "mt-1 text-3xl leading-9 font-semibold text-xy-blue",
|
|
5115
5116
|
textContent: toDisplayString(card.primary)
|
|
5116
5117
|
}, null, 8, ["textContent"]), createVNode("dt", {
|
|
5117
|
-
class: "text-sm leading-5 font-medium text-gray-
|
|
5118
|
+
class: "text-sm leading-5 font-medium text-gray-700 truncate",
|
|
5118
5119
|
textContent: toDisplayString(card.secondary)
|
|
5119
5120
|
}, null, 8, ["textContent"])])])]);
|
|
5120
5121
|
}), 128))], 2);
|
|
@@ -7772,7 +7773,7 @@ function render$u(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
7772
7773
|
return _ctx.label ? (openBlock(), createBlock(resolveDynamicComponent(_ctx.tag), mergeProps({
|
|
7773
7774
|
key: 0
|
|
7774
7775
|
}, { ..._ctx.$attrs,
|
|
7775
|
-
class: 'block my-
|
|
7776
|
+
class: 'block my-1 text-sm font-semibold leading-snug text-gray-900'
|
|
7776
7777
|
}), {
|
|
7777
7778
|
default: withCtx(() => [createTextVNode(toDisplayString(_ctx.label), 1)]),
|
|
7778
7779
|
_: 1
|
|
@@ -7816,7 +7817,7 @@ function render$t(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
7816
7817
|
return _ctx.text ? (openBlock(), createBlock(resolveDynamicComponent(_ctx.tag), mergeProps({
|
|
7817
7818
|
key: 0
|
|
7818
7819
|
}, { ..._ctx.$attrs,
|
|
7819
|
-
class: '
|
|
7820
|
+
class: 'mt-2 text-sm leading-snug font-semibold text-gray-700'
|
|
7820
7821
|
}), {
|
|
7821
7822
|
default: withCtx(() => [createTextVNode(toDisplayString(_ctx.text), 1)]),
|
|
7822
7823
|
_: 1
|
|
@@ -7903,7 +7904,7 @@ function render$s(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
7903
7904
|
}, null, 8, ["id", "for", "label"]), createVNode("input", mergeProps({
|
|
7904
7905
|
"aria-labelledby": _ctx.label ? `${_ctx.uuid}-label` : undefined,
|
|
7905
7906
|
"aria-describedby": _ctx.help ? `${_ctx.uuid}-help` : undefined,
|
|
7906
|
-
class: [...['mt-1', 'sm:text-sm'], ...(_ctx.isTextType ? ['block', 'shadow-sm', 'focus:ring-blue-500', 'focus:border-blue-500', 'border-gray-
|
|
7907
|
+
class: [...['mt-1', 'sm:text-sm'], ...(_ctx.isTextType ? ['block', 'shadow-sm', 'focus:ring-blue-500', 'focus:border-blue-500', 'border-gray-600', 'rounded-md', 'w-full'] : [])],
|
|
7907
7908
|
id: _ctx.uuid,
|
|
7908
7909
|
placeholder: _ctx.label,
|
|
7909
7910
|
type: _ctx.type,
|
|
@@ -7917,7 +7918,7 @@ function render$s(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
7917
7918
|
|
|
7918
7919
|
BaseInput.render = render$s;
|
|
7919
7920
|
|
|
7920
|
-
var _dec$l, _dec2$j, _dec3$h, _dec4$f, _dec5$b, _dec6$
|
|
7921
|
+
var _dec$l, _dec2$j, _dec3$h, _dec4$f, _dec5$b, _dec6$8, _class$l, _class2$j, _descriptor$j, _descriptor2$g, _descriptor3$f, _descriptor4$6;
|
|
7921
7922
|
let DateRangePicker = (_dec$l = Options({
|
|
7922
7923
|
name: "DateRangePicker",
|
|
7923
7924
|
components: {
|
|
@@ -7935,7 +7936,7 @@ let DateRangePicker = (_dec$l = Options({
|
|
|
7935
7936
|
}), _dec5$b = Prop({
|
|
7936
7937
|
type: String,
|
|
7937
7938
|
required: false
|
|
7938
|
-
}), _dec6$
|
|
7939
|
+
}), _dec6$8 = Emit("update:modelValue"), _dec$l(_class$l = (_class2$j = class DateRangePicker extends Vue {
|
|
7939
7940
|
constructor(...args) {
|
|
7940
7941
|
super(...args);
|
|
7941
7942
|
|
|
@@ -7997,7 +7998,7 @@ let DateRangePicker = (_dec$l = Options({
|
|
|
7997
7998
|
enumerable: true,
|
|
7998
7999
|
writable: true,
|
|
7999
8000
|
initializer: null
|
|
8000
|
-
}), _applyDecoratedDescriptor(_class2$j.prototype, "updateModelValue", [_dec6$
|
|
8001
|
+
}), _applyDecoratedDescriptor(_class2$j.prototype, "updateModelValue", [_dec6$8], Object.getOwnPropertyDescriptor(_class2$j.prototype, "updateModelValue"), _class2$j.prototype)), _class2$j)) || _class$l);
|
|
8001
8002
|
|
|
8002
8003
|
function render$r(_ctx, _cache, $props, $setup, $data, $options) {
|
|
8003
8004
|
const _component_BaseInput = resolveComponent("BaseInput");
|
|
@@ -8013,7 +8014,7 @@ function render$r(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
8013
8014
|
|
|
8014
8015
|
DateRangePicker.render = render$r;
|
|
8015
8016
|
|
|
8016
|
-
var _dec$k, _dec2$i, _dec3$g, _dec4$e, _dec5$a, _dec6$
|
|
8017
|
+
var _dec$k, _dec2$i, _dec3$g, _dec4$e, _dec5$a, _dec6$7, _class$k, _class2$i, _descriptor$i, _descriptor2$f, _descriptor3$e;
|
|
8017
8018
|
let DateFilter = (_dec$k = Options({
|
|
8018
8019
|
components: {
|
|
8019
8020
|
DateRangePicker
|
|
@@ -8028,7 +8029,7 @@ let DateFilter = (_dec$k = Options({
|
|
|
8028
8029
|
}), _dec4$e = Prop({
|
|
8029
8030
|
type: String,
|
|
8030
8031
|
required: true
|
|
8031
|
-
}), _dec5$a = Emit(), _dec6$
|
|
8032
|
+
}), _dec5$a = Emit(), _dec6$7 = Emit(), _dec$k(_class$k = (_class2$i = class DateFilter extends Vue {
|
|
8032
8033
|
constructor(...args) {
|
|
8033
8034
|
super(...args);
|
|
8034
8035
|
|
|
@@ -8062,7 +8063,7 @@ let DateFilter = (_dec$k = Options({
|
|
|
8062
8063
|
enumerable: true,
|
|
8063
8064
|
writable: true,
|
|
8064
8065
|
initializer: null
|
|
8065
|
-
}), _applyDecoratedDescriptor(_class2$i.prototype, "sortDirChanged", [_dec5$a], Object.getOwnPropertyDescriptor(_class2$i.prototype, "sortDirChanged"), _class2$i.prototype), _applyDecoratedDescriptor(_class2$i.prototype, "dateRangeChanged", [_dec6$
|
|
8066
|
+
}), _applyDecoratedDescriptor(_class2$i.prototype, "sortDirChanged", [_dec5$a], Object.getOwnPropertyDescriptor(_class2$i.prototype, "sortDirChanged"), _class2$i.prototype), _applyDecoratedDescriptor(_class2$i.prototype, "dateRangeChanged", [_dec6$7], Object.getOwnPropertyDescriptor(_class2$i.prototype, "dateRangeChanged"), _class2$i.prototype)), _class2$i)) || _class$k);
|
|
8066
8067
|
|
|
8067
8068
|
const _hoisted_1$h = {
|
|
8068
8069
|
class: "md:flex md:items-center md:justify-between bg-white mx-auto py-4 border-t border-gray-100"
|
|
@@ -8090,7 +8091,7 @@ function render$q(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
8090
8091
|
|
|
8091
8092
|
return openBlock(), createBlock("div", _hoisted_1$h, [createVNode("div", _hoisted_2$f, [createVNode("h1", _hoisted_3$b, toDisplayString(_ctx.title), 1)]), createVNode("div", _hoisted_4$9, [createVNode("select", {
|
|
8092
8093
|
onChange: _cache[1] || (_cache[1] = $event => _ctx.sortDirChanged($event.target.value)),
|
|
8093
|
-
class: "block w-full border border-gray-
|
|
8094
|
+
class: "block w-full border border-gray-600 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-blue-500 focus:border-blue-500 sm:text-sm"
|
|
8094
8095
|
}, [_hoisted_5$9, _hoisted_6$9], 32), createVNode(_component_DateRangePicker, {
|
|
8095
8096
|
modelValue: _ctx.dateRange,
|
|
8096
8097
|
"onUpdate:modelValue": _cache[2] || (_cache[2] = $event => _ctx.dateRangeChanged($event)),
|
|
@@ -8219,26 +8220,26 @@ const _hoisted_8$6 = /*#__PURE__*/createVNode("svg", {
|
|
|
8219
8220
|
function render$p(_ctx, _cache, $props, $setup, $data, $options) {
|
|
8220
8221
|
return openBlock(), createBlock("div", _hoisted_1$g, [createVNode("div", _hoisted_2$e, [createVNode("a", {
|
|
8221
8222
|
href: "#",
|
|
8222
|
-
class: ["-mt-px border-t-2 border-transparent pt-4 pr-1 inline-flex items-center text-sm leading-5 font-medium focus:outline-none focus:text-gray-700 focus:border-gray-400", _ctx.modelValue.page == 1 ? 'text-gray-
|
|
8223
|
+
class: ["-mt-px border-t-2 border-transparent pt-4 pr-1 inline-flex items-center text-sm leading-5 font-medium focus:outline-none focus:text-gray-700 focus:border-gray-400", _ctx.modelValue.page == 1 ? 'text-gray-500 cursor-not-allowed pointer-events-none' : 'text-gray-700 hover:text-gray-900 hover:border-gray-300'],
|
|
8223
8224
|
onClick: _cache[1] || (_cache[1] = withModifiers($event => _ctx.changePage(_ctx.modelValue.page - 1), ["prevent"]))
|
|
8224
8225
|
}, [_hoisted_3$a, _hoisted_4$8], 2)]), createVNode("div", _hoisted_5$8, [(openBlock(true), createBlock(Fragment, null, renderList(_ctx.pageShortcuts, i => {
|
|
8225
8226
|
return openBlock(), createBlock("a", {
|
|
8226
8227
|
href: "#",
|
|
8227
|
-
class: ["-mt-px border-t-2 pt-4 px-4 inline-flex items-center text-sm leading-5 font-medium", _ctx.modelValue.page === i ? 'border-blue-500 text-blue-600 focus:outline-none focus:text-blue-800 focus:border-blue-700' : 'border-transparent text-gray-
|
|
8228
|
+
class: ["-mt-px border-t-2 pt-4 px-4 inline-flex items-center text-sm leading-5 font-medium", _ctx.modelValue.page === i ? 'border-blue-500 text-blue-600 focus:outline-none focus:text-blue-800 focus:border-blue-700' : 'border-transparent text-gray-700 hover:text-gray-900 hover:border-gray-300 focus:outline-none focus:text-gray-700 focus:border-gray-400'],
|
|
8228
8229
|
key: i,
|
|
8229
8230
|
textContent: toDisplayString(i),
|
|
8230
8231
|
onClick: withModifiers($event => _ctx.changePage(i), ["prevent"])
|
|
8231
8232
|
}, null, 10, ["textContent", "onClick"]);
|
|
8232
8233
|
}), 128))]), createVNode("div", _hoisted_6$8, [createVNode("a", {
|
|
8233
8234
|
href: "#",
|
|
8234
|
-
class: ["-mt-px border-t-2 border-transparent pt-4 pl-1 inline-flex items-center text-sm leading-5 font-medium focus:outline-none focus:text-gray-700 focus:border-gray-400", _ctx.modelValue.page >= _ctx.modelValue.totalPages ? 'text-gray-
|
|
8235
|
+
class: ["-mt-px border-t-2 border-transparent pt-4 pl-1 inline-flex items-center text-sm leading-5 font-medium focus:outline-none focus:text-gray-700 focus:border-gray-400", _ctx.modelValue.page >= _ctx.modelValue.totalPages ? 'text-gray-500 cursor-not-allowed pointer-events-none' : 'text-gray-700 hover:text-gray-900 hover:border-gray-300'],
|
|
8235
8236
|
onClick: _cache[2] || (_cache[2] = withModifiers($event => _ctx.changePage(_ctx.modelValue.page + 1), ["prevent"]))
|
|
8236
8237
|
}, [_hoisted_7$8, _hoisted_8$6], 2)])]);
|
|
8237
8238
|
}
|
|
8238
8239
|
|
|
8239
8240
|
Paginator.render = render$p;
|
|
8240
8241
|
|
|
8241
|
-
var _dec$i, _dec2$g, _dec3$e, _dec4$d, _dec5$9, _dec6$
|
|
8242
|
+
var _dec$i, _dec2$g, _dec3$e, _dec4$d, _dec5$9, _dec6$6, _dec7$3, _dec8$2, _dec9, _class$i, _class2$g, _descriptor$g, _descriptor2$e, _descriptor3$d, _descriptor4$5;
|
|
8242
8243
|
let DetailList = (_dec$i = Options({
|
|
8243
8244
|
components: {
|
|
8244
8245
|
DateFilter,
|
|
@@ -8257,7 +8258,7 @@ let DetailList = (_dec$i = Options({
|
|
|
8257
8258
|
}), _dec5$9 = Prop({
|
|
8258
8259
|
type: String,
|
|
8259
8260
|
required: true
|
|
8260
|
-
}), _dec6$
|
|
8261
|
+
}), _dec6$6 = Watch("sortDir"), _dec7$3 = Watch("dateRange"), _dec8$2 = Watch("refreshTrigger"), _dec9 = Watch("reloadTrigger"), _dec$i(_class$i = (_class2$g = class DetailList extends Vue {
|
|
8261
8262
|
constructor(...args) {
|
|
8262
8263
|
super(...args);
|
|
8263
8264
|
|
|
@@ -8351,7 +8352,7 @@ let DetailList = (_dec$i = Options({
|
|
|
8351
8352
|
enumerable: true,
|
|
8352
8353
|
writable: true,
|
|
8353
8354
|
initializer: null
|
|
8354
|
-
}), _applyDecoratedDescriptor(_class2$g.prototype, "onSortDir", [_dec6$
|
|
8355
|
+
}), _applyDecoratedDescriptor(_class2$g.prototype, "onSortDir", [_dec6$6], Object.getOwnPropertyDescriptor(_class2$g.prototype, "onSortDir"), _class2$g.prototype), _applyDecoratedDescriptor(_class2$g.prototype, "onDateRange", [_dec7$3], Object.getOwnPropertyDescriptor(_class2$g.prototype, "onDateRange"), _class2$g.prototype), _applyDecoratedDescriptor(_class2$g.prototype, "onRefreshTrigger", [_dec8$2], Object.getOwnPropertyDescriptor(_class2$g.prototype, "onRefreshTrigger"), _class2$g.prototype), _applyDecoratedDescriptor(_class2$g.prototype, "onReloadTrigger", [_dec9], Object.getOwnPropertyDescriptor(_class2$g.prototype, "onReloadTrigger"), _class2$g.prototype)), _class2$g)) || _class$i);
|
|
8355
8356
|
|
|
8356
8357
|
const _hoisted_1$f = {
|
|
8357
8358
|
key: 0,
|
|
@@ -8665,7 +8666,7 @@ function render$g(_ctx, _cache) {
|
|
|
8665
8666
|
]))
|
|
8666
8667
|
}
|
|
8667
8668
|
|
|
8668
|
-
var _dec$f, _dec2$e, _dec3$c, _dec4$c, _dec5$8, _dec6$
|
|
8669
|
+
var _dec$f, _dec2$e, _dec3$c, _dec4$c, _dec5$8, _dec6$5, _dec7$2, _dec8$1, _class$f, _class2$e, _descriptor$e, _descriptor2$c, _descriptor3$c, _descriptor4$4, _descriptor5$3;
|
|
8669
8670
|
let Modal = (_dec$f = Options({
|
|
8670
8671
|
components: {
|
|
8671
8672
|
Dialog,
|
|
@@ -8689,7 +8690,7 @@ let Modal = (_dec$f = Options({
|
|
|
8689
8690
|
}), _dec5$8 = Prop({
|
|
8690
8691
|
type: String,
|
|
8691
8692
|
required: false
|
|
8692
|
-
}), _dec6$
|
|
8693
|
+
}), _dec6$5 = Prop({
|
|
8693
8694
|
type: String,
|
|
8694
8695
|
required: false
|
|
8695
8696
|
}), _dec7$2 = Emit(), _dec8$1 = Emit("update:modelValue"), _dec$f(_class$f = (_class2$e = class Modal extends Vue {
|
|
@@ -8735,7 +8736,7 @@ let Modal = (_dec$f = Options({
|
|
|
8735
8736
|
enumerable: true,
|
|
8736
8737
|
writable: true,
|
|
8737
8738
|
initializer: null
|
|
8738
|
-
}), _descriptor5$3 = _applyDecoratedDescriptor(_class2$e.prototype, "title", [_dec6$
|
|
8739
|
+
}), _descriptor5$3 = _applyDecoratedDescriptor(_class2$e.prototype, "title", [_dec6$5], {
|
|
8739
8740
|
configurable: true,
|
|
8740
8741
|
enumerable: true,
|
|
8741
8742
|
writable: true,
|
|
@@ -9244,10 +9245,10 @@ function render$d(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
9244
9245
|
return openBlock(), createBlock("a", {
|
|
9245
9246
|
key: item.name,
|
|
9246
9247
|
href: item.url,
|
|
9247
|
-
class: [_ctx.isActive(item.url) ? 'bg-gray-100 text-gray-900' : 'text-gray-
|
|
9248
|
+
class: [_ctx.isActive(item.url) ? 'bg-gray-100 text-gray-900' : 'text-gray-700 hover:bg-gray-50 hover:text-gray-900', 'group flex items-center px-2 py-2 text-base font-medium rounded-md'],
|
|
9248
9249
|
target: item.openInTab ? '_blank' : '_self'
|
|
9249
9250
|
}, [(openBlock(), createBlock(resolveDynamicComponent(item.icon), {
|
|
9250
|
-
class: [_ctx.isActive(item.url) ? 'text-gray-
|
|
9251
|
+
class: [_ctx.isActive(item.url) ? 'text-gray-600' : 'text-gray-500 group-hover:text-gray-600', 'mr-4 h-6 w-6'],
|
|
9251
9252
|
"aria-hidden": "true"
|
|
9252
9253
|
}, null, 8, ["class"])), createTextVNode(" " + toDisplayString(item.name), 1)], 10, ["href", "target"]);
|
|
9253
9254
|
}), 128))])])])]),
|
|
@@ -9264,10 +9265,10 @@ function render$d(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
9264
9265
|
return openBlock(), createBlock("a", {
|
|
9265
9266
|
key: item.name,
|
|
9266
9267
|
href: item.url,
|
|
9267
|
-
class: [_ctx.isActive(item.url) ? 'bg-gray-100 text-gray-900' : 'text-gray-
|
|
9268
|
+
class: [_ctx.isActive(item.url) ? 'bg-gray-100 text-gray-900' : 'text-gray-700 hover:bg-gray-100 hover:text-gray-900', 'group flex items-center px-2 py-2 text-sm font-medium rounded-md'],
|
|
9268
9269
|
target: item.openInTab ? '_blank' : '_self'
|
|
9269
9270
|
}, [(openBlock(), createBlock(resolveDynamicComponent(item.icon), {
|
|
9270
|
-
class: [_ctx.isActive(item.url) ? 'text-gray-
|
|
9271
|
+
class: [_ctx.isActive(item.url) ? 'text-gray-600' : 'text-gray-500 group-hover:text-gray-600', 'mr-3 h-6 w-6'],
|
|
9271
9272
|
"aria-hidden": "true"
|
|
9272
9273
|
}, null, 8, ["class"])), createTextVNode(" " + toDisplayString(item.name), 1)], 10, ["href", "target"]);
|
|
9273
9274
|
}), 128))])])])])]), createVNode("div", _hoisted_15$2, [createVNode("div", _hoisted_16$2, [createVNode("button", {
|
|
@@ -9307,7 +9308,7 @@ function render$d(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
9307
9308
|
active
|
|
9308
9309
|
}) => [createVNode("a", {
|
|
9309
9310
|
href: item.url,
|
|
9310
|
-
class: [active ? 'bg-gray-100' : '', 'block px-4 py-2 text-sm text-gray-700']
|
|
9311
|
+
class: [active ? 'bg-gray-100' : '', 'block px-4 py-2 text-sm text-gray-700 font-semibold']
|
|
9311
9312
|
}, toDisplayString(item.name), 11, ["href"])]),
|
|
9312
9313
|
_: 2
|
|
9313
9314
|
}, 1024);
|
|
@@ -9322,7 +9323,7 @@ function render$d(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
9322
9323
|
|
|
9323
9324
|
SidebarLayout.render = render$d;
|
|
9324
9325
|
|
|
9325
|
-
var _dec$c, _dec2$c, _dec3$a, _dec4$a, _dec5$6, _class$c, _class2$c, _descriptor$c, _descriptor2$a, _descriptor3$a;
|
|
9326
|
+
var _dec$c, _dec2$c, _dec3$a, _dec4$a, _dec5$6, _dec6$4, _class$c, _class2$c, _descriptor$c, _descriptor2$a, _descriptor3$a;
|
|
9326
9327
|
let Slideover = (_dec$c = Options({
|
|
9327
9328
|
name: "Slideover",
|
|
9328
9329
|
components: {
|
|
@@ -9342,7 +9343,7 @@ let Slideover = (_dec$c = Options({
|
|
|
9342
9343
|
}), _dec4$a = Prop({
|
|
9343
9344
|
type: Boolean,
|
|
9344
9345
|
required: true
|
|
9345
|
-
}), _dec5$6 = Emit(), _dec$c(_class$c = (_class2$c = class Slideover extends Vue {
|
|
9346
|
+
}), _dec5$6 = Emit("close"), _dec6$4 = Emit("update:modelValue"), _dec$c(_class$c = (_class2$c = class Slideover extends Vue {
|
|
9346
9347
|
constructor(...args) {
|
|
9347
9348
|
super(...args);
|
|
9348
9349
|
|
|
@@ -9354,7 +9355,7 @@ let Slideover = (_dec$c = Options({
|
|
|
9354
9355
|
}
|
|
9355
9356
|
|
|
9356
9357
|
close() {
|
|
9357
|
-
return;
|
|
9358
|
+
return false;
|
|
9358
9359
|
}
|
|
9359
9360
|
|
|
9360
9361
|
}, (_descriptor$c = _applyDecoratedDescriptor(_class2$c.prototype, "header", [_dec2$c], {
|
|
@@ -9372,7 +9373,7 @@ let Slideover = (_dec$c = Options({
|
|
|
9372
9373
|
enumerable: true,
|
|
9373
9374
|
writable: true,
|
|
9374
9375
|
initializer: null
|
|
9375
|
-
}), _applyDecoratedDescriptor(_class2$c.prototype, "close", [_dec5$6], Object.getOwnPropertyDescriptor(_class2$c.prototype, "close"), _class2$c.prototype)), _class2$c)) || _class$c);
|
|
9376
|
+
}), _applyDecoratedDescriptor(_class2$c.prototype, "close", [_dec5$6, _dec6$4], Object.getOwnPropertyDescriptor(_class2$c.prototype, "close"), _class2$c.prototype)), _class2$c)) || _class$c);
|
|
9376
9377
|
|
|
9377
9378
|
const _hoisted_1$a = {
|
|
9378
9379
|
class: "absolute inset-0 overflow-hidden"
|
|
@@ -9643,7 +9644,7 @@ function render$b(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
9643
9644
|
return openBlock(), createBlock("a", {
|
|
9644
9645
|
key: item.name,
|
|
9645
9646
|
href: item.url,
|
|
9646
|
-
class: [_ctx.isActive(item.url) ? 'border-blue-500 text-gray-900' : 'border-transparent text-gray-
|
|
9647
|
+
class: [_ctx.isActive(item.url) ? 'border-blue-500 text-gray-900' : 'border-transparent text-gray-700 hover:text-gray-900 hover:border-blue-500', 'inline-flex items-center px-1 pt-1 border-b-2 text-sm font-semibold'],
|
|
9647
9648
|
"aria-current": _ctx.isActive(item.url) ? 'page' : undefined
|
|
9648
9649
|
}, toDisplayString(item.name), 11, ["href", "aria-current"]);
|
|
9649
9650
|
}), 128))])]), createVNode("div", _hoisted_7$3, [createVNode(_component_Menu, {
|
|
@@ -9676,7 +9677,7 @@ function render$b(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
9676
9677
|
active
|
|
9677
9678
|
}) => [createVNode("a", {
|
|
9678
9679
|
href: item.url,
|
|
9679
|
-
class: [active ? 'bg-gray-100' : '', 'block px-4 py-2 text-sm text-gray-700']
|
|
9680
|
+
class: [active ? 'bg-gray-100' : '', 'block px-4 py-2 text-sm text-gray-700 font-semibold']
|
|
9680
9681
|
}, toDisplayString(item.name), 11, ["href"])]),
|
|
9681
9682
|
_: 2
|
|
9682
9683
|
}, 1024);
|
|
@@ -9706,7 +9707,7 @@ function render$b(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
9706
9707
|
return openBlock(), createBlock("a", {
|
|
9707
9708
|
key: item.name,
|
|
9708
9709
|
href: item.url,
|
|
9709
|
-
class: [_ctx.isActive(item.url) ? 'bg-blue-50 border-blue-500 text-blue-700' : 'border-transparent text-gray-
|
|
9710
|
+
class: [_ctx.isActive(item.url) ? 'bg-blue-50 border-blue-500 text-blue-700' : 'border-transparent text-gray-700 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-900', 'block pl-3 pr-4 py-2 border-l-4 text-base font-semibold'],
|
|
9710
9711
|
"aria-current": _ctx.isActive(item.url) ? 'page' : undefined
|
|
9711
9712
|
}, toDisplayString(item.name), 11, ["href", "aria-current"]);
|
|
9712
9713
|
}), 128))]), createVNode("div", _hoisted_12$1, [createVNode("div", _hoisted_13$1, [createVNode("div", _hoisted_14$1, [createVNode(_component_UserCircleIcon, {
|
|
@@ -9721,7 +9722,7 @@ function render$b(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
9721
9722
|
return openBlock(), createBlock("a", {
|
|
9722
9723
|
key: item.name,
|
|
9723
9724
|
href: item.url,
|
|
9724
|
-
class: "block px-4 py-2 text-base font-medium text-gray-
|
|
9725
|
+
class: "block px-4 py-2 text-base font-medium text-gray-700 hover:text-gray-900 hover:bg-gray-100"
|
|
9725
9726
|
}, toDisplayString(item.name), 9, ["href"]);
|
|
9726
9727
|
}), 128))])])]),
|
|
9727
9728
|
_: 1
|
|
@@ -9788,7 +9789,7 @@ const _hoisted_7$2 = {
|
|
|
9788
9789
|
function render$a(_ctx, _cache, $props, $setup, $data, $options) {
|
|
9789
9790
|
return openBlock(), createBlock("div", _hoisted_1$8, [createVNode("div", _hoisted_2$7, [createVNode("div", _hoisted_3$4, [createVNode("div", _hoisted_4$2, [createVNode("table", _hoisted_5$2, [createVNode("thead", null, [createVNode("tr", null, [(openBlock(true), createBlock(Fragment, null, renderList(_ctx.tableData.columns, (col, idx) => {
|
|
9790
9791
|
return openBlock(), createBlock("th", {
|
|
9791
|
-
class: "px-6 py-3 text-xs font-medium tracking-wider text-left text-gray-
|
|
9792
|
+
class: "px-6 py-3 text-xs font-medium tracking-wider text-left text-gray-900 uppercase bg-gray-50 leading-4",
|
|
9792
9793
|
key: idx,
|
|
9793
9794
|
textContent: toDisplayString(col.display)
|
|
9794
9795
|
}, null, 8, ["textContent"]);
|
|
@@ -9797,7 +9798,7 @@ function render$a(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
9797
9798
|
key: item.id ? item.id : rowIdx
|
|
9798
9799
|
}, [(openBlock(true), createBlock(Fragment, null, renderList(_ctx.tableData.columns, (col, colIdx) => {
|
|
9799
9800
|
return openBlock(), createBlock("td", {
|
|
9800
|
-
class: "px-6 py-4 text-sm text-gray-
|
|
9801
|
+
class: "px-6 py-4 text-sm text-gray-700 whitespace-nowrap leading-5",
|
|
9801
9802
|
key: rowIdx + '-' + colIdx
|
|
9802
9803
|
}, [col.component ? (openBlock(), createBlock(resolveDynamicComponent(col.component), {
|
|
9803
9804
|
key: 0,
|
|
@@ -9811,7 +9812,7 @@ function render$a(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
9811
9812
|
}), 128))]);
|
|
9812
9813
|
}), 128)), _ctx.tableData.items.length == 0 ? (openBlock(), createBlock("tr", _hoisted_7$2, [createVNode("td", {
|
|
9813
9814
|
colspan: _ctx.tableData.columns.length,
|
|
9814
|
-
class: "px-6 py-4 text-sm text-gray-
|
|
9815
|
+
class: "px-6 py-4 text-sm text-gray-700 whitespace-nowrap leading-5"
|
|
9815
9816
|
}, " No items were found! ", 8, ["colspan"])])) : createCommentVNode("", true)])])])])])]);
|
|
9816
9817
|
}
|
|
9817
9818
|
|
|
@@ -10207,7 +10208,7 @@ function render$8(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
10207
10208
|
"onUpdate:modelValue": [_cache[3] || (_cache[3] = $event => _ctx.dateRange = $event), _ctx.dateRangeChanged]
|
|
10208
10209
|
}, null, 8, ["modelValue", "onUpdate:modelValue"])])) : createCommentVNode("", true)]), createVNode("div", _hoisted_7, [createVNode("table", _hoisted_8, [createVNode("thead", null, [createVNode("tr", null, [(openBlock(true), createBlock(Fragment, null, renderList(_ctx.tableData.columns, (col, idx) => {
|
|
10209
10210
|
return openBlock(), createBlock("th", {
|
|
10210
|
-
class: "px-6 py-3 text-xs font-medium tracking-wider text-left text-gray-
|
|
10211
|
+
class: "px-6 py-3 text-xs font-medium tracking-wider text-left text-gray-900 uppercase border-b border-gray-200 bg-gray-50 leading-4",
|
|
10211
10212
|
key: idx
|
|
10212
10213
|
}, [!!col.display.length ? (openBlock(), createBlock("span", _hoisted_9, toDisplayString(col.display), 1)) : createCommentVNode("", true), col.sort ? (openBlock(), createBlock("span", {
|
|
10213
10214
|
key: 1,
|
|
@@ -10223,7 +10224,7 @@ function render$8(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
10223
10224
|
}
|
|
10224
10225
|
}, [(openBlock(true), createBlock(Fragment, null, renderList(_ctx.tableData.columns, (col, colIdx) => {
|
|
10225
10226
|
return openBlock(), createBlock("td", {
|
|
10226
|
-
class: ["px-6 py-4 text-sm text-gray-
|
|
10227
|
+
class: ["px-6 py-4 text-sm text-gray-700 whitespace-nowrap border-b border-gray-200 leading-5", col.class],
|
|
10227
10228
|
key: rowIdx + '-' + colIdx
|
|
10228
10229
|
}, [col.component ? (openBlock(), createBlock(resolveDynamicComponent(col.component), {
|
|
10229
10230
|
key: 0,
|
|
@@ -10238,7 +10239,7 @@ function render$8(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
10238
10239
|
}), 128))], 10, ["onClick"]);
|
|
10239
10240
|
}), 128)), !_ctx.hasContent ? (openBlock(), createBlock("tr", _hoisted_17, [createVNode("td", {
|
|
10240
10241
|
colspan: _ctx.tableData.columns.length,
|
|
10241
|
-
class: "px-6 py-4 text-sm text-gray-
|
|
10242
|
+
class: "px-6 py-4 text-sm text-gray-700 whitespace-nowrap border-b border-gray-200 leading-5"
|
|
10242
10243
|
}, " No items were found! ", 8, ["colspan"])])) : createCommentVNode("", true)])])]), _ctx.hasContent ? (openBlock(), createBlock(_component_Paginator, {
|
|
10243
10244
|
key: 0,
|
|
10244
10245
|
modelValue: _ctx.pagination,
|
|
@@ -10279,23 +10280,23 @@ let Tabs = (_dec$7 = Options({
|
|
|
10279
10280
|
let c = "";
|
|
10280
10281
|
|
|
10281
10282
|
if (this.pillDesign) {
|
|
10282
|
-
c = "px-12 py-2 font-
|
|
10283
|
+
c = "px-12 py-2 font-semibold text-md leading-5 rounded-t-md focus:outline-none ";
|
|
10283
10284
|
|
|
10284
10285
|
if (this.modelValue === currentTab) {
|
|
10285
10286
|
c = c + "focus:bg-white text-gray-700 bg-white border-b-2 border-blue-500";
|
|
10286
10287
|
} else {
|
|
10287
|
-
c = c + "text-gray-
|
|
10288
|
+
c = c + "text-gray-700 hover:text-gray-900 focus:text-gray-900 focus:bg-gray-100 border border-gray-200";
|
|
10288
10289
|
}
|
|
10289
10290
|
|
|
10290
10291
|
return c;
|
|
10291
10292
|
}
|
|
10292
10293
|
|
|
10293
|
-
c = "px-1 py-4 text-sm font-
|
|
10294
|
+
c = "px-1 py-4 text-sm font-semibold border-b-2 whitespace-nowrap leading-5 focus:outline-none ";
|
|
10294
10295
|
|
|
10295
10296
|
if (this.modelValue === currentTab) {
|
|
10296
10297
|
c = c + "border-blue-500 text-xy-blue focus:text-blue-800 focus:border-blue-700";
|
|
10297
10298
|
} else {
|
|
10298
|
-
c = c + "border-transparent text-gray-
|
|
10299
|
+
c = c + "border-transparent text-gray-700 hover:text-gray-900 hover:border-gray-300 focus:text-gray-900 focus:border-gray-300";
|
|
10299
10300
|
}
|
|
10300
10301
|
|
|
10301
10302
|
if (pastFirstTab) c = c + " ml-8";
|
|
@@ -10456,13 +10457,13 @@ const _hoisted_2$3 = {
|
|
|
10456
10457
|
class: "h-5 flex items-center"
|
|
10457
10458
|
};
|
|
10458
10459
|
const _hoisted_3$1 = {
|
|
10459
|
-
class: "ml-3 text-sm leading-
|
|
10460
|
+
class: "ml-3 text-sm font-semibold leading-snug text-gray-900"
|
|
10460
10461
|
};
|
|
10461
10462
|
function render$5(_ctx, _cache, $props, $setup, $data, $options) {
|
|
10462
10463
|
return openBlock(), createBlock("div", _hoisted_1$3, [createVNode("div", _hoisted_2$3, [createVNode("input", mergeProps({
|
|
10463
10464
|
"aria-labelledby": _ctx.label ? `${_ctx.uuid}-label` : undefined,
|
|
10464
10465
|
checked: _ctx.modelValue,
|
|
10465
|
-
class: "focus:ring-blue-500 h-4 w-4 text-
|
|
10466
|
+
class: "focus:ring-blue-500 h-4 w-4 text-blue-500 border-gray-600 rounded disabled:opacity-50 disabled:cursor-not-allowed",
|
|
10466
10467
|
id: _ctx.uuid,
|
|
10467
10468
|
type: "checkbox"
|
|
10468
10469
|
}, { ..._ctx.$attrs,
|
|
@@ -10472,11 +10473,8 @@ function render$5(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
10472
10473
|
}), null, 16, ["aria-labelledby", "checked", "id"])]), createVNode("div", _hoisted_3$1, [createVNode("label", {
|
|
10473
10474
|
id: `${_ctx.uuid}-label`,
|
|
10474
10475
|
for: _ctx.uuid,
|
|
10475
|
-
class: {
|
|
10476
|
-
'font-semibold': _ctx.emphasis
|
|
10477
|
-
},
|
|
10478
10476
|
textContent: toDisplayString(_ctx.label)
|
|
10479
|
-
}, null,
|
|
10477
|
+
}, null, 8, ["id", "for", "textContent"])])]);
|
|
10480
10478
|
}
|
|
10481
10479
|
|
|
10482
10480
|
Checkbox.render = render$5;
|
|
@@ -10543,7 +10541,7 @@ const _hoisted_2$2 = {
|
|
|
10543
10541
|
class: "flex items-center h-5"
|
|
10544
10542
|
};
|
|
10545
10543
|
const _hoisted_3 = {
|
|
10546
|
-
class: "ml-3 text-sm leading-
|
|
10544
|
+
class: "ml-3 text-sm font-semibold leading-snug text-gray-900"
|
|
10547
10545
|
};
|
|
10548
10546
|
function render$4(_ctx, _cache, $props, $setup, $data, $options) {
|
|
10549
10547
|
const _component_InputLabel = resolveComponent("InputLabel");
|
|
@@ -10558,7 +10556,7 @@ function render$4(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
10558
10556
|
key: option.value
|
|
10559
10557
|
}, [createVNode("div", _hoisted_1$2, [createVNode("div", _hoisted_2$2, [withDirectives(createVNode("input", mergeProps({
|
|
10560
10558
|
type: "checkbox",
|
|
10561
|
-
class: "focus:ring-blue-500 h-4 w-4 text-xy-blue border-gray-
|
|
10559
|
+
class: "focus:ring-blue-500 h-4 w-4 text-xy-blue border-gray-600 rounded disabled:opacity-50 disabled:cursor-not-allowed",
|
|
10562
10560
|
id: `${_ctx.uuid}-${index}`,
|
|
10563
10561
|
value: option.value,
|
|
10564
10562
|
"onUpdate:modelValue": _cache[1] || (_cache[1] = $event => _ctx.model = $event)
|
|
@@ -10620,7 +10618,7 @@ const _hoisted_1$1 = {
|
|
|
10620
10618
|
class: "mt-1 space-y-2"
|
|
10621
10619
|
};
|
|
10622
10620
|
const _hoisted_2$1 = {
|
|
10623
|
-
class: "block ml-2 text-sm font-
|
|
10621
|
+
class: "block ml-2 text-sm font-semibold text-gray-900"
|
|
10624
10622
|
};
|
|
10625
10623
|
function render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
10626
10624
|
const _component_InputLabel = resolveComponent("InputLabel");
|
|
@@ -10639,7 +10637,7 @@ function render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
10639
10637
|
for: `${_ctx.uuid}-${index}`
|
|
10640
10638
|
}, [createVNode("input", mergeProps({
|
|
10641
10639
|
checked: _ctx.modelValue === option.value,
|
|
10642
|
-
class: "w-4 h-4 border-gray-
|
|
10640
|
+
class: "w-4 h-4 border-gray-600 focus:ring-blue-500 text-xy-blue",
|
|
10643
10641
|
id: `${_ctx.uuid}-${index}`,
|
|
10644
10642
|
name: _ctx.uuid,
|
|
10645
10643
|
type: "radio",
|
|
@@ -10678,7 +10676,7 @@ let Select = (_dec$2 = Options({
|
|
|
10678
10676
|
required: false,
|
|
10679
10677
|
default: "Select an option"
|
|
10680
10678
|
}), _dec7 = Prop({
|
|
10681
|
-
type: String,
|
|
10679
|
+
type: [String, Number],
|
|
10682
10680
|
required: true
|
|
10683
10681
|
}), _dec$2(_class$2 = (_class2$2 = class Select extends Vue {
|
|
10684
10682
|
constructor(...args) {
|
|
@@ -10702,9 +10700,9 @@ let Select = (_dec$2 = Options({
|
|
|
10702
10700
|
get classes() {
|
|
10703
10701
|
const design = this.design ? this.design : "undefined";
|
|
10704
10702
|
return {
|
|
10705
|
-
undefined: "mt-1 block w-full border border-gray-
|
|
10706
|
-
standard: "mt-1 block w-full border border-gray-
|
|
10707
|
-
compressed: "appearance-none rounded-none relative block w-full px-3 py-2 border border-gray-
|
|
10703
|
+
undefined: "mt-1 block w-full border border-gray-600 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-blue-500 focus:border-blue-500 sm:text-sm",
|
|
10704
|
+
standard: "mt-1 block w-full border border-gray-600 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-blue-500 focus:border-blue-500 sm:text-sm",
|
|
10705
|
+
compressed: "appearance-none rounded-none relative block w-full px-3 py-2 border border-gray-600 text-gray-900 focus:outline-none focus:ring-blue-500 focus:border-blue-500 focus:z-10 sm:text-sm"
|
|
10708
10706
|
}[design];
|
|
10709
10707
|
}
|
|
10710
10708
|
|
|
@@ -10838,7 +10836,7 @@ function render$1(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
10838
10836
|
}, null, 8, ["id", "for", "label"]), createVNode("textarea", mergeProps({
|
|
10839
10837
|
"aria-labelledby": _ctx.label ? `${_ctx.uuid}-label` : undefined,
|
|
10840
10838
|
"aria-describedby": _ctx.help ? `${_ctx.uuid}-help` : undefined,
|
|
10841
|
-
class: ['mt-1', 'sm:text-sm', 'block', 'shadow-sm', 'focus:ring-blue-500', 'focus:border-blue-500', 'border-gray-
|
|
10839
|
+
class: ['mt-1', 'sm:text-sm', 'block', 'shadow-sm', 'focus:ring-blue-500', 'focus:border-blue-500', 'border-gray-600', 'rounded-md', 'w-full'],
|
|
10842
10840
|
id: _ctx.uuid,
|
|
10843
10841
|
value: _ctx.modelValue,
|
|
10844
10842
|
onInput: _cache[1] || (_cache[1] = $event => _ctx.$emit('update:modelValue', $event.target.value))
|
|
@@ -10901,11 +10899,11 @@ let YesOrNoRadio = (_dec = Options({
|
|
|
10901
10899
|
})), _class2)) || _class);
|
|
10902
10900
|
|
|
10903
10901
|
const _hoisted_1 = /*#__PURE__*/createVNode("span", {
|
|
10904
|
-
class: "block ml-2 text-sm font-
|
|
10902
|
+
class: "block ml-2 text-sm font-semibold text-gray-900"
|
|
10905
10903
|
}, "Yes", -1);
|
|
10906
10904
|
|
|
10907
10905
|
const _hoisted_2 = /*#__PURE__*/createVNode("span", {
|
|
10908
|
-
class: "block ml-2 text-sm font-
|
|
10906
|
+
class: "block ml-2 text-sm font-semibold text-gray-900"
|
|
10909
10907
|
}, "No", -1);
|
|
10910
10908
|
|
|
10911
10909
|
function render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
@@ -10922,7 +10920,7 @@ function render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
10922
10920
|
for: `${_ctx.hasNameAttr ? _ctx.name : _ctx.uuid}-true`
|
|
10923
10921
|
}, [createVNode("input", mergeProps({
|
|
10924
10922
|
type: "radio",
|
|
10925
|
-
class: "w-4 h-4 border-gray-
|
|
10923
|
+
class: "w-4 h-4 border-gray-600 focus:ring-blue-500 text-xy-blue",
|
|
10926
10924
|
id: `${_ctx.hasNameAttr ? _ctx.name : _ctx.uuid}-true`,
|
|
10927
10925
|
name: _ctx.hasNameAttr ? _ctx.name : _ctx.uuid,
|
|
10928
10926
|
value: true,
|
|
@@ -10938,7 +10936,7 @@ function render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
10938
10936
|
for: `${_ctx.hasNameAttr ? _ctx.name : _ctx.uuid}-false`
|
|
10939
10937
|
}, [createVNode("input", mergeProps({
|
|
10940
10938
|
type: "radio",
|
|
10941
|
-
class: "w-4 h-4 border-gray-
|
|
10939
|
+
class: "w-4 h-4 border-gray-600 focus:ring-blue-500 text-xy-blue",
|
|
10942
10940
|
id: `${_ctx.hasNameAttr ? _ctx.name : _ctx.uuid}-false`,
|
|
10943
10941
|
name: _ctx.hasNameAttr ? _ctx.name : _ctx.uuid,
|
|
10944
10942
|
value: false,
|