-
-
Notifications
You must be signed in to change notification settings - Fork 14
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
733 changed files
with
63,695 additions
and
25,276 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
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 +1 @@ | ||
0.24.4 | ||
1.0.0 |
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,7 @@ | ||
{ | ||
"extends": "@pulsanova/stylelint-config-scss", | ||
"rules": { | ||
"custom-property-pattern": null | ||
"custom-property-pattern": null, | ||
"max-nesting-depth": null | ||
} | ||
} |
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
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,35 +1,11 @@ | ||
type GlobalConfig = { | ||
baseUrl: string, | ||
version: string, | ||
billingMode: 'all' | 'partial' | 'none', | ||
defaultLang: string, | ||
api: { | ||
url: string, | ||
headers: Record<string, string>, | ||
}, | ||
auth: { | ||
cookie: string, | ||
timeout: number | null, | ||
}, | ||
currency: { | ||
symbol: string, | ||
name: string, | ||
iso: string, | ||
}, | ||
companyName: string | null, | ||
defaultPaginationLimit: number, | ||
maxConcurrentFetches: number, | ||
maxFileUploadSize: number, | ||
authorizedFileTypes: string[], | ||
authorizedImageTypes: string[], | ||
colorSwatches: string[] | null, | ||
}; | ||
import type { RawGlobalConfig } from '../config'; | ||
|
||
declare var __SERVER_CONFIG__: GlobalConfig | undefined; | ||
declare global { | ||
type ServerMessage = { | ||
type: 'success' | 'info' | 'error', | ||
message: string, | ||
}; | ||
|
||
type ServerMessage = { | ||
type: 'success' | 'info' | 'error', | ||
message: string, | ||
}; | ||
|
||
declare var __SERVER_MESSAGES__: ServerMessage[] | undefined; | ||
declare var __SERVER_CONFIG__: RawGlobalConfig | undefined; | ||
declare var __SERVER_MESSAGES__: ServerMessage[] | undefined; | ||
} |
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
Oops, something went wrong.