@mulmoclaude/collection-plugin 0.11.4 → 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/dist/style.css +39 -0
- package/dist/vue/collectionViewMode.d.ts +11 -0
- package/dist/vue/collectionViewMode.d.ts.map +1 -1
- package/dist/vue/components/CollectionKanbanView.vue.d.ts +3 -0
- package/dist/vue/components/CollectionKanbanView.vue.d.ts.map +1 -1
- package/dist/vue/components/CollectionRecordPanel.vue.d.ts +3 -0
- package/dist/vue/components/CollectionRecordPanel.vue.d.ts.map +1 -1
- package/dist/vue/components/CollectionView.vue.d.ts.map +1 -1
- package/dist/vue/components/CollectionsIndexView.vue.d.ts.map +1 -1
- package/dist/vue/index.d.ts +1 -1
- package/dist/vue/index.d.ts.map +1 -1
- package/dist/vue/lang/de.d.ts.map +1 -1
- package/dist/vue/lang/en.d.ts +12 -0
- package/dist/vue/lang/en.d.ts.map +1 -1
- package/dist/vue/lang/es.d.ts.map +1 -1
- package/dist/vue/lang/fr.d.ts.map +1 -1
- package/dist/vue/lang/index.d.ts +12 -0
- package/dist/vue/lang/index.d.ts.map +1 -1
- package/dist/vue/lang/ja.d.ts.map +1 -1
- package/dist/vue/lang/ko.d.ts.map +1 -1
- package/dist/vue/lang/ptBR.d.ts.map +1 -1
- package/dist/vue/lang/zh.d.ts.map +1 -1
- package/dist/vue.cjs +620 -295
- package/dist/vue.cjs.map +1 -1
- package/dist/vue.js +620 -297
- package/dist/vue.js.map +1 -1
- package/package.json +3 -3
package/dist/style.css
CHANGED
|
@@ -163,6 +163,7 @@
|
|
|
163
163
|
--font-weight-medium: 500;
|
|
164
164
|
--font-weight-semibold: 600;
|
|
165
165
|
--font-weight-bold: 700;
|
|
166
|
+
--tracking-normal: 0em;
|
|
166
167
|
--tracking-wide: .025em;
|
|
167
168
|
--tracking-wider: .05em;
|
|
168
169
|
--leading-tight: 1.25;
|
|
@@ -636,6 +637,14 @@
|
|
|
636
637
|
margin-bottom: calc(var(--spacing) * 6);
|
|
637
638
|
}
|
|
638
639
|
|
|
640
|
+
.ml-1 {
|
|
641
|
+
margin-left: var(--spacing);
|
|
642
|
+
}
|
|
643
|
+
|
|
644
|
+
.ml-1\.5 {
|
|
645
|
+
margin-left: calc(var(--spacing) * 1.5);
|
|
646
|
+
}
|
|
647
|
+
|
|
639
648
|
.line-clamp-2 {
|
|
640
649
|
-webkit-line-clamp: 2;
|
|
641
650
|
-webkit-box-orient: vertical;
|
|
@@ -1293,6 +1302,10 @@
|
|
|
1293
1302
|
border-left-color: var(--color-slate-400);
|
|
1294
1303
|
}
|
|
1295
1304
|
|
|
1305
|
+
.bg-amber-50 {
|
|
1306
|
+
background-color: var(--color-amber-50);
|
|
1307
|
+
}
|
|
1308
|
+
|
|
1296
1309
|
.bg-amber-50\/60 {
|
|
1297
1310
|
background-color: #fffbeb99;
|
|
1298
1311
|
}
|
|
@@ -1433,6 +1446,10 @@
|
|
|
1433
1446
|
background-color: var(--color-slate-100);
|
|
1434
1447
|
}
|
|
1435
1448
|
|
|
1449
|
+
.bg-slate-600 {
|
|
1450
|
+
background-color: var(--color-slate-600);
|
|
1451
|
+
}
|
|
1452
|
+
|
|
1436
1453
|
.bg-slate-900\/40 {
|
|
1437
1454
|
background-color: #0f172b66;
|
|
1438
1455
|
}
|
|
@@ -1616,6 +1633,10 @@
|
|
|
1616
1633
|
padding-block: calc(var(--spacing) * 20);
|
|
1617
1634
|
}
|
|
1618
1635
|
|
|
1636
|
+
.py-px {
|
|
1637
|
+
padding-block: 1px;
|
|
1638
|
+
}
|
|
1639
|
+
|
|
1619
1640
|
.pt-1 {
|
|
1620
1641
|
padding-top: var(--spacing);
|
|
1621
1642
|
}
|
|
@@ -1782,6 +1803,11 @@
|
|
|
1782
1803
|
font-weight: var(--font-weight-semibold);
|
|
1783
1804
|
}
|
|
1784
1805
|
|
|
1806
|
+
.tracking-normal {
|
|
1807
|
+
--tw-tracking: var(--tracking-normal);
|
|
1808
|
+
letter-spacing: var(--tracking-normal);
|
|
1809
|
+
}
|
|
1810
|
+
|
|
1785
1811
|
.tracking-wide {
|
|
1786
1812
|
--tw-tracking: var(--tracking-wide);
|
|
1787
1813
|
letter-spacing: var(--tracking-wide);
|
|
@@ -1938,6 +1964,10 @@
|
|
|
1938
1964
|
text-transform: lowercase;
|
|
1939
1965
|
}
|
|
1940
1966
|
|
|
1967
|
+
.normal-case {
|
|
1968
|
+
text-transform: none;
|
|
1969
|
+
}
|
|
1970
|
+
|
|
1941
1971
|
.uppercase {
|
|
1942
1972
|
text-transform: uppercase;
|
|
1943
1973
|
}
|
|
@@ -1959,6 +1989,11 @@
|
|
|
1959
1989
|
opacity: .7;
|
|
1960
1990
|
}
|
|
1961
1991
|
|
|
1992
|
+
.shadow {
|
|
1993
|
+
--tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, #0000001a), 0 1px 2px -1px var(--tw-shadow-color, #0000001a);
|
|
1994
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1995
|
+
}
|
|
1996
|
+
|
|
1962
1997
|
.shadow-2xl {
|
|
1963
1998
|
--tw-shadow: 0 25px 50px -12px var(--tw-shadow-color, #00000040);
|
|
1964
1999
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
@@ -2211,6 +2246,10 @@
|
|
|
2211
2246
|
color: var(--color-indigo-600);
|
|
2212
2247
|
}
|
|
2213
2248
|
|
|
2249
|
+
.hover\:text-indigo-700:hover {
|
|
2250
|
+
color: var(--color-indigo-700);
|
|
2251
|
+
}
|
|
2252
|
+
|
|
2214
2253
|
.hover\:text-indigo-800:hover {
|
|
2215
2254
|
color: var(--color-indigo-800);
|
|
2216
2255
|
}
|
|
@@ -18,4 +18,15 @@ export declare function writeCollectionViewMode(slug: string, view: CollectionVi
|
|
|
18
18
|
export declare function readCollectionSort(slug: string): SortState | null;
|
|
19
19
|
/** Persist (or, when `sort` is null, clear) the slug's active column sort. */
|
|
20
20
|
export declare function writeCollectionSort(slug: string, sort: SortState | null): void;
|
|
21
|
+
/** One chip's active filter mode: `hide` drops matching rows, `only`
|
|
22
|
+
* keeps just them. A chip with no entry shows all rows. */
|
|
23
|
+
export type FlagFilterMode = "hide" | "only";
|
|
24
|
+
/** Chip key (flag field name, or the synthesized completion key) → mode. */
|
|
25
|
+
export type FlagFilterState = Record<string, FlagFilterMode>;
|
|
26
|
+
/** The slug's persisted chip states ({} when none). A key whose flag no
|
|
27
|
+
* longer exists in the schema is harmless — the chip list is derived
|
|
28
|
+
* from the live schema, so a stale entry just never renders/filters. */
|
|
29
|
+
export declare function readCollectionFlagFilters(slug: string): FlagFilterState;
|
|
30
|
+
/** Persist the slug's chip states; an empty state clears the entry. */
|
|
31
|
+
export declare function writeCollectionFlagFilters(slug: string, filters: FlagFilterState): void;
|
|
21
32
|
//# sourceMappingURL=collectionViewMode.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"collectionViewMode.d.ts","sourceRoot":"","sources":["../../src/vue/collectionViewMode.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAE,SAAS,EAAE,gBAAgB,EAAE,MAAM,8BAA8B,CAAC;AAEhF,qDAAqD;AACrD,MAAM,MAAM,eAAe,GAAG,OAAO,GAAG,UAAU,GAAG,QAAQ,CAAC;AAC9D,sEAAsE;AACtE,MAAM,MAAM,cAAc,GAAG,UAAU,MAAM,EAAE,CAAC;AAChD,MAAM,MAAM,kBAAkB,GAAG,eAAe,GAAG,cAAc,CAAC;AAElE,8DAA8D;AAC9D,wBAAgB,aAAa,CAAC,MAAM,EAAE,MAAM,GAAG,cAAc,CAE5D;AAED;;;;;yEAKyE;AACzE,wBAAgB,mBAAmB,CAAC,MAAM,EAAE,gBAAgB,GAAG,kBAAkB,EAAE,CAOlF;AA+BD,wBAAgB,sBAAsB,CAAC,IAAI,EAAE,MAAM,GAAG,kBAAkB,GAAG,IAAI,CAG9E;AAED,wBAAgB,uBAAuB,CAAC,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,kBAAkB,GAAG,IAAI,CASpF;AA+BD,wBAAgB,kBAAkB,CAAC,IAAI,EAAE,MAAM,GAAG,SAAS,GAAG,IAAI,CAEjE;AAED,8EAA8E;AAC9E,wBAAgB,mBAAmB,CAAC,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,SAAS,GAAG,IAAI,GAAG,IAAI,CAU9E"}
|
|
1
|
+
{"version":3,"file":"collectionViewMode.d.ts","sourceRoot":"","sources":["../../src/vue/collectionViewMode.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAE,SAAS,EAAE,gBAAgB,EAAE,MAAM,8BAA8B,CAAC;AAEhF,qDAAqD;AACrD,MAAM,MAAM,eAAe,GAAG,OAAO,GAAG,UAAU,GAAG,QAAQ,CAAC;AAC9D,sEAAsE;AACtE,MAAM,MAAM,cAAc,GAAG,UAAU,MAAM,EAAE,CAAC;AAChD,MAAM,MAAM,kBAAkB,GAAG,eAAe,GAAG,cAAc,CAAC;AAElE,8DAA8D;AAC9D,wBAAgB,aAAa,CAAC,MAAM,EAAE,MAAM,GAAG,cAAc,CAE5D;AAED;;;;;yEAKyE;AACzE,wBAAgB,mBAAmB,CAAC,MAAM,EAAE,gBAAgB,GAAG,kBAAkB,EAAE,CAOlF;AA+BD,wBAAgB,sBAAsB,CAAC,IAAI,EAAE,MAAM,GAAG,kBAAkB,GAAG,IAAI,CAG9E;AAED,wBAAgB,uBAAuB,CAAC,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,kBAAkB,GAAG,IAAI,CASpF;AA+BD,wBAAgB,kBAAkB,CAAC,IAAI,EAAE,MAAM,GAAG,SAAS,GAAG,IAAI,CAEjE;AAED,8EAA8E;AAC9E,wBAAgB,mBAAmB,CAAC,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,SAAS,GAAG,IAAI,GAAG,IAAI,CAU9E;AAID;4DAC4D;AAC5D,MAAM,MAAM,cAAc,GAAG,MAAM,GAAG,MAAM,CAAC;AAC7C,4EAA4E;AAC5E,MAAM,MAAM,eAAe,GAAG,MAAM,CAAC,MAAM,EAAE,cAAc,CAAC,CAAC;AAyB7D;;yEAEyE;AACzE,wBAAgB,yBAAyB,CAAC,IAAI,EAAE,MAAM,GAAG,eAAe,CAEvE;AAED,uEAAuE;AACvE,wBAAgB,0BAA0B,CAAC,IAAI,EAAE,MAAM,EAAE,OAAO,EAAE,eAAe,GAAG,IAAI,CAQvF"}
|
|
@@ -9,6 +9,9 @@ type __VLS_Props = {
|
|
|
9
9
|
/** Primary-key → active-notification severity. Cards with a notification get
|
|
10
10
|
* a left accent in the matching bell colour (urgent red / nudge amber). */
|
|
11
11
|
notified?: Map<string, NotifierSeverity>;
|
|
12
|
+
/** Read-only (dataSource) collection: dragging and the card toggle are
|
|
13
|
+
* off — a move writes the group field, and there is nothing to write. */
|
|
14
|
+
readonly?: boolean;
|
|
12
15
|
};
|
|
13
16
|
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
14
17
|
select: (id: string | null) => any;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CollectionKanbanView.vue.d.ts","sourceRoot":"","sources":["../../../src/vue/components/CollectionKanbanView.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"CollectionKanbanView.vue.d.ts","sourceRoot":"","sources":["../../../src/vue/components/CollectionKanbanView.vue"],"names":[],"mappings":"AAwOA,OAAO,KAAK,EAAE,wBAAwB,IAAI,gBAAgB,EAAE,cAAc,EAAE,gBAAgB,EAAE,MAAM,8BAA8B,CAAC;AAYnI,KAAK,WAAW,GAAG;IACjB,MAAM,EAAE,gBAAgB,CAAC;IACzB,gEAAgE;IAChE,UAAU,EAAE,MAAM,CAAC;IACnB,KAAK,EAAE,cAAc,EAAE,CAAC;IACxB,mEAAmE;IACnE,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB;gFAC4E;IAC5E,QAAQ,CAAC,EAAE,GAAG,CAAC,MAAM,EAAE,gBAAgB,CAAC,CAAC;IACzC;8EAC0E;IAC1E,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB,CAAC;AA0VF,QAAA,MAAM,YAAY;;;;;;kFAGhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -18,6 +18,9 @@ type __VLS_Props = {
|
|
|
18
18
|
liveDerived: CollectionItem | null;
|
|
19
19
|
viewTitle: string;
|
|
20
20
|
isSingleton: boolean;
|
|
21
|
+
/** Read-only (dataSource) collection: hide the Edit/Delete buttons —
|
|
22
|
+
* the record can only change by editing the external data file. */
|
|
23
|
+
readonly?: boolean;
|
|
21
24
|
/** Shared rendering/derivation helpers + ref/embed caches. */
|
|
22
25
|
render: CollectionRendering;
|
|
23
26
|
locale: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CollectionRecordPanel.vue.d.ts","sourceRoot":"","sources":["../../../src/vue/components/CollectionRecordPanel.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"CollectionRecordPanel.vue.d.ts","sourceRoot":"","sources":["../../../src/vue/components/CollectionRecordPanel.vue"],"names":[],"mappings":"AAsvBA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,2BAA2B,CAAC;AACrE,OAAO,KAAK,EACV,gBAAgB,EAChB,gBAAgB,EAChB,cAAc,EAEd,SAAS,EAEV,MAAM,8BAA8B,CAAC;AAQtC,KAAK,WAAW,GAAG;IACjB,UAAU,EAAE,gBAAgB,CAAC;IAC7B,8CAA8C;IAC9C,OAAO,EAAE,cAAc,GAAG,IAAI,CAAC;IAC/B,MAAM,EAAE,OAAO,CAAC;IAChB,SAAS,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB,WAAW,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B,aAAa,EAAE,OAAO,CAAC;IACvB,cAAc,EAAE,gBAAgB,EAAE,CAAC;IACnC;mEAC+D;IAC/D,gBAAgB,EAAE,MAAM,EAAE,CAAC;IAC3B,qEAAqE;IACrE,UAAU,EAAE,cAAc,GAAG,IAAI,CAAC;IAClC,gDAAgD;IAChD,WAAW,EAAE,cAAc,GAAG,IAAI,CAAC;IACnC,SAAS,EAAE,MAAM,CAAC;IAClB,WAAW,EAAE,OAAO,CAAC;IACrB;wEACoE;IACpE,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,8DAA8D;IAC9D,MAAM,EAAE,mBAAmB,CAAC;IAC5B,MAAM,EAAE,MAAM,CAAC;CAChB,CAAC;AAmKF,KAAK,gBAAgB,GAAG;IACxB,SAAS,EAAE,SAAS,GAAG,IAAI,CAAC;CAC3B,CAAC;AAKF,KAAK,iBAAiB,GAAG,WAAW,GAAG,gBAAgB,CAAC;AA6hDxD,QAAA,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kFAGhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CollectionView.vue.d.ts","sourceRoot":"","sources":["../../../src/vue/components/CollectionView.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"CollectionView.vue.d.ts","sourceRoot":"","sources":["../../../src/vue/components/CollectionView.vue"],"names":[],"mappings":"AAoqFA,OAAO,EAQL,KAAK,kBAAkB,EACvB,KAAK,eAAe,EAGrB,MAAM,uBAAuB,CAAC;AAyC/B;;;;;;;;;6CAS6C;AAC7C,KAAK,WAAW,GAAG;IACjB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,eAAe,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE,MAAM,KAAK,IAAI,CAAC;IAC1C;;;;;uBAKmB;IACnB,WAAW,CAAC,EAAE,kBAAkB,CAAC;IACjC,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B;;;4EAGwE;IACxE,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB;;;wDAGoD;IACpD,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB;4EACwE;IACxE,UAAU,CAAC,EAAE,OAAO,CAAC;CACtB,CAAC;AA6vIF,QAAA,MAAM,YAAY;;;cAlvIiB,eAAe;qBAAe,MAAM;oBAAc,MAAM;;;;;cAAxD,eAAe;qBAAe,MAAM;oBAAc,MAAM;;kFAqvIzF,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CollectionsIndexView.vue.d.ts","sourceRoot":"","sources":["../../../src/vue/components/CollectionsIndexView.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"CollectionsIndexView.vue.d.ts","sourceRoot":"","sources":["../../../src/vue/components/CollectionsIndexView.vue"],"names":[],"mappings":"AAi6BA,QAAA,MAAM,YAAY,+QAChB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
package/dist/vue/index.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ import ChatView from "./chat/View.vue";
|
|
|
5
5
|
import ChatPreview from "./chat/Preview.vue";
|
|
6
6
|
export { configureCollectionUi, collectionUi, type CollectionUi, type CollectionFetchResult, type CollectionApiResult, type CollectionMutationResult, type CollectionConfirmOptions, type CollectionViewToken, type CollectionViewHtmlResult, type CollectionViewI18nResult, type CollectionRemoteViewResult, type CollectionRemoteViewMutateResult, type CollectionRemoteViewItemsResult, type CollectionViewSrcdocBoot, type CollectionActionResult, type CollectionRefreshResult, type RegistryEntry, type RegistryListResponse, type RegistryImportResponse, } from "./uiContext";
|
|
7
7
|
export { useCollectionRendering, type CollectionRendering } from "./useCollectionRendering";
|
|
8
|
-
export { readCollectionViewMode, writeCollectionViewMode, readCollectionSort, writeCollectionSort, customViewKey, applicableViewModes, type CollectionViewMode, type BuiltInViewMode, type CustomViewMode, } from "./collectionViewMode";
|
|
8
|
+
export { readCollectionViewMode, writeCollectionViewMode, readCollectionSort, writeCollectionSort, readCollectionFlagFilters, writeCollectionFlagFilters, customViewKey, applicableViewModes, type CollectionViewMode, type BuiltInViewMode, type CustomViewMode, type FlagFilterMode, type FlagFilterState, } from "./collectionViewMode";
|
|
9
9
|
export { default as CollectionRecordModal } from "./components/CollectionRecordModal.vue";
|
|
10
10
|
export { default as CollectionEmbedView } from "./components/CollectionEmbedView.vue";
|
|
11
11
|
export { default as CollectionCalendarView } from "./components/CollectionCalendarView.vue";
|
package/dist/vue/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/vue/index.ts"],"names":[],"mappings":"AAcA,OAAO,cAAc,CAAC;AAEtB,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,uBAAuB,CAAC;AACxD,OAAO,EAA6C,KAAK,qBAAqB,EAAE,KAAK,qBAAqB,EAAE,MAAM,8BAA8B,CAAC;AACjJ,OAAO,QAAQ,MAAM,iBAAiB,CAAC;AACvC,OAAO,WAAW,MAAM,oBAAoB,CAAC;AAE7C,OAAO,EACL,qBAAqB,EACrB,YAAY,EACZ,KAAK,YAAY,EACjB,KAAK,qBAAqB,EAC1B,KAAK,mBAAmB,EACxB,KAAK,wBAAwB,EAC7B,KAAK,wBAAwB,EAC7B,KAAK,mBAAmB,EACxB,KAAK,wBAAwB,EAC7B,KAAK,wBAAwB,EAC7B,KAAK,0BAA0B,EAC/B,KAAK,gCAAgC,EACrC,KAAK,+BAA+B,EACpC,KAAK,wBAAwB,EAC7B,KAAK,sBAAsB,EAC3B,KAAK,uBAAuB,EAC5B,KAAK,aAAa,EAClB,KAAK,oBAAoB,EACzB,KAAK,sBAAsB,GAC5B,MAAM,aAAa,CAAC;AACrB,OAAO,EAAE,sBAAsB,EAAE,KAAK,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AAC5F,OAAO,EACL,sBAAsB,EACtB,uBAAuB,EACvB,kBAAkB,EAClB,mBAAmB,EACnB,aAAa,EACb,mBAAmB,EACnB,KAAK,kBAAkB,EACvB,KAAK,eAAe,EACpB,KAAK,cAAc,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/vue/index.ts"],"names":[],"mappings":"AAcA,OAAO,cAAc,CAAC;AAEtB,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,uBAAuB,CAAC;AACxD,OAAO,EAA6C,KAAK,qBAAqB,EAAE,KAAK,qBAAqB,EAAE,MAAM,8BAA8B,CAAC;AACjJ,OAAO,QAAQ,MAAM,iBAAiB,CAAC;AACvC,OAAO,WAAW,MAAM,oBAAoB,CAAC;AAE7C,OAAO,EACL,qBAAqB,EACrB,YAAY,EACZ,KAAK,YAAY,EACjB,KAAK,qBAAqB,EAC1B,KAAK,mBAAmB,EACxB,KAAK,wBAAwB,EAC7B,KAAK,wBAAwB,EAC7B,KAAK,mBAAmB,EACxB,KAAK,wBAAwB,EAC7B,KAAK,wBAAwB,EAC7B,KAAK,0BAA0B,EAC/B,KAAK,gCAAgC,EACrC,KAAK,+BAA+B,EACpC,KAAK,wBAAwB,EAC7B,KAAK,sBAAsB,EAC3B,KAAK,uBAAuB,EAC5B,KAAK,aAAa,EAClB,KAAK,oBAAoB,EACzB,KAAK,sBAAsB,GAC5B,MAAM,aAAa,CAAC;AACrB,OAAO,EAAE,sBAAsB,EAAE,KAAK,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AAC5F,OAAO,EACL,sBAAsB,EACtB,uBAAuB,EACvB,kBAAkB,EAClB,mBAAmB,EACnB,yBAAyB,EACzB,0BAA0B,EAC1B,aAAa,EACb,mBAAmB,EACnB,KAAK,kBAAkB,EACvB,KAAK,eAAe,EACpB,KAAK,cAAc,EACnB,KAAK,cAAc,EACnB,KAAK,eAAe,GACrB,MAAM,sBAAsB,CAAC;AAC9B,OAAO,EAAE,OAAO,IAAI,qBAAqB,EAAE,MAAM,wCAAwC,CAAC;AAC1F,OAAO,EAAE,OAAO,IAAI,mBAAmB,EAAE,MAAM,sCAAsC,CAAC;AACtF,OAAO,EAAE,OAAO,IAAI,sBAAsB,EAAE,MAAM,yCAAyC,CAAC;AAC5F,OAAO,EAAE,OAAO,IAAI,iBAAiB,EAAE,MAAM,oCAAoC,CAAC;AAClF,OAAO,EAAE,OAAO,IAAI,oBAAoB,EAAE,MAAM,uCAAuC,CAAC;AACxF,OAAO,EAAE,OAAO,IAAI,qBAAqB,EAAE,MAAM,wCAAwC,CAAC;AAC1F,OAAO,EAAE,OAAO,IAAI,yBAAyB,EAAE,MAAM,4CAA4C,CAAC;AAClG,OAAO,EAAE,OAAO,IAAI,oBAAoB,EAAE,MAAM,uCAAuC,CAAC;AACxF,OAAO,EAAE,OAAO,IAAI,cAAc,EAAE,MAAM,iCAAiC,CAAC;AAC5E,OAAO,EAAE,OAAO,IAAI,oBAAoB,EAAE,MAAM,uCAAuC,CAAC;AACxF,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,4BAA4B,CAAC;AAMlE,eAAO,MAAM,MAAM,EAAE,UAAU,CAAC,qBAAqB,EAAE,qBAAqB,EAAE,qBAAqB,CAOlG,CAAC;AAEF,OAAO,EAAE,QAAQ,IAAI,qBAAqB,EAAE,WAAW,IAAI,wBAAwB,EAAE,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"de.d.ts","sourceRoot":"","sources":["../../../src/vue/lang/de.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,MAAM,CAAC;AAE/C,QAAA,MAAM,UAAU,EAAE,
|
|
1
|
+
{"version":3,"file":"de.d.ts","sourceRoot":"","sources":["../../../src/vue/lang/de.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,MAAM,CAAC;AAE/C,QAAA,MAAM,UAAU,EAAE,kBAwJjB,CAAC;AAEF,eAAe,UAAU,CAAC"}
|
package/dist/vue/lang/en.d.ts
CHANGED
|
@@ -45,6 +45,13 @@ declare const enMessages: {
|
|
|
45
45
|
deleteCollection: string;
|
|
46
46
|
confirmDeleteCollection: string;
|
|
47
47
|
itemsEmpty: string;
|
|
48
|
+
readonlyChip: string;
|
|
49
|
+
itemsEmptyReadonly: string;
|
|
50
|
+
filter: {
|
|
51
|
+
all: string;
|
|
52
|
+
editable: string;
|
|
53
|
+
data: string;
|
|
54
|
+
};
|
|
48
55
|
notFound: string;
|
|
49
56
|
loadFailed: string;
|
|
50
57
|
requiredField: string;
|
|
@@ -60,6 +67,11 @@ declare const enMessages: {
|
|
|
60
67
|
searchSummary: string;
|
|
61
68
|
noMatchingItems: string;
|
|
62
69
|
clearSearch: string;
|
|
70
|
+
flagFilterGroup: string;
|
|
71
|
+
flagFilterAll: string;
|
|
72
|
+
flagFilterHide: string;
|
|
73
|
+
flagFilterOnly: string;
|
|
74
|
+
flagDoneChip: string;
|
|
63
75
|
sortBy: string;
|
|
64
76
|
openCollection: string;
|
|
65
77
|
createTitle: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"en.d.ts","sourceRoot":"","sources":["../../../src/vue/lang/en.ts"],"names":[],"mappings":"AAEA,QAAA,MAAM,UAAU
|
|
1
|
+
{"version":3,"file":"en.d.ts","sourceRoot":"","sources":["../../../src/vue/lang/en.ts"],"names":[],"mappings":"AAEA,QAAA,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAuJf,CAAC;AAEF,eAAe,UAAU,CAAC;AAE1B,MAAM,MAAM,kBAAkB,GAAG,OAAO,UAAU,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"es.d.ts","sourceRoot":"","sources":["../../../src/vue/lang/es.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,MAAM,CAAC;AAE/C,QAAA,MAAM,UAAU,EAAE,
|
|
1
|
+
{"version":3,"file":"es.d.ts","sourceRoot":"","sources":["../../../src/vue/lang/es.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,MAAM,CAAC;AAE/C,QAAA,MAAM,UAAU,EAAE,kBAwJjB,CAAC;AAEF,eAAe,UAAU,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fr.d.ts","sourceRoot":"","sources":["../../../src/vue/lang/fr.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,MAAM,CAAC;AAE/C,QAAA,MAAM,UAAU,EAAE,
|
|
1
|
+
{"version":3,"file":"fr.d.ts","sourceRoot":"","sources":["../../../src/vue/lang/fr.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,MAAM,CAAC;AAE/C,QAAA,MAAM,UAAU,EAAE,kBAyJjB,CAAC;AAEF,eAAe,UAAU,CAAC"}
|
package/dist/vue/lang/index.d.ts
CHANGED
|
@@ -46,6 +46,13 @@ declare const i18n: import("vue-i18n").I18n<{
|
|
|
46
46
|
deleteCollection: string;
|
|
47
47
|
confirmDeleteCollection: string;
|
|
48
48
|
itemsEmpty: string;
|
|
49
|
+
readonlyChip: string;
|
|
50
|
+
itemsEmptyReadonly: string;
|
|
51
|
+
filter: {
|
|
52
|
+
all: string;
|
|
53
|
+
editable: string;
|
|
54
|
+
data: string;
|
|
55
|
+
};
|
|
49
56
|
notFound: string;
|
|
50
57
|
loadFailed: string;
|
|
51
58
|
requiredField: string;
|
|
@@ -61,6 +68,11 @@ declare const i18n: import("vue-i18n").I18n<{
|
|
|
61
68
|
searchSummary: string;
|
|
62
69
|
noMatchingItems: string;
|
|
63
70
|
clearSearch: string;
|
|
71
|
+
flagFilterGroup: string;
|
|
72
|
+
flagFilterAll: string;
|
|
73
|
+
flagFilterHide: string;
|
|
74
|
+
flagFilterOnly: string;
|
|
75
|
+
flagDoneChip: string;
|
|
64
76
|
sortBy: string;
|
|
65
77
|
openCollection: string;
|
|
66
78
|
createTitle: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/vue/lang/index.ts"],"names":[],"mappings":"AAuBA,QAAA,MAAM,IAAI
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/vue/lang/index.ts"],"names":[],"mappings":"AAuBA,QAAA,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAcR,CAAC;AAsBH;;;gEAGgE;AAChE,wBAAgB,iBAAiB,IAAI;IAAE,CAAC,EAAE,CAAC,OAAO,IAAI,CAAC,MAAM,CAAC,CAAC,GAAG,CAAC,CAAC;IAAC,MAAM,EAAE,CAAC,OAAO,IAAI,CAAC,MAAM,CAAC,CAAC,QAAQ,CAAC,CAAA;CAAE,CAG5G"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ja.d.ts","sourceRoot":"","sources":["../../../src/vue/lang/ja.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,MAAM,CAAC;AAE/C,QAAA,MAAM,UAAU,EAAE,
|
|
1
|
+
{"version":3,"file":"ja.d.ts","sourceRoot":"","sources":["../../../src/vue/lang/ja.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,MAAM,CAAC;AAE/C,QAAA,MAAM,UAAU,EAAE,kBAuJjB,CAAC;AAEF,eAAe,UAAU,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ko.d.ts","sourceRoot":"","sources":["../../../src/vue/lang/ko.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,MAAM,CAAC;AAE/C,QAAA,MAAM,UAAU,EAAE,
|
|
1
|
+
{"version":3,"file":"ko.d.ts","sourceRoot":"","sources":["../../../src/vue/lang/ko.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,MAAM,CAAC;AAE/C,QAAA,MAAM,UAAU,EAAE,kBAuJjB,CAAC;AAEF,eAAe,UAAU,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ptBR.d.ts","sourceRoot":"","sources":["../../../src/vue/lang/ptBR.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,MAAM,CAAC;AAE/C,QAAA,MAAM,YAAY,EAAE,
|
|
1
|
+
{"version":3,"file":"ptBR.d.ts","sourceRoot":"","sources":["../../../src/vue/lang/ptBR.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,MAAM,CAAC;AAE/C,QAAA,MAAM,YAAY,EAAE,kBAwJnB,CAAC;AAEF,eAAe,YAAY,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"zh.d.ts","sourceRoot":"","sources":["../../../src/vue/lang/zh.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,MAAM,CAAC;AAE/C,QAAA,MAAM,UAAU,EAAE,
|
|
1
|
+
{"version":3,"file":"zh.d.ts","sourceRoot":"","sources":["../../../src/vue/lang/zh.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,MAAM,CAAC;AAE/C,QAAA,MAAM,UAAU,EAAE,kBAsJjB,CAAC;AAEF,eAAe,UAAU,CAAC"}
|