@paperless/core 2.19.3 → 2.19.4

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 (32) hide show
  1. package/dist/build/{p-c7372634.js → p-3c257ec1.js} +1 -1
  2. package/dist/build/p-91a9fca5.entry.js +2 -0
  3. package/dist/build/p-91a9fca5.entry.js.map +1 -0
  4. package/dist/build/p-table-column.entry.esm.js.map +1 -1
  5. package/dist/build/paperless.esm.js +1 -1
  6. package/dist/cjs/loader.cjs.js +1 -1
  7. package/dist/cjs/p-table-column.cjs.entry.js +1 -1
  8. package/dist/cjs/p-table-column.cjs.entry.js.map +1 -1
  9. package/dist/cjs/p-table-column.entry.cjs.js.map +1 -1
  10. package/dist/cjs/paperless.cjs.js +1 -1
  11. package/dist/collection/components/helpers/table/column/table-column.component.js +3 -3
  12. package/dist/collection/components/helpers/table/column/table-column.component.js.map +1 -1
  13. package/dist/components/p-table-column.js +2 -2
  14. package/dist/components/p-table-column.js.map +1 -1
  15. package/dist/esm/loader.js +1 -1
  16. package/dist/esm/p-table-column.entry.js +1 -1
  17. package/dist/esm/p-table-column.entry.js.map +1 -1
  18. package/dist/esm/paperless.js +1 -1
  19. package/dist/index.html +1 -1
  20. package/dist/paperless/p-91a9fca5.entry.js +2 -0
  21. package/dist/paperless/p-91a9fca5.entry.js.map +1 -0
  22. package/dist/paperless/p-table-column.entry.esm.js.map +1 -1
  23. package/dist/paperless/paperless.esm.js +1 -1
  24. package/dist/sw.js +1 -1
  25. package/dist/sw.js.map +1 -1
  26. package/dist/types/components/helpers/table/column/table-column.component.d.ts +1 -1
  27. package/dist/types/components.d.ts +2 -2
  28. package/package.json +1 -1
  29. package/dist/build/p-a6a1c872.entry.js +0 -2
  30. package/dist/build/p-a6a1c872.entry.js.map +0 -1
  31. package/dist/paperless/p-a6a1c872.entry.js +0 -2
  32. package/dist/paperless/p-a6a1c872.entry.js.map +0 -1
@@ -1885,7 +1885,7 @@ export namespace Components {
1885
1885
  /**
1886
1886
  * The alignment of the header
1887
1887
  */
1888
- "header": | null
1888
+ "headerAlign": | null
1889
1889
  | 'start'
1890
1890
  | 'center'
1891
1891
  | 'end';
@@ -5378,7 +5378,7 @@ declare namespace LocalJSX {
5378
5378
  /**
5379
5379
  * The alignment of the header
5380
5380
  */
5381
- "header"?: | null
5381
+ "headerAlign"?: | null
5382
5382
  | 'start'
5383
5383
  | 'center'
5384
5384
  | 'end';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@paperless/core",
3
- "version": "2.19.3",
3
+ "version": "2.19.4",
4
4
  "description": "Stencil Component Starter",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs.js",
@@ -1,2 +0,0 @@
1
- import{r as e,c as a}from"./p-Dpmiv2da.js";const t=class{constructor(t){e(this,t);this.tableDefinitionChanged=a(this,"tableDefinitionChanged",7)}path;variant="default";name;flex=false;useSlot=false;hasCheckbox=false;align="start";header=null;sticky=false;parsedSizes;sizes="auto";tableDefinitionChanged;componentDidUpdate(){this.tableDefinitionChanged.emit(true)}render(){return}};export{t as p_table_column};
2
- //# sourceMappingURL=p-a6a1c872.entry.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["TableColumn","path","variant","name","flex","useSlot","hasCheckbox","align","header","sticky","parsedSizes","sizes","tableDefinitionChanged","componentDidUpdate","this","emit","render"],"sources":["src/components/helpers/table/column/table-column.component.tsx"],"sourcesContent":["import { Component, Event, EventEmitter, Prop } from '@stencil/core';\nimport { TableColumnSizes } from '../../../../types/table';\n\n@Component({\n\ttag: 'p-table-column',\n})\nexport class TableColumn {\n\t/**\n\t * The path of the value of the item you want to display\n\t */\n\t@Prop({ reflect: true, mutable: true }) path: string;\n\n\t/**\n\t * The variant of the column\n\t */\n\t@Prop({ reflect: true, mutable: true }) variant:\n\t\t| 'subject'\n\t\t| 'default'\n\t\t| 'highlight'\n\t\t| 'header-secondary' = 'default';\n\n\t/**\n\t * The name of the column\n\t */\n\t@Prop({ reflect: true, mutable: true }) name: string;\n\n\t/**\n\t * Wether the column should be flex\n\t */\n\t@Prop({ reflect: true, mutable: true }) flex: boolean = false;\n\n\t/**\n\t * Wether the column should use the slot\n\t */\n\t@Prop({ reflect: true, mutable: true }) useSlot: boolean = false;\n\n\t/**\n\t * Wether the column should have a checkbox\n\t */\n\t@Prop({ reflect: true, mutable: true }) hasCheckbox: boolean = false;\n\n\t/**\n\t * The alignment of the column\n\t */\n\t@Prop({ reflect: true, mutable: true }) align: 'start' | 'center' | 'end' =\n\t\t'start';\n\n\t/**\n\t * The alignment of the header\n\t */\n\t@Prop({ reflect: true, mutable: true }) header:\n\t\t| null\n\t\t| 'start'\n\t\t| 'center'\n\t\t| 'end' = null;\n\n\t/**\n\t * Wether the column should be sticky (Only works on angular variant of table)\n\t */\n\t@Prop({ reflect: true, mutable: true }) sticky: boolean | 'secondary' = false;\n\n\t/**\n\t * Parsed sizes based on the complete set of columns\n\t */\n\t@Prop({ reflect: true, mutable: true }) parsedSizes:\n\t\t| TableColumnSizes\n\t\t| undefined;\n\n\t/**\n\t * The sizes of the column\n\t */\n\t@Prop({ mutable: true }) sizes:\n\t\t| 'auto'\n\t\t| 'hidden'\n\t\t| 'full'\n\t\t| number\n\t\t| TableColumnSizes = 'auto';\n\n\t/**\n\t * Event to let the table know it has to re render\n\t */\n\t@Event({ bubbles: true, composed: true })\n\ttableDefinitionChanged: EventEmitter<boolean>;\n\n\tcomponentDidUpdate() {\n\t\tthis.tableDefinitionChanged.emit(true);\n\t}\n\n\trender() {\n\t\treturn;\n\t}\n}\n"],"mappings":"iDAMaA,EAAW,M,wFAIiBC,KAKAC,QAIhB,UAKgBC,KAKAC,KAAgB,MAKhBC,QAAmB,MAKnBC,YAAuB,MAKvBC,MACvC,QAKuCC,OAI7B,KAK6BC,OAAgC,MAKhCC,YAOfC,MAKH,OAMtBC,uBAEA,kBAAAC,GACCC,KAAKF,uBAAuBG,KAAK,K,CAGlC,MAAAC,GACC,M","ignoreList":[]}
@@ -1,2 +0,0 @@
1
- import{r as e,c as a}from"./p-Dpmiv2da.js";const t=class{constructor(t){e(this,t);this.tableDefinitionChanged=a(this,"tableDefinitionChanged",7)}path;variant="default";name;flex=false;useSlot=false;hasCheckbox=false;align="start";header=null;sticky=false;parsedSizes;sizes="auto";tableDefinitionChanged;componentDidUpdate(){this.tableDefinitionChanged.emit(true)}render(){return}};export{t as p_table_column};
2
- //# sourceMappingURL=p-a6a1c872.entry.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["TableColumn","path","variant","name","flex","useSlot","hasCheckbox","align","header","sticky","parsedSizes","sizes","tableDefinitionChanged","componentDidUpdate","this","emit","render"],"sources":["src/components/helpers/table/column/table-column.component.tsx"],"sourcesContent":["import { Component, Event, EventEmitter, Prop } from '@stencil/core';\nimport { TableColumnSizes } from '../../../../types/table';\n\n@Component({\n\ttag: 'p-table-column',\n})\nexport class TableColumn {\n\t/**\n\t * The path of the value of the item you want to display\n\t */\n\t@Prop({ reflect: true, mutable: true }) path: string;\n\n\t/**\n\t * The variant of the column\n\t */\n\t@Prop({ reflect: true, mutable: true }) variant:\n\t\t| 'subject'\n\t\t| 'default'\n\t\t| 'highlight'\n\t\t| 'header-secondary' = 'default';\n\n\t/**\n\t * The name of the column\n\t */\n\t@Prop({ reflect: true, mutable: true }) name: string;\n\n\t/**\n\t * Wether the column should be flex\n\t */\n\t@Prop({ reflect: true, mutable: true }) flex: boolean = false;\n\n\t/**\n\t * Wether the column should use the slot\n\t */\n\t@Prop({ reflect: true, mutable: true }) useSlot: boolean = false;\n\n\t/**\n\t * Wether the column should have a checkbox\n\t */\n\t@Prop({ reflect: true, mutable: true }) hasCheckbox: boolean = false;\n\n\t/**\n\t * The alignment of the column\n\t */\n\t@Prop({ reflect: true, mutable: true }) align: 'start' | 'center' | 'end' =\n\t\t'start';\n\n\t/**\n\t * The alignment of the header\n\t */\n\t@Prop({ reflect: true, mutable: true }) header:\n\t\t| null\n\t\t| 'start'\n\t\t| 'center'\n\t\t| 'end' = null;\n\n\t/**\n\t * Wether the column should be sticky (Only works on angular variant of table)\n\t */\n\t@Prop({ reflect: true, mutable: true }) sticky: boolean | 'secondary' = false;\n\n\t/**\n\t * Parsed sizes based on the complete set of columns\n\t */\n\t@Prop({ reflect: true, mutable: true }) parsedSizes:\n\t\t| TableColumnSizes\n\t\t| undefined;\n\n\t/**\n\t * The sizes of the column\n\t */\n\t@Prop({ mutable: true }) sizes:\n\t\t| 'auto'\n\t\t| 'hidden'\n\t\t| 'full'\n\t\t| number\n\t\t| TableColumnSizes = 'auto';\n\n\t/**\n\t * Event to let the table know it has to re render\n\t */\n\t@Event({ bubbles: true, composed: true })\n\ttableDefinitionChanged: EventEmitter<boolean>;\n\n\tcomponentDidUpdate() {\n\t\tthis.tableDefinitionChanged.emit(true);\n\t}\n\n\trender() {\n\t\treturn;\n\t}\n}\n"],"mappings":"iDAMaA,EAAW,M,wFAIiBC,KAKAC,QAIhB,UAKgBC,KAKAC,KAAgB,MAKhBC,QAAmB,MAKnBC,YAAuB,MAKvBC,MACvC,QAKuCC,OAI7B,KAK6BC,OAAgC,MAKhCC,YAOfC,MAKH,OAMtBC,uBAEA,kBAAAC,GACCC,KAAKF,uBAAuBG,KAAK,K,CAGlC,MAAAC,GACC,M","ignoreList":[]}