@pageboard/html 0.17.5 → 0.17.6

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/elements/card.js CHANGED
@@ -94,6 +94,7 @@ exports.card = {
94
94
 
95
95
  exports.cardlink = {
96
96
  title: "Card Link",
97
+ deprecated: true,
97
98
  menu: 'widget',
98
99
  icon: '<i class="icons"><i class="linkify icon"></i><i class="corner add icon"></i></i>',
99
100
  properties: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pageboard/html",
3
- "version": "0.17.5",
3
+ "version": "0.17.6",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "repository": {
@@ -22,7 +22,7 @@
22
22
  "nouislider/dist/nouislider.css": "link lib/"
23
23
  },
24
24
  "pageboard": {
25
- "version": "^0.16",
25
+ "version": "^0.17",
26
26
  "priority": -10,
27
27
  "directories": [
28
28
  "elements",
package/ui/input-file.js CHANGED
@@ -76,7 +76,7 @@ class HTMLElementInputFile extends Page.create(HTMLInputElement) {
76
76
  if (!obj.hrefs?.length) {
77
77
  return fail(new Error("File rejected"));
78
78
  }
79
- this.value = obj.hrefs[0]?.pathname;
79
+ this.value = obj.hrefs[0]?.url;
80
80
  field.classList.add('success');
81
81
  field.classList.remove('loading');
82
82
  this.#xhr = null;