@mulmoclaude/collection-plugin 0.11.4 → 0.12.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 +30 -0
- 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/lang/de.d.ts.map +1 -1
- package/dist/vue/lang/en.d.ts +7 -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 +7 -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 +344 -222
- package/dist/vue.cjs.map +1 -1
- package/dist/vue.js +344 -222
- 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
|
}
|
|
@@ -1616,6 +1629,10 @@
|
|
|
1616
1629
|
padding-block: calc(var(--spacing) * 20);
|
|
1617
1630
|
}
|
|
1618
1631
|
|
|
1632
|
+
.py-px {
|
|
1633
|
+
padding-block: 1px;
|
|
1634
|
+
}
|
|
1635
|
+
|
|
1619
1636
|
.pt-1 {
|
|
1620
1637
|
padding-top: var(--spacing);
|
|
1621
1638
|
}
|
|
@@ -1782,6 +1799,11 @@
|
|
|
1782
1799
|
font-weight: var(--font-weight-semibold);
|
|
1783
1800
|
}
|
|
1784
1801
|
|
|
1802
|
+
.tracking-normal {
|
|
1803
|
+
--tw-tracking: var(--tracking-normal);
|
|
1804
|
+
letter-spacing: var(--tracking-normal);
|
|
1805
|
+
}
|
|
1806
|
+
|
|
1785
1807
|
.tracking-wide {
|
|
1786
1808
|
--tw-tracking: var(--tracking-wide);
|
|
1787
1809
|
letter-spacing: var(--tracking-wide);
|
|
@@ -1938,6 +1960,10 @@
|
|
|
1938
1960
|
text-transform: lowercase;
|
|
1939
1961
|
}
|
|
1940
1962
|
|
|
1963
|
+
.normal-case {
|
|
1964
|
+
text-transform: none;
|
|
1965
|
+
}
|
|
1966
|
+
|
|
1941
1967
|
.uppercase {
|
|
1942
1968
|
text-transform: uppercase;
|
|
1943
1969
|
}
|
|
@@ -2211,6 +2237,10 @@
|
|
|
2211
2237
|
color: var(--color-indigo-600);
|
|
2212
2238
|
}
|
|
2213
2239
|
|
|
2240
|
+
.hover\:text-indigo-700:hover {
|
|
2241
|
+
color: var(--color-indigo-700);
|
|
2242
|
+
}
|
|
2243
|
+
|
|
2214
2244
|
.hover\:text-indigo-800:hover {
|
|
2215
2245
|
color: var(--color-indigo-800);
|
|
2216
2246
|
}
|
|
@@ -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":"AAkuBA,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;AA0+CxD,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":"AA+/EA,OAAO,EAML,KAAK,kBAAkB,EACvB,KAAK,eAAe,EACrB,MAAM,uBAAuB,CAAC;AAwC/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;AAyjIF,QAAA,MAAM,YAAY;;;cA9iIiB,eAAe;qBAAe,MAAM;oBAAc,MAAM;;;;;cAAxD,eAAe;qBAAe,MAAM;oBAAc,MAAM;;kFAijIzF,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"}
|
|
@@ -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,kBAmJjB,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;
|
|
@@ -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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAkJf,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,kBAmJjB,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,kBAoJjB,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;
|
|
@@ -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,kBAkJjB,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,kBAkJjB,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,kBAmJnB,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,kBAiJjB,CAAC;AAEF,eAAe,UAAU,CAAC"}
|