-
-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
19 changed files
with
42 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import { MasterStyle } from '@master/style'; | ||
import { Style } from '@master/style'; | ||
import { ACCENT, COLOR, DASH } from './constants/css-property-keyword'; | ||
|
||
export class AccentColorStyle extends MasterStyle { | ||
export class AccentColorStyle extends Style { | ||
static override properties = [ACCENT + DASH + COLOR]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import { MasterStyle } from '@master/style'; | ||
import { Style } from '@master/style'; | ||
|
||
export class AppearanceStyle extends MasterStyle { | ||
export class AppearanceStyle extends Style { | ||
static override properties = ['appearance']; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import { MasterStyle } from '@master/style'; | ||
import { Style } from '@master/style'; | ||
import { CARET, COLOR, DASH } from './constants/css-property-keyword'; | ||
|
||
export class CaretColorStyle extends MasterStyle { | ||
export class CaretColorStyle extends Style { | ||
static override properties = [CARET + DASH + COLOR]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import { MasterStyle } from '@master/style'; | ||
import { Style } from '@master/style'; | ||
import { CONTENT } from './constants/css-property-keyword'; | ||
|
||
export class ContentStyle extends MasterStyle { | ||
export class ContentStyle extends Style { | ||
static override properties = [CONTENT]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import { COLOR, DASH, OUTLINE } from './constants/css-property-keyword'; | ||
import { MasterStyle } from '@master/style'; | ||
import { Style } from '@master/style'; | ||
|
||
export class OutlineColorStyle extends MasterStyle { | ||
export class OutlineColorStyle extends Style { | ||
static override properties = [OUTLINE + DASH + COLOR]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import { DASH, OFFSET, OUTLINE } from './constants/css-property-keyword'; | ||
import { MasterStyle } from '@master/style'; | ||
import { Style } from '@master/style'; | ||
|
||
export class OutlineOffsetStyle extends MasterStyle { | ||
export class OutlineOffsetStyle extends Style { | ||
static override properties = [OUTLINE + DASH + OFFSET]; | ||
static override defaultUnit = 'px'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import { DASH, OUTLINE, STYLE } from './constants/css-property-keyword'; | ||
import { MasterStyle } from '@master/style'; | ||
import { Style } from '@master/style'; | ||
|
||
export class OutlineStyleStyle extends MasterStyle { | ||
export class OutlineStyleStyle extends Style { | ||
static override properties = [OUTLINE + DASH + STYLE]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import { DASH, OUTLINE, WIDTH } from './constants/css-property-keyword'; | ||
import { MasterStyle } from '@master/style'; | ||
import { Style } from '@master/style'; | ||
|
||
export class OutlineWidthStyle extends MasterStyle { | ||
export class OutlineWidthStyle extends Style { | ||
static override properties = [OUTLINE + DASH + WIDTH]; | ||
static override defaultUnit = 'px'; | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import { BEHAVIOR, DASH, SCROLL } from './constants/css-property-keyword'; | ||
import { MasterStyle } from '@master/style'; | ||
import { Style } from '@master/style'; | ||
|
||
export class ScrollBehaviorStyle extends MasterStyle { | ||
export class ScrollBehaviorStyle extends Style { | ||
static override properties = [SCROLL + DASH + BEHAVIOR]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import { DASH, LAYOUT, TABLE } from './constants/css-property-keyword'; | ||
import { MasterStyle } from '@master/style'; | ||
import { Style } from '@master/style'; | ||
|
||
export class TableLayoutStyle extends MasterStyle { | ||
export class TableLayoutStyle extends Style { | ||
static override properties = [TABLE + DASH + LAYOUT]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters