@typlog/ui 0.12.2 → 0.13.0
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/addons.js +5 -7
- package/components.css +585 -333
- package/components.d.ts +209 -104
- package/components.js +728 -437
- package/index.css +2 -0
- package/package.json +5 -4
- package/components/badge.css +0 -86
- package/components/card.css +0 -31
- package/components/checkbox.css +0 -90
- package/components/dialog.css +0 -159
- package/components/dropdown.css +0 -255
- package/components/editable.css +0 -34
- package/components/inputs.css +0 -570
- package/components/pagination.css +0 -279
- package/components/popover.css +0 -58
- package/components/quota.css +0 -14
- package/components/radio.css +0 -264
- package/components/scrollarea.css +0 -107
- package/components/separator.css +0 -26
- package/components/switch.css +0 -176
- package/components/table.css +0 -198
- package/components/tabs.css +0 -201
- package/components/toggle.css +0 -217
- package/components/tooltip.css +0 -45
- package/tailwind/colors.css +0 -1091
- package/tailwind/index.css +0 -3
- package/tailwind/shadow.css +0 -8
- package/tailwind/space.css +0 -11
package/addons.js
CHANGED
|
@@ -324,11 +324,10 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
|
|
|
324
324
|
color: "gray",
|
|
325
325
|
onClick: withModifiers(reset, ["prevent"])
|
|
326
326
|
}, {
|
|
327
|
-
default: withCtx(() => _cache[5] || (_cache[5] = [
|
|
327
|
+
default: withCtx(() => [..._cache[5] || (_cache[5] = [
|
|
328
328
|
createTextVNode(" Back ", -1)
|
|
329
|
-
])),
|
|
330
|
-
_: 1
|
|
331
|
-
__: [5]
|
|
329
|
+
])]),
|
|
330
|
+
_: 1
|
|
332
331
|
}),
|
|
333
332
|
shouldDisplay.value === "search" ? (openBlock(), createBlock(unref(TextField), {
|
|
334
333
|
key: 0,
|
|
@@ -387,9 +386,8 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
|
|
|
387
386
|
page: page.value,
|
|
388
387
|
"onUpdate:page": _cache[4] || (_cache[4] = ($event) => page.value = $event),
|
|
389
388
|
total: allIcons.value.length,
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
}, null, 8, ["page", "total", "perpage"])
|
|
389
|
+
"items-per-page": _ctx.perpage
|
|
390
|
+
}, null, 8, ["page", "total", "items-per-page"])
|
|
393
391
|
])) : createCommentVNode("", true)
|
|
394
392
|
]);
|
|
395
393
|
};
|