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

adaptivecards-controls

Package Overview
Dependencies
Maintainers
1
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

adaptivecards-controls - npm Package Compare versions

Comparing version 0.1.7 to 0.2.0

2

lib/adaptivecards-controls.js

@@ -6,2 +6,4 @@ "use strict";

Object.defineProperty(exports, "__esModule", { value: true });
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
__export(require("./constants"));

@@ -8,0 +10,0 @@ __export(require("./enums"));

@@ -16,2 +16,4 @@ "use strict";

Object.defineProperty(exports, "__esModule", { value: true });
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
var Utils = require("./utils");

@@ -18,0 +20,0 @@ var Constants = require("./constants");

@@ -16,2 +16,4 @@ "use strict";

Object.defineProperty(exports, "__esModule", { value: true });
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
var Constants = require("./constants");

@@ -18,0 +20,0 @@ var inputcontrol_1 = require("./inputcontrol");

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
var Collection = /** @class */ (function () {

@@ -4,0 +6,0 @@ function Collection() {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
exports.KEY_TAB = 9;

@@ -4,0 +6,0 @@ exports.KEY_ENTER = 13;

@@ -16,2 +16,4 @@ "use strict";

Object.defineProperty(exports, "__esModule", { value: true });
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
var inputwithpopup_1 = require("./inputwithpopup");

@@ -18,0 +20,0 @@ var calendar_1 = require("./calendar");

@@ -16,2 +16,4 @@ "use strict";

Object.defineProperty(exports, "__esModule", { value: true });
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
var Constants = require("./constants");

@@ -18,0 +20,0 @@ var collection_1 = require("./collection");

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
var DayOfWeek;

@@ -4,0 +6,0 @@ (function (DayOfWeek) {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
var InputControl = /** @class */ (function () {

@@ -4,0 +6,0 @@ function InputControl() {

@@ -16,2 +16,4 @@ "use strict";

Object.defineProperty(exports, "__esModule", { value: true });
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
var Constants = require("./constants");

@@ -18,0 +20,0 @@ var Utils = require("./utils");

@@ -16,2 +16,4 @@ "use strict";

Object.defineProperty(exports, "__esModule", { value: true });
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
var Utils = require("./utils");

@@ -18,0 +20,0 @@ var Constants = require("./constants");

@@ -16,2 +16,4 @@ "use strict";

Object.defineProperty(exports, "__esModule", { value: true });
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
var Constants = require("./constants");

@@ -18,0 +20,0 @@ var inputcontrol_1 = require("./inputcontrol");

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
var Enums = require("./enums");

@@ -4,0 +6,0 @@ var CalendarSettings = /** @class */ (function () {

2

package.json
{
"name": "adaptivecards-controls",
"version": "0.1.7",
"version": "0.2.0",
"description": "A library of pure JS/HTML controls designed for use with Adaptive Cards.",

@@ -5,0 +5,0 @@ "author": "Microsoft",

@@ -0,1 +1,3 @@

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
export * from "./constants";

@@ -13,2 +15,2 @@ export * from "./enums";

export * from "./textbox";
export * from "./popupmenu";
export * from "./popupmenu";

@@ -0,1 +1,3 @@

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
import * as Utils from "./utils";

@@ -2,0 +4,0 @@ import * as Constants from "./constants";

@@ -0,1 +1,3 @@

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
import * as Constants from "./constants";

@@ -2,0 +4,0 @@ import { InputControl } from "./inputcontrol";

@@ -0,1 +1,3 @@

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
export class Collection<TItem> {

@@ -2,0 +4,0 @@ private _items: Array<TItem> = [];

@@ -0,1 +1,3 @@

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
export const KEY_TAB = 9;

@@ -2,0 +4,0 @@ export const KEY_ENTER = 13;

@@ -0,1 +1,3 @@

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
import { InputWithPopup, PopupControl } from "./inputwithpopup";

@@ -2,0 +4,0 @@ import { Calendar } from "./calendar";

@@ -0,1 +1,3 @@

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
import * as Constants from "./constants";

@@ -2,0 +4,0 @@ import { Collection } from "./collection";

@@ -0,1 +1,3 @@

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
export enum DayOfWeek {

@@ -2,0 +4,0 @@ Sunday = 0,

@@ -0,1 +1,3 @@

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
export abstract class InputControl {

@@ -2,0 +4,0 @@ private _rootElement: HTMLElement;

@@ -0,1 +1,3 @@

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
import * as Constants from "./constants";

@@ -2,0 +4,0 @@ import * as Utils from "./utils";

@@ -0,1 +1,3 @@

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
function determineDecimalSeparator() {

@@ -2,0 +4,0 @@ var n = 1.1;

@@ -0,1 +1,3 @@

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
import * as Utils from "./utils";

@@ -2,0 +4,0 @@ import * as Constants from "./constants";

@@ -0,1 +1,3 @@

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
import * as Constants from "./constants";

@@ -2,0 +4,0 @@ import { InputControl } from "./inputcontrol";

@@ -0,1 +1,3 @@

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
import * as Constants from "./constants";

@@ -2,0 +4,0 @@ import * as Utils from "./utils";

@@ -0,1 +1,3 @@

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
import * as Enums from "./enums";

@@ -2,0 +4,0 @@

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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