@paperless/core 2.12.8 → 2.12.9

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/CHANGELOG.md +11 -0
  2. package/dist/{paperless/p-f7f360d5.entry.js → build/p-621c658d.entry.js} +2 -2
  3. package/dist/build/p-621c658d.entry.js.map +1 -0
  4. package/dist/build/p-badge.p-segment-container.p-segment-item.entry.esm.js.map +1 -1
  5. package/dist/build/{p-7b87ba83.js → p-cb661661.js} +1 -1
  6. package/dist/build/paperless.esm.js +1 -1
  7. package/dist/cjs/p-badge.p-segment-container.p-segment-item.entry.cjs.js.map +1 -1
  8. package/dist/cjs/p-badge_3.cjs.entry.js +4 -4
  9. package/dist/cjs/p-badge_3.cjs.entry.js.map +1 -1
  10. package/dist/collection/components/atoms/segment/item/segment-item.component.css +1 -1
  11. package/dist/collection/components/atoms/segment/item/segment-item.component.js +3 -3
  12. package/dist/collection/components/atoms/segment/item/segment-item.component.js.map +1 -1
  13. package/dist/components/{p-BO_XVUC2.js → p-BGEnz8kT.js} +6 -6
  14. package/dist/components/{p-BO_XVUC2.js.map → p-BGEnz8kT.js.map} +1 -1
  15. package/dist/components/{p-CedFb4_3.js → p-gOTNTrIL.js} +3 -3
  16. package/dist/components/{p-CedFb4_3.js.map → p-gOTNTrIL.js.map} +1 -1
  17. package/dist/components/p-segment-item.js +1 -1
  18. package/dist/components/p-table-header.js +1 -1
  19. package/dist/components/p-table.js +2 -2
  20. package/dist/esm/p-badge.p-segment-container.p-segment-item.entry.js.map +1 -1
  21. package/dist/esm/p-badge_3.entry.js +4 -4
  22. package/dist/esm/p-badge_3.entry.js.map +1 -1
  23. package/dist/index.html +1 -1
  24. package/dist/{build/p-f7f360d5.entry.js → paperless/p-621c658d.entry.js} +2 -2
  25. package/dist/paperless/p-621c658d.entry.js.map +1 -0
  26. package/dist/paperless/p-badge.p-segment-container.p-segment-item.entry.esm.js.map +1 -1
  27. package/dist/paperless/paperless.esm.js +1 -1
  28. package/dist/sw.js +1 -1
  29. package/dist/sw.js.map +1 -1
  30. package/package.json +1 -1
  31. package/dist/build/p-f7f360d5.entry.js.map +0 -1
  32. package/dist/paperless/p-f7f360d5.entry.js.map +0 -1
