@typlog/ui 0.13.0 → 0.14.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 +4 -4
- package/base.css +0 -171
- package/components.css +782 -1
- package/components.d.ts +526 -52
- package/components.js +1152 -177
- package/package.json +1 -1
- package/tailwind.css +33 -0
package/addons.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { defineComponent, computed,
|
|
2
|
-
import { Primitive, injectDialogRootContext } from "reka-ui";
|
|
1
|
+
import { defineComponent, computed, openBlock, createBlock, unref, normalizeClass, withCtx, createCommentVNode, renderSlot, createElementBlock, createElementVNode, toDisplayString, Fragment, renderList, createVNode, ref, onMounted, withDirectives, withKeys, mergeProps, withModifiers, vShow, createTextVNode, normalizeStyle, useTemplateRef, onBeforeUnmount } from "vue";
|
|
3
2
|
import { Icon } from "@iconify/vue";
|
|
3
|
+
import { Primitive, injectDialogRootContext } from "reka-ui";
|
|
4
4
|
import { buildPropsClass, TextField, Button, Tooltip, Pagination } from "./components";
|
|
5
5
|
const BRAND_ICONS = {
|
|
6
6
|
google: "logos:google-icon",
|
|
@@ -386,7 +386,7 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
|
|
|
386
386
|
page: page.value,
|
|
387
387
|
"onUpdate:page": _cache[4] || (_cache[4] = ($event) => page.value = $event),
|
|
388
388
|
total: allIcons.value.length,
|
|
389
|
-
"items-per-page":
|
|
389
|
+
"items-per-page": __props.perpage
|
|
390
390
|
}, null, 8, ["page", "total", "items-per-page"])
|
|
391
391
|
])) : createCommentVNode("", true)
|
|
392
392
|
]);
|
|
@@ -480,7 +480,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
480
480
|
return openBlock(), createElementBlock("div", {
|
|
481
481
|
ref_key: "element",
|
|
482
482
|
ref: element,
|
|
483
|
-
class: normalizeClass(["ui-Turnstile", `r-size-${
|
|
483
|
+
class: normalizeClass(["ui-Turnstile", `r-size-${__props.size}`])
|
|
484
484
|
}, null, 2);
|
|
485
485
|
};
|
|
486
486
|
}
|