@signiphi/page-assembly 0.2.0-beta.6 → 0.2.0-beta.7

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.
@@ -3,9 +3,9 @@
3
3
  transform: rotate(360deg);
4
4
  }
5
5
  }
6
- /*! tailwindcss v4.2.1 | MIT License | https://tailwindcss.com */
6
+ /*! tailwindcss v4.1.16 | MIT License | https://tailwindcss.com */
7
7
  :root:not(#\#), .signiphi-page-assembly:not(#\#) :host {
8
- --font-sans: ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif, "Apple Color Emoji",
8
+ --font-sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif, "Apple Color Emoji",
9
9
  "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
10
10
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
11
11
  "Courier New", monospace;
@@ -97,9 +97,11 @@
97
97
  -moz-tab-size: 4;
98
98
  -o-tab-size: 4;
99
99
  tab-size: 4;
100
- font-family: ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif, "Apple Color Emoji",
100
+ font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif, "Apple Color Emoji",
101
101
  "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
102
- font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
102
+ font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif, "Apple Color Emoji",
103
+ "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
104
+ font-family: var(--default-font-family, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
103
105
  font-feature-settings: normal;
104
106
  font-feature-settings: var(--default-font-feature-settings, normal);
105
107
  font-variation-settings: normal;
@@ -289,14 +291,6 @@
289
291
  bottom: calc(var(--spacing) * 0);
290
292
  left: calc(var(--spacing) * 0);
291
293
  }
292
- .signiphi-page-assembly:not(#\#):not(#\#):not(#\#):not(#\#) .start {
293
- left: 0.25rem;
294
- left: var(--spacing);
295
- }
296
- .signiphi-page-assembly:not(#\#):not(#\#):not(#\#):not(#\#) .end {
297
- right: 0.25rem;
298
- right: var(--spacing);
299
- }
300
294
  .signiphi-page-assembly:not(#\#):not(#\#):not(#\#):not(#\#) .top-1 {
301
295
  top: calc(0.25rem * 1);
302
296
  top: calc(var(--spacing) * 1);
@@ -0,0 +1 @@
1
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@signiphi/page-assembly",
3
- "version": "0.2.0-beta.6",
3
+ "version": "0.2.0-beta.7",
4
4
  "description": "React component for PDF and image page manipulation - upload, reorder, delete, and combine pages",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -16,7 +16,11 @@
16
16
  "require": "./dist/index.js",
17
17
  "default": "./dist/index.js"
18
18
  },
19
- "./styles": "./dist/styles/index.css",
19
+ "./styles": {
20
+ "types": "./dist/styles/index.d.ts",
21
+ "import": "./dist/styles/index.css",
22
+ "default": "./dist/styles/index.css"
23
+ },
20
24
  "./styles/source": "./src/styles/index.css",
21
25
  "./src/styles/index.css": "./src/styles/index.css",
22
26
  "./dist/styles/index.css": "./dist/styles/index.css"
@@ -27,7 +31,7 @@
27
31
  "README.md"
28
32
  ],
29
33
  "scripts": {
30
- "build": "tsup && node -e \"require('fs').mkdirSync('dist/styles', {recursive: true})\" && postcss src/styles/index.css -o dist/styles/index.css",
34
+ "build": "tsup && node -e \"require('fs').mkdirSync('dist/styles', {recursive: true})\" && postcss src/styles/index.css -o dist/styles/index.css && node -e \"require('fs').copyFileSync('src/styles/index.d.ts','dist/styles/index.d.ts')\"",
31
35
  "dev": "tsup --watch",
32
36
  "type-check": "tsc --noEmit"
33
37
  },
@@ -0,0 +1 @@
1
+ export {};