@@ -1 +0,0 @@
1
- {"version":3,"names":["badgeComponentCss","badge","cva","Badge","render","h","ThemedHost","key","class","segmentContainerComponentCss","SegmentContainer","segmentItemComponentCss","segmentItem","variants","variant","default","block","active","false","true","iconOnly","compoundVariants","SegmentItem","icon","iconFlip","iconRotate","descriptionSlot","this","name","asBoolean","cn","flip","rotate"],"sources":["src/components/atoms/badge/badge.component.css?tag=p-badge&encapsulation=shadow","src/components/atoms/badge/badge.component.tsx","src/components/atoms/segment/container/segment-container.component.css?tag=p-segment-container&encapsulation=shadow","src/components/atoms/segment/container/segment-container.component.tsx","src/components/atoms/segment/item/segment-item.component.css?tag=p-segment-item&encapsulation=shadow","src/components/atoms/segment/item/segment-item.component.tsx"],"sourcesContent":[null,"import { Component, h } from '@stencil/core';\nimport { cva } from 'class-variance-authority';\nimport { ThemedHost } from '../../../internal/themed-host.component';\n\nconst badge = cva([\n\t'inline-flex items-center justify-center',\n\t'h-4 min-w-4 px-1',\n\t'rounded-full',\n\t'bg-storm-100 dark:bg-white/20',\n\t'text-storm-500 dark:text-white',\n\t'text-center text-xs font-semibold tracking-tight',\n]);\n\n@Component({\n\ttag: 'p-badge',\n\tstyleUrl: 'badge.component.css',\n\tshadow: true,\n})\nexport class Badge {\n\trender() {\n\t\treturn (\n\t\t\t<ThemedHost>\n\t\t\t\t<div class={badge()}>\n\t\t\t\t\t<slot />\n\t\t\t\t</div>\n\t\t\t</ThemedHost>\n\t\t);\n\t}\n}\n",null,"import { Component, h } from '@stencil/core';\nimport { ThemedHost } from '../../../../internal/themed-host.component';\n\n@Component({\n\ttag: 'p-segment-container',\n\tstyleUrl: 'segment-container.component.css',\n\tshadow: true,\n})\nexport class SegmentContainer {\n\trender() {\n\t\treturn (\n\t\t\t<ThemedHost>\n\t\t\t\t<div class='flex rounded-2xl border border-solid border-off-white-700 bg-off-white-300 p-1 dark:border-hurricane-400 dark:bg-hurricane-600'>\n\t\t\t\t\t<slot />\n\t\t\t\t</div>\n\t\t\t</ThemedHost>\n\t\t);\n\t}\n}\n",null,"import { Component, h, Prop } from '@stencil/core';\nimport { cva } from 'class-variance-authority';\nimport { RotateOptions } from '../../../../types/tailwind';\nimport { asBoolean } from '../../../../utils/as-boolean';\nimport { IconFlipOptions, IconVariant } from '../../icon/icon.component';\nimport { cn } from '../../../../utils';\nimport { ThemedHost } from '../../../../internal/themed-host.component';\n\nconst segmentItem = cva(\n\t['flex items-center justify-center', 'rounded-xl', 'cursor-pointer text-sm'],\n\t{\n\t\tvariants: {\n\t\t\tvariant: {\n\t\t\t\tdefault: 'h-6 gap-2',\n\t\t\t\tblock: 'flex-col p-2 text-center',\n\t\t\t},\n\t\t\tactive: {\n\t\t\t\tfalse: [\n\t\t\t\t\t'cursor-pointer',\n\t\t\t\t\t'text-storm-300 hover:text-storm-500 hover:bg-storm-50',\n\t\t\t\t\t'hover:text-white dark:hover:bg-white/15',\n\t\t\t\t],\n\t\t\t\ttrue: 'bg-indigo-600 text-white',\n\t\t\t},\n\t\t\ticonOnly: {\n\t\t\t\tfalse: 'px-2',\n\t\t\t\ttrue: 'w-6',\n\t\t\t},\n\t\t},\n\t\tcompoundVariants: [\n\t\t\t{\n\t\t\t\tvariant: 'default',\n\t\t\t\tactive: false,\n\t\t\t\tclass: 'text-storm-500 dark:text-hurricane-200',\n\t\t\t},\n\t\t\t{\n\t\t\t\tvariant: 'block',\n\t\t\t\tactive: false,\n\t\t\t\tclass: 'text-storm-500 dark:text-white',\n\t\t\t},\n\t\t],\n\t}\n);\n\n@Component({\n\ttag: 'p-segment-item',\n\tstyleUrl: 'segment-item.component.css',\n\tshadow: true,\n})\nexport class SegmentItem {\n\t/**\n\t * The size of the\n\t */\n\t@Prop() variant: 'default' | 'block' = 'default';\n\n\t/**\n\t * Wether the segment item is active\n\t */\n\t@Prop() active: boolean = false;\n\n\t/**\n\t * Wether the segment item is icon only\n\t */\n\t@Prop() iconOnly: boolean = false;\n\n\t/**\n\t * Icon to show on the segment item\n\t */\n\t@Prop() icon: IconVariant;\n\n\t/**\n\t * Icon flip\n\t */\n\t@Prop() iconFlip: IconFlipOptions;\n\n\t/**\n\t * Icon rotate\n\t */\n\t@Prop() iconRotate: RotateOptions;\n\n\trender() {\n\t\tconst descriptionSlot =\n\t\t\tthis.variant === 'block' ? <slot name='description' /> : null;\n\n\t\treturn (\n\t\t\t<ThemedHost>\n\t\t\t\t<div\n\t\t\t\t\tclass={segmentItem({\n\t\t\t\t\t\tvariant: this.variant,\n\t\t\t\t\t\tactive: asBoolean(this.active),\n\t\t\t\t\t\ticonOnly: asBoolean(this.iconOnly),\n\t\t\t\t\t})}\n\t\t\t\t>\n\t\t\t\t\t{this.icon && (\n\t\t\t\t\t\t<p-icon\n\t\t\t\t\t\t\tclass={cn('mb-1', {\n\t\t\t\t\t\t\t\t'text-storm-300 dark:text-hurricane-200': !asBoolean(\n\t\t\t\t\t\t\t\t\tthis.active\n\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t\t'text-indigo-200': asBoolean(this.active),\n\t\t\t\t\t\t\t})}\n\t\t\t\t\t\t\tvariant={this.icon}\n\t\t\t\t\t\t\tflip={this.iconFlip}\n\t\t\t\t\t\t\trotate={this.iconRotate}\n\t\t\t\t\t\t/>\n\t\t\t\t\t)}\n\n\t\t\t\t\t{this.variant === 'default' ? (\n\t\t\t\t\t\t<slot />\n\t\t\t\t\t) : (\n\t\t\t\t\t\t<div class='flex flex-col items-center'>\n\t\t\t\t\t\t\t<p class={cn('my-0 font-medium empty:hidden', {})}>\n\t\t\t\t\t\t\t\t<slot name='title' />\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t{descriptionSlot && (\n\t\t\t\t\t\t\t\t<p\n\t\t\t\t\t\t\t\t\tclass={cn('my-0 text-xs font-medium', {\n\t\t\t\t\t\t\t\t\t\t'text-storm-300 dark:text-hurricane-200': !asBoolean(\n\t\t\t\t\t\t\t\t\t\t\tthis.active\n\t\t\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t\t\t\t'text-indigo-200': asBoolean(this.active),\n\t\t\t\t\t\t\t\t\t})}\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t{descriptionSlot}\n\t\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t</div>\n\t\t\t\t\t)}\n\t\t\t\t</div>\n\t\t\t</ThemedHost>\n\t\t);\n\t}\n}\n"],"mappings":"2OAAA,MAAMA,EAAoB,ixCCI1B,MAAMC,EAAQC,EAAI,CACjB,0CACA,mBACA,eACA,gCACA,iCACA,qD,MAQYC,EAAK,M,yBACjB,MAAAC,GACC,OACCC,EAACC,EAAU,CAAAC,IAAA,4CACVF,EAAK,OAAAE,IAAA,2CAAAC,MAAOP,KACXI,EAAQ,QAAAE,IAAA,8C,aCvBb,MAAME,EAA+B,8oC,MCQxBC,EAAgB,M,yBAC5B,MAAAN,GACC,OACCC,EAACC,EAAU,CAAAC,IAAA,4CACVF,EAAK,OAAAE,IAAA,2CAAAC,MAAM,kIACVH,EAAQ,QAAAE,IAAA,8C,aCbb,MAAMI,EAA0B,0sFCQhC,MAAMC,EAAcV,EACnB,CAAC,mCAAoC,aAAc,0BACnD,CACCW,SAAU,CACTC,QAAS,CACRC,QAAS,YACTC,MAAO,4BAERC,OAAQ,CACPC,MAAO,CACN,iBACA,wDACA,2CAEDC,KAAM,4BAEPC,SAAU,CACTF,MAAO,OACPC,KAAM,QAGRE,iBAAkB,CACjB,CACCP,QAAS,UACTG,OAAQ,MACRT,MAAO,0CAER,CACCM,QAAS,QACTG,OAAQ,MACRT,MAAO,qC,MAWEc,EAAW,M,yBAIfR,QAA+B,UAK/BG,OAAkB,MAKlBG,SAAoB,MAKpBG,KAKAC,SAKAC,WAER,MAAArB,GACC,MAAMsB,EACLC,KAAKb,UAAY,QAAUT,EAAM,QAAAuB,KAAK,gBAAmB,KAE1D,OACCvB,EAACC,EAAU,CAAAC,IAAA,4CACVF,EACC,OAAAE,IAAA,2CAAAC,MAAOI,EAAY,CAClBE,QAASa,KAAKb,QACdG,OAAQY,EAAUF,KAAKV,QACvBG,SAAUS,EAAUF,KAAKP,aAGzBO,KAAKJ,MACLlB,EAAA,UAAAE,IAAA,2CACCC,MAAOsB,EAAG,OAAQ,CACjB,0CAA2CD,EAC1CF,KAAKV,QAEN,kBAAmBY,EAAUF,KAAKV,UAEnCH,QAASa,KAAKJ,KACdQ,KAAMJ,KAAKH,SACXQ,OAAQL,KAAKF,aAIdE,KAAKb,UAAY,UACjBT,EAAQ,aAERA,EAAK,OAAAG,MAAM,8BACVH,EAAA,KAAGG,MAAOsB,EAAG,gCAAiC,KAC7CzB,EAAA,QAAMuB,KAAK,WAEXF,GACArB,EACC,KAAAG,MAAOsB,EAAG,2BAA4B,CACrC,0CAA2CD,EAC1CF,KAAKV,QAEN,kBAAmBY,EAAUF,KAAKV,WAGlCS,K","ignoreList":[]}
@@ -1 +0,0 @@
1
- {"version":3,"names":["badgeComponentCss","badge","cva","Badge","render","h","ThemedHost","key","class","segmentContainerComponentCss","SegmentContainer","segmentItemComponentCss","segmentItem","variants","variant","default","block","active","false","true","iconOnly","compoundVariants","SegmentItem","icon","iconFlip","iconRotate","descriptionSlot","this","name","asBoolean","cn","flip","rotate"],"sources":["src/components/atoms/badge/badge.component.css?tag=p-badge&encapsulation=shadow","src/components/atoms/badge/badge.component.tsx","src/components/atoms/segment/container/segment-container.component.css?tag=p-segment-container&encapsulation=shadow","src/components/atoms/segment/container/segment-container.component.tsx","src/components/atoms/segment/item/segment-item.component.css?tag=p-segment-item&encapsulation=shadow","src/components/atoms/segment/item/segment-item.component.tsx"],"sourcesContent":[null,"import { Component, h } from '@stencil/core';\nimport { cva } from 'class-variance-authority';\nimport { ThemedHost } from '../../../internal/themed-host.component';\n\nconst badge = cva([\n\t'inline-flex items-center justify-center',\n\t'h-4 min-w-4 px-1',\n\t'rounded-full',\n\t'bg-storm-100 dark:bg-white/20',\n\t'text-storm-500 dark:text-white',\n\t'text-center text-xs font-semibold tracking-tight',\n]);\n\n@Component({\n\ttag: 'p-badge',\n\tstyleUrl: 'badge.component.css',\n\tshadow: true,\n})\nexport class Badge {\n\trender() {\n\t\treturn (\n\t\t\t<ThemedHost>\n\t\t\t\t<div class={badge()}>\n\t\t\t\t\t<slot />\n\t\t\t\t</div>\n\t\t\t</ThemedHost>\n\t\t);\n\t}\n}\n",null,"import { Component, h } from '@stencil/core';\nimport { ThemedHost } from '../../../../internal/themed-host.component';\n\n@Component({\n\ttag: 'p-segment-container',\n\tstyleUrl: 'segment-container.component.css',\n\tshadow: true,\n})\nexport class SegmentContainer {\n\trender() {\n\t\treturn (\n\t\t\t<ThemedHost>\n\t\t\t\t<div class='flex rounded-2xl border border-solid border-off-white-700 bg-off-white-300 p-1 dark:border-hurricane-400 dark:bg-hurricane-600'>\n\t\t\t\t\t<slot />\n\t\t\t\t</div>\n\t\t\t</ThemedHost>\n\t\t);\n\t}\n}\n",null,"import { Component, h, Prop } from '@stencil/core';\nimport { cva } from 'class-variance-authority';\nimport { RotateOptions } from '../../../../types/tailwind';\nimport { asBoolean } from '../../../../utils/as-boolean';\nimport { IconFlipOptions, IconVariant } from '../../icon/icon.component';\nimport { cn } from '../../../../utils';\nimport { ThemedHost } from '../../../../internal/themed-host.component';\n\nconst segmentItem = cva(\n\t['flex items-center justify-center', 'rounded-xl', 'cursor-pointer text-sm'],\n\t{\n\t\tvariants: {\n\t\t\tvariant: {\n\t\t\t\tdefault: 'h-6 gap-2',\n\t\t\t\tblock: 'flex-col p-2 text-center',\n\t\t\t},\n\t\t\tactive: {\n\t\t\t\tfalse: [\n\t\t\t\t\t'cursor-pointer',\n\t\t\t\t\t'text-storm-300 hover:text-storm-500 hover:bg-storm-50',\n\t\t\t\t\t'hover:text-white dark:hover:bg-white/15',\n\t\t\t\t],\n\t\t\t\ttrue: 'bg-indigo-600 text-white',\n\t\t\t},\n\t\t\ticonOnly: {\n\t\t\t\tfalse: 'px-2',\n\t\t\t\ttrue: 'w-6',\n\t\t\t},\n\t\t},\n\t\tcompoundVariants: [\n\t\t\t{\n\t\t\t\tvariant: 'default',\n\t\t\t\tactive: false,\n\t\t\t\tclass: 'text-storm-500 dark:text-hurricane-200',\n\t\t\t},\n\t\t\t{\n\t\t\t\tvariant: 'block',\n\t\t\t\tactive: false,\n\t\t\t\tclass: 'text-storm-500 dark:text-white',\n\t\t\t},\n\t\t],\n\t}\n);\n\n@Component({\n\ttag: 'p-segment-item',\n\tstyleUrl: 'segment-item.component.css',\n\tshadow: true,\n})\nexport class SegmentItem {\n\t/**\n\t * The size of the\n\t */\n\t@Prop() variant: 'default' | 'block' = 'default';\n\n\t/**\n\t * Wether the segment item is active\n\t */\n\t@Prop() active: boolean = false;\n\n\t/**\n\t * Wether the segment item is icon only\n\t */\n\t@Prop() iconOnly: boolean = false;\n\n\t/**\n\t * Icon to show on the segment item\n\t */\n\t@Prop() icon: IconVariant;\n\n\t/**\n\t * Icon flip\n\t */\n\t@Prop() iconFlip: IconFlipOptions;\n\n\t/**\n\t * Icon rotate\n\t */\n\t@Prop() iconRotate: RotateOptions;\n\n\trender() {\n\t\tconst descriptionSlot =\n\t\t\tthis.variant === 'block' ? <slot name='description' /> : null;\n\n\t\treturn (\n\t\t\t<ThemedHost>\n\t\t\t\t<div\n\t\t\t\t\tclass={segmentItem({\n\t\t\t\t\t\tvariant: this.variant,\n\t\t\t\t\t\tactive: asBoolean(this.active),\n\t\t\t\t\t\ticonOnly: asBoolean(this.iconOnly),\n\t\t\t\t\t})}\n\t\t\t\t>\n\t\t\t\t\t{this.icon && (\n\t\t\t\t\t\t<p-icon\n\t\t\t\t\t\t\tclass={cn('mb-1', {\n\t\t\t\t\t\t\t\t'text-storm-300 dark:text-hurricane-200': !asBoolean(\n\t\t\t\t\t\t\t\t\tthis.active\n\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t\t'text-indigo-200': asBoolean(this.active),\n\t\t\t\t\t\t\t})}\n\t\t\t\t\t\t\tvariant={this.icon}\n\t\t\t\t\t\t\tflip={this.iconFlip}\n\t\t\t\t\t\t\trotate={this.iconRotate}\n\t\t\t\t\t\t/>\n\t\t\t\t\t)}\n\n\t\t\t\t\t{this.variant === 'default' ? (\n\t\t\t\t\t\t<slot />\n\t\t\t\t\t) : (\n\t\t\t\t\t\t<div class='flex flex-col items-center'>\n\t\t\t\t\t\t\t<p class={cn('my-0 font-medium empty:hidden', {})}>\n\t\t\t\t\t\t\t\t<slot name='title' />\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t{descriptionSlot && (\n\t\t\t\t\t\t\t\t<p\n\t\t\t\t\t\t\t\t\tclass={cn('my-0 text-xs font-medium', {\n\t\t\t\t\t\t\t\t\t\t'text-storm-300 dark:text-hurricane-200': !asBoolean(\n\t\t\t\t\t\t\t\t\t\t\tthis.active\n\t\t\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t\t\t\t'text-indigo-200': asBoolean(this.active),\n\t\t\t\t\t\t\t\t\t})}\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t{descriptionSlot}\n\t\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t</div>\n\t\t\t\t\t)}\n\t\t\t\t</div>\n\t\t\t</ThemedHost>\n\t\t);\n\t}\n}\n"],"mappings":"2OAAA,MAAMA,EAAoB,ixCCI1B,MAAMC,EAAQC,EAAI,CACjB,0CACA,mBACA,eACA,gCACA,iCACA,qD,MAQYC,EAAK,M,yBACjB,MAAAC,GACC,OACCC,EAACC,EAAU,CAAAC,IAAA,4CACVF,EAAK,OAAAE,IAAA,2CAAAC,MAAOP,KACXI,EAAQ,QAAAE,IAAA,8C,aCvBb,MAAME,EAA+B,8oC,MCQxBC,EAAgB,M,yBAC5B,MAAAN,GACC,OACCC,EAACC,EAAU,CAAAC,IAAA,4CACVF,EAAK,OAAAE,IAAA,2CAAAC,MAAM,kIACVH,EAAQ,QAAAE,IAAA,8C,aCbb,MAAMI,EAA0B,0sFCQhC,MAAMC,EAAcV,EACnB,CAAC,mCAAoC,aAAc,0BACnD,CACCW,SAAU,CACTC,QAAS,CACRC,QAAS,YACTC,MAAO,4BAERC,OAAQ,CACPC,MAAO,CACN,iBACA,wDACA,2CAEDC,KAAM,4BAEPC,SAAU,CACTF,MAAO,OACPC,KAAM,QAGRE,iBAAkB,CACjB,CACCP,QAAS,UACTG,OAAQ,MACRT,MAAO,0CAER,CACCM,QAAS,QACTG,OAAQ,MACRT,MAAO,qC,MAWEc,EAAW,M,yBAIfR,QAA+B,UAK/BG,OAAkB,MAKlBG,SAAoB,MAKpBG,KAKAC,SAKAC,WAER,MAAArB,GACC,MAAMsB,EACLC,KAAKb,UAAY,QAAUT,EAAM,QAAAuB,KAAK,gBAAmB,KAE1D,OACCvB,EAACC,EAAU,CAAAC,IAAA,4CACVF,EACC,OAAAE,IAAA,2CAAAC,MAAOI,EAAY,CAClBE,QAASa,KAAKb,QACdG,OAAQY,EAAUF,KAAKV,QACvBG,SAAUS,EAAUF,KAAKP,aAGzBO,KAAKJ,MACLlB,EAAA,UAAAE,IAAA,2CACCC,MAAOsB,EAAG,OAAQ,CACjB,0CAA2CD,EAC1CF,KAAKV,QAEN,kBAAmBY,EAAUF,KAAKV,UAEnCH,QAASa,KAAKJ,KACdQ,KAAMJ,KAAKH,SACXQ,OAAQL,KAAKF,aAIdE,KAAKb,UAAY,UACjBT,EAAQ,aAERA,EAAK,OAAAG,MAAM,8BACVH,EAAA,KAAGG,MAAOsB,EAAG,gCAAiC,KAC7CzB,EAAA,QAAMuB,KAAK,WAEXF,GACArB,EACC,KAAAG,MAAOsB,EAAG,2BAA4B,CACrC,0CAA2CD,EAC1CF,KAAKV,QAEN,kBAAmBY,EAAUF,KAAKV,WAGlCS,K","ignoreList":[]}