Add coexistence checks to all enqueue methods to prevent loading both React and Grid.js assets simultaneously. Changes: - ReactAdmin.php: Only enqueue React assets when ?react=1 - Init.php: Skip Grid.js when React active on admin pages - Form.php, Coupon.php, Access.php: Restore classic assets when ?react=0 - Customer.php, Product.php, License.php: Add coexistence checks Now the toggle between Classic and React versions works correctly. Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
40 lines
756 B
TypeScript
40 lines
756 B
TypeScript
declare namespace filenamify {
|
|
interface Options {
|
|
/**
|
|
String to use as replacement for reserved filename characters.
|
|
|
|
Cannot contain: `<` `>` `:` `"` `/` `\` `|` `?` `*`
|
|
|
|
@default '!'
|
|
*/
|
|
readonly replacement?: string;
|
|
|
|
/**
|
|
Truncate the filename to the given length.
|
|
|
|
Systems generally allow up to 255 characters, but we default to 100 for usability reasons.
|
|
|
|
@default 100
|
|
*/
|
|
readonly maxLength?: number;
|
|
}
|
|
}
|
|
|
|
/**
|
|
Convert a string to a valid filename.
|
|
|
|
@example
|
|
```
|
|
import filenamify = require('filenamify');
|
|
|
|
filenamify('<foo/bar>');
|
|
//=> 'foo!bar'
|
|
|
|
filenamify('foo:"bar"', {replacement: '🐴'});
|
|
//=> 'foo🐴bar'
|
|
```
|
|
*/
|
|
declare const filenamify: (string: string, options?: filenamify.Options) => string;
|
|
|
|
export = filenamify;
|