@daltonr/pathwrite-angular 0.1.3 → 0.1.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.
package/README.md CHANGED
@@ -181,4 +181,3 @@ Override any `--pw-*` variable to customise the appearance:
181
181
  --pw-shell-radius: 12px;
182
182
  }
183
183
  ```
184
-
package/dist/index.css CHANGED
@@ -7,8 +7,10 @@
7
7
  * theme the shell without overriding selectors.
8
8
  *
9
9
  * Usage:
10
- * import "@daltonr/pathwrite-shell.css"; // bundler import
11
- * <link href="pathwrite/shell.css" ...> // HTML link
10
+ * import "@daltonr/pathwrite-react/styles.css"; // React
11
+ * import "@daltonr/pathwrite-vue/styles.css"; // Vue
12
+ * // Angular: add "node_modules/@daltonr/pathwrite-angular/dist/index.css"
13
+ * // to the styles array in angular.json
12
14
  */
13
15
 
14
16
  /* ------------------------------------------------------------------ */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@daltonr/pathwrite-angular",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "description": "Angular adapter for @daltonr/pathwrite-core — RxJS observables, signal-friendly, with optional <pw-shell> default UI.",
@@ -17,7 +17,9 @@
17
17
  "multi-step",
18
18
  "workflow"
19
19
  ],
20
- "sideEffects": ["**/*.css"],
20
+ "sideEffects": [
21
+ "**/*.css"
22
+ ],
21
23
  "exports": {
22
24
  ".": {
23
25
  "types": "./dist/index.d.ts",
@@ -47,7 +49,7 @@
47
49
  "rxjs": "^7.0.0"
48
50
  },
49
51
  "dependencies": {
50
- "@daltonr/pathwrite-core": "^0.1.3"
52
+ "@daltonr/pathwrite-core": "^0.1.4"
51
53
  },
52
54
  "publishConfig": {
53
55
  "access": "public"