@public-ui/theme-ecl 4.0.1 → 4.0.2-rc.1
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/assets/kolicons/kolicons.eot +0 -0
- package/assets/kolicons/kolicons.ttf +0 -0
- package/assets/kolicons/kolicons.woff +0 -0
- package/assets/kolicons/kolicons.woff2 +0 -0
- package/assets/kolicons/style.css +6 -6
- package/dist/index.cjs +1 -92
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +1 -92
- package/dist/index.mjs.map +1 -1
- package/package.json +7 -7
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
@font-face {
|
|
2
2
|
font-family: "kolicons";
|
|
3
|
-
src: url('kolicons.eot?t=
|
|
4
|
-
src: url('kolicons.eot?t=
|
|
5
|
-
url("kolicons.woff2?t=
|
|
6
|
-
url("kolicons.woff?t=
|
|
7
|
-
url('kolicons.ttf?t=
|
|
8
|
-
url('kolicons.svg?t=
|
|
3
|
+
src: url('kolicons.eot?t=1769173347411'); /* IE9*/
|
|
4
|
+
src: url('kolicons.eot?t=1769173347411#iefix') format('embedded-opentype'), /* IE6-IE8 */
|
|
5
|
+
url("kolicons.woff2?t=1769173347411") format("woff2"),
|
|
6
|
+
url("kolicons.woff?t=1769173347411") format("woff"),
|
|
7
|
+
url('kolicons.ttf?t=1769173347411') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+*/
|
|
8
|
+
url('kolicons.svg?t=1769173347411#kolicons') format('svg'); /* iOS 4.1- */
|
|
9
9
|
}
|
|
10
10
|
|
|
11
11
|
[class^="kolicon-"], [class*=" kolicon-"] {
|
package/dist/index.cjs
CHANGED
|
@@ -791,97 +791,6 @@ function requireRgbaConvert () {
|
|
|
791
791
|
}
|
|
792
792
|
|
|
793
793
|
requireRgbaConvert();
|
|
794
|
-
|
|
795
|
-
var cjs$1 = {};
|
|
796
|
-
|
|
797
|
-
var hasRequiredCjs$1;
|
|
798
|
-
|
|
799
|
-
function requireCjs$1 () {
|
|
800
|
-
if (hasRequiredCjs$1) return cjs$1;
|
|
801
|
-
hasRequiredCjs$1 = 1;
|
|
802
|
-
(function (exports$1) {
|
|
803
|
-
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
804
|
-
exports$1.querySelectorAll = void 0;
|
|
805
|
-
const pushNodes = (set, domNodes) => {
|
|
806
|
-
domNodes.forEach((domNode) => {
|
|
807
|
-
if (set.has(domNode) === false) {
|
|
808
|
-
set.add(domNode);
|
|
809
|
-
}
|
|
810
|
-
});
|
|
811
|
-
};
|
|
812
|
-
const querySelectorAll = (selector, node = document) => {
|
|
813
|
-
if (node instanceof Document ||
|
|
814
|
-
node instanceof HTMLElement ||
|
|
815
|
-
node instanceof ShadowRoot) {
|
|
816
|
-
const domNodes = new Set();
|
|
817
|
-
pushNodes(domNodes, node.querySelectorAll(selector));
|
|
818
|
-
const nodeList = node.querySelectorAll('[class*="hydrated"]');
|
|
819
|
-
for (let i = 0; i < nodeList.length; i++) {
|
|
820
|
-
const shadowRoot = nodeList[i].shadowRoot;
|
|
821
|
-
if (typeof shadowRoot === "object" && shadowRoot !== null) {
|
|
822
|
-
pushNodes(domNodes, (0, exports$1.querySelectorAll)(selector, shadowRoot));
|
|
823
|
-
}
|
|
824
|
-
else {
|
|
825
|
-
pushNodes(domNodes, (0, exports$1.querySelectorAll)(selector, nodeList[i]));
|
|
826
|
-
}
|
|
827
|
-
}
|
|
828
|
-
return Array.from(domNodes);
|
|
829
|
-
}
|
|
830
|
-
else {
|
|
831
|
-
throw new Error(`The parameter document for the method querySelectorAll is not type of Document, HTMLElement or ShadowRoot.`);
|
|
832
|
-
}
|
|
833
|
-
};
|
|
834
|
-
exports$1.querySelectorAll = querySelectorAll;
|
|
835
|
-
|
|
836
|
-
} (cjs$1));
|
|
837
|
-
return cjs$1;
|
|
838
|
-
}
|
|
839
|
-
|
|
840
|
-
requireCjs$1();
|
|
841
|
-
|
|
842
|
-
var cjs = {};
|
|
843
|
-
|
|
844
|
-
var hasRequiredCjs;
|
|
845
|
-
|
|
846
|
-
function requireCjs () {
|
|
847
|
-
if (hasRequiredCjs) return cjs;
|
|
848
|
-
hasRequiredCjs = 1;
|
|
849
|
-
(function (exports$1) {
|
|
850
|
-
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
851
|
-
exports$1.querySelector = void 0;
|
|
852
|
-
const querySelector = (selector, node = document) => {
|
|
853
|
-
if (node instanceof Document ||
|
|
854
|
-
node instanceof HTMLElement ||
|
|
855
|
-
node instanceof ShadowRoot) {
|
|
856
|
-
let domNode = node.querySelector(selector);
|
|
857
|
-
if (domNode === null) {
|
|
858
|
-
const nodeList = node.querySelectorAll('[class*="hydrated"]');
|
|
859
|
-
for (let i = 0; i < nodeList.length; i++) {
|
|
860
|
-
const shadowRoot = nodeList[i].shadowRoot;
|
|
861
|
-
if (typeof shadowRoot === "object" && shadowRoot !== null) {
|
|
862
|
-
domNode = (0, exports$1.querySelector)(selector, shadowRoot);
|
|
863
|
-
}
|
|
864
|
-
else {
|
|
865
|
-
domNode = (0, exports$1.querySelector)(selector, nodeList[i]);
|
|
866
|
-
}
|
|
867
|
-
if (domNode !== null) {
|
|
868
|
-
break;
|
|
869
|
-
}
|
|
870
|
-
}
|
|
871
|
-
}
|
|
872
|
-
return domNode;
|
|
873
|
-
}
|
|
874
|
-
else {
|
|
875
|
-
throw new Error(`The parameter document for the method querySelector is not type of Document, HTMLElement or ShadowRoot.`);
|
|
876
|
-
}
|
|
877
|
-
};
|
|
878
|
-
exports$1.querySelector = querySelector;
|
|
879
|
-
|
|
880
|
-
} (cjs));
|
|
881
|
-
return cjs;
|
|
882
|
-
}
|
|
883
|
-
|
|
884
|
-
requireCjs();
|
|
885
794
|
new Event('StateChange');
|
|
886
795
|
|
|
887
796
|
/*!
|
|
@@ -969,7 +878,7 @@ bem$1('kol-icon', 'icon');
|
|
|
969
878
|
*/
|
|
970
879
|
|
|
971
880
|
const bem = c();
|
|
972
|
-
bem('kol-alert', 'closer')
|
|
881
|
+
bem('kol-alert', 'closer');
|
|
973
882
|
bem('kol-alert', 'content');
|
|
974
883
|
bem('kol-alert', 'icon');
|
|
975
884
|
|