@paperless/core 1.52.5 → 1.53.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.
Files changed (48) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist/build/p-0c2cdac4.entry.js +2 -0
  3. package/dist/build/p-0c2cdac4.entry.js.map +1 -0
  4. package/dist/build/p-867c00e9.entry.js +2 -0
  5. package/dist/{paperless/p-13e80641.entry.js.map → build/p-867c00e9.entry.js.map} +1 -1
  6. package/dist/build/paperless.css +1 -1
  7. package/dist/build/paperless.esm.js +1 -1
  8. package/dist/build/paperless.esm.js.map +1 -1
  9. package/dist/cjs/loader.cjs.js +1 -1
  10. package/dist/cjs/p-helper_3.cjs.entry.js +1 -1
  11. package/dist/cjs/p-helper_3.cjs.entry.js.map +1 -1
  12. package/dist/cjs/p-select.cjs.entry.js +50 -34
  13. package/dist/cjs/p-select.cjs.entry.js.map +1 -1
  14. package/dist/cjs/paperless.cjs.js +1 -1
  15. package/dist/collection/components/molecules/input-group/input-group.component.css +1 -1
  16. package/dist/collection/components/molecules/select/select.component.js +119 -34
  17. package/dist/collection/components/molecules/select/select.component.js.map +1 -1
  18. package/dist/components/input-group.component.js +1 -1
  19. package/dist/components/input-group.component.js.map +1 -1
  20. package/dist/components/p-select.js +54 -34
  21. package/dist/components/p-select.js.map +1 -1
  22. package/dist/esm/loader.js +1 -1
  23. package/dist/esm/p-helper_3.entry.js +1 -1
  24. package/dist/esm/p-helper_3.entry.js.map +1 -1
  25. package/dist/esm/p-select.entry.js +50 -34
  26. package/dist/esm/p-select.entry.js.map +1 -1
  27. package/dist/esm/paperless.js +1 -1
  28. package/dist/index.html +1 -1
  29. package/dist/paperless/p-0c2cdac4.entry.js +2 -0
  30. package/dist/paperless/p-0c2cdac4.entry.js.map +1 -0
  31. package/dist/paperless/p-867c00e9.entry.js +2 -0
  32. package/dist/{build/p-13e80641.entry.js.map → paperless/p-867c00e9.entry.js.map} +1 -1
  33. package/dist/paperless/paperless.css +19 -19
  34. package/dist/paperless/paperless.esm.js +1 -1
  35. package/dist/paperless/paperless.esm.js.map +1 -1
  36. package/dist/style/form/_mixins.scss +105 -101
  37. package/dist/sw.js +1 -1
  38. package/dist/sw.js.map +1 -1
  39. package/dist/types/components/molecules/select/select.component.d.ts +17 -0
  40. package/dist/types/components.d.ts +32 -0
  41. package/hydrate/index.js +55 -35
  42. package/package.json +1 -1
  43. package/dist/build/p-13e80641.entry.js +0 -2
  44. package/dist/build/p-22a84714.entry.js +0 -2
  45. package/dist/build/p-22a84714.entry.js.map +0 -1
  46. package/dist/paperless/p-13e80641.entry.js +0 -2
  47. package/dist/paperless/p-22a84714.entry.js +0 -2
  48. package/dist/paperless/p-22a84714.entry.js.map +0 -1
@@ -49,6 +49,22 @@ export declare class Select {
49
49
  * The key of avatar within an item to show
50
50
  */
51
51
  avatarKey: string;
52
+ /**
53
+ * The key of icon variant within an item to show
54
+ */
55
+ iconKey: string;
56
+ /**
57
+ * Wether to show the icon also on the selected Item
58
+ */
59
+ showIconInSelectedItem: string;
60
+ /**
61
+ * The key of a class in an item to apply
62
+ */
63
+ classKey: string;
64
+ /**
65
+ * Wether to apply the item's class also on the selected item
66
+ */
67
+ applyClassOnSelectedItem: string;
52
68
  /**
53
69
  * The key of avatar letters within an item to show when the avatar url doesn't work
54
70
  */
@@ -200,4 +216,5 @@ export declare class Select {
200
216
  private _checkSelectedItems;
201
217
  private _onDropdownOpen;
202
218
  private _selectAllChange;
219
+ private _getDisplay;
203
220
  }
@@ -932,6 +932,10 @@ export namespace Components {
932
932
  * The text to show when add item is being shown
933
933
  */
934
934
  "addItemText": string;
935
+ /**
936
+ * Wether to apply the item's class also on the selected item
937
+ */
938
+ "applyClassOnSelectedItem": string;
935
939
  /**
936
940
  * Wether the input uses async filtering
937
941
  */
@@ -952,6 +956,10 @@ export namespace Components {
952
956
  * The key of avatar letters within an item to show when the avatar url doesn't work
953
957
  */
954
958
  "avatarLettersKey": string;
959
+ /**
960
+ * The key of a class in an item to apply
961
+ */
962
+ "classKey": string;
955
963
  /**
956
964
  * Wether the input group is disabled used by the select
957
965
  */
@@ -988,6 +996,10 @@ export namespace Components {
988
996
  * Icon of the select box
989
997
  */
990
998
  "icon": IconVariant;
999
+ /**
1000
+ * The key of icon variant within an item to show
1001
+ */
1002
+ "iconKey": string;
991
1003
  /**
992
1004
  * The key to identify an object
993
1005
  */
@@ -1052,6 +1064,10 @@ export namespace Components {
1052
1064
  * Wether to show the chevron or not
1053
1065
  */
1054
1066
  "showChevron": boolean;
1067
+ /**
1068
+ * Wether to show the icon also on the selected Item
1069
+ */
1070
+ "showIconInSelectedItem": string;
1055
1071
  /**
1056
1072
  * The size of the input group used by the select
1057
1073
  */
@@ -3118,6 +3134,10 @@ declare namespace LocalJSX {
3118
3134
  * The text to show when add item is being shown
3119
3135
  */
3120
3136
  "addItemText"?: string;
3137
+ /**
3138
+ * Wether to apply the item's class also on the selected item
3139
+ */
3140
+ "applyClassOnSelectedItem"?: string;
3121
3141
  /**
3122
3142
  * Wether the input uses async filtering
3123
3143
  */
@@ -3138,6 +3158,10 @@ declare namespace LocalJSX {
3138
3158
  * The key of avatar letters within an item to show when the avatar url doesn't work
3139
3159
  */
3140
3160
  "avatarLettersKey"?: string;
3161
+ /**
3162
+ * The key of a class in an item to apply
3163
+ */
3164
+ "classKey"?: string;
3141
3165
  /**
3142
3166
  * Wether the input group is disabled used by the select
3143
3167
  */
@@ -3174,6 +3198,10 @@ declare namespace LocalJSX {
3174
3198
  * Icon of the select box
3175
3199
  */
3176
3200
  "icon"?: IconVariant;
3201
+ /**
3202
+ * The key of icon variant within an item to show
3203
+ */
3204
+ "iconKey"?: string;
3177
3205
  /**
3178
3206
  * The key to identify an object
3179
3207
  */
@@ -3258,6 +3286,10 @@ declare namespace LocalJSX {
3258
3286
  * Wether to show the chevron or not
3259
3287
  */
3260
3288
  "showChevron"?: boolean;
3289
+ /**
3290
+ * Wether to show the icon also on the selected Item
3291
+ */
3292
+ "showIconInSelectedItem"?: string;
3261
3293
  /**
3262
3294
  * The size of the input group used by the select
3263
3295
  */