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