From 239de72f108ef68c7375c7ea12bce7f47acf7b81 Mon Sep 17 00:00:00 2001 From: Material Web Team Date: Sun, 29 Jan 2023 12:55:07 -0800 Subject: [PATCH] chore: internal cleanup only affecting BUILD files PiperOrigin-RevId: 505523145 --- packages/mdc-floating-label/gss_gss.scss | 28 ++++++++++++++++++++++ packages/mdc-notched-outline/gss_gss.scss | 29 +++++++++++++++++++++++ 2 files changed, 57 insertions(+) create mode 100644 packages/mdc-floating-label/gss_gss.scss create mode 100644 packages/mdc-notched-outline/gss_gss.scss diff --git a/packages/mdc-floating-label/gss_gss.scss b/packages/mdc-floating-label/gss_gss.scss new file mode 100644 index 00000000000..d665e2fcf95 --- /dev/null +++ b/packages/mdc-floating-label/gss_gss.scss @@ -0,0 +1,28 @@ +// Copyright 2017 Google Inc. + +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: + +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. + +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. + +@use '@material/base/mixins' as base-mixins; +@use './mixins'; + +@provide 'mdc.floatinglabel'; + +@include base-mixins.emit-once('mdc-floating-label') { + @include mixins.core-styles; +} diff --git a/packages/mdc-notched-outline/gss_gss.scss b/packages/mdc-notched-outline/gss_gss.scss new file mode 100644 index 00000000000..b6aa9ea07b3 --- /dev/null +++ b/packages/mdc-notched-outline/gss_gss.scss @@ -0,0 +1,29 @@ +// Copyright 2017 Google Inc. + +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: + +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. + +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. + +@use '@material/base/mixins' as base-mixins; +@use './mixins'; + +@provide 'mdc.notchedoutline'; + +// Notched Outline is intended for use by multiple components, but its styles should only be emitted once when bundled +@include base-mixins.emit-once('mdc-notched-outline') { + @include mixins.core-styles; +}