@saasquatch/mint-components 1.15.0-85 → 1.15.0-86
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/mint-components.cjs.js +1 -1
- package/dist/collection/collection-manifest.json +0 -1
- package/dist/collection/components/sqm-referral-code/sqm-referral-code.js +1 -1
- package/dist/collection/components/sqm-share-code/sqm-share-code.js +1 -1
- package/dist/collection/components/sqm-share-link/sqm-share-link.js +1 -1
- package/dist/esm/loader.js +1 -1
- package/dist/esm/mint-components.js +1 -1
- package/dist/esm-es5/loader.js +1 -1
- package/dist/esm-es5/mint-components.js +1 -1
- package/dist/mint-components/mint-components.esm.js +1 -1
- package/dist/mint-components/p-a89baf7b.system.js +1 -1
- package/dist/types/components/sqm-referral-code/sqm-referral-code.d.ts +1 -1
- package/dist/types/components/sqm-share-code/sqm-share-code.d.ts +1 -1
- package/dist/types/components/sqm-share-link/sqm-share-link.d.ts +1 -1
- package/dist/types/components.d.ts +0 -23
- package/docs/docs.docx +0 -0
- package/docs/raisins.json +1 -1
- package/grapesjs/grapesjs.js +1 -1
- package/package.json +1 -1
- package/dist/cjs/sqm-has-states.cjs.entry.js +0 -26
- package/dist/collection/components/sqm-has-states/sqm-has-states.js +0 -54
- package/dist/esm/sqm-has-states.entry.js +0 -22
- package/dist/esm-es5/sqm-has-states.entry.js +0 -1
- package/dist/mint-components/p-3a90651f.entry.js +0 -1
- package/dist/mint-components/p-cd0bdfcc.system.entry.js +0 -1
- package/dist/types/components/sqm-has-states/sqm-has-states.d.ts +0 -16
- package/shoelace/assets/icons/twitter-x.svg +0 -4
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@saasquatch/mint-components",
|
|
3
3
|
"title": "Mint Components",
|
|
4
|
-
"version": "1.15.0-
|
|
4
|
+
"version": "1.15.0-86",
|
|
5
5
|
"description": "A minimal design library with components for referral and loyalty experiences. Built with Shoelace components by Saasquatch.",
|
|
6
6
|
"icon": "https://res.cloudinary.com/saasquatch/image/upload/v1652219900/squatch-assets/For_Mint.svg",
|
|
7
7
|
"raisins": "docs/raisins.json",
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
'use strict';
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
-
|
|
5
|
-
const index = require('./index-a43a63b4.js');
|
|
6
|
-
const domContextHooks_module = require('./dom-context-hooks.module-7fa676ae.js');
|
|
7
|
-
|
|
8
|
-
const SqmHasStates = class {
|
|
9
|
-
constructor(hostRef) {
|
|
10
|
-
index.registerInstance(this, hostRef);
|
|
11
|
-
this.ignored = true;
|
|
12
|
-
/**
|
|
13
|
-
* @componentState { title: "State 1", props: { "state": 1 } }
|
|
14
|
-
* @componentState { title: "State 2", props: { "state": 2, "text": false } }
|
|
15
|
-
*/
|
|
16
|
-
this.stateController = "{}";
|
|
17
|
-
domContextHooks_module.h$1(this);
|
|
18
|
-
}
|
|
19
|
-
disconnectedCallback() { }
|
|
20
|
-
render() {
|
|
21
|
-
return index.h("div", null, "hello");
|
|
22
|
-
}
|
|
23
|
-
static get assetsDirs() { return ["assets"]; }
|
|
24
|
-
};
|
|
25
|
-
|
|
26
|
-
exports.sqm_has_states = SqmHasStates;
|
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
import { withHooks } from "@saasquatch/stencil-hooks";
|
|
2
|
-
import { Component, h, Prop, State } from "@stencil/core";
|
|
3
|
-
/**
|
|
4
|
-
* @uiName Has States Test
|
|
5
|
-
* @exampleGroup Has States
|
|
6
|
-
|
|
7
|
-
*/
|
|
8
|
-
export class SqmHasStates {
|
|
9
|
-
constructor() {
|
|
10
|
-
this.ignored = true;
|
|
11
|
-
/**
|
|
12
|
-
* @componentState { title: "State 1", props: { "state": 1 } }
|
|
13
|
-
* @componentState { title: "State 2", props: { "state": 2, "text": false } }
|
|
14
|
-
*/
|
|
15
|
-
this.stateController = "{}";
|
|
16
|
-
withHooks(this);
|
|
17
|
-
}
|
|
18
|
-
disconnectedCallback() { }
|
|
19
|
-
render() {
|
|
20
|
-
return h("div", null, "hello");
|
|
21
|
-
}
|
|
22
|
-
static get is() { return "sqm-has-states"; }
|
|
23
|
-
static get encapsulation() { return "shadow"; }
|
|
24
|
-
static get assetsDirs() { return ["assets"]; }
|
|
25
|
-
static get properties() { return {
|
|
26
|
-
"stateController": {
|
|
27
|
-
"type": "string",
|
|
28
|
-
"mutable": false,
|
|
29
|
-
"complexType": {
|
|
30
|
-
"original": "string",
|
|
31
|
-
"resolved": "string",
|
|
32
|
-
"references": {}
|
|
33
|
-
},
|
|
34
|
-
"required": false,
|
|
35
|
-
"optional": false,
|
|
36
|
-
"docs": {
|
|
37
|
-
"tags": [{
|
|
38
|
-
"text": "{ title: \"State 1\", props: { \"state\": 1 } }",
|
|
39
|
-
"name": "componentState"
|
|
40
|
-
}, {
|
|
41
|
-
"text": "{ title: \"State 2\", props: { \"state\": 2, \"text\": false } }",
|
|
42
|
-
"name": "componentState"
|
|
43
|
-
}],
|
|
44
|
-
"text": ""
|
|
45
|
-
},
|
|
46
|
-
"attribute": "state-controller",
|
|
47
|
-
"reflect": false,
|
|
48
|
-
"defaultValue": "\"{}\""
|
|
49
|
-
}
|
|
50
|
-
}; }
|
|
51
|
-
static get states() { return {
|
|
52
|
-
"ignored": {}
|
|
53
|
-
}; }
|
|
54
|
-
}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { r as registerInstance, h as h$1 } from './index-b3a06de8.js';
|
|
2
|
-
import { n as h } from './dom-context-hooks.module-63370afd.js';
|
|
3
|
-
|
|
4
|
-
const SqmHasStates = class {
|
|
5
|
-
constructor(hostRef) {
|
|
6
|
-
registerInstance(this, hostRef);
|
|
7
|
-
this.ignored = true;
|
|
8
|
-
/**
|
|
9
|
-
* @componentState { title: "State 1", props: { "state": 1 } }
|
|
10
|
-
* @componentState { title: "State 2", props: { "state": 2, "text": false } }
|
|
11
|
-
*/
|
|
12
|
-
this.stateController = "{}";
|
|
13
|
-
h(this);
|
|
14
|
-
}
|
|
15
|
-
disconnectedCallback() { }
|
|
16
|
-
render() {
|
|
17
|
-
return h$1("div", null, "hello");
|
|
18
|
-
}
|
|
19
|
-
static get assetsDirs() { return ["assets"]; }
|
|
20
|
-
};
|
|
21
|
-
|
|
22
|
-
export { SqmHasStates as sqm_has_states };
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{r as registerInstance,h as h$1}from"./index-b3a06de8.js";import{n as h}from"./dom-context-hooks.module-63370afd.js";var SqmHasStates=function(){function t(t){registerInstance(this,t);this.ignored=true;this.stateController="{}";h(this)}t.prototype.disconnectedCallback=function(){};t.prototype.render=function(){return h$1("div",null,"hello")};Object.defineProperty(t,"assetsDirs",{get:function(){return["assets"]},enumerable:false,configurable:true});return t}();export{SqmHasStates as sqm_has_states};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{r as s,h as t}from"./p-c7c11325.js";import{n as r}from"./p-63e29387.js";const e=class{constructor(t){s(this,t),this.ignored=!0,this.stateController="{}",r(this)}disconnectedCallback(){}render(){return t("div",null,"hello")}static get assetsDirs(){return["assets"]}};export{e as sqm_has_states}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
System.register(["./p-59b028db.system.js","./p-4f5329a2.system.js"],(function(t){"use strict";var e,n,s;return{setters:[function(t){e=t.r;n=t.h},function(t){s=t.n}],execute:function(){var r=t("sqm_has_states",function(){function t(t){e(this,t);this.ignored=true;this.stateController="{}";s(this)}t.prototype.disconnectedCallback=function(){};t.prototype.render=function(){return n("div",null,"hello")};Object.defineProperty(t,"assetsDirs",{get:function(){return["assets"]},enumerable:false,configurable:true});return t}())}}}));
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @uiName Has States Test
|
|
3
|
-
* @exampleGroup Has States
|
|
4
|
-
|
|
5
|
-
*/
|
|
6
|
-
export declare class SqmHasStates {
|
|
7
|
-
ignored: boolean;
|
|
8
|
-
/**
|
|
9
|
-
* @componentState { title: "State 1", props: { "state": 1 } }
|
|
10
|
-
* @componentState { title: "State 2", props: { "state": 2, "text": false } }
|
|
11
|
-
*/
|
|
12
|
-
stateController: string;
|
|
13
|
-
constructor();
|
|
14
|
-
disconnectedCallback(): void;
|
|
15
|
-
render(): any;
|
|
16
|
-
}
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M0 2C0 0.895431 0.895431 0 2 0H14C15.1046 0 16 0.895431 16 2V14C16 15.1046 15.1046 16 14 16H2C0.895431 16 0 15.1046 0 14V2Z" fill="currentColor"/>
|
|
3
|
-
<path d="M8.86754 7.23214L12.5378 3H11.6681L8.48117 6.67471L5.93579 3H3L6.84911 8.55681L3 12.9949H3.86979L7.23525 9.11425L9.92336 12.9949H12.8592L8.86732 7.23214H8.86754ZM7.67624 8.60577L7.28624 8.05244L4.18319 3.64951H5.51914L8.02334 7.20281L8.41333 7.75615L11.6685 12.3749H10.3325L7.67624 8.60598V8.60577Z" fill="white"/>
|
|
4
|
-
</svg>
|