@htmlbricks/hb-footer 0.71.36 → 0.72.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/manifest.json CHANGED
@@ -129,6 +129,7 @@
129
129
  "additionalProperties": false,
130
130
  "properties": {
131
131
  "_id": {
132
+ "description": "Optional in JSON; the component assigns stable ids in `$effect` when missing.",
132
133
  "type": "string"
133
134
  },
134
135
  "address": {
@@ -147,9 +148,6 @@
147
148
  "$ref": "#/definitions/ISiteContact"
148
149
  }
149
150
  },
150
- "required": [
151
- "_id"
152
- ],
153
151
  "type": "object"
154
152
  },
155
153
  "type": "array"
@@ -728,7 +726,7 @@
728
726
  }
729
727
  }
730
728
  ],
731
- "iifeIntegrity": "sha384-8pnJscO6LhE6dKfvoFHRPrO9GMClWyapaEvqejZl118CgkXJe0T+GT/9yPDQVGy7",
729
+ "iifeIntegrity": "sha384-rG8GZ+inXnaaZ0AzAFRjA44jxb8r2cXK4VJd6i64A7bF7AOin/124DggguKVvuCx",
732
730
  "dependencies": [
733
731
  {
734
732
  "name": "hb-contact-item",
@@ -756,5 +754,5 @@
756
754
  },
757
755
  "iifePath": "main.iife.js",
758
756
  "repoName": "@htmlbricks/hb-footer",
759
- "version": "0.71.36"
757
+ "version": "0.72.0"
760
758
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@htmlbricks/hb-footer",
3
- "version": "0.71.36",
3
+ "version": "0.72.0",
4
4
  "contributors": [],
5
5
  "description": "Site footer in `small`, `regular`, or `large` layouts: company block, optional brand/contacts column, link columns, social icons, `hb-contact-item` rows, and policy links—all driven by JSON props. Regular layout uses Bulma `container`, `columns` / `column`, `title`, and `button`. On small layouts the body can expand/collapse unless `disable_expanding_small` is set; slots `footerheader`, `footercontent`, and `footerbottom` wrap major regions.",
6
6
  "licenses": [
@@ -100,6 +100,7 @@
100
100
  "additionalProperties": false,
101
101
  "properties": {
102
102
  "_id": {
103
+ "description": "Optional in JSON; the component assigns stable ids in `$effect` when missing.",
103
104
  "type": "string"
104
105
  },
105
106
  "address": {
@@ -118,9 +119,6 @@
118
119
  "$ref": "#/definitions/ISiteContact"
119
120
  }
120
121
  },
121
- "required": [
122
- "_id"
123
- ],
124
122
  "type": "object"
125
123
  },
126
124
  "type": "array"
@@ -25,7 +25,8 @@ export interface IColumn {
25
25
  _id?: string;
26
26
  cells: {
27
27
  label?: string;
28
- _id: string;
28
+ /** Optional in JSON; the component assigns stable ids in `$effect` when missing. */
29
+ _id?: string;
29
30
  phone?: IPhoneContact;
30
31
  address?: IAddressContact;
31
32
  email?: IEmailContact;