How to use the @delon/abc.STConfig function in @delon/abc

To help you get started, we’ve selected a few @delon/abc examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github dotnetcore / OSharp / tests / web / ui / ng-alain7 / src / app / delon.module.ts View on Github external
export function fnSTConfig(): STConfig {
  return {
    ...new STConfig(),
    ...{
      modal: { size: 'lg' }
    } as STConfig
  };
}
github dotnetcore / OSharp / tests / web / ui / ng-alain8 / src / app / delon.module.ts View on Github external
export function fnSTConfig(): STConfig {
  return {
    ...new STConfig(),
    modal: { size: 'lg' },
  };
}
github DesignHhuang / flowchart-angular6 / src / app / delon.module.ts View on Github external
export function fnSTConfig(): STConfig {
    return {
        ...new STConfig(),
        ...({
            modal: { size: 'lg' },
        } as STConfig),
    };
}
github personball / abplus-zero-template / angular / src / app / delon.module.ts View on Github external
export function fnSTConfig(): STConfig {
  return {
    ...new STConfig(),
    ...{
      modal: { size: 'lg' }
    } as STConfig
  };
}
github ng-alain / delon / src / app / delon.module.ts View on Github external
export function fnSTConfig(): STConfig {
  return Object.assign(new STConfig(), {
    ps: 3,
  });
}
github dotnetcore / OSharp / samples / web / ui-clients / ng-alain8 / src / app / delon.module.ts View on Github external
export function fnSTConfig(): STConfig {
  return {
    ...new STConfig(),
    modal: { size: 'lg' },
  };
}
github dotnetcore / Util / sample / Util.Samples.Angular.AntDesign / Typings / app / delon.module.ts View on Github external
export function fnSTConfig(): STConfig {
  return {
    ...new STConfig(),
    ...{
      modal: { size: 'lg' }
    } as STConfig
  };
}