From 3d622a6fb53a23d5a42e6fa72a399eeb403ce1e9 Mon Sep 17 00:00:00 2001 From: Egor Didenko Date: Mon, 23 Sep 2024 08:45:29 -0400 Subject: [PATCH 1/3] feat: Updated Readme.md and renamed to file-uploader --- README.md | 22 ++++++------- examples/angular-uploader/README.md | 10 +++--- .../src/app/app.component.html | 31 +++++++------------ .../file-uploader.component.html | 4 +-- examples/angular-uploader/src/styles.scss | 2 +- examples/js-custom-tab/README.md | 4 +-- examples/js-uploader/README.md | 6 ++-- examples/next-uploader-adapter/README.md | 6 ++-- examples/next-uploader/README.md | 6 ++-- examples/react-uploader-adapter/README.md | 14 ++++----- .../src/components/Layout/Layout.tsx | 4 +-- examples/react-uploader/README.md | 18 +++++------ .../components/FileUploader/FileUploader.tsx | 4 +-- .../src/components/Layout/Layout.tsx | 4 +-- examples/svelte-uploader/README.md | 14 ++++----- .../src/lib/FileUploader/FileUploader.svelte | 4 +-- .../svelte-uploader/src/routes/+layout.svelte | 4 +-- examples/vue-uploader/README.md | 14 ++++----- examples/vue-uploader/src/App.vue | 4 +-- .../FileUploader/FileUploader.composition.vue | 4 +-- .../FileUploader/FileUploader.options.vue | 4 +-- package.json | 2 +- 22 files changed, 88 insertions(+), 97 deletions(-) diff --git a/README.md b/README.md index e2265e2..5acd6c4 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@

- + @@ -8,21 +8,21 @@

- Website • - Quick Start • - Docs • - Blog • - Discord • - Twitter + Website • + Quick Start • + Docs • + Blog • + Discord • + Twitter

-# 📦 Uploadcare Blocks Examples +# 📦 Uploadcare File Uploader Examples -This repository contains a collection of examples demonstrating the integration of the [Uploadcare Blocks](https://github.com/uploadcare/blocks) library with various front-end stacks. Each example is designed to provide a clear and practical guide on implementing file-uploading features using Blocks in your projects. +This repository contains a collection of examples demonstrating the integration of the [Uploadcare File Uploader](https://github.com/uploadcare/file-uploader) library with various front-end stacks. Each example is designed to provide a clear and practical guide on implementing file-uploading features using File Uploader in your projects. ## Examples -Each directory in this repository represents a different framework maintained by Blocks and contains fully functional file-uploading applications: +Each directory in this repository represents a different framework maintained by File Uploader and contains fully functional file-uploading applications: * [JavaScript](./examples/js-uploader/) * [React](./examples/react-uploader/) @@ -39,7 +39,7 @@ Each example provides a live demo, instructions to run it locally, and helpful t ## Contribution You’re always welcome to contribute: -* Create [issues](https://github.com/uploadcare/blocks-examples/issues) every time you feel something is missing or goes wrong. +* Create [issues](https://github.com/uploadcare/file-uploader-examples/issues) every time you feel something is missing or goes wrong. * Provide your feedback or drop us a support request at hello@uploadcare.com. * Ask questions on [Stack Overflow](https://stackoverflow.com/questions/tagged/uploadcare) with "uploadcare" tag if others can have these questions as well. * Fork project, make changes and send it as pull request. diff --git a/examples/angular-uploader/README.md b/examples/angular-uploader/README.md index 3da7f2c..4a49f33 100644 --- a/examples/angular-uploader/README.md +++ b/examples/angular-uploader/README.md @@ -16,11 +16,11 @@ Twitter

-# Angular File Uploader with Uploadcare Blocks +# Angular File Uploader with Uploadcare File Uploader -[![Edit angular-uploader](https://codesandbox.io/static/img/play-codesandbox.svg)](https://codesandbox.io/s/github/uploadcare/blocks-examples/tree/main/examples/angular-uploader/) +[![Edit angular-uploader](https://codesandbox.io/static/img/play-codesandbox.svg)](https://codesandbox.io/s/github/uploadcare/file-uploader-examples/tree/main/examples/angular-uploader/) -This is an example project of implementing a file uploader in an Angular application with [Uploadcare Blocks](https://github.com/uploadcare/blocks). +This is an example project of implementing a file uploader in an Angular application with [Uploadcare File Uploader](https://github.com/uploadcare/file-uploader). ## Run this demo locally @@ -51,7 +51,7 @@ Please, read the [File Uploader documentation](https://uploadcare.com/docs/file- ### Angular + Web Components -Blocks are native to the Web but not to Angular. However, Angular does everything to make solutions based on Web Components +File Uploader is native to the Web but not to Angular. However, Angular does everything to make solutions based on Web Components to work properly with it. To help Angular to figure out where you're using Web Components, you have to set @@ -64,7 +64,7 @@ if you want to know more about using custom elements in Angular. ### Styling -If your styling solution may provide class string or style object, feel free to use them on blocks like +If your styling solution may provide class string or style object, feel free to use them on components like `uc-file-uploader-regular` and override default class using CSS variables. Otherwise you may go “full override” way and pass a string with styles to a File Uploader type of your choice. diff --git a/examples/angular-uploader/src/app/app.component.html b/examples/angular-uploader/src/app/app.component.html index bd5af18..76b7997 100644 --- a/examples/angular-uploader/src/app/app.component.html +++ b/examples/angular-uploader/src/app/app.component.html @@ -3,7 +3,8 @@ - + @@ -13,41 +14,31 @@
- Built with Uploadcare Blocks and Angular + Built with Uploadcare File Uploader and Angular - + - + +
- + \ No newline at end of file diff --git a/examples/angular-uploader/src/app/components/file-uploader/file-uploader.component.html b/examples/angular-uploader/src/app/components/file-uploader/file-uploader.component.html index 8ca86a9..02c0407 100644 --- a/examples/angular-uploader/src/app/components/file-uploader/file-uploader.component.html +++ b/examples/angular-uploader/src/app/components/file-uploader/file-uploader.component.html @@ -1,7 +1,7 @@