@quidgest/ui 0.5.0 → 0.5.1
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/dist/index.d.ts +0 -2
- package/dist/ui.esm.js +5 -8
- package/dist/ui.esm.js.map +1 -1
- package/dist/ui.js +1 -1
- package/dist/ui.js.map +1 -1
- package/dist/ui.min.js +4 -6
- package/dist/ui.min.js.map +1 -1
- package/dist/ui.scss +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { AllowedComponentProps } from 'vue';
|
|
2
|
-
import type { Component } from 'vue';
|
|
3
2
|
import { ComponentCustomProps } from 'vue';
|
|
4
3
|
import { ComponentOptionsMixin } from 'vue';
|
|
5
4
|
import { ComponentPublicInstance } from 'vue';
|
|
@@ -423,7 +422,6 @@ declare type Defaults = Record<string | symbol, ComponentDefaults>;
|
|
|
423
422
|
declare function focusItem(itemIdx: number): void;
|
|
424
423
|
|
|
425
424
|
declare type FrameworkConfig = {
|
|
426
|
-
components?: Record<string, Component>;
|
|
427
425
|
directives?: Record<string, Directive>;
|
|
428
426
|
themes?: AppThemes;
|
|
429
427
|
defaults?: Defaults;
|
package/dist/ui.esm.js
CHANGED
|
@@ -240,14 +240,11 @@ function ue(t) {
|
|
|
240
240
|
}
|
|
241
241
|
function Tt(t = {}) {
|
|
242
242
|
return { install: (e) => {
|
|
243
|
-
const o = t.
|
|
244
|
-
for (const
|
|
245
|
-
e.
|
|
246
|
-
const a = t.
|
|
247
|
-
|
|
248
|
-
e.directive(l, a[l]);
|
|
249
|
-
const s = t.defaults || {};
|
|
250
|
-
e.provide(te, s), Ne(e, t.themes);
|
|
243
|
+
const o = t.directives || {};
|
|
244
|
+
for (const s in o)
|
|
245
|
+
e.directive(s, o[s]);
|
|
246
|
+
const a = t.defaults || {};
|
|
247
|
+
e.provide(te, a), Ne(e, t.themes);
|
|
251
248
|
} };
|
|
252
249
|
}
|
|
253
250
|
const We = /* @__PURE__ */ X("svg", { viewBox: "25 25 50 50" }, [
|