@uploadcare/file-uploader 1.24.4 → 1.24.5

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/dist/index.ssr.js CHANGED
@@ -1132,7 +1132,7 @@ export const ModalEvents = {
1132
1132
  DESTROY: "modal:destroy",
1133
1133
  };
1134
1134
  export const PACKAGE_NAME = `blocks`;
1135
- export const PACKAGE_VERSION = `1.24.4`;
1135
+ export const PACKAGE_VERSION = `1.24.5`;
1136
1136
  export const PresenceToggle = class {
1137
1137
  static template = `<slot></slot> `;
1138
1138
  static reg = () => {};
@@ -32,7 +32,7 @@ var nl_default = {
32
32
  "upload-files": "Bestanden uploaden",
33
33
  "choose-file": "Kies bestand",
34
34
  "choose-files": "Kies bestanden",
35
- "drop-files-here": "Laat bestanden hier vallen",
35
+ "drop-files-here": "Bestanden hier neerzetten",
36
36
  "select-file-source": "Selecteer bestandsbron",
37
37
  selected: "Geselecteerd",
38
38
  upload: "Uploaden",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uploadcare/file-uploader",
3
- "version": "1.24.4",
3
+ "version": "1.24.5",
4
4
  "description": "Building blocks for Uploadcare products integration",
5
5
  "keywords": [
6
6
  "web components",
@@ -50,6 +50,10 @@
50
50
  "types": "./types/css.d.ts",
51
51
  "default": "./dist/index.css"
52
52
  },
53
+ "./index.layered.css": {
54
+ "types": "./types/css.d.ts",
55
+ "default": "./dist/index.layered.css"
56
+ },
53
57
  "./abstract/loadFileUploaderFrom.js": "./dist/abstract/loadFileUploaderFrom.js",
54
58
  "./env": "./dist/env.js",
55
59
  "./web/*": "./web/*",
@@ -109,6 +113,7 @@
109
113
  "@biomejs/biome": "2.2.5",
110
114
  "@biomejs/js-api": "^3.0.0",
111
115
  "@biomejs/wasm-nodejs": "^2.2.5",
116
+ "@csstools/postcss-cascade-layers": "^5.0.2",
112
117
  "@happy-dom/global-registrator": "^16.8.1",
113
118
  "@size-limit/esbuild-why": "^11.2.0",
114
119
  "@size-limit/preset-small-lib": "^11.2.0",
@@ -124,7 +129,7 @@
124
129
  "node-watch": "^0.7.3",
125
130
  "npm-run-all": "^4.1.5",
126
131
  "playwright": "^1.55.0",
127
- "postcss": "^8.4.21",
132
+ "postcss": "^8.5.6",
128
133
  "publint": "^0.3.14",
129
134
  "render-jsx": "^0.2.4",
130
135
  "rimraf": "^5.0.0",
@@ -105,6 +105,7 @@ declare class ModalManager {
105
105
  type CommonEventType = InternalEventKey | EventKey;
106
106
  type TelemetryState = TelemetryRequest & {
107
107
  eventTimestamp: number;
108
+ location: string;
108
109
  };
109
110
  type TelemetryEventBody = Partial<Pick<TelemetryState, 'payload' | 'config'>> & {
110
111
  modalId?: string;
@@ -136,6 +137,7 @@ declare class TelemetryManager {
136
137
  private get _timestamp();
137
138
  private get _solution();
138
139
  private get _activity();
140
+ private get _location();
139
141
  }
140
142
 
141
143
  declare class Block extends BaseComponent<any> {