@apolitical/component-library 10.4.7-oa1 → 10.4.8-bht.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/index.mjs CHANGED
@@ -26771,6 +26771,8 @@ const Ao = "footer_", Gs = "SiteFooter", EF = ({ group: e, keyName: t }) => {
26771
26771
  "a",
26772
26772
  {
26773
26773
  href: n[r].href,
26774
+ target: "_blank",
26775
+ rel: "noopener",
26774
26776
  className: "gtm-trackable",
26775
26777
  "data-gtm-event-context": Gs,
26776
26778
  "data-gtm-event-type": n[r].gtmType,
package/package.json CHANGED
@@ -1,14 +1,18 @@
1
1
  {
2
2
  "name": "@apolitical/component-library",
3
- "version": "10.4.7-oa1",
3
+ "version": "10.4.8-bht.0",
4
4
  "main": "./index.js",
5
5
  "types": "./index.d.ts",
6
6
  "exports": {
7
7
  ".": {
8
+ "types": "./index.d.ts",
8
9
  "import": "./index.mjs",
9
10
  "require": "./index.js"
10
11
  },
11
- "./style.css": "./style.css"
12
+ "./style.css": "./style.css",
13
+ "./*": {
14
+ "types": ["./*.d.ts", "./*/index.d.ts"]
15
+ }
12
16
  },
13
17
  "devDependencies": {
14
18
  "@types/rtl-detect": "1.0.3",
@@ -5,7 +5,7 @@ These are utility classes that are used in the `next-ui` app and libraries. They
5
5
  The starting point for the tooling to generate these classes came from [codyframe](https://github.com/codyhouse/codyframe).
6
6
  In future we may want to expand on our small set using more of the utility classes that codyframe has, or even use something like [tailwindcss](https://tailwindcss.com/) instead.
7
7
 
8
- The `global.css` file is used to define the utility classes globally and also for intellisense in the editor. If you modify the generator sass then you will need to run `pnpm build:uclasses` from the root of the `/frontend/v2` workspace.
8
+ The `global.css` file is used to define the utility classes globally and also for intellisense in the editor. If you modify the generator sass then you will need to run `pnpm build:uclasses` from the `services/` workspace root.
9
9
 
10
10
  Ensure you have the recommended extension from .vscode workspace settings to get the intellisense.
11
11