From 288ecfe52469fca85f8eab6168296c0705e59745 Mon Sep 17 00:00:00 2001 From: GitHub Actions Bot <> Date: Mon, 28 Oct 2024 20:01:50 +0000 Subject: [PATCH 1/9] Update API doc --- apps/showcase/doc/common/apidoc/index.json | 9 +++++++++ packages/themes/types/fileupload/index.d.ts | 6 ++++++ 2 files changed, 15 insertions(+) diff --git a/apps/showcase/doc/common/apidoc/index.json b/apps/showcase/doc/common/apidoc/index.json index 1031ee646..57916353d 100644 --- a/apps/showcase/doc/common/apidoc/index.json +++ b/apps/showcase/doc/common/apidoc/index.json @@ -82918,6 +82918,15 @@ "default": "", "description": "Padding of header" }, + { + "name": "header.borderColor", + "token": "fileupload.header.border.color", + "optional": true, + "readonly": false, + "type": "string", + "default": "", + "description": "Border color of header" + }, { "name": "header.borderWidth", "token": "fileupload.header.border.width", diff --git a/packages/themes/types/fileupload/index.d.ts b/packages/themes/types/fileupload/index.d.ts index d93d0a2aa..b5d0f51d4 100644 --- a/packages/themes/types/fileupload/index.d.ts +++ b/packages/themes/types/fileupload/index.d.ts @@ -68,6 +68,12 @@ export interface FileUploadDesignTokens extends ColorSchemeDesignToken Date: Mon, 28 Oct 2024 23:02:56 +0300 Subject: [PATCH 2/9] Update MultipleDoc.vue --- apps/showcase/doc/treeselect/MultipleDoc.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/showcase/doc/treeselect/MultipleDoc.vue b/apps/showcase/doc/treeselect/MultipleDoc.vue index 76ef1fbc5..8db197e12 100644 --- a/apps/showcase/doc/treeselect/MultipleDoc.vue +++ b/apps/showcase/doc/treeselect/MultipleDoc.vue @@ -8,7 +8,7 @@
- +
@@ -30,12 +30,12 @@ export default { }, code: { basic: ` - + `, options: ` @@ -58,7 +58,7 @@ export default { composition: ` From b1822ff9ef50ffd4cb5594c981bfd7b038ab8c4d Mon Sep 17 00:00:00 2001 From: Cagatay Civici Date: Mon, 28 Oct 2024 23:55:20 +0300 Subject: [PATCH 3/9] Fixed #6672 - New Design Token for invalid placeholder color --- apps/showcase/doc/autocomplete/InvalidDoc.vue | 16 ++++++++-------- apps/showcase/doc/datepicker/InvalidDoc.vue | 16 ++++++++-------- apps/showcase/doc/inputmask/InvalidDoc.vue | 16 ++++++++-------- apps/showcase/doc/inputnumber/InvalidDoc.vue | 16 ++++++++-------- apps/showcase/doc/inputtext/InvalidDoc.vue | 16 ++++++++-------- apps/showcase/doc/password/InvalidDoc.vue | 16 ++++++++-------- apps/showcase/doc/textarea/InvalidDoc.vue | 8 ++++---- apps/showcase/layouts/AppConfigurator.vue | 2 +- .../src/autocomplete/style/AutoCompleteStyle.js | 4 ++++ .../cascadeselect/style/CascadeSelectStyle.js | 4 ++++ .../src/inputtext/style/InputTextStyle.js | 4 ++++ .../src/multiselect/style/MultiSelectStyle.js | 4 ++++ .../primevue/src/select/style/SelectStyle.js | 4 ++++ .../primevue/src/textarea/style/TextareaStyle.js | 4 ++++ .../src/treeselect/style/TreeSelectStyle.js | 4 ++++ .../src/presets/aura/autocomplete/index.js | 1 + packages/themes/src/presets/aura/base/index.js | 6 ++++-- .../src/presets/aura/cascadeselect/index.js | 1 + .../themes/src/presets/aura/inputtext/index.js | 1 + .../themes/src/presets/aura/multiselect/index.js | 1 + packages/themes/src/presets/aura/select/index.js | 1 + .../themes/src/presets/aura/textarea/index.js | 1 + .../themes/src/presets/aura/treeselect/index.js | 1 + packages/themes/src/presets/lara/base/index.js | 6 ++++-- .../src/presets/lara/cascadeselect/index.js | 1 + .../themes/src/presets/lara/inputtext/index.js | 1 + .../themes/src/presets/lara/multiselect/index.js | 1 + packages/themes/src/presets/lara/select/index.js | 1 + .../themes/src/presets/lara/textarea/index.js | 1 + .../themes/src/presets/lara/treeselect/index.js | 1 + .../themes/src/presets/material/base/index.js | 6 ++++-- .../src/presets/material/cascadeselect/index.js | 1 + .../src/presets/material/inputtext/index.js | 1 + .../src/presets/material/multiselect/index.js | 1 + .../themes/src/presets/material/select/index.js | 1 + .../src/presets/material/textarea/index.js | 1 + .../src/presets/material/treeselect/index.js | 1 + packages/themes/src/presets/nora/base/index.js | 6 ++++-- .../src/presets/nora/cascadeselect/index.js | 1 + .../themes/src/presets/nora/inputtext/index.js | 1 + .../themes/src/presets/nora/multiselect/index.js | 1 + packages/themes/src/presets/nora/select/index.js | 1 + .../themes/src/presets/nora/textarea/index.js | 1 + .../themes/src/presets/nora/treeselect/index.js | 1 + 44 files changed, 122 insertions(+), 61 deletions(-) diff --git a/apps/showcase/doc/autocomplete/InvalidDoc.vue b/apps/showcase/doc/autocomplete/InvalidDoc.vue index 99978e2e6..2ecd4aa66 100644 --- a/apps/showcase/doc/autocomplete/InvalidDoc.vue +++ b/apps/showcase/doc/autocomplete/InvalidDoc.vue @@ -3,8 +3,8 @@

Invalid state is displayed using the invalid prop to indicate a failed validation. You can use this style when integrating with form validation libraries.

- - + +
@@ -18,14 +18,14 @@ export default { items: [], code: { basic: ` - - + + `, options: ` @@ -49,8 +49,8 @@ export default { composition: ` diff --git a/apps/showcase/doc/datepicker/InvalidDoc.vue b/apps/showcase/doc/datepicker/InvalidDoc.vue index 0eef44a97..cad85a50e 100644 --- a/apps/showcase/doc/datepicker/InvalidDoc.vue +++ b/apps/showcase/doc/datepicker/InvalidDoc.vue @@ -3,8 +3,8 @@

Invalid state is displayed using the invalid prop to indicate a failed validation. You can use this style when integrating with form validation libraries.

- - + +
@@ -17,14 +17,14 @@ export default { date2: null, code: { basic: ` - - + + `, options: ` @@ -42,8 +42,8 @@ export default { composition: ` diff --git a/apps/showcase/doc/inputmask/InvalidDoc.vue b/apps/showcase/doc/inputmask/InvalidDoc.vue index ac7b3e6e3..128d19962 100644 --- a/apps/showcase/doc/inputmask/InvalidDoc.vue +++ b/apps/showcase/doc/inputmask/InvalidDoc.vue @@ -3,8 +3,8 @@

Invalid state is displayed using the invalid prop to indicate a failed validation. You can use this style when integrating with form validation libraries.

- - + +
@@ -17,14 +17,14 @@ export default { value2: '', code: { basic: ` - - + + `, options: ` @@ -43,8 +43,8 @@ export default { composition: ` diff --git a/apps/showcase/doc/inputnumber/InvalidDoc.vue b/apps/showcase/doc/inputnumber/InvalidDoc.vue index f71395327..5f63b1d2b 100644 --- a/apps/showcase/doc/inputnumber/InvalidDoc.vue +++ b/apps/showcase/doc/inputnumber/InvalidDoc.vue @@ -3,8 +3,8 @@

Invalid state is displayed using the invalid prop to indicate a failed validation. You can use this style when integrating with form validation libraries.

- - + +
@@ -17,14 +17,14 @@ export default { value2: null, code: { basic: ` - - + + `, options: ` @@ -42,8 +42,8 @@ export default { composition: ` diff --git a/apps/showcase/doc/inputtext/InvalidDoc.vue b/apps/showcase/doc/inputtext/InvalidDoc.vue index 225353735..53351ae6b 100644 --- a/apps/showcase/doc/inputtext/InvalidDoc.vue +++ b/apps/showcase/doc/inputtext/InvalidDoc.vue @@ -3,8 +3,8 @@

Invalid state is displayed using the invalid prop to indicate a failed validation. You can use this style when integrating with form validation libraries.

- - + +
@@ -17,14 +17,14 @@ export default { value2: '', code: { basic: ` - - + + `, options: ` @@ -42,8 +42,8 @@ export default { composition: ` diff --git a/apps/showcase/doc/password/InvalidDoc.vue b/apps/showcase/doc/password/InvalidDoc.vue index 004da5bda..0ffe1e671 100644 --- a/apps/showcase/doc/password/InvalidDoc.vue +++ b/apps/showcase/doc/password/InvalidDoc.vue @@ -3,8 +3,8 @@

Invalid state is displayed using the invalid prop to indicate a failed validation. You can use this style when integrating with form validation libraries.

- - + +
@@ -17,14 +17,14 @@ export default { value2: null, code: { basic: ` - - + + `, options: ` @@ -42,8 +42,8 @@ export default { composition: ` diff --git a/apps/showcase/doc/textarea/InvalidDoc.vue b/apps/showcase/doc/textarea/InvalidDoc.vue index 94d815c66..29a0ae6a4 100644 --- a/apps/showcase/doc/textarea/InvalidDoc.vue +++ b/apps/showcase/doc/textarea/InvalidDoc.vue @@ -3,7 +3,7 @@

Invalid state is displayed using the invalid prop to indicate a failed validation. You can use this style when integrating with form validation libraries.

-