Skip to content

Commit

Permalink
fix(core/blind): adjust padding (#475)
Browse files Browse the repository at this point in the history
  • Loading branch information
nuke-ellington committed Apr 11, 2023
1 parent 31a2e94 commit 4eb1cc6
Show file tree
Hide file tree
Showing 95 changed files with 818 additions and 22 deletions.
7 changes: 7 additions & 0 deletions ix.code-workspace
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,13 @@
"blankLinesAfter": 0,
"forceToTop": true
},
"psi-header.lang-config": [
{
"language": "vue",
"begin": "<!--",
"end": "-->"
}
],
"psi-header.templates": [
{
"language": "*",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ import { Component } from '@angular/core';
<ix-icon-button
id="context-menu"
slot="header-actions"
ghost
icon="context-menu"
></ix-icon-button>
<ix-dropdown trigger="context-menu">test</ix-dropdown>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
<ix-icon-button
id="context-menu"
slot="header-actions"
ghost
icon="context-menu"
></ix-icon-button>
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,12 @@ export default () => {
return (
<>
<IxBlind label="Example">
<IxIconButton icon="info" id="context-menu"></IxIconButton>
<IxIconButton
id="context-menu"
slot="header-actions"
ghost
icon="info"
></IxIconButton>
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy
eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam
voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
<!--
* SPDX-FileCopyrightText: 2023 Siemens AG
*
* SPDX-License-Identifier: MIT
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
-->

<script setup lang="ts">
import {
IxBasicNavigation,
Expand Down
9 changes: 9 additions & 0 deletions packages/vue-test-app/src/preview-examples/aggrid.vue
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
<!--
* SPDX-FileCopyrightText: 2023 Siemens AG
*
* SPDX-License-Identifier: MIT
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
-->

<script setup lang="ts">
import { GridOptions } from 'ag-grid-community';
import { AgGridVue } from 'ag-grid-vue3';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
<!--
* SPDX-FileCopyrightText: 2023 Siemens AG
*
* SPDX-License-Identifier: MIT
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
-->

<script setup lang="ts">
import { IxBasicNavigation, IxMenu, IxMenuItem } from '@siemens/ix-vue';
</script>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
<!--
* SPDX-FileCopyrightText: 2023 Siemens AG
*
* SPDX-License-Identifier: MIT
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
-->

<script setup lang="ts">
import { IxBasicNavigation, IxMenu, IxMenuItem } from '@siemens/ix-vue';
</script>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,18 +1,24 @@
/*
<!--
* SPDX-FileCopyrightText: 2023 Siemens AG
*
* SPDX-License-Identifier: MIT
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
-->

<script setup lang="ts">
import { IxBlind, IxDropdown, IxIconButton } from '@siemens/ix-vue';
</script>

<template>
<IxBlind label="Example">
<IxIconButton slot="header-actions" id="context-menu" icon="context-menu"></IxIconButton>
<IxIconButton
slot="header-actions"
id="context-menu"
ghost
icon="context-menu"
></IxIconButton>
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy
eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam
voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet
Expand Down
9 changes: 9 additions & 0 deletions packages/vue-test-app/src/preview-examples/blind.vue
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
<!--
* SPDX-FileCopyrightText: 2023 Siemens AG
*
* SPDX-License-Identifier: MIT
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
-->

<script setup lang="ts">
import { IxBlind } from '@siemens/ix-vue';
</script>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
<!--
* SPDX-FileCopyrightText: 2023 Siemens AG
*
* SPDX-License-Identifier: MIT
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
-->

<script setup lang="ts">
import { IxBreadcrumb, IxBreadcrumbItem } from '@siemens/ix-vue';
import { ref } from 'vue';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
<!--
* SPDX-FileCopyrightText: 2023 Siemens AG
*
* SPDX-License-Identifier: MIT
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
-->

<script setup lang="ts">
import { IxBreadcrumb, IxBreadcrumbItem } from '@siemens/ix-vue';
</script>
Expand Down
9 changes: 9 additions & 0 deletions packages/vue-test-app/src/preview-examples/breadcrumb.vue
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
<!--
* SPDX-FileCopyrightText: 2023 Siemens AG
*
* SPDX-License-Identifier: MIT
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
-->

<script setup lang="ts">
import { IxBreadcrumb, IxBreadcrumbItem } from '@siemens/ix-vue';
</script>
Expand Down
9 changes: 9 additions & 0 deletions packages/vue-test-app/src/preview-examples/button-ghost.vue
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
<!--
* SPDX-FileCopyrightText: 2023 Siemens AG
*
* SPDX-License-Identifier: MIT
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
-->

<script setup lang="ts">
import { IxButton } from '@siemens/ix-vue';
</script>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
<!--
* SPDX-FileCopyrightText: 2023 Siemens AG
*
* SPDX-License-Identifier: MIT
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
-->

<script setup lang="ts">
import { IxButton } from '@siemens/ix-vue';
</script>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
<!--
* SPDX-FileCopyrightText: 2023 Siemens AG
*
* SPDX-License-Identifier: MIT
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
-->

<script setup lang="ts">
import { IxButton } from '@siemens/ix-vue';
</script>
Expand Down
9 changes: 9 additions & 0 deletions packages/vue-test-app/src/preview-examples/button-grey.vue
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
<!--
* SPDX-FileCopyrightText: 2023 Siemens AG
*
* SPDX-License-Identifier: MIT
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
-->

<script setup lang="ts">
import { IxButton } from '@siemens/ix-vue';
</script>
Expand Down
9 changes: 9 additions & 0 deletions packages/vue-test-app/src/preview-examples/button-group.vue
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
<!--
* SPDX-FileCopyrightText: 2023 Siemens AG
*
* SPDX-License-Identifier: MIT
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
-->

<script setup lang="ts">
import { IxButton } from '@siemens/ix-vue';
</script>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
<!--
* SPDX-FileCopyrightText: 2023 Siemens AG
*
* SPDX-License-Identifier: MIT
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
-->

<script setup lang="ts">
import { IxButton } from '@siemens/ix-vue';
</script>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
<!--
* SPDX-FileCopyrightText: 2023 Siemens AG
*
* SPDX-License-Identifier: MIT
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
-->

<script setup lang="ts">
import { IxButton } from '@siemens/ix-vue';
</script>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
<!--
* SPDX-FileCopyrightText: 2023 Siemens AG
*
* SPDX-License-Identifier: MIT
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
-->

<script setup lang="ts">
import { IxButton, IxIcon } from '@siemens/ix-vue';
</script>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<script setup lang="ts">
/*
* SPDX-FileCopyrightText: 2022 Siemens AG
<!--
* SPDX-FileCopyrightText: 2023 Siemens AG
*
* SPDX-License-Identifier: MIT
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
-->

<script setup lang="ts">
import { IxIconButton } from '@siemens/ix-vue';
</script>

Expand Down
9 changes: 9 additions & 0 deletions packages/vue-test-app/src/preview-examples/buttons.vue
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
<!--
* SPDX-FileCopyrightText: 2023 Siemens AG
*
* SPDX-License-Identifier: MIT
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
-->

<script setup lang="ts">
import { IxButton } from '@siemens/ix-vue';
</script>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
<!--
* SPDX-FileCopyrightText: 2023 Siemens AG
*
* SPDX-License-Identifier: MIT
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
-->

<script setup lang="ts">
import { IxCategoryFilter } from '@siemens/ix-vue';
import { ref } from 'vue';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<script setup lang="ts">
/*
* SPDX-FileCopyrightText: 2022 Siemens AG
<!--
* SPDX-FileCopyrightText: 2023 Siemens AG
*
* SPDX-License-Identifier: MIT
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
-->

<script setup lang="ts">
import { FilterState, LogicalFilterOperator } from '@siemens/ix';
import { IxCategoryFilter } from '@siemens/ix-vue';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
<!--
* SPDX-FileCopyrightText: 2023 Siemens AG
*
* SPDX-License-Identifier: MIT
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
-->

<script setup lang="ts">
import { onMounted, ref } from 'vue';
Expand Down
9 changes: 9 additions & 0 deletions packages/vue-test-app/src/preview-examples/checkbox.vue
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
<!--
* SPDX-FileCopyrightText: 2023 Siemens AG
*
* SPDX-License-Identifier: MIT
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
-->

<script setup lang="ts"></script>

<template>
Expand Down
9 changes: 9 additions & 0 deletions packages/vue-test-app/src/preview-examples/chip.vue
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
<!--
* SPDX-FileCopyrightText: 2023 Siemens AG
*
* SPDX-License-Identifier: MIT
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
-->

<script setup lang="ts">
import { IxChip } from '@siemens/ix-vue';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
<!--
* SPDX-FileCopyrightText: 2023 Siemens AG
*
* SPDX-License-Identifier: MIT
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
-->

<script setup lang="ts">
import { IxDatePicker } from '@siemens/ix-vue';
</script>
Expand Down
Loading

0 comments on commit 4eb1cc6

Please sign in to comment.