Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@semantic-ui/templating

Package Overview
Dependencies
Maintainers
1
Versions
47
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@semantic-ui/templating - npm Package Compare versions

Comparing version 0.0.22 to 0.0.23

12

package.json

@@ -8,9 +8,9 @@ {

"dependencies": {
"@semantic-ui/component": "^0.0.22",
"@semantic-ui/query": "^0.0.22",
"@semantic-ui/reactivity": "^0.0.22",
"@semantic-ui/templating": "^0.0.22",
"@semantic-ui/utils": "^0.0.22"
"@semantic-ui/component": "^0.0.23",
"@semantic-ui/query": "^0.0.23",
"@semantic-ui/reactivity": "^0.0.23",
"@semantic-ui/templating": "^0.0.23",
"@semantic-ui/utils": "^0.0.23"
},
"version": "0.0.22"
"version": "0.0.23"
}

@@ -7,3 +7,3 @@ import { Reaction } from '@semantic-ui/reactivity';

arrayFromObject,
formatDateLocal,
formatDate,
each,

@@ -113,10 +113,10 @@ escapeHTML,

},
formatDate(date = new Date(), format = 'L', options) {
return formatDateLocal(date, format, options);
formatDate(date = new Date(), format = 'L', options = { timezone: 'local' }) {
return formatDate(date, format, options);
},
formatDateTime(date = new Date(), format = 'LLL', options) {
return formatDateLocal(date, format, options);
formatDateTime(date = new Date(), format = 'LLL', options = { timezone: 'local' }) {
return formatDate(date, format, options);
},
formatDateTimeSeconds(date = new Date(), format = 'LTS', options) {
return formatDateLocal(date, format, options);
formatDateTimeSeconds(date = new Date(), format = 'LTS', options = { timezone: 'local' }) {
return formatDate(date, format, options);
},

@@ -123,0 +123,0 @@ object({ obj }) {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc