Skip to content

Commit

Permalink
Merge branch 'main' into feature/element-title
Browse files Browse the repository at this point in the history
  • Loading branch information
ko-noguchi committed Nov 25, 2024
2 parents 9ee95c0 + 0e2afd3 commit be52fe5
Show file tree
Hide file tree
Showing 73 changed files with 630 additions and 775 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ TODO: コンポーネントのインタラクティブな機能には、イベ
- コンポーネントの責務以外に対するテスト
- 例えば、テスト対象となるコンポーネントが、内部で別のコンポーネントを利用している場合、その内部コンポーネントの責務に対するテストは避けてください。また、ブラウザの仕様(スクロールやリサイズなど)に依存するテストも避けてください。
- コンポーネントの内部構造に強く依存するテスト
- 例えば、DOMの構造をチェックするテストは避けてください。コンポーネントの内部構造はリファクタリングなどで簡単に変更される可能性があり、その度にテストを修正する必要が生じます。振る舞いが変わらない限り、テストを修正する必要がないことが望ましいです
- 例えば、DOMの構造を過度にチェックするテストは避けてください。コンポーネントの内部構造はリファクタリングなどで簡単に変更される可能性があり、その度にテストを修正する必要が生じます。ただし、コンポーネントの振る舞いを実現するために不可欠なHTML要素については、これらがコンポーネントの品質に大きな影響を与えるため、適切にテストすることが重要です

## CI

Expand Down
241 changes: 0 additions & 241 deletions dist/components/button/button.css

This file was deleted.

5 changes: 2 additions & 3 deletions dist/components/button/sp-button.d.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
import { UbButton } from "@ub-design/components-web-components/";
import { SpeedaIconTypes } from "../icon/icons";
export declare class SpButton extends UbButton {
#private;
get icon(): SpeedaIconTypes | "";
set icon(val: SpeedaIconTypes | "");
get icon(): string;
set icon(val: string);
static get observedAttributes(): string[];
constructor();
attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
Expand Down
2 changes: 1 addition & 1 deletion dist/components/button/sp-button.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 6 additions & 4 deletions dist/components/button/sp-button.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,12 @@ export class SpButton extends UbButton {
_SpButton_instances.add(this);
_SpButton_icon.set(this, "");
_SpButton_iconElement.set(this, new SpIcon());
this.shadowRoot.adoptedStyleSheets = [
...this.shadowRoot.adoptedStyleSheets,
styles,
];
if (this.shadowRoot) {
this.shadowRoot.adoptedStyleSheets = [
...this.shadowRoot.adoptedStyleSheets,
styles,
];
}
__classPrivateFieldGet(this, _SpButton_iconElement, "f").classList.add("base__icon");
__classPrivateFieldGet(this, _SpButton_iconElement, "f").size = "small";
}
Expand Down
46 changes: 0 additions & 46 deletions dist/components/checkbox/checkbox-list.css

This file was deleted.

44 changes: 0 additions & 44 deletions dist/components/checkbox/checkbox-text.css

This file was deleted.

17 changes: 0 additions & 17 deletions dist/components/checkbox/checkbox.css

This file was deleted.

Loading

0 comments on commit be52fe5

Please sign in to comment.