@pakdul/layout 0.0.0 → 0.0.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/dul-layout.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import './node_modules/@pakdul/style/dul-style.js';
2
- const tmpl = document.createElement('template');
3
- tmpl.setAttribute('style', 'display:none');
4
- tmpl.innerHTML = `<dul-style>
2
+ const dullayouttmpl = document.createElement('template');
3
+ dullayouttmpl.setAttribute('style', 'display:none');
4
+ dullayouttmpl.innerHTML = `<dul-style>
5
5
  <style>
6
6
  html {
7
7
  /***container direction: BEGIN***/
@@ -294,5 +294,5 @@ html {
294
294
  }
295
295
  </style>
296
296
  </dul-style>`;
297
- document.head.appendChild(tmpl.content);
297
+ document.head.appendChild(dullayouttmpl.content);
298
298
  //# sourceMappingURL=dul-layout.js.map
package/dul-layout.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"dul-layout.js","sourceRoot":"","sources":["src/dul-layout.ts"],"names":[],"mappings":"AAAA,OAAO,yBAAyB,CAAA;AAEhC,MAAM,IAAI,GAAwB,QAAQ,CAAC,aAAa,CAAC,UAAU,CAAC,CAAC;AACrE,IAAI,CAAC,YAAY,CAAC,OAAO,EAAE,cAAc,CAAC,CAAC;AAC3C,IAAI,CAAC,SAAS,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;aAoSJ,CAAC;AACd,QAAQ,CAAC,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC"}
1
+ {"version":3,"file":"dul-layout.js","sourceRoot":"","sources":["src/dul-layout.ts"],"names":[],"mappings":"AAAA,OAAO,yBAAyB,CAAA;AAEhC,MAAM,aAAa,GAAwB,QAAQ,CAAC,aAAa,CAAC,UAAU,CAAC,CAAC;AAC9E,aAAa,CAAC,YAAY,CAAC,OAAO,EAAE,cAAc,CAAC,CAAC;AACpD,aAAa,CAAC,SAAS,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;aAoSb,CAAC;AACd,QAAQ,CAAC,IAAI,CAAC,WAAW,CAAC,aAAa,CAAC,OAAO,CAAC,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pakdul/layout",
3
- "version": "0.0.0",
3
+ "version": "0.0.1",
4
4
  "description": "web component layout",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/src/dul-layout.ts CHANGED
@@ -1,8 +1,8 @@
1
1
  import '@pakdul/style/dul-style'
2
2
 
3
- const tmpl: HTMLTemplateElement = document.createElement('template');
4
- tmpl.setAttribute('style', 'display:none');
5
- tmpl.innerHTML = `<dul-style>
3
+ const dullayouttmpl: HTMLTemplateElement = document.createElement('template');
4
+ dullayouttmpl.setAttribute('style', 'display:none');
5
+ dullayouttmpl.innerHTML = `<dul-style>
6
6
  <style>
7
7
  html {
8
8
  /***container direction: BEGIN***/
@@ -295,4 +295,4 @@ html {
295
295
  }
296
296
  </style>
297
297
  </dul-style>`;
298
- document.head.appendChild(tmpl.content);
298
+ document.head.appendChild(dullayouttmpl.content